Releases: KillerCodeMonkey/ngx-quill
Releases · KillerCodeMonkey/ngx-quill
Fix: components overriding global config modules and formats
Fix
- components overriding global config modules and formats in some cases
ConfigProvider
Breaking:
- Import QuillModule like this in your main module:
@NgModule({
...,
imports: [QuillModule.forRoot()]
})
class AppModule {}
BREAKING: Fix Providers injection (do not use)
Fix: QuillModule overrides its config provider defined in forRoot, when it is used in child/lazy loaded module.
make disabled state public
emit onEditorCreated after add listeners are added
- 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
6.1.0 feat(ViewComponent): preserveWhitespace input
Fix: matcher config interface typo
- correct
matcher
key in config interface
View and ViewHTML component
Add components to present quilljs content
Angular 8.0.0
Add angular 8.0.0 support and use it!
Set Format in GlobalConfig
If you want to change default format of your editors, you can set it now in the QuillConfig.forRoot()
function.