@ckeditor/ckeditor5-editor-balloon 38.2.0-alpha.0 → 38.2.0-alpha.1
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +2 -2
- package/src/ballooneditor.d.ts +4 -4
- package/src/ballooneditor.js +6 -6
- package/src/ballooneditorui.d.ts +3 -3
- package/src/ballooneditorui.js +2 -2
- package/src/ballooneditoruiview.d.ts +3 -3
- package/src/ballooneditoruiview.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-balloon",
|
3
|
-
"version": "38.2.0-alpha.
|
3
|
+
"version": "38.2.0-alpha.1",
|
4
4
|
"description": "Balloon 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/ballooneditor.d.ts
CHANGED
@@ -5,10 +5,10 @@
|
|
5
5
|
/**
|
6
6
|
* @module editor-balloon/ballooneditor
|
7
7
|
*/
|
8
|
-
import { Editor, Context, type EditorConfig } from 'ckeditor5/src/core';
|
9
|
-
import { ContextWatchdog, EditorWatchdog } from 'ckeditor5/src/watchdog';
|
10
|
-
import BalloonEditorUI from './ballooneditorui';
|
11
|
-
declare const BalloonEditor_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 BalloonEditorUI from './ballooneditorui.js';
|
11
|
+
declare const BalloonEditor_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#balloon-editor balloon editor}
|
14
14
|
* implementation (Medium-like editor).
|
package/src/ballooneditor.js
CHANGED
@@ -5,12 +5,12 @@
|
|
5
5
|
/**
|
6
6
|
* @module editor-balloon/ballooneditor
|
7
7
|
*/
|
8
|
-
import { Editor, Context, DataApiMixin, ElementApiMixin, attachToForm, secureSourceElement } from 'ckeditor5/src/core';
|
9
|
-
import { BalloonToolbar } from 'ckeditor5/src/ui';
|
10
|
-
import { CKEditorError, getDataFromElement } from 'ckeditor5/src/utils';
|
11
|
-
import { ContextWatchdog, EditorWatchdog } from 'ckeditor5/src/watchdog';
|
12
|
-
import BalloonEditorUI from './ballooneditorui';
|
13
|
-
import BalloonEditorUIView from './ballooneditoruiview';
|
8
|
+
import { Editor, Context, DataApiMixin, ElementApiMixin, attachToForm, secureSourceElement } from 'ckeditor5/src/core.js';
|
9
|
+
import { BalloonToolbar } from 'ckeditor5/src/ui.js';
|
10
|
+
import { CKEditorError, getDataFromElement } from 'ckeditor5/src/utils.js';
|
11
|
+
import { ContextWatchdog, EditorWatchdog } from 'ckeditor5/src/watchdog.js';
|
12
|
+
import BalloonEditorUI from './ballooneditorui.js';
|
13
|
+
import BalloonEditorUIView from './ballooneditoruiview.js';
|
14
14
|
import { isElement as _isElement } from 'lodash-es';
|
15
15
|
/**
|
16
16
|
* The {@glink installation/getting-started/predefined-builds#balloon-editor balloon editor}
|
package/src/ballooneditorui.d.ts
CHANGED
@@ -5,9 +5,9 @@
|
|
5
5
|
/**
|
6
6
|
* @module editor-balloon/ballooneditorui
|
7
7
|
*/
|
8
|
-
import { type Editor } from 'ckeditor5/src/core';
|
9
|
-
import { EditorUI } from 'ckeditor5/src/ui';
|
10
|
-
import type BalloonEditorUIView from './ballooneditoruiview';
|
8
|
+
import { type Editor } from 'ckeditor5/src/core.js';
|
9
|
+
import { EditorUI } from 'ckeditor5/src/ui.js';
|
10
|
+
import type BalloonEditorUIView from './ballooneditoruiview.js';
|
11
11
|
/**
|
12
12
|
* The balloon editor UI class.
|
13
13
|
*/
|
package/src/ballooneditorui.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 balloon editor UI class.
|
9
9
|
*/
|
@@ -5,9 +5,9 @@
|
|
5
5
|
/**
|
6
6
|
* @module editor-balloon/ballooneditoruiview
|
7
7
|
*/
|
8
|
-
import { EditorUIView, InlineEditableUIView } from 'ckeditor5/src/ui';
|
9
|
-
import type { Locale } from 'ckeditor5/src/utils';
|
10
|
-
import type { View } from 'ckeditor5/src/engine';
|
8
|
+
import { EditorUIView, InlineEditableUIView } 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
|
* Contextual editor UI view. Uses the {@link module:ui/editableui/inline/inlineeditableuiview~InlineEditableUIView}.
|
13
13
|
*/
|
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* @module editor-balloon/ballooneditoruiview
|
7
7
|
*/
|
8
|
-
import { EditorUIView, InlineEditableUIView } from 'ckeditor5/src/ui';
|
8
|
+
import { EditorUIView, InlineEditableUIView } from 'ckeditor5/src/ui.js';
|
9
9
|
/**
|
10
10
|
* Contextual editor UI view. Uses the {@link module:ui/editableui/inline/inlineeditableuiview~InlineEditableUIView}.
|
11
11
|
*/
|
package/src/index.d.ts
CHANGED
package/src/index.js
CHANGED