Releases: KillerCodeMonkey/ngx-quill
Releases · KillerCodeMonkey/ngx-quill
rename `style` input to `styles`
Breaking Changes
Renamed style
input to styles
(fixes #375)
onFocus and onBlur
Added outputs for focus - onFocus and blur - onBlur
Keep in mind that textSelectionChanged is also triggered to stay consistent with the quilljs api.
More details in the readme - as always :)
preserve whitespace
ability to wrap the editor content in pre-tags to preserve duplicated whitespaces
4.6.10
- less strict node version required >=8 instead of >=10
Allow do disable toolbar in global config
Fix:
- extend toolbar config interface to set toolbar module as boolean
fix cli prod build
Fix: builds with ng cli --prod
fix if no config is passed
- fallback to empty custom config for merge
merge default and custom global config
Bugfix:
- correct merge of default global and custom global config
Feat:
- if no modules are passed, the default modules are used
global formats
Bugfix:
- correct usage of global formats config
4.6.0
Inputs
- debug - set log level
warn
,error
,log
orfalse
to deactivate logging, default:warn
- trackChanges - check if only
user
(quill source user) orall
change should be trigger model update, defaultuser
. Usingall
is not recommended, it cause some unexpected sideeffects.
Global Config
- extend config to set all Quill config options
- See Quill Configuration for a full list of config options.
- new
trackChanges
input can be set, as well