@ckeditor/ckeditor5-upload 33.0.0 → 34.0.0
Sign up to get free protection for your applications and to get access to all the features.
package/README.md
CHANGED
@@ -3,7 +3,8 @@ CKEditor 5 file upload feature
|
|
3
3
|
|
4
4
|
[![npm version](https://badge.fury.io/js/%40ckeditor%2Fckeditor5-upload.svg)](https://www.npmjs.com/package/@ckeditor/ckeditor5-upload)
|
5
5
|
[![Coverage Status](https://coveralls.io/repos/github/ckeditor/ckeditor5/badge.svg?branch=master)](https://coveralls.io/github/ckeditor/ckeditor5?branch=master)
|
6
|
-
[![Build Status](https://travis-ci.com/ckeditor/ckeditor5.svg?branch=master)](https://travis-ci.com/ckeditor/ckeditor5)
|
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-upload)
|
7
8
|
|
8
9
|
This package implements various file upload utilities for CKEditor 5.
|
9
10
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ckeditor/ckeditor5-upload",
|
3
|
-
"version": "
|
3
|
+
"version": "34.0.0",
|
4
4
|
"description": "Upload feature for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -11,9 +11,9 @@
|
|
11
11
|
],
|
12
12
|
"main": "src/index.js",
|
13
13
|
"dependencies": {
|
14
|
-
"@ckeditor/ckeditor5-core": "^
|
15
|
-
"@ckeditor/ckeditor5-utils": "^
|
16
|
-
"@ckeditor/ckeditor5-ui": "^
|
14
|
+
"@ckeditor/ckeditor5-core": "^34.0.0",
|
15
|
+
"@ckeditor/ckeditor5-utils": "^34.0.0",
|
16
|
+
"@ckeditor/ckeditor5-ui": "^34.0.0"
|
17
17
|
},
|
18
18
|
"engines": {
|
19
19
|
"node": ">=14.0.0",
|
@@ -14,7 +14,7 @@ import FileRepository from '../filerepository';
|
|
14
14
|
|
15
15
|
/**
|
16
16
|
* A plugin that converts images inserted into the editor into [Base64 strings](https://en.wikipedia.org/wiki/Base64)
|
17
|
-
* in the {@glink
|
17
|
+
* in the {@glink installation/advanced/saving-data editor output}.
|
18
18
|
*
|
19
19
|
* This kind of image upload does not require server processing – images are stored with the rest of the text and
|
20
20
|
* displayed by the web browser without additional requests.
|
package/src/filerepository.js
CHANGED
@@ -154,7 +154,8 @@ export default class FileRepository extends Plugin {
|
|
154
154
|
* This warning shows up when {@link module:upload/filerepository~FileRepository} is being used
|
155
155
|
* without {@link #createUploadAdapter defining an upload adapter}.
|
156
156
|
*
|
157
|
-
* **If you see this warning when using one of the {@glink builds
|
157
|
+
* **If you see this warning when using one of the {@glink installation/advanced/alternative-setups/predefined-builds
|
158
|
+
* CKEditor 5 Builds}**
|
158
159
|
* it means that you did not configure any of the upload adapters available by default in those builds.
|
159
160
|
*
|
160
161
|
* See the {@glink features/images/image-upload/image-upload comprehensive "Image upload overview"} to learn which upload
|