@ckeditor/ckeditor5-bookmark 0.0.0-nightly-20250914.0 → 0.0.0-nightly-20250916.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": "0.0.0-nightly-20250914.0",
3
+ "version": "0.0.0-nightly-20250916.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": "0.0.0-nightly-20250914.0",
17
- "@ckeditor/ckeditor5-core": "0.0.0-nightly-20250914.0",
18
- "@ckeditor/ckeditor5-icons": "0.0.0-nightly-20250914.0",
19
- "@ckeditor/ckeditor5-widget": "0.0.0-nightly-20250914.0",
20
- "@ckeditor/ckeditor5-utils": "0.0.0-nightly-20250914.0",
21
- "@ckeditor/ckeditor5-ui": "0.0.0-nightly-20250914.0",
22
- "@ckeditor/ckeditor5-link": "0.0.0-nightly-20250914.0"
16
+ "ckeditor5": "0.0.0-nightly-20250916.0",
17
+ "@ckeditor/ckeditor5-core": "0.0.0-nightly-20250916.0",
18
+ "@ckeditor/ckeditor5-icons": "0.0.0-nightly-20250916.0",
19
+ "@ckeditor/ckeditor5-widget": "0.0.0-nightly-20250916.0",
20
+ "@ckeditor/ckeditor5-utils": "0.0.0-nightly-20250916.0",
21
+ "@ckeditor/ckeditor5-ui": "0.0.0-nightly-20250916.0",
22
+ "@ckeditor/ckeditor5-link": "0.0.0-nightly-20250916.0"
23
23
  },
24
24
  "author": "CKSource (http://cksource.com/)",
25
25
  "license": "SEE LICENSE IN LICENSE.md",
@@ -24,6 +24,10 @@ export declare class BookmarkEditing extends Plugin {
24
24
  * @inheritDoc
25
25
  */
26
26
  static get isOfficialPlugin(): true;
27
+ /**
28
+ * @inheritDoc
29
+ */
30
+ static get isPremiumPlugin(): true;
27
31
  /**
28
32
  * @inheritDoc
29
33
  */
@@ -32,6 +32,12 @@ export class BookmarkEditing extends Plugin {
32
32
  static get isOfficialPlugin() {
33
33
  return true;
34
34
  }
35
+ /**
36
+ * @inheritDoc
37
+ */
38
+ static get isPremiumPlugin() {
39
+ return true;
40
+ }
35
41
  /**
36
42
  * @inheritDoc
37
43
  */
@@ -152,6 +158,11 @@ export class BookmarkEditing extends Plugin {
152
158
  });
153
159
  }
154
160
  }
161
+ Object.defineProperty(BookmarkEditing, 'licenseFeatureCode', {
162
+ get() {
163
+ return 'BKM';
164
+ }
165
+ });
155
166
  /**
156
167
  * A helper function to match an `anchor` element which must contain `id` or `name` attribute but without `href` attribute,
157
168
  * also when `expectEmpty` is set to `true` but the element is not empty matcher should not match any element.