@ckeditor/ckeditor5-select-all 35.3.1 → 35.4.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-select-all",
3
- "version": "35.3.1",
3
+ "version": "35.4.0",
4
4
  "description": "Select all feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,19 +12,19 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "@ckeditor/ckeditor5-core": "^35.3.1",
16
- "@ckeditor/ckeditor5-utils": "^35.3.1",
17
- "@ckeditor/ckeditor5-ui": "^35.3.1"
15
+ "@ckeditor/ckeditor5-core": "^35.4.0",
16
+ "@ckeditor/ckeditor5-utils": "^35.4.0",
17
+ "@ckeditor/ckeditor5-ui": "^35.4.0"
18
18
  },
19
19
  "devDependencies": {
20
- "@ckeditor/ckeditor5-basic-styles": "^35.3.1",
21
- "@ckeditor/ckeditor5-engine": "^35.3.1",
22
- "@ckeditor/ckeditor5-essentials": "^35.3.1",
23
- "@ckeditor/ckeditor5-heading": "^35.3.1",
24
- "@ckeditor/ckeditor5-image": "^35.3.1",
25
- "@ckeditor/ckeditor5-paragraph": "^35.3.1",
26
- "@ckeditor/ckeditor5-table": "^35.3.1",
27
- "@ckeditor/ckeditor5-editor-classic": "^35.3.1",
20
+ "@ckeditor/ckeditor5-basic-styles": "^35.4.0",
21
+ "@ckeditor/ckeditor5-engine": "^35.4.0",
22
+ "@ckeditor/ckeditor5-essentials": "^35.4.0",
23
+ "@ckeditor/ckeditor5-heading": "^35.4.0",
24
+ "@ckeditor/ckeditor5-image": "^35.4.0",
25
+ "@ckeditor/ckeditor5-paragraph": "^35.4.0",
26
+ "@ckeditor/ckeditor5-table": "^35.4.0",
27
+ "@ckeditor/ckeditor5-editor-classic": "^35.4.0",
28
28
  "typescript": "^4.8.4",
29
29
  "webpack": "^5.58.1",
30
30
  "webpack-cli": "^4.9.0"
package/src/selectall.js CHANGED
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module select-all/selectall
7
7
  */
8
- import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
8
+ import { Plugin } from '@ckeditor/ckeditor5-core';
9
9
  import SelectAllEditing from './selectallediting';
10
10
  import SelectAllUI from './selectallui';
11
11
  /**
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module select-all/selectallcommand
7
7
  */
8
- import Command from '@ckeditor/ckeditor5-core/src/command';
8
+ import { Command } from '@ckeditor/ckeditor5-core';
9
9
  /**
10
10
  * The select all command.
11
11
  *
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * @module select-all/selectallediting
7
7
  */
8
- import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
9
- import { getCode, parseKeystroke } from '@ckeditor/ckeditor5-utils/src/keyboard';
8
+ import { Plugin } from '@ckeditor/ckeditor5-core';
9
+ import { getCode, parseKeystroke } from '@ckeditor/ckeditor5-utils';
10
10
  import SelectAllCommand from './selectallcommand';
11
11
  const SELECT_ALL_KEYSTROKE = parseKeystroke('Ctrl+A');
12
12
  /**
@@ -5,8 +5,8 @@
5
5
  /**
6
6
  * @module select-all/selectallui
7
7
  */
8
- import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
9
- import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
8
+ import { Plugin } from '@ckeditor/ckeditor5-core';
9
+ import { ButtonView } from '@ckeditor/ckeditor5-ui';
10
10
  import selectAllIcon from '../theme/icons/select-all.svg';
11
11
  /**
12
12
  * The select all UI feature.