@ckeditor/ckeditor5-bookmark 0.0.0-nightly-20250610.0 → 0.0.0-nightly-20250613.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 +3 -1
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
- package/src/index.d.ts +2 -0
- package/src/index.js +2 -0
- package/src/utils.d.ts +2 -0
- package/src/utils.js +2 -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-20250613.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-20250613.0",
|
|
17
|
+
"@ckeditor/ckeditor5-core": "0.0.0-nightly-20250613.0",
|
|
18
|
+
"@ckeditor/ckeditor5-icons": "0.0.0-nightly-20250613.0",
|
|
19
|
+
"@ckeditor/ckeditor5-widget": "0.0.0-nightly-20250613.0",
|
|
20
|
+
"@ckeditor/ckeditor5-utils": "0.0.0-nightly-20250613.0",
|
|
21
|
+
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-20250613.0",
|
|
22
|
+
"@ckeditor/ckeditor5-link": "0.0.0-nightly-20250613.0"
|
|
23
23
|
},
|
|
24
24
|
"author": "CKSource (http://cksource.com/)",
|
|
25
25
|
"license": "SEE LICENSE IN LICENSE.md",
|
package/src/index.d.ts
CHANGED
|
@@ -10,5 +10,7 @@ export { BookmarkEditing } from './bookmarkediting.js';
|
|
|
10
10
|
export { BookmarkUI } from './bookmarkui.js';
|
|
11
11
|
export { InsertBookmarkCommand } from './insertbookmarkcommand.js';
|
|
12
12
|
export { UpdateBookmarkCommand } from './updatebookmarkcommand.js';
|
|
13
|
+
export { BookmarkFormView, type BookmarkFormValidatorCallback, type BookmarkFormViewCancelEvent } from './ui/bookmarkformview.js';
|
|
13
14
|
export type { BookmarkConfig } from './bookmarkconfig.js';
|
|
15
|
+
export { isBookmarkIdValid as _isBookmarkIdValid } from './utils.js';
|
|
14
16
|
import './augmentation.js';
|
package/src/index.js
CHANGED
|
@@ -10,4 +10,6 @@ export { BookmarkEditing } from './bookmarkediting.js';
|
|
|
10
10
|
export { BookmarkUI } from './bookmarkui.js';
|
|
11
11
|
export { InsertBookmarkCommand } from './insertbookmarkcommand.js';
|
|
12
12
|
export { UpdateBookmarkCommand } from './updatebookmarkcommand.js';
|
|
13
|
+
export { BookmarkFormView } from './ui/bookmarkformview.js';
|
|
14
|
+
export { isBookmarkIdValid as _isBookmarkIdValid } from './utils.js';
|
|
13
15
|
import './augmentation.js';
|
package/src/utils.d.ts
CHANGED