ckeditor5 37.0.0-alpha.2 → 37.0.0-alpha.3
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 +102 -0
- package/build/ckeditor5-dll.js +1 -1
- package/build/ckeditor5-dll.manifest.json +13 -0
- package/package.json +14 -13
- package/src/clipboard.d.ts +1 -1
- package/src/clipboard.js +1 -1
- package/src/core.d.ts +1 -1
- package/src/core.js +1 -1
- package/src/engine.d.ts +1 -1
- package/src/engine.js +1 -1
- package/src/enter.d.ts +1 -1
- package/src/enter.js +1 -1
- package/src/paragraph.d.ts +1 -1
- package/src/paragraph.js +1 -1
- package/src/select-all.d.ts +1 -1
- package/src/select-all.js +1 -1
- package/src/typing.d.ts +1 -1
- package/src/typing.js +1 -1
- package/src/ui.d.ts +1 -1
- package/src/ui.js +1 -1
- package/src/undo.d.ts +1 -1
- package/src/undo.js +1 -1
- package/src/upload.d.ts +1 -1
- package/src/upload.js +1 -1
- package/src/utils.d.ts +1 -1
- package/src/utils.js +1 -1
- package/src/watchdog.d.ts +8 -0
- package/src/watchdog.js +8 -0
- package/src/widget.d.ts +1 -1
- package/src/widget.js +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,6 +1,108 @@
|
|
1
1
|
Changelog
|
2
2
|
=========
|
3
3
|
|
4
|
+
## [37.0.0-alpha.3](https://github.com/ckeditor/ckeditor5/compare/v37.0.0-alpha.2...v37.0.0-alpha.3) (2023-03-22)
|
5
|
+
|
6
|
+
### Release highlights
|
7
|
+
|
8
|
+
This release exposes `Context`, `EditorWatchdog`, and `ContextWatchdog` as static editor properties. This should simplify integrations and provide consistency with editor builds.
|
9
|
+
|
10
|
+
This introduces a minor breaking change: the [`@ckeditor/ckeditor5-watchdog`](https://www.npmjs.com/package/@ckeditor/ckeditor5-watchdog) package is no longer available as a standalone [DLL build](https://ckeditor.com/docs/ckeditor5/latest/installation/advanced/alternative-setups/dll-builds.html). It is now included in the main `ckeditor5-dll.js` build. See [#13707](https://github.com/ckeditor/ckeditor5/issues/13707).
|
11
|
+
|
12
|
+
Please keep in mind that the release is marked as alpha, which means it is an experimental version, and some unexpected results may occur when using these typings.
|
13
|
+
|
14
|
+
We appreciate all of your feedback, as it helps us greatly to improve the final shape of the project. Please share it [here](https://github.com/ckeditor/ckeditor5/issues/11704).
|
15
|
+
|
16
|
+
### MINOR BREAKING CHANGES [ℹ️](https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/versioning-policy.html#major-and-minor-breaking-changes)
|
17
|
+
|
18
|
+
* The [`@ckeditor/ckeditor5-watchdog`](https://www.npmjs.com/package/@ckeditor/ckeditor5-watchdog) package is no longer available as a standalone DLL build. It is now included in the main `ckeditor5-dll.js` build. See [#13707](https://github.com/ckeditor/ckeditor5/issues/13707).
|
19
|
+
|
20
|
+
### Bug fixes
|
21
|
+
|
22
|
+
* **[link](https://www.npmjs.com/package/@ckeditor/ckeditor5-link)**: The link text should update along with the URL if they were the same in the first place. Closes [#12588](https://github.com/ckeditor/ckeditor5/issues/12588). ([commit](https://github.com/ckeditor/ckeditor5/commit/0beb8c638e10d69160219629b44e8bee00d6c744))
|
23
|
+
|
24
|
+
### Other changes
|
25
|
+
|
26
|
+
* **[editor-*](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-*)**: Exposed the `Context`, `EditorWatchdog`, and `ContextWatchdog` classes as static editor properties. Closes [#13707](https://github.com/ckeditor/ckeditor5/issues/13707). ([commit](https://github.com/ckeditor/ckeditor5/commit/8933c865f9e54e9dae5e94f1b8743ee169ab3456))
|
27
|
+
* **[utils](https://www.npmjs.com/package/@ckeditor/ckeditor5-utils)**: Added configuration to the `View#scrollToTheSelection()` helper allowing to scroll to the top of the boundary. Closes [#13688](https://github.com/ckeditor/ckeditor5/issues/13688). ([commit](https://github.com/ckeditor/ckeditor5/commit/75a5b122690c775cf55d61f3d80519cb85952ebb))
|
28
|
+
|
29
|
+
### Released packages
|
30
|
+
|
31
|
+
Check out the [Versioning policy](https://ckeditor.com/docs/ckeditor5/latest/framework/guides/support/versioning-policy.html) guide for more information.
|
32
|
+
|
33
|
+
<details>
|
34
|
+
<summary>Released packages (summary)</summary>
|
35
|
+
|
36
|
+
New packages:
|
37
|
+
|
38
|
+
|
39
|
+
Other releases:
|
40
|
+
|
41
|
+
* [@ckeditor/ckeditor5-adapter-ckfinder](https://www.npmjs.com/package/@ckeditor/ckeditor5-adapter-ckfinder): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
42
|
+
* [@ckeditor/ckeditor5-alignment](https://www.npmjs.com/package/@ckeditor/ckeditor5-alignment): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
43
|
+
* [@ckeditor/ckeditor5-autoformat](https://www.npmjs.com/package/@ckeditor/ckeditor5-autoformat): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
44
|
+
* [@ckeditor/ckeditor5-autosave](https://www.npmjs.com/package/@ckeditor/ckeditor5-autosave): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
45
|
+
* [@ckeditor/ckeditor5-basic-styles](https://www.npmjs.com/package/@ckeditor/ckeditor5-basic-styles): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
46
|
+
* [@ckeditor/ckeditor5-block-quote](https://www.npmjs.com/package/@ckeditor/ckeditor5-block-quote): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
47
|
+
* [@ckeditor/ckeditor5-build-balloon](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-balloon): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
48
|
+
* [@ckeditor/ckeditor5-build-balloon-block](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-balloon-block): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
49
|
+
* [@ckeditor/ckeditor5-build-classic](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-classic): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
50
|
+
* [@ckeditor/ckeditor5-build-decoupled-document](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-decoupled-document): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
51
|
+
* [@ckeditor/ckeditor5-build-inline](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-inline): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
52
|
+
* [@ckeditor/ckeditor5-build-multi-root](https://www.npmjs.com/package/@ckeditor/ckeditor5-build-multi-root): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
53
|
+
* [@ckeditor/ckeditor5-ckbox](https://www.npmjs.com/package/@ckeditor/ckeditor5-ckbox): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
54
|
+
* [@ckeditor/ckeditor5-ckfinder](https://www.npmjs.com/package/@ckeditor/ckeditor5-ckfinder): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
55
|
+
* [@ckeditor/ckeditor5-clipboard](https://www.npmjs.com/package/@ckeditor/ckeditor5-clipboard): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
56
|
+
* [@ckeditor/ckeditor5-cloud-services](https://www.npmjs.com/package/@ckeditor/ckeditor5-cloud-services): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
57
|
+
* [@ckeditor/ckeditor5-code-block](https://www.npmjs.com/package/@ckeditor/ckeditor5-code-block): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
58
|
+
* [@ckeditor/ckeditor5-core](https://www.npmjs.com/package/@ckeditor/ckeditor5-core): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
59
|
+
* [@ckeditor/ckeditor5-easy-image](https://www.npmjs.com/package/@ckeditor/ckeditor5-easy-image): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
60
|
+
* [@ckeditor/ckeditor5-editor-balloon](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-balloon): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
61
|
+
* [@ckeditor/ckeditor5-editor-classic](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-classic): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
62
|
+
* [@ckeditor/ckeditor5-editor-decoupled](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-decoupled): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
63
|
+
* [@ckeditor/ckeditor5-editor-inline](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-inline): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
64
|
+
* [@ckeditor/ckeditor5-editor-multi-root](https://www.npmjs.com/package/@ckeditor/ckeditor5-editor-multi-root): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
65
|
+
* [@ckeditor/ckeditor5-engine](https://www.npmjs.com/package/@ckeditor/ckeditor5-engine): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
66
|
+
* [@ckeditor/ckeditor5-enter](https://www.npmjs.com/package/@ckeditor/ckeditor5-enter): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
67
|
+
* [@ckeditor/ckeditor5-essentials](https://www.npmjs.com/package/@ckeditor/ckeditor5-essentials): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
68
|
+
* [@ckeditor/ckeditor5-find-and-replace](https://www.npmjs.com/package/@ckeditor/ckeditor5-find-and-replace): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
69
|
+
* [@ckeditor/ckeditor5-font](https://www.npmjs.com/package/@ckeditor/ckeditor5-font): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
70
|
+
* [@ckeditor/ckeditor5-heading](https://www.npmjs.com/package/@ckeditor/ckeditor5-heading): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
71
|
+
* [@ckeditor/ckeditor5-highlight](https://www.npmjs.com/package/@ckeditor/ckeditor5-highlight): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
72
|
+
* [@ckeditor/ckeditor5-horizontal-line](https://www.npmjs.com/package/@ckeditor/ckeditor5-horizontal-line): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
73
|
+
* [@ckeditor/ckeditor5-html-embed](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-embed): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
74
|
+
* [@ckeditor/ckeditor5-html-support](https://www.npmjs.com/package/@ckeditor/ckeditor5-html-support): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
75
|
+
* [@ckeditor/ckeditor5-image](https://www.npmjs.com/package/@ckeditor/ckeditor5-image): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
76
|
+
* [@ckeditor/ckeditor5-indent](https://www.npmjs.com/package/@ckeditor/ckeditor5-indent): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
77
|
+
* [@ckeditor/ckeditor5-language](https://www.npmjs.com/package/@ckeditor/ckeditor5-language): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
78
|
+
* [@ckeditor/ckeditor5-link](https://www.npmjs.com/package/@ckeditor/ckeditor5-link): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
79
|
+
* [@ckeditor/ckeditor5-list](https://www.npmjs.com/package/@ckeditor/ckeditor5-list): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
80
|
+
* [@ckeditor/ckeditor5-markdown-gfm](https://www.npmjs.com/package/@ckeditor/ckeditor5-markdown-gfm): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
81
|
+
* [@ckeditor/ckeditor5-media-embed](https://www.npmjs.com/package/@ckeditor/ckeditor5-media-embed): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
82
|
+
* [@ckeditor/ckeditor5-mention](https://www.npmjs.com/package/@ckeditor/ckeditor5-mention): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
83
|
+
* [@ckeditor/ckeditor5-minimap](https://www.npmjs.com/package/@ckeditor/ckeditor5-minimap): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
84
|
+
* [@ckeditor/ckeditor5-page-break](https://www.npmjs.com/package/@ckeditor/ckeditor5-page-break): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
85
|
+
* [@ckeditor/ckeditor5-paragraph](https://www.npmjs.com/package/@ckeditor/ckeditor5-paragraph): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
86
|
+
* [@ckeditor/ckeditor5-paste-from-office](https://www.npmjs.com/package/@ckeditor/ckeditor5-paste-from-office): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
87
|
+
* [@ckeditor/ckeditor5-remove-format](https://www.npmjs.com/package/@ckeditor/ckeditor5-remove-format): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
88
|
+
* [@ckeditor/ckeditor5-restricted-editing](https://www.npmjs.com/package/@ckeditor/ckeditor5-restricted-editing): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
89
|
+
* [@ckeditor/ckeditor5-select-all](https://www.npmjs.com/package/@ckeditor/ckeditor5-select-all): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
90
|
+
* [@ckeditor/ckeditor5-source-editing](https://www.npmjs.com/package/@ckeditor/ckeditor5-source-editing): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
91
|
+
* [@ckeditor/ckeditor5-special-characters](https://www.npmjs.com/package/@ckeditor/ckeditor5-special-characters): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
92
|
+
* [@ckeditor/ckeditor5-style](https://www.npmjs.com/package/@ckeditor/ckeditor5-style): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
93
|
+
* [@ckeditor/ckeditor5-table](https://www.npmjs.com/package/@ckeditor/ckeditor5-table): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
94
|
+
* [@ckeditor/ckeditor5-theme-lark](https://www.npmjs.com/package/@ckeditor/ckeditor5-theme-lark): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
95
|
+
* [@ckeditor/ckeditor5-typing](https://www.npmjs.com/package/@ckeditor/ckeditor5-typing): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
96
|
+
* [@ckeditor/ckeditor5-ui](https://www.npmjs.com/package/@ckeditor/ckeditor5-ui): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
97
|
+
* [@ckeditor/ckeditor5-undo](https://www.npmjs.com/package/@ckeditor/ckeditor5-undo): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
98
|
+
* [@ckeditor/ckeditor5-upload](https://www.npmjs.com/package/@ckeditor/ckeditor5-upload): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
99
|
+
* [@ckeditor/ckeditor5-utils](https://www.npmjs.com/package/@ckeditor/ckeditor5-utils): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
100
|
+
* [@ckeditor/ckeditor5-watchdog](https://www.npmjs.com/package/@ckeditor/ckeditor5-watchdog): v36.0.1 => v37.0.0-alpha.3
|
101
|
+
* [@ckeditor/ckeditor5-widget](https://www.npmjs.com/package/@ckeditor/ckeditor5-widget): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
102
|
+
* [@ckeditor/ckeditor5-word-count](https://www.npmjs.com/package/@ckeditor/ckeditor5-word-count): v37.0.0-alpha.2 => v37.0.0-alpha.3
|
103
|
+
</details>
|
104
|
+
|
105
|
+
|
4
106
|
## [37.0.0-alpha.2](https://github.com/ckeditor/ckeditor5/compare/v37.0.0-alpha.1...v37.0.0-alpha.2) (2023-03-15)
|
5
107
|
|
6
108
|
### Release highlights
|