@ckeditor/ckeditor5-essentials 37.0.0-alpha.2 → 37.0.0-rc.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 +13 -13
- 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-
|
|
3
|
+
"version": "37.0.0-rc.0",
|
|
4
4
|
"description": "Essential editing features for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -12,25 +12,25 @@
|
|
|
12
12
|
],
|
|
13
13
|
"main": "src/index.js",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"ckeditor5": "^37.0.0-
|
|
15
|
+
"ckeditor5": "^37.0.0-rc.0"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@ckeditor/ckeditor5-clipboard": "^37.0.0-
|
|
19
|
-
"@ckeditor/ckeditor5-core": "^37.0.0-
|
|
20
|
-
"@ckeditor/ckeditor5-dev-utils": "^
|
|
21
|
-
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-
|
|
22
|
-
"@ckeditor/ckeditor5-enter": "^37.0.0-
|
|
23
|
-
"@ckeditor/ckeditor5-paragraph": "^37.0.0-
|
|
24
|
-
"@ckeditor/ckeditor5-select-all": "^37.0.0-
|
|
25
|
-
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-
|
|
26
|
-
"@ckeditor/ckeditor5-typing": "^37.0.0-
|
|
27
|
-
"@ckeditor/ckeditor5-undo": "^37.0.0-
|
|
18
|
+
"@ckeditor/ckeditor5-clipboard": "^37.0.0-rc.0",
|
|
19
|
+
"@ckeditor/ckeditor5-core": "^37.0.0-rc.0",
|
|
20
|
+
"@ckeditor/ckeditor5-dev-utils": "^36.0.0",
|
|
21
|
+
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-rc.0",
|
|
22
|
+
"@ckeditor/ckeditor5-enter": "^37.0.0-rc.0",
|
|
23
|
+
"@ckeditor/ckeditor5-paragraph": "^37.0.0-rc.0",
|
|
24
|
+
"@ckeditor/ckeditor5-select-all": "^37.0.0-rc.0",
|
|
25
|
+
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-rc.0",
|
|
26
|
+
"@ckeditor/ckeditor5-typing": "^37.0.0-rc.0",
|
|
27
|
+
"@ckeditor/ckeditor5-undo": "^37.0.0-rc.0",
|
|
28
28
|
"typescript": "^4.8.4",
|
|
29
29
|
"webpack": "^5.58.1",
|
|
30
30
|
"webpack-cli": "^4.9.0"
|
|
31
31
|
},
|
|
32
32
|
"engines": {
|
|
33
|
-
"node": ">=
|
|
33
|
+
"node": ">=16.0.0",
|
|
34
34
|
"npm": ">=5.7.1"
|
|
35
35
|
},
|
|
36
36
|
"author": "CKSource (http://cksource.com/)",
|
package/src/essentials.d.ts
CHANGED
|
@@ -5,7 +5,12 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module essentials/essentials
|
|
7
7
|
*/
|
|
8
|
-
import { Plugin
|
|
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():
|
|
34
|
+
static get requires(): readonly [typeof Clipboard, typeof Enter, typeof SelectAll, typeof ShiftEnter, typeof Typing, typeof Undo];
|
|
30
35
|
/**
|
|
31
36
|
* @inheritDoc
|
|
32
37
|
*/
|