@ckeditor/ckeditor5-ckbox 45.1.0-alpha.7 → 45.2.0-alpha.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-ckbox",
3
- "version": "45.1.0-alpha.7",
3
+ "version": "45.2.0-alpha.0",
4
4
  "description": "CKBox integration for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,15 +13,15 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-cloud-services": "45.1.0-alpha.7",
17
- "@ckeditor/ckeditor5-core": "45.1.0-alpha.7",
18
- "@ckeditor/ckeditor5-engine": "45.1.0-alpha.7",
19
- "@ckeditor/ckeditor5-icons": "45.1.0-alpha.7",
20
- "@ckeditor/ckeditor5-image": "45.1.0-alpha.7",
21
- "@ckeditor/ckeditor5-ui": "45.1.0-alpha.7",
22
- "@ckeditor/ckeditor5-upload": "45.1.0-alpha.7",
23
- "@ckeditor/ckeditor5-utils": "45.1.0-alpha.7",
24
- "ckeditor5": "45.1.0-alpha.7",
16
+ "@ckeditor/ckeditor5-cloud-services": "45.2.0-alpha.0",
17
+ "@ckeditor/ckeditor5-core": "45.2.0-alpha.0",
18
+ "@ckeditor/ckeditor5-engine": "45.2.0-alpha.0",
19
+ "@ckeditor/ckeditor5-icons": "45.2.0-alpha.0",
20
+ "@ckeditor/ckeditor5-image": "45.2.0-alpha.0",
21
+ "@ckeditor/ckeditor5-ui": "45.2.0-alpha.0",
22
+ "@ckeditor/ckeditor5-upload": "45.2.0-alpha.0",
23
+ "@ckeditor/ckeditor5-utils": "45.2.0-alpha.0",
24
+ "ckeditor5": "45.2.0-alpha.0",
25
25
  "blurhash": "2.0.5",
26
26
  "es-toolkit": "1.32.0"
27
27
  },
@@ -2,7 +2,6 @@
2
2
  * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
- /* globals window */
6
5
  /**
7
6
  * @module ckbox/ckboxediting
8
7
  */
@@ -2,7 +2,6 @@
2
2
  * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
- /* globals document, console, AbortController, URL, window */
6
5
  /**
7
6
  * @module ckbox/ckboximageedit/ckboximageeditcommand
8
7
  */
@@ -2,7 +2,6 @@
2
2
  * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
4
4
  */
5
- /* globals AbortController, FormData, URL, window */
6
5
  /**
7
6
  * @module ckbox/ckboxuploadadapter
8
7
  */
package/src/utils.js CHANGED
@@ -75,7 +75,7 @@ export function blurHashToDataUrl(hash) {
75
75
  ctx.putImageData(imageData, 0, 0);
76
76
  return canvas.toDataURL();
77
77
  }
78
- catch (e) {
78
+ catch {
79
79
  return undefined;
80
80
  }
81
81
  }