This repository has been archived by the owner on Jun 26, 2020. It is now read-only.
Releases: ckeditor/ckeditor5-editor-inline
Releases · ckeditor/ckeditor5-editor-inline
v12.0.0
Features
- Added support for the
config.placeholder
option which allows configuring the empty editor content placeholder (see ckeditor/ckeditor5#479). (24016bd)
Bug fixes
- Fixed memory leaks during editor initialization and destruction (see ckeditor/ckeditor5#1341). (dd2bb90)
Other changes
- Adjustments to new editor initialization events. See breaking changes. (9536767)
- Editor UI classes API refactoring. See breaking changes. (f8195da)
BREAKING CHANGES
- Upgraded minimal versions of Node to
8.0.0
and npm to5.7.1
. See: ckeditor/ckeditor5#1507. (612ea3c) - The second argument of
InlineEditorUIView.constructor()
is an editing view instance now. - The
editor#dataReady
event was removed. Theeditor.data#ready
event has been introduced and should be used instead. - The
editor#pluginsReady
event was removed. Use pluginafterInit()
method instead. - Removed
InlineEditor#element
property. TheInlineEditorUI#element
property should be used instead. - Removed
InlineEditorUIView#editableElement
. InsteadInlineEditorUI#getEditableElement()
method should be used.
v11.0.2
v11.0.1
Bug fixes
-
Child views should be added in
InlineEditorUIView#render()
instead of#constructor()
to allow early template manipulation. Closes ckeditor/ckeditor5#1150. (b0be713)Huge thanks to Alex Eckermann for this contribution!
v11.0.0
Features
Other changes
- Used the
EditorUI
as a parent class for theInlineEditorUI
(see ckeditor/ckeditor5-core#130). (c148346)
BREAKING CHANGES
- The
InlineEditor#element
property was renamed toInlineEditor#sourceElement
andInlineEditor#updateElement()
method toInlineEditor#updateSourceElement()
. See ckeditor/ckeditor5-core#64.
v10.0.1
v10.0.0
Other changes
- Changed the license to GPL2+ only. See ckeditor/ckeditor5#991. (4a6d43a)
BREAKING CHANGES
- The license under which CKEditor 5 is released has been changed from a triple GPL, LGPL and MPL license to a GPL2+ only. See ckeditor/ckeditor5#991 for more information.
v1.0.0-beta.4
Internal changes only (updated dependencies, documentation, etc.).
v1.0.0-beta.2
Internal changes only (updated dependencies, documentation, etc.).
v1.0.0-beta.1
Other changes
- Migrated the editor styles to PostCSS (see ckeditor/ckeditor5-ui#144). (9fbecae)
- Removed the
.ck-editor-toolbar
class from the toolbar (see ckeditor/ckeditor5-theme-lark#135). (213ddfd)
v1.0.0-alpha.2
Other changes
- Aligned UI library usage to the changes in the UI framework.