@ckeditor/ckeditor5-autosave 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 +7 -7
- package/src/autosave.d.ts +2 -2
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-autosave",
|
3
|
-
"version": "37.0.0-alpha.
|
3
|
+
"version": "37.0.0-alpha.3",
|
4
4
|
"description": "Autosave feature for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -12,16 +12,16 @@
|
|
12
12
|
],
|
13
13
|
"main": "src/index.js",
|
14
14
|
"dependencies": {
|
15
|
-
"ckeditor5": "^37.0.0-alpha.
|
15
|
+
"ckeditor5": "^37.0.0-alpha.3",
|
16
16
|
"lodash-es": "^4.17.15"
|
17
17
|
},
|
18
18
|
"devDependencies": {
|
19
|
-
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.
|
19
|
+
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
|
20
20
|
"@ckeditor/ckeditor5-dev-utils": "^35.0.0",
|
21
|
-
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.
|
22
|
-
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.
|
23
|
-
"@ckeditor/ckeditor5-source-editing": "^37.0.0-alpha.
|
24
|
-
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.
|
21
|
+
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
|
22
|
+
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3",
|
23
|
+
"@ckeditor/ckeditor5-source-editing": "^37.0.0-alpha.3",
|
24
|
+
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3",
|
25
25
|
"typescript": "^4.8.4",
|
26
26
|
"webpack": "^5.58.1",
|
27
27
|
"webpack-cli": "^4.9.0"
|
package/src/autosave.d.ts
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* @module autosave/autosave
|
7
7
|
*/
|
8
|
-
import { Plugin,
|
8
|
+
import { Plugin, PendingActions, type Editor } from 'ckeditor5/src/core';
|
9
9
|
/**
|
10
10
|
* The {@link module:autosave/autosave~Autosave} plugin allows you to automatically save the data (e.g. send it to the server)
|
11
11
|
* when needed (when the user changed the content).
|
@@ -103,7 +103,7 @@ export default class Autosave extends Plugin {
|
|
103
103
|
/**
|
104
104
|
* @inheritDoc
|
105
105
|
*/
|
106
|
-
static get requires():
|
106
|
+
static get requires(): readonly [typeof PendingActions];
|
107
107
|
/**
|
108
108
|
* @inheritDoc
|
109
109
|
*/
|