@ckeditor/ckeditor5-bookmark 0.0.0-nightly-20250916.0 → 0.0.0-nightly-20250917.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-20250916.0",
3
+ "version": "0.0.0-nightly-20250917.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-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"
16
+ "ckeditor5": "0.0.0-nightly-20250917.0",
17
+ "@ckeditor/ckeditor5-core": "0.0.0-nightly-20250917.0",
18
+ "@ckeditor/ckeditor5-icons": "0.0.0-nightly-20250917.0",
19
+ "@ckeditor/ckeditor5-widget": "0.0.0-nightly-20250917.0",
20
+ "@ckeditor/ckeditor5-utils": "0.0.0-nightly-20250917.0",
21
+ "@ckeditor/ckeditor5-ui": "0.0.0-nightly-20250917.0",
22
+ "@ckeditor/ckeditor5-link": "0.0.0-nightly-20250917.0"
23
23
  },
24
24
  "author": "CKSource (http://cksource.com/)",
25
25
  "license": "SEE LICENSE IN LICENSE.md",
@@ -20,6 +20,11 @@ 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,6 +26,13 @@ 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
  */
@@ -158,11 +165,6 @@ export class BookmarkEditing extends Plugin {
158
165
  });
159
166
  }
160
167
  }
161
- Object.defineProperty(BookmarkEditing, 'licenseFeatureCode', {
162
- get() {
163
- return 'BKM';
164
- }
165
- });
166
168
  /**
167
169
  * A helper function to match an `anchor` element which must contain `id` or `name` attribute but without `href` attribute,
168
170
  * also when `expectEmpty` is set to `true` but the element is not empty matcher should not match any element.