jotai-state-tree 1.7.2 → 1.7.4

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.
@@ -1821,9 +1821,6 @@ var ModelType = class _ModelType {
1821
1821
  }
1822
1822
  return descriptor.value;
1823
1823
  }
1824
- if (propStr === "toggle") {
1825
- console.log("PROXY GET toggle:", propStr, "in allActions:", propStr in allActions, "keys:", Object.keys(allActions), "node alive:", node.$isAlive);
1826
- }
1827
1824
  if (propStr in allActions) {
1828
1825
  return allActions[propStr];
1829
1826
  }
package/dist/index.js CHANGED
@@ -1982,9 +1982,6 @@ var ModelType = class _ModelType {
1982
1982
  }
1983
1983
  return descriptor.value;
1984
1984
  }
1985
- if (propStr === "toggle") {
1986
- console.log("PROXY GET toggle:", propStr, "in allActions:", propStr in allActions, "keys:", Object.keys(allActions), "node alive:", node.$isAlive);
1987
- }
1988
1985
  if (propStr in allActions) {
1989
1986
  return allActions[propStr];
1990
1987
  }
package/dist/index.mjs CHANGED
@@ -96,7 +96,7 @@ import {
96
96
  union,
97
97
  unprotect,
98
98
  walk
99
- } from "./chunk-HHDXRF6H.mjs";
99
+ } from "./chunk-WEWWBVTQ.mjs";
100
100
 
101
101
  // src/map.ts
102
102
  var MSTMap = class extends Map {
package/dist/react.js CHANGED
@@ -1595,9 +1595,6 @@ var ModelType = class _ModelType {
1595
1595
  }
1596
1596
  return descriptor.value;
1597
1597
  }
1598
- if (propStr === "toggle") {
1599
- console.log("PROXY GET toggle:", propStr, "in allActions:", propStr in allActions, "keys:", Object.keys(allActions), "node alive:", node.$isAlive);
1600
- }
1601
1598
  if (propStr in allActions) {
1602
1599
  return allActions[propStr];
1603
1600
  }
package/dist/react.mjs CHANGED
@@ -12,7 +12,7 @@ import {
12
12
  setActiveTrackingFn,
13
13
  setIsApplyingSnapshotOrPatch,
14
14
  useRouter
15
- } from "./chunk-HHDXRF6H.mjs";
15
+ } from "./chunk-WEWWBVTQ.mjs";
16
16
 
17
17
  // src/react.ts
18
18
  import React, {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jotai-state-tree",
3
- "version": "1.7.2",
3
+ "version": "1.7.4",
4
4
  "description": "MobX-State-Tree API compatible library powered by Jotai",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -71,7 +71,7 @@
71
71
  "@vitest/coverage-v8": "^4.1.8",
72
72
  "eslint": "^10.4.1",
73
73
  "jotai": "^2.6.0",
74
- "jsdom": "^27.4.0",
74
+ "jsdom": "^29.1.1",
75
75
  "react": "^18.2.0",
76
76
  "react-dom": "^18.3.1",
77
77
  "semantic-release": "^25.0.2",
package/src/model.ts CHANGED
@@ -359,9 +359,6 @@ class ModelType<
359
359
  }
360
360
 
361
361
  // Check actions
362
- if (propStr === "toggle") {
363
- console.log("PROXY GET toggle:", propStr, "in allActions:", propStr in allActions, "keys:", Object.keys(allActions), "node alive:", node.$isAlive);
364
- }
365
362
  if (propStr in allActions) {
366
363
  return allActions[propStr];
367
364
  }