@ckeditor/ckeditor5-editor-inline 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-editor-inline",
3
- "version": "38.2.0-alpha.0",
3
+ "version": "38.2.0-alpha.1",
4
4
  "description": "Inline 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.0",
15
+ "ckeditor5": "38.2.0-alpha.1",
16
16
  "lodash-es": "^4.17.15"
17
17
  },
18
18
  "engines": {
package/src/index.d.ts CHANGED
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * @module editor-inline
7
7
  */
8
- export { default as InlineEditor } from './inlineeditor';
8
+ export { default as InlineEditor } from './inlineeditor.js';
package/src/index.js CHANGED
@@ -5,4 +5,4 @@
5
5
  /**
6
6
  * @module editor-inline
7
7
  */
8
- export { default as InlineEditor } from './inlineeditor';
8
+ export { default as InlineEditor } from './inlineeditor.js';
@@ -5,10 +5,10 @@
5
5
  /**
6
6
  * @module editor-inline/inlineeditor
7
7
  */
8
- import { Editor, Context, type EditorConfig } from 'ckeditor5/src/core';
9
- import { ContextWatchdog, EditorWatchdog } from 'ckeditor5/src/watchdog';
10
- import InlineEditorUI from './inlineeditorui';
11
- declare const InlineEditor_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 InlineEditorUI from './inlineeditorui.js';
11
+ declare const InlineEditor_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#inline-editor inline editor} implementation.
14
14
  * It uses an inline editable and a floating toolbar.
@@ -5,11 +5,11 @@
5
5
  /**
6
6
  * @module editor-inline/inlineeditor
7
7
  */
8
- import { Editor, Context, DataApiMixin, ElementApiMixin, attachToForm, secureSourceElement } from 'ckeditor5/src/core';
9
- import { getDataFromElement, CKEditorError } from 'ckeditor5/src/utils';
10
- import { ContextWatchdog, EditorWatchdog } from 'ckeditor5/src/watchdog';
11
- import InlineEditorUI from './inlineeditorui';
12
- import InlineEditorUIView from './inlineeditoruiview';
8
+ import { Editor, Context, DataApiMixin, ElementApiMixin, attachToForm, secureSourceElement } from 'ckeditor5/src/core.js';
9
+ import { getDataFromElement, CKEditorError } from 'ckeditor5/src/utils.js';
10
+ import { ContextWatchdog, EditorWatchdog } from 'ckeditor5/src/watchdog.js';
11
+ import InlineEditorUI from './inlineeditorui.js';
12
+ import InlineEditorUIView from './inlineeditoruiview.js';
13
13
  import { isElement as _isElement } from 'lodash-es';
14
14
  /**
15
15
  * The {@glink installation/getting-started/predefined-builds#inline-editor inline editor} implementation.
@@ -5,9 +5,9 @@
5
5
  /**
6
6
  * @module editor-inline/inlineeditorui
7
7
  */
8
- import { type Editor } from 'ckeditor5/src/core';
9
- import { EditorUI } from 'ckeditor5/src/ui';
10
- import type InlineEditorUIView from './inlineeditoruiview';
8
+ import { type Editor } from 'ckeditor5/src/core.js';
9
+ import { EditorUI } from 'ckeditor5/src/ui.js';
10
+ import type InlineEditorUIView from './inlineeditoruiview.js';
11
11
  /**
12
12
  * The inline editor UI class.
13
13
  *
@@ -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, normalizeToolbarConfig } from 'ckeditor5/src/ui';
6
- import { enablePlaceholder } from 'ckeditor5/src/engine';
5
+ import { EditorUI, normalizeToolbarConfig } from 'ckeditor5/src/ui.js';
6
+ import { enablePlaceholder } from 'ckeditor5/src/engine.js';
7
7
  /**
8
8
  * The inline editor UI class.
9
9
  *
@@ -5,9 +5,9 @@
5
5
  /**
6
6
  * @module editor-inline/inlineeditoruiview
7
7
  */
8
- import { BalloonPanelView, EditorUIView, InlineEditableUIView, ToolbarView } from 'ckeditor5/src/ui';
9
- import { type PositioningFunction, type Locale } from 'ckeditor5/src/utils';
10
- import type { View } from 'ckeditor5/src/engine';
8
+ import { BalloonPanelView, EditorUIView, InlineEditableUIView, ToolbarView } from 'ckeditor5/src/ui.js';
9
+ import { type PositioningFunction, type Locale } from 'ckeditor5/src/utils.js';
10
+ import type { View } from 'ckeditor5/src/engine.js';
11
11
  /**
12
12
  * Inline editor UI view. Uses an nline editable and a floating toolbar.
13
13
  */
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * @module editor-inline/inlineeditoruiview
7
7
  */
8
- import { BalloonPanelView, EditorUIView, InlineEditableUIView, ToolbarView } from 'ckeditor5/src/ui';
9
- import { Rect, ResizeObserver, toUnit } from 'ckeditor5/src/utils';
8
+ import { BalloonPanelView, EditorUIView, InlineEditableUIView, ToolbarView } from 'ckeditor5/src/ui.js';
9
+ import { Rect, ResizeObserver, toUnit } from 'ckeditor5/src/utils.js';
10
10
  const toPx = toUnit('px');
11
11
  /**
12
12
  * Inline editor UI view. Uses an nline editable and a floating toolbar.