@ckeditor/ckeditor5-paste-from-office 43.2.0 → 43.3.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.
@@ -29,6 +29,10 @@ export default class PasteFromOffice extends Plugin {
29
29
  * @inheritDoc
30
30
  */
31
31
  static get pluginName(): "PasteFromOffice";
32
+ /**
33
+ * @inheritDoc
34
+ */
35
+ static get isOfficialPlugin(): true;
32
36
  /**
33
37
  * @inheritDoc
34
38
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-paste-from-office",
3
- "version": "43.2.0",
3
+ "version": "43.3.0-alpha.0",
4
4
  "description": "Paste from Office feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,10 +13,10 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-clipboard": "43.2.0",
17
- "@ckeditor/ckeditor5-core": "43.2.0",
18
- "@ckeditor/ckeditor5-engine": "43.2.0",
19
- "ckeditor5": "43.2.0"
16
+ "@ckeditor/ckeditor5-clipboard": "43.3.0-alpha.0",
17
+ "@ckeditor/ckeditor5-core": "43.3.0-alpha.0",
18
+ "@ckeditor/ckeditor5-engine": "43.3.0-alpha.0",
19
+ "ckeditor5": "43.3.0-alpha.0"
20
20
  },
21
21
  "author": "CKSource (http://cksource.com/)",
22
22
  "license": "GPL-2.0-or-later",
@@ -25,6 +25,10 @@ export default class PasteFromOffice extends Plugin {
25
25
  * @inheritDoc
26
26
  */
27
27
  static get pluginName(): "PasteFromOffice";
28
+ /**
29
+ * @inheritDoc
30
+ */
31
+ static get isOfficialPlugin(): true;
28
32
  /**
29
33
  * @inheritDoc
30
34
  */
@@ -31,6 +31,12 @@ export default class PasteFromOffice extends Plugin {
31
31
  static get pluginName() {
32
32
  return 'PasteFromOffice';
33
33
  }
34
+ /**
35
+ * @inheritDoc
36
+ */
37
+ static get isOfficialPlugin() {
38
+ return true;
39
+ }
34
40
  /**
35
41
  * @inheritDoc
36
42
  */