onchain-uikit 3.9.4-alpha90 → 3.9.4-alpha92

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/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -22955,7 +22955,7 @@ const Ks = class Ks {
22955
22955
  static ArrayAttributeFlat(t, r = "children", n) {
22956
22956
  const i = [...t], o = [];
22957
22957
  for (; i.length; ) {
22958
- const f = i.shift(), u = f[r];
22958
+ const f = i.shift(), u = f ? f[r] : [];
22959
22959
  if (n == null || n(f), o.push(f), u != null && u.length)
22960
22960
  for (let a = u.length - 1; a >= 0; a--)
22961
22961
  i.unshift(u[a]);
@@ -27367,7 +27367,7 @@ const Pee = ({
27367
27367
  const b = or(() => {
27368
27368
  const E = /* @__PURE__ */ new Map();
27369
27369
  return cr.ArrayAttributeFlat(e.columns, "children", (T) => {
27370
- E.set(T.dataIndex, T);
27370
+ T && E.set(T.dataIndex, T);
27371
27371
  }), E;
27372
27372
  }, [e.columns]), _ = (E) => (T, { size: R }) => {
27373
27373
  if (T.stopImmediatePropagation(), b.has(E)) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "onchain-uikit",
3
3
  "private": false,
4
- "version": "3.9.4-alpha90",
4
+ "version": "3.9.4-alpha92",
5
5
  "scripts": {
6
6
  "dev": "vite",
7
7
  "build": "cross-env NODE_OPTIONS=--max_old_space_size=4096 vite build",