Ngx Quill Versions Save

Angular (>=2) components for the Quill Rich Text Editor

v20.0.1

1 year ago

v20.0.0

1 year ago

v19.0.1

1 year ago

The onEditorCreated subject is now completed right after it emits.

Closes #1590

v19.0.0

1 year ago

the quill-editor-component is now using ViewEncapsulation.Emulated instead of ViewEncapsulation.None.

Thanks to @allanbond

v18.0.0

1 year ago

Thanks again to @arturovt it is now possible to use the quill components as standalone components. You are able to set the global quill config via the new QuillConfigModule. In those case it is not necessary to import the whole ngx-quill package with the QuillModule.

v17.1.1

1 year ago

Thanks to @arturovt custom modules can now be passed as async/defer so they must not be part of your project bundle.

https://github.com/KillerCodeMonkey/ngx-quill/pull/1562

v17.0.0

2 years ago

Breaking: Upgrade to Angular 14 + general deps upgrade

v16.2.1

2 years ago

ngx-quill does not do native dommanipulation anymore (https://github.com/KillerCodeMonkey/ngx-quill/issues/1528)

  • replaced the usage of "insertAdjacentHTML" with ng-container and *ngif
  • people using ngx-quill with the example implementation with material ui (mat-quill) should adapt their component template

v16.2.0

2 years ago

Feature

Allow to set sanitize option in QuillModule.forRoot({ sanitize: true })

v16.1.0

2 years ago

QuillJS was loaded asynchronous, but not cancelable via promises.

Thx to @arturovt it is now loaded with a subscription that can be unsubscribe :)