@ikonai/sdk-react-ui-standard 1.0.62 → 1.0.63

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.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -24874,7 +24874,7 @@ function g_() {
24874
24874
  const O = N.clipboardData?.items;
24875
24875
  if (!O) return;
24876
24876
  const B = [];
24877
- for (const W of O)
24877
+ for (const W of Array.from(O))
24878
24878
  if (W.kind === "file") {
24879
24879
  const Y = W.getAsFile();
24880
24880
  Y && B.push(Y);
@@ -25012,7 +25012,7 @@ function v_() {
25012
25012
  (F) => {
25013
25013
  if (!F) return !1;
25014
25014
  const N = [];
25015
- for (const O of F.items)
25015
+ for (const O of Array.from(F.items))
25016
25016
  if (O.kind === "file") {
25017
25017
  const B = O.getAsFile();
25018
25018
  B && N.push(B);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikonai/sdk-react-ui-standard",
3
- "version": "1.0.62",
3
+ "version": "1.0.63",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",