@ckeditor/ckeditor5-core 44.0.0-alpha.0 → 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/dist/plugin.d.ts
CHANGED
|
@@ -111,10 +111,12 @@ export default class Plugin extends /* #__PURE__ */ Plugin_base implements Plugi
|
|
|
111
111
|
static get isContextPlugin(): false;
|
|
112
112
|
/**
|
|
113
113
|
* @inheritDoc
|
|
114
|
+
* @internal
|
|
114
115
|
*/
|
|
115
116
|
static get isOfficialPlugin(): boolean;
|
|
116
117
|
/**
|
|
117
118
|
* @inheritDoc
|
|
119
|
+
* @internal
|
|
118
120
|
*/
|
|
119
121
|
static get isPremiumPlugin(): boolean;
|
|
120
122
|
}
|
|
@@ -279,10 +281,14 @@ export interface PluginStaticMembers<TContext = Editor> {
|
|
|
279
281
|
readonly isContextPlugin?: boolean;
|
|
280
282
|
/**
|
|
281
283
|
* A flag which defines if a plugin is an official CKEditor 5 plugin.
|
|
284
|
+
*
|
|
285
|
+
* @internal
|
|
282
286
|
*/
|
|
283
287
|
readonly isOfficialPlugin?: boolean;
|
|
284
288
|
/**
|
|
285
289
|
* A flag which defines if a plugin is a premium CKEditor 5 plugin.
|
|
290
|
+
*
|
|
291
|
+
* @internal
|
|
286
292
|
*/
|
|
287
293
|
readonly isPremiumPlugin?: boolean;
|
|
288
294
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-core",
|
|
3
|
-
"version": "44.0.0-alpha.
|
|
3
|
+
"version": "44.0.0-alpha.10",
|
|
4
4
|
"description": "The core architecture of CKEditor 5 – the best browser-based rich text editor.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wysiwyg",
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
"type": "module",
|
|
25
25
|
"main": "src/index.js",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@ckeditor/ckeditor5-engine": "44.0.0-alpha.
|
|
28
|
-
"@ckeditor/ckeditor5-utils": "44.0.0-alpha.
|
|
29
|
-
"@ckeditor/ckeditor5-watchdog": "44.0.0-alpha.
|
|
27
|
+
"@ckeditor/ckeditor5-engine": "44.0.0-alpha.10",
|
|
28
|
+
"@ckeditor/ckeditor5-utils": "44.0.0-alpha.10",
|
|
29
|
+
"@ckeditor/ckeditor5-watchdog": "44.0.0-alpha.10",
|
|
30
30
|
"lodash-es": "4.17.21"
|
|
31
31
|
},
|
|
32
32
|
"author": "CKSource (http://cksource.com/)",
|
|
33
|
-
"license": "
|
|
33
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
34
34
|
"homepage": "https://ckeditor.com/ckeditor-5",
|
|
35
35
|
"bugs": "https://github.com/ckeditor/ckeditor5/issues",
|
|
36
36
|
"repository": {
|
package/src/plugin.d.ts
CHANGED
|
@@ -107,10 +107,12 @@ export default class Plugin extends /* #__PURE__ */ Plugin_base implements Plugi
|
|
|
107
107
|
static get isContextPlugin(): false;
|
|
108
108
|
/**
|
|
109
109
|
* @inheritDoc
|
|
110
|
+
* @internal
|
|
110
111
|
*/
|
|
111
112
|
static get isOfficialPlugin(): boolean;
|
|
112
113
|
/**
|
|
113
114
|
* @inheritDoc
|
|
115
|
+
* @internal
|
|
114
116
|
*/
|
|
115
117
|
static get isPremiumPlugin(): boolean;
|
|
116
118
|
}
|
|
@@ -275,10 +277,14 @@ export interface PluginStaticMembers<TContext = Editor> {
|
|
|
275
277
|
readonly isContextPlugin?: boolean;
|
|
276
278
|
/**
|
|
277
279
|
* A flag which defines if a plugin is an official CKEditor 5 plugin.
|
|
280
|
+
*
|
|
281
|
+
* @internal
|
|
278
282
|
*/
|
|
279
283
|
readonly isOfficialPlugin?: boolean;
|
|
280
284
|
/**
|
|
281
285
|
* A flag which defines if a plugin is a premium CKEditor 5 plugin.
|
|
286
|
+
*
|
|
287
|
+
* @internal
|
|
282
288
|
*/
|
|
283
289
|
readonly isPremiumPlugin?: boolean;
|
|
284
290
|
}
|
package/src/plugin.js
CHANGED
|
@@ -98,12 +98,14 @@ export default class Plugin extends /* #__PURE__ */ ObservableMixin() {
|
|
|
98
98
|
}
|
|
99
99
|
/**
|
|
100
100
|
* @inheritDoc
|
|
101
|
+
* @internal
|
|
101
102
|
*/
|
|
102
103
|
static get isOfficialPlugin() {
|
|
103
104
|
return false;
|
|
104
105
|
}
|
|
105
106
|
/**
|
|
106
107
|
* @inheritDoc
|
|
108
|
+
* @internal
|
|
107
109
|
*/
|
|
108
110
|
static get isPremiumPlugin() {
|
|
109
111
|
return false;
|