@ckeditor/ckeditor5-code-block 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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-code-block",
3
- "version": "0.0.0-nightly-20241016.0",
3
+ "version": "0.0.0-nightly-20241018.0",
4
4
  "description": "Code block feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,13 +13,13 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-core": "0.0.0-nightly-20241016.0",
17
- "@ckeditor/ckeditor5-clipboard": "0.0.0-nightly-20241016.0",
18
- "@ckeditor/ckeditor5-engine": "0.0.0-nightly-20241016.0",
19
- "@ckeditor/ckeditor5-enter": "0.0.0-nightly-20241016.0",
20
- "@ckeditor/ckeditor5-ui": "0.0.0-nightly-20241016.0",
21
- "@ckeditor/ckeditor5-utils": "0.0.0-nightly-20241016.0",
22
- "ckeditor5": "0.0.0-nightly-20241016.0"
16
+ "@ckeditor/ckeditor5-core": "0.0.0-nightly-20241018.0",
17
+ "@ckeditor/ckeditor5-clipboard": "0.0.0-nightly-20241018.0",
18
+ "@ckeditor/ckeditor5-engine": "0.0.0-nightly-20241018.0",
19
+ "@ckeditor/ckeditor5-enter": "0.0.0-nightly-20241018.0",
20
+ "@ckeditor/ckeditor5-ui": "0.0.0-nightly-20241018.0",
21
+ "@ckeditor/ckeditor5-utils": "0.0.0-nightly-20241018.0",
22
+ "ckeditor5": "0.0.0-nightly-20241018.0"
23
23
  },
24
24
  "author": "CKSource (http://cksource.com/)",
25
25
  "license": "GPL-2.0-or-later",
@@ -26,4 +26,8 @@ export default class CodeBlock extends Plugin {
26
26
  * @inheritDoc
27
27
  */
28
28
  static get pluginName(): "CodeBlock";
29
+ /**
30
+ * @inheritDoc
31
+ */
32
+ static get isOfficialPlugin(): true;
29
33
  }
package/src/codeblock.js CHANGED
@@ -30,4 +30,10 @@ export default class CodeBlock extends Plugin {
30
30
  static get pluginName() {
31
31
  return 'CodeBlock';
32
32
  }
33
+ /**
34
+ * @inheritDoc
35
+ */
36
+ static get isOfficialPlugin() {
37
+ return true;
38
+ }
33
39
  }
@@ -17,6 +17,10 @@ export default class CodeBlockEditing extends Plugin {
17
17
  * @inheritDoc
18
18
  */
19
19
  static get pluginName(): "CodeBlockEditing";
20
+ /**
21
+ * @inheritDoc
22
+ */
23
+ static get isOfficialPlugin(): true;
20
24
  /**
21
25
  * @inheritDoc
22
26
  */
@@ -27,6 +27,12 @@ export default class CodeBlockEditing extends Plugin {
27
27
  static get pluginName() {
28
28
  return 'CodeBlockEditing';
29
29
  }
30
+ /**
31
+ * @inheritDoc
32
+ */
33
+ static get isOfficialPlugin() {
34
+ return true;
35
+ }
30
36
  /**
31
37
  * @inheritDoc
32
38
  */
@@ -17,6 +17,10 @@ export default class CodeBlockUI extends Plugin {
17
17
  * @inheritDoc
18
18
  */
19
19
  static get pluginName(): "CodeBlockUI";
20
+ /**
21
+ * @inheritDoc
22
+ */
23
+ static get isOfficialPlugin(): true;
20
24
  /**
21
25
  * @inheritDoc
22
26
  */
@@ -22,6 +22,12 @@ export default class CodeBlockUI extends Plugin {
22
22
  static get pluginName() {
23
23
  return 'CodeBlockUI';
24
24
  }
25
+ /**
26
+ * @inheritDoc
27
+ */
28
+ static get isOfficialPlugin() {
29
+ return true;
30
+ }
25
31
  /**
26
32
  * @inheritDoc
27
33
  */