@ckeditor/ckeditor5-essentials 43.3.1 → 44.0.0-alpha.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/README.md +11 -5
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@ CKEditor 5 essentials plugin
|
|
|
3
3
|
|
|
4
4
|
[](https://www.npmjs.com/package/@ckeditor/ckeditor5-essentials)
|
|
5
5
|
[](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
|
|
6
|
-
[](https://app.circleci.com/pipelines/github/ckeditor/ckeditor5?branch=master)
|
|
7
7
|
|
|
8
8
|
Essential editing features for CKEditor 5 wrapped in one plugin.
|
|
9
9
|
|
|
@@ -15,16 +15,22 @@ The [`Essentials`](https://ckeditor.com/docs/ckeditor5/latest/api/module_essenti
|
|
|
15
15
|
* [`Typing`](https://ckeditor.com/docs/ckeditor5/latest/api/module_typing_typing-Typing.html)
|
|
16
16
|
* [`Undo`](https://ckeditor.com/docs/ckeditor5/latest/api/module_undo_undo-Undo.html)
|
|
17
17
|
|
|
18
|
-
## Documentation
|
|
19
|
-
|
|
20
|
-
See the [`@ckeditor/ckeditor5-essentials` package](https://ckeditor.com/docs/ckeditor5/latest/api/essentials.html) page in [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/).
|
|
21
|
-
|
|
22
18
|
## Installation
|
|
23
19
|
|
|
20
|
+
This plugin is part of the `ckeditor5` package. Install the whole package to use it.
|
|
21
|
+
|
|
24
22
|
```bash
|
|
25
23
|
npm install ckeditor5
|
|
26
24
|
```
|
|
27
25
|
|
|
26
|
+
## Create free account
|
|
27
|
+
|
|
28
|
+
If you want to check full CKEditor 5 capabilities, sign up for a [free non-commitment 14-day trial](https://portal.ckeditor.com/signup).
|
|
29
|
+
|
|
30
|
+
## Documentation
|
|
31
|
+
|
|
32
|
+
See the [`@ckeditor/ckeditor5-essentials` package](https://ckeditor.com/docs/ckeditor5/latest/api/essentials.html) page in [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/).
|
|
33
|
+
|
|
28
34
|
## License
|
|
29
35
|
|
|
30
36
|
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-essentials",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "44.0.0-alpha.0",
|
|
4
4
|
"description": "Essential editing features for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -13,14 +13,14 @@
|
|
|
13
13
|
"type": "module",
|
|
14
14
|
"main": "src/index.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@ckeditor/ckeditor5-clipboard": "
|
|
17
|
-
"@ckeditor/ckeditor5-core": "
|
|
18
|
-
"@ckeditor/ckeditor5-enter": "
|
|
19
|
-
"@ckeditor/ckeditor5-select-all": "
|
|
20
|
-
"@ckeditor/ckeditor5-typing": "
|
|
21
|
-
"@ckeditor/ckeditor5-ui": "
|
|
22
|
-
"@ckeditor/ckeditor5-undo": "
|
|
23
|
-
"ckeditor5": "
|
|
16
|
+
"@ckeditor/ckeditor5-clipboard": "44.0.0-alpha.0",
|
|
17
|
+
"@ckeditor/ckeditor5-core": "44.0.0-alpha.0",
|
|
18
|
+
"@ckeditor/ckeditor5-enter": "44.0.0-alpha.0",
|
|
19
|
+
"@ckeditor/ckeditor5-select-all": "44.0.0-alpha.0",
|
|
20
|
+
"@ckeditor/ckeditor5-typing": "44.0.0-alpha.0",
|
|
21
|
+
"@ckeditor/ckeditor5-ui": "44.0.0-alpha.0",
|
|
22
|
+
"@ckeditor/ckeditor5-undo": "44.0.0-alpha.0",
|
|
23
|
+
"ckeditor5": "44.0.0-alpha.0"
|
|
24
24
|
},
|
|
25
25
|
"author": "CKSource (http://cksource.com/)",
|
|
26
26
|
"license": "GPL-2.0-or-later",
|