@ckeditor/ckeditor5-bookmark 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-bookmark",
3
- "version": "46.1.1",
3
+ "version": "47.0.0-alpha.0",
4
4
  "description": "Bookmark 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
- "ckeditor5": "46.1.1",
17
- "@ckeditor/ckeditor5-core": "46.1.1",
18
- "@ckeditor/ckeditor5-icons": "46.1.1",
19
- "@ckeditor/ckeditor5-widget": "46.1.1",
20
- "@ckeditor/ckeditor5-utils": "46.1.1",
21
- "@ckeditor/ckeditor5-ui": "46.1.1",
22
- "@ckeditor/ckeditor5-link": "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-widget": "47.0.0-alpha.0",
20
+ "@ckeditor/ckeditor5-utils": "47.0.0-alpha.0",
21
+ "@ckeditor/ckeditor5-ui": "47.0.0-alpha.0",
22
+ "@ckeditor/ckeditor5-link": "47.0.0-alpha.0"
23
23
  },
24
24
  "author": "CKSource (http://cksource.com/)",
25
25
  "license": "SEE LICENSE IN LICENSE.md",
@@ -20,10 +20,19 @@ export declare class BookmarkEditing extends Plugin {
20
20
  * @inheritDoc
21
21
  */
22
22
  static get pluginName(): "BookmarkEditing";
23
+ /**
24
+ * @inheritDoc
25
+ * @internal
26
+ */
27
+ static get licenseFeatureCode(): string;
23
28
  /**
24
29
  * @inheritDoc
25
30
  */
26
31
  static get isOfficialPlugin(): true;
32
+ /**
33
+ * @inheritDoc
34
+ */
35
+ static get isPremiumPlugin(): true;
27
36
  /**
28
37
  * @inheritDoc
29
38
  */
@@ -26,12 +26,25 @@ export class BookmarkEditing extends Plugin {
26
26
  static get pluginName() {
27
27
  return 'BookmarkEditing';
28
28
  }
29
+ /**
30
+ * @inheritDoc
31
+ * @internal
32
+ */
33
+ static get licenseFeatureCode() {
34
+ return 'BKM';
35
+ }
29
36
  /**
30
37
  * @inheritDoc
31
38
  */
32
39
  static get isOfficialPlugin() {
33
40
  return true;
34
41
  }
42
+ /**
43
+ * @inheritDoc
44
+ */
45
+ static get isPremiumPlugin() {
46
+ return true;
47
+ }
35
48
  /**
36
49
  * @inheritDoc
37
50
  */