0.2.0 • Published 6 years ago

@webacad/ng-mat-quill v0.2.0

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

NPM version Build Status

WebACAD/MatQuill

Quill editor integration for angular material forms. Based on @webacad/ng-quill.

Dependencies

  • @angular/animations
  • @angular/cdk
  • @angular/common
  • @angular/core
  • @angular/forms
  • @angular/material
  • @angular/platform-browser
  • @webacad/ng-quill
  • quill
  • rxjs

Installation

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

or with yarn

$ yarn add @webacad/ng-mat-quill

Register module

app.module.ts:

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

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

Usage

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

Look here for more details.

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.

It is also fully ready for material's <mat-form-field> component.