@ckeditor/ckeditor5-bookmark 0.0.0-nightly-20250616.0 → 0.0.0-nightly-20250618.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 +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
- package/src/bookmarkediting.d.ts +2 -2
- package/src/bookmarkui.d.ts +2 -2
- package/src/bookmarkui.js +2 -2
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-20250618.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-20250618.0",
|
|
17
|
+
"@ckeditor/ckeditor5-core": "0.0.0-nightly-20250618.0",
|
|
18
|
+
"@ckeditor/ckeditor5-icons": "0.0.0-nightly-20250618.0",
|
|
19
|
+
"@ckeditor/ckeditor5-widget": "0.0.0-nightly-20250618.0",
|
|
20
|
+
"@ckeditor/ckeditor5-utils": "0.0.0-nightly-20250618.0",
|
|
21
|
+
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-20250618.0",
|
|
22
|
+
"@ckeditor/ckeditor5-link": "0.0.0-nightly-20250618.0"
|
|
23
23
|
},
|
|
24
24
|
"author": "CKSource (http://cksource.com/)",
|
|
25
25
|
"license": "SEE LICENSE IN LICENSE.md",
|
package/src/bookmarkediting.d.ts
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
* @module bookmark/bookmarkediting
|
|
7
7
|
*/
|
|
8
8
|
import { type Editor, Plugin } from 'ckeditor5/src/core.js';
|
|
9
|
-
import type {
|
|
9
|
+
import type { ModelElement } from 'ckeditor5/src/engine.js';
|
|
10
10
|
import '../theme/bookmark.css';
|
|
11
11
|
/**
|
|
12
12
|
* The bookmark editing plugin.
|
|
@@ -35,7 +35,7 @@ export declare class BookmarkEditing extends Plugin {
|
|
|
35
35
|
/**
|
|
36
36
|
* Returns the model element for the given bookmark ID if it exists.
|
|
37
37
|
*/
|
|
38
|
-
getElementForBookmarkId(bookmarkId: string):
|
|
38
|
+
getElementForBookmarkId(bookmarkId: string): ModelElement | null;
|
|
39
39
|
/**
|
|
40
40
|
* Returns all unique bookmark names existing in the content.
|
|
41
41
|
*/
|
package/src/bookmarkui.d.ts
CHANGED
|
@@ -115,8 +115,8 @@ export declare class BookmarkUI extends Plugin {
|
|
|
115
115
|
*/
|
|
116
116
|
private _getBalloonPositionData;
|
|
117
117
|
/**
|
|
118
|
-
* Returns the bookmark {@link module:engine/view/attributeelement~
|
|
119
|
-
* the {@link module:engine/view/document~
|
|
118
|
+
* Returns the bookmark {@link module:engine/view/attributeelement~ViewAttributeElement} under
|
|
119
|
+
* the {@link module:engine/view/document~ViewDocument editing view's} selection or `null`
|
|
120
120
|
* if there is none.
|
|
121
121
|
*/
|
|
122
122
|
private _getSelectedBookmarkElement;
|
package/src/bookmarkui.js
CHANGED
|
@@ -494,8 +494,8 @@ export class BookmarkUI extends Plugin {
|
|
|
494
494
|
};
|
|
495
495
|
}
|
|
496
496
|
/**
|
|
497
|
-
* Returns the bookmark {@link module:engine/view/attributeelement~
|
|
498
|
-
* the {@link module:engine/view/document~
|
|
497
|
+
* Returns the bookmark {@link module:engine/view/attributeelement~ViewAttributeElement} under
|
|
498
|
+
* the {@link module:engine/view/document~ViewDocument editing view's} selection or `null`
|
|
499
499
|
* if there is none.
|
|
500
500
|
*/
|
|
501
501
|
_getSelectedBookmarkElement() {
|