@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-special-characters",
3
- "version": "46.1.1",
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": "46.1.1",
17
- "@ckeditor/ckeditor5-core": "46.1.1",
18
- "@ckeditor/ckeditor5-icons": "46.1.1",
19
- "@ckeditor/ckeditor5-typing": "46.1.1",
20
- "@ckeditor/ckeditor5-ui": "46.1.1",
21
- "@ckeditor/ckeditor5-utils": "46.1.1"
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
  */
@@ -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
  */