ckeditor5 38.0.0 → 38.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,265 @@
1
1
  Changelog
2
2
  =========
3
3
 
4
+ ## [38.1.0](https://github.com/ckeditor/ckeditor5/compare/v38.0.1...v38.1.0) (2023-06-23)
5
+
6
+ ### Release highlights
7
+
8
+ * **Show blocks** - The show blocks feature allows the content creators to visualize all block-level elements (except for widgets) by surrounding them with an outline and displaying their element name at the top-left corner of the box.
9
+
10
+ ### MINOR BREAKING CHANGES [ℹ️](https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/versioning-policy.html#major-and-minor-breaking-changes)
11
+
12
+ * **[html-support](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-support)**: The `htmlAttributes` model property has been replaced by `html*Attributes`, where the `*` represents the name of the view element. Clients will need to modify their code accordingly by replacing all instances of `htmlAttributes` with `html*Attributes` for the respective view elements.
13
+
14
+ ### Features
15
+
16
+ * **[export-word](https://www.npmjs.com/package/@ckeditor/ckeditor5-export-word)**: Added support for resolved comment threads in the Export to Word feature.
17
+ * **[html-support](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-support)**: Changing a list type now removes styles inherited from the previous type. Closes [#14216](https://github.com/ckeditor/ckeditor5/issues/14216). ([commit](https://github.com/ckeditor/ckeditor5/commit/02822b0f7a945712385e20335dc7666a811ff381))
18
+ * **[list](https://www.npmjs.com/package/@ckeditor/ckeditor5-list)**: Added the `AdjacentListsSupport` plugin to separate lists of the same type. Closes [#12738](https://github.com/ckeditor/ckeditor5/issues/12738). ([commit](https://github.com/ckeditor/ckeditor5/commit/574c9345f484ae3cb163a71fbd60d2327b36b3e2))
19
+ * **[ui](https://www.npmjs.com/package/@ckeditor/ckeditor5-ui)**: `BodyCollection.bodyCollectionContainer` is now a public property. Closes [#13928](https://github.com/ckeditor/ckeditor5/issues/13928). ([commit](https://github.com/ckeditor/ckeditor5/commit/1f5c8d023876f54993e71c873bc3a7201c2c7cc4))
20
+
21
+ ### Bug fixes
22
+
23
+ * **[comments](https://www.npmjs.com/package/@ckeditor/ckeditor5-comments)**: The editor should no longer crash after resolving multiple comment threads from multiple editor instances inside one `Context`.
24
+ * **[document-outline](https://www.npmjs.com/package/@ckeditor/ckeditor5-document-outline)**: Fixed a randomly failing Table of Contents editing test (before each).
25
+ * **[document-outline](https://www.npmjs.com/package/@ckeditor/ckeditor5-document-outline)**: The document outline feature should respect the `config.ui.viewportOffset` configuration.
26
+ * **[engine](https://www.npmjs.com/package/@ckeditor/ckeditor5-engine)**: The editor should no longer crash while pressing backspace in an empty editor (in Firefox). Closes [#14411](https://github.com/ckeditor/ckeditor5/issues/14411), [#14050](https://github.com/ckeditor/ckeditor5/issues/14050). ([commit](https://github.com/ckeditor/ckeditor5/commit/402e866e785e7bf97120bc80d469d58b3fe72272))
27
+ * **[engine](https://www.npmjs.com/package/@ckeditor/ckeditor5-engine)**: Fixed the shallow view and model TreeWalkers returning elements outside of specified boundaries. ([commit](https://github.com/ckeditor/ckeditor5/commit/c519feb0f4c0129f4fbf492b69440199af9b4312))
28
+ * **[engine](https://www.npmjs.com/package/@ckeditor/ckeditor5-engine)**: The CSS shorthand value normalizer should work for values with white spaces. Closes [#14309](https://github.com/ckeditor/ckeditor5/issues/14309). ([commit](https://github.com/ckeditor/ckeditor5/commit/c14cdff9717634bdebabee1d6da068f084bbf5d9))
29
+ * **[engine](https://www.npmjs.com/package/@ckeditor/ckeditor5-engine)**: `View#scrollToTheSelection()` should respect the `config.ui.viewportOffset` configuration and consider the geometry of a classic editor's toolbar to assure the caret is always visible to the user. Closes [#13730](https://github.com/ckeditor/ckeditor5/issues/13730). ([commit](https://github.com/ckeditor/ckeditor5/commit/d65f4862e9baad74ab7b7ca5355e290d68f96593))
30
+ * **[engine](https://www.npmjs.com/package/@ckeditor/ckeditor5-engine)**: Font attributes are preserved after inserting inline widgets. Closes [#14106](https://github.com/ckeditor/ckeditor5/issues/14106). ([commit](https://github.com/ckeditor/ckeditor5/commit/30c31b6bfa10816cc44287842874b768d6d3ca59))
31
+ * **[export-pdf](https://www.npmjs.com/package/@ckeditor/ckeditor5-export-pdf)**: Text will no longer go beyond its cell when columns are resized by the resize handler in exported PDFs. Closes [#3355](https://github.com/ckeditor/ckeditor5/issues/3355). ([commit](https://github.com/ckeditor/ckeditor5/commit/a5908d4dd10faae3fcc37658a3c44fd3026858fa))
32
+ * **[font](https://www.npmjs.com/package/@ckeditor/ckeditor5-font)**: The accept button in the color picker will no longer submit forms. Closes [#14361](https://github.com/ckeditor/ckeditor5/issues/14361). ([commit](https://github.com/ckeditor/ckeditor5/commit/eff5ccac9759f97d32ac1c7ff8812c177876cd5b))
33
+ * **[html-support](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-support)**: GHS should allow linking of custom elements. Closes [#13803](https://github.com/ckeditor/ckeditor5/issues/13803). ([commit](https://github.com/ckeditor/ckeditor5/commit/371ae0bd057c0120fbf3e1f7581c8390bdf65364))
34
+ * **[html-support](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-support)**: Preserve HTML attributes when a list is split or its item is removed. Closes [#14346](https://github.com/ckeditor/ckeditor5/issues/14346) and [#14349](https://github.com/ckeditor/ckeditor5/issues/14349). ([commit](https://github.com/ckeditor/ckeditor5/commit/c519feb0f4c0129f4fbf492b69440199af9b4312))
35
+ * **[html-support](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-support)**: Remove unrelated `html*Attributes` from elements. See [#14216](https://github.com/ckeditor/ckeditor5/issues/14216). ([commit](https://github.com/ckeditor/ckeditor5/commit/80daee5bdf4cea27a318f8472d5146e56d680a22))
36
+ * **[mention](https://www.npmjs.com/package/@ckeditor/ckeditor5-mention)**: Multiple mentions in the last table cell should not result in a selection error. Closes [#14025](https://github.com/ckeditor/ckeditor5/issues/14025). ([commit](https://github.com/ckeditor/ckeditor5/commit/39c2d9121966d020a3f57caa7d428fb0a0459e0b))
37
+ * **[paste-from-office](https://www.npmjs.com/package/@ckeditor/ckeditor5-paste-from-office)**: Remove the `<style>` tag that comes with the table pasted from Google Sheets. Closes [#14131](https://github.com/ckeditor/ckeditor5/issues/14131). ([commit](https://github.com/ckeditor/ckeditor5/commit/8208af13b7d9cbbe4dab1d399e2f9bd7c7601d2d))
38
+ * **[paste-from-office](https://www.npmjs.com/package/@ckeditor/ckeditor5-paste-from-office)**: List markers should be displayed correctly after pasting a list from MS Word. Closes [#12361](https://github.com/ckeditor/ckeditor5/issues/12361). ([commit](https://github.com/ckeditor/ckeditor5/commit/066b69b79cf6da80d44148ac6d1af0f07a31766d))
39
+ * **[style](https://www.npmjs.com/package/@ckeditor/ckeditor5-style)**: Styles dropdown should allow styling `<div>` elements. Closes [#13341](https://github.com/ckeditor/ckeditor5/issues/13341). ([commit](https://github.com/ckeditor/ckeditor5/commit/4b44f58c8dd280cafaadb10b2d099423fce054b9))
40
+ * **[table](https://www.npmjs.com/package/@ckeditor/ckeditor5-table)**: Text will no longer go beyond its cell when columns are resized by resize handler in Firefox. Closes [#14386](https://github.com/ckeditor/ckeditor5/issues/14386). ([commit](https://github.com/ckeditor/ckeditor5/commit/a5908d4dd10faae3fcc37658a3c44fd3026858fa))
41
+ * **[track-changes](https://www.npmjs.com/package/@ckeditor/ckeditor5-track-changes)**: Removed an unnecessary request to the token URL when using the `TrackChangesData` plugin.
42
+ * **[ui](https://www.npmjs.com/package/@ckeditor/ckeditor5-ui)**: Fixed a styling issue that would cause some toolbar dropdowns to be shrunk. ([commit](https://github.com/ckeditor/ckeditor5/commit/53f0dc2f9d75031113803791e3051b5b9c422560))
43
+ * **[ui](https://www.npmjs.com/package/@ckeditor/ckeditor5-ui)**: Fixed the arrow keys behavior in the color picker component. Closes [#14218](https://github.com/ckeditor/ckeditor5/issues/14218). ([commit](https://github.com/ckeditor/ckeditor5/commit/29be557777337dc9f9b44fa120cbeec65f0e6a97))
44
+ * **[ui](https://www.npmjs.com/package/@ckeditor/ckeditor5-ui)**: The "Powered by" logo should not shake on the first show. Closes [cksource/ckeditor5-internal#3289](https://github.com/cksource/ckeditor5-internal/issues/3289). ([commit](https://github.com/ckeditor/ckeditor5/commit/48fa3444fe85bc424ddbf5314fbc540c3d4497d7))
45
+ * **[ui](https://www.npmjs.com/package/@ckeditor/ckeditor5-ui)**: Fixed the way code exports the `colorPaletteIcon` icon, which could result in a broken build. Closes [#14205](https://github.com/ckeditor/ckeditor5/issues/14205). ([commit](https://github.com/ckeditor/ckeditor5/commit/046e379d4d7c02dfbc4183819b70d6535776c733))
46
+ * **[utils](https://www.npmjs.com/package/@ckeditor/ckeditor5-utils)**: `Rect#getVisible()` should not consider ancestors when the target is an element with `position: absolute`. Closes [#14107](https://github.com/ckeditor/ckeditor5/issues/14107). ([commit](https://github.com/ckeditor/ckeditor5/commit/8b1ede7c4ed1b03905e6fbf822248992c0c84821))
47
+ * Added multi-root support for: title, HTML comments, table resize, word count and block toolbar. ([commit](https://github.com/ckeditor/ckeditor5/commit/95ef94b2263e82ed570d8b29293e07d4bc89eef4))
48
+ * Fixed editor crash that happened when `TrackChangesData` or revision history was used in setup with `Context` if `CloudServices` was set only in the `Context` configuration (and not in the editor configuration).
49
+
50
+ ### Other changes
51
+
52
+ * **[comments](https://www.npmjs.com/package/@ckeditor/ckeditor5-comments)**: The resolve button will now be disabled instead of hidden when the editor is in read-only mode for better UI consistency.
53
+ * **[engine](https://www.npmjs.com/package/@ckeditor/ckeditor5-engine)**: Exports `ViewTreeWalker` from `ckeditor5-engine/src/index.ts`. Closes [#14158](https://github.com/ckeditor/ckeditor5/issues/14158). ([commit](https://github.com/ckeditor/ckeditor5/commit/e72b49a90d39bcca578681f43b338f350238d3f1))
54
+ * **[html-support](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-support)**: Changed `htmlAttributes` to `html*Attributes` where `*` represents the name of the view element. See [#14216](https://github.com/ckeditor/ckeditor5/issues/14216). ([commit](https://github.com/ckeditor/ckeditor5/commit/a04cbd3dcb6581916019ad94b9a7f78d5ce4a568))
55
+ * **[ui](https://www.npmjs.com/package/@ckeditor/ckeditor5-ui)**: Added a configuration option that forces the "Powered by" logo to show up despite a valid license key being used. Closes [#14235](https://github.com/ckeditor/ckeditor5/issues/14235). ([commit](https://github.com/ckeditor/ckeditor5/commit/b577283c1c1c4f5649864529cf859ba0e03654ab))
56
+ * Optimized icons. ([commit](https://github.com/ckeditor/ckeditor5/commit/34ba6c86b560662a209d44c798d1c4372459c7ab))
57
+ * Updated translations. ([commit](https://github.com/ckeditor/ckeditor5/commit/2add9a2e521cf19d9651463fa3c5bdfd07c32045), [commit](https://github.com/ckeditor/ckeditor5/commit/9eea4bfeb7ff3807ad17af926a62376855cbc0d2))
58
+
59
+ ### Released packages
60
+
61
+ Check out the [Versioning policy](https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/versioning-policy.html) guide for more information.
62
+
63
+ <details>
64
+ <summary>Released packages (summary)</summary>
65
+
66
+ New packages:
67
+
68
+ * [@ckeditor/ckeditor5-show-blocks](https://www.npmjs.com/package/@ckeditor/ckeditor5-show-blocks): v38.1.0
69
+
70
+ Minor releases (contain minor breaking changes):
71
+
72
+ * [@ckeditor/ckeditor5-html-support](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-support): v38.0.1 => v38.1.0
73
+
74
+ Releases containing new features:
75
+
76
+ * [@ckeditor/ckeditor5-list](https://www.npmjs.com/package/@ckeditor/ckeditor5-list): v38.0.1 => v38.1.0
77
+ * [@ckeditor/ckeditor5-style](https://www.npmjs.com/package/@ckeditor/ckeditor5-style): v38.0.1 => v38.1.0
78
+ * [@ckeditor/ckeditor5-ui](https://www.npmjs.com/package/@ckeditor/ckeditor5-ui): v38.0.1 => v38.1.0
79
+
80
+ Other releases:
81
+
82
+ * [@ckeditor/ckeditor5-adapter-ckfinder](https://www.npmjs.com/package/@ckeditor/ckeditor5-adapter-ckfinder): v38.0.1 => v38.1.0
83
+ * [@ckeditor/ckeditor5-alignment](https://www.npmjs.com/package/@ckeditor/ckeditor5-alignment): v38.0.1 => v38.1.0
84
+ * [@ckeditor/ckeditor5-autoformat](https://www.npmjs.com/package/@ckeditor/ckeditor5-autoformat): v38.0.1 => v38.1.0
85
+ * [@ckeditor/ckeditor5-autosave](https://www.npmjs.com/package/@ckeditor/ckeditor5-autosave): v38.0.1 => v38.1.0
86
+ * [@ckeditor/ckeditor5-basic-styles](https://www.npmjs.com/package/@ckeditor/ckeditor5-basic-styles): v38.0.1 => v38.1.0
87
+ * [@ckeditor/ckeditor5-block-quote](https://www.npmjs.com/package/@ckeditor/ckeditor5-block-quote): v38.0.1 => v38.1.0
88
+ * [@ckeditor/ckeditor5-build-balloon](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-balloon): v38.0.1 => v38.1.0
89
+ * [@ckeditor/ckeditor5-build-balloon-block](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-balloon-block): v38.0.1 => v38.1.0
90
+ * [@ckeditor/ckeditor5-build-classic](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-classic): v38.0.1 => v38.1.0
91
+ * [@ckeditor/ckeditor5-build-decoupled-document](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-decoupled-document): v38.0.1 => v38.1.0
92
+ * [@ckeditor/ckeditor5-build-inline](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-inline): v38.0.1 => v38.1.0
93
+ * [@ckeditor/ckeditor5-build-multi-root](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-multi-root): v38.0.1 => v38.1.0
94
+ * [@ckeditor/ckeditor5-ckbox](https://www.npmjs.com/package/@ckeditor/ckeditor5-ckbox): v38.0.1 => v38.1.0
95
+ * [@ckeditor/ckeditor5-ckfinder](https://www.npmjs.com/package/@ckeditor/ckeditor5-ckfinder): v38.0.1 => v38.1.0
96
+ * [@ckeditor/ckeditor5-clipboard](https://www.npmjs.com/package/@ckeditor/ckeditor5-clipboard): v38.0.1 => v38.1.0
97
+ * [@ckeditor/ckeditor5-cloud-services](https://www.npmjs.com/package/@ckeditor/ckeditor5-cloud-services): v38.0.1 => v38.1.0
98
+ * [@ckeditor/ckeditor5-code-block](https://www.npmjs.com/package/@ckeditor/ckeditor5-code-block): v38.0.1 => v38.1.0
99
+ * [@ckeditor/ckeditor5-collaboration-core](https://www.npmjs.com/package/@ckeditor/ckeditor5-collaboration-core): v38.0.1 => v38.1.0
100
+ * [@ckeditor/ckeditor5-comments](https://www.npmjs.com/package/@ckeditor/ckeditor5-comments): v38.0.1 => v38.1.0
101
+ * [@ckeditor/ckeditor5-core](https://www.npmjs.com/package/@ckeditor/ckeditor5-core): v38.0.1 => v38.1.0
102
+ * [@ckeditor/ckeditor5-document-outline](https://www.npmjs.com/package/@ckeditor/ckeditor5-document-outline): v38.0.1 => v38.1.0
103
+ * [@ckeditor/ckeditor5-easy-image](https://www.npmjs.com/package/@ckeditor/ckeditor5-easy-image): v38.0.1 => v38.1.0
104
+ * [@ckeditor/ckeditor5-editor-balloon](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-balloon): v38.0.1 => v38.1.0
105
+ * [@ckeditor/ckeditor5-editor-classic](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-classic): v38.0.1 => v38.1.0
106
+ * [@ckeditor/ckeditor5-editor-decoupled](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-decoupled): v38.0.1 => v38.1.0
107
+ * [@ckeditor/ckeditor5-editor-inline](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-inline): v38.0.1 => v38.1.0
108
+ * [@ckeditor/ckeditor5-editor-multi-root](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-multi-root): v38.0.1 => v38.1.0
109
+ * [@ckeditor/ckeditor5-engine](https://www.npmjs.com/package/@ckeditor/ckeditor5-engine): v38.0.1 => v38.1.0
110
+ * [@ckeditor/ckeditor5-enter](https://www.npmjs.com/package/@ckeditor/ckeditor5-enter): v38.0.1 => v38.1.0
111
+ * [@ckeditor/ckeditor5-essentials](https://www.npmjs.com/package/@ckeditor/ckeditor5-essentials): v38.0.1 => v38.1.0
112
+ * [@ckeditor/ckeditor5-export-pdf](https://www.npmjs.com/package/@ckeditor/ckeditor5-export-pdf): v38.0.1 => v38.1.0
113
+ * [@ckeditor/ckeditor5-export-word](https://www.npmjs.com/package/@ckeditor/ckeditor5-export-word): v38.0.1 => v38.1.0
114
+ * [@ckeditor/ckeditor5-find-and-replace](https://www.npmjs.com/package/@ckeditor/ckeditor5-find-and-replace): v38.0.1 => v38.1.0
115
+ * [@ckeditor/ckeditor5-font](https://www.npmjs.com/package/@ckeditor/ckeditor5-font): v38.0.1 => v38.1.0
116
+ * [@ckeditor/ckeditor5-format-painter](https://www.npmjs.com/package/@ckeditor/ckeditor5-format-painter): v38.0.1 => v38.1.0
117
+ * [@ckeditor/ckeditor5-heading](https://www.npmjs.com/package/@ckeditor/ckeditor5-heading): v38.0.1 => v38.1.0
118
+ * [@ckeditor/ckeditor5-highlight](https://www.npmjs.com/package/@ckeditor/ckeditor5-highlight): v38.0.1 => v38.1.0
119
+ * [@ckeditor/ckeditor5-horizontal-line](https://www.npmjs.com/package/@ckeditor/ckeditor5-horizontal-line): v38.0.1 => v38.1.0
120
+ * [@ckeditor/ckeditor5-html-embed](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-embed): v38.0.1 => v38.1.0
121
+ * [@ckeditor/ckeditor5-image](https://www.npmjs.com/package/@ckeditor/ckeditor5-image): v38.0.1 => v38.1.0
122
+ * [@ckeditor/ckeditor5-import-word](https://www.npmjs.com/package/@ckeditor/ckeditor5-import-word): v38.0.1 => v38.1.0
123
+ * [@ckeditor/ckeditor5-indent](https://www.npmjs.com/package/@ckeditor/ckeditor5-indent): v38.0.1 => v38.1.0
124
+ * [@ckeditor/ckeditor5-language](https://www.npmjs.com/package/@ckeditor/ckeditor5-language): v38.0.1 => v38.1.0
125
+ * [@ckeditor/ckeditor5-link](https://www.npmjs.com/package/@ckeditor/ckeditor5-link): v38.0.1 => v38.1.0
126
+ * [@ckeditor/ckeditor5-markdown-gfm](https://www.npmjs.com/package/@ckeditor/ckeditor5-markdown-gfm): v38.0.1 => v38.1.0
127
+ * [@ckeditor/ckeditor5-media-embed](https://www.npmjs.com/package/@ckeditor/ckeditor5-media-embed): v38.0.1 => v38.1.0
128
+ * [@ckeditor/ckeditor5-mention](https://www.npmjs.com/package/@ckeditor/ckeditor5-mention): v38.0.1 => v38.1.0
129
+ * [@ckeditor/ckeditor5-minimap](https://www.npmjs.com/package/@ckeditor/ckeditor5-minimap): v38.0.1 => v38.1.0
130
+ * [@ckeditor/ckeditor5-operations-compressor](https://www.npmjs.com/package/@ckeditor/ckeditor5-operations-compressor): v38.0.1 => v38.1.0
131
+ * [@ckeditor/ckeditor5-page-break](https://www.npmjs.com/package/@ckeditor/ckeditor5-page-break): v38.0.1 => v38.1.0
132
+ * [@ckeditor/ckeditor5-pagination](https://www.npmjs.com/package/@ckeditor/ckeditor5-pagination): v38.0.1 => v38.1.0
133
+ * [@ckeditor/ckeditor5-paragraph](https://www.npmjs.com/package/@ckeditor/ckeditor5-paragraph): v38.0.1 => v38.1.0
134
+ * [@ckeditor/ckeditor5-paste-from-office](https://www.npmjs.com/package/@ckeditor/ckeditor5-paste-from-office): v38.0.1 => v38.1.0
135
+ * [@ckeditor/ckeditor5-real-time-collaboration](https://www.npmjs.com/package/@ckeditor/ckeditor5-real-time-collaboration): v38.0.1 => v38.1.0
136
+ * [@ckeditor/ckeditor5-remove-format](https://www.npmjs.com/package/@ckeditor/ckeditor5-remove-format): v38.0.1 => v38.1.0
137
+ * [@ckeditor/ckeditor5-restricted-editing](https://www.npmjs.com/package/@ckeditor/ckeditor5-restricted-editing): v38.0.1 => v38.1.0
138
+ * [@ckeditor/ckeditor5-revision-history](https://www.npmjs.com/package/@ckeditor/ckeditor5-revision-history): v38.0.1 => v38.1.0
139
+ * [@ckeditor/ckeditor5-select-all](https://www.npmjs.com/package/@ckeditor/ckeditor5-select-all): v38.0.1 => v38.1.0
140
+ * [@ckeditor/ckeditor5-slash-command](https://www.npmjs.com/package/@ckeditor/ckeditor5-slash-command): v38.0.1 => v38.1.0
141
+ * [@ckeditor/ckeditor5-source-editing](https://www.npmjs.com/package/@ckeditor/ckeditor5-source-editing): v38.0.1 => v38.1.0
142
+ * [@ckeditor/ckeditor5-special-characters](https://www.npmjs.com/package/@ckeditor/ckeditor5-special-characters): v38.0.1 => v38.1.0
143
+ * [@ckeditor/ckeditor5-table](https://www.npmjs.com/package/@ckeditor/ckeditor5-table): v38.0.1 => v38.1.0
144
+ * [@ckeditor/ckeditor5-template](https://www.npmjs.com/package/@ckeditor/ckeditor5-template): v38.0.1 => v38.1.0
145
+ * [@ckeditor/ckeditor5-theme-lark](https://www.npmjs.com/package/@ckeditor/ckeditor5-theme-lark): v38.0.1 => v38.1.0
146
+ * [@ckeditor/ckeditor5-track-changes](https://www.npmjs.com/package/@ckeditor/ckeditor5-track-changes): v38.0.1 => v38.1.0
147
+ * [@ckeditor/ckeditor5-typing](https://www.npmjs.com/package/@ckeditor/ckeditor5-typing): v38.0.1 => v38.1.0
148
+ * [@ckeditor/ckeditor5-undo](https://www.npmjs.com/package/@ckeditor/ckeditor5-undo): v38.0.1 => v38.1.0
149
+ * [@ckeditor/ckeditor5-upload](https://www.npmjs.com/package/@ckeditor/ckeditor5-upload): v38.0.1 => v38.1.0
150
+ * [@ckeditor/ckeditor5-utils](https://www.npmjs.com/package/@ckeditor/ckeditor5-utils): v38.0.1 => v38.1.0
151
+ * [@ckeditor/ckeditor5-watchdog](https://www.npmjs.com/package/@ckeditor/ckeditor5-watchdog): v38.0.1 => v38.1.0
152
+ * [@ckeditor/ckeditor5-widget](https://www.npmjs.com/package/@ckeditor/ckeditor5-widget): v38.0.1 => v38.1.0
153
+ * [@ckeditor/ckeditor5-word-count](https://www.npmjs.com/package/@ckeditor/ckeditor5-word-count): v38.0.1 => v38.1.0
154
+ * [@ckeditor/letters](https://www.npmjs.com/package/@ckeditor/letters): v38.0.1 => v38.1.0
155
+ * [ckeditor5-collaboration](https://www.npmjs.com/package/ckeditor5-collaboration): v38.0.1 => v38.1.0
156
+ </details>
157
+
158
+
159
+ ## [38.0.1](https://github.com/ckeditor/ckeditor5/compare/v38.0.0...v38.0.1) (2023-05-23)
160
+
161
+ ### Release highlights
162
+
163
+ This is a patch release that resolves an incorrect import issue that resulted in a ["Cannot find module" error when using CKEditor 5 in a TypeScript environment](https://github.com/ckeditor/ckeditor5/issues/14205).
164
+
165
+ Due to that and the [CKEditor 5 versioning policy](https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/versioning-policy.html), we released all packages once again.
166
+
167
+ Check out the highlights of the original [v38.0.0 release](https://github.com/ckeditor/ckeditor5/releases/tag/v38.0.0).
168
+
169
+ ### Bug fixes
170
+
171
+ * **[ui](https://www.npmjs.com/package/@ckeditor/ckeditor5-ui)**: Fixed how the code exports the `colorPaletteIcon` icon, which could result with a broken build. Closes [#14205](https://github.com/ckeditor/ckeditor5/issues/14205). ([commit](https://github.com/ckeditor/ckeditor5/commit/42001f77e84f5d453e81cbcc3ebf69972a90ad8d))
172
+
173
+ ### Released packages
174
+
175
+ Check out the [Versioning policy](https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/versioning-policy.html) guide for more information.
176
+
177
+ <details>
178
+ <summary>Released packages (summary)</summary>
179
+
180
+ Other releases:
181
+
182
+ * [@ckeditor/ckeditor5-adapter-ckfinder](https://www.npmjs.com/package/@ckeditor/ckeditor5-adapter-ckfinder): v38.0.0 => v38.0.1
183
+ * [@ckeditor/ckeditor5-alignment](https://www.npmjs.com/package/@ckeditor/ckeditor5-alignment): v38.0.0 => v38.0.1
184
+ * [@ckeditor/ckeditor5-autoformat](https://www.npmjs.com/package/@ckeditor/ckeditor5-autoformat): v38.0.0 => v38.0.1
185
+ * [@ckeditor/ckeditor5-autosave](https://www.npmjs.com/package/@ckeditor/ckeditor5-autosave): v38.0.0 => v38.0.1
186
+ * [@ckeditor/ckeditor5-basic-styles](https://www.npmjs.com/package/@ckeditor/ckeditor5-basic-styles): v38.0.0 => v38.0.1
187
+ * [@ckeditor/ckeditor5-block-quote](https://www.npmjs.com/package/@ckeditor/ckeditor5-block-quote): v38.0.0 => v38.0.1
188
+ * [@ckeditor/ckeditor5-build-balloon](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-balloon): v38.0.0 => v38.0.1
189
+ * [@ckeditor/ckeditor5-build-balloon-block](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-balloon-block): v38.0.0 => v38.0.1
190
+ * [@ckeditor/ckeditor5-build-classic](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-classic): v38.0.0 => v38.0.1
191
+ * [@ckeditor/ckeditor5-build-decoupled-document](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-decoupled-document): v38.0.0 => v38.0.1
192
+ * [@ckeditor/ckeditor5-build-inline](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-inline): v38.0.0 => v38.0.1
193
+ * [@ckeditor/ckeditor5-build-multi-root](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-multi-root): v38.0.0 => v38.0.1
194
+ * [@ckeditor/ckeditor5-ckbox](https://www.npmjs.com/package/@ckeditor/ckeditor5-ckbox): v38.0.0 => v38.0.1
195
+ * [@ckeditor/ckeditor5-ckfinder](https://www.npmjs.com/package/@ckeditor/ckeditor5-ckfinder): v38.0.0 => v38.0.1
196
+ * [@ckeditor/ckeditor5-clipboard](https://www.npmjs.com/package/@ckeditor/ckeditor5-clipboard): v38.0.0 => v38.0.1
197
+ * [@ckeditor/ckeditor5-cloud-services](https://www.npmjs.com/package/@ckeditor/ckeditor5-cloud-services): v38.0.0 => v38.0.1
198
+ * [@ckeditor/ckeditor5-code-block](https://www.npmjs.com/package/@ckeditor/ckeditor5-code-block): v38.0.0 => v38.0.1
199
+ * [@ckeditor/ckeditor5-collaboration-core](https://www.npmjs.com/package/@ckeditor/ckeditor5-collaboration-core): v38.0.0 => v38.0.1
200
+ * [@ckeditor/ckeditor5-comments](https://www.npmjs.com/package/@ckeditor/ckeditor5-comments): v38.0.0 => v38.0.1
201
+ * [@ckeditor/ckeditor5-core](https://www.npmjs.com/package/@ckeditor/ckeditor5-core): v38.0.0 => v38.0.1
202
+ * [@ckeditor/ckeditor5-document-outline](https://www.npmjs.com/package/@ckeditor/ckeditor5-document-outline): v38.0.0 => v38.0.1
203
+ * [@ckeditor/ckeditor5-easy-image](https://www.npmjs.com/package/@ckeditor/ckeditor5-easy-image): v38.0.0 => v38.0.1
204
+ * [@ckeditor/ckeditor5-editor-balloon](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-balloon): v38.0.0 => v38.0.1
205
+ * [@ckeditor/ckeditor5-editor-classic](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-classic): v38.0.0 => v38.0.1
206
+ * [@ckeditor/ckeditor5-editor-decoupled](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-decoupled): v38.0.0 => v38.0.1
207
+ * [@ckeditor/ckeditor5-editor-inline](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-inline): v38.0.0 => v38.0.1
208
+ * [@ckeditor/ckeditor5-editor-multi-root](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-multi-root): v38.0.0 => v38.0.1
209
+ * [@ckeditor/ckeditor5-engine](https://www.npmjs.com/package/@ckeditor/ckeditor5-engine): v38.0.0 => v38.0.1
210
+ * [@ckeditor/ckeditor5-enter](https://www.npmjs.com/package/@ckeditor/ckeditor5-enter): v38.0.0 => v38.0.1
211
+ * [@ckeditor/ckeditor5-essentials](https://www.npmjs.com/package/@ckeditor/ckeditor5-essentials): v38.0.0 => v38.0.1
212
+ * [@ckeditor/ckeditor5-export-pdf](https://www.npmjs.com/package/@ckeditor/ckeditor5-export-pdf): v38.0.0 => v38.0.1
213
+ * [@ckeditor/ckeditor5-export-word](https://www.npmjs.com/package/@ckeditor/ckeditor5-export-word): v38.0.0 => v38.0.1
214
+ * [@ckeditor/ckeditor5-find-and-replace](https://www.npmjs.com/package/@ckeditor/ckeditor5-find-and-replace): v38.0.0 => v38.0.1
215
+ * [@ckeditor/ckeditor5-font](https://www.npmjs.com/package/@ckeditor/ckeditor5-font): v38.0.0 => v38.0.1
216
+ * [@ckeditor/ckeditor5-format-painter](https://www.npmjs.com/package/@ckeditor/ckeditor5-format-painter): v38.0.0 => v38.0.1
217
+ * [@ckeditor/ckeditor5-heading](https://www.npmjs.com/package/@ckeditor/ckeditor5-heading): v38.0.0 => v38.0.1
218
+ * [@ckeditor/ckeditor5-highlight](https://www.npmjs.com/package/@ckeditor/ckeditor5-highlight): v38.0.0 => v38.0.1
219
+ * [@ckeditor/ckeditor5-horizontal-line](https://www.npmjs.com/package/@ckeditor/ckeditor5-horizontal-line): v38.0.0 => v38.0.1
220
+ * [@ckeditor/ckeditor5-html-embed](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-embed): v38.0.0 => v38.0.1
221
+ * [@ckeditor/ckeditor5-html-support](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-support): v38.0.0 => v38.0.1
222
+ * [@ckeditor/ckeditor5-image](https://www.npmjs.com/package/@ckeditor/ckeditor5-image): v38.0.0 => v38.0.1
223
+ * [@ckeditor/ckeditor5-import-word](https://www.npmjs.com/package/@ckeditor/ckeditor5-import-word): v38.0.0 => v38.0.1
224
+ * [@ckeditor/ckeditor5-indent](https://www.npmjs.com/package/@ckeditor/ckeditor5-indent): v38.0.0 => v38.0.1
225
+ * [@ckeditor/ckeditor5-language](https://www.npmjs.com/package/@ckeditor/ckeditor5-language): v38.0.0 => v38.0.1
226
+ * [@ckeditor/ckeditor5-link](https://www.npmjs.com/package/@ckeditor/ckeditor5-link): v38.0.0 => v38.0.1
227
+ * [@ckeditor/ckeditor5-list](https://www.npmjs.com/package/@ckeditor/ckeditor5-list): v38.0.0 => v38.0.1
228
+ * [@ckeditor/ckeditor5-markdown-gfm](https://www.npmjs.com/package/@ckeditor/ckeditor5-markdown-gfm): v38.0.0 => v38.0.1
229
+ * [@ckeditor/ckeditor5-media-embed](https://www.npmjs.com/package/@ckeditor/ckeditor5-media-embed): v38.0.0 => v38.0.1
230
+ * [@ckeditor/ckeditor5-mention](https://www.npmjs.com/package/@ckeditor/ckeditor5-mention): v38.0.0 => v38.0.1
231
+ * [@ckeditor/ckeditor5-minimap](https://www.npmjs.com/package/@ckeditor/ckeditor5-minimap): v38.0.0 => v38.0.1
232
+ * [@ckeditor/ckeditor5-operations-compressor](https://www.npmjs.com/package/@ckeditor/ckeditor5-operations-compressor): v38.0.0 => v38.0.1
233
+ * [@ckeditor/ckeditor5-page-break](https://www.npmjs.com/package/@ckeditor/ckeditor5-page-break): v38.0.0 => v38.0.1
234
+ * [@ckeditor/ckeditor5-pagination](https://www.npmjs.com/package/@ckeditor/ckeditor5-pagination): v38.0.0 => v38.0.1
235
+ * [@ckeditor/ckeditor5-paragraph](https://www.npmjs.com/package/@ckeditor/ckeditor5-paragraph): v38.0.0 => v38.0.1
236
+ * [@ckeditor/ckeditor5-paste-from-office](https://www.npmjs.com/package/@ckeditor/ckeditor5-paste-from-office): v38.0.0 => v38.0.1
237
+ * [@ckeditor/ckeditor5-real-time-collaboration](https://www.npmjs.com/package/@ckeditor/ckeditor5-real-time-collaboration): v38.0.0 => v38.0.1
238
+ * [@ckeditor/ckeditor5-remove-format](https://www.npmjs.com/package/@ckeditor/ckeditor5-remove-format): v38.0.0 => v38.0.1
239
+ * [@ckeditor/ckeditor5-restricted-editing](https://www.npmjs.com/package/@ckeditor/ckeditor5-restricted-editing): v38.0.0 => v38.0.1
240
+ * [@ckeditor/ckeditor5-revision-history](https://www.npmjs.com/package/@ckeditor/ckeditor5-revision-history): v38.0.0 => v38.0.1
241
+ * [@ckeditor/ckeditor5-select-all](https://www.npmjs.com/package/@ckeditor/ckeditor5-select-all): v38.0.0 => v38.0.1
242
+ * [@ckeditor/ckeditor5-slash-command](https://www.npmjs.com/package/@ckeditor/ckeditor5-slash-command): v38.0.0 => v38.0.1
243
+ * [@ckeditor/ckeditor5-source-editing](https://www.npmjs.com/package/@ckeditor/ckeditor5-source-editing): v38.0.0 => v38.0.1
244
+ * [@ckeditor/ckeditor5-special-characters](https://www.npmjs.com/package/@ckeditor/ckeditor5-special-characters): v38.0.0 => v38.0.1
245
+ * [@ckeditor/ckeditor5-style](https://www.npmjs.com/package/@ckeditor/ckeditor5-style): v38.0.0 => v38.0.1
246
+ * [@ckeditor/ckeditor5-table](https://www.npmjs.com/package/@ckeditor/ckeditor5-table): v38.0.0 => v38.0.1
247
+ * [@ckeditor/ckeditor5-template](https://www.npmjs.com/package/@ckeditor/ckeditor5-template): v38.0.0 => v38.0.1
248
+ * [@ckeditor/ckeditor5-theme-lark](https://www.npmjs.com/package/@ckeditor/ckeditor5-theme-lark): v38.0.0 => v38.0.1
249
+ * [@ckeditor/ckeditor5-track-changes](https://www.npmjs.com/package/@ckeditor/ckeditor5-track-changes): v38.0.0 => v38.0.1
250
+ * [@ckeditor/ckeditor5-typing](https://www.npmjs.com/package/@ckeditor/ckeditor5-typing): v38.0.0 => v38.0.1
251
+ * [@ckeditor/ckeditor5-ui](https://www.npmjs.com/package/@ckeditor/ckeditor5-ui): v38.0.0 => v38.0.1
252
+ * [@ckeditor/ckeditor5-undo](https://www.npmjs.com/package/@ckeditor/ckeditor5-undo): v38.0.0 => v38.0.1
253
+ * [@ckeditor/ckeditor5-upload](https://www.npmjs.com/package/@ckeditor/ckeditor5-upload): v38.0.0 => v38.0.1
254
+ * [@ckeditor/ckeditor5-utils](https://www.npmjs.com/package/@ckeditor/ckeditor5-utils): v38.0.0 => v38.0.1
255
+ * [@ckeditor/ckeditor5-watchdog](https://www.npmjs.com/package/@ckeditor/ckeditor5-watchdog): v38.0.0 => v38.0.1
256
+ * [@ckeditor/ckeditor5-widget](https://www.npmjs.com/package/@ckeditor/ckeditor5-widget): v38.0.0 => v38.0.1
257
+ * [@ckeditor/ckeditor5-word-count](https://www.npmjs.com/package/@ckeditor/ckeditor5-word-count): v38.0.0 => v38.0.1
258
+ * [@ckeditor/letters](https://www.npmjs.com/package/@ckeditor/letters): v38.0.0 => v38.0.1
259
+ * [ckeditor5-collaboration](https://www.npmjs.com/package/ckeditor5-collaboration): v38.0.0 => v38.0.1
260
+ </details>
261
+
262
+
4
263
  ## [38.0.0](https://github.com/ckeditor/ckeditor5/compare/v37.1.0...v38.0.0) (2023-05-22)
5
264
 
6
265
  ### Release highlights
@@ -11,7 +270,7 @@ From version v38.0.0 onwards, all open-source installations of CKEditor (using i
11
270
 
12
271
  This change does not affect customers with commercial licenses. You can reach out to our Technical Support team using [this form](https://ckeditor.com/contact/), if you have any questions.
13
272
 
14
- You can read more about this change in the [announcement on GitHub](https://github.com/ckeditor/ckeditor5/issues/14082), the [update guide](https://ckeditor.com/docs/ckeditor5/latest/updating/guides/update-to-38.html), and the [Managing the "Powered by CKEditor" logo guide](https://ckeditor.com/docs/ckeditor5/latest/support/managing-ckeditor-logo.html).
273
+ You can read more about this change in the [announcement on GitHub](https://github.com/ckeditor/ckeditor5/issues/14082), the [update guide](https://ckeditor.com/docs/ckeditor5/latest/updating/guides/update-to-38.html), and the [Managing the "Powered by CKEditor" logo guide](https://ckeditor.com/docs/ckeditor5/latest/support/licensing/managing-ckeditor-logo.html).
15
274
 
16
275
  #### Color picker
17
276
 
package/README.md CHANGED
@@ -5,9 +5,10 @@ CKEditor 5 [![Tweet](https://img.shields.io/twitter/url/http/shields.io.svg?styl
5
5
  [![Coverage Status](https://coveralls.io/repos/github/ckeditor/ckeditor5/badge.svg?branch=master)](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
6
6
  [![Build Status](https://travis-ci.com/ckeditor/ckeditor5.svg?branch=master)](https://app.travis-ci.com/github/ckeditor/ckeditor5)
7
7
  ![Dependency Status](https://img.shields.io/librariesio/release/npm/ckeditor5)
8
+ ![TypeScript Support](https://badgen.net/badge/Built%20With/TypeScript/blue)
8
9
 
9
10
  [![Join newsletter](https://img.shields.io/badge/join-newsletter-00cc99.svg)](http://eepurl.com/c3zRPr)
10
- [![Follow twitter](https://img.shields.io/badge/follow-twitter-00cc99.svg)](https://twitter.com/ckeditor)
11
+ [![Follow Twitter](https://img.shields.io/badge/follow-twitter-00cc99.svg)](https://twitter.com/ckeditor)
11
12
 
12
13
  CKEditor 5 is an ultra-modern JavaScript rich-text editor with MVC architecture, a custom data model, and virtual DOM. It is written from scratch in TypeScript and has excellent webpack and Vite support. It provides every type of WYSIWYG editing solution imaginable with extensive collaboration support. From editors similar to Google Docs and Medium to Slack or Twitter-like applications, all is possible within a single editing framework. As a market leader, it is constantly expanded and updated.
13
14
 
@@ -21,6 +22,7 @@ CKEditor 5 is an ultra-modern JavaScript rich-text editor with MVC architecture,
21
22
  - [CKEditor 5 online builder](#ckeditor-5-online-builder)
22
23
  - [CKEditor 5 predefined builds](#ckeditor-5-predefined-builds)
23
24
  - [Example installation](#example-installation)
25
+ - [TypeScript support](#typescript-support)
24
26
  - [CKEditor 5 advanced installation](#ckeditor-5-advanced-installation)
25
27
  - [CKEditor 5 Framework](#ckeditor-5-framework)
26
28
  - [Documentation and FAQ](#documentation-and-faq)
@@ -66,7 +68,7 @@ In your HTML page, add an element that CKEditor should replace:
66
68
  Load the classic editor build (you can choose between the [CDN](https://cdn.ckeditor.com/#ckeditor5), [npm](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/predefined-builds.html#npm), and [zip downloads](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/predefined-builds.html#zip-download)):
67
69
 
68
70
  ```html
69
- <script src="https://cdn.ckeditor.com/ckeditor5/38.0.0/classic/ckeditor.js"></script>
71
+ <script src="https://cdn.ckeditor.com/ckeditor5/38.1.0/classic/ckeditor.js"></script>
70
72
  ```
71
73
 
72
74
  Call the [`ClassicEditor.create()`](https://ckeditor.com/docs/ckeditor5/latest/api/module_editor-classic_classiceditor-ClassicEditor.html#static-function-create) method:
@@ -85,6 +87,10 @@ You’re ready to go!
85
87
 
86
88
  To find out how to start with other builds, check the [Predefined builds](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/predefined-builds.html) guide in the CKEditor 5 documentation.
87
89
 
90
+ ### TypeScript support
91
+
92
+ CKEditor 5 is a TypeScript project. Starting from v37.0.0, it offers native type definitions. Check out our dedicated guide to read more about [TypeScript support](https://ckeditor.com/docs/ckeditor5/latest/installation/working-with-typescript.html).
93
+
88
94
  ### CKEditor 5 advanced installation
89
95
 
90
96
  For more advanced users or those who need to integrate CKEditor 5 with their applications, we have prepared several other, advanced methods to do it. You can: