@ckeditor/ckeditor5-undo 37.0.0-alpha.1 → 37.0.0-alpha.3
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +13 -13
- package/src/undo.d.ts +4 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-undo",
|
3
|
-
"version": "37.0.0-alpha.
|
3
|
+
"version": "37.0.0-alpha.3",
|
4
4
|
"description": "Undo feature for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -12,20 +12,20 @@
|
|
12
12
|
],
|
13
13
|
"main": "src/index.js",
|
14
14
|
"dependencies": {
|
15
|
-
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.
|
16
|
-
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.
|
17
|
-
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.
|
15
|
+
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
|
16
|
+
"@ckeditor/ckeditor5-engine": "^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.
|
21
|
-
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.
|
22
|
-
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.
|
23
|
-
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.
|
24
|
-
"@ckeditor/ckeditor5-heading": "^37.0.0-alpha.
|
25
|
-
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.
|
26
|
-
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.
|
27
|
-
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.
|
28
|
-
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.
|
20
|
+
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.3",
|
21
|
+
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.3",
|
22
|
+
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
|
23
|
+
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.3",
|
24
|
+
"@ckeditor/ckeditor5-heading": "^37.0.0-alpha.3",
|
25
|
+
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3",
|
26
|
+
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.3",
|
27
|
+
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.3",
|
28
|
+
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3",
|
29
29
|
"typescript": "^4.8.4",
|
30
30
|
"webpack": "^5.58.1",
|
31
31
|
"webpack-cli": "^4.9.0"
|
package/src/undo.d.ts
CHANGED
@@ -5,7 +5,9 @@
|
|
5
5
|
/**
|
6
6
|
* @module undo/undo
|
7
7
|
*/
|
8
|
-
import { Plugin
|
8
|
+
import { Plugin } from '@ckeditor/ckeditor5-core';
|
9
|
+
import UndoEditing from './undoediting';
|
10
|
+
import UndoUI from './undoui';
|
9
11
|
/**
|
10
12
|
* The undo feature.
|
11
13
|
*
|
@@ -107,7 +109,7 @@ export default class Undo extends Plugin {
|
|
107
109
|
/**
|
108
110
|
* @inheritDoc
|
109
111
|
*/
|
110
|
-
static get requires():
|
112
|
+
static get requires(): readonly [typeof UndoEditing, typeof UndoUI];
|
111
113
|
/**
|
112
114
|
* @inheritDoc
|
113
115
|
*/
|