@ckeditor/ckeditor5-adapter-ckfinder 37.0.1 → 38.0.0-rc.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/package.json +16 -16
- package/src/uploadadapter.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-adapter-ckfinder",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "38.0.0-rc.0",
|
|
4
4
|
"description": "CKFinder adapter for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -12,23 +12,23 @@
|
|
|
12
12
|
],
|
|
13
13
|
"main": "src/index.js",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"ckeditor5": "^
|
|
15
|
+
"ckeditor5": "^38.0.0-rc.0"
|
|
16
16
|
},
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"@ckeditor/ckeditor5-basic-styles": "^
|
|
19
|
-
"@ckeditor/ckeditor5-core": "^
|
|
20
|
-
"@ckeditor/ckeditor5-clipboard": "^
|
|
21
|
-
"@ckeditor/ckeditor5-dev-utils": "^
|
|
22
|
-
"@ckeditor/ckeditor5-editor-classic": "^
|
|
23
|
-
"@ckeditor/ckeditor5-enter": "^
|
|
24
|
-
"@ckeditor/ckeditor5-heading": "^
|
|
25
|
-
"@ckeditor/ckeditor5-image": "^
|
|
26
|
-
"@ckeditor/ckeditor5-list": "^
|
|
27
|
-
"@ckeditor/ckeditor5-paragraph": "^
|
|
28
|
-
"@ckeditor/ckeditor5-theme-lark": "^
|
|
29
|
-
"@ckeditor/ckeditor5-typing": "^
|
|
30
|
-
"@ckeditor/ckeditor5-undo": "^
|
|
31
|
-
"@ckeditor/ckeditor5-upload": "^
|
|
18
|
+
"@ckeditor/ckeditor5-basic-styles": "^38.0.0-rc.0",
|
|
19
|
+
"@ckeditor/ckeditor5-core": "^38.0.0-rc.0",
|
|
20
|
+
"@ckeditor/ckeditor5-clipboard": "^38.0.0-rc.0",
|
|
21
|
+
"@ckeditor/ckeditor5-dev-utils": "^37.0.0",
|
|
22
|
+
"@ckeditor/ckeditor5-editor-classic": "^38.0.0-rc.0",
|
|
23
|
+
"@ckeditor/ckeditor5-enter": "^38.0.0-rc.0",
|
|
24
|
+
"@ckeditor/ckeditor5-heading": "^38.0.0-rc.0",
|
|
25
|
+
"@ckeditor/ckeditor5-image": "^38.0.0-rc.0",
|
|
26
|
+
"@ckeditor/ckeditor5-list": "^38.0.0-rc.0",
|
|
27
|
+
"@ckeditor/ckeditor5-paragraph": "^38.0.0-rc.0",
|
|
28
|
+
"@ckeditor/ckeditor5-theme-lark": "^38.0.0-rc.0",
|
|
29
|
+
"@ckeditor/ckeditor5-typing": "^38.0.0-rc.0",
|
|
30
|
+
"@ckeditor/ckeditor5-undo": "^38.0.0-rc.0",
|
|
31
|
+
"@ckeditor/ckeditor5-upload": "^38.0.0-rc.0",
|
|
32
32
|
"typescript": "^4.8.4",
|
|
33
33
|
"webpack": "^5.58.1",
|
|
34
34
|
"webpack-cli": "^4.9.0"
|
package/src/uploadadapter.js
CHANGED
|
@@ -112,7 +112,7 @@ class UploadAdapter {
|
|
|
112
112
|
});
|
|
113
113
|
});
|
|
114
114
|
// Upload progress when it's supported.
|
|
115
|
-
/* istanbul ignore else */
|
|
115
|
+
/* istanbul ignore else -- @preserve */
|
|
116
116
|
if (xhr.upload) {
|
|
117
117
|
xhr.upload.addEventListener('progress', evt => {
|
|
118
118
|
if (evt.lengthComputable) {
|