@ckeditor/ckeditor5-restricted-editing 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-restricted-editing",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "47.0.0-alpha.0",
|
|
4
4
|
"description": "Restricted editing feature for CKEditor 5 editors.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -12,12 +12,12 @@
|
|
|
12
12
|
"type": "module",
|
|
13
13
|
"main": "src/index.js",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@ckeditor/ckeditor5-core": "
|
|
16
|
-
"@ckeditor/ckeditor5-engine": "
|
|
17
|
-
"@ckeditor/ckeditor5-icons": "
|
|
18
|
-
"@ckeditor/ckeditor5-ui": "
|
|
19
|
-
"@ckeditor/ckeditor5-utils": "
|
|
20
|
-
"ckeditor5": "
|
|
15
|
+
"@ckeditor/ckeditor5-core": "47.0.0-alpha.0",
|
|
16
|
+
"@ckeditor/ckeditor5-engine": "47.0.0-alpha.0",
|
|
17
|
+
"@ckeditor/ckeditor5-icons": "47.0.0-alpha.0",
|
|
18
|
+
"@ckeditor/ckeditor5-ui": "47.0.0-alpha.0",
|
|
19
|
+
"@ckeditor/ckeditor5-utils": "47.0.0-alpha.0",
|
|
20
|
+
"ckeditor5": "47.0.0-alpha.0"
|
|
21
21
|
},
|
|
22
22
|
"author": "CKSource (http://cksource.com/)",
|
|
23
23
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -29,10 +29,19 @@ export declare class RestrictedEditingModeEditing extends Plugin {
|
|
|
29
29
|
* @inheritDoc
|
|
30
30
|
*/
|
|
31
31
|
static get pluginName(): "RestrictedEditingModeEditing";
|
|
32
|
+
/**
|
|
33
|
+
* @inheritDoc
|
|
34
|
+
* @internal
|
|
35
|
+
*/
|
|
36
|
+
static get licenseFeatureCode(): string;
|
|
32
37
|
/**
|
|
33
38
|
* @inheritDoc
|
|
34
39
|
*/
|
|
35
40
|
static get isOfficialPlugin(): true;
|
|
41
|
+
/**
|
|
42
|
+
* @inheritDoc
|
|
43
|
+
*/
|
|
44
|
+
static get isPremiumPlugin(): true;
|
|
36
45
|
/**
|
|
37
46
|
* @inheritDoc
|
|
38
47
|
*/
|
|
@@ -35,12 +35,25 @@ export class RestrictedEditingModeEditing extends Plugin {
|
|
|
35
35
|
static get pluginName() {
|
|
36
36
|
return 'RestrictedEditingModeEditing';
|
|
37
37
|
}
|
|
38
|
+
/**
|
|
39
|
+
* @inheritDoc
|
|
40
|
+
* @internal
|
|
41
|
+
*/
|
|
42
|
+
static get licenseFeatureCode() {
|
|
43
|
+
return 'RED';
|
|
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
|
*/
|