@ckeditor/ckeditor5-special-characters 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/build/special-characters.js +1 -1
- package/dist/index.js +11 -0
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
- package/src/specialcharacters.d.ts +9 -0
- package/src/specialcharacters.js +13 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-special-characters",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "47.0.0-alpha.0",
|
|
4
4
|
"description": "Special characters feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"type": "module",
|
|
14
14
|
"main": "src/index.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"ckeditor5": "
|
|
17
|
-
"@ckeditor/ckeditor5-core": "
|
|
18
|
-
"@ckeditor/ckeditor5-icons": "
|
|
19
|
-
"@ckeditor/ckeditor5-typing": "
|
|
20
|
-
"@ckeditor/ckeditor5-ui": "
|
|
21
|
-
"@ckeditor/ckeditor5-utils": "
|
|
16
|
+
"ckeditor5": "47.0.0-alpha.0",
|
|
17
|
+
"@ckeditor/ckeditor5-core": "47.0.0-alpha.0",
|
|
18
|
+
"@ckeditor/ckeditor5-icons": "47.0.0-alpha.0",
|
|
19
|
+
"@ckeditor/ckeditor5-typing": "47.0.0-alpha.0",
|
|
20
|
+
"@ckeditor/ckeditor5-ui": "47.0.0-alpha.0",
|
|
21
|
+
"@ckeditor/ckeditor5-utils": "47.0.0-alpha.0"
|
|
22
22
|
},
|
|
23
23
|
"author": "CKSource (http://cksource.com/)",
|
|
24
24
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -35,10 +35,19 @@ export declare class SpecialCharacters extends Plugin {
|
|
|
35
35
|
* @inheritDoc
|
|
36
36
|
*/
|
|
37
37
|
static get pluginName(): "SpecialCharacters";
|
|
38
|
+
/**
|
|
39
|
+
* @inheritDoc
|
|
40
|
+
* @internal
|
|
41
|
+
*/
|
|
42
|
+
static get licenseFeatureCode(): string;
|
|
38
43
|
/**
|
|
39
44
|
* @inheritDoc
|
|
40
45
|
*/
|
|
41
46
|
static get isOfficialPlugin(): true;
|
|
47
|
+
/**
|
|
48
|
+
* @inheritDoc
|
|
49
|
+
*/
|
|
50
|
+
static get isPremiumPlugin(): true;
|
|
42
51
|
/**
|
|
43
52
|
* @inheritDoc
|
|
44
53
|
*/
|
package/src/specialcharacters.js
CHANGED
|
@@ -46,12 +46,25 @@ export class SpecialCharacters extends Plugin {
|
|
|
46
46
|
static get pluginName() {
|
|
47
47
|
return 'SpecialCharacters';
|
|
48
48
|
}
|
|
49
|
+
/**
|
|
50
|
+
* @inheritDoc
|
|
51
|
+
* @internal
|
|
52
|
+
*/
|
|
53
|
+
static get licenseFeatureCode() {
|
|
54
|
+
return 'SCH';
|
|
55
|
+
}
|
|
49
56
|
/**
|
|
50
57
|
* @inheritDoc
|
|
51
58
|
*/
|
|
52
59
|
static get isOfficialPlugin() {
|
|
53
60
|
return true;
|
|
54
61
|
}
|
|
62
|
+
/**
|
|
63
|
+
* @inheritDoc
|
|
64
|
+
*/
|
|
65
|
+
static get isPremiumPlugin() {
|
|
66
|
+
return true;
|
|
67
|
+
}
|
|
55
68
|
/**
|
|
56
69
|
* @inheritDoc
|
|
57
70
|
*/
|