@ckeditor/ckeditor5-select-all 37.0.0-alpha.0 → 37.0.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": "37.0.0-alpha.0",
3
+ "version": "37.0.0-alpha.1",
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.0",
16
- "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.0",
17
- "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.0"
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"
18
18
  },
19
19
  "devDependencies": {
20
- "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.0",
21
- "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.0",
22
- "@ckeditor/ckeditor5-essentials": "^37.0.0-alpha.0",
23
- "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.0",
24
- "@ckeditor/ckeditor5-image": "^37.0.0-alpha.0",
25
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.0",
26
- "@ckeditor/ckeditor5-table": "^37.0.0-alpha.0",
27
- "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.0",
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",
28
28
  "typescript": "^4.8.4",
29
29
  "webpack": "^5.58.1",
30
30
  "webpack-cli": "^4.9.0"
@@ -51,7 +51,7 @@
51
51
  "CHANGELOG.md"
52
52
  ],
53
53
  "scripts": {
54
- "build": "tsc -p ./tsconfig.release.json",
54
+ "build": "tsc -p ./tsconfig.json",
55
55
  "postversion": "npm run build"
56
56
  },
57
57
  "types": "src/index.d.ts"
@@ -0,0 +1,15 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ import type { SelectAll, SelectAllEditing, SelectAllUI, SelectAllCommand } from './index';
6
+ declare module '@ckeditor/ckeditor5-core' {
7
+ interface PluginsMap {
8
+ [SelectAll.pluginName]: SelectAll;
9
+ [SelectAllEditing.pluginName]: SelectAllEditing;
10
+ [SelectAllUI.pluginName]: SelectAllUI;
11
+ }
12
+ interface CommandsMap {
13
+ selectAll: SelectAllCommand;
14
+ }
15
+ }
@@ -0,0 +1,5 @@
1
+ /**
2
+ * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
+ * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
+ */
5
+ export {};
package/src/index.d.ts CHANGED
@@ -8,3 +8,5 @@
8
8
  export { default as SelectAll } from './selectall';
9
9
  export { default as SelectAllEditing } from './selectallediting';
10
10
  export { default as SelectAllUI } from './selectallui';
11
+ export type { default as SelectAllCommand } from './selectallcommand';
12
+ import './augmentation';
package/src/index.js CHANGED
@@ -8,3 +8,4 @@
8
8
  export { default as SelectAll } from './selectall';
9
9
  export { default as SelectAllEditing } from './selectallediting';
10
10
  export { default as SelectAllUI } from './selectallui';
11
+ import './augmentation';
@@ -24,8 +24,3 @@ export default class SelectAll extends Plugin {
24
24
  */
25
25
  static get pluginName(): 'SelectAll';
26
26
  }
27
- declare module '@ckeditor/ckeditor5-core' {
28
- interface PluginsMap {
29
- [SelectAll.pluginName]: SelectAll;
30
- }
31
- }
@@ -30,8 +30,3 @@ export default class SelectAllCommand extends Command {
30
30
  */
31
31
  execute(): void;
32
32
  }
33
- declare module '@ckeditor/ckeditor5-core' {
34
- interface CommandsMap {
35
- selectAll: SelectAllCommand;
36
- }
37
- }
@@ -22,8 +22,3 @@ export default class SelectAllEditing extends Plugin {
22
22
  */
23
23
  init(): void;
24
24
  }
25
- declare module '@ckeditor/ckeditor5-core' {
26
- interface PluginsMap {
27
- [SelectAllEditing.pluginName]: SelectAllEditing;
28
- }
29
- }
@@ -23,8 +23,3 @@ export default class SelectAllUI extends Plugin {
23
23
  */
24
24
  init(): void;
25
25
  }
26
- declare module '@ckeditor/ckeditor5-core' {
27
- interface PluginsMap {
28
- [SelectAllUI.pluginName]: SelectAllUI;
29
- }
30
- }