@ckeditor/ckeditor5-core 47.7.1-alpha.0 → 47.7.2-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/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
- package/src/editor/editor.js +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-core",
|
|
3
|
-
"version": "47.7.
|
|
3
|
+
"version": "47.7.2-alpha.0",
|
|
4
4
|
"description": "The core architecture of CKEditor 5 – the best browser-based rich text editor.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wysiwyg",
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
"type": "module",
|
|
25
25
|
"main": "src/index.js",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@ckeditor/ckeditor5-engine": "47.7.
|
|
28
|
-
"@ckeditor/ckeditor5-ui": "47.7.
|
|
29
|
-
"@ckeditor/ckeditor5-utils": "47.7.
|
|
30
|
-
"@ckeditor/ckeditor5-watchdog": "47.7.
|
|
27
|
+
"@ckeditor/ckeditor5-engine": "47.7.2-alpha.0",
|
|
28
|
+
"@ckeditor/ckeditor5-ui": "47.7.2-alpha.0",
|
|
29
|
+
"@ckeditor/ckeditor5-utils": "47.7.2-alpha.0",
|
|
30
|
+
"@ckeditor/ckeditor5-watchdog": "47.7.2-alpha.0",
|
|
31
31
|
"es-toolkit": "1.39.5"
|
|
32
32
|
},
|
|
33
33
|
"author": "CKSource (http://cksource.com/)",
|
package/src/editor/editor.js
CHANGED
|
@@ -944,8 +944,10 @@ export class Editor extends /* #__PURE__ */ ObservableMixin() {
|
|
|
944
944
|
* In case you intended to use the [LTS Edition](https://ckeditor.com/ckeditor-5-lts/),
|
|
945
945
|
* but have not yet made a purchase, please [contact our sales team](https://ckeditor.com/contact-sales/)
|
|
946
946
|
*
|
|
947
|
-
* If you did not intend to use LTS, please
|
|
948
|
-
*
|
|
947
|
+
* If you did not intend to use LTS, please note that all releases in the v47.7 line are
|
|
948
|
+
* for LTS subscribers only. To use a non-LTS edition, either upgrade to v48 or newer,
|
|
949
|
+
* which is our standard [latest](https://ckeditor.com/docs/ckeditor5/latest/updating/guides/changelog.html)
|
|
950
|
+
* release line, or stay on a version 47.6.2 or earlier.
|
|
949
951
|
*
|
|
950
952
|
* @error license-key-lts-not-allowed
|
|
951
953
|
*/
|