@ckeditor/ckeditor5-editor-decoupled 0.0.0-nightly-20231227.0 → 0.0.0-nightly-20231228.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-decoupled",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20231228.0",
|
|
4
4
|
"description": "Decoupled 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-
|
|
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, ToolbarView } from 'ckeditor5/src/ui.js';
|
|
9
9
|
import type { Locale } from 'ckeditor5/src/utils.js';
|
|
10
|
-
import type {
|
|
10
|
+
import type { EditingView } from 'ckeditor5/src/engine.js';
|
|
11
11
|
/**
|
|
12
12
|
* The decoupled editor UI view. It is a virtual view providing an inline
|
|
13
13
|
* {@link module:editor-decoupled/decouplededitoruiview~DecoupledEditorUIView#editable} and a
|
|
@@ -38,7 +38,7 @@ export default class DecoupledEditorUIView extends EditorUIView {
|
|
|
38
38
|
* in the main {@link module:editor-decoupled/decouplededitoruiview~DecoupledEditorUIView#toolbar toolbar}.
|
|
39
39
|
* See {@link module:ui/toolbar/toolbarview~ToolbarOptions#shouldGroupWhenFull} to learn more.
|
|
40
40
|
*/
|
|
41
|
-
constructor(locale: Locale, editingView:
|
|
41
|
+
constructor(locale: Locale, editingView: EditingView, options?: {
|
|
42
42
|
editableElement?: HTMLElement;
|
|
43
43
|
shouldToolbarGroupWhenFull?: boolean;
|
|
44
44
|
});
|