@ddd-tool/domain-designer-generator 0.1.0-beta.10 → 0.1.0-beta.12

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 +49 -42
  2. package/package.json +7 -7
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/shared v3.5.13
2
+ * @vue/shared v3.5.14
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -17,7 +17,7 @@ const Fe = Object.assign, Un = Object.prototype.hasOwnProperty, Ve = (e, n) => U
17
17
  return (t) => n[t] || (n[t] = e(t));
18
18
  }, Yn = Wn((e) => e.charAt(0).toUpperCase() + e.slice(1)), q = (e, n) => !Object.is(e, n);
19
19
  /**
20
- * @vue/reactivity v3.5.13
20
+ * @vue/reactivity v3.5.14
21
21
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
22
22
  * @license MIT
23
23
  **/
@@ -79,20 +79,15 @@ function Xn(e) {
79
79
  return !!e._dirty;
80
80
  }
81
81
  function hn(e) {
82
- if (e.flags & 4 && !(e.flags & 16) || (e.flags &= -17, e.globalVersion === re))
82
+ if (e.flags & 4 && !(e.flags & 16) || (e.flags &= -17, e.globalVersion === re) || (e.globalVersion = re, !e.isSSR && e.flags & 128 && (!e.deps && !e._dirty || !Xn(e))))
83
83
  return;
84
- e.globalVersion = re;
85
- const n = e.dep;
86
- if (e.flags |= 2, n.version > 0 && !e.isSSR && e.deps && !Xn(e)) {
87
- e.flags &= -3;
88
- return;
89
- }
90
- const t = A, r = R;
84
+ e.flags |= 2;
85
+ const n = e.dep, t = A, r = R;
91
86
  A = e, R = !0;
92
87
  try {
93
88
  Zn(e);
94
89
  const o = e.fn(e._value);
95
- (n.version === 0 || q(o, e._value)) && (e._value = o, n.version++);
90
+ (n.version === 0 || q(o, e._value)) && (e.flags |= 128, e._value = o, n.version++);
96
91
  } catch (o) {
97
92
  throw n.version++, o;
98
93
  } finally {
@@ -666,15 +661,15 @@ function nn(e, n, t, r, o) {
666
661
  ), e;
667
662
  if (e.__v_raw && !(n && e.__v_isReactive))
668
663
  return e;
669
- const s = o.get(e);
670
- if (s)
671
- return s;
672
- const p = Ct(e);
673
- if (p === 0)
664
+ const s = Ct(e);
665
+ if (s === 0)
674
666
  return e;
667
+ const p = o.get(e);
668
+ if (p)
669
+ return p;
675
670
  const _ = new Proxy(
676
671
  e,
677
- p === 2 ? r : t
672
+ s === 2 ? r : t
678
673
  );
679
674
  return o.set(e, _), _;
680
675
  }
@@ -1129,7 +1124,7 @@ function sn(e) {
1129
1124
  return e ? e.__v_isRef === !0 : !1;
1130
1125
  }
1131
1126
  /**
1132
- * @vue/runtime-core v3.5.13
1127
+ * @vue/runtime-core v3.5.15
1133
1128
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
1134
1129
  * @license MIT
1135
1130
  **/
@@ -1640,29 +1635,41 @@ function yo() {
1640
1635
  const e = { style: "color:#3ba776" }, n = { style: "color:#1677ff" }, t = { style: "color:#f5222d" }, r = { style: "color:#eb2f96" }, o = {
1641
1636
  __vue_custom_formatter: !0,
1642
1637
  header(a) {
1643
- return B(a) ? a.__isVue ? ["div", e, "VueInstance"] : sn(a) ? [
1644
- "div",
1645
- {},
1646
- ["span", e, i(a)],
1647
- "<",
1648
- // avoid debugger accessing value affecting behavior
1649
- _("_value" in a ? a._value : a),
1650
- ">"
1651
- ] : En(a) ? [
1652
- "div",
1653
- {},
1654
- ["span", e, ke(a) ? "ShallowReactive" : "Reactive"],
1655
- "<",
1656
- _(a),
1657
- `>${ze(a) ? " (readonly)" : ""}`
1658
- ] : ze(a) ? [
1659
- "div",
1660
- {},
1661
- ["span", e, ke(a) ? "ShallowReadonly" : "Readonly"],
1662
- "<",
1663
- _(a),
1664
- ">"
1665
- ] : null : null;
1638
+ if (!B(a))
1639
+ return null;
1640
+ if (a.__isVue)
1641
+ return ["div", e, "VueInstance"];
1642
+ if (sn(a)) {
1643
+ const l = a.value;
1644
+ return [
1645
+ "div",
1646
+ {},
1647
+ ["span", e, i(a)],
1648
+ "<",
1649
+ _(l),
1650
+ ">"
1651
+ ];
1652
+ } else {
1653
+ if (En(a))
1654
+ return [
1655
+ "div",
1656
+ {},
1657
+ ["span", e, ke(a) ? "ShallowReactive" : "Reactive"],
1658
+ "<",
1659
+ _(a),
1660
+ `>${ze(a) ? " (readonly)" : ""}`
1661
+ ];
1662
+ if (ze(a))
1663
+ return [
1664
+ "div",
1665
+ {},
1666
+ ["span", e, ke(a) ? "ShallowReadonly" : "Readonly"],
1667
+ "<",
1668
+ _(a),
1669
+ ">"
1670
+ ];
1671
+ }
1672
+ return null;
1666
1673
  },
1667
1674
  hasBody(a) {
1668
1675
  return a && a.__isVue;
@@ -1746,7 +1753,7 @@ process.env.NODE_ENV;
1746
1753
  process.env.NODE_ENV;
1747
1754
  process.env.NODE_ENV;
1748
1755
  /**
1749
- * vue v3.5.13
1756
+ * vue v3.5.15
1750
1757
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
1751
1758
  * @license MIT
1752
1759
  **/
package/package.json CHANGED
@@ -1,22 +1,22 @@
1
1
  {
2
2
  "name": "@ddd-tool/domain-designer-generator",
3
- "version": "0.1.0-beta.10",
3
+ "version": "0.1.0-beta.12",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "keywords": [],
7
7
  "author": "",
8
8
  "license": "ISC",
9
9
  "devDependencies": {
10
- "@ddd-tool/domain-designer-core": "0.1.0-beta.7",
11
- "@types/node": "^22.13.10",
10
+ "@ddd-tool/domain-designer-core": "0.1.0-beta.10",
11
+ "@types/node": "^22.15.21",
12
12
  "@vitest/coverage-v8": "3.0.9",
13
- "@vue/reactivity": "^3.5.13",
13
+ "@vue/reactivity": "^3.5.14",
14
14
  "npm-run-all2": "^7.0.2",
15
15
  "read-pkg": "^9.0.1",
16
- "vite": "^6.2.2",
17
- "vitest": "^3.0.9",
16
+ "vite": "^6.3.5",
17
+ "vitest": "^3.1.4",
18
18
  "vue-fn": "0.1.0-beta.1",
19
- "vue-tsc": "^2.2.8"
19
+ "vue-tsc": "^2.2.10"
20
20
  },
21
21
  "peerDependencies": {
22
22
  "@vue/reactivity": "^3.5.13"