Skip to content

Releases: KillerCodeMonkey/ngx-quill

Fix: components overriding global config modules and formats

02 Jul 19:59
Compare
Choose a tag to compare

Fix

  • components overriding global config modules and formats in some cases

ConfigProvider

02 Jul 15:07
Compare
Choose a tag to compare

Breaking:

  • Import QuillModule like this in your main module:
@NgModule({
   ...,
   imports: [QuillModule.forRoot()]
})
class AppModule {}

BREAKING: Fix Providers injection (do not use)

02 Jul 13:29
Compare
Choose a tag to compare

Fix: QuillModule overrides its config provider defined in forRoot, when it is used in child/lazy loaded module.

make disabled state public

02 Jul 05:27
Compare
Choose a tag to compare

emit onEditorCreated after add listeners are added

01 Jul 06:26
Compare
Choose a tag to compare
  • emit onEditorCreated after add listeners (text- and selection-change) are added
  • init editor in ngAfterContentInit
  • emit onEditorCreated after a timeout, to avoid changing the content/model/control during the first changedetection run
  • use onEditorCreated to grab the editor instance

Add preserveWhitespace input to ViewComponent

25 Jun 16:58
Compare
Choose a tag to compare
6.1.0

feat(ViewComponent): preserveWhitespace input

Fix: matcher config interface typo

24 Jun 04:26
Compare
Choose a tag to compare
  • correct matcher key in config interface

View and ViewHTML component

23 Jun 12:47
Compare
Choose a tag to compare

Add components to present quilljs content

Angular 8.0.0

29 May 13:05
Compare
Choose a tag to compare

Add angular 8.0.0 support and use it!

Set Format in GlobalConfig

05 May 06:28
Compare
Choose a tag to compare

If you want to change default format of your editors, you can set it now in the QuillConfig.forRoot() function.