@tachui/modifiers 0.8.5-alpha → 0.8.10-alpha.0

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.
@@ -1,18 +1,32 @@
1
- var Te = Object.defineProperty;
2
- var xe = (o, s, e) => s in o ? Te(o, s, { enumerable: !0, configurable: !0, writable: !0, value: e }) : o[s] = e;
3
- var f = (o, s, e) => xe(o, typeof s != "symbol" ? s + "" : s, e);
4
- import { globalModifierRegistry as Le } from "@tachui/registry";
5
- import { isSignal as h, isComputed as y, createEffect as S, getThemeSignal as J } from "@tachui/core/reactive";
1
+ var Le = Object.defineProperty;
2
+ var Ae = (o, s, e) => s in o ? Le(o, s, { enumerable: !0, configurable: !0, writable: !0, value: e }) : o[s] = e;
3
+ var f = (o, s, e) => Ae(o, typeof s != "symbol" ? s + "" : s, e);
4
+ import { globalModifierRegistry as ke } from "@tachui/registry";
5
+ import { isSignal as m, isComputed as h, createEffect as S, getThemeSignal as J } from "@tachui/core/reactive";
6
+ import { bindReactiveStyle as Pe } from "@tachui/core/modifiers/base";
6
7
  import { shouldExpandForInfinity as ie, dimensionToCSS as L, isInfinity as A } from "@tachui/core/constants/layout";
7
- import { AnimationModifier as Z, LifecycleModifier as Ae, LayoutModifier as oe, ResizableModifier as ke, AppearanceModifier as R } from "@tachui/core/modifiers";
8
- import { gradientToCSS as Pe } from "@tachui/core/gradients/css-generator";
8
+ import { AnimationModifier as Z, LifecycleModifier as Ie, LayoutModifier as oe, ResizableModifier as $e, AppearanceModifier as R } from "@tachui/core/modifiers";
9
+ import { gradientToCSS as Ve } from "@tachui/core/gradients/css-generator";
9
10
  const I = {
10
11
  LAYOUT: 100,
11
12
  APPEARANCE: 200,
12
13
  INTERACTION: 300,
13
14
  ANIMATION: 400,
14
15
  CUSTOM: 500
15
- };
16
+ }, ye = Symbol.for("tachui.modifier.instanceId"), De = "package";
17
+ let ge = 0;
18
+ function Re(o) {
19
+ const s = o[ye];
20
+ if (typeof s == "number") return s;
21
+ ge += 1;
22
+ const e = ge;
23
+ return Object.defineProperty(o, ye, {
24
+ value: e,
25
+ enumerable: !1,
26
+ configurable: !1,
27
+ writable: !1
28
+ }), e;
29
+ }
16
30
  let v = class {
17
31
  constructor(s) {
18
32
  this.properties = s;
@@ -23,7 +37,7 @@ let v = class {
23
37
  resolveReactiveProps(s, e) {
24
38
  const t = {};
25
39
  for (const [n, i] of Object.entries(s))
26
- h(i) || y(i), t[n] = i;
40
+ m(i) || h(i), t[n] = i;
27
41
  return t;
28
42
  }
29
43
  /**
@@ -32,7 +46,7 @@ let v = class {
32
46
  applyStyleChange(s, e, t) {
33
47
  if (s instanceof HTMLElement) {
34
48
  const n = this.toCSSProperty(e);
35
- if (h(t) || y(t))
49
+ if (m(t) || h(t))
36
50
  S(() => {
37
51
  const i = t(), r = String(i);
38
52
  if (r.includes("!important")) {
@@ -90,40 +104,33 @@ let v = class {
90
104
  */
91
105
  applyStyles(s, e) {
92
106
  if (s instanceof HTMLElement || s.style) {
93
- const t = (s instanceof HTMLElement, s.style);
94
- for (const [n, i] of Object.entries(e))
95
- if (i !== void 0) {
96
- const r = this.toCSSProperty(n);
97
- if (h(i) || y(i))
98
- S(() => {
99
- const a = i();
100
- (n === "color" || n === "background") && console.log(`[BaseModifier] Signal resolved for ${n}:`, {
101
- hasResolve: a && typeof a == "object" && "resolve" in a,
102
- value: a
103
- });
104
- const l = this.toCSSValueForProperty(
105
- r,
106
- a
107
- );
108
- if (t.setProperty)
109
- if (typeof l == "string" && l.includes("!important")) {
110
- const c = l.replace(/\s*!important\s*$/, "").trim();
111
- t.setProperty(r, c, "important");
112
- } else
113
- t.setProperty(r, l);
114
- else
115
- t[r] = l;
107
+ const t = (s instanceof HTMLElement, s.style), n = (i, r) => {
108
+ if (t.setProperty)
109
+ if (typeof r == "string" && r.includes("!important")) {
110
+ const a = r.replace(/\s*!important\s*$/, "").trim();
111
+ t.setProperty(i, a, "important");
112
+ } else
113
+ t.setProperty(i, r);
114
+ else
115
+ t[i] = r;
116
+ };
117
+ for (const [i, r] of Object.entries(e))
118
+ if (r !== void 0) {
119
+ const a = this.toCSSProperty(i);
120
+ if (m(r) || h(r)) {
121
+ const l = r, c = Re(this);
122
+ Pe({
123
+ element: s,
124
+ accessor: l,
125
+ updaterId: `${De}:${c}:${a}`,
126
+ updater: (d) => {
127
+ const u = this.toCSSValueForProperty(a, d);
128
+ n(a, u);
129
+ }
116
130
  });
117
- else {
118
- const a = this.toCSSValueForProperty(r, i);
119
- if (t.setProperty)
120
- if (typeof a == "string" && a.includes("!important")) {
121
- const l = a.replace(/\s*!important\s*$/, "").trim();
122
- t.setProperty(r, l, "important");
123
- } else
124
- t.setProperty(r, a);
125
- else
126
- t[r] = a;
131
+ } else {
132
+ const l = this.toCSSValueForProperty(a, r);
133
+ n(a, l);
127
134
  }
128
135
  }
129
136
  }
@@ -152,7 +159,7 @@ let v = class {
152
159
  cleanup: []
153
160
  };
154
161
  }
155
- }, So = class extends v {
162
+ }, xo = class extends v {
156
163
  constructor() {
157
164
  super(...arguments);
158
165
  f(this, "type", "layout");
@@ -174,19 +181,19 @@ let v = class {
174
181
  }
175
182
  applyOffsetTransform(e, t) {
176
183
  const { x: n, y: i } = t;
177
- if (h(n) || y(n) || h(i) || y(i))
184
+ if (m(n) || h(n) || m(i) || h(i))
178
185
  S(() => {
179
- const r = h(n) || y(n) ? n() : n ?? 0, a = h(i) || y(i) ? i() : i ?? 0, l = this.toCSSValue(r), c = this.toCSSValue(a), d = `translate(${l}, ${c})`, m = (e.style.transform || "").split(" ").filter((g) => g && !g.startsWith("translate(")).join(" "), p = m ? `${m} ${d}` : d;
186
+ const r = m(n) || h(n) ? n() : n ?? 0, a = m(i) || h(i) ? i() : i ?? 0, l = this.toCSSValue(r), c = this.toCSSValue(a), d = `translate(${l}, ${c})`, y = (e.style.transform || "").split(" ").filter((g) => g && !g.startsWith("translate(")).join(" "), p = y ? `${y} ${d}` : d;
180
187
  e.style.transform = p;
181
188
  });
182
189
  else {
183
- const r = n ?? 0, a = i ?? 0, l = this.toCSSValue(r), c = this.toCSSValue(a), d = `translate(${l}, ${c})`, m = (e.style.transform || "").split(" ").filter((g) => g && !g.startsWith("translate(")).join(" "), p = m ? `${m} ${d}` : d;
190
+ const r = n ?? 0, a = i ?? 0, l = this.toCSSValue(r), c = this.toCSSValue(a), d = `translate(${l}, ${c})`, y = (e.style.transform || "").split(" ").filter((g) => g && !g.startsWith("translate(")).join(" "), p = y ? `${y} ${d}` : d;
184
191
  e.style.transform = p;
185
192
  }
186
193
  }
187
194
  applyAspectRatio(e, t) {
188
195
  const { ratio: n, contentMode: i } = t;
189
- n !== void 0 && (h(n) || y(n) ? S(() => {
196
+ n !== void 0 && (m(n) || h(n) ? S(() => {
190
197
  const r = typeof n == "function" ? n() : n;
191
198
  e.style.aspectRatio = String(r);
192
199
  }) : e.style.aspectRatio = String(n), i === "fill" ? e.style.objectFit = "cover" : e.style.objectFit = "contain");
@@ -194,9 +201,9 @@ let v = class {
194
201
  // Phase 3 - Epic: Butternut Transform Methods
195
202
  applyScaleTransform(e, t) {
196
203
  const { x: n, y: i, anchor: r } = t, a = n ?? 1, l = i ?? a;
197
- if (h(a) || y(a) || h(l) || y(l))
204
+ if (m(a) || h(a) || m(l) || h(l))
198
205
  S(() => {
199
- const c = h(a) || y(a) ? a() : a, d = h(l) || y(l) ? l() : l, u = `scale(${c}, ${d})`;
206
+ const c = m(a) || h(a) ? a() : a, d = m(l) || h(l) ? l() : l, u = `scale(${c}, ${d})`;
200
207
  e.style.transformOrigin = this.getTransformOrigin(
201
208
  r || "center"
202
209
  );
@@ -208,15 +215,15 @@ let v = class {
208
215
  e.style.transformOrigin = this.getTransformOrigin(
209
216
  r || "center"
210
217
  );
211
- const u = (e.style.transform || "").replace(/\s*scale\([^)]*\)\s*/g, " ").replace(/\s+/g, " ").trim(), m = u ? `${u} ${c}` : c;
212
- e.style.transform = m;
218
+ const u = (e.style.transform || "").replace(/\s*scale\([^)]*\)\s*/g, " ").replace(/\s+/g, " ").trim(), y = u ? `${u} ${c}` : c;
219
+ e.style.transform = y;
213
220
  }
214
221
  }
215
222
  applyAbsolutePosition(e, t) {
216
223
  const { x: n, y: i } = t;
217
- if (e.style.position = "absolute", h(n) || y(n) || h(i) || y(i))
224
+ if (e.style.position = "absolute", m(n) || h(n) || m(i) || h(i))
218
225
  S(() => {
219
- const r = h(n) || y(n) ? n() : n ?? 0, a = h(i) || y(i) ? i() : i ?? 0;
226
+ const r = m(n) || h(n) ? n() : n ?? 0, a = m(i) || h(i) ? i() : i ?? 0;
220
227
  e.style.left = this.toCSSValue(r), e.style.top = this.toCSSValue(a);
221
228
  });
222
229
  else {
@@ -225,7 +232,7 @@ let v = class {
225
232
  }
226
233
  }
227
234
  applyZIndex(e, t) {
228
- h(t) || y(t) ? S(() => {
235
+ m(t) || h(t) ? S(() => {
229
236
  const n = t();
230
237
  e.style.zIndex = String(n);
231
238
  }) : e.style.zIndex = String(t);
@@ -318,7 +325,7 @@ let v = class {
318
325
  }
319
326
  return n;
320
327
  }
321
- }, Co = class extends v {
328
+ }, Ao = class extends v {
322
329
  constructor() {
323
330
  super(...arguments);
324
331
  f(this, "type", "appearance");
@@ -404,7 +411,7 @@ let v = class {
404
411
  const n = [];
405
412
  return e.blur !== void 0 && n.push(`blur(${e.blur}px)`), e.brightness !== void 0 && n.push(`brightness(${e.brightness})`), e.contrast !== void 0 && n.push(`contrast(${e.contrast})`), e.saturation !== void 0 && n.push(`saturate(${e.saturation})`), e.hueRotation !== void 0 && n.push(`hue-rotate(${e.hueRotation}deg)`), e.grayscale !== void 0 && n.push(`grayscale(${e.grayscale})`), e.colorInvert !== void 0 && n.push(`invert(${e.colorInvert})`), n.length > 0 && (t.filter = n.join(" ")), t;
406
413
  }
407
- }, Mo = class extends v {
414
+ }, Po = class extends v {
408
415
  constructor() {
409
416
  super(...arguments);
410
417
  f(this, "type", "interaction");
@@ -442,12 +449,12 @@ let v = class {
442
449
  Math.sqrt(
443
450
  Math.pow(b.clientX - a.x, 2) + Math.pow(b.clientY - a.y, 2)
444
451
  ) > i && c();
445
- }, m = () => {
452
+ }, y = () => {
446
453
  c();
447
454
  }, p = () => {
448
455
  c();
449
456
  };
450
- e.addEventListener("pointerdown", d), e.addEventListener("pointermove", u), e.addEventListener("pointerup", m), e.addEventListener(
457
+ e.addEventListener("pointerdown", d), e.addEventListener("pointermove", u), e.addEventListener("pointerup", y), e.addEventListener(
451
458
  "pointercancel",
452
459
  p
453
460
  ), e._longPressCleanup = c;
@@ -469,7 +476,7 @@ let v = class {
469
476
  shift: r.shiftKey,
470
477
  alt: r.altKey
471
478
  }, c = r.key.toLowerCase() === t.key.toLowerCase(), d = Object.entries(a).every(
472
- ([u, m]) => m === l[u]
479
+ ([u, y]) => y === l[u]
473
480
  );
474
481
  c && d && (r.preventDefault(), t.action());
475
482
  };
@@ -483,7 +490,7 @@ let v = class {
483
490
  setupFocusManagement(e, t) {
484
491
  if (!(e instanceof HTMLElement)) return;
485
492
  const n = e;
486
- n.hasAttribute("tabindex") || n.setAttribute("tabindex", "0"), h(t) || y(t) ? S(() => {
493
+ n.hasAttribute("tabindex") || n.setAttribute("tabindex", "0"), m(t) || h(t) ? S(() => {
487
494
  t() ? n.focus() : n.blur();
488
495
  }) : t && n.focus();
489
496
  }
@@ -526,7 +533,7 @@ let v = class {
526
533
  setupHitTesting(e, t) {
527
534
  e instanceof HTMLElement && (e.style.pointerEvents = t ? "" : "none");
528
535
  }
529
- }, Ie = class extends v {
536
+ }, He = class extends v {
530
537
  constructor() {
531
538
  super(...arguments);
532
539
  f(this, "type", "animation");
@@ -551,7 +558,7 @@ let v = class {
551
558
  t.element.style.animation = `${r} ${l}ms ${c} ${d} ${u}`;
552
559
  }
553
560
  }
554
- if (n.transform && t.element instanceof HTMLElement && (h(n.transform) || y(n.transform) ? S(() => {
561
+ if (n.transform && t.element instanceof HTMLElement && (m(n.transform) || h(n.transform) ? S(() => {
555
562
  const i = n.transform();
556
563
  t.element instanceof HTMLElement && (t.element.style.transform = i);
557
564
  }) : t.element.style.transform = n.transform), n.rotationEffect && t.element instanceof HTMLElement) {
@@ -566,7 +573,7 @@ let v = class {
566
573
  leading: "0% 50%",
567
574
  trailing: "100% 50%"
568
575
  }[r || "center"] || "50% 50%", c = `rotate(${i}deg)`;
569
- if (h(i) || y(i))
576
+ if (m(i) || h(i))
570
577
  S(() => {
571
578
  const u = `rotate(${typeof i == "function" ? i() : i}deg)`;
572
579
  if (t.element instanceof HTMLElement) {
@@ -577,8 +584,8 @@ let v = class {
577
584
  });
578
585
  else if (t.element instanceof HTMLElement) {
579
586
  t.element.style.transformOrigin = l;
580
- const u = (t.element.style.transform || "").split(" ").filter((p) => p && !p.startsWith("rotate(")).join(" "), m = u ? `${u} ${c}` : c;
581
- t.element.style.transform = m;
587
+ const u = (t.element.style.transform || "").split(" ").filter((p) => p && !p.startsWith("rotate(")).join(" "), y = u ? `${u} ${c}` : c;
588
+ t.element.style.transform = y;
582
589
  }
583
590
  }
584
591
  n.overlay && t.element instanceof HTMLElement && this.applyOverlay(t.element, n.overlay, t);
@@ -669,7 +676,7 @@ let v = class {
669
676
  );
670
677
  t || (t = document.createElement("style"), t.id = "tachui-animations", document.head.appendChild(t)), t.appendChild(document.createTextNode(e));
671
678
  }
672
- }, Lo = class extends v {
679
+ }, Vo = class extends v {
673
680
  constructor() {
674
681
  super(...arguments);
675
682
  f(this, "type", "lifecycle");
@@ -755,7 +762,7 @@ let v = class {
755
762
  const b = Math.min(i / a, 1);
756
763
  l.style.opacity = String(b * 0.8), l.style.top = `${-50 + b * 20}px`;
757
764
  }
758
- }, m = async () => {
765
+ }, y = async () => {
759
766
  if (n || i < a) {
760
767
  l.style.opacity = "0", l.style.top = "-50px", i = 0;
761
768
  return;
@@ -773,18 +780,18 @@ let v = class {
773
780
  passive: !1
774
781
  }), e.addEventListener("touchmove", u, {
775
782
  passive: !1
776
- }), e.addEventListener("touchend", m), this.addCleanup(() => {
783
+ }), e.addEventListener("touchend", y), this.addCleanup(() => {
777
784
  e.removeEventListener(
778
785
  "touchstart",
779
786
  d
780
- ), e.removeEventListener("touchmove", u), e.removeEventListener("touchend", m), l.parentElement && l.parentElement.removeChild(l);
787
+ ), e.removeEventListener("touchmove", u), e.removeEventListener("touchend", y), l.parentElement && l.parentElement.removeChild(l);
781
788
  });
782
789
  }
783
790
  addCleanup(e) {
784
791
  this.properties._cleanupFunctions || (this.properties._cleanupFunctions = []), this.properties._cleanupFunctions.push(e);
785
792
  }
786
793
  };
787
- const $e = "@tachui/modifiers", Ve = "0.8.0-alpha", ko = $e, De = Ve;
794
+ const Oe = "@tachui/modifiers", _e = "0.8.10-alpha.0", Ro = Oe, Ne = _e;
788
795
  class $ extends v {
789
796
  // Optimized priority for internal spacing (before margin at 50)
790
797
  constructor(e) {
@@ -798,7 +805,7 @@ class $ extends v {
798
805
  this.applyStyles(t.element, n);
799
806
  }
800
807
  computePaddingStyles(e) {
801
- const t = {}, n = (i) => h(i) || y(i) ? i : typeof i == "number" ? `${i}px` : i === "auto" ? i : typeof i == "string" ? /^-?\d*\.?\d+(px|rem|em|%|vw|vh|vmin|vmax)$/.test(i) ? i : `${i}px` : String(i);
808
+ const t = {}, n = (i) => m(i) || h(i) ? i : typeof i == "number" ? `${i}px` : i === "auto" ? i : typeof i == "string" ? /^-?\d*\.?\d+(px|rem|em|%|vw|vh|vmin|vmax)$/.test(i) ? i : `${i}px` : String(i);
802
809
  if ("all" in e && e.all !== void 0)
803
810
  t.padding = n(e.all);
804
811
  else {
@@ -816,33 +823,33 @@ class $ extends v {
816
823
  }
817
824
  }
818
825
  function M(o) {
819
- return typeof o == "number" || typeof o == "string" ? new $({ all: o }) : new $(o);
826
+ return m(o) || h(o) ? new $({ all: o }) : typeof o == "number" || typeof o == "string" ? new $({ all: o }) : new $(o);
820
827
  }
821
- function Re(o) {
828
+ function Be(o) {
822
829
  return new $({ top: o });
823
830
  }
824
- function Oe(o) {
831
+ function ze(o) {
825
832
  return new $({ bottom: o });
826
833
  }
827
- function He(o) {
834
+ function Fe(o) {
828
835
  return new $({ left: o });
829
836
  }
830
- function _e(o) {
837
+ function We(o) {
831
838
  return new $({ right: o });
832
839
  }
833
- function Ne(o) {
840
+ function je(o) {
834
841
  return new $({ leading: o });
835
842
  }
836
- function Be(o) {
843
+ function Ue(o) {
837
844
  return new $({ trailing: o });
838
845
  }
839
- function ze(o) {
846
+ function Ke(o) {
840
847
  return new $({ horizontal: o });
841
848
  }
842
- function Fe(o) {
849
+ function Ge(o) {
843
850
  return new $({ vertical: o });
844
851
  }
845
- const Po = {
852
+ const Ho = {
846
853
  /**
847
854
  * Extra small padding (4px) - For tight spacing
848
855
  */
@@ -934,7 +941,7 @@ class V extends v {
934
941
  this.applyStyles(t.element, n);
935
942
  }
936
943
  computeMarginStyles(e) {
937
- const t = {}, n = (i) => h(i) || y(i) ? i : typeof i == "number" ? `${i}px` : i === "auto" ? i : typeof i == "string" ? /^-?\d*\.?\d+(px|rem|em|%|vw|vh|vmin|vmax)$/.test(i) ? i : `${i}px` : String(i);
944
+ const t = {}, n = (i) => m(i) || h(i) ? i : typeof i == "number" ? `${i}px` : i === "auto" ? i : typeof i == "string" ? /^-?\d*\.?\d+(px|rem|em|%|vw|vh|vmin|vmax)$/.test(i) ? i : `${i}px` : String(i);
938
945
  if ("all" in e && e.all !== void 0)
939
946
  t.margin = n(e.all);
940
947
  else {
@@ -954,31 +961,31 @@ class V extends v {
954
961
  function T(o) {
955
962
  return typeof o == "number" || typeof o == "string" ? new V({ all: o }) : new V(o);
956
963
  }
957
- function We(o) {
964
+ function Ye(o) {
958
965
  return new V({ top: o });
959
966
  }
960
- function je(o) {
967
+ function Xe(o) {
961
968
  return new V({ bottom: o });
962
969
  }
963
- function Ue(o) {
970
+ function Ze(o) {
964
971
  return new V({ left: o });
965
972
  }
966
- function Ke(o) {
973
+ function qe(o) {
967
974
  return new V({ right: o });
968
975
  }
969
- function Ge(o) {
976
+ function Je(o) {
970
977
  return new V({ leading: o });
971
978
  }
972
- function Ye(o) {
979
+ function Qe(o) {
973
980
  return new V({ trailing: o });
974
981
  }
975
- function Xe(o) {
982
+ function et(o) {
976
983
  return new V({ horizontal: o });
977
984
  }
978
- function Ze(o) {
985
+ function tt(o) {
979
986
  return new V({ vertical: o });
980
987
  }
981
- const Io = {
988
+ const Oo = {
982
989
  /**
983
990
  * Extra small margin (4px) - For tight spacing
984
991
  */
@@ -1103,35 +1110,35 @@ class N extends v {
1103
1110
  return t;
1104
1111
  }
1105
1112
  }
1106
- function qe(o) {
1113
+ function nt(o) {
1107
1114
  return new N(o);
1108
1115
  }
1109
- function Je(o) {
1116
+ function it(o) {
1110
1117
  return new N({ width: o });
1111
1118
  }
1112
- function Qe(o) {
1119
+ function ot(o) {
1113
1120
  return new N({ height: o });
1114
1121
  }
1115
- function et(o) {
1122
+ function rt(o) {
1116
1123
  return new N({ maxWidth: o });
1117
1124
  }
1118
- function tt(o) {
1125
+ function st(o) {
1119
1126
  return new N({ minWidth: o });
1120
1127
  }
1121
- function nt(o) {
1128
+ function at(o) {
1122
1129
  return new N({ maxHeight: o });
1123
1130
  }
1124
- function it(o) {
1131
+ function lt(o) {
1125
1132
  return new N({ minHeight: o });
1126
1133
  }
1127
- class ee extends Ie {
1134
+ class ee extends He {
1128
1135
  constructor() {
1129
1136
  super(...arguments);
1130
1137
  // Override type to be 'transition' instead of 'animation'
1131
1138
  f(this, "type", "transition");
1132
1139
  }
1133
1140
  }
1134
- function ot(o, s, e, t) {
1141
+ function ct(o, s, e, t) {
1135
1142
  if (typeof o == "object")
1136
1143
  return new ee({ transition: o });
1137
1144
  const n = o;
@@ -1151,19 +1158,19 @@ function ot(o, s, e, t) {
1151
1158
  }
1152
1159
  });
1153
1160
  }
1154
- function rt(o) {
1161
+ function ft(o) {
1155
1162
  return new Z({ transform: o });
1156
1163
  }
1157
- function st(o) {
1164
+ function dt(o) {
1158
1165
  return o ? new Z({ animation: o }) : new Z({});
1159
1166
  }
1160
- function at(o) {
1167
+ function ut(o) {
1161
1168
  return new Z({ transitions: o });
1162
1169
  }
1163
- function lt(o) {
1164
- return new Ae({ task: o });
1170
+ function pt(o) {
1171
+ return new Ie({ task: o });
1165
1172
  }
1166
- class O extends v {
1173
+ class H extends v {
1167
1174
  // Optimized priority for layout modifiers
1168
1175
  constructor(e) {
1169
1176
  super(e);
@@ -1191,36 +1198,36 @@ class O extends v {
1191
1198
  }
1192
1199
  }
1193
1200
  function k(o) {
1194
- return new O(o);
1201
+ return new H(o);
1195
1202
  }
1196
- function ct(o) {
1197
- return new O({ flexGrow: o });
1203
+ function mt(o) {
1204
+ return new H({ flexGrow: o });
1198
1205
  }
1199
- function ft(o) {
1200
- return new O({ flexShrink: o });
1206
+ function ht(o) {
1207
+ return new H({ flexShrink: o });
1201
1208
  }
1202
- function dt(o) {
1203
- return new O({ flexBasis: o });
1209
+ function yt(o) {
1210
+ return new H({ flexBasis: o });
1204
1211
  }
1205
- function ut(o) {
1206
- return new O({ justifyContent: o });
1212
+ function gt(o) {
1213
+ return new H({ justifyContent: o });
1207
1214
  }
1208
- function pt(o) {
1209
- return new O({ alignItems: o });
1215
+ function vt(o) {
1216
+ return new H({ alignItems: o });
1210
1217
  }
1211
- function mt(o) {
1212
- return new O({ alignSelf: o });
1218
+ function bt(o) {
1219
+ return new H({ alignSelf: o });
1213
1220
  }
1214
- function ht(o) {
1215
- return new O({ gap: o });
1221
+ function St(o) {
1222
+ return new H({ gap: o });
1216
1223
  }
1217
- function yt(o) {
1218
- return new O({ flexDirection: o });
1224
+ function wt(o) {
1225
+ return new H({ flexDirection: o });
1219
1226
  }
1220
- function gt(o) {
1221
- return new O({ flexWrap: o });
1227
+ function Ct(o) {
1228
+ return new H({ flexWrap: o });
1222
1229
  }
1223
- const $o = {
1230
+ const _o = {
1224
1231
  /**
1225
1232
  * Standard flex container
1226
1233
  * Sets display: flex for basic flex container
@@ -1358,7 +1365,7 @@ const $o = {
1358
1365
  alignItems: "stretch"
1359
1366
  })
1360
1367
  };
1361
- class vt extends v {
1368
+ class Et extends v {
1362
1369
  constructor() {
1363
1370
  super(...arguments);
1364
1371
  f(this, "type", "offset");
@@ -1368,8 +1375,8 @@ class vt extends v {
1368
1375
  apply(e, t) {
1369
1376
  if (!t.element) return;
1370
1377
  const { x: n, y: i = 0 } = this.properties;
1371
- h(n) || y(n) || h(i) || y(i) ? S(() => {
1372
- const r = h(n) || y(n) ? n() : n, a = h(i) || y(i) ? i() : i;
1378
+ m(n) || h(n) || m(i) || h(i) ? S(() => {
1379
+ const r = m(n) || h(n) ? n() : n, a = m(i) || h(i) ? i() : i;
1373
1380
  this.applyOffset(t.element, r, a);
1374
1381
  }) : this.applyOffset(t.element, n, i);
1375
1382
  }
@@ -1382,13 +1389,13 @@ class vt extends v {
1382
1389
  */
1383
1390
  validateOffset(e, t) {
1384
1391
  if (typeof process < "u" && process.env.NODE_ENV === "development") {
1385
- typeof e != "number" && !h(e) && !y(e) && console.warn(
1392
+ typeof e != "number" && !m(e) && !h(e) && console.warn(
1386
1393
  `OffsetModifier: x value must be a number or reactive signal. Got: ${typeof e}`
1387
- ), t !== void 0 && typeof t != "number" && !h(t) && !y(t) && console.warn(
1394
+ ), t !== void 0 && typeof t != "number" && !m(t) && !h(t) && console.warn(
1388
1395
  `OffsetModifier: y value must be a number or reactive signal. Got: ${typeof t}`
1389
1396
  );
1390
1397
  const n = (i, r) => {
1391
- const a = h(i) || y(i) ? i.peek?.() || i() : i;
1398
+ const a = m(i) || h(i) ? i.peek?.() || i() : i;
1392
1399
  typeof a == "number" && (Math.abs(a) > 1e3 && console.warn(
1393
1400
  "OffsetModifier: Very large offset values may cause layout issues"
1394
1401
  ), a !== Math.round(a * 100) / 100 && console.info(
@@ -1399,11 +1406,11 @@ class vt extends v {
1399
1406
  }
1400
1407
  }
1401
1408
  }
1402
- function bt(o, s) {
1403
- const e = new vt({ x: o, y: s ?? 0 });
1409
+ function Mt(o, s) {
1410
+ const e = new Et({ x: o, y: s ?? 0 });
1404
1411
  return typeof process < "u" && process.env.NODE_ENV === "development" && e.validateOffset(o, s), e;
1405
1412
  }
1406
- class St extends v {
1413
+ class Tt extends v {
1407
1414
  constructor() {
1408
1415
  super(...arguments);
1409
1416
  f(this, "type", "scaleEffect");
@@ -1413,8 +1420,8 @@ class St extends v {
1413
1420
  apply(e, t) {
1414
1421
  if (!t.element) return;
1415
1422
  const { x: n, y: i, anchor: r = "center" } = this.properties, a = i ?? n;
1416
- typeof process < "u" && process.env.NODE_ENV === "development" && this.validateScale(n, a, r), h(n) || y(n) || h(a) || y(a) ? S(() => {
1417
- const l = h(n) || y(n) ? n() : n, c = h(a) || y(a) ? a() : a;
1423
+ typeof process < "u" && process.env.NODE_ENV === "development" && this.validateScale(n, a, r), m(n) || h(n) || m(a) || h(a) ? S(() => {
1424
+ const l = m(n) || h(n) ? n() : n, c = m(a) || h(a) ? a() : a;
1418
1425
  this.applyScale(
1419
1426
  t.element,
1420
1427
  l,
@@ -1447,9 +1454,9 @@ class St extends v {
1447
1454
  */
1448
1455
  validateScale(e, t, n) {
1449
1456
  if (typeof process < "u" && process.env.NODE_ENV === "development") {
1450
- typeof e != "number" && !h(e) && !y(e) && console.warn(
1457
+ typeof e != "number" && !m(e) && !h(e) && console.warn(
1451
1458
  `ScaleEffectModifier: x value must be a number or reactive signal. Got: ${typeof e}`
1452
- ), typeof t != "number" && !h(t) && !y(t) && console.warn(
1459
+ ), typeof t != "number" && !m(t) && !h(t) && console.warn(
1453
1460
  `ScaleEffectModifier: y value must be a number or reactive signal. Got: ${typeof t}`
1454
1461
  );
1455
1462
  const i = [
@@ -1468,7 +1475,7 @@ class St extends v {
1468
1475
  i
1469
1476
  );
1470
1477
  const r = (a, l) => {
1471
- const c = h(a) || y(a) ? a.peek?.() || a() : a;
1478
+ const c = m(a) || h(a) ? a.peek?.() || a() : a;
1472
1479
  typeof c == "number" && (c <= 0 && console.warn(
1473
1480
  `ScaleEffectModifier: ${l} scale value ${c} will make element invisible`
1474
1481
  ), c > 10 && console.warn(
@@ -1481,10 +1488,10 @@ class St extends v {
1481
1488
  }
1482
1489
  }
1483
1490
  }
1484
- function wt(o, s, e = "center") {
1485
- return new St({ x: o, y: s, anchor: e });
1491
+ function xt(o, s, e = "center") {
1492
+ return new Tt({ x: o, y: s, anchor: e });
1486
1493
  }
1487
- class ye extends v {
1494
+ class ve extends v {
1488
1495
  constructor() {
1489
1496
  super(...arguments);
1490
1497
  f(this, "type", "aspectRatio");
@@ -1494,7 +1501,7 @@ class ye extends v {
1494
1501
  apply(e, t) {
1495
1502
  if (!t.element) return;
1496
1503
  const { ratio: n, contentMode: i } = this.properties;
1497
- typeof process < "u" && process.env.NODE_ENV === "development" && this.validateAspectRatio(n, i), n !== void 0 ? h(n) || y(n) ? S(() => {
1504
+ typeof process < "u" && process.env.NODE_ENV === "development" && this.validateAspectRatio(n, i), n !== void 0 ? m(n) || h(n) ? S(() => {
1498
1505
  const r = n();
1499
1506
  this.applyAspectRatio(
1500
1507
  t.element,
@@ -1522,10 +1529,10 @@ class ye extends v {
1522
1529
  validateAspectRatio(e, t) {
1523
1530
  if (typeof process < "u" && process.env.NODE_ENV === "development") {
1524
1531
  if (e !== void 0) {
1525
- typeof e != "number" && !h(e) && !y(e) && console.warn(
1532
+ typeof e != "number" && !m(e) && !h(e) && console.warn(
1526
1533
  `AspectRatioModifier: ratio must be a number or reactive signal. Got: ${typeof e}`
1527
1534
  );
1528
- const i = h(e) || y(e) ? e.peek?.() || e() : e;
1535
+ const i = m(e) || h(e) ? e.peek?.() || e() : e;
1529
1536
  typeof i == "number" && (i <= 0 && console.warn(
1530
1537
  `AspectRatioModifier: ratio must be positive. Got: ${i}`
1531
1538
  ), i > 100 && console.warn(
@@ -1545,7 +1552,7 @@ class ye extends v {
1545
1552
  /**
1546
1553
  * Get common aspect ratios
1547
1554
  */
1548
- f(ye, "COMMON_RATIOS", {
1555
+ f(ve, "COMMON_RATIOS", {
1549
1556
  square: 1,
1550
1557
  portrait: 3 / 4,
1551
1558
  landscape: 4 / 3,
@@ -1554,10 +1561,10 @@ f(ye, "COMMON_RATIOS", {
1554
1561
  golden: 1.618,
1555
1562
  photo: 3 / 2
1556
1563
  });
1557
- function Ct(o, s = "fit") {
1558
- return new ye({ ratio: o, contentMode: s });
1564
+ function Lt(o, s = "fit") {
1565
+ return new ve({ ratio: o, contentMode: s });
1559
1566
  }
1560
- class Et extends v {
1567
+ class At extends v {
1561
1568
  constructor() {
1562
1569
  super(...arguments);
1563
1570
  f(this, "type", "fixedSize");
@@ -1613,16 +1620,16 @@ class Et extends v {
1613
1620
  ));
1614
1621
  }
1615
1622
  }
1616
- function Mt(o = !0, s = !0) {
1617
- return new Et({ horizontal: o, vertical: s });
1623
+ function kt(o = !0, s = !0) {
1624
+ return new At({ horizontal: o, vertical: s });
1618
1625
  }
1619
- function Tt(o) {
1626
+ function Pt(o) {
1620
1627
  return new oe({ frame: o });
1621
1628
  }
1622
- function xt(o) {
1629
+ function It(o) {
1623
1630
  return new oe({ layoutPriority: o });
1624
1631
  }
1625
- function Lt(o, s) {
1632
+ function $t(o, s) {
1626
1633
  return new oe({
1627
1634
  position: {
1628
1635
  x: o,
@@ -1630,10 +1637,10 @@ function Lt(o, s) {
1630
1637
  }
1631
1638
  });
1632
1639
  }
1633
- function At() {
1634
- return new ke({});
1640
+ function Vt() {
1641
+ return new $e({});
1635
1642
  }
1636
- class kt extends v {
1643
+ class Dt extends v {
1637
1644
  constructor() {
1638
1645
  super(...arguments);
1639
1646
  f(this, "type", "position");
@@ -1643,7 +1650,7 @@ class kt extends v {
1643
1650
  apply(e, t) {
1644
1651
  if (!t.element) return;
1645
1652
  const { position: n } = this.properties;
1646
- typeof process < "u" && process.env.NODE_ENV === "development" && this.validatePosition(n), h(n) || y(n) ? S(() => {
1653
+ typeof process < "u" && process.env.NODE_ENV === "development" && this.validatePosition(n), m(n) || h(n) ? S(() => {
1647
1654
  const i = n();
1648
1655
  this.applyPosition(t.element, i);
1649
1656
  }) : this.applyPosition(t.element, n);
@@ -1703,7 +1710,7 @@ class kt extends v {
1703
1710
  */
1704
1711
  validatePosition(e) {
1705
1712
  if (typeof process < "u" && process.env.NODE_ENV === "development") {
1706
- const t = h(e) || y(e);
1713
+ const t = m(e) || h(e);
1707
1714
  if (!t && typeof e != "string") {
1708
1715
  console.warn(
1709
1716
  `PositionModifier: position must be a string or reactive signal. Got: ${typeof e}`
@@ -1726,10 +1733,10 @@ class kt extends v {
1726
1733
  }
1727
1734
  }
1728
1735
  }
1729
- function Pt(o) {
1730
- return new kt({ position: o });
1736
+ function Rt(o) {
1737
+ return new Dt({ position: o });
1731
1738
  }
1732
- class ge extends v {
1739
+ class be extends v {
1733
1740
  constructor() {
1734
1741
  super(...arguments);
1735
1742
  f(this, "type", "zIndex");
@@ -1739,7 +1746,7 @@ class ge extends v {
1739
1746
  apply(e, t) {
1740
1747
  if (!t.element) return;
1741
1748
  const { zIndex: n } = this.properties;
1742
- typeof process < "u" && process.env.NODE_ENV === "development" && this.validateZIndex(n), h(n) || y(n) ? S(() => {
1749
+ typeof process < "u" && process.env.NODE_ENV === "development" && this.validateZIndex(n), m(n) || h(n) ? S(() => {
1743
1750
  const i = n();
1744
1751
  this.applyZIndex(t.element, i);
1745
1752
  }) : this.applyZIndex(t.element, n);
@@ -1802,7 +1809,7 @@ class ge extends v {
1802
1809
  */
1803
1810
  validateZIndex(e) {
1804
1811
  if (typeof process < "u" && process.env.NODE_ENV === "development") {
1805
- const t = h(e) || y(e);
1812
+ const t = m(e) || h(e);
1806
1813
  if (!t && typeof e != "number") {
1807
1814
  console.warn(
1808
1815
  `ZIndexModifier: zIndex must be a number or reactive signal. Got: ${typeof e}`
@@ -1821,7 +1828,7 @@ class ge extends v {
1821
1828
  /**
1822
1829
  * Common z-index values for semantic layering
1823
1830
  */
1824
- f(ge, "COMMON_LAYERS", {
1831
+ f(be, "COMMON_LAYERS", {
1825
1832
  background: -1,
1826
1833
  base: 0,
1827
1834
  content: 1,
@@ -1833,8 +1840,8 @@ f(ge, "COMMON_LAYERS", {
1833
1840
  toast: 600,
1834
1841
  debug: 9999
1835
1842
  });
1836
- function It(o) {
1837
- return new ge({ zIndex: o });
1843
+ function Ht(o) {
1844
+ return new be({ zIndex: o });
1838
1845
  }
1839
1846
  class w {
1840
1847
  constructor(s) {
@@ -1846,7 +1853,7 @@ class w {
1846
1853
  resolveReactiveProps(s, e) {
1847
1854
  const t = {};
1848
1855
  for (const [n, i] of Object.entries(s))
1849
- h(i) || y(i), t[n] = i;
1856
+ m(i) || h(i), t[n] = i;
1850
1857
  return t;
1851
1858
  }
1852
1859
  /**
@@ -1855,7 +1862,7 @@ class w {
1855
1862
  applyStyleChange(s, e, t) {
1856
1863
  if (s instanceof HTMLElement) {
1857
1864
  const n = this.toCSSProperty(e);
1858
- if (h(t) || y(t))
1865
+ if (m(t) || h(t))
1859
1866
  S(() => {
1860
1867
  const i = t(), r = String(i);
1861
1868
  if (r.includes("!important")) {
@@ -1917,7 +1924,7 @@ class w {
1917
1924
  for (const [n, i] of Object.entries(e))
1918
1925
  if (i !== void 0) {
1919
1926
  const r = this.toCSSProperty(n);
1920
- if (h(i) || y(i))
1927
+ if (m(i) || h(i))
1921
1928
  console.log(
1922
1929
  "BaseModifier applyStyles - creating reactive effect for property:",
1923
1930
  r,
@@ -1983,7 +1990,7 @@ class w {
1983
1990
  };
1984
1991
  }
1985
1992
  }
1986
- class Vo extends w {
1993
+ class No extends w {
1987
1994
  constructor() {
1988
1995
  super(...arguments);
1989
1996
  f(this, "type", "layout");
@@ -2005,19 +2012,19 @@ class Vo extends w {
2005
2012
  }
2006
2013
  applyOffsetTransform(e, t) {
2007
2014
  const { x: n, y: i } = t;
2008
- if (h(n) || y(n) || h(i) || y(i))
2015
+ if (m(n) || h(n) || m(i) || h(i))
2009
2016
  S(() => {
2010
- const r = h(n) || y(n) ? n() : n ?? 0, a = h(i) || y(i) ? i() : i ?? 0, l = this.toCSSValue(r), c = this.toCSSValue(a), d = `translate(${l}, ${c})`, m = (e.style.transform || "").split(" ").filter((g) => g && !g.startsWith("translate(")).join(" "), p = m ? `${m} ${d}` : d;
2017
+ const r = m(n) || h(n) ? n() : n ?? 0, a = m(i) || h(i) ? i() : i ?? 0, l = this.toCSSValue(r), c = this.toCSSValue(a), d = `translate(${l}, ${c})`, y = (e.style.transform || "").split(" ").filter((g) => g && !g.startsWith("translate(")).join(" "), p = y ? `${y} ${d}` : d;
2011
2018
  e.style.transform = p;
2012
2019
  });
2013
2020
  else {
2014
- const r = n ?? 0, a = i ?? 0, l = this.toCSSValue(r), c = this.toCSSValue(a), d = `translate(${l}, ${c})`, m = (e.style.transform || "").split(" ").filter((g) => g && !g.startsWith("translate(")).join(" "), p = m ? `${m} ${d}` : d;
2021
+ const r = n ?? 0, a = i ?? 0, l = this.toCSSValue(r), c = this.toCSSValue(a), d = `translate(${l}, ${c})`, y = (e.style.transform || "").split(" ").filter((g) => g && !g.startsWith("translate(")).join(" "), p = y ? `${y} ${d}` : d;
2015
2022
  e.style.transform = p;
2016
2023
  }
2017
2024
  }
2018
2025
  applyAspectRatio(e, t) {
2019
2026
  const { ratio: n, contentMode: i } = t;
2020
- n !== void 0 && (h(n) || y(n) ? S(() => {
2027
+ n !== void 0 && (m(n) || h(n) ? S(() => {
2021
2028
  const r = typeof n == "function" ? n() : n;
2022
2029
  e.style.aspectRatio = String(r);
2023
2030
  }) : e.style.aspectRatio = String(n), i === "fill" ? e.style.objectFit = "cover" : e.style.objectFit = "contain");
@@ -2025,9 +2032,9 @@ class Vo extends w {
2025
2032
  // Phase 3 - Epic: Butternut Transform Methods
2026
2033
  applyScaleTransform(e, t) {
2027
2034
  const { x: n, y: i, anchor: r } = t, a = n ?? 1, l = i ?? a;
2028
- if (h(a) || y(a) || h(l) || y(l))
2035
+ if (m(a) || h(a) || m(l) || h(l))
2029
2036
  S(() => {
2030
- const c = h(a) || y(a) ? a() : a, d = h(l) || y(l) ? l() : l, u = `scale(${c}, ${d})`;
2037
+ const c = m(a) || h(a) ? a() : a, d = m(l) || h(l) ? l() : l, u = `scale(${c}, ${d})`;
2031
2038
  e.style.transformOrigin = this.getTransformOrigin(
2032
2039
  r || "center"
2033
2040
  );
@@ -2039,15 +2046,15 @@ class Vo extends w {
2039
2046
  e.style.transformOrigin = this.getTransformOrigin(
2040
2047
  r || "center"
2041
2048
  );
2042
- const u = (e.style.transform || "").replace(/\s*scale\([^)]*\)\s*/g, " ").replace(/\s+/g, " ").trim(), m = u ? `${u} ${c}` : c;
2043
- e.style.transform = m;
2049
+ const u = (e.style.transform || "").replace(/\s*scale\([^)]*\)\s*/g, " ").replace(/\s+/g, " ").trim(), y = u ? `${u} ${c}` : c;
2050
+ e.style.transform = y;
2044
2051
  }
2045
2052
  }
2046
2053
  applyAbsolutePosition(e, t) {
2047
2054
  const { x: n, y: i } = t;
2048
- if (e.style.position = "absolute", h(n) || y(n) || h(i) || y(i))
2055
+ if (e.style.position = "absolute", m(n) || h(n) || m(i) || h(i))
2049
2056
  S(() => {
2050
- const r = h(n) || y(n) ? n() : n ?? 0, a = h(i) || y(i) ? i() : i ?? 0;
2057
+ const r = m(n) || h(n) ? n() : n ?? 0, a = m(i) || h(i) ? i() : i ?? 0;
2051
2058
  e.style.left = this.toCSSValue(r), e.style.top = this.toCSSValue(a);
2052
2059
  });
2053
2060
  else {
@@ -2056,7 +2063,7 @@ class Vo extends w {
2056
2063
  }
2057
2064
  }
2058
2065
  applyZIndex(e, t) {
2059
- h(t) || y(t) ? S(() => {
2066
+ m(t) || h(t) ? S(() => {
2060
2067
  const n = t();
2061
2068
  e.style.zIndex = String(n);
2062
2069
  }) : e.style.zIndex = String(t);
@@ -2150,7 +2157,7 @@ class Vo extends w {
2150
2157
  return n;
2151
2158
  }
2152
2159
  }
2153
- class Do extends w {
2160
+ class Bo extends w {
2154
2161
  constructor() {
2155
2162
  super(...arguments);
2156
2163
  f(this, "type", "appearance");
@@ -2337,12 +2344,12 @@ class C extends w {
2337
2344
  Math.sqrt(
2338
2345
  Math.pow(b.clientX - a.x, 2) + Math.pow(b.clientY - a.y, 2)
2339
2346
  ) > i && c();
2340
- }, m = () => {
2347
+ }, y = () => {
2341
2348
  c();
2342
2349
  }, p = () => {
2343
2350
  c();
2344
2351
  };
2345
- e.addEventListener("pointerdown", d), e.addEventListener("pointermove", u), e.addEventListener("pointerup", m), e.addEventListener(
2352
+ e.addEventListener("pointerdown", d), e.addEventListener("pointermove", u), e.addEventListener("pointerup", y), e.addEventListener(
2346
2353
  "pointercancel",
2347
2354
  p
2348
2355
  ), e._longPressCleanup = c;
@@ -2364,7 +2371,7 @@ class C extends w {
2364
2371
  shift: r.shiftKey,
2365
2372
  alt: r.altKey
2366
2373
  }, c = r.key.toLowerCase() === t.key.toLowerCase(), d = Object.entries(a).every(
2367
- ([u, m]) => m === l[u]
2374
+ ([u, y]) => y === l[u]
2368
2375
  );
2369
2376
  c && d && (r.preventDefault(), t.action());
2370
2377
  };
@@ -2378,7 +2385,7 @@ class C extends w {
2378
2385
  setupFocusManagement(e, t) {
2379
2386
  if (!(e instanceof HTMLElement)) return;
2380
2387
  const n = e;
2381
- n.hasAttribute("tabindex") || n.setAttribute("tabindex", "0"), h(t) || y(t) ? S(() => {
2388
+ n.hasAttribute("tabindex") || n.setAttribute("tabindex", "0"), m(t) || h(t) ? S(() => {
2382
2389
  t() ? n.focus() : n.blur();
2383
2390
  }) : t && n.focus();
2384
2391
  }
@@ -2422,7 +2429,7 @@ class C extends w {
2422
2429
  e instanceof HTMLElement && (e.style.pointerEvents = t ? "" : "none");
2423
2430
  }
2424
2431
  }
2425
- class Ro extends w {
2432
+ class zo extends w {
2426
2433
  constructor() {
2427
2434
  super(...arguments);
2428
2435
  f(this, "type", "animation");
@@ -2447,7 +2454,7 @@ class Ro extends w {
2447
2454
  t.element.style.animation = `${r} ${l}ms ${c} ${d} ${u}`;
2448
2455
  }
2449
2456
  }
2450
- if (n.transform && t.element instanceof HTMLElement && (h(n.transform) || y(n.transform) ? S(() => {
2457
+ if (n.transform && t.element instanceof HTMLElement && (m(n.transform) || h(n.transform) ? S(() => {
2451
2458
  const i = n.transform();
2452
2459
  t.element instanceof HTMLElement && (t.element.style.transform = i);
2453
2460
  }) : t.element.style.transform = n.transform), n.rotationEffect && t.element instanceof HTMLElement) {
@@ -2462,7 +2469,7 @@ class Ro extends w {
2462
2469
  leading: "0% 50%",
2463
2470
  trailing: "100% 50%"
2464
2471
  }[r || "center"] || "50% 50%", c = `rotate(${i}deg)`;
2465
- if (h(i) || y(i))
2472
+ if (m(i) || h(i))
2466
2473
  S(() => {
2467
2474
  const u = `rotate(${typeof i == "function" ? i() : i}deg)`;
2468
2475
  if (t.element instanceof HTMLElement) {
@@ -2473,8 +2480,8 @@ class Ro extends w {
2473
2480
  });
2474
2481
  else if (t.element instanceof HTMLElement) {
2475
2482
  t.element.style.transformOrigin = l;
2476
- const u = (t.element.style.transform || "").split(" ").filter((p) => p && !p.startsWith("rotate(")).join(" "), m = u ? `${u} ${c}` : c;
2477
- t.element.style.transform = m;
2483
+ const u = (t.element.style.transform || "").split(" ").filter((p) => p && !p.startsWith("rotate(")).join(" "), y = u ? `${u} ${c}` : c;
2484
+ t.element.style.transform = y;
2478
2485
  }
2479
2486
  }
2480
2487
  n.overlay && t.element instanceof HTMLElement && this.applyOverlay(t.element, n.overlay, t);
@@ -2566,7 +2573,7 @@ class Ro extends w {
2566
2573
  t || (t = document.createElement("style"), t.id = "tachui-animations", document.head.appendChild(t)), t.appendChild(document.createTextNode(e));
2567
2574
  }
2568
2575
  }
2569
- class Oo extends w {
2576
+ class Fo extends w {
2570
2577
  constructor() {
2571
2578
  super(...arguments);
2572
2579
  f(this, "type", "lifecycle");
@@ -2654,7 +2661,7 @@ class Oo extends w {
2654
2661
  l.style.opacity = String(b);
2655
2662
  }
2656
2663
  i > 0 && e.scrollTop === 0 && p.preventDefault();
2657
- }, m = async () => {
2664
+ }, y = async () => {
2658
2665
  if (!n)
2659
2666
  if (i > a) {
2660
2667
  n = !0, l.style.opacity = "1";
@@ -2672,13 +2679,13 @@ class Oo extends w {
2672
2679
  passive: !0
2673
2680
  }), e.addEventListener("touchmove", u, {
2674
2681
  passive: !1
2675
- }), e.addEventListener("touchend", m, {
2682
+ }), e.addEventListener("touchend", y, {
2676
2683
  passive: !0
2677
2684
  }), this.addCleanup(() => {
2678
2685
  e.removeEventListener(
2679
2686
  "touchstart",
2680
2687
  d
2681
- ), e.removeEventListener("touchmove", u), e.removeEventListener("touchend", m), l.parentElement && l.parentElement.removeChild(l);
2688
+ ), e.removeEventListener("touchmove", u), e.removeEventListener("touchend", y), l.parentElement && l.parentElement.removeChild(l);
2682
2689
  });
2683
2690
  }
2684
2691
  addCleanup(e) {
@@ -2688,7 +2695,7 @@ class Oo extends w {
2688
2695
  this.cleanupFunctions.forEach((e) => e()), this.cleanupFunctions = [];
2689
2696
  }
2690
2697
  }
2691
- class $t extends w {
2698
+ class Ot extends w {
2692
2699
  constructor() {
2693
2700
  super(...arguments);
2694
2701
  f(this, "type", "overlay");
@@ -2768,10 +2775,10 @@ class $t extends w {
2768
2775
  return t[e] || t.center;
2769
2776
  }
2770
2777
  }
2771
- function Vt(o, s = "center") {
2772
- return new $t({ content: o, alignment: s });
2778
+ function _t(o, s = "center") {
2779
+ return new Ot({ content: o, alignment: s });
2773
2780
  }
2774
- class ve extends v {
2781
+ class Se extends v {
2775
2782
  constructor() {
2776
2783
  super(...arguments);
2777
2784
  f(this, "type", "background");
@@ -2780,6 +2787,10 @@ class ve extends v {
2780
2787
  apply(e, t) {
2781
2788
  if (!t.element) return;
2782
2789
  const n = this.properties.background;
2790
+ if (m(n) || h(n)) {
2791
+ this.applyStyles(t.element, { background: n });
2792
+ return;
2793
+ }
2783
2794
  if (t.element instanceof HTMLElement && this.isStateGradientOption(n)) {
2784
2795
  this.applyStatefulBackground(t.element, n);
2785
2796
  return;
@@ -2824,7 +2835,7 @@ class ve extends v {
2824
2835
  resolveBackgroundValue(e) {
2825
2836
  if (e != null) {
2826
2837
  if (this.isGradientDefinition(e))
2827
- return Pe(e);
2838
+ return Ve(e);
2828
2839
  if (this.isAssetValue(e)) {
2829
2840
  const t = e.resolve();
2830
2841
  return typeof t == "string" ? t : String(t);
@@ -2851,7 +2862,7 @@ class ve extends v {
2851
2862
  }, r = () => this.isElementDisabled(e) && n.disabled ? "disabled" : n.focus && this.matchesSelector(e, ":focus") ? "focus" : "default", a = () => {
2852
2863
  const d = t.animation;
2853
2864
  if (!d) return;
2854
- const u = d.duration ?? 200, m = d.easing ?? "ease", p = d.delay ?? 0, g = `background ${u}ms ${m} ${p}ms`;
2865
+ const u = d.duration ?? 200, y = d.easing ?? "ease", p = d.delay ?? 0, g = `background ${u}ms ${y} ${p}ms`;
2855
2866
  e.style.transition = g;
2856
2867
  const b = e.style.cssText || "";
2857
2868
  b.includes("transition") || (e.style.cssText = `${b}${b ? ";" : ""}transition: ${g};`);
@@ -2905,7 +2916,7 @@ class ve extends v {
2905
2916
  return !!(e.hasAttribute && e.hasAttribute("disabled") || e.getAttribute && e.getAttribute("aria-disabled") === "true");
2906
2917
  }
2907
2918
  }
2908
- class be extends v {
2919
+ class we extends v {
2909
2920
  constructor() {
2910
2921
  super(...arguments);
2911
2922
  f(this, "type", "backgroundClip");
@@ -2921,21 +2932,21 @@ class be extends v {
2921
2932
  return e.backgroundImage && (t.backgroundImage = e.backgroundImage), e.backgroundClip && (t.backgroundClip = e.backgroundClip, t.webkitBackgroundClip = e.backgroundClip), e.color && (t.color = e.color, e.backgroundClip === "text" && (t.webkitTextFillColor = e.color)), t;
2922
2933
  }
2923
2934
  }
2924
- function Dt(o) {
2925
- return new ve({ background: o });
2935
+ function Nt(o) {
2936
+ return new Se({ background: o });
2926
2937
  }
2927
- function Rt(o) {
2928
- return new ve({ background: o });
2938
+ function Bt(o) {
2939
+ return new Se({ background: o });
2929
2940
  }
2930
- function Ho(o, s = "text", e = "transparent") {
2931
- return new be({
2941
+ function Wo(o, s = "text", e = "transparent") {
2942
+ return new we({
2932
2943
  backgroundImage: o,
2933
2944
  backgroundClip: s,
2934
2945
  color: e
2935
2946
  });
2936
2947
  }
2937
2948
  function W(o) {
2938
- return new be({
2949
+ return new we({
2939
2950
  backgroundImage: o,
2940
2951
  backgroundClip: "text",
2941
2952
  webkitBackgroundClip: "text",
@@ -2943,21 +2954,21 @@ function W(o) {
2943
2954
  webkitTextFillColor: "transparent"
2944
2955
  });
2945
2956
  }
2946
- function _o() {
2957
+ function jo() {
2947
2958
  return W("linear-gradient(45deg, #007AFF, #5856D6)");
2948
2959
  }
2949
- function No() {
2960
+ function Uo() {
2950
2961
  return W(
2951
2962
  "linear-gradient(90deg, #ff0000, #ff8000, #ffff00, #80ff00, #00ff80, #0080ff, #8000ff)"
2952
2963
  );
2953
2964
  }
2954
- function Bo() {
2965
+ function Ko() {
2955
2966
  return W("linear-gradient(45deg, #ff6b6b, #feca57, #ff9ff3)");
2956
2967
  }
2957
- function zo() {
2968
+ function Go() {
2958
2969
  return W("linear-gradient(45deg, #667eea, #764ba2)");
2959
2970
  }
2960
- function Fo() {
2971
+ function Yo() {
2961
2972
  return W("linear-gradient(45deg, #f7971e, #ffd200)");
2962
2973
  }
2963
2974
  class D extends v {
@@ -2990,7 +3001,7 @@ class D extends v {
2990
3001
  return typeof e == "number" ? `${e}px` : e;
2991
3002
  }
2992
3003
  }
2993
- class Ot extends v {
3004
+ class zt extends v {
2994
3005
  constructor() {
2995
3006
  super(...arguments);
2996
3007
  f(this, "type", "cornerRadius");
@@ -3035,41 +3046,41 @@ class Ot extends v {
3035
3046
  return typeof e == "number" ? `${e}px` : e;
3036
3047
  }
3037
3048
  }
3038
- function Ht(o, s, e) {
3049
+ function Ft(o, s, e) {
3039
3050
  return typeof o == "number" || typeof o == "string" ? new D({
3040
3051
  width: o,
3041
3052
  color: s || "currentColor",
3042
3053
  style: e || "solid"
3043
3054
  }) : new D(o);
3044
3055
  }
3045
- function _t(o, s, e) {
3056
+ function Wt(o, s, e) {
3046
3057
  return new D({ top: { width: o, color: s, style: e } });
3047
3058
  }
3048
- function Nt(o, s, e) {
3059
+ function jt(o, s, e) {
3049
3060
  return new D({ right: { width: o, color: s, style: e } });
3050
3061
  }
3051
- function Bt(o, s, e) {
3062
+ function Ut(o, s, e) {
3052
3063
  return new D({ bottom: { width: o, color: s, style: e } });
3053
3064
  }
3054
- function zt(o, s, e) {
3065
+ function Kt(o, s, e) {
3055
3066
  return new D({ left: { width: o, color: s, style: e } });
3056
3067
  }
3057
- function Wo(o, s, e) {
3068
+ function Xo(o, s, e) {
3058
3069
  return new D({ leading: { width: o, color: s, style: e } });
3059
3070
  }
3060
- function jo(o, s, e) {
3071
+ function Zo(o, s, e) {
3061
3072
  return new D({ trailing: { width: o, color: s, style: e } });
3062
3073
  }
3063
- function Uo(o, s, e) {
3074
+ function qo(o, s, e) {
3064
3075
  return new D({ horizontal: { width: o, color: s, style: e } });
3065
3076
  }
3066
- function Ko(o, s, e) {
3077
+ function Jo(o, s, e) {
3067
3078
  return new D({ vertical: { width: o, color: s, style: e } });
3068
3079
  }
3069
- function Go(o) {
3070
- return new Ot({ radius: o });
3080
+ function Qo(o) {
3081
+ return new zt({ radius: o });
3071
3082
  }
3072
- class Se extends v {
3083
+ class Ce extends v {
3073
3084
  constructor() {
3074
3085
  super(...arguments);
3075
3086
  f(this, "type", "foreground");
@@ -3105,13 +3116,13 @@ class Se extends v {
3105
3116
  });
3106
3117
  }
3107
3118
  }
3108
- function Ft(o) {
3109
- return new Se({ color: o });
3119
+ function Gt(o) {
3120
+ return new Ce({ color: o });
3110
3121
  }
3111
- function Yo(o) {
3112
- return new Se({ color: o });
3122
+ function er(o) {
3123
+ return new Ce({ color: o });
3113
3124
  }
3114
- class Wt extends v {
3125
+ class Yt extends v {
3115
3126
  constructor() {
3116
3127
  super(...arguments);
3117
3128
  f(this, "type", "clip-shape");
@@ -3143,10 +3154,10 @@ class Wt extends v {
3143
3154
  }
3144
3155
  }
3145
3156
  }
3146
- function jt(o, s) {
3147
- return new Wt({ shape: o, parameters: s || {} });
3157
+ function Xt(o, s) {
3158
+ return new Yt({ shape: o, parameters: s || {} });
3148
3159
  }
3149
- class Ut extends v {
3160
+ class Zt extends v {
3150
3161
  constructor() {
3151
3162
  super(...arguments);
3152
3163
  f(this, "type", "clipped");
@@ -3158,28 +3169,28 @@ class Ut extends v {
3158
3169
  n.style && (this.properties.clipped ? n.style.overflow = "hidden" : n.style.overflow = "");
3159
3170
  }
3160
3171
  }
3161
- function Kt(o = !0) {
3162
- return new Ut({ clipped: o });
3172
+ function qt(o = !0) {
3173
+ return new Zt({ clipped: o });
3163
3174
  }
3164
- function Gt(o) {
3175
+ function Jt(o) {
3165
3176
  return new R({ opacity: o });
3166
3177
  }
3167
- function Yt(o) {
3178
+ function Qt(o) {
3168
3179
  return new R({ cornerRadius: o });
3169
3180
  }
3170
- function Xt(o) {
3181
+ function en(o) {
3171
3182
  return new R({ font: { family: o } });
3172
3183
  }
3173
- function Zt(o) {
3184
+ function tn(o) {
3174
3185
  return new R({ font: { size: o } });
3175
3186
  }
3176
- function qt(o) {
3187
+ function nn(o) {
3177
3188
  return new R({ font: { weight: o } });
3178
3189
  }
3179
- function Jt(o) {
3190
+ function on(o) {
3180
3191
  return new R({ font: { style: o } });
3181
3192
  }
3182
- function Qt(o) {
3193
+ function rn(o) {
3183
3194
  return new R({ font: o });
3184
3195
  }
3185
3196
  class P extends v {
@@ -3207,54 +3218,54 @@ class P extends v {
3207
3218
  return typeof e == "number" ? `${e}px` : e;
3208
3219
  }
3209
3220
  }
3210
- function en(o) {
3221
+ function sn(o) {
3211
3222
  return new P(o);
3212
3223
  }
3213
- function tn(o) {
3224
+ function an(o) {
3214
3225
  return new P({ align: o });
3215
3226
  }
3216
- function we(o) {
3227
+ function Ee(o) {
3217
3228
  return new P({ transform: o });
3218
3229
  }
3219
- function nn(o) {
3230
+ function ln(o) {
3220
3231
  return new P({ decoration: o });
3221
3232
  }
3222
- function Xo(o) {
3233
+ function tr(o) {
3223
3234
  return new P({ size: o });
3224
3235
  }
3225
- function Zo(o) {
3236
+ function nr(o) {
3226
3237
  return new P({ weight: o });
3227
3238
  }
3228
- function on(o) {
3239
+ function cn(o) {
3229
3240
  return new P({ lineHeight: o });
3230
3241
  }
3231
- function rn(o) {
3242
+ function fn(o) {
3232
3243
  return new P({ letterSpacing: o });
3233
3244
  }
3234
- function sn(o) {
3245
+ function dn(o) {
3235
3246
  return new P({ textOverflow: o });
3236
3247
  }
3237
- function an(o) {
3248
+ function un(o) {
3238
3249
  return new P({ whiteSpace: o });
3239
3250
  }
3240
- function ln(o) {
3251
+ function pn(o) {
3241
3252
  return new P({ overflow: o });
3242
3253
  }
3243
- function cn(o) {
3244
- return we(o);
3254
+ function mn(o) {
3255
+ return Ee(o);
3245
3256
  }
3246
- function qo(o) {
3257
+ function ir(o) {
3247
3258
  return new P({ family: o });
3248
3259
  }
3249
- function fn(o) {
3250
- return typeof o == "string" ? dn(o) : new P({
3260
+ function hn(o) {
3261
+ return typeof o == "string" ? yn(o) : new P({
3251
3262
  family: o.family,
3252
3263
  size: o.size,
3253
3264
  weight: o.weight,
3254
3265
  style: o.style
3255
3266
  });
3256
3267
  }
3257
- function dn(o) {
3268
+ function yn(o) {
3258
3269
  const s = {
3259
3270
  ".largeTitle": { size: 34, weight: 400 },
3260
3271
  ".title": { size: 28, weight: 400 },
@@ -3270,7 +3281,7 @@ function dn(o) {
3270
3281
  }, e = s[o];
3271
3282
  return e ? new P(e) : new P(s[".body"]);
3272
3283
  }
3273
- function Jo(o) {
3284
+ function or(o) {
3274
3285
  let s;
3275
3286
  switch (o.design) {
3276
3287
  case "serif":
@@ -3291,7 +3302,7 @@ function Jo(o) {
3291
3302
  weight: o.weight
3292
3303
  });
3293
3304
  }
3294
- function Qo(o, s) {
3305
+ function rr(o, s) {
3295
3306
  return new P({
3296
3307
  family: o,
3297
3308
  size: s?.size,
@@ -3299,7 +3310,7 @@ function Qo(o, s) {
3299
3310
  style: s?.style
3300
3311
  });
3301
3312
  }
3302
- class un extends v {
3313
+ class gn extends v {
3303
3314
  constructor() {
3304
3315
  super(...arguments);
3305
3316
  f(this, "type", "lineClamp");
@@ -3328,10 +3339,10 @@ class un extends v {
3328
3339
  );
3329
3340
  }
3330
3341
  }
3331
- function pn(o) {
3332
- return new un({ lines: o });
3342
+ function vn(o) {
3343
+ return new gn({ lines: o });
3333
3344
  }
3334
- class mn extends v {
3345
+ class bn extends v {
3335
3346
  constructor() {
3336
3347
  super(...arguments);
3337
3348
  f(this, "type", "wordBreak");
@@ -3356,10 +3367,10 @@ class mn extends v {
3356
3367
  );
3357
3368
  }
3358
3369
  }
3359
- function hn(o) {
3360
- return new mn({ wordBreak: o });
3370
+ function Sn(o) {
3371
+ return new bn({ wordBreak: o });
3361
3372
  }
3362
- class yn extends v {
3373
+ class wn extends v {
3363
3374
  constructor() {
3364
3375
  super(...arguments);
3365
3376
  f(this, "type", "overflowWrap");
@@ -3381,10 +3392,10 @@ class yn extends v {
3381
3392
  );
3382
3393
  }
3383
3394
  }
3384
- function gn(o) {
3385
- return new yn({ overflowWrap: o });
3395
+ function Cn(o) {
3396
+ return new wn({ overflowWrap: o });
3386
3397
  }
3387
- class vn extends v {
3398
+ class En extends v {
3388
3399
  constructor() {
3389
3400
  super(...arguments);
3390
3401
  f(this, "type", "hyphens");
@@ -3409,10 +3420,10 @@ class vn extends v {
3409
3420
  );
3410
3421
  }
3411
3422
  }
3412
- function bn(o) {
3413
- return new vn({ hyphens: o });
3423
+ function Mn(o) {
3424
+ return new En({ hyphens: o });
3414
3425
  }
3415
- class H extends v {
3426
+ class O extends v {
3416
3427
  constructor(e) {
3417
3428
  const t = {};
3418
3429
  for (const [n, i] of Object.entries(e))
@@ -3454,35 +3465,35 @@ class H extends v {
3454
3465
  return typeof e == "number" ? `${e}px` : e;
3455
3466
  }
3456
3467
  }
3457
- function Sn(o) {
3458
- return new H({ scroll: o });
3468
+ function Tn(o) {
3469
+ return new O({ scroll: o });
3459
3470
  }
3460
- function wn(o) {
3461
- return new H({ scrollBehavior: o });
3471
+ function xn(o) {
3472
+ return new O({ scrollBehavior: o });
3462
3473
  }
3463
- function Cn(o) {
3464
- return new H({ overscrollBehavior: o });
3474
+ function Ln(o) {
3475
+ return new O({ overscrollBehavior: o });
3465
3476
  }
3466
- function En(o) {
3467
- return new H({ overscrollBehaviorX: o });
3477
+ function An(o) {
3478
+ return new O({ overscrollBehaviorX: o });
3468
3479
  }
3469
- function Mn(o) {
3470
- return new H({ overscrollBehaviorY: o });
3480
+ function kn(o) {
3481
+ return new O({ overscrollBehaviorY: o });
3471
3482
  }
3472
- function Tn(o) {
3473
- return new H({ scroll: { margin: o } });
3483
+ function Pn(o) {
3484
+ return new O({ scroll: { margin: o } });
3474
3485
  }
3475
- function xn(o) {
3476
- return new H({ scroll: { padding: o } });
3486
+ function In(o) {
3487
+ return new O({ scroll: { padding: o } });
3477
3488
  }
3478
- function Ln(o, s, e) {
3479
- return new H({
3489
+ function $n(o, s, e) {
3490
+ return new O({
3480
3491
  scroll: {
3481
3492
  snap: { type: o, align: s, stop: e }
3482
3493
  }
3483
3494
  });
3484
3495
  }
3485
- class An extends w {
3496
+ class Vn extends w {
3486
3497
  constructor() {
3487
3498
  super(...arguments);
3488
3499
  f(this, "type", "onHover");
@@ -3504,10 +3515,10 @@ class An extends w {
3504
3515
  e._hoverCleanup = r;
3505
3516
  }
3506
3517
  }
3507
- function kn(o) {
3508
- return new An({ onHover: o });
3518
+ function Dn(o) {
3519
+ return new Vn({ onHover: o });
3509
3520
  }
3510
- class Pn extends w {
3521
+ class Rn extends w {
3511
3522
  constructor() {
3512
3523
  super(...arguments);
3513
3524
  f(this, "type", "onMouseEnter");
@@ -3523,7 +3534,7 @@ class Pn extends w {
3523
3534
  };
3524
3535
  }
3525
3536
  }
3526
- class In extends w {
3537
+ class Hn extends w {
3527
3538
  constructor() {
3528
3539
  super(...arguments);
3529
3540
  f(this, "type", "onMouseLeave");
@@ -3539,7 +3550,7 @@ class In extends w {
3539
3550
  };
3540
3551
  }
3541
3552
  }
3542
- class $n extends w {
3553
+ class On extends w {
3543
3554
  constructor() {
3544
3555
  super(...arguments);
3545
3556
  f(this, "type", "onMouseDown");
@@ -3555,7 +3566,7 @@ class $n extends w {
3555
3566
  };
3556
3567
  }
3557
3568
  }
3558
- class Vn extends w {
3569
+ class _n extends w {
3559
3570
  constructor() {
3560
3571
  super(...arguments);
3561
3572
  f(this, "type", "onMouseUp");
@@ -3571,7 +3582,7 @@ class Vn extends w {
3571
3582
  };
3572
3583
  }
3573
3584
  }
3574
- class Dn extends w {
3585
+ class Nn extends w {
3575
3586
  constructor() {
3576
3587
  super(...arguments);
3577
3588
  f(this, "type", "onDoubleClick");
@@ -3587,7 +3598,7 @@ class Dn extends w {
3587
3598
  };
3588
3599
  }
3589
3600
  }
3590
- class Rn extends w {
3601
+ class Bn extends w {
3591
3602
  constructor() {
3592
3603
  super(...arguments);
3593
3604
  f(this, "type", "onContextMenu");
@@ -3603,25 +3614,25 @@ class Rn extends w {
3603
3614
  };
3604
3615
  }
3605
3616
  }
3606
- function On(o) {
3607
- return new Pn({ onMouseEnter: o });
3617
+ function zn(o) {
3618
+ return new Rn({ onMouseEnter: o });
3608
3619
  }
3609
- function Hn(o) {
3610
- return new In({ onMouseLeave: o });
3620
+ function Fn(o) {
3621
+ return new Hn({ onMouseLeave: o });
3611
3622
  }
3612
- function _n(o) {
3613
- return new $n({ onMouseDown: o });
3623
+ function Wn(o) {
3624
+ return new On({ onMouseDown: o });
3614
3625
  }
3615
- function Nn(o) {
3616
- return new Vn({ onMouseUp: o });
3626
+ function jn(o) {
3627
+ return new _n({ onMouseUp: o });
3617
3628
  }
3618
- function Bn(o) {
3619
- return new Dn({ onDoubleClick: o });
3629
+ function Un(o) {
3630
+ return new Nn({ onDoubleClick: o });
3620
3631
  }
3621
- function zn(o) {
3622
- return new Rn({ onContextMenu: o });
3632
+ function Kn(o) {
3633
+ return new Bn({ onContextMenu: o });
3623
3634
  }
3624
- class Fn extends w {
3635
+ class Gn extends w {
3625
3636
  constructor() {
3626
3637
  super(...arguments);
3627
3638
  f(this, "type", "onKeyDown");
@@ -3637,7 +3648,7 @@ class Fn extends w {
3637
3648
  };
3638
3649
  }
3639
3650
  }
3640
- class Wn extends w {
3651
+ class Yn extends w {
3641
3652
  constructor() {
3642
3653
  super(...arguments);
3643
3654
  f(this, "type", "onKeyUp");
@@ -3653,7 +3664,7 @@ class Wn extends w {
3653
3664
  };
3654
3665
  }
3655
3666
  }
3656
- class jn extends w {
3667
+ class Xn extends w {
3657
3668
  constructor() {
3658
3669
  super(...arguments);
3659
3670
  f(this, "type", "onKeyPress");
@@ -3669,16 +3680,16 @@ class jn extends w {
3669
3680
  };
3670
3681
  }
3671
3682
  }
3672
- function Un(o) {
3673
- return new Fn({ onKeyDown: o });
3683
+ function Zn(o) {
3684
+ return new Gn({ onKeyDown: o });
3674
3685
  }
3675
- function Kn(o) {
3676
- return new Wn({ onKeyUp: o });
3686
+ function qn(o) {
3687
+ return new Yn({ onKeyUp: o });
3677
3688
  }
3678
- function Gn(o) {
3679
- return new jn({ onKeyPress: o });
3689
+ function Jn(o) {
3690
+ return new Xn({ onKeyPress: o });
3680
3691
  }
3681
- class Yn extends w {
3692
+ class Qn extends w {
3682
3693
  constructor() {
3683
3694
  super(...arguments);
3684
3695
  f(this, "type", "onFocus");
@@ -3696,7 +3707,7 @@ class Yn extends w {
3696
3707
  };
3697
3708
  }
3698
3709
  }
3699
- class Xn extends w {
3710
+ class ei extends w {
3700
3711
  constructor() {
3701
3712
  super(...arguments);
3702
3713
  f(this, "type", "onBlur");
@@ -3714,13 +3725,13 @@ class Xn extends w {
3714
3725
  };
3715
3726
  }
3716
3727
  }
3717
- function Zn(o) {
3718
- return new Yn({ onFocus: o });
3728
+ function ti(o) {
3729
+ return new Qn({ onFocus: o });
3719
3730
  }
3720
- function qn(o) {
3721
- return new Xn({ onBlur: o });
3731
+ function ni(o) {
3732
+ return new ei({ onBlur: o });
3722
3733
  }
3723
- class Jn extends w {
3734
+ class ii extends w {
3724
3735
  constructor() {
3725
3736
  super(...arguments);
3726
3737
  f(this, "type", "onLongPressGesture");
@@ -3738,7 +3749,7 @@ class Jn extends w {
3738
3749
  }, n));
3739
3750
  }, u = (x, E) => r ? Math.sqrt(
3740
3751
  Math.pow(x - r.x, 2) + Math.pow(E - r.y, 2)
3741
- ) <= i : !1, m = () => {
3752
+ ) <= i : !1, y = () => {
3742
3753
  a && (clearTimeout(a), a = null), l && (l = !1, t.onPressingChanged?.(!1)), r = null, c = !1;
3743
3754
  }, p = (x) => {
3744
3755
  const E = x;
@@ -3746,11 +3757,11 @@ class Jn extends w {
3746
3757
  }, g = (x) => {
3747
3758
  if (!l) return;
3748
3759
  const E = x;
3749
- u(E.clientX, E.clientY) || m();
3760
+ u(E.clientX, E.clientY) || y();
3750
3761
  }, b = () => {
3751
- m();
3762
+ y();
3752
3763
  }, X = () => {
3753
- m();
3764
+ y();
3754
3765
  }, le = (x) => {
3755
3766
  const E = x;
3756
3767
  if (E.touches.length === 1) {
@@ -3762,24 +3773,24 @@ class Jn extends w {
3762
3773
  const E = x;
3763
3774
  if (E.touches.length === 1) {
3764
3775
  const z = E.touches[0];
3765
- u(z.clientX, z.clientY) || m();
3776
+ u(z.clientX, z.clientY) || y();
3766
3777
  } else
3767
- m();
3778
+ y();
3768
3779
  }, fe = () => {
3769
- m();
3780
+ y();
3770
3781
  }, de = () => {
3771
- m();
3782
+ y();
3772
3783
  }, ue = (x) => {
3773
3784
  const E = x;
3774
3785
  E.button === 0 && (x.preventDefault(), d(E.clientX, E.clientY));
3775
3786
  }, pe = (x) => {
3776
3787
  if (!l) return;
3777
3788
  const E = x;
3778
- u(E.clientX, E.clientY) || m();
3789
+ u(E.clientX, E.clientY) || y();
3779
3790
  }, me = () => {
3780
- m();
3791
+ y();
3781
3792
  }, he = () => {
3782
- m();
3793
+ y();
3783
3794
  };
3784
3795
  "onpointerdown" in e ? (e.addEventListener(
3785
3796
  "pointerdown",
@@ -3798,8 +3809,8 @@ class Jn extends w {
3798
3809
  "touchcancel",
3799
3810
  de
3800
3811
  )) : (e.addEventListener("mousedown", ue), e.addEventListener("mousemove", pe), e.addEventListener("mouseup", me), e.addEventListener("mouseleave", he));
3801
- const Me = () => {
3802
- m(), "onpointerdown" in e ? (e.removeEventListener(
3812
+ const xe = () => {
3813
+ y(), "onpointerdown" in e ? (e.removeEventListener(
3803
3814
  "pointerdown",
3804
3815
  p
3805
3816
  ), e.removeEventListener(
@@ -3831,13 +3842,13 @@ class Jn extends w {
3831
3842
  he
3832
3843
  ));
3833
3844
  };
3834
- e._longPressCleanup = Me;
3845
+ e._longPressCleanup = xe;
3835
3846
  }
3836
3847
  }
3837
- function Qn(o) {
3838
- return new Jn(o);
3848
+ function oi(o) {
3849
+ return new ii(o);
3839
3850
  }
3840
- class ei extends w {
3851
+ class ri extends w {
3841
3852
  constructor(e) {
3842
3853
  const t = {
3843
3854
  ...e,
@@ -3857,7 +3868,7 @@ class ei extends w {
3857
3868
  return;
3858
3869
  const d = new Set(n), u = /* @__PURE__ */ new Set();
3859
3870
  (c.ctrlKey || c.metaKey) && (navigator.platform.includes("Mac") ? (c.metaKey && (u.add("cmd"), u.add("meta")), c.ctrlKey && u.add("ctrl")) : (c.ctrlKey && (u.add("ctrl"), u.add("cmd")), c.metaKey && u.add("meta"))), c.shiftKey && u.add("shift"), c.altKey && u.add("alt");
3860
- const m = Array.from(d).every(
3871
+ const y = Array.from(d).every(
3861
3872
  (b) => u.has(b)
3862
3873
  ), p = /* @__PURE__ */ new Set([...d]);
3863
3874
  d.has("cmd") && (p.add("meta"), p.add("ctrl")), d.has("meta") && p.add("cmd"), d.has("ctrl") && p.add("cmd");
@@ -3866,7 +3877,7 @@ class ei extends w {
3866
3877
  b
3867
3878
  )
3868
3879
  );
3869
- m && !g && (l.preventDefault(), l.stopPropagation(), t.action());
3880
+ y && !g && (l.preventDefault(), l.stopPropagation(), t.action());
3870
3881
  }, r = e instanceof HTMLElement && e.tabIndex >= 0 ? e : document;
3871
3882
  r.addEventListener("keydown", i);
3872
3883
  const a = () => {
@@ -3878,13 +3889,13 @@ class ei extends w {
3878
3889
  e._keyboardShortcutCleanup = a;
3879
3890
  }
3880
3891
  }
3881
- function Ce(o) {
3882
- return new ei(o);
3892
+ function Me(o) {
3893
+ return new ri(o);
3883
3894
  }
3884
- function er(o, s, e) {
3885
- return Ce({ key: o, modifiers: s, action: e });
3895
+ function sr(o, s, e) {
3896
+ return Me({ key: o, modifiers: s, action: e });
3886
3897
  }
3887
- class ti extends w {
3898
+ class si extends w {
3888
3899
  constructor() {
3889
3900
  super(...arguments);
3890
3901
  f(this, "type", "focused");
@@ -3913,8 +3924,8 @@ class ti extends w {
3913
3924
  let c = l(), d = !0;
3914
3925
  const u = () => {
3915
3926
  if (!d) return;
3916
- const m = l();
3917
- m !== c && (c = m, r(m)), d && requestAnimationFrame(u);
3927
+ const y = l();
3928
+ y !== c && (c = y, r(y)), d && requestAnimationFrame(u);
3918
3929
  };
3919
3930
  i = () => {
3920
3931
  d = !1;
@@ -3930,10 +3941,10 @@ class ti extends w {
3930
3941
  e._focusedCleanup = a;
3931
3942
  }
3932
3943
  }
3933
- function ni(o) {
3934
- return new ti({ focused: o });
3944
+ function ai(o) {
3945
+ return new si({ focused: o });
3935
3946
  }
3936
- class ii extends w {
3947
+ class li extends w {
3937
3948
  constructor(e = {}) {
3938
3949
  const t = {
3939
3950
  ...e,
@@ -3979,18 +3990,18 @@ class ii extends w {
3979
3990
  }
3980
3991
  }
3981
3992
  function re(o, s) {
3982
- return new ii({
3993
+ return new li({
3983
3994
  isFocusable: o ?? !0,
3984
3995
  interactions: s ?? []
3985
3996
  });
3986
3997
  }
3987
- function oi() {
3998
+ function ci() {
3988
3999
  return re(!0, ["activate"]);
3989
4000
  }
3990
- function ri() {
4001
+ function fi() {
3991
4002
  return re(!0, ["edit"]);
3992
4003
  }
3993
- class si extends w {
4004
+ class di extends w {
3994
4005
  constructor() {
3995
4006
  super(...arguments);
3996
4007
  f(this, "type", "onContinuousHover");
@@ -4009,10 +4020,10 @@ class si extends w {
4009
4020
  y: u.clientY
4010
4021
  };
4011
4022
  {
4012
- const m = e.getBoundingClientRect();
4023
+ const y = e.getBoundingClientRect();
4013
4024
  return {
4014
- x: u.clientX - m.left,
4015
- y: u.clientY - m.top
4025
+ x: u.clientX - y.left,
4026
+ y: u.clientY - y.top
4016
4027
  };
4017
4028
  }
4018
4029
  }, a = (u) => {
@@ -4040,21 +4051,21 @@ class si extends w {
4040
4051
  }
4041
4052
  }
4042
4053
  function se(o) {
4043
- return new si(o);
4054
+ return new di(o);
4044
4055
  }
4045
- function tr(o) {
4056
+ function ar(o) {
4046
4057
  return se({
4047
4058
  coordinateSpace: "local",
4048
4059
  perform: o
4049
4060
  });
4050
4061
  }
4051
- function nr(o) {
4062
+ function lr(o) {
4052
4063
  return se({
4053
4064
  coordinateSpace: "global",
4054
4065
  perform: o
4055
4066
  });
4056
4067
  }
4057
- class ai extends w {
4068
+ class ui extends w {
4058
4069
  constructor() {
4059
4070
  super(...arguments);
4060
4071
  f(this, "type", "allowsHitTesting");
@@ -4070,88 +4081,88 @@ class ai extends w {
4070
4081
  }
4071
4082
  }
4072
4083
  function ae(o) {
4073
- return new ai({ enabled: o });
4084
+ return new ui({ enabled: o });
4074
4085
  }
4075
- function ir() {
4086
+ function cr() {
4076
4087
  return ae(!0);
4077
4088
  }
4078
- function or() {
4089
+ function fr() {
4079
4090
  return ae(!1);
4080
4091
  }
4081
- function li(o, s) {
4092
+ function pi(o, s) {
4082
4093
  return new C({
4083
4094
  highPriorityGesture: { gesture: o, including: s }
4084
4095
  });
4085
4096
  }
4086
- function ci(o, s) {
4097
+ function mi(o, s) {
4087
4098
  return new C({
4088
4099
  simultaneousGesture: { gesture: o, including: s }
4089
4100
  });
4090
4101
  }
4091
- function fi(o) {
4102
+ function hi(o) {
4092
4103
  return new C({ onTap: o });
4093
4104
  }
4094
- function rr(o) {
4105
+ function dr(o) {
4095
4106
  return new C({ onFocus: o });
4096
4107
  }
4097
- function sr(o) {
4108
+ function ur(o) {
4098
4109
  return new C({ onBlur: o });
4099
4110
  }
4100
- function di(o) {
4111
+ function yi(o) {
4101
4112
  return new C({ onScroll: o });
4102
4113
  }
4103
- function ar(o) {
4114
+ function pr(o) {
4104
4115
  return new C({ onKeyDown: o });
4105
4116
  }
4106
- function lr(o) {
4117
+ function mr(o) {
4107
4118
  return new C({ onKeyPress: o });
4108
4119
  }
4109
- function cr(o) {
4120
+ function hr(o) {
4110
4121
  return new C({ onKeyUp: o });
4111
4122
  }
4112
- function fr(o) {
4123
+ function yr(o) {
4113
4124
  return new C({ onDoubleClick: o });
4114
4125
  }
4115
- function dr(o) {
4126
+ function gr(o) {
4116
4127
  return new C({ onContextMenu: o });
4117
4128
  }
4118
- function ui(o) {
4129
+ function gi(o) {
4119
4130
  return new C({ onWheel: o });
4120
4131
  }
4121
- function pi(o) {
4132
+ function vi(o) {
4122
4133
  return new C({ onInput: o });
4123
4134
  }
4124
- function mi(o) {
4135
+ function bi(o) {
4125
4136
  return new C({ onChange: o });
4126
4137
  }
4127
- function hi(o) {
4138
+ function Si(o) {
4128
4139
  return new C({ onCopy: o });
4129
4140
  }
4130
- function yi(o) {
4141
+ function wi(o) {
4131
4142
  return new C({ onCut: o });
4132
4143
  }
4133
- function gi(o) {
4144
+ function Ci(o) {
4134
4145
  return new C({ onPaste: o });
4135
4146
  }
4136
- function vi(o) {
4147
+ function Ei(o) {
4137
4148
  return new C({ onSelect: o });
4138
4149
  }
4139
- function bi(o) {
4150
+ function Mi(o) {
4140
4151
  return new C({ onTouchStart: o });
4141
4152
  }
4142
- function Si(o) {
4153
+ function Ti(o) {
4143
4154
  return new C({ onTouchMove: o });
4144
4155
  }
4145
- function wi(o) {
4156
+ function xi(o) {
4146
4157
  return new C({ onTouchEnd: o });
4147
4158
  }
4148
- function Ci(o) {
4159
+ function Li(o) {
4149
4160
  return new C({ onSwipeLeft: o });
4150
4161
  }
4151
- function Ei(o) {
4162
+ function Ai(o) {
4152
4163
  return new C({ onSwipeRight: o });
4153
4164
  }
4154
- function Mi(o = !0) {
4165
+ function ki(o = !0) {
4155
4166
  return new C({ disabled: o });
4156
4167
  }
4157
4168
  class B extends v {
@@ -4195,25 +4206,25 @@ class B extends v {
4195
4206
  );
4196
4207
  }
4197
4208
  }
4198
- function Ti(o) {
4209
+ function Pi(o) {
4199
4210
  return new B(o);
4200
4211
  }
4201
- function xi(o) {
4212
+ function Ii(o) {
4202
4213
  return new B({ cursor: o });
4203
4214
  }
4204
- function Li(o) {
4215
+ function $i(o) {
4205
4216
  return new B({ overflowY: o });
4206
4217
  }
4207
- function Ai(o) {
4218
+ function Vi(o) {
4208
4219
  return new B({ overflowX: o });
4209
4220
  }
4210
- function ki(o) {
4221
+ function Di(o) {
4211
4222
  return new B({ display: o });
4212
4223
  }
4213
- function Pi(o) {
4224
+ function Ri(o) {
4214
4225
  return new B({ outline: o });
4215
4226
  }
4216
- function Ii(o) {
4227
+ function Hi(o) {
4217
4228
  return new B({ outlineOffset: o });
4218
4229
  }
4219
4230
  class Q extends v {
@@ -4241,17 +4252,17 @@ class Q extends v {
4241
4252
  return t;
4242
4253
  }
4243
4254
  }
4244
- function $i(o) {
4255
+ function Oi(o) {
4245
4256
  return new Q(o);
4246
4257
  }
4247
- function Vi(o, s) {
4258
+ function _i(o, s) {
4248
4259
  return new Q({ [o]: s });
4249
4260
  }
4250
- function Di(o, s) {
4261
+ function Ni(o, s) {
4251
4262
  const e = o.startsWith("--") ? o : `--${o}`;
4252
4263
  return new Q({ [e]: s });
4253
4264
  }
4254
- function ur(o, s, e) {
4265
+ function vr(o, s, e) {
4255
4266
  const t = o.charAt(0).toUpperCase() + o.slice(1), n = `-${o.toLowerCase()}-${s}`, i = t + s.charAt(0).toUpperCase() + s.slice(1);
4256
4267
  return new Q({
4257
4268
  [n]: e,
@@ -4413,10 +4424,10 @@ f(K, "DANGEROUS_PATTERNS", [
4413
4424
  td: ["colspan", "rowspan"],
4414
4425
  th: ["colspan", "rowspan", "scope"]
4415
4426
  });
4416
- function pr(o, s) {
4427
+ function br(o, s) {
4417
4428
  return K.sanitize(o, s);
4418
4429
  }
4419
- class Ee {
4430
+ class Te {
4420
4431
  /**
4421
4432
  * Validate HTML content in development mode
4422
4433
  */
@@ -4446,7 +4457,7 @@ class Ee {
4446
4457
  ].some((t) => t.test(s));
4447
4458
  }
4448
4459
  }
4449
- f(Ee, "SUSPICIOUS_PATTERNS", [
4460
+ f(Te, "SUSPICIOUS_PATTERNS", [
4450
4461
  { pattern: /<script/i, message: "Script tags detected" },
4451
4462
  { pattern: /javascript:/i, message: "JavaScript URLs detected" },
4452
4463
  { pattern: /on\w+\s*=/i, message: "Event handlers detected" },
@@ -4458,7 +4469,7 @@ f(Ee, "SUSPICIOUS_PATTERNS", [
4458
4469
  { pattern: /@import/i, message: "CSS import statements detected" },
4459
4470
  { pattern: /expression\s*\(/i, message: "CSS expressions detected" }
4460
4471
  ]);
4461
- class Ri extends v {
4472
+ class Bi extends v {
4462
4473
  // Early priority to apply before other modifiers
4463
4474
  constructor(e = {}) {
4464
4475
  super(e);
@@ -4522,7 +4533,7 @@ class Ri extends v {
4522
4533
  }
4523
4534
  validateContent(e) {
4524
4535
  if (this.properties.__suppressWarnings) return;
4525
- const t = Ee.validate(e, {
4536
+ const t = Te.validate(e, {
4526
4537
  suppressWarnings: this.properties.__suppressWarnings
4527
4538
  });
4528
4539
  !t.isValid && t.warnings.length > 0 && (console.group("🔒 AsHTML Security Warnings"), console.warn("Potentially dangerous content detected in asHTML:"), t.warnings.forEach((n) => {
@@ -4530,25 +4541,25 @@ class Ri extends v {
4530
4541
  }), console.warn("Consider using a more comprehensive sanitization solution like DOMPurify"), console.warn("To suppress these warnings, use { __suppressWarnings: true }"), console.groupEnd()), this.properties.skipSanitizer && console.warn("🚨 AsHTML: Sanitization is DISABLED. Ensure content is safe!");
4531
4542
  }
4532
4543
  }
4533
- function Oi(o = {}) {
4534
- return new Ri(o);
4544
+ function zi(o = {}) {
4545
+ return new Bi(o);
4535
4546
  }
4536
- function Hi(o) {
4547
+ function Fi(o) {
4537
4548
  return new R({
4538
4549
  navigationTitle: o,
4539
4550
  role: "heading"
4540
4551
  });
4541
4552
  }
4542
- function _i(o = !0) {
4553
+ function Wi(o = !0) {
4543
4554
  return new R({
4544
4555
  navigationBarHidden: o,
4545
4556
  "aria-hidden": o.toString()
4546
4557
  });
4547
4558
  }
4548
- function Ni(o) {
4559
+ function ji(o) {
4549
4560
  return new R({ navigationBarItems: o });
4550
4561
  }
4551
- class Bi extends v {
4562
+ class Ui extends v {
4552
4563
  // High priority for HTML attributes
4553
4564
  constructor(e) {
4554
4565
  super(e);
@@ -4573,9 +4584,9 @@ class Bi extends v {
4573
4584
  }
4574
4585
  }
4575
4586
  function te(o) {
4576
- return new Bi({ id: o });
4587
+ return new Ui({ id: o });
4577
4588
  }
4578
- class zi extends v {
4589
+ class Ki extends v {
4579
4590
  // High priority for HTML attributes
4580
4591
  constructor(e) {
4581
4592
  super(e);
@@ -4614,10 +4625,10 @@ class zi extends v {
4614
4625
  });
4615
4626
  }
4616
4627
  }
4617
- function Fi(o) {
4618
- return new zi({ data: o });
4628
+ function Gi(o) {
4629
+ return new Ki({ data: o });
4619
4630
  }
4620
- class Wi extends v {
4631
+ class Yi extends v {
4621
4632
  // High priority for accessibility
4622
4633
  constructor(e) {
4623
4634
  super(e);
@@ -4641,8 +4652,8 @@ class Wi extends v {
4641
4652
  );
4642
4653
  }
4643
4654
  }
4644
- function ji(o) {
4645
- return new Wi({ tabIndex: o });
4655
+ function Xi(o) {
4656
+ return new Yi({ tabIndex: o });
4646
4657
  }
4647
4658
  const q = class q extends v {
4648
4659
  constructor(e) {
@@ -4811,19 +4822,19 @@ let ne = q;
4811
4822
  function j(o) {
4812
4823
  return new ne({ aria: o });
4813
4824
  }
4814
- function Ui(o) {
4825
+ function Zi(o) {
4815
4826
  return j({ role: o });
4816
4827
  }
4817
- function Ki(o) {
4828
+ function qi(o) {
4818
4829
  return j({ label: o });
4819
4830
  }
4820
- function Gi(o) {
4831
+ function Ji(o) {
4821
4832
  return j({ live: o });
4822
4833
  }
4823
- function Yi(o) {
4834
+ function Qi(o) {
4824
4835
  return j({ describedby: o });
4825
4836
  }
4826
- function Xi(o) {
4837
+ function eo(o) {
4827
4838
  return j({ modal: o });
4828
4839
  }
4829
4840
  class G extends v {
@@ -4860,25 +4871,25 @@ class G extends v {
4860
4871
  return typeof e == "number" ? e.toString() : String(e);
4861
4872
  }
4862
4873
  }
4863
- function Zi(o) {
4874
+ function to(o) {
4864
4875
  return new G({
4865
4876
  properties: o.properties,
4866
4877
  scope: o.scope || "local"
4867
4878
  });
4868
4879
  }
4869
- function qi(o, s, e) {
4880
+ function no(o, s, e) {
4870
4881
  return new G({
4871
4882
  properties: { [o]: s },
4872
4883
  scope: e || "local"
4873
4884
  });
4874
4885
  }
4875
- function Ji(o) {
4886
+ function io(o) {
4876
4887
  return new G({
4877
4888
  properties: o,
4878
4889
  scope: "local"
4879
4890
  });
4880
4891
  }
4881
- function mr(o) {
4892
+ function Sr(o) {
4882
4893
  const s = {};
4883
4894
  return Object.entries(o).forEach(([e, t]) => {
4884
4895
  if (t !== void 0) {
@@ -4893,7 +4904,7 @@ function mr(o) {
4893
4904
  scope: "local"
4894
4905
  });
4895
4906
  }
4896
- function hr(o) {
4907
+ function wr(o) {
4897
4908
  const s = {};
4898
4909
  return Object.entries(o).forEach(([e, t]) => {
4899
4910
  t !== void 0 && (s[`--token-${e}`] = t);
@@ -4970,24 +4981,24 @@ function U(o) {
4970
4981
  function Y(o) {
4971
4982
  return new F({ after: o });
4972
4983
  }
4973
- function Qi(o) {
4984
+ function oo(o) {
4974
4985
  return new F(o);
4975
4986
  }
4976
- function eo(o, s = {}) {
4987
+ function ro(o, s = {}) {
4977
4988
  return U({
4978
4989
  content: o,
4979
4990
  display: "inline-block",
4980
4991
  ...s
4981
4992
  });
4982
4993
  }
4983
- function to(o, s = {}) {
4994
+ function so(o, s = {}) {
4984
4995
  return Y({
4985
4996
  content: o,
4986
4997
  display: "inline-block",
4987
4998
  ...s
4988
4999
  });
4989
5000
  }
4990
- function no(o = "#ddd", s = 1, e = 16) {
5001
+ function ao(o = "#ddd", s = 1, e = 16) {
4991
5002
  return U({
4992
5003
  content: "",
4993
5004
  display: "inline-block",
@@ -4998,7 +5009,7 @@ function no(o = "#ddd", s = 1, e = 16) {
4998
5009
  verticalAlign: "middle"
4999
5010
  });
5000
5011
  }
5001
- function io(o = "#ddd", s = 1, e = 16) {
5012
+ function lo(o = "#ddd", s = 1, e = 16) {
5002
5013
  return Y({
5003
5014
  content: "",
5004
5015
  display: "inline-block",
@@ -5009,7 +5020,7 @@ function io(o = "#ddd", s = 1, e = 16) {
5009
5020
  verticalAlign: "middle"
5010
5021
  });
5011
5022
  }
5012
- function oo(o = '"', s = '"') {
5023
+ function co(o = '"', s = '"') {
5013
5024
  return new F({
5014
5025
  before: {
5015
5026
  content: o,
@@ -5025,7 +5036,7 @@ function oo(o = '"', s = '"') {
5025
5036
  }
5026
5037
  });
5027
5038
  }
5028
- function ro(o = "currentColor", s = 1, e = 1) {
5039
+ function fo(o = "currentColor", s = 1, e = 1) {
5029
5040
  return Y({
5030
5041
  content: "",
5031
5042
  position: "absolute",
@@ -5037,7 +5048,7 @@ function ro(o = "currentColor", s = 1, e = 1) {
5037
5048
  opacity: e
5038
5049
  });
5039
5050
  }
5040
- function so(o = "#ff3b30", s = 6, e = "") {
5051
+ function uo(o = "#ff3b30", s = 6, e = "") {
5041
5052
  return Y({
5042
5053
  content: e,
5043
5054
  position: "absolute",
@@ -5058,7 +5069,7 @@ function so(o = "#ff3b30", s = 6, e = "") {
5058
5069
  justifyContent: "center"
5059
5070
  });
5060
5071
  }
5061
- function ao(o, s = "top", e = "#333", t = "white") {
5072
+ function po(o, s = "top", e = "#333", t = "white") {
5062
5073
  return U({
5063
5074
  content: o,
5064
5075
  position: "absolute",
@@ -5100,7 +5111,7 @@ function ao(o, s = "top", e = "#333", t = "white") {
5100
5111
  }[s]
5101
5112
  });
5102
5113
  }
5103
- function lo(o, s = "#ff3b30", e = "white") {
5114
+ function mo(o, s = "#ff3b30", e = "white") {
5104
5115
  return U({
5105
5116
  content: o,
5106
5117
  position: "absolute",
@@ -5117,7 +5128,7 @@ function lo(o, s = "#ff3b30", e = "white") {
5117
5128
  zIndex: 10
5118
5129
  });
5119
5130
  }
5120
- function co(o = 20, s = "#007AFF", e = 2) {
5131
+ function ho(o = 20, s = "#007AFF", e = 2) {
5121
5132
  if (!document.getElementById("tachui-spinner-animation")) {
5122
5133
  const t = document.createElement("style");
5123
5134
  t.id = "tachui-spinner-animation", t.textContent = `
@@ -5138,467 +5149,467 @@ function co(o = 20, s = "#007AFF", e = 2) {
5138
5149
  animation: "spin 1s linear infinite"
5139
5150
  });
5140
5151
  }
5141
- const fo = [
5152
+ const yo = [
5142
5153
  // Padding
5143
5154
  ["padding", M],
5144
- ["paddingTop", Re],
5145
- ["paddingBottom", Oe],
5146
- ["paddingLeft", He],
5147
- ["paddingRight", _e],
5148
- ["paddingLeading", Ne],
5149
- ["paddingTrailing", Be],
5150
- ["paddingHorizontal", ze],
5151
- ["paddingVertical", Fe],
5155
+ ["paddingTop", Be],
5156
+ ["paddingBottom", ze],
5157
+ ["paddingLeft", Fe],
5158
+ ["paddingRight", We],
5159
+ ["paddingLeading", je],
5160
+ ["paddingTrailing", Ue],
5161
+ ["paddingHorizontal", Ke],
5162
+ ["paddingVertical", Ge],
5152
5163
  // Margin
5153
5164
  ["margin", T],
5154
- ["marginTop", We],
5155
- ["marginBottom", je],
5156
- ["marginLeft", Ue],
5157
- ["marginRight", Ke],
5158
- ["marginLeading", Ge],
5159
- ["marginTrailing", Ye],
5160
- ["marginHorizontal", Xe],
5161
- ["marginVertical", Ze],
5165
+ ["marginTop", Ye],
5166
+ ["marginBottom", Xe],
5167
+ ["marginLeft", Ze],
5168
+ ["marginRight", qe],
5169
+ ["marginLeading", Je],
5170
+ ["marginTrailing", Qe],
5171
+ ["marginHorizontal", et],
5172
+ ["marginVertical", tt],
5162
5173
  // Size helpers
5163
- ["size", qe],
5164
- ["width", Je],
5165
- ["height", Qe],
5166
- ["maxWidth", et],
5167
- ["maxHeight", nt],
5168
- ["minWidth", tt],
5169
- ["minHeight", it],
5174
+ ["size", nt],
5175
+ ["width", it],
5176
+ ["height", ot],
5177
+ ["maxWidth", rt],
5178
+ ["maxHeight", at],
5179
+ ["minWidth", st],
5180
+ ["minHeight", lt],
5170
5181
  // Layout + flexbox
5171
- ["aspectRatio", Ct],
5172
- ["fixedSize", Mt],
5173
- ["frame", Tt],
5174
- ["resizable", At],
5175
- ["layoutPriority", xt],
5176
- ["offset", bt],
5177
- ["overlay", Vt],
5178
- ["position", Pt],
5179
- ["absolutePosition", Lt],
5180
- ["scaleEffect", wt],
5181
- ["zIndex", It],
5182
+ ["aspectRatio", Lt],
5183
+ ["fixedSize", kt],
5184
+ ["frame", Pt],
5185
+ ["resizable", Vt],
5186
+ ["layoutPriority", It],
5187
+ ["offset", Mt],
5188
+ ["overlay", _t],
5189
+ ["position", Rt],
5190
+ ["absolutePosition", $t],
5191
+ ["scaleEffect", xt],
5192
+ ["zIndex", Ht],
5182
5193
  ["flexbox", k],
5183
- ["flexGrow", ct],
5184
- ["flexShrink", ft],
5185
- ["flexBasis", dt],
5186
- ["justifyContent", ut],
5187
- ["alignItems", pt],
5188
- ["alignSelf", mt],
5189
- ["gap", ht],
5190
- ["flexDirection", yt],
5191
- ["flexWrap", gt],
5194
+ ["flexGrow", mt],
5195
+ ["flexShrink", ht],
5196
+ ["flexBasis", yt],
5197
+ ["justifyContent", gt],
5198
+ ["alignItems", vt],
5199
+ ["alignSelf", bt],
5200
+ ["gap", St],
5201
+ ["flexDirection", wt],
5202
+ ["flexWrap", Ct],
5192
5203
  // Appearance
5193
- ["backgroundColor", Dt],
5194
- ["background", Rt],
5195
- ["border", Ht],
5196
- ["borderTop", _t],
5197
- ["borderBottom", Bt],
5198
- ["borderLeft", zt],
5199
- ["borderRight", Nt],
5200
- ["clipShape", jt],
5201
- ["clipped", Kt],
5202
- ["cornerRadius", Yt],
5203
- ["foregroundColor", Ft],
5204
+ ["backgroundColor", Nt],
5205
+ ["background", Bt],
5206
+ ["border", Ft],
5207
+ ["borderTop", Wt],
5208
+ ["borderBottom", Ut],
5209
+ ["borderLeft", Kt],
5210
+ ["borderRight", jt],
5211
+ ["clipShape", Xt],
5212
+ ["clipped", qt],
5213
+ ["cornerRadius", Qt],
5214
+ ["foregroundColor", Gt],
5204
5215
  ["gradientText", W],
5205
- ["opacity", Gt],
5206
- ["fontFamily", Xt],
5207
- ["fontSize", Zt],
5208
- ["fontWeight", qt],
5209
- ["fontStyle", Jt],
5210
- ["fontPreset", Qt],
5216
+ ["opacity", Jt],
5217
+ ["fontFamily", en],
5218
+ ["fontSize", tn],
5219
+ ["fontWeight", nn],
5220
+ ["fontStyle", on],
5221
+ ["fontPreset", rn],
5211
5222
  // Typography
5212
- ["typography", en],
5213
- ["textAlign", tn],
5214
- ["font", fn],
5215
- ["lineClamp", pn],
5216
- ["wordBreak", hn],
5217
- ["letterSpacing", rn],
5218
- ["lineHeight", on],
5219
- ["textDecoration", nn],
5220
- ["textOverflow", sn],
5221
- ["textTransform", we],
5222
- ["textCase", cn],
5223
- ["whiteSpace", an],
5224
- ["overflow", ln],
5225
- ["hyphens", bn],
5226
- ["overflowWrap", gn],
5223
+ ["typography", sn],
5224
+ ["textAlign", an],
5225
+ ["font", hn],
5226
+ ["lineClamp", vn],
5227
+ ["wordBreak", Sn],
5228
+ ["letterSpacing", fn],
5229
+ ["lineHeight", cn],
5230
+ ["textDecoration", ln],
5231
+ ["textOverflow", dn],
5232
+ ["textTransform", Ee],
5233
+ ["textCase", mn],
5234
+ ["whiteSpace", un],
5235
+ ["overflow", pn],
5236
+ ["hyphens", Mn],
5237
+ ["overflowWrap", Cn],
5227
5238
  // Interaction
5228
5239
  ["allowsHitTesting", ae],
5229
5240
  ["focusable", re],
5230
- ["activatable", oi],
5231
- ["editable", ri],
5232
- ["focused", ni],
5233
- ["keyboardShortcut", Ce],
5234
- ["onHover", kn],
5235
- ["onMouseEnter", On],
5236
- ["onMouseLeave", Hn],
5237
- ["onMouseDown", _n],
5238
- ["onMouseUp", Nn],
5239
- ["onDoubleClick", Bn],
5240
- ["onContextMenu", zn],
5241
- ["onKeyDown", Un],
5242
- ["onKeyUp", Kn],
5243
- ["onKeyPress", Gn],
5244
- ["onFocus", Zn],
5245
- ["onBlur", qn],
5241
+ ["activatable", ci],
5242
+ ["editable", fi],
5243
+ ["focused", ai],
5244
+ ["keyboardShortcut", Me],
5245
+ ["onHover", Dn],
5246
+ ["onMouseEnter", zn],
5247
+ ["onMouseLeave", Fn],
5248
+ ["onMouseDown", Wn],
5249
+ ["onMouseUp", jn],
5250
+ ["onDoubleClick", Un],
5251
+ ["onContextMenu", Kn],
5252
+ ["onKeyDown", Zn],
5253
+ ["onKeyUp", qn],
5254
+ ["onKeyPress", Jn],
5255
+ ["onFocus", ti],
5256
+ ["onBlur", ni],
5246
5257
  ["onContinuousHover", se],
5247
- ["onLongPressGesture", Qn],
5248
- ["scroll", Sn],
5249
- ["scrollBehavior", wn],
5250
- ["overscrollBehavior", Cn],
5251
- ["overscrollBehaviorX", En],
5252
- ["overscrollBehaviorY", Mn],
5253
- ["scrollMargin", Tn],
5254
- ["scrollPadding", xn],
5255
- ["scrollSnap", Ln],
5256
- ["highPriorityGesture", li],
5257
- ["simultaneousGesture", ci],
5258
- ["onTap", fi],
5259
- ["onScroll", di],
5260
- ["onWheel", ui],
5261
- ["onInput", pi],
5262
- ["onChange", mi],
5263
- ["onCopy", hi],
5264
- ["onCut", yi],
5265
- ["onPaste", gi],
5266
- ["onSelect", vi],
5267
- ["onTouchStart", bi],
5268
- ["onTouchMove", Si],
5269
- ["onTouchEnd", wi],
5270
- ["onSwipeLeft", Ci],
5271
- ["onSwipeRight", Ei],
5272
- ["disabled", Mi],
5258
+ ["onLongPressGesture", oi],
5259
+ ["scroll", Tn],
5260
+ ["scrollBehavior", xn],
5261
+ ["overscrollBehavior", Ln],
5262
+ ["overscrollBehaviorX", An],
5263
+ ["overscrollBehaviorY", kn],
5264
+ ["scrollMargin", Pn],
5265
+ ["scrollPadding", In],
5266
+ ["scrollSnap", $n],
5267
+ ["highPriorityGesture", pi],
5268
+ ["simultaneousGesture", mi],
5269
+ ["onTap", hi],
5270
+ ["onScroll", yi],
5271
+ ["onWheel", gi],
5272
+ ["onInput", vi],
5273
+ ["onChange", bi],
5274
+ ["onCopy", Si],
5275
+ ["onCut", wi],
5276
+ ["onPaste", Ci],
5277
+ ["onSelect", Ei],
5278
+ ["onTouchStart", Mi],
5279
+ ["onTouchMove", Ti],
5280
+ ["onTouchEnd", xi],
5281
+ ["onSwipeLeft", Li],
5282
+ ["onSwipeRight", Ai],
5283
+ ["disabled", ki],
5273
5284
  // Utility
5274
- ["css", $i],
5275
- ["cssProperty", Vi],
5276
- ["cssVariable", Di],
5277
- ["utility", Ti],
5278
- ["cursor", xi],
5279
- ["display", ki],
5280
- ["overflowX", Ai],
5281
- ["overflowY", Li],
5282
- ["outline", Pi],
5283
- ["outlineOffset", Ii],
5284
- ["asHTML", Oi],
5285
- ["navigationTitle", Hi],
5286
- ["navigationBarHidden", _i],
5287
- ["navigationBarItems", Ni],
5288
- ["animation", st],
5289
- ["transform", rt],
5290
- ["transitions", at],
5291
- ["transition", ot],
5285
+ ["css", Oi],
5286
+ ["cssProperty", _i],
5287
+ ["cssVariable", Ni],
5288
+ ["utility", Pi],
5289
+ ["cursor", Ii],
5290
+ ["display", Di],
5291
+ ["overflowX", Vi],
5292
+ ["overflowY", $i],
5293
+ ["outline", Ri],
5294
+ ["outlineOffset", Hi],
5295
+ ["asHTML", zi],
5296
+ ["navigationTitle", Fi],
5297
+ ["navigationBarHidden", Wi],
5298
+ ["navigationBarItems", ji],
5299
+ ["animation", dt],
5300
+ ["transform", ft],
5301
+ ["transitions", ut],
5302
+ ["transition", ct],
5292
5303
  // Attributes
5293
5304
  ["aria", j],
5294
- ["ariaLabel", Ki],
5295
- ["ariaLive", Gi],
5296
- ["ariaDescribedBy", Yi],
5297
- ["ariaModal", Xi],
5298
- ["role", Ui],
5299
- ["customProperties", Zi],
5300
- ["customProperty", qi],
5301
- ["cssVariables", Ji],
5305
+ ["ariaLabel", qi],
5306
+ ["ariaLive", Ji],
5307
+ ["ariaDescribedBy", Qi],
5308
+ ["ariaModal", eo],
5309
+ ["role", Zi],
5310
+ ["customProperties", to],
5311
+ ["customProperty", no],
5312
+ ["cssVariables", io],
5302
5313
  ["id", te],
5303
5314
  ["elementId", te],
5304
5315
  ["viewId", te],
5305
- ["data", Fi],
5306
- ["tabIndex", ji],
5316
+ ["data", Gi],
5317
+ ["tabIndex", Xi],
5307
5318
  // Elements / pseudo elements
5308
5319
  ["before", U],
5309
5320
  ["after", Y],
5310
- ["pseudoElements", Qi],
5311
- ["iconBefore", eo],
5312
- ["iconAfter", to],
5313
- ["lineBefore", no],
5314
- ["lineAfter", io],
5315
- ["quotes", oo],
5316
- ["underline", ro],
5317
- ["badge", so],
5318
- ["tooltip", ao],
5319
- ["cornerRibbon", lo],
5320
- ["spinner", co],
5321
+ ["pseudoElements", oo],
5322
+ ["iconBefore", ro],
5323
+ ["iconAfter", so],
5324
+ ["lineBefore", ao],
5325
+ ["lineAfter", lo],
5326
+ ["quotes", co],
5327
+ ["underline", fo],
5328
+ ["badge", uo],
5329
+ ["tooltip", po],
5330
+ ["cornerRibbon", mo],
5331
+ ["spinner", ho],
5321
5332
  // Lifecycle
5322
- ["task", lt]
5333
+ ["task", pt]
5323
5334
  ];
5324
- function uo(o) {
5325
- const s = o?.registry ?? Le;
5335
+ function go(o) {
5336
+ const s = o?.registry ?? ke;
5326
5337
  s.registerPlugin?.({
5327
5338
  name: "@tachui/modifiers",
5328
- version: De,
5339
+ version: Ne,
5329
5340
  author: "tachUI Team",
5330
5341
  verified: !0
5331
- }), fo.forEach(([e, t]) => {
5342
+ }), yo.forEach(([e, t]) => {
5332
5343
  s.has(e) || s.register(e, t);
5333
5344
  });
5334
5345
  }
5335
- uo();
5346
+ go();
5336
5347
  export {
5337
- hn as $,
5338
- ye as A,
5339
- fn as B,
5340
- en as C,
5341
- tn as D,
5342
- we as E,
5343
- O as F,
5344
- nn as G,
5345
- Xo as H,
5346
- Zo as I,
5347
- on as J,
5348
- rn as K,
5349
- sn as L,
5348
+ Sn as $,
5349
+ ve as A,
5350
+ hn as B,
5351
+ sn as C,
5352
+ an as D,
5353
+ Ee as E,
5354
+ H as F,
5355
+ ln as G,
5356
+ tr as H,
5357
+ nr as I,
5358
+ cn as J,
5359
+ fn as K,
5360
+ dn as L,
5350
5361
  I as M,
5351
- an as N,
5352
- vt as O,
5353
- kt as P,
5354
- ln as Q,
5355
- cn as R,
5356
- St as S,
5362
+ un as N,
5363
+ Et as O,
5364
+ Dt as P,
5365
+ pn as Q,
5366
+ mn as R,
5367
+ Tt as S,
5357
5368
  P as T,
5358
- qo as U,
5359
- Jo as V,
5360
- Qo as W,
5361
- un as X,
5362
- pn as Y,
5363
- ge as Z,
5364
- mn as _,
5365
- ct as a,
5366
- Yn as a$,
5367
- yn as a0,
5368
- gn as a1,
5369
- vn as a2,
5370
- bn as a3,
5371
- ve as a4,
5372
- be as a5,
5373
- Dt as a6,
5374
- Rt as a7,
5375
- Ho as a8,
5369
+ ir as U,
5370
+ or as V,
5371
+ rr as W,
5372
+ gn as X,
5373
+ vn as Y,
5374
+ be as Z,
5375
+ bn as _,
5376
+ mt as a,
5377
+ Qn as a$,
5378
+ wn as a0,
5379
+ Cn as a1,
5380
+ En as a2,
5381
+ Mn as a3,
5382
+ Se as a4,
5383
+ we as a5,
5384
+ Nt as a6,
5385
+ Bt as a7,
5386
+ Wo as a8,
5376
5387
  W as a9,
5377
- wn as aA,
5378
- Cn as aB,
5379
- En as aC,
5380
- Mn as aD,
5381
- Tn as aE,
5382
- xn as aF,
5383
- Ln as aG,
5384
- An as aH,
5385
- kn as aI,
5386
- Pn as aJ,
5387
- In as aK,
5388
- $n as aL,
5389
- Vn as aM,
5390
- Dn as aN,
5391
- Rn as aO,
5392
- On as aP,
5393
- Hn as aQ,
5394
- _n as aR,
5395
- Nn as aS,
5396
- Bn as aT,
5397
- zn as aU,
5398
- Fn as aV,
5399
- Wn as aW,
5400
- jn as aX,
5401
- Un as aY,
5402
- Kn as aZ,
5403
- Gn as a_,
5404
- _o as aa,
5405
- No as ab,
5406
- Bo as ac,
5407
- zo as ad,
5408
- Fo as ae,
5388
+ xn as aA,
5389
+ Ln as aB,
5390
+ An as aC,
5391
+ kn as aD,
5392
+ Pn as aE,
5393
+ In as aF,
5394
+ $n as aG,
5395
+ Vn as aH,
5396
+ Dn as aI,
5397
+ Rn as aJ,
5398
+ Hn as aK,
5399
+ On as aL,
5400
+ _n as aM,
5401
+ Nn as aN,
5402
+ Bn as aO,
5403
+ zn as aP,
5404
+ Fn as aQ,
5405
+ Wn as aR,
5406
+ jn as aS,
5407
+ Un as aT,
5408
+ Kn as aU,
5409
+ Gn as aV,
5410
+ Yn as aW,
5411
+ Xn as aX,
5412
+ Zn as aY,
5413
+ qn as aZ,
5414
+ Jn as a_,
5415
+ jo as aa,
5416
+ Uo as ab,
5417
+ Ko as ac,
5418
+ Go as ad,
5419
+ Yo as ae,
5409
5420
  D as af,
5410
- Ot as ag,
5411
- Ht as ah,
5412
- _t as ai,
5413
- Nt as aj,
5414
- Bt as ak,
5415
- zt as al,
5416
- Wo as am,
5417
- jo as an,
5418
- Uo as ao,
5419
- Ko as ap,
5420
- Go as aq,
5421
- Se as ar,
5422
- Ft as as,
5423
- Yo as at,
5424
- Wt as au,
5425
- jt as av,
5426
- Ut as aw,
5427
- Kt as ax,
5428
- H as ay,
5429
- Sn as az,
5430
- fo as b,
5431
- Ee as b$,
5432
- Xn as b0,
5433
- Zn as b1,
5434
- qn as b2,
5435
- Jn as b3,
5436
- Qn as b4,
5437
- ei as b5,
5438
- Ce as b6,
5439
- er as b7,
5440
- ti as b8,
5441
- ni as b9,
5442
- hi as bA,
5443
- yi as bB,
5444
- gi as bC,
5445
- vi as bD,
5446
- bi as bE,
5447
- Si as bF,
5448
- wi as bG,
5449
- Ci as bH,
5450
- Ei as bI,
5451
- Mi as bJ,
5421
+ zt as ag,
5422
+ Ft as ah,
5423
+ Wt as ai,
5424
+ jt as aj,
5425
+ Ut as ak,
5426
+ Kt as al,
5427
+ Xo as am,
5428
+ Zo as an,
5429
+ qo as ao,
5430
+ Jo as ap,
5431
+ Qo as aq,
5432
+ Ce as ar,
5433
+ Gt as as,
5434
+ er as at,
5435
+ Yt as au,
5436
+ Xt as av,
5437
+ Zt as aw,
5438
+ qt as ax,
5439
+ O as ay,
5440
+ Tn as az,
5441
+ yo as b,
5442
+ Te as b$,
5443
+ ei as b0,
5444
+ ti as b1,
5445
+ ni as b2,
5446
+ ii as b3,
5447
+ oi as b4,
5448
+ ri as b5,
5449
+ Me as b6,
5450
+ sr as b7,
5451
+ si as b8,
5452
+ ai as b9,
5453
+ Si as bA,
5454
+ wi as bB,
5455
+ Ci as bC,
5456
+ Ei as bD,
5457
+ Mi as bE,
5458
+ Ti as bF,
5459
+ xi as bG,
5460
+ Li as bH,
5461
+ Ai as bI,
5462
+ ki as bJ,
5452
5463
  B as bK,
5453
- Ti as bL,
5454
- xi as bM,
5455
- Li as bN,
5456
- Ai as bO,
5457
- ki as bP,
5458
- Pi as bQ,
5459
- Ii as bR,
5464
+ Pi as bL,
5465
+ Ii as bM,
5466
+ $i as bN,
5467
+ Vi as bO,
5468
+ Di as bP,
5469
+ Ri as bQ,
5470
+ Hi as bR,
5460
5471
  Q as bS,
5461
- $i as bT,
5462
- Vi as bU,
5463
- Di as bV,
5464
- ur as bW,
5472
+ Oi as bT,
5473
+ _i as bU,
5474
+ Ni as bV,
5475
+ vr as bW,
5465
5476
  K as bX,
5466
- pr as bY,
5467
- Ri as bZ,
5468
- Oi as b_,
5469
- ii as ba,
5477
+ br as bY,
5478
+ Bi as bZ,
5479
+ zi as b_,
5480
+ li as ba,
5470
5481
  re as bb,
5471
- oi as bc,
5472
- ri as bd,
5473
- si as be,
5482
+ ci as bc,
5483
+ fi as bd,
5484
+ di as be,
5474
5485
  se as bf,
5475
- tr as bg,
5476
- nr as bh,
5477
- ai as bi,
5486
+ ar as bg,
5487
+ lr as bh,
5488
+ ui as bi,
5478
5489
  ae as bj,
5479
- ir as bk,
5480
- or as bl,
5481
- li as bm,
5482
- ci as bn,
5483
- fi as bo,
5484
- rr as bp,
5485
- sr as bq,
5486
- di as br,
5487
- ar as bs,
5488
- lr as bt,
5489
- cr as bu,
5490
- fr as bv,
5491
- dr as bw,
5492
- ui as bx,
5493
- pi as by,
5494
- mi as bz,
5495
- ft as c,
5490
+ cr as bk,
5491
+ fr as bl,
5492
+ pi as bm,
5493
+ mi as bn,
5494
+ hi as bo,
5495
+ dr as bp,
5496
+ ur as bq,
5497
+ yi as br,
5498
+ pr as bs,
5499
+ mr as bt,
5500
+ hr as bu,
5501
+ yr as bv,
5502
+ gr as bw,
5503
+ gi as bx,
5504
+ vi as by,
5505
+ bi as bz,
5506
+ ht as c,
5496
5507
  ee as c$,
5497
5508
  F as c0,
5498
5509
  U as c1,
5499
5510
  Y as c2,
5500
- Qi as c3,
5501
- eo as c4,
5502
- to as c5,
5503
- no as c6,
5504
- io as c7,
5505
- oo as c8,
5506
- ro as c9,
5507
- Oe as cA,
5508
- He as cB,
5509
- _e as cC,
5510
- Ne as cD,
5511
- Be as cE,
5512
- ze as cF,
5513
- Fe as cG,
5514
- Po as cH,
5511
+ oo as c3,
5512
+ ro as c4,
5513
+ so as c5,
5514
+ ao as c6,
5515
+ lo as c7,
5516
+ co as c8,
5517
+ fo as c9,
5518
+ ze as cA,
5519
+ Fe as cB,
5520
+ We as cC,
5521
+ je as cD,
5522
+ Ue as cE,
5523
+ Ke as cF,
5524
+ Ge as cG,
5525
+ Ho as cH,
5515
5526
  V as cI,
5516
5527
  T as cJ,
5517
- We as cK,
5518
- je as cL,
5519
- Ue as cM,
5520
- Ke as cN,
5521
- Ge as cO,
5522
- Ye as cP,
5523
- Xe as cQ,
5524
- Ze as cR,
5525
- Io as cS,
5528
+ Ye as cK,
5529
+ Xe as cL,
5530
+ Ze as cM,
5531
+ qe as cN,
5532
+ Je as cO,
5533
+ Qe as cP,
5534
+ et as cQ,
5535
+ tt as cR,
5536
+ Oo as cS,
5526
5537
  N as cT,
5527
- qe as cU,
5528
- Je as cV,
5529
- Qe as cW,
5530
- et as cX,
5531
- tt as cY,
5532
- nt as cZ,
5533
- it as c_,
5534
- so as ca,
5535
- ao as cb,
5536
- lo as cc,
5537
- co as cd,
5538
- Bi as ce,
5538
+ nt as cU,
5539
+ it as cV,
5540
+ ot as cW,
5541
+ rt as cX,
5542
+ st as cY,
5543
+ at as cZ,
5544
+ lt as c_,
5545
+ uo as ca,
5546
+ po as cb,
5547
+ mo as cc,
5548
+ ho as cd,
5549
+ Ui as ce,
5539
5550
  te as cf,
5540
- zi as cg,
5541
- Fi as ch,
5542
- Wi as ci,
5543
- ji as cj,
5551
+ Ki as cg,
5552
+ Gi as ch,
5553
+ Yi as ci,
5554
+ Xi as cj,
5544
5555
  ne as ck,
5545
5556
  j as cl,
5546
- Ui as cm,
5547
- Ki as cn,
5548
- Gi as co,
5549
- Yi as cp,
5550
- Xi as cq,
5557
+ Zi as cm,
5558
+ qi as cn,
5559
+ Ji as co,
5560
+ Qi as cp,
5561
+ eo as cq,
5551
5562
  G as cr,
5552
- Zi as cs,
5553
- qi as ct,
5554
- Ji as cu,
5555
- mr as cv,
5556
- hr as cw,
5563
+ to as cs,
5564
+ no as ct,
5565
+ io as cu,
5566
+ Sr as cv,
5567
+ wr as cw,
5557
5568
  $ as cx,
5558
5569
  M as cy,
5559
- Re as cz,
5560
- dt as d,
5561
- ot as d0,
5562
- ko as d1,
5563
- De as d2,
5564
- So as d3,
5565
- Co as d4,
5566
- Mo as d5,
5567
- Ie as d6,
5568
- Lo as d7,
5569
- Hi as d8,
5570
- _i as d9,
5571
- Ni as da,
5572
- rt as db,
5573
- st as dc,
5574
- at as dd,
5575
- lt as de,
5570
+ Be as cz,
5571
+ yt as d,
5572
+ ct as d0,
5573
+ Ro as d1,
5574
+ Ne as d2,
5575
+ xo as d3,
5576
+ Ao as d4,
5577
+ Po as d5,
5578
+ He as d6,
5579
+ Vo as d7,
5580
+ Fi as d8,
5581
+ Wi as d9,
5582
+ ji as da,
5583
+ ft as db,
5584
+ dt as dc,
5585
+ ut as dd,
5586
+ pt as de,
5576
5587
  w as df,
5577
- Vo as dg,
5578
- Do as dh,
5588
+ No as dg,
5589
+ Bo as dh,
5579
5590
  C as di,
5580
- Ro as dj,
5581
- Oo as dk,
5582
- pt as e,
5591
+ zo as dj,
5592
+ Fo as dk,
5593
+ vt as e,
5583
5594
  k as f,
5584
- mt as g,
5585
- ht as h,
5586
- yt as i,
5587
- ut as j,
5588
- gt as k,
5589
- $o as l,
5590
- Ct as m,
5591
- Et as n,
5592
- bt as o,
5593
- Mt as p,
5594
- Tt as q,
5595
- uo as r,
5596
- wt as s,
5597
- xt as t,
5598
- Lt as u,
5599
- At as v,
5600
- Pt as w,
5601
- $t as x,
5602
- Vt as y,
5603
- It as z
5595
+ bt as g,
5596
+ St as h,
5597
+ wt as i,
5598
+ gt as j,
5599
+ Ct as k,
5600
+ _o as l,
5601
+ Lt as m,
5602
+ At as n,
5603
+ Mt as o,
5604
+ kt as p,
5605
+ Pt as q,
5606
+ go as r,
5607
+ xt as s,
5608
+ It as t,
5609
+ $t as u,
5610
+ Vt as v,
5611
+ Rt as w,
5612
+ Ot as x,
5613
+ _t as y,
5614
+ Ht as z
5604
5615
  };