@ckeditor/ckeditor5-core 44.0.0-alpha.1 → 44.0.0-alpha.10
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 +7 -2
- package/README.md +7 -2
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/plugin.d.ts +6 -0
- package/package.json +5 -5
- package/src/plugin.d.ts +6 -0
- package/src/plugin.js +2 -0
package/LICENSE.md
CHANGED
|
@@ -1,10 +1,15 @@
|
|
|
1
1
|
Software License Agreement
|
|
2
2
|
==========================
|
|
3
3
|
|
|
4
|
-
**CKEditor 5
|
|
4
|
+
**CKEditor 5 Core editor architecture** (https://github.com/ckeditor/ckeditor5)<br>
|
|
5
5
|
Copyright (c) 2003–2024, [CKSource Holding sp. z o.o.](https://cksource.com) All rights reserved.
|
|
6
6
|
|
|
7
|
-
Licensed under
|
|
7
|
+
Licensed under a dual-license model, this software is available under:
|
|
8
|
+
|
|
9
|
+
* the [GNU General Public License Version 2 or later](https://www.gnu.org/licenses/gpl.html),
|
|
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).
|
|
8
13
|
|
|
9
14
|
Sources of Intellectual Property Included in CKEditor
|
|
10
15
|
-----------------------------------------------------
|
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ npm install ckeditor5
|
|
|
17
17
|
|
|
18
18
|
## Create free account
|
|
19
19
|
|
|
20
|
-
If you want to check full CKEditor 5 capabilities, sign up for a [free non-commitment 14-day trial](https://portal.ckeditor.com/
|
|
20
|
+
If you want to check full CKEditor 5 capabilities, sign up for a [free non-commitment 14-day trial](https://portal.ckeditor.com/checkout?plan=free).
|
|
21
21
|
|
|
22
22
|
## Documentation
|
|
23
23
|
|
|
@@ -27,4 +27,9 @@ Additionally, see the [`@ckeditor/ckeditor5-core` package](https://ckeditor.com/
|
|
|
27
27
|
|
|
28
28
|
## License
|
|
29
29
|
|
|
30
|
-
Licensed under
|
|
30
|
+
Licensed under a dual-license model, this software is available under:
|
|
31
|
+
|
|
32
|
+
* the [GNU General Public License Version 2 or later](https://www.gnu.org/licenses/gpl.html),
|
|
33
|
+
* or commercial license terms from CKSource Holding sp. z o.o.
|
|
34
|
+
|
|
35
|
+
For more information, see: [https://ckeditor.com/legal/ckeditor-licensing-options](https://ckeditor.com/legal/ckeditor-licensing-options).
|
package/dist/index.js
CHANGED
|
@@ -104,11 +104,13 @@ import { EditorWatchdog, ContextWatchdog } from '@ckeditor/ckeditor5-watchdog/di
|
|
|
104
104
|
}
|
|
105
105
|
/**
|
|
106
106
|
* @inheritDoc
|
|
107
|
+
* @internal
|
|
107
108
|
*/ static get isOfficialPlugin() {
|
|
108
109
|
return false;
|
|
109
110
|
}
|
|
110
111
|
/**
|
|
111
112
|
* @inheritDoc
|
|
113
|
+
* @internal
|
|
112
114
|
*/ static get isPremiumPlugin() {
|
|
113
115
|
return false;
|
|
114
116
|
}
|