x-state-lib 0.3.14 → 0.3.15

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 +4 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -619,9 +619,10 @@ function co(t) {
619
619
  function uo(t) {
620
620
  const e = {};
621
621
  for (const r in t) {
622
- const n = t[r];
623
- for (const o in n.props)
624
- co(n[o]);
622
+ const n = {}, o = t[r];
623
+ for (const a in o.props)
624
+ n[a] = co(o[a]);
625
+ e[r] = n;
625
626
  }
626
627
  return e;
627
628
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "x-state-lib",
3
3
  "private": false,
4
- "version": "0.3.14",
4
+ "version": "0.3.15",
5
5
  "type": "module",
6
6
  "module": "dist/index.js",
7
7
  "types": "dist/index.d.ts",