Skip to content

Releases: KillerCodeMonkey/ngx-quill

Complete onEditorCreated output

18 Sep 06:56
Compare
Choose a tag to compare

The onEditorCreated subject is now completed right after it emits.

Closes #1590

Changed ViewEncapsulation of editor component

14 Sep 05:56
Compare
Choose a tag to compare

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

Thanks to @allanbond

Standalone Components and Config

06 Jul 06:05
Compare
Choose a tag to compare

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.

Async custom modules

30 Jun 09:05
Compare
Choose a tag to compare

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

#1562

Angular 14

03 Jun 05:13
Compare
Choose a tag to compare

Breaking: Upgrade to Angular 14 + general deps upgrade

No native dom manipulating

09 May 15:26
Compare
Choose a tag to compare

ngx-quill does not do native dommanipulation anymore (#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

global sanitize config

16 Mar 09:26
Compare
Choose a tag to compare

Feature

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

Async loading of qulljs with subscription instead of promise

04 Dec 15:54
Compare
Choose a tag to compare

QuillJS was loaded asynchronous, but not cancelable via promises.

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

Fix peerDependency to rxjs

09 Nov 09:02
Compare
Choose a tag to compare

be npm >= 7 compatible and allow rxjs ^6.5.3 || ^7.4.0

v16: Partial compilation

08 Nov 18:16
Compare
Choose a tag to compare

BREAKING

since ngx-quill is using the new feature of partial compilation only angular v13 and up can be supported

Thanks to @arturovt 👍