ckeditor5 36.0.1 → 37.0.0-alpha.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 +134 -1
- package/README.md +5 -5
- package/build/ckeditor5-dll.js +1 -1
- package/build/ckeditor5-dll.manifest.json +3 -0
- package/package.json +13 -13
- package/src/clipboard.d.ts +8 -0
- package/{typings/types.d.ts → src/core.d.ts} +4 -5
- package/src/engine.d.ts +8 -0
- package/src/enter.d.ts +8 -0
- package/src/paragraph.d.ts +8 -0
- package/src/select-all.d.ts +8 -0
- package/src/typing.d.ts +8 -0
- package/src/ui.d.ts +8 -0
- package/src/undo.d.ts +8 -0
- package/src/upload.d.ts +8 -0
- package/src/utils.d.ts +8 -0
- package/src/widget.d.ts +8 -0
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,139 @@
|
|
1
1
|
Changelog
|
2
2
|
=========
|
3
3
|
|
4
|
+
## [37.0.0-alpha.0](https://github.com/ckeditor/ckeditor5/compare/v36.0.1...v37.0.0-alpha.0) (2023-02-27)
|
5
|
+
|
6
|
+
### Release highlights
|
7
|
+
|
8
|
+
This release brings the long-awaited feature: typings for CKEditor 5. They are compatible with TypeScript version 4.8.4 or higher.
|
9
|
+
|
10
|
+
Please keep in mind the release is marked as `alpha` which means it is an experimental version and some unexpected results may occur when using these typings.
|
11
|
+
|
12
|
+
We appreciate all your feedback that lets us improve the final shape of the project.
|
13
|
+
|
14
|
+
### MINOR BREAKING CHANGES [ℹ️](https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/versioning-policy.html#major-and-minor-breaking-changes)
|
15
|
+
|
16
|
+
* **[table](https://www.npmjs.com/package/@ckeditor/ckeditor5-table)**: The table columns' widths are stored as model elements instead of model element attributes. See [#11479](https://github.com/ckeditor/ckeditor5/issues/11479).
|
17
|
+
|
18
|
+
### Features
|
19
|
+
|
20
|
+
* **[mention](https://www.npmjs.com/package/@ckeditor/ckeditor5-mention)**: Limiting the dropdown on the singular feed level should be possible. Closes [#13504](https://github.com/ckeditor/ckeditor5/issues/13504). ([commit](https://github.com/ckeditor/ckeditor5/commit/489b3fda402504cb0492fceb368af475c8dd85b6))
|
21
|
+
|
22
|
+
### Bug fixes
|
23
|
+
|
24
|
+
* **[engine](https://www.npmjs.com/package/@ckeditor/ckeditor5-engine)**: The `elementToStructure()` downcast helper should not skip attribute changes that happened with the modification of the children list. ([commit](https://github.com/ckeditor/ckeditor5/commit/61debdca19f7a5166433220b819232d20d8b9f26))
|
25
|
+
* **[html-support](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-support)**: Attributes on the `<colgroup>`, and `<col>` elements should be preserved in the data. Closes [#11479](https://github.com/ckeditor/ckeditor5/issues/11479). ([commit](https://github.com/ckeditor/ckeditor5/commit/61debdca19f7a5166433220b819232d20d8b9f26))
|
26
|
+
* **[html-support](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-support)**: Fix description lists with name-value groups wrapped in div elements when upcasting using the General HTML Support feature. Closes [#12240](https://github.com/ckeditor/ckeditor5/issues/12240). ([commit](https://github.com/ckeditor/ckeditor5/commit/cb96419897e114e40dbeeca902b7463af372866f))
|
27
|
+
* **[mention](https://www.npmjs.com/package/@ckeditor/ckeditor5-mention)**: Mentions panel should be positioned left to the caret in editors with right–to–left UI language. Closes [#13459](https://github.com/ckeditor/ckeditor5/issues/13459). ([commit](https://github.com/ckeditor/ckeditor5/commit/45ac9e29e87c02d5ce26fa461075c6f21c6d44a8))
|
28
|
+
|
29
|
+
### Other changes
|
30
|
+
|
31
|
+
* **[style](https://www.npmjs.com/package/@ckeditor/ckeditor5-style)**: Introduced the `StyleUtils` plugin to make the style util functions accessible. Closes [#13484](https://github.com/ckeditor/ckeditor5/issues/13484). ([commit](https://github.com/ckeditor/ckeditor5/commit/ee181f9903b09701deba2d3d85dab25fb5fadfbf))
|
32
|
+
* **[table](https://www.npmjs.com/package/@ckeditor/ckeditor5-table)**: The table columns' widths are stored as model elements instead of model element attributes. See [#11479](https://github.com/ckeditor/ckeditor5/issues/11479). ([commit](https://github.com/ckeditor/ckeditor5/commit/61debdca19f7a5166433220b819232d20d8b9f26))
|
33
|
+
* The remaining CKEditor 5 packages have been rewritten to TypeScript:
|
34
|
+
* **[@ckeditor/ckeditor5-autosave](https://www.npmjs.com/package/@ckeditor/ckeditor5-autosave)**: closes [#12997](https://github.com/ckeditor/ckeditor5/issues/12997). ([commit](https://github.com/ckeditor/ckeditor5/commit/7dea975058cfa1bd0c6b6b42a96187c3706547d9))
|
35
|
+
* **[@ckeditor/ckeditor5-build-balloon](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-balloon)**: closes [#13000](https://github.com/ckeditor/ckeditor5/issues/13000). ([commit](https://github.com/ckeditor/ckeditor5/commit/4bf33ea3dc14b2354ec392bb34aa1bcce78b5ecc))
|
36
|
+
* **[@ckeditor/ckeditor5-build-balloon-block](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-balloon-block)**: closes [#13001](https://github.com/ckeditor/ckeditor5/issues/13001). ([commit](https://github.com/ckeditor/ckeditor5/commit/4bf33ea3dc14b2354ec392bb34aa1bcce78b5ecc))
|
37
|
+
* **[@ckeditor/ckeditor5-build-classic](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-classic)**: closes [#13002](https://github.com/ckeditor/ckeditor5/issues/13002). ([commit](https://github.com/ckeditor/ckeditor5/commit/4bf33ea3dc14b2354ec392bb34aa1bcce78b5ecc))
|
38
|
+
* **[@ckeditor/ckeditor5-build-decoupled-document](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-decoupled-document)**: closes [#13003](https://github.com/ckeditor/ckeditor5/issues/13003). ([commit](https://github.com/ckeditor/ckeditor5/commit/4bf33ea3dc14b2354ec392bb34aa1bcce78b5ecc))
|
39
|
+
* **[@ckeditor/ckeditor5-build-inline](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-inline)**: closes [#13004](https://github.com/ckeditor/ckeditor5/issues/13004). ([commit](https://github.com/ckeditor/ckeditor5/commit/4bf33ea3dc14b2354ec392bb34aa1bcce78b5ecc))
|
40
|
+
* **[@ckeditor/ckeditor5-ckbox](https://www.npmjs.com/package/@ckeditor/ckeditor5-ckbox)**: closes [#13005](https://github.com/ckeditor/ckeditor5/issues/13005). ([commit](https://github.com/ckeditor/ckeditor5/commit/37dee8727bb44b2685a1e83285fd9d4fad0a04f7))
|
41
|
+
* **[@ckeditor/ckeditor5-ckfinder](https://www.npmjs.com/package/@ckeditor/ckeditor5-ckfinder)**: closes [#13006](https://github.com/ckeditor/ckeditor5/issues/13006). ([commit](https://github.com/ckeditor/ckeditor5/commit/fa105ac35c8666222967d5153b465d402d64d45a))
|
42
|
+
* **[@ckeditor/ckeditor5-cloud-services](https://www.npmjs.com/package/@ckeditor/ckeditor5-cloud-services)**: closes [#13007](https://github.com/ckeditor/ckeditor5/issues/13007). ([commit](https://github.com/ckeditor/ckeditor5/commit/37dee8727bb44b2685a1e83285fd9d4fad0a04f7))
|
43
|
+
* **[@ckeditor/ckeditor5-easy-image](https://www.npmjs.com/package/@ckeditor/ckeditor5-easy-image)**: closes [#13009](https://github.com/ckeditor/ckeditor5/issues/13009). ([commit](https://github.com/ckeditor/ckeditor5/commit/fc2381107156955346104ae59796b696711d9605))
|
44
|
+
* **[@ckeditor/ckeditor5-find-and-replace](https://www.npmjs.com/package/@ckeditor/ckeditor5-find-and-replace)**: closes [#13010](https://github.com/ckeditor/ckeditor5/issues/13010). ([commit](https://github.com/ckeditor/ckeditor5/commit/14fc8f2ed675ab531d3d9a27f7e2b6d8b2ade8a4))
|
45
|
+
* **[@ckeditor/ckeditor5-font](https://www.npmjs.com/package/@ckeditor/ckeditor5-font)**: closes [#13011](https://github.com/ckeditor/ckeditor5/issues/13011). ([commit](https://github.com/ckeditor/ckeditor5/commit/80ffea2dbe1911667a4246e253dd9d01626cfa49))
|
46
|
+
* **[@ckeditor/ckeditor5-html-embed](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-embed)**: closes [#13015](https://github.com/ckeditor/ckeditor5/issues/13015). ([commit](https://github.com/ckeditor/ckeditor5/commit/9a90e4b137c1f850eec59c55ae2ff0faaa71efdc))
|
47
|
+
* **[@ckeditor/ckeditor5-html-support](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-support)**: closes [#13016](https://github.com/ckeditor/ckeditor5/issues/13016). ([commit](https://github.com/ckeditor/ckeditor5/commit/7e601da88c9f6c9ac64316df3ddb7a9de28e3e2a))
|
48
|
+
* **[@ckeditor/ckeditor5-indent](https://www.npmjs.com/package/@ckeditor/ckeditor5-indent)**: closes [#13018](https://github.com/ckeditor/ckeditor5/issues/13018). ([commit](https://github.com/ckeditor/ckeditor5/commit/9d57f22146022245b2873cf65759e76506cd3dc9))
|
49
|
+
* **[@ckeditor/ckeditor5-link](https://www.npmjs.com/package/@ckeditor/ckeditor5-link)**: closes [#13020](https://github.com/ckeditor/ckeditor5/issues/13020). ([commit](https://github.com/ckeditor/ckeditor5/commit/0c5cbc9af6226b3324464a269fa96909cf62586c))
|
50
|
+
* **[@ckeditor/ckeditor5-media-embed](https://www.npmjs.com/package/@ckeditor/ckeditor5-media-embed)**: closes [#13023](https://github.com/ckeditor/ckeditor5/issues/13023). ([commit](https://github.com/ckeditor/ckeditor5/commit/2a8f267f53315fdee1a4d2fd34b1c9819e986e3d))
|
51
|
+
* **[@ckeditor/ckeditor5-remove-format](https://www.npmjs.com/package/@ckeditor/ckeditor5-remove-format)**: closes [#13028](https://github.com/ckeditor/ckeditor5/issues/13028). ([commit](https://github.com/ckeditor/ckeditor5/commit/8e66507d160fc2857278f4bfd7c0ea9a4e9f10a8))
|
52
|
+
* **[@ckeditor/ckeditor5-restricted-editing](https://www.npmjs.com/package/@ckeditor/ckeditor5-restricted-editing)**: closes [#13029](https://github.com/ckeditor/ckeditor5/issues/13029). ([commit](https://github.com/ckeditor/ckeditor5/commit/521078075b09f3f9378cc946ef6e57492aa32dec))
|
53
|
+
* **[@ckeditor/ckeditor5-source-editing](https://www.npmjs.com/package/@ckeditor/ckeditor5-source-editing)**: closes [#13030](https://github.com/ckeditor/ckeditor5/issues/13030). ([commit](https://github.com/ckeditor/ckeditor5/commit/bfe944ca9885e63407bdd67c55b3be60015f08ab))
|
54
|
+
* **[@ckeditor/ckeditor5-special-characters](https://www.npmjs.com/package/@ckeditor/ckeditor5-special-characters)**: closes [#13031](https://github.com/ckeditor/ckeditor5/issues/13031). ([commit](https://github.com/ckeditor/ckeditor5/commit/a195c6047e6f06f2402ce1b60eb1278472a511b2))
|
55
|
+
* **[@ckeditor/ckeditor5-style](https://www.npmjs.com/package/@ckeditor/ckeditor5-style)**: closes [#13032](https://github.com/ckeditor/ckeditor5/issues/13032). ([commit](https://github.com/ckeditor/ckeditor5/commit/b93dfa123390d836a37f9eaca8e4b3232db68e11))
|
56
|
+
* **[@ckeditor/ckeditor5-table](https://www.npmjs.com/package/@ckeditor/ckeditor5-table)**: closes [#13033](https://github.com/ckeditor/ckeditor5/issues/13033). ([commit](https://github.com/ckeditor/ckeditor5/commit/d634c413763a7b47840be096712359f0c0d0a97a))
|
57
|
+
* **[@ckeditor/ckeditor5-watchdog](https://www.npmjs.com/package/@ckeditor/ckeditor5-watchdog)**: closes [#13035](https://github.com/ckeditor/ckeditor5/issues/13035). ([commit](https://github.com/ckeditor/ckeditor5/commit/f42bedbe2cfedf43453e539ec3de03e84b1c2825))
|
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
|
+
Minor releases (contain minor breaking changes):
|
67
|
+
|
68
|
+
* [@ckeditor/ckeditor5-table](https://www.npmjs.com/package/@ckeditor/ckeditor5-table): v36.0.1 => v37.0.0-alpha.0
|
69
|
+
|
70
|
+
Releases containing new features:
|
71
|
+
|
72
|
+
* [@ckeditor/ckeditor5-mention](https://www.npmjs.com/package/@ckeditor/ckeditor5-mention): v36.0.1 => v37.0.0-alpha.0
|
73
|
+
|
74
|
+
Other releases:
|
75
|
+
|
76
|
+
* [@ckeditor/ckeditor5-adapter-ckfinder](https://www.npmjs.com/package/@ckeditor/ckeditor5-adapter-ckfinder): v36.0.1 => v37.0.0-alpha.0
|
77
|
+
* [@ckeditor/ckeditor5-alignment](https://www.npmjs.com/package/@ckeditor/ckeditor5-alignment): v36.0.1 => v37.0.0-alpha.0
|
78
|
+
* [@ckeditor/ckeditor5-autoformat](https://www.npmjs.com/package/@ckeditor/ckeditor5-autoformat): v36.0.1 => v37.0.0-alpha.0
|
79
|
+
* [@ckeditor/ckeditor5-autosave](https://www.npmjs.com/package/@ckeditor/ckeditor5-autosave): v36.0.1 => v37.0.0-alpha.0
|
80
|
+
* [@ckeditor/ckeditor5-basic-styles](https://www.npmjs.com/package/@ckeditor/ckeditor5-basic-styles): v36.0.1 => v37.0.0-alpha.0
|
81
|
+
* [@ckeditor/ckeditor5-block-quote](https://www.npmjs.com/package/@ckeditor/ckeditor5-block-quote): v36.0.1 => v37.0.0-alpha.0
|
82
|
+
* [@ckeditor/ckeditor5-build-balloon](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-balloon): v36.0.1 => v37.0.0-alpha.0
|
83
|
+
* [@ckeditor/ckeditor5-build-balloon-block](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-balloon-block): v36.0.1 => v37.0.0-alpha.0
|
84
|
+
* [@ckeditor/ckeditor5-build-classic](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-classic): v36.0.1 => v37.0.0-alpha.0
|
85
|
+
* [@ckeditor/ckeditor5-build-decoupled-document](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-decoupled-document): v36.0.1 => v37.0.0-alpha.0
|
86
|
+
* [@ckeditor/ckeditor5-build-inline](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-inline): v36.0.1 => v37.0.0-alpha.0
|
87
|
+
* [@ckeditor/ckeditor5-ckbox](https://www.npmjs.com/package/@ckeditor/ckeditor5-ckbox): v36.0.1 => v37.0.0-alpha.0
|
88
|
+
* [@ckeditor/ckeditor5-ckfinder](https://www.npmjs.com/package/@ckeditor/ckeditor5-ckfinder): v36.0.1 => v37.0.0-alpha.0
|
89
|
+
* [@ckeditor/ckeditor5-clipboard](https://www.npmjs.com/package/@ckeditor/ckeditor5-clipboard): v36.0.1 => v37.0.0-alpha.0
|
90
|
+
* [@ckeditor/ckeditor5-cloud-services](https://www.npmjs.com/package/@ckeditor/ckeditor5-cloud-services): v36.0.1 => v37.0.0-alpha.0
|
91
|
+
* [@ckeditor/ckeditor5-code-block](https://www.npmjs.com/package/@ckeditor/ckeditor5-code-block): v36.0.1 => v37.0.0-alpha.0
|
92
|
+
* [@ckeditor/ckeditor5-core](https://www.npmjs.com/package/@ckeditor/ckeditor5-core): v36.0.1 => v37.0.0-alpha.0
|
93
|
+
* [@ckeditor/ckeditor5-easy-image](https://www.npmjs.com/package/@ckeditor/ckeditor5-easy-image): v36.0.1 => v37.0.0-alpha.0
|
94
|
+
* [@ckeditor/ckeditor5-editor-balloon](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-balloon): v36.0.1 => v37.0.0-alpha.0
|
95
|
+
* [@ckeditor/ckeditor5-editor-classic](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-classic): v36.0.1 => v37.0.0-alpha.0
|
96
|
+
* [@ckeditor/ckeditor5-editor-decoupled](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-decoupled): v36.0.1 => v37.0.0-alpha.0
|
97
|
+
* [@ckeditor/ckeditor5-editor-inline](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-inline): v36.0.1 => v37.0.0-alpha.0
|
98
|
+
* [@ckeditor/ckeditor5-engine](https://www.npmjs.com/package/@ckeditor/ckeditor5-engine): v36.0.1 => v37.0.0-alpha.0
|
99
|
+
* [@ckeditor/ckeditor5-enter](https://www.npmjs.com/package/@ckeditor/ckeditor5-enter): v36.0.1 => v37.0.0-alpha.0
|
100
|
+
* [@ckeditor/ckeditor5-essentials](https://www.npmjs.com/package/@ckeditor/ckeditor5-essentials): v36.0.1 => v37.0.0-alpha.0
|
101
|
+
* [@ckeditor/ckeditor5-find-and-replace](https://www.npmjs.com/package/@ckeditor/ckeditor5-find-and-replace): v36.0.1 => v37.0.0-alpha.0
|
102
|
+
* [@ckeditor/ckeditor5-font](https://www.npmjs.com/package/@ckeditor/ckeditor5-font): v36.0.1 => v37.0.0-alpha.0
|
103
|
+
* [@ckeditor/ckeditor5-heading](https://www.npmjs.com/package/@ckeditor/ckeditor5-heading): v36.0.1 => v37.0.0-alpha.0
|
104
|
+
* [@ckeditor/ckeditor5-highlight](https://www.npmjs.com/package/@ckeditor/ckeditor5-highlight): v36.0.1 => v37.0.0-alpha.0
|
105
|
+
* [@ckeditor/ckeditor5-horizontal-line](https://www.npmjs.com/package/@ckeditor/ckeditor5-horizontal-line): v36.0.1 => v37.0.0-alpha.0
|
106
|
+
* [@ckeditor/ckeditor5-html-embed](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-embed): v36.0.1 => v37.0.0-alpha.0
|
107
|
+
* [@ckeditor/ckeditor5-html-support](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-support): v36.0.1 => v37.0.0-alpha.0
|
108
|
+
* [@ckeditor/ckeditor5-image](https://www.npmjs.com/package/@ckeditor/ckeditor5-image): v36.0.1 => v37.0.0-alpha.0
|
109
|
+
* [@ckeditor/ckeditor5-indent](https://www.npmjs.com/package/@ckeditor/ckeditor5-indent): v36.0.1 => v37.0.0-alpha.0
|
110
|
+
* [@ckeditor/ckeditor5-language](https://www.npmjs.com/package/@ckeditor/ckeditor5-language): v36.0.1 => v37.0.0-alpha.0
|
111
|
+
* [@ckeditor/ckeditor5-link](https://www.npmjs.com/package/@ckeditor/ckeditor5-link): v36.0.1 => v37.0.0-alpha.0
|
112
|
+
* [@ckeditor/ckeditor5-list](https://www.npmjs.com/package/@ckeditor/ckeditor5-list): v36.0.1 => v37.0.0-alpha.0
|
113
|
+
* [@ckeditor/ckeditor5-markdown-gfm](https://www.npmjs.com/package/@ckeditor/ckeditor5-markdown-gfm): v36.0.1 => v37.0.0-alpha.0
|
114
|
+
* [@ckeditor/ckeditor5-media-embed](https://www.npmjs.com/package/@ckeditor/ckeditor5-media-embed): v36.0.1 => v37.0.0-alpha.0
|
115
|
+
* [@ckeditor/ckeditor5-minimap](https://www.npmjs.com/package/@ckeditor/ckeditor5-minimap): v36.0.1 => v37.0.0-alpha.0
|
116
|
+
* [@ckeditor/ckeditor5-page-break](https://www.npmjs.com/package/@ckeditor/ckeditor5-page-break): v36.0.1 => v37.0.0-alpha.0
|
117
|
+
* [@ckeditor/ckeditor5-paragraph](https://www.npmjs.com/package/@ckeditor/ckeditor5-paragraph): v36.0.1 => v37.0.0-alpha.0
|
118
|
+
* [@ckeditor/ckeditor5-paste-from-office](https://www.npmjs.com/package/@ckeditor/ckeditor5-paste-from-office): v36.0.1 => v37.0.0-alpha.0
|
119
|
+
* [@ckeditor/ckeditor5-remove-format](https://www.npmjs.com/package/@ckeditor/ckeditor5-remove-format): v36.0.1 => v37.0.0-alpha.0
|
120
|
+
* [@ckeditor/ckeditor5-restricted-editing](https://www.npmjs.com/package/@ckeditor/ckeditor5-restricted-editing): v36.0.1 => v37.0.0-alpha.0
|
121
|
+
* [@ckeditor/ckeditor5-select-all](https://www.npmjs.com/package/@ckeditor/ckeditor5-select-all): v36.0.1 => v37.0.0-alpha.0
|
122
|
+
* [@ckeditor/ckeditor5-source-editing](https://www.npmjs.com/package/@ckeditor/ckeditor5-source-editing): v36.0.1 => v37.0.0-alpha.0
|
123
|
+
* [@ckeditor/ckeditor5-special-characters](https://www.npmjs.com/package/@ckeditor/ckeditor5-special-characters): v36.0.1 => v37.0.0-alpha.0
|
124
|
+
* [@ckeditor/ckeditor5-style](https://www.npmjs.com/package/@ckeditor/ckeditor5-style): v36.0.1 => v37.0.0-alpha.0
|
125
|
+
* [@ckeditor/ckeditor5-theme-lark](https://www.npmjs.com/package/@ckeditor/ckeditor5-theme-lark): v36.0.1 => v37.0.0-alpha.0
|
126
|
+
* [@ckeditor/ckeditor5-typing](https://www.npmjs.com/package/@ckeditor/ckeditor5-typing): v36.0.1 => v37.0.0-alpha.0
|
127
|
+
* [@ckeditor/ckeditor5-ui](https://www.npmjs.com/package/@ckeditor/ckeditor5-ui): v36.0.1 => v37.0.0-alpha.0
|
128
|
+
* [@ckeditor/ckeditor5-undo](https://www.npmjs.com/package/@ckeditor/ckeditor5-undo): v36.0.1 => v37.0.0-alpha.0
|
129
|
+
* [@ckeditor/ckeditor5-upload](https://www.npmjs.com/package/@ckeditor/ckeditor5-upload): v36.0.1 => v37.0.0-alpha.0
|
130
|
+
* [@ckeditor/ckeditor5-utils](https://www.npmjs.com/package/@ckeditor/ckeditor5-utils): v36.0.1 => v37.0.0-alpha.0
|
131
|
+
* [@ckeditor/ckeditor5-watchdog](https://www.npmjs.com/package/@ckeditor/ckeditor5-watchdog): v36.0.1 => v37.0.0-alpha.0
|
132
|
+
* [@ckeditor/ckeditor5-widget](https://www.npmjs.com/package/@ckeditor/ckeditor5-widget): v36.0.1 => v37.0.0-alpha.0
|
133
|
+
* [@ckeditor/ckeditor5-word-count](https://www.npmjs.com/package/@ckeditor/ckeditor5-word-count): v36.0.1 => v37.0.0-alpha.0
|
134
|
+
</details>
|
135
|
+
|
136
|
+
|
4
137
|
## [36.0.1](https://github.com/ckeditor/ckeditor5/compare/v36.0.0...v36.0.1) (2023-02-06)
|
5
138
|
|
6
139
|
### Release highlights
|
@@ -152,7 +285,7 @@ Please refer to the [update guide](https://ckeditor.com/docs/ckeditor5/latest/up
|
|
152
285
|
* **[table](https://www.npmjs.com/package/@ckeditor/ckeditor5-table)**: The editor should not crash on `getData()` call if the `PlainTableOutput` plugin is used with the `TableColumnResize` feature. Closes [#13164](https://github.com/ckeditor/ckeditor5/issues/13164). ([commit](https://github.com/ckeditor/ckeditor5/commit/97377f5749d4a2f137139eee47233c491e6712b4))
|
153
286
|
* **[table](https://www.npmjs.com/package/@ckeditor/ckeditor5-table)**: Fixed markers that were not properly set on list items and on elements in table cells, resulting in losing comments and suggestions after re-loading the document. Closes [#13285](https://github.com/ckeditor/ckeditor5/issues/13285). ([commit](https://github.com/ckeditor/ckeditor5/commit/1fa7ffcc5042b3a9d40dcfd03220fb707616a9ad))
|
154
287
|
* **[track-changes](https://www.npmjs.com/package/@ckeditor/ckeditor5-track-changes)**: Indent and outdent suggestions made on block images in document lists are now working correctly when accepted.
|
155
|
-
* **[track-changes](https://www.npmjs.com/package/@ckeditor/ckeditor5-track-changes)**: Suggestions are now correctly highlighted after typing inside
|
288
|
+
* **[track-changes](https://www.npmjs.com/package/@ckeditor/ckeditor5-track-changes)**: Suggestions are now correctly highlighted after typing inside the deletion suggestion.
|
156
289
|
|
157
290
|
### Other changes
|
158
291
|
|
package/README.md
CHANGED
@@ -32,7 +32,7 @@ CKEditor 5 is an ultra-modern JavaScript rich text editor with MVC architecture,
|
|
32
32
|
|
33
33
|
### CKEditor 5 Online builder
|
34
34
|
|
35
|
-
The easies way to start using CKEditor 5
|
35
|
+
The easies way to start using CKEditor 5 with all the functions and features you need, is preparing a customized build with the [Online builder](https://ckeditor.com/ckeditor-5/online-builder/). All you need to do is choose the preferred predefined build as a base, add all the required plugins and download the ready package that can be then used out of the box. Refer to the [Online builder Quick start](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/quick-start.html#creating-custom-builds-with-online-builder) guide to follow this installation path.
|
36
36
|
|
37
37
|
### CKEditor 5 predefined builds
|
38
38
|
|
@@ -83,13 +83,13 @@ To find out how to start with other builds check the [Predefined builds](https:/
|
|
83
83
|
|
84
84
|
### CKEditor 5 advanced installation
|
85
85
|
|
86
|
-
For more advanced users, or those who need to integrate CKEditor 5 with their own applications, we have prepared several other, advanced methods to do it. You can [integrate the editor from source](https://ckeditor.com/docs/ckeditor5/latest/installation/advanced/alternative-setups/integrating-from-source.html), use [DLL builds](https://ckeditor.com/docs/ckeditor5/latest/installation/advanced/alternative-setups/dll-builds.html) or utilize some of the pre-made integrations with popular [JavaScript frameworks](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/frameworks/overview.html), like [Angular](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/frameworks/angular.html), [React](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/frameworks/react.html) or [Vue](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/frameworks/vuejs-v3.html).
|
86
|
+
For more advanced users, or those who need to integrate CKEditor 5 with their own applications, we have prepared several other, advanced methods to do it. You can [integrate the editor from source](https://ckeditor.com/docs/ckeditor5/latest/installation/advanced/alternative-setups/integrating-from-source-webpack.html), use [DLL builds](https://ckeditor.com/docs/ckeditor5/latest/installation/advanced/alternative-setups/dll-builds.html) or utilize some of the pre-made integrations with popular [JavaScript frameworks](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/frameworks/overview.html), like [Angular](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/frameworks/angular.html), [React](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/frameworks/react.html) or [Vue](https://ckeditor.com/docs/ckeditor5/latest/installation/getting-started/frameworks/vuejs-v3.html).
|
87
87
|
|
88
88
|
#### CKEditor 5 Framework
|
89
89
|
|
90
90
|
CKEditor 5 builds allow you to quickly and easily initialize one of the many types of editors in your application. At the same time, CKEditor 5 is also a framework for creating custom-made rich text editing solutions.
|
91
91
|
|
92
|
-
To find out how to start building your own editor from scratch go to the [CKEditor 5 Framework overview](https://ckeditor.com/docs/ckeditor5/latest/framework/
|
92
|
+
To find out how to start building your own editor from scratch go to the [CKEditor 5 Framework overview](https://ckeditor.com/docs/ckeditor5/latest/framework/index.html) section of CKEditor 5 documentation.
|
93
93
|
|
94
94
|
## Documentation and FAQ
|
95
95
|
|
@@ -130,9 +130,9 @@ The development repository of CKEditor 5 is located at [https://github.com/ckedi
|
|
130
130
|
|
131
131
|
CKEditor 5 is a modular, multi-package, [monorepo](https://en.wikipedia.org/wiki/Monorepo) project. It consists of several packages that create the editing framework, based on which the feature packages are implemented.
|
132
132
|
|
133
|
-
The [`ckeditor5`](https://github.com/ckeditor/ckeditor5) repository is the place that centralizes the development of CKEditor 5. It bundles different packages into a single place, adding the necessary helper tools for the development workflow, like the builder and the test runner. [Basic information on how to set up the development environment](https://ckeditor.com/docs/ckeditor5/latest/framework/
|
133
|
+
The [`ckeditor5`](https://github.com/ckeditor/ckeditor5) repository is the place that centralizes the development of CKEditor 5. It bundles different packages into a single place, adding the necessary helper tools for the development workflow, like the builder and the test runner. [Basic information on how to set up the development environment](https://ckeditor.com/docs/ckeditor5/latest/framework/contributing/development-environment.html) can be found in the documentation.
|
134
134
|
|
135
|
-
See the [official contributors' guide](https://ckeditor.com/docs/ckeditor5/latest/framework/
|
135
|
+
See the [official contributors' guide](https://ckeditor.com/docs/ckeditor5/latest/framework/contributing/contributing.html) to learn how to contribute your code to the project.
|
136
136
|
|
137
137
|
### Reporting issues and feature requests
|
138
138
|
|