@ckeditor/ckeditor5-select-all 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-select-all",
3
- "version": "38.2.0-alpha.0",
3
+ "version": "38.2.0-alpha.1",
4
4
  "description": "Select all feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,9 +13,9 @@
13
13
  "main": "src/index.js",
14
14
  "type": "module",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-core": "38.2.0-alpha.0",
17
- "@ckeditor/ckeditor5-utils": "38.2.0-alpha.0",
18
- "@ckeditor/ckeditor5-ui": "38.2.0-alpha.0"
16
+ "@ckeditor/ckeditor5-core": "38.2.0-alpha.1",
17
+ "@ckeditor/ckeditor5-utils": "38.2.0-alpha.1",
18
+ "@ckeditor/ckeditor5-ui": "38.2.0-alpha.1"
19
19
  },
20
20
  "engines": {
21
21
  "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 { SelectAll, SelectAllEditing, SelectAllUI, SelectAllCommand } from './index';
5
+ import type { SelectAll, SelectAllEditing, SelectAllUI, SelectAllCommand } from './index.js';
6
6
  declare module '@ckeditor/ckeditor5-core' {
7
7
  interface PluginsMap {
8
8
  [SelectAll.pluginName]: SelectAll;
package/src/index.d.ts CHANGED
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * @module select-all
7
7
  */
8
- export { default as SelectAll } from './selectall';
9
- export { default as SelectAllEditing } from './selectallediting';
10
- export { default as SelectAllUI } from './selectallui';
11
- export type { default as SelectAllCommand } from './selectallcommand';
12
- import './augmentation';
8
+ export { default as SelectAll } from './selectall.js';
9
+ export { default as SelectAllEditing } from './selectallediting.js';
10
+ export { default as SelectAllUI } from './selectallui.js';
11
+ export type { default as SelectAllCommand } from './selectallcommand.js';
12
+ import './augmentation.js';
package/src/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module select-all
7
7
  */
8
- export { default as SelectAll } from './selectall';
9
- export { default as SelectAllEditing } from './selectallediting';
10
- export { default as SelectAllUI } from './selectallui';
11
- import './augmentation';
8
+ export { default as SelectAll } from './selectall.js';
9
+ export { default as SelectAllEditing } from './selectallediting.js';
10
+ export { default as SelectAllUI } from './selectallui.js';
11
+ import './augmentation.js';
@@ -6,8 +6,8 @@
6
6
  * @module select-all/selectall
7
7
  */
8
8
  import { Plugin } from '@ckeditor/ckeditor5-core';
9
- import SelectAllEditing from './selectallediting';
10
- import SelectAllUI from './selectallui';
9
+ import SelectAllEditing from './selectallediting.js';
10
+ import SelectAllUI from './selectallui.js';
11
11
  /**
12
12
  * The select all feature.
13
13
  *
package/src/selectall.js CHANGED
@@ -6,8 +6,8 @@
6
6
  * @module select-all/selectall
7
7
  */
8
8
  import { Plugin } from '@ckeditor/ckeditor5-core';
9
- import SelectAllEditing from './selectallediting';
10
- import SelectAllUI from './selectallui';
9
+ import SelectAllEditing from './selectallediting.js';
10
+ import SelectAllUI from './selectallui.js';
11
11
  /**
12
12
  * The select all feature.
13
13
  *
@@ -7,7 +7,7 @@
7
7
  */
8
8
  import { Plugin } from '@ckeditor/ckeditor5-core';
9
9
  import { getCode, parseKeystroke } from '@ckeditor/ckeditor5-utils';
10
- import SelectAllCommand from './selectallcommand';
10
+ import SelectAllCommand from './selectallcommand.js';
11
11
  const SELECT_ALL_KEYSTROKE = parseKeystroke('Ctrl+A');
12
12
  /**
13
13
  * The select all editing feature.