@ckeditor/ckeditor5-ui 47.6.1 → 47.6.2-alpha.1
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/LICENSE.md +2 -5
- package/README.md +4 -7
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/src/editorui/evaluationbadge.js +1 -0
- package/src/editorui/poweredby.js +1 -0
package/LICENSE.md
CHANGED
|
@@ -4,12 +4,9 @@ Software License Agreement
|
|
|
4
4
|
**CKEditor 5 UI framework** (https://github.com/ckeditor/ckeditor5)<br>
|
|
5
5
|
Copyright (c) 2003–2026, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
CKEditor 5 Long Term Support Edition is licensed under a commercial license and is protected by copyright law.
|
|
8
8
|
|
|
9
|
-
|
|
10
|
-
* or commercial license terms from CKSource Holding sp. z o.o.
|
|
11
|
-
|
|
12
|
-
For more information, see: [https://ckeditor.com/legal/ckeditor-licensing-options](https://ckeditor.com/legal/ckeditor-licensing-options).
|
|
9
|
+
For more information, see: [https://ckeditor.com/pricing](https://ckeditor.com/pricing).
|
|
13
10
|
|
|
14
11
|
Sources of Intellectual Property Included in CKEditor 5
|
|
15
12
|
------------------------------------------------------------
|
package/README.md
CHANGED
|
@@ -21,17 +21,14 @@ If you want to check full CKEditor 5 capabilities, sign up for a [free non-
|
|
|
21
21
|
|
|
22
22
|
## Demo
|
|
23
23
|
|
|
24
|
-
Check out the [editor toolbar demo](https://ckeditor.com/docs/ckeditor5/
|
|
24
|
+
Check out the [editor toolbar demo](https://ckeditor.com/docs/ckeditor5/lts-v47/getting-started/setup/toolbar/toolbar.html#demo) and [block toolbar demo](https://ckeditor.com/docs/ckeditor5/lts-v47/getting-started/setup/toolbar.html#block-toolbar#demo) in CKEditor 5 documentation.
|
|
25
25
|
|
|
26
26
|
## Documentation
|
|
27
27
|
|
|
28
|
-
See the [`@ckeditor/ckeditor5-ui` package](https://ckeditor.com/docs/ckeditor5/
|
|
28
|
+
See the [`@ckeditor/ckeditor5-ui` package](https://ckeditor.com/docs/ckeditor5/lts-v47/api/ui.html) page in [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/lts-v47/).
|
|
29
29
|
|
|
30
30
|
## License
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
CKEditor 5 Long Term Support Edition is licensed under a commercial license and is protected by copyright law.
|
|
33
33
|
|
|
34
|
-
|
|
35
|
-
* or commercial license terms from CKSource Holding sp. z o.o.
|
|
36
|
-
|
|
37
|
-
For more information, see: [https://ckeditor.com/legal/ckeditor-licensing-options](https://ckeditor.com/legal/ckeditor-licensing-options).
|
|
34
|
+
For more information, see: [https://ckeditor.com/pricing](https://ckeditor.com/pricing).
|
package/dist/index.js
CHANGED
|
@@ -6066,7 +6066,7 @@ const DEFAULT_LABEL = 'Powered by';
|
|
|
6066
6066
|
return true;
|
|
6067
6067
|
}
|
|
6068
6068
|
const licenseKey = editor.config.get('licenseKey');
|
|
6069
|
-
if (licenseKey == 'GPL') {
|
|
6069
|
+
/* istanbul ignore if -- @preserve */ if (licenseKey == 'GPL') {
|
|
6070
6070
|
return true;
|
|
6071
6071
|
}
|
|
6072
6072
|
const licenseContent = parseBase64EncodedObject(licenseKey.split('.')[1]);
|
|
@@ -12511,7 +12511,7 @@ function createMutationObserver(callback) {
|
|
|
12511
12511
|
/**
|
|
12512
12512
|
* Returns the license type based on the license key.
|
|
12513
12513
|
*/ function getLicenseTypeFromLicenseKey(licenseKey) {
|
|
12514
|
-
if (licenseKey == 'GPL') {
|
|
12514
|
+
/* istanbul ignore if -- @preserve */ if (licenseKey == 'GPL') {
|
|
12515
12515
|
return 'GPL';
|
|
12516
12516
|
}
|
|
12517
12517
|
const licenseContent = parseBase64EncodedObject(licenseKey.split('.')[1]);
|