@ckeditor/ckeditor5-undo 35.3.1 → 35.3.2
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +13 -13
- package/src/undoediting.js +6 -6
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-undo",
|
3
|
-
"version": "35.3.
|
3
|
+
"version": "35.3.2",
|
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": "^35.3.
|
16
|
-
"@ckeditor/ckeditor5-engine": "^35.3.
|
17
|
-
"@ckeditor/ckeditor5-ui": "^35.3.
|
15
|
+
"@ckeditor/ckeditor5-core": "^35.3.2",
|
16
|
+
"@ckeditor/ckeditor5-engine": "^35.3.2",
|
17
|
+
"@ckeditor/ckeditor5-ui": "^35.3.2"
|
18
18
|
},
|
19
19
|
"devDependencies": {
|
20
|
-
"@ckeditor/ckeditor5-basic-styles": "^35.3.
|
21
|
-
"@ckeditor/ckeditor5-clipboard": "^35.3.
|
22
|
-
"@ckeditor/ckeditor5-editor-classic": "^35.3.
|
23
|
-
"@ckeditor/ckeditor5-enter": "^35.3.
|
24
|
-
"@ckeditor/ckeditor5-heading": "^35.3.
|
25
|
-
"@ckeditor/ckeditor5-paragraph": "^35.3.
|
26
|
-
"@ckeditor/ckeditor5-typing": "^35.3.
|
27
|
-
"@ckeditor/ckeditor5-table": "^35.3.
|
28
|
-
"@ckeditor/ckeditor5-utils": "^35.3.
|
20
|
+
"@ckeditor/ckeditor5-basic-styles": "^35.3.2",
|
21
|
+
"@ckeditor/ckeditor5-clipboard": "^35.3.2",
|
22
|
+
"@ckeditor/ckeditor5-editor-classic": "^35.3.2",
|
23
|
+
"@ckeditor/ckeditor5-enter": "^35.3.2",
|
24
|
+
"@ckeditor/ckeditor5-heading": "^35.3.2",
|
25
|
+
"@ckeditor/ckeditor5-paragraph": "^35.3.2",
|
26
|
+
"@ckeditor/ckeditor5-typing": "^35.3.2",
|
27
|
+
"@ckeditor/ckeditor5-table": "^35.3.2",
|
28
|
+
"@ckeditor/ckeditor5-utils": "^35.3.2",
|
29
29
|
"typescript": "^4.8.4",
|
30
30
|
"webpack": "^5.58.1",
|
31
31
|
"webpack-cli": "^4.9.0"
|
package/src/undoediting.js
CHANGED
@@ -16,6 +16,12 @@ import RedoCommand from './redocommand';
|
|
16
16
|
* @extends module:core/plugin~Plugin
|
17
17
|
*/
|
18
18
|
export default class UndoEditing extends Plugin {
|
19
|
+
/**
|
20
|
+
* @inheritDoc
|
21
|
+
*/
|
22
|
+
static get pluginName() {
|
23
|
+
return 'UndoEditing';
|
24
|
+
}
|
19
25
|
/**
|
20
26
|
* @inheritDoc
|
21
27
|
*/
|
@@ -43,12 +49,6 @@ export default class UndoEditing extends Plugin {
|
|
43
49
|
*/
|
44
50
|
this._batchRegistry = new WeakSet();
|
45
51
|
}
|
46
|
-
/**
|
47
|
-
* @inheritDoc
|
48
|
-
*/
|
49
|
-
static get pluginName() {
|
50
|
-
return 'UndoEditing';
|
51
|
-
}
|
52
52
|
/**
|
53
53
|
* @inheritDoc
|
54
54
|
*/
|