@ckeditor/ckeditor5-select-all 37.0.0-alpha.1 → 37.0.0-alpha.3

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.
Files changed (2) hide show
  1. package/package.json +12 -12
  2. package/src/selectall.d.ts +4 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-select-all",
3
- "version": "37.0.0-alpha.1",
3
+ "version": "37.0.0-alpha.3",
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": "^37.0.0-alpha.1",
16
- "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.1",
17
- "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.1"
15
+ "@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
16
+ "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3",
17
+ "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.3"
18
18
  },
19
19
  "devDependencies": {
20
- "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.1",
21
- "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.1",
22
- "@ckeditor/ckeditor5-essentials": "^37.0.0-alpha.1",
23
- "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.1",
24
- "@ckeditor/ckeditor5-image": "^37.0.0-alpha.1",
25
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1",
26
- "@ckeditor/ckeditor5-table": "^37.0.0-alpha.1",
27
- "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.1",
20
+ "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.3",
21
+ "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3",
22
+ "@ckeditor/ckeditor5-essentials": "^37.0.0-alpha.3",
23
+ "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.3",
24
+ "@ckeditor/ckeditor5-image": "^37.0.0-alpha.3",
25
+ "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3",
26
+ "@ckeditor/ckeditor5-table": "^37.0.0-alpha.3",
27
+ "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
28
28
  "typescript": "^4.8.4",
29
29
  "webpack": "^5.58.1",
30
30
  "webpack-cli": "^4.9.0"
@@ -5,7 +5,9 @@
5
5
  /**
6
6
  * @module select-all/selectall
7
7
  */
8
- import { Plugin, type PluginDependencies } from '@ckeditor/ckeditor5-core';
8
+ import { Plugin } from '@ckeditor/ckeditor5-core';
9
+ import SelectAllEditing from './selectallediting';
10
+ import SelectAllUI from './selectallui';
9
11
  /**
10
12
  * The select all feature.
11
13
  *
@@ -18,7 +20,7 @@ export default class SelectAll extends Plugin {
18
20
  /**
19
21
  * @inheritDoc
20
22
  */
21
- static get requires(): PluginDependencies;
23
+ static get requires(): readonly [typeof SelectAllEditing, typeof SelectAllUI];
22
24
  /**
23
25
  * @inheritDoc
24
26
  */