@ckeditor/ckeditor5-paste-from-office 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-paste-from-office",
3
- "version": "46.1.1",
3
+ "version": "47.0.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": "46.1.1",
17
- "@ckeditor/ckeditor5-core": "46.1.1",
18
- "@ckeditor/ckeditor5-engine": "46.1.1",
19
- "ckeditor5": "46.1.1"
16
+ "@ckeditor/ckeditor5-clipboard": "47.0.0-alpha.0",
17
+ "@ckeditor/ckeditor5-core": "47.0.0-alpha.0",
18
+ "@ckeditor/ckeditor5-engine": "47.0.0-alpha.0",
19
+ "ckeditor5": "47.0.0-alpha.0"
20
20
  },
21
21
  "author": "CKSource (http://cksource.com/)",
22
22
  "license": "SEE LICENSE IN LICENSE.md",
@@ -25,10 +25,19 @@ export declare class PasteFromOffice extends Plugin {
25
25
  * @inheritDoc
26
26
  */
27
27
  static get pluginName(): "PasteFromOffice";
28
+ /**
29
+ * @inheritDoc
30
+ * @internal
31
+ */
32
+ static get licenseFeatureCode(): string;
28
33
  /**
29
34
  * @inheritDoc
30
35
  */
31
36
  static get isOfficialPlugin(): true;
37
+ /**
38
+ * @inheritDoc
39
+ */
40
+ static get isPremiumPlugin(): true;
32
41
  /**
33
42
  * @inheritDoc
34
43
  */
@@ -31,12 +31,25 @@ export class PasteFromOffice extends Plugin {
31
31
  static get pluginName() {
32
32
  return 'PasteFromOffice';
33
33
  }
34
+ /**
35
+ * @inheritDoc
36
+ * @internal
37
+ */
38
+ static get licenseFeatureCode() {
39
+ return 'PFO';
40
+ }
34
41
  /**
35
42
  * @inheritDoc
36
43
  */
37
44
  static get isOfficialPlugin() {
38
45
  return true;
39
46
  }
47
+ /**
48
+ * @inheritDoc
49
+ */
50
+ static get isPremiumPlugin() {
51
+ return true;
52
+ }
40
53
  /**
41
54
  * @inheritDoc
42
55
  */