@ckeditor/ckeditor5-editor-inline 0.0.0-nightly-20231227.0 → 0.0.0-nightly-20231228.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-editor-inline",
3
- "version": "0.0.0-nightly-20231227.0",
3
+ "version": "0.0.0-nightly-20231228.0",
4
4
  "description": "Inline 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-20231228.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 { BalloonPanelView, EditorUIView, InlineEditableUIView, ToolbarView } from 'ckeditor5/src/ui.js';
9
9
  import { type PositioningFunction, 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
  * Inline editor UI view. Uses an nline editable and a floating toolbar.
13
13
  */
@@ -110,7 +110,7 @@ export default class InlineEditorUIView extends EditorUIView {
110
110
  * in the main {@link module:editor-inline/inlineeditoruiview~InlineEditorUIView#toolbar toolbar}.
111
111
  * See {@link module:ui/toolbar/toolbarview~ToolbarOptions#shouldGroupWhenFull} to learn more.
112
112
  */
113
- constructor(locale: Locale, editingView: View, editableElement?: HTMLElement, options?: {
113
+ constructor(locale: Locale, editingView: EditingView, editableElement?: HTMLElement, options?: {
114
114
  shouldToolbarGroupWhenFull?: boolean;
115
115
  });
116
116
  /**