@ckeditor/ckeditor5-editor-balloon 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-balloon",
3
- "version": "0.0.0-nightly-20231227.0",
3
+ "version": "0.0.0-nightly-20231228.0",
4
4
  "description": "Balloon 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 { EditorUIView, InlineEditableUIView } 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
  * Contextual editor UI view. Uses the {@link module:ui/editableui/inline/inlineeditableuiview~InlineEditableUIView}.
13
13
  */
@@ -24,7 +24,7 @@ export default class BalloonEditorUIView extends EditorUIView {
24
24
  * @param editableElement The editable element. If not specified, it will be automatically created by
25
25
  * {@link module:ui/editableui/editableuiview~EditableUIView}. Otherwise, the given element will be used.
26
26
  */
27
- constructor(locale: Locale, editingView: View, editableElement?: HTMLElement);
27
+ constructor(locale: Locale, editingView: EditingView, editableElement?: HTMLElement);
28
28
  /**
29
29
  * @inheritDoc
30
30
  */