@ckeditor/ckeditor5-ckbox 0.0.0-nightly-20240714.0 → 0.0.0-nightly-20240716.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/build/ckbox.js +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/ckboxutils.js +2 -2
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-20240716.0",
|
4
4
|
"description": "CKBox integration for CKEditor 5.",
|
5
5
|
"keywords": [
|
6
6
|
"ckeditor",
|
@@ -13,7 +13,7 @@
|
|
13
13
|
"type": "module",
|
14
14
|
"main": "src/index.js",
|
15
15
|
"dependencies": {
|
16
|
-
"ckeditor5": "0.0.0-nightly-
|
16
|
+
"ckeditor5": "0.0.0-nightly-20240716.0",
|
17
17
|
"blurhash": "2.0.5",
|
18
18
|
"lodash-es": "4.17.21"
|
19
19
|
},
|
package/src/ckboxutils.js
CHANGED
@@ -170,8 +170,8 @@ export default class CKBoxUtils extends Plugin {
|
|
170
170
|
}
|
171
171
|
function fetchCategories(offset) {
|
172
172
|
const categoryUrl = new URL('categories', serviceOrigin);
|
173
|
-
categoryUrl.searchParams.set('limit', ITEMS_PER_REQUEST
|
174
|
-
categoryUrl.searchParams.set('offset', offset
|
173
|
+
categoryUrl.searchParams.set('limit', String(ITEMS_PER_REQUEST));
|
174
|
+
categoryUrl.searchParams.set('offset', String(offset));
|
175
175
|
categoryUrl.searchParams.set('workspaceId', workspaceId);
|
176
176
|
return sendHttpRequest({
|
177
177
|
url: categoryUrl,
|