@ckeditor/ckeditor5-remove-format 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-remove-format",
3
- "version": "38.2.0-alpha.0",
3
+ "version": "38.2.0-alpha.1",
4
4
  "description": "Remove format feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,7 +13,7 @@
13
13
  "main": "src/index.js",
14
14
  "type": "module",
15
15
  "dependencies": {
16
- "ckeditor5": "38.2.0-alpha.0"
16
+ "ckeditor5": "38.2.0-alpha.1"
17
17
  },
18
18
  "engines": {
19
19
  "node": ">=16.0.0",
@@ -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 { RemoveFormat, RemoveFormatEditing, RemoveFormatUI, RemoveFormatCommand } from './index';
5
+ import type { RemoveFormat, RemoveFormatEditing, RemoveFormatUI, RemoveFormatCommand } from './index.js';
6
6
  declare module '@ckeditor/ckeditor5-core' {
7
7
  interface PluginsMap {
8
8
  [RemoveFormat.pluginName]: RemoveFormat;
package/src/index.d.ts CHANGED
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * @module remove-format
7
7
  */
8
- export { default as RemoveFormat } from './removeformat';
9
- export { default as RemoveFormatEditing } from './removeformatediting';
10
- export { default as RemoveFormatUI } from './removeformatui';
11
- export type { default as RemoveFormatCommand } from './removeformatcommand';
12
- import './augmentation';
8
+ export { default as RemoveFormat } from './removeformat.js';
9
+ export { default as RemoveFormatEditing } from './removeformatediting.js';
10
+ export { default as RemoveFormatUI } from './removeformatui.js';
11
+ export type { default as RemoveFormatCommand } from './removeformatcommand.js';
12
+ import './augmentation.js';
package/src/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module remove-format
7
7
  */
8
- export { default as RemoveFormat } from './removeformat';
9
- export { default as RemoveFormatEditing } from './removeformatediting';
10
- export { default as RemoveFormatUI } from './removeformatui';
11
- import './augmentation';
8
+ export { default as RemoveFormat } from './removeformat.js';
9
+ export { default as RemoveFormatEditing } from './removeformatediting.js';
10
+ export { default as RemoveFormatUI } from './removeformatui.js';
11
+ import './augmentation.js';
@@ -5,9 +5,9 @@
5
5
  /**
6
6
  * @module remove-format/removeformat
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core';
9
- import RemoveFormatUI from './removeformatui';
10
- import RemoveFormatEditing from './removeformatediting';
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import RemoveFormatUI from './removeformatui.js';
10
+ import RemoveFormatEditing from './removeformatediting.js';
11
11
  /**
12
12
  * The remove format plugin.
13
13
  *
@@ -5,9 +5,9 @@
5
5
  /**
6
6
  * @module remove-format/removeformat
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core';
9
- import RemoveFormatUI from './removeformatui';
10
- import RemoveFormatEditing from './removeformatediting';
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import RemoveFormatUI from './removeformatui.js';
10
+ import RemoveFormatEditing from './removeformatediting.js';
11
11
  /**
12
12
  * The remove format plugin.
13
13
  *
@@ -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 { Command } from 'ckeditor5/src/core';
5
+ import { Command } from 'ckeditor5/src/core.js';
6
6
  /**
7
7
  * The remove format command.
8
8
  *
@@ -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 { Command } from 'ckeditor5/src/core';
6
- import { first } from 'ckeditor5/src/utils';
5
+ import { Command } from 'ckeditor5/src/core.js';
6
+ import { first } from 'ckeditor5/src/utils.js';
7
7
  /**
8
8
  * The remove format command.
9
9
  *
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module remove-format/removeformatediting
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core';
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
9
  /**
10
10
  * The remove format editing plugin.
11
11
  *
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * @module remove-format/removeformatediting
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core';
9
- import RemoveFormatCommand from './removeformatcommand';
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import RemoveFormatCommand from './removeformatcommand.js';
10
10
  /**
11
11
  * The remove format editing plugin.
12
12
  *
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module remove-format/removeformatui
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core';
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
9
  /**
10
10
  * The remove format UI plugin. It registers the `'removeFormat'` button which can be
11
11
  * used in the toolbar.
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * @module remove-format/removeformatui
7
7
  */
8
- import { Plugin } from 'ckeditor5/src/core';
9
- import { ButtonView } from 'ckeditor5/src/ui';
8
+ import { Plugin } from 'ckeditor5/src/core.js';
9
+ import { ButtonView } from 'ckeditor5/src/ui.js';
10
10
  import removeFormatIcon from '../theme/icons/remove-format.svg';
11
11
  const REMOVE_FORMAT = 'removeFormat';
12
12
  /**