This repository has been archived by the owner on Jun 26, 2020. It is now read-only.
Releases: ckeditor/ckeditor5-widget
Releases · ckeditor/ckeditor5-widget
v11.0.0
Bug fixes
- Editor crashes after Enter key on an image that is inside a blockquote. Closes ckeditor/ckeditor5#1555. (8a8842b)
- Ensured only the widget toolbar attached to the view element which is deepest in the view tree will show up. Code and documentation refactoring in the
WidgetToolbarRepository
. Closes #60. (7e11a24) - Make widget in editable clickable. Closes ckeditor/ckeditor5-table#98. (8226829)
- Pressing Enter should split parent element when the inline widget is inside a
$block
. Closes ckeditor/ckeditor5#1529. (847d2ab) - Fixed memory leaks during editor initialization and destruction (see ckeditor/ckeditor5#1341). (2e8f20d)
Other changes
- Introduce support and utils for creating inline widgets. Closes [ckeditor/ckeditor5#1096](ckeditor/ckeditor5#1096). (38fa159)
- Renamed the
.ck-widget_selectable
class to.ck-widget_with-selection-handler
for better semantics. Closes #66. (178ad5f)
BREAKING CHANGES
- Upgraded minimal versions of Node to
8.0.0
and npm to5.7.1
. See: ckeditor/ckeditor5#1507. (612ea3c) - The
.ck-widget_selectable
class has been renamed to.ck-widget_with-selection-handler
for better semantics. - The
visibleWhen()
function, a property of an object passed intoWidgetToolbarRepository.register()
, has been renamed togetRelatedElement()
and must return an editingView
element the toolbar should be attached to (instead ofBoolean
).
v10.3.1
v10.3.0
v10.2.0
Features
Other changes
- Do not set the
contenteditable
property for widgets and their nested editables on Edge due to an awful instability which it causes in this browser. Closes ckeditor/ckeditor5#1079. Closes ckeditor/ckeditor5#1067. (ee530b1)
v10.1.0
v10.0.0
Other changes
- Changed the license to GPL2+ only. See ckeditor/ckeditor5#991. (88ef879)
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
Bug fixes
- Replaced nested editable's
.ck-editable
class with.ck-editor__editable
+.ck-editor__nested-editable
to stop Grammarly throwing errors. Closes ckeditor/ckeditor5#578. (051b326)
Other changes
- Increased the specificity of CSS rules. Introduced the .ck class for editor UI components (see: ckeditor/ckeditor5#494). (abc7def)
BREAKING CHANGES
- The
.ck-editable
class is no longer available. Use the.ck-editor__nested-editable
class instead.
v1.0.0-beta.1
Other changes
- Aligned feature class naming to the new scheme. (23991a4)
- Migrated package styles to PostCSS. Moved visual styles to
@ckeditor/ckeditor5-theme-lark
(see ckeditor/ckeditor5-ui#144). (857d6d4) - Switched to handling deletion around widgets by using the
delete
event instead of listening directly on key events. Closes #29. (ee6cc95)
v1.0.0-alpha.2
Bug fixes
- The Ctrl+A keystroke will be now correctly handled when a widget is selected. Closes #23. (3e8f91f)
- View element's
setAttribute()
method should be used with string values of thecontenteditable
attribute. Closes #26. (d2a6cf5)
Other changes
- Widgets highlight remove handler will now use only descriptor id, instead of the full descriptor. (1dfdc83)