0.2.0 • Published 7 years ago
@webacad/ng-mat-quill v0.2.0
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-quillquillrxjs
Installation
$ npm install --save @webacad/ng-mat-quillor with yarn
$ yarn add @webacad/ng-mat-quillRegister 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.