@ckeditor/ckeditor5-list 46.1.1 → 47.0.0-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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-list",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "47.0.0-alpha.0",
|
|
4
4
|
"description": "Ordered and unordered lists feature to CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -13,16 +13,16 @@
|
|
|
13
13
|
"type": "module",
|
|
14
14
|
"main": "src/index.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@ckeditor/ckeditor5-clipboard": "
|
|
17
|
-
"@ckeditor/ckeditor5-core": "
|
|
18
|
-
"@ckeditor/ckeditor5-engine": "
|
|
19
|
-
"@ckeditor/ckeditor5-enter": "
|
|
20
|
-
"@ckeditor/ckeditor5-font": "
|
|
21
|
-
"@ckeditor/ckeditor5-icons": "
|
|
22
|
-
"@ckeditor/ckeditor5-typing": "
|
|
23
|
-
"@ckeditor/ckeditor5-ui": "
|
|
24
|
-
"@ckeditor/ckeditor5-utils": "
|
|
25
|
-
"ckeditor5": "
|
|
16
|
+
"@ckeditor/ckeditor5-clipboard": "47.0.0-alpha.0",
|
|
17
|
+
"@ckeditor/ckeditor5-core": "47.0.0-alpha.0",
|
|
18
|
+
"@ckeditor/ckeditor5-engine": "47.0.0-alpha.0",
|
|
19
|
+
"@ckeditor/ckeditor5-enter": "47.0.0-alpha.0",
|
|
20
|
+
"@ckeditor/ckeditor5-font": "47.0.0-alpha.0",
|
|
21
|
+
"@ckeditor/ckeditor5-icons": "47.0.0-alpha.0",
|
|
22
|
+
"@ckeditor/ckeditor5-typing": "47.0.0-alpha.0",
|
|
23
|
+
"@ckeditor/ckeditor5-ui": "47.0.0-alpha.0",
|
|
24
|
+
"@ckeditor/ckeditor5-utils": "47.0.0-alpha.0",
|
|
25
|
+
"ckeditor5": "47.0.0-alpha.0"
|
|
26
26
|
},
|
|
27
27
|
"author": "CKSource (http://cksource.com/)",
|
|
28
28
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -24,10 +24,19 @@ export declare class ListPropertiesEditing extends Plugin {
|
|
|
24
24
|
* @inheritDoc
|
|
25
25
|
*/
|
|
26
26
|
static get pluginName(): "ListPropertiesEditing";
|
|
27
|
+
/**
|
|
28
|
+
* @inheritDoc
|
|
29
|
+
* @internal
|
|
30
|
+
*/
|
|
31
|
+
static get licenseFeatureCode(): string;
|
|
27
32
|
/**
|
|
28
33
|
* @inheritDoc
|
|
29
34
|
*/
|
|
30
35
|
static get isOfficialPlugin(): true;
|
|
36
|
+
/**
|
|
37
|
+
* @inheritDoc
|
|
38
|
+
*/
|
|
39
|
+
static get isPremiumPlugin(): true;
|
|
31
40
|
/**
|
|
32
41
|
* @inheritDoc
|
|
33
42
|
*/
|
|
@@ -35,12 +35,25 @@ export class ListPropertiesEditing extends Plugin {
|
|
|
35
35
|
static get pluginName() {
|
|
36
36
|
return 'ListPropertiesEditing';
|
|
37
37
|
}
|
|
38
|
+
/**
|
|
39
|
+
* @inheritDoc
|
|
40
|
+
* @internal
|
|
41
|
+
*/
|
|
42
|
+
static get licenseFeatureCode() {
|
|
43
|
+
return 'LP';
|
|
44
|
+
}
|
|
38
45
|
/**
|
|
39
46
|
* @inheritDoc
|
|
40
47
|
*/
|
|
41
48
|
static get isOfficialPlugin() {
|
|
42
49
|
return true;
|
|
43
50
|
}
|
|
51
|
+
/**
|
|
52
|
+
* @inheritDoc
|
|
53
|
+
*/
|
|
54
|
+
static get isPremiumPlugin() {
|
|
55
|
+
return true;
|
|
56
|
+
}
|
|
44
57
|
/**
|
|
45
58
|
* @inheritDoc
|
|
46
59
|
*/
|