@ckeditor/ckeditor5-bookmark 0.0.0-nightly-20260106.0 → 0.0.0-nightly-next-20260106.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/ckeditor5-metadata.json +1 -1
- package/{src → dist}/augmentation.d.ts +4 -0
- package/{src → dist}/bookmark.d.ts +6 -2
- package/{src → dist}/bookmarkconfig.d.ts +4 -0
- package/{src → dist}/bookmarkediting.d.ts +6 -2
- package/{src → dist}/bookmarkui.d.ts +7 -3
- package/{src → dist}/index.d.ts +4 -0
- package/dist/index.js +1 -2
- package/dist/index.js.map +1 -1
- package/{src → dist}/insertbookmarkcommand.d.ts +5 -1
- package/{src → dist}/ui/bookmarkformview.d.ts +6 -2
- package/{src → dist}/updatebookmarkcommand.d.ts +5 -1
- package/{src → dist}/utils.d.ts +4 -0
- package/package.json +25 -34
- package/build/bookmark.js +0 -5
- package/build/translations/af.js +0 -1
- package/build/translations/ar.js +0 -1
- package/build/translations/ast.js +0 -1
- package/build/translations/az.js +0 -1
- package/build/translations/be.js +0 -1
- package/build/translations/bg.js +0 -1
- package/build/translations/bn.js +0 -1
- package/build/translations/bs.js +0 -1
- package/build/translations/ca.js +0 -1
- package/build/translations/cs.js +0 -1
- package/build/translations/da.js +0 -1
- package/build/translations/de-ch.js +0 -1
- package/build/translations/de.js +0 -1
- package/build/translations/el.js +0 -1
- package/build/translations/en-au.js +0 -1
- package/build/translations/en-gb.js +0 -1
- package/build/translations/eo.js +0 -1
- package/build/translations/es-co.js +0 -1
- package/build/translations/es.js +0 -1
- package/build/translations/et.js +0 -1
- package/build/translations/eu.js +0 -1
- package/build/translations/fa.js +0 -1
- package/build/translations/fi.js +0 -1
- package/build/translations/fr.js +0 -1
- package/build/translations/gl.js +0 -1
- package/build/translations/gu.js +0 -1
- package/build/translations/he.js +0 -1
- package/build/translations/hi.js +0 -1
- package/build/translations/hr.js +0 -1
- package/build/translations/hu.js +0 -1
- package/build/translations/hy.js +0 -1
- package/build/translations/id.js +0 -1
- package/build/translations/it.js +0 -1
- package/build/translations/ja.js +0 -1
- package/build/translations/jv.js +0 -1
- package/build/translations/kk.js +0 -1
- package/build/translations/km.js +0 -1
- package/build/translations/kn.js +0 -1
- package/build/translations/ko.js +0 -1
- package/build/translations/ku.js +0 -1
- package/build/translations/lt.js +0 -1
- package/build/translations/lv.js +0 -1
- package/build/translations/ms.js +0 -1
- package/build/translations/nb.js +0 -1
- package/build/translations/ne.js +0 -1
- package/build/translations/nl.js +0 -1
- package/build/translations/no.js +0 -1
- package/build/translations/oc.js +0 -1
- package/build/translations/pl.js +0 -1
- package/build/translations/pt-br.js +0 -1
- package/build/translations/pt.js +0 -1
- package/build/translations/ro.js +0 -1
- package/build/translations/ru.js +0 -1
- package/build/translations/si.js +0 -1
- package/build/translations/sk.js +0 -1
- package/build/translations/sl.js +0 -1
- package/build/translations/sq.js +0 -1
- package/build/translations/sr-latn.js +0 -1
- package/build/translations/sr.js +0 -1
- package/build/translations/sv.js +0 -1
- package/build/translations/th.js +0 -1
- package/build/translations/ti.js +0 -1
- package/build/translations/tk.js +0 -1
- package/build/translations/tr.js +0 -1
- package/build/translations/tt.js +0 -1
- package/build/translations/ug.js +0 -1
- package/build/translations/uk.js +0 -1
- package/build/translations/ur.js +0 -1
- package/build/translations/uz.js +0 -1
- package/build/translations/vi.js +0 -1
- package/build/translations/zh-cn.js +0 -1
- package/build/translations/zh.js +0 -1
- package/src/augmentation.js +0 -5
- package/src/bookmark.js +0 -36
- package/src/bookmarkconfig.js +0 -5
- package/src/bookmarkediting.js +0 -238
- package/src/bookmarkui.js +0 -591
- package/src/index.js +0 -15
- package/src/insertbookmarkcommand.js +0 -113
- package/src/ui/bookmarkformview.js +0 -244
- package/src/updatebookmarkcommand.js +0 -75
- package/src/utils.js +0 -21
package/ckeditor5-metadata.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"className": "Bookmark",
|
|
6
6
|
"description": "Allows to insert a bookmark into the content to provide fast access to important sections.",
|
|
7
7
|
"docs": "features/bookmarks.html",
|
|
8
|
-
"path": "src/bookmark.
|
|
8
|
+
"path": "src/bookmark.ts",
|
|
9
9
|
"uiComponents": [
|
|
10
10
|
{
|
|
11
11
|
"type": "Button",
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
1
5
|
/**
|
|
2
6
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
7
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
1
5
|
/**
|
|
2
6
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
7
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
@@ -5,8 +9,8 @@
|
|
|
5
9
|
/**
|
|
6
10
|
* @module bookmark/bookmark
|
|
7
11
|
*/
|
|
8
|
-
import { Plugin } from 'ckeditor5
|
|
9
|
-
import { Widget } from 'ckeditor5
|
|
12
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
13
|
+
import { Widget } from '@ckeditor/ckeditor5-widget';
|
|
10
14
|
import { BookmarkUI } from './bookmarkui.js';
|
|
11
15
|
import { BookmarkEditing } from './bookmarkediting.js';
|
|
12
16
|
/**
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
1
5
|
/**
|
|
2
6
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
7
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
1
5
|
/**
|
|
2
6
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
7
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
@@ -5,8 +9,8 @@
|
|
|
5
9
|
/**
|
|
6
10
|
* @module bookmark/bookmarkediting
|
|
7
11
|
*/
|
|
8
|
-
import { type Editor, Plugin } from 'ckeditor5
|
|
9
|
-
import type { ModelElement } from 'ckeditor5
|
|
12
|
+
import { type Editor, Plugin } from '@ckeditor/ckeditor5-core';
|
|
13
|
+
import type { ModelElement } from '@ckeditor/ckeditor5-engine';
|
|
10
14
|
import '../theme/bookmark.css';
|
|
11
15
|
/**
|
|
12
16
|
* The bookmark editing plugin.
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
1
5
|
/**
|
|
2
6
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
7
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
8
|
*/
|
|
5
|
-
import { Plugin } from 'ckeditor5
|
|
6
|
-
import { ContextualBalloon, type ViewWithCssTransitionDisabler } from 'ckeditor5
|
|
7
|
-
import { WidgetToolbarRepository } from 'ckeditor5
|
|
9
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
|
10
|
+
import { ContextualBalloon, type ViewWithCssTransitionDisabler } from '@ckeditor/ckeditor5-ui';
|
|
11
|
+
import { WidgetToolbarRepository } from '@ckeditor/ckeditor5-widget';
|
|
8
12
|
import { BookmarkFormView } from './ui/bookmarkformview.js';
|
|
9
13
|
import { BookmarkEditing } from './bookmarkediting.js';
|
|
10
14
|
import '../theme/bookmarktoolbar.css';
|
package/{src → dist}/index.d.ts
RENAMED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
|
+
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
|
4
|
+
*/
|
|
1
5
|
/**
|
|
2
6
|
* @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
7
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
|
package/dist/index.js
CHANGED
|
@@ -5,9 +5,8 @@
|
|
|
5
5
|
import { Command, Plugin } from '@ckeditor/ckeditor5-core/dist/index.js';
|
|
6
6
|
import { toWidget, WidgetToolbarRepository, isWidget, Widget } from '@ckeditor/ckeditor5-widget/dist/index.js';
|
|
7
7
|
import { View, ViewCollection, FormRowView, FocusCycler, submitHandler, ButtonView, FormHeaderView, LabeledFieldView, createLabeledInputText, IconView, ContextualBalloon, BalloonPanelView, CssTransitionDisablerMixin, MenuBarMenuListItemButtonView, LabelView, clickOutsideHandler } from '@ckeditor/ckeditor5-ui/dist/index.js';
|
|
8
|
-
import { IconBookmarkInline, IconPencil, IconRemove, IconBookmark, IconBookmarkMedium, IconBookmarkSmall } from '@ckeditor/ckeditor5-icons/dist/index.js';
|
|
8
|
+
import { IconPreviousArrow, IconBookmarkInline, IconPencil, IconRemove, IconBookmark, IconBookmarkMedium, IconBookmarkSmall } from '@ckeditor/ckeditor5-icons/dist/index.js';
|
|
9
9
|
import { FocusTracker, KeystrokeHandler, logWarning } from '@ckeditor/ckeditor5-utils/dist/index.js';
|
|
10
|
-
import { IconPreviousArrow } from '@ckeditor/ckeditor5-icons/dist/index.js';
|
|
11
10
|
|
|
12
11
|
/**
|
|
13
12
|
* The bookmark form view controller class.
|