@ckeditor/ckeditor5-special-characters 0.0.0-nightly-20241016.0 → 0.0.0-nightly-20241018.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.
@@ -39,6 +39,10 @@ export default class SpecialCharacters extends Plugin {
39
39
  * @inheritDoc
40
40
  */
41
41
  static get pluginName(): "SpecialCharacters";
42
+ /**
43
+ * @inheritDoc
44
+ */
45
+ static get isOfficialPlugin(): true;
42
46
  /**
43
47
  * @inheritDoc
44
48
  */
@@ -27,6 +27,10 @@ export default class SpecialCharactersArrows extends Plugin {
27
27
  * @inheritDoc
28
28
  */
29
29
  static get pluginName(): "SpecialCharactersArrows";
30
+ /**
31
+ * @inheritDoc
32
+ */
33
+ static get isOfficialPlugin(): true;
30
34
  /**
31
35
  * @inheritDoc
32
36
  */
@@ -27,6 +27,10 @@ export default class SpecialCharactersCurrency extends Plugin {
27
27
  * @inheritDoc
28
28
  */
29
29
  static get pluginName(): "SpecialCharactersCurrency";
30
+ /**
31
+ * @inheritDoc
32
+ */
33
+ static get isOfficialPlugin(): true;
30
34
  /**
31
35
  * @inheritDoc
32
36
  */
@@ -32,6 +32,10 @@ export default class SpecialCharactersEssentials extends Plugin {
32
32
  * @inheritDoc
33
33
  */
34
34
  static get pluginName(): "SpecialCharactersEssentials";
35
+ /**
36
+ * @inheritDoc
37
+ */
38
+ static get isOfficialPlugin(): true;
35
39
  /**
36
40
  * @inheritDoc
37
41
  */
@@ -27,6 +27,10 @@ export default class SpecialCharactersLatin extends Plugin {
27
27
  * @inheritDoc
28
28
  */
29
29
  static get pluginName(): "SpecialCharactersLatin";
30
+ /**
31
+ * @inheritDoc
32
+ */
33
+ static get isOfficialPlugin(): true;
30
34
  /**
31
35
  * @inheritDoc
32
36
  */
@@ -27,6 +27,10 @@ export default class SpecialCharactersMathematical extends Plugin {
27
27
  * @inheritDoc
28
28
  */
29
29
  static get pluginName(): "SpecialCharactersMathematical";
30
+ /**
31
+ * @inheritDoc
32
+ */
33
+ static get isOfficialPlugin(): true;
30
34
  /**
31
35
  * @inheritDoc
32
36
  */
@@ -27,6 +27,10 @@ export default class SpecialCharactersText extends Plugin {
27
27
  * @inheritDoc
28
28
  */
29
29
  static get pluginName(): "SpecialCharactersText";
30
+ /**
31
+ * @inheritDoc
32
+ */
33
+ static get isOfficialPlugin(): true;
30
34
  /**
31
35
  * @inheritDoc
32
36
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-special-characters",
3
- "version": "0.0.0-nightly-20241016.0",
3
+ "version": "0.0.0-nightly-20241018.0",
4
4
  "description": "Special characters feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,11 +13,11 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "ckeditor5": "0.0.0-nightly-20241016.0",
17
- "@ckeditor/ckeditor5-core": "0.0.0-nightly-20241016.0",
18
- "@ckeditor/ckeditor5-typing": "0.0.0-nightly-20241016.0",
19
- "@ckeditor/ckeditor5-ui": "0.0.0-nightly-20241016.0",
20
- "@ckeditor/ckeditor5-utils": "0.0.0-nightly-20241016.0"
16
+ "ckeditor5": "0.0.0-nightly-20241018.0",
17
+ "@ckeditor/ckeditor5-core": "0.0.0-nightly-20241018.0",
18
+ "@ckeditor/ckeditor5-typing": "0.0.0-nightly-20241018.0",
19
+ "@ckeditor/ckeditor5-ui": "0.0.0-nightly-20241018.0",
20
+ "@ckeditor/ckeditor5-utils": "0.0.0-nightly-20241018.0"
21
21
  },
22
22
  "author": "CKSource (http://cksource.com/)",
23
23
  "license": "GPL-2.0-or-later",
@@ -35,6 +35,10 @@ export default class SpecialCharacters extends Plugin {
35
35
  * @inheritDoc
36
36
  */
37
37
  static get pluginName(): "SpecialCharacters";
38
+ /**
39
+ * @inheritDoc
40
+ */
41
+ static get isOfficialPlugin(): true;
38
42
  /**
39
43
  * @inheritDoc
40
44
  */
@@ -34,6 +34,12 @@ export default class SpecialCharacters extends Plugin {
34
34
  static get pluginName() {
35
35
  return 'SpecialCharacters';
36
36
  }
37
+ /**
38
+ * @inheritDoc
39
+ */
40
+ static get isOfficialPlugin() {
41
+ return true;
42
+ }
37
43
  /**
38
44
  * @inheritDoc
39
45
  */
@@ -23,6 +23,10 @@ export default class SpecialCharactersArrows extends Plugin {
23
23
  * @inheritDoc
24
24
  */
25
25
  static get pluginName(): "SpecialCharactersArrows";
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ static get isOfficialPlugin(): true;
26
30
  /**
27
31
  * @inheritDoc
28
32
  */
@@ -25,6 +25,12 @@ export default class SpecialCharactersArrows extends Plugin {
25
25
  static get pluginName() {
26
26
  return 'SpecialCharactersArrows';
27
27
  }
28
+ /**
29
+ * @inheritDoc
30
+ */
31
+ static get isOfficialPlugin() {
32
+ return true;
33
+ }
28
34
  /**
29
35
  * @inheritDoc
30
36
  */
@@ -23,6 +23,10 @@ export default class SpecialCharactersCurrency extends Plugin {
23
23
  * @inheritDoc
24
24
  */
25
25
  static get pluginName(): "SpecialCharactersCurrency";
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ static get isOfficialPlugin(): true;
26
30
  /**
27
31
  * @inheritDoc
28
32
  */
@@ -25,6 +25,12 @@ export default class SpecialCharactersCurrency extends Plugin {
25
25
  static get pluginName() {
26
26
  return 'SpecialCharactersCurrency';
27
27
  }
28
+ /**
29
+ * @inheritDoc
30
+ */
31
+ static get isOfficialPlugin() {
32
+ return true;
33
+ }
28
34
  /**
29
35
  * @inheritDoc
30
36
  */
@@ -28,6 +28,10 @@ export default class SpecialCharactersEssentials extends Plugin {
28
28
  * @inheritDoc
29
29
  */
30
30
  static get pluginName(): "SpecialCharactersEssentials";
31
+ /**
32
+ * @inheritDoc
33
+ */
34
+ static get isOfficialPlugin(): true;
31
35
  /**
32
36
  * @inheritDoc
33
37
  */
@@ -30,6 +30,12 @@ export default class SpecialCharactersEssentials extends Plugin {
30
30
  static get pluginName() {
31
31
  return 'SpecialCharactersEssentials';
32
32
  }
33
+ /**
34
+ * @inheritDoc
35
+ */
36
+ static get isOfficialPlugin() {
37
+ return true;
38
+ }
33
39
  /**
34
40
  * @inheritDoc
35
41
  */
@@ -23,6 +23,10 @@ export default class SpecialCharactersLatin extends Plugin {
23
23
  * @inheritDoc
24
24
  */
25
25
  static get pluginName(): "SpecialCharactersLatin";
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ static get isOfficialPlugin(): true;
26
30
  /**
27
31
  * @inheritDoc
28
32
  */
@@ -25,6 +25,12 @@ export default class SpecialCharactersLatin extends Plugin {
25
25
  static get pluginName() {
26
26
  return 'SpecialCharactersLatin';
27
27
  }
28
+ /**
29
+ * @inheritDoc
30
+ */
31
+ static get isOfficialPlugin() {
32
+ return true;
33
+ }
28
34
  /**
29
35
  * @inheritDoc
30
36
  */
@@ -23,6 +23,10 @@ export default class SpecialCharactersMathematical extends Plugin {
23
23
  * @inheritDoc
24
24
  */
25
25
  static get pluginName(): "SpecialCharactersMathematical";
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ static get isOfficialPlugin(): true;
26
30
  /**
27
31
  * @inheritDoc
28
32
  */
@@ -25,6 +25,12 @@ export default class SpecialCharactersMathematical extends Plugin {
25
25
  static get pluginName() {
26
26
  return 'SpecialCharactersMathematical';
27
27
  }
28
+ /**
29
+ * @inheritDoc
30
+ */
31
+ static get isOfficialPlugin() {
32
+ return true;
33
+ }
28
34
  /**
29
35
  * @inheritDoc
30
36
  */
@@ -23,6 +23,10 @@ export default class SpecialCharactersText extends Plugin {
23
23
  * @inheritDoc
24
24
  */
25
25
  static get pluginName(): "SpecialCharactersText";
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ static get isOfficialPlugin(): true;
26
30
  /**
27
31
  * @inheritDoc
28
32
  */
@@ -25,6 +25,12 @@ export default class SpecialCharactersText extends Plugin {
25
25
  static get pluginName() {
26
26
  return 'SpecialCharactersText';
27
27
  }
28
+ /**
29
+ * @inheritDoc
30
+ */
31
+ static get isOfficialPlugin() {
32
+ return true;
33
+ }
28
34
  /**
29
35
  * @inheritDoc
30
36
  */