@ckeditor/ckeditor5-autosave 37.0.0-alpha.2 → 37.0.0-alpha.3

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-autosave",
3
- "version": "37.0.0-alpha.2",
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.2",
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.2",
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.2",
22
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.2",
23
- "@ckeditor/ckeditor5-source-editing": "^37.0.0-alpha.2",
24
- "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.2",
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, type PluginDependencies, type Editor } from 'ckeditor5/src/core';
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(): PluginDependencies;
106
+ static get requires(): readonly [typeof PendingActions];
107
107
  /**
108
108
  * @inheritDoc
109
109
  */