@ckeditor/ckeditor5-autosave 0.0.0-nightly-20240522.0 → 0.0.0-nightly-20240524.0
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/CHANGELOG.md +1 -1
- package/README.md +6 -0
- package/ckeditor5-metadata.json +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -104,4 +104,4 @@ Internal changes only (updated dependencies, documentation, etc.).
|
|
|
104
104
|
|
|
105
105
|
### Other changes
|
|
106
106
|
|
|
107
|
-
* The first implementation of the autosave plugin. Check out the [demo](https://ckeditor.com/docs/ckeditor5/latest/
|
|
107
|
+
* The first implementation of the autosave plugin. Check out the [demo](https://ckeditor.com/docs/ckeditor5/latest/getting-started/setup/getting-and-setting-data.html#autosave-feature).
|
package/README.md
CHANGED
|
@@ -11,6 +11,12 @@ This package implements the autosave feature for CKEditor 5.
|
|
|
11
11
|
|
|
12
12
|
See the [`@ckeditor/ckeditor5-autosave` package](https://ckeditor.com/docs/ckeditor5/latest/api/autosave.html) page in [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/).
|
|
13
13
|
|
|
14
|
+
## Installation
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install ckeditor5
|
|
18
|
+
```
|
|
19
|
+
|
|
14
20
|
## License
|
|
15
21
|
|
|
16
22
|
Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). For full details about the license, please check the `LICENSE.md` file or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license).
|
package/ckeditor5-metadata.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"name": "Autosave",
|
|
5
5
|
"className": "Autosave",
|
|
6
6
|
"description": "Allows you to automatically save the data (e.g. send it to the server) when needed, for example, when the user changed the content.",
|
|
7
|
-
"docs": "
|
|
7
|
+
"docs": "getting-started/setup/getting-and-setting-data.html#autosave-feature",
|
|
8
8
|
"path": "src/autosave.js"
|
|
9
9
|
}
|
|
10
10
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-autosave",
|
|
3
|
-
"version": "0.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20240524.0",
|
|
4
4
|
"description": "Autosave feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"type": "module",
|
|
14
14
|
"main": "src/index.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"ckeditor5": "0.0.0-nightly-
|
|
16
|
+
"ckeditor5": "0.0.0-nightly-20240524.0",
|
|
17
17
|
"lodash-es": "4.17.21"
|
|
18
18
|
},
|
|
19
19
|
"author": "CKSource (http://cksource.com/)",
|