@ckeditor/ckeditor5-editor-decoupled 38.2.0-alpha.0 → 38.2.0-alpha.1
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 +2 -2
- package/src/decouplededitor.d.ts +4 -4
- package/src/decouplededitor.js +5 -5
- package/src/decouplededitorui.d.ts +3 -3
- package/src/decouplededitorui.js +2 -2
- package/src/decouplededitoruiview.d.ts +3 -3
- package/src/decouplededitoruiview.js +1 -1
- package/src/index.d.ts +1 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-editor-decoupled",
|
|
3
|
-
"version": "38.2.0-alpha.
|
|
3
|
+
"version": "38.2.0-alpha.1",
|
|
4
4
|
"description": "Decoupled editor implementation for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"main": "src/index.js",
|
|
13
13
|
"type": "module",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"ckeditor5": "38.2.0-alpha.
|
|
15
|
+
"ckeditor5": "38.2.0-alpha.1",
|
|
16
16
|
"lodash-es": "^4.17.15"
|
|
17
17
|
},
|
|
18
18
|
"engines": {
|
package/src/decouplededitor.d.ts
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module editor-decoupled/decouplededitor
|
|
7
7
|
*/
|
|
8
|
-
import { Editor, Context, type EditorConfig } from 'ckeditor5/src/core';
|
|
9
|
-
import { ContextWatchdog, EditorWatchdog } from 'ckeditor5/src/watchdog';
|
|
10
|
-
import DecoupledEditorUI from './decouplededitorui';
|
|
11
|
-
declare const DecoupledEditor_base: import("ckeditor5/src/utils").Mixed<import("ckeditor5/src/utils").Mixed<typeof Editor, import("ckeditor5/src/core").ElementApi>, import("ckeditor5/src/core").DataApi>;
|
|
8
|
+
import { Editor, Context, type EditorConfig } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { ContextWatchdog, EditorWatchdog } from 'ckeditor5/src/watchdog.js';
|
|
10
|
+
import DecoupledEditorUI from './decouplededitorui.js';
|
|
11
|
+
declare const DecoupledEditor_base: import("ckeditor5/src/utils.js").Mixed<import("ckeditor5/src/utils.js").Mixed<typeof Editor, import("ckeditor5/src/core.js").ElementApi>, import("ckeditor5/src/core.js").DataApi>;
|
|
12
12
|
/**
|
|
13
13
|
* The {@glink installation/getting-started/predefined-builds#document-editor decoupled editor} implementation.
|
|
14
14
|
* It provides an inline editable and a toolbar. However, unlike other editors,
|
package/src/decouplededitor.js
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module editor-decoupled/decouplededitor
|
|
7
7
|
*/
|
|
8
|
-
import { Editor, Context, ElementApiMixin, DataApiMixin, secureSourceElement } from 'ckeditor5/src/core';
|
|
9
|
-
import { CKEditorError, getDataFromElement } from 'ckeditor5/src/utils';
|
|
10
|
-
import { ContextWatchdog, EditorWatchdog } from 'ckeditor5/src/watchdog';
|
|
11
|
-
import DecoupledEditorUI from './decouplededitorui';
|
|
12
|
-
import DecoupledEditorUIView from './decouplededitoruiview';
|
|
8
|
+
import { Editor, Context, ElementApiMixin, DataApiMixin, secureSourceElement } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { CKEditorError, getDataFromElement } from 'ckeditor5/src/utils.js';
|
|
10
|
+
import { ContextWatchdog, EditorWatchdog } from 'ckeditor5/src/watchdog.js';
|
|
11
|
+
import DecoupledEditorUI from './decouplededitorui.js';
|
|
12
|
+
import DecoupledEditorUIView from './decouplededitoruiview.js';
|
|
13
13
|
import { isElement as _isElement } from 'lodash-es';
|
|
14
14
|
/**
|
|
15
15
|
* The {@glink installation/getting-started/predefined-builds#document-editor decoupled editor} implementation.
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module editor-decoupled/decouplededitorui
|
|
7
7
|
*/
|
|
8
|
-
import { type Editor } from 'ckeditor5/src/core';
|
|
9
|
-
import { EditorUI } from 'ckeditor5/src/ui';
|
|
10
|
-
import type DecoupledEditorUIView from './decouplededitoruiview';
|
|
8
|
+
import { type Editor } from 'ckeditor5/src/core.js';
|
|
9
|
+
import { EditorUI } from 'ckeditor5/src/ui.js';
|
|
10
|
+
import type DecoupledEditorUIView from './decouplededitoruiview.js';
|
|
11
11
|
/**
|
|
12
12
|
* The decoupled editor UI class.
|
|
13
13
|
*/
|
package/src/decouplededitorui.js
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
|
4
4
|
*/
|
|
5
|
-
import { EditorUI } from 'ckeditor5/src/ui';
|
|
6
|
-
import { enablePlaceholder } from 'ckeditor5/src/engine';
|
|
5
|
+
import { EditorUI } from 'ckeditor5/src/ui.js';
|
|
6
|
+
import { enablePlaceholder } from 'ckeditor5/src/engine.js';
|
|
7
7
|
/**
|
|
8
8
|
* The decoupled editor UI class.
|
|
9
9
|
*/
|
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module editor-decoupled/decouplededitoruiview
|
|
7
7
|
*/
|
|
8
|
-
import { EditorUIView, InlineEditableUIView, ToolbarView } from 'ckeditor5/src/ui';
|
|
9
|
-
import type { Locale } from 'ckeditor5/src/utils';
|
|
10
|
-
import type { View } from 'ckeditor5/src/engine';
|
|
8
|
+
import { EditorUIView, InlineEditableUIView, ToolbarView } from 'ckeditor5/src/ui.js';
|
|
9
|
+
import type { Locale } from 'ckeditor5/src/utils.js';
|
|
10
|
+
import type { View } 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
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module editor-decoupled/decouplededitoruiview
|
|
7
7
|
*/
|
|
8
|
-
import { EditorUIView, InlineEditableUIView, ToolbarView } from 'ckeditor5/src/ui';
|
|
8
|
+
import { EditorUIView, InlineEditableUIView, ToolbarView } from 'ckeditor5/src/ui.js';
|
|
9
9
|
/**
|
|
10
10
|
* The decoupled editor UI view. It is a virtual view providing an inline
|
|
11
11
|
* {@link module:editor-decoupled/decouplededitoruiview~DecoupledEditorUIView#editable} and a
|
package/src/index.d.ts
CHANGED
package/src/index.js
CHANGED