@ckeditor/ckeditor5-ckbox 0.0.0-nightly-20230803.0 → 0.0.0-nightly-20230805.0
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +2 -6
- package/src/ckboxuploadadapter.js +1 -1
- package/src/utils.d.ts +1 -1
- package/src/utils.js +1 -1
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-20230805.0",
|
4
4
|
"description": "CKBox integration for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -12,11 +12,7 @@
|
|
12
12
|
],
|
13
13
|
"main": "src/index.js",
|
14
14
|
"dependencies": {
|
15
|
-
"ckeditor5": "0.0.0-nightly-
|
16
|
-
},
|
17
|
-
"engines": {
|
18
|
-
"node": ">=16.0.0",
|
19
|
-
"npm": ">=5.7.1"
|
15
|
+
"ckeditor5": "0.0.0-nightly-20230805.0"
|
20
16
|
},
|
21
17
|
"author": "CKSource (http://cksource.com/)",
|
22
18
|
"license": "GPL-2.0-or-later",
|
@@ -87,7 +87,7 @@ class Adapter {
|
|
87
87
|
const workspaceId = getWorkspaceId(this.token, defaultWorkspaceId);
|
88
88
|
if (workspaceId == null) {
|
89
89
|
/**
|
90
|
-
* The user is not authorized to access workspace defined in
|
90
|
+
* The user is not authorized to access the workspace defined in the`ckbox.defaultUploadWorkspaceId` configuration.
|
91
91
|
*
|
92
92
|
* @error ckbox-access-default-workspace-error
|
93
93
|
*/
|
package/src/utils.d.ts
CHANGED
@@ -21,7 +21,7 @@ export declare function getImageUrls(imageUrls: CKBoxImageUrls): {
|
|
21
21
|
}>;
|
22
22
|
};
|
23
23
|
/**
|
24
|
-
* Returns workspace id to use for communication with the CKBox service.
|
24
|
+
* Returns a workspace id to use for communication with the CKBox service.
|
25
25
|
*
|
26
26
|
* @param defaultWorkspaceId The default workspace to use taken from editor config.
|
27
27
|
*/
|
package/src/utils.js
CHANGED
@@ -30,7 +30,7 @@ export function getImageUrls(imageUrls) {
|
|
30
30
|
};
|
31
31
|
}
|
32
32
|
/**
|
33
|
-
* Returns workspace id to use for communication with the CKBox service.
|
33
|
+
* Returns a workspace id to use for communication with the CKBox service.
|
34
34
|
*
|
35
35
|
* @param defaultWorkspaceId The default workspace to use taken from editor config.
|
36
36
|
*/
|