@ckeditor/ckeditor5-undo 0.0.0-nightly-20231205.0 → 0.0.0-nightly-20231207.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,23 @@
1
+ {
2
+ "plugins": [
3
+ {
4
+ "name": "Undo",
5
+ "className": "Undo",
6
+ "description": "Support the undo and redo functionalities.",
7
+ "docs": "features/undo-redo.html",
8
+ "path": "src/undo.js",
9
+ "uiComponents": [
10
+ {
11
+ "type": "Button",
12
+ "name": "undo",
13
+ "iconPath": "@ckeditor/ckeditor5-undo/theme/icons/undo.svg"
14
+ },
15
+ {
16
+ "type": "Button",
17
+ "name": "redo",
18
+ "iconPath": "@ckeditor/ckeditor5-undo/theme/icons/redo.svg"
19
+ }
20
+ ]
21
+ }
22
+ ]
23
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-undo",
3
- "version": "0.0.0-nightly-20231205.0",
3
+ "version": "0.0.0-nightly-20231207.0",
4
4
  "description": "Undo feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,9 +12,9 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "@ckeditor/ckeditor5-core": "0.0.0-nightly-20231205.0",
16
- "@ckeditor/ckeditor5-engine": "0.0.0-nightly-20231205.0",
17
- "@ckeditor/ckeditor5-ui": "0.0.0-nightly-20231205.0"
15
+ "@ckeditor/ckeditor5-core": "0.0.0-nightly-20231207.0",
16
+ "@ckeditor/ckeditor5-engine": "0.0.0-nightly-20231207.0",
17
+ "@ckeditor/ckeditor5-ui": "0.0.0-nightly-20231207.0"
18
18
  },
19
19
  "author": "CKSource (http://cksource.com/)",
20
20
  "license": "GPL-2.0-or-later",