@ckeditor/ckeditor5-undo 35.3.1 → 35.3.2

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 +13 -13
  2. 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.1",
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.1",
16
- "@ckeditor/ckeditor5-engine": "^35.3.1",
17
- "@ckeditor/ckeditor5-ui": "^35.3.1"
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.1",
21
- "@ckeditor/ckeditor5-clipboard": "^35.3.1",
22
- "@ckeditor/ckeditor5-editor-classic": "^35.3.1",
23
- "@ckeditor/ckeditor5-enter": "^35.3.1",
24
- "@ckeditor/ckeditor5-heading": "^35.3.1",
25
- "@ckeditor/ckeditor5-paragraph": "^35.3.1",
26
- "@ckeditor/ckeditor5-typing": "^35.3.1",
27
- "@ckeditor/ckeditor5-table": "^35.3.1",
28
- "@ckeditor/ckeditor5-utils": "^35.3.1",
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"
@@ -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
  */