@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/build/bookmark.js +1 -1
- package/dist/index.js +6 -5
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
- package/src/bookmarkediting.d.ts +5 -0
- package/src/bookmarkediting.js +7 -5
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-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-
|
|
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-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",
|
package/src/bookmarkediting.d.ts
CHANGED
package/src/bookmarkediting.js
CHANGED
|
@@ -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.
|