@ckeditor/ckeditor5-source-editing 0.0.0-nightly-20231215.0 → 0.0.0-nightly-20231216.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-source-editing",
3
- "version": "0.0.0-nightly-20231215.0",
3
+ "version": "0.0.0-nightly-20231216.0",
4
4
  "description": "Source editing feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -10,10 +10,11 @@
10
10
  "ckeditor5-plugin",
11
11
  "ckeditor5-dll"
12
12
  ],
13
+ "type": "module",
13
14
  "main": "src/index.js",
14
15
  "dependencies": {
15
- "@ckeditor/ckeditor5-theme-lark": "0.0.0-nightly-20231215.0",
16
- "ckeditor5": "0.0.0-nightly-20231215.0"
16
+ "@ckeditor/ckeditor5-theme-lark": "0.0.0-nightly-20231216.0",
17
+ "ckeditor5": "0.0.0-nightly-20231216.0"
17
18
  },
18
19
  "author": "CKSource (http://cksource.com/)",
19
20
  "license": "GPL-2.0-or-later",
@@ -2,7 +2,7 @@
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 type { SourceEditing } from './index';
5
+ import type { SourceEditing } from './index.js';
6
6
  declare module '@ckeditor/ckeditor5-core' {
7
7
  interface PluginsMap {
8
8
  [SourceEditing.pluginName]: SourceEditing;
package/src/index.d.ts CHANGED
@@ -5,5 +5,5 @@
5
5
  /**
6
6
  * @module source-editing
7
7
  */
8
- export { default as SourceEditing } from './sourceediting';
9
- import './augmentation';
8
+ export { default as SourceEditing } from './sourceediting.js';
9
+ import './augmentation.js';
package/src/index.js CHANGED
@@ -5,5 +5,5 @@
5
5
  /**
6
6
  * @module source-editing
7
7
  */
8
- export { default as SourceEditing } from './sourceediting';
9
- import './augmentation';
8
+ export { default as SourceEditing } from './sourceediting.js';
9
+ import './augmentation.js';
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module source-editing/sourceediting
7
7
  */
8
- import { type Editor, Plugin, PendingActions } from 'ckeditor5/src/core';
8
+ import { type Editor, Plugin, PendingActions } from 'ckeditor5/src/core.js';
9
9
  import '../theme/sourceediting.css';
10
10
  /**
11
11
  * The source editing feature.
@@ -6,10 +6,10 @@
6
6
  * @module source-editing/sourceediting
7
7
  */
8
8
  /* global console */
9
- import { Plugin, PendingActions } from 'ckeditor5/src/core';
10
- import { ButtonView } from 'ckeditor5/src/ui';
11
- import { createElement, ElementReplacer } from 'ckeditor5/src/utils';
12
- import { formatHtml } from './utils/formathtml';
9
+ import { Plugin, PendingActions } from 'ckeditor5/src/core.js';
10
+ import { ButtonView } from 'ckeditor5/src/ui.js';
11
+ import { createElement, ElementReplacer } from 'ckeditor5/src/utils.js';
12
+ import { formatHtml } from './utils/formathtml.js';
13
13
  import '../theme/sourceediting.css';
14
14
  import sourceEditingIcon from '../theme/icons/source-editing.svg';
15
15
  const COMMAND_FORCE_DISABLE_ID = 'SourceEditingMode';