@ckeditor/ckeditor5-editor-multi-root 0.0.0-nightly-20231227.0 → 0.0.0-nightly-20231229.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-editor-multi-root",
3
- "version": "0.0.0-nightly-20231227.0",
3
+ "version": "0.0.0-nightly-20231229.0",
4
4
  "description": "Multi-root editor implementation for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,7 +12,7 @@
12
12
  "type": "module",
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "ckeditor5": "0.0.0-nightly-20231227.0",
15
+ "ckeditor5": "0.0.0-nightly-20231229.0",
16
16
  "lodash-es": "4.17.21"
17
17
  },
18
18
  "author": "CKSource (http://cksource.com/)",
@@ -7,7 +7,7 @@
7
7
  */
8
8
  import { EditorUIView, InlineEditableUIView, ToolbarView } from 'ckeditor5/src/ui.js';
9
9
  import type { Locale } from 'ckeditor5/src/utils.js';
10
- import type { View } from 'ckeditor5/src/engine.js';
10
+ import type { EditingView } from 'ckeditor5/src/engine.js';
11
11
  /**
12
12
  * The multi-root editor UI view. It is a virtual view providing an inline
13
13
  * {@link module:editor-multi-root/multirooteditoruiview~MultiRootEditorUIView#editable} and a
@@ -46,7 +46,7 @@ export default class MultiRootEditorUIView extends EditorUIView {
46
46
  * in the main {@link module:editor-multi-root/multirooteditoruiview~MultiRootEditorUIView#toolbar toolbar}.
47
47
  * See {@link module:ui/toolbar/toolbarview~ToolbarOptions#shouldGroupWhenFull} to learn more.
48
48
  */
49
- constructor(locale: Locale, editingView: View, editableNames: Array<string>, options?: {
49
+ constructor(locale: Locale, editingView: EditingView, editableNames: Array<string>, options?: {
50
50
  editableElements?: Record<string, HTMLElement>;
51
51
  shouldToolbarGroupWhenFull?: boolean;
52
52
  });