@ckeditor/ckeditor5-ckbox 0.0.0-nightly-20241113.0 → 0.0.0-nightly-20241115.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 +16 -6
- package/package.json +7 -7
package/README.md
CHANGED
@@ -7,18 +7,28 @@ CKEditor 5 CKBox integration
|
|
7
7
|
|
8
8
|
This package implements the [CKBox feature](https://ckeditor.com/docs/ckeditor5/latest/features/file-management/ckbox.html). It allows you to easily insert images as well as links to files into the editor content. It is a bridge between CKEditor 5 WYSIWYG editor and [CKBox](https://ckeditor.com/ckbox/) file manager and uploader.
|
9
9
|
|
10
|
-
## Documentation
|
11
|
-
|
12
|
-
See the [CKBox integration guide](https://ckeditor.com/docs/ckeditor5/latest/features/file-management/ckbox.html) and the [plugin documentation](https://ckeditor.com/docs/ckeditor5/latest/api/ckbox.html) to learn more about the integration.
|
13
|
-
|
14
|
-
Check out the [comprehensive Image upload guide](https://ckeditor.com/docs/ckeditor5/latest/features/image-upload.html) to learn about other ways to upload images into CKEditor 5.
|
15
|
-
|
16
10
|
## Installation
|
17
11
|
|
12
|
+
This plugin is part of the `ckeditor5` package. Install the whole package to use it.
|
13
|
+
|
18
14
|
```bash
|
19
15
|
npm install ckeditor5
|
20
16
|
```
|
21
17
|
|
18
|
+
## Create free account
|
19
|
+
|
20
|
+
If you want to check full CKEditor 5 capabilities, sign up for a [free non-commitment 14-day trial](https://portal.ckeditor.com/signup).
|
21
|
+
|
22
|
+
## Demo
|
23
|
+
|
24
|
+
Check out the [demo in the CKBox feature guide](https://ckeditor.com/docs/ckeditor5/latest/features/file-management/ckbox.html#demo).
|
25
|
+
|
26
|
+
## Documentation
|
27
|
+
|
28
|
+
See the [CKBox integration guide](https://ckeditor.com/docs/ckeditor5/latest/features/file-management/ckbox.html) and the [plugin documentation](https://ckeditor.com/docs/ckeditor5/latest/api/ckbox.html) to learn more about the integration.
|
29
|
+
|
30
|
+
Check out the [comprehensive Image upload guide](https://ckeditor.com/docs/ckeditor5/latest/features/image-upload.html) to learn about other ways to upload images into CKEditor 5.
|
31
|
+
|
22
32
|
## License
|
23
33
|
|
24
34
|
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-ckbox",
|
3
|
-
"version": "0.0.0-nightly-
|
3
|
+
"version": "0.0.0-nightly-20241115.0",
|
4
4
|
"description": "CKBox integration for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -13,12 +13,12 @@
|
|
13
13
|
"type": "module",
|
14
14
|
"main": "src/index.js",
|
15
15
|
"dependencies": {
|
16
|
-
"@ckeditor/ckeditor5-core": "0.0.0-nightly-
|
17
|
-
"@ckeditor/ckeditor5-engine": "0.0.0-nightly-
|
18
|
-
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-
|
19
|
-
"@ckeditor/ckeditor5-upload": "0.0.0-nightly-
|
20
|
-
"@ckeditor/ckeditor5-utils": "0.0.0-nightly-
|
21
|
-
"ckeditor5": "0.0.0-nightly-
|
16
|
+
"@ckeditor/ckeditor5-core": "0.0.0-nightly-20241115.0",
|
17
|
+
"@ckeditor/ckeditor5-engine": "0.0.0-nightly-20241115.0",
|
18
|
+
"@ckeditor/ckeditor5-ui": "0.0.0-nightly-20241115.0",
|
19
|
+
"@ckeditor/ckeditor5-upload": "0.0.0-nightly-20241115.0",
|
20
|
+
"@ckeditor/ckeditor5-utils": "0.0.0-nightly-20241115.0",
|
21
|
+
"ckeditor5": "0.0.0-nightly-20241115.0",
|
22
22
|
"blurhash": "2.0.5",
|
23
23
|
"lodash-es": "4.17.21"
|
24
24
|
},
|