@ckeditor/ckeditor5-essentials 37.0.0-alpha.2 → 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 +11 -11
  2. package/src/essentials.d.ts +7 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-essentials",
3
- "version": "37.0.0-alpha.2",
3
+ "version": "37.0.0-alpha.3",
4
4
  "description": "Essential editing features 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
- "ckeditor5": "^37.0.0-alpha.2"
15
+ "ckeditor5": "^37.0.0-alpha.3"
16
16
  },
17
17
  "devDependencies": {
18
- "@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.2",
19
- "@ckeditor/ckeditor5-core": "^37.0.0-alpha.2",
18
+ "@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.3",
19
+ "@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
20
20
  "@ckeditor/ckeditor5-dev-utils": "^35.0.0",
21
- "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.2",
22
- "@ckeditor/ckeditor5-enter": "^37.0.0-alpha.2",
23
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.2",
24
- "@ckeditor/ckeditor5-select-all": "^37.0.0-alpha.2",
25
- "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.2",
26
- "@ckeditor/ckeditor5-typing": "^37.0.0-alpha.2",
27
- "@ckeditor/ckeditor5-undo": "^37.0.0-alpha.2",
21
+ "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
22
+ "@ckeditor/ckeditor5-enter": "^37.0.0-alpha.3",
23
+ "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3",
24
+ "@ckeditor/ckeditor5-select-all": "^37.0.0-alpha.3",
25
+ "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3",
26
+ "@ckeditor/ckeditor5-typing": "^37.0.0-alpha.3",
27
+ "@ckeditor/ckeditor5-undo": "^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,12 @@
5
5
  /**
6
6
  * @module essentials/essentials
7
7
  */
8
- import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
8
+ import { Plugin } from 'ckeditor5/src/core';
9
+ import { Clipboard } from 'ckeditor5/src/clipboard';
10
+ import { Enter, ShiftEnter } from 'ckeditor5/src/enter';
11
+ import { SelectAll } from 'ckeditor5/src/select-all';
12
+ import { Typing } from 'ckeditor5/src/typing';
13
+ import { Undo } from 'ckeditor5/src/undo';
9
14
  /**
10
15
  * A plugin including all essential editing features. It represents a set of features that enables similar functionalities
11
16
  * to a `<textarea>` element.
@@ -26,7 +31,7 @@ export default class Essentials extends Plugin {
26
31
  /**
27
32
  * @inheritDoc
28
33
  */
29
- static get requires(): PluginDependencies;
34
+ static get requires(): readonly [typeof Clipboard, typeof Enter, typeof SelectAll, typeof ShiftEnter, typeof Typing, typeof Undo];
30
35
  /**
31
36
  * @inheritDoc
32
37
  */