@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-bookmark",
3
- "version": "0.0.0-nightly-20250610.0",
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-20250610.0",
17
- "@ckeditor/ckeditor5-core": "0.0.0-nightly-20250610.0",
18
- "@ckeditor/ckeditor5-icons": "0.0.0-nightly-20250610.0",
19
- "@ckeditor/ckeditor5-widget": "0.0.0-nightly-20250610.0",
20
- "@ckeditor/ckeditor5-utils": "0.0.0-nightly-20250610.0",
21
- "@ckeditor/ckeditor5-ui": "0.0.0-nightly-20250610.0",
22
- "@ckeditor/ckeditor5-link": "0.0.0-nightly-20250610.0"
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
@@ -7,5 +7,7 @@
7
7
  */
8
8
  /**
9
9
  * Returns `true` if the bookmark id is valid; otherwise, returns `false`.
10
+ *
11
+ * @internal
10
12
  */
11
13
  export declare function isBookmarkIdValid(id: string): boolean;
package/src/utils.js CHANGED
@@ -7,6 +7,8 @@
7
7
  */
8
8
  /**
9
9
  * Returns `true` if the bookmark id is valid; otherwise, returns `false`.
10
+ *
11
+ * @internal
10
12
  */
11
13
  export function isBookmarkIdValid(id) {
12
14
  if (!id || typeof id !== 'string') {