@ckeditor/ckeditor5-editor-multi-root 0.0.0-nightly-20250605.0 → 0.0.0-nightly-20250606.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/dist/index.js.map +1 -1
- package/package.json +6 -6
- package/src/index.d.ts +1 -1
- package/src/index.js +1 -1
- package/src/multirooteditor.d.ts +2 -2
- package/src/multirooteditor.js +3 -3
- package/src/multirooteditorui.d.ts +2 -2
- package/src/multirooteditorui.js +1 -1
- package/src/multirooteditoruiview.d.ts +1 -1
- package/src/multirooteditoruiview.js +1 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-editor-multi-root",
|
3
|
-
"version": "0.0.0-nightly-
|
3
|
+
"version": "0.0.0-nightly-20250606.0",
|
4
4
|
"description": "Multi-root editor implementation for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -12,11 +12,11 @@
|
|
12
12
|
"type": "module",
|
13
13
|
"main": "src/index.js",
|
14
14
|
"dependencies": {
|
15
|
-
"@ckeditor/ckeditor5-core": "0.0.0-nightly-
|
16
|
-
"@ckeditor/ckeditor5-engine": "0.0.0-nightly-
|
17
|
-
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-
|
18
|
-
"@ckeditor/ckeditor5-utils": "0.0.0-nightly-
|
19
|
-
"ckeditor5": "0.0.0-nightly-
|
15
|
+
"@ckeditor/ckeditor5-core": "0.0.0-nightly-20250606.0",
|
16
|
+
"@ckeditor/ckeditor5-engine": "0.0.0-nightly-20250606.0",
|
17
|
+
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-20250606.0",
|
18
|
+
"@ckeditor/ckeditor5-utils": "0.0.0-nightly-20250606.0",
|
19
|
+
"ckeditor5": "0.0.0-nightly-20250606.0",
|
20
20
|
"es-toolkit": "1.38.0"
|
21
21
|
},
|
22
22
|
"author": "CKSource (http://cksource.com/)",
|
package/src/index.d.ts
CHANGED
@@ -5,6 +5,6 @@
|
|
5
5
|
/**
|
6
6
|
* @module editor-multi-root
|
7
7
|
*/
|
8
|
-
export {
|
8
|
+
export { MultiRootEditor } from './multirooteditor.js';
|
9
9
|
export type { RootAttributes, AddRootEvent, DetachRootEvent } from './multirooteditor.js';
|
10
10
|
import './augmentation.js';
|
package/src/index.js
CHANGED
package/src/multirooteditor.d.ts
CHANGED
@@ -7,7 +7,7 @@
|
|
7
7
|
*/
|
8
8
|
import { Editor, type EditorConfig } from 'ckeditor5/src/core.js';
|
9
9
|
import { type DecoratedMethodEvent } from 'ckeditor5/src/utils.js';
|
10
|
-
import MultiRootEditorUI from './multirooteditorui.js';
|
10
|
+
import { MultiRootEditorUI } from './multirooteditorui.js';
|
11
11
|
import { type RootElement } from 'ckeditor5/src/engine.js';
|
12
12
|
/**
|
13
13
|
* The multi-root editor implementation.
|
@@ -23,7 +23,7 @@ import { type RootElement } from 'ckeditor5/src/engine.js';
|
|
23
23
|
*
|
24
24
|
* Note that you will need to attach the editor toolbar to your web page manually, in a desired place, after the editor is initialized.
|
25
25
|
*/
|
26
|
-
export
|
26
|
+
export declare class MultiRootEditor extends Editor {
|
27
27
|
/**
|
28
28
|
* @inheritDoc
|
29
29
|
*/
|
package/src/multirooteditor.js
CHANGED
@@ -7,8 +7,8 @@
|
|
7
7
|
*/
|
8
8
|
import { Editor, secureSourceElement } from 'ckeditor5/src/core.js';
|
9
9
|
import { CKEditorError, getDataFromElement, setDataInElement, logWarning } from 'ckeditor5/src/utils.js';
|
10
|
-
import MultiRootEditorUI from './multirooteditorui.js';
|
11
|
-
import MultiRootEditorUIView from './multirooteditoruiview.js';
|
10
|
+
import { MultiRootEditorUI } from './multirooteditorui.js';
|
11
|
+
import { MultiRootEditorUIView } from './multirooteditoruiview.js';
|
12
12
|
import { isElement as _isElement } from 'es-toolkit/compat';
|
13
13
|
/**
|
14
14
|
* The multi-root editor implementation.
|
@@ -24,7 +24,7 @@ import { isElement as _isElement } from 'es-toolkit/compat';
|
|
24
24
|
*
|
25
25
|
* Note that you will need to attach the editor toolbar to your web page manually, in a desired place, after the editor is initialized.
|
26
26
|
*/
|
27
|
-
export
|
27
|
+
export class MultiRootEditor extends Editor {
|
28
28
|
/**
|
29
29
|
* @inheritDoc
|
30
30
|
*/
|
@@ -7,11 +7,11 @@
|
|
7
7
|
*/
|
8
8
|
import { type Editor } from 'ckeditor5/src/core.js';
|
9
9
|
import { EditorUI, type InlineEditableUIView } from 'ckeditor5/src/ui.js';
|
10
|
-
import type MultiRootEditorUIView from './multirooteditoruiview.js';
|
10
|
+
import { type MultiRootEditorUIView } from './multirooteditoruiview.js';
|
11
11
|
/**
|
12
12
|
* The multi-root editor UI class.
|
13
13
|
*/
|
14
|
-
export
|
14
|
+
export declare class MultiRootEditorUI extends EditorUI {
|
15
15
|
/**
|
16
16
|
* The main (top–most) view of the editor UI.
|
17
17
|
*/
|
package/src/multirooteditorui.js
CHANGED
@@ -7,7 +7,7 @@ import { enablePlaceholder } from 'ckeditor5/src/engine.js';
|
|
7
7
|
/**
|
8
8
|
* The multi-root editor UI class.
|
9
9
|
*/
|
10
|
-
export
|
10
|
+
export class MultiRootEditorUI extends EditorUI {
|
11
11
|
/**
|
12
12
|
* The main (top–most) view of the editor UI.
|
13
13
|
*/
|
@@ -17,7 +17,7 @@ import type { EditingView } from 'ckeditor5/src/engine.js';
|
|
17
17
|
* See {@link module:editor-multi-root/multirooteditor~MultiRootEditor.create `MultiRootEditor.create()`}
|
18
18
|
* to learn more about this view.
|
19
19
|
*/
|
20
|
-
export
|
20
|
+
export declare class MultiRootEditorUIView extends EditorUIView {
|
21
21
|
/**
|
22
22
|
* The main toolbar of the multi-root editor UI.
|
23
23
|
*/
|
@@ -15,7 +15,7 @@ import { EditorUIView, InlineEditableUIView, MenuBarView, ToolbarView } from 'ck
|
|
15
15
|
* See {@link module:editor-multi-root/multirooteditor~MultiRootEditor.create `MultiRootEditor.create()`}
|
16
16
|
* to learn more about this view.
|
17
17
|
*/
|
18
|
-
export
|
18
|
+
export class MultiRootEditorUIView extends EditorUIView {
|
19
19
|
/**
|
20
20
|
* The main toolbar of the multi-root editor UI.
|
21
21
|
*/
|