@ckeditor/ckeditor5-bookmark 0.0.0-nightly-20250915.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/build/bookmark.js +1 -1
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
- package/src/bookmarkediting.d.ts +4 -0
- package/src/bookmarkediting.js +11 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-bookmark",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
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-
|
|
17
|
-
"@ckeditor/ckeditor5-core": "0.0.0-nightly-
|
|
18
|
-
"@ckeditor/ckeditor5-icons": "0.0.0-nightly-
|
|
19
|
-
"@ckeditor/ckeditor5-widget": "0.0.0-nightly-
|
|
20
|
-
"@ckeditor/ckeditor5-utils": "0.0.0-nightly-
|
|
21
|
-
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-
|
|
22
|
-
"@ckeditor/ckeditor5-link": "0.0.0-nightly-
|
|
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",
|
package/src/bookmarkediting.d.ts
CHANGED
package/src/bookmarkediting.js
CHANGED
|
@@ -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.
|