@ckeditor/ckeditor5-autosave 38.2.0-alpha.1 → 39.0.1
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +0 -1
- package/package.json +3 -4
- package/src/augmentation.d.ts +1 -1
- package/src/autosave.d.ts +1 -1
- package/src/autosave.js +2 -2
- package/src/index.d.ts +2 -2
- package/src/index.js +2 -2
package/README.md
CHANGED
@@ -4,7 +4,6 @@ CKEditor 5 autosave feature
|
|
4
4
|
[![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-autosave.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-autosave)
|
5
5
|
[![Coverage Status](https://coveralls.io/repos/github/ckeditor/ckeditor5/badge.svg?branch=master)](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
|
6
6
|
[![Build Status](https://travis-ci.com/ckeditor/ckeditor5.svg?branch=master)](https://app.travis-ci.com/github/ckeditor/ckeditor5)
|
7
|
-
![Dependency Status](https://img.shields.io/librariesio/release/npm/@ckeditor/ckeditor5-autosave)
|
8
7
|
|
9
8
|
This package implements the autosave feature for CKEditor 5.
|
10
9
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-autosave",
|
3
|
-
"version": "
|
3
|
+
"version": "39.0.1",
|
4
4
|
"description": "Autosave feature for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -11,10 +11,9 @@
|
|
11
11
|
"ckeditor5-dll"
|
12
12
|
],
|
13
13
|
"main": "src/index.js",
|
14
|
-
"type": "module",
|
15
14
|
"dependencies": {
|
16
|
-
"ckeditor5": "
|
17
|
-
"lodash-es": "
|
15
|
+
"ckeditor5": "39.0.1",
|
16
|
+
"lodash-es": "4.17.21"
|
18
17
|
},
|
19
18
|
"engines": {
|
20
19
|
"node": ">=16.0.0",
|
package/src/augmentation.d.ts
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
|
3
3
|
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
|
4
4
|
*/
|
5
|
-
import type { Autosave, AutosaveConfig } from './index
|
5
|
+
import type { Autosave, AutosaveConfig } from './index';
|
6
6
|
declare module '@ckeditor/ckeditor5-core' {
|
7
7
|
interface PluginsMap {
|
8
8
|
[Autosave.pluginName]: Autosave;
|
package/src/autosave.d.ts
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
/**
|
6
6
|
* @module autosave/autosave
|
7
7
|
*/
|
8
|
-
import { Plugin, PendingActions, 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).
|
package/src/autosave.js
CHANGED
@@ -5,8 +5,8 @@
|
|
5
5
|
/**
|
6
6
|
* @module autosave/autosave
|
7
7
|
*/
|
8
|
-
import { Plugin, PendingActions } from 'ckeditor5/src/core
|
9
|
-
import { DomEmitterMixin } from 'ckeditor5/src/utils
|
8
|
+
import { Plugin, PendingActions } from 'ckeditor5/src/core';
|
9
|
+
import { DomEmitterMixin } from 'ckeditor5/src/utils';
|
10
10
|
import { debounce } from 'lodash-es';
|
11
11
|
/* globals window */
|
12
12
|
/**
|
package/src/index.d.ts
CHANGED
package/src/index.js
CHANGED