@ckeditor/ckeditor5-editor-classic 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/classiceditor.d.ts +4 -4
- package/src/classiceditor.js +5 -5
- package/src/classiceditorui.d.ts +3 -3
- package/src/classiceditorui.js +3 -3
- package/src/classiceditoruiview.d.ts +3 -3
- package/src/classiceditoruiview.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-classic",
|
3
|
-
"version": "38.2.0-alpha.
|
3
|
+
"version": "38.2.0-alpha.1",
|
4
4
|
"description": "Classic 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/classiceditor.d.ts
CHANGED
@@ -5,10 +5,10 @@
|
|
5
5
|
/**
|
6
6
|
* @module editor-classic/classiceditor
|
7
7
|
*/
|
8
|
-
import ClassicEditorUI from './classiceditorui';
|
9
|
-
import { Editor, Context, type EditorConfig } from 'ckeditor5/src/core';
|
10
|
-
import { ContextWatchdog, EditorWatchdog } from 'ckeditor5/src/watchdog';
|
11
|
-
declare const ClassicEditor_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 ClassicEditorUI from './classiceditorui.js';
|
9
|
+
import { Editor, Context, type EditorConfig } from 'ckeditor5/src/core.js';
|
10
|
+
import { ContextWatchdog, EditorWatchdog } from 'ckeditor5/src/watchdog.js';
|
11
|
+
declare const ClassicEditor_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#classic-editor classic editor} implementation.
|
14
14
|
* It uses an inline editable and a sticky toolbar, all enclosed in a boxed UI.
|
package/src/classiceditor.js
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
/**
|
6
6
|
* @module editor-classic/classiceditor
|
7
7
|
*/
|
8
|
-
import ClassicEditorUI from './classiceditorui';
|
9
|
-
import ClassicEditorUIView from './classiceditoruiview';
|
10
|
-
import { Editor, Context, DataApiMixin, ElementApiMixin, attachToForm } from 'ckeditor5/src/core';
|
11
|
-
import { getDataFromElement, CKEditorError } from 'ckeditor5/src/utils';
|
12
|
-
import { ContextWatchdog, EditorWatchdog } from 'ckeditor5/src/watchdog';
|
8
|
+
import ClassicEditorUI from './classiceditorui.js';
|
9
|
+
import ClassicEditorUIView from './classiceditoruiview.js';
|
10
|
+
import { Editor, Context, DataApiMixin, ElementApiMixin, attachToForm } from 'ckeditor5/src/core.js';
|
11
|
+
import { getDataFromElement, CKEditorError } from 'ckeditor5/src/utils.js';
|
12
|
+
import { ContextWatchdog, EditorWatchdog } from 'ckeditor5/src/watchdog.js';
|
13
13
|
import { isElement as _isElement } from 'lodash-es';
|
14
14
|
/**
|
15
15
|
* The {@glink installation/getting-started/predefined-builds#classic-editor classic editor} implementation.
|
package/src/classiceditorui.d.ts
CHANGED
@@ -5,9 +5,9 @@
|
|
5
5
|
/**
|
6
6
|
* @module editor-classic/classiceditorui
|
7
7
|
*/
|
8
|
-
import type { Editor } from 'ckeditor5/src/core';
|
9
|
-
import { EditorUI } from 'ckeditor5/src/ui';
|
10
|
-
import type ClassicEditorUIView from './classiceditoruiview';
|
8
|
+
import type { Editor } from 'ckeditor5/src/core.js';
|
9
|
+
import { EditorUI } from 'ckeditor5/src/ui.js';
|
10
|
+
import type ClassicEditorUIView from './classiceditoruiview.js';
|
11
11
|
/**
|
12
12
|
* The classic editor UI class.
|
13
13
|
*/
|
package/src/classiceditorui.js
CHANGED
@@ -2,9 +2,9 @@
|
|
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, normalizeToolbarConfig } from 'ckeditor5/src/ui';
|
6
|
-
import { enablePlaceholder } from 'ckeditor5/src/engine';
|
7
|
-
import { ElementReplacer, Rect } from 'ckeditor5/src/utils';
|
5
|
+
import { EditorUI, normalizeToolbarConfig } from 'ckeditor5/src/ui.js';
|
6
|
+
import { enablePlaceholder } from 'ckeditor5/src/engine.js';
|
7
|
+
import { ElementReplacer, Rect } from 'ckeditor5/src/utils.js';
|
8
8
|
/**
|
9
9
|
* The classic editor UI class.
|
10
10
|
*/
|
@@ -5,9 +5,9 @@
|
|
5
5
|
/**
|
6
6
|
* @module editor-classic/classiceditoruiview
|
7
7
|
*/
|
8
|
-
import { BoxedEditorUIView, InlineEditableUIView, StickyPanelView, ToolbarView } from 'ckeditor5/src/ui';
|
9
|
-
import type { Locale } from 'ckeditor5/src/utils';
|
10
|
-
import type { View } from 'ckeditor5/src/engine';
|
8
|
+
import { BoxedEditorUIView, InlineEditableUIView, StickyPanelView, 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
|
import '../theme/classiceditor.css';
|
12
12
|
/**
|
13
13
|
* Classic editor UI view. Uses an inline editable and a sticky toolbar, all
|
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* @module editor-classic/classiceditoruiview
|
7
7
|
*/
|
8
|
-
import { BoxedEditorUIView, InlineEditableUIView, StickyPanelView, ToolbarView } from 'ckeditor5/src/ui';
|
8
|
+
import { BoxedEditorUIView, InlineEditableUIView, StickyPanelView, ToolbarView } from 'ckeditor5/src/ui.js';
|
9
9
|
import '../theme/classiceditor.css';
|
10
10
|
/**
|
11
11
|
* Classic editor UI view. Uses an inline editable and a sticky toolbar, all
|
package/src/index.d.ts
CHANGED
package/src/index.js
CHANGED