0.2.0 • Published 6 years ago

@webacad/ng-quill v0.2.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

NPM version Build Status

WebACAD/Quill

Quill editor integration for angular forms.

Dependencies

  • @angular/common
  • @angular/core
  • @angular/forms
  • quill
  • rxjs

Installation

$ npm install --save @webacad/ng-quill

or with yarn

$ yarn add @webacad/ng-quill

Register module

app.module.ts:

import {QuillModule} from '@webacad/ng-quill';

@NgModule({
    imports: [
        QuillModule,
    ],
})
export class AppModule {}

Usage

<wa-quill theme="snow"></wa-quill>

Available options:

  • theme: quill theme options, docs

Using in angular forms

This package implements all the necessary code for angular forms. That means that you can use it just like any other ordinary form control.