Skip to content

Releases: KillerCodeMonkey/ngx-quill

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 👍

v15.0.0

04 Nov 16:08
Compare
Choose a tag to compare

Angular 13 support

Better onPush support

27 Aug 05:01
Compare
Choose a tag to compare

Thanks to @DZapdos we have a better support of ChangeDetectionStrategy.OnPush.

better required validation + default config token value

11 Aug 14:27
Compare
Choose a tag to compare
  • required validation should now work when only tags without text contents are added, e.g. images.
  • thanks to @arturovt: we now have default values for the config token, so it is possible to load the components on the fly and create instances of them dynamically.