@tempots/dom 19.3.1 → 20.0.1

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.
package/index.js CHANGED
@@ -12,7 +12,7 @@ const Ce = (t, e, r) => {
12
12
  isNaN(a) && (a = 97), n += String.fromCharCode(i + (a - i) * r);
13
13
  }
14
14
  return n;
15
- }, Le = (t, e, r) => new Date(t.getTime() + (e.getTime() - t.getTime()) * r), Ne = (t, e) => e, Oe = (t) => typeof t == "number" ? Te : typeof t == "string" ? Ce : t instanceof Date ? Le : Ne;
15
+ }, Le = (t, e, r) => new Date(t.getTime() + (e.getTime() - t.getTime()) * r), Oe = (t, e) => e, Ne = (t) => typeof t == "number" ? Te : typeof t == "string" ? Ce : t instanceof Date ? Le : Oe;
16
16
  class ke {
17
17
  /**
18
18
  * Creates a new instance of `ElementPosition`.
@@ -146,7 +146,7 @@ const p = class p {
146
146
  * @returns - A new Computed instance with the mapped value.
147
147
  */
148
148
  l(this, "map", (e, r = (s, n) => s === n) => {
149
- const s = new P(() => {
149
+ const s = new E(() => {
150
150
  try {
151
151
  return e(this.get());
152
152
  } catch (n) {
@@ -166,7 +166,7 @@ const p = class p {
166
166
  * @returns A new Signal that emits the values of the resulting Signal.
167
167
  */
168
168
  l(this, "flatMap", (e, r = (s, n) => s === n) => {
169
- const s = new P(() => {
169
+ const s = new E(() => {
170
170
  try {
171
171
  return e(this.get()).get();
172
172
  } catch (n) {
@@ -190,21 +190,12 @@ const p = class p {
190
190
  */
191
191
  l(this, "at", (e) => this.map((r) => r[e]));
192
192
  /**
193
- * Represents a collection of signals for each key in the value of the signal.
194
- * @typeParam T - The type of the signals.
193
+ * @internal
195
194
  */
196
- l(this, "$", new Proxy(this, {
197
- /**
198
- * Retrieves the signal with the specified key.
199
- * @param _ - The target object.
200
- * @param key - The key of the signal.
201
- * @returns The signal associated with the key.
202
- */
203
- get: (e, r) => this.at(r)
204
- }));
195
+ l(this, "_$");
205
196
  l(this, "filter", (e, r) => {
206
197
  let s = r ?? this.get();
207
- const n = new P(() => {
198
+ const n = new E(() => {
208
199
  try {
209
200
  const o = this.get();
210
201
  return s = e(o) ? o : s;
@@ -226,7 +217,7 @@ const p = class p {
226
217
  */
227
218
  l(this, "filterMap", (e, r, s = (n, o) => n === o) => {
228
219
  let n = r;
229
- const o = new P(() => {
220
+ const o = new E(() => {
230
221
  try {
231
222
  const i = this.get(), a = e(i);
232
223
  return n = a ?? n;
@@ -254,13 +245,13 @@ const p = class p {
254
245
  let i = 0, a = new AbortController();
255
246
  return o.onDispose(
256
247
  this.on(async (u) => {
257
- const c = ++i;
248
+ const f = ++i;
258
249
  a.abort(), a = new AbortController();
259
250
  try {
260
251
  const d = await e(u, { abortSignal: a.signal });
261
- c === i && o.set(d);
252
+ f === i && o.set(d);
262
253
  } catch (d) {
263
- if (c === i)
254
+ if (f === i)
264
255
  if (s != null)
265
256
  o.set(s(d));
266
257
  else
@@ -327,6 +318,15 @@ const p = class p {
327
318
  get value() {
328
319
  return this._value;
329
320
  }
321
+ /**
322
+ * Represents a collection of signals mapping to each key/field in the wrapped value.
323
+ * @typeParam T - The type of the signals.
324
+ */
325
+ get $() {
326
+ return this._$ !== void 0 ? this._$ : this._$ = new Proxy(this, {
327
+ get: (e, r) => this.at(r)
328
+ });
329
+ }
330
330
  };
331
331
  /**
332
332
  * Creates a Signal that holds the result of a Promise.
@@ -393,7 +393,7 @@ l(p, "unwrap", (e) => p.is(e) ? e.get() : e), /**
393
393
  l(p, "map", (e, r) => p.is(e) ? e.map(r) : r(e));
394
394
  let h = p;
395
395
  const Re = typeof queueMicrotask == "function" ? queueMicrotask : (t) => Promise.resolve().then(t);
396
- class P extends h {
396
+ class E extends h {
397
397
  /**
398
398
  * Represents a Signal object.
399
399
  * @param _fn - The function that returns the value of the signal.
@@ -450,7 +450,7 @@ class P extends h {
450
450
  return this.get();
451
451
  }
452
452
  }
453
- const V = class V extends h {
453
+ const F = class F extends h {
454
454
  constructor() {
455
455
  super(...arguments);
456
456
  /**
@@ -504,7 +504,7 @@ const V = class V extends h {
504
504
  * @returns A Prop object representing the isomorphism.
505
505
  */
506
506
  l(this, "iso", (r, s, n = (o, i) => o === i) => {
507
- const o = new V(r(this.get()), n);
507
+ const o = new F(r(this.get()), n);
508
508
  return o.onDispose(this.on((i) => o.set(r(i)))), o.on((i) => this._setAndNotify(s(i), !1)), o;
509
509
  });
510
510
  /**
@@ -533,16 +533,29 @@ const V = class V extends h {
533
533
  * @param value - The value to check.
534
534
  * @returns `true` if the value is a Prop, `false` otherwise.
535
535
  */
536
- l(V, "is", (r) => (
536
+ l(F, "is", (r) => (
537
537
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
538
538
  r != null && r.$__prop__ === !0
539
539
  ));
540
- let F = V;
541
- const U = (t, e, r = (s, n) => s === n) => {
542
- const s = new P(t, r);
540
+ let $ = F;
541
+ const V = (t, e, r = (s, n) => s === n) => {
542
+ const s = new E(t, r);
543
543
  return e.forEach((n) => n.setDerivative(s)), s;
544
- }, mt = (t, e) => U(t, e).dispose, C = (t, e = (r, s) => r === s) => new F(t, e), gt = (t, e = (r, s) => r === s) => new h(t, e);
545
- class z {
544
+ }, pt = (...t) => (e, r) => {
545
+ const s = t.filter((n) => h.is(n));
546
+ return V(
547
+ () => e(...t.map((n) => h.unwrap(n))),
548
+ s,
549
+ r
550
+ );
551
+ }, Me = (t, e) => V(t, e).dispose, mt = (...t) => (e) => {
552
+ const r = t.filter((s) => h.is(s));
553
+ Me(
554
+ () => e(...t.map(h.unwrap)),
555
+ r
556
+ );
557
+ }, C = (t, e = (r, s) => r === s) => new $(t, e), gt = (t, e = (r, s) => r === s) => new h(t, e);
558
+ class Q {
546
559
  constructor() {
547
560
  l(this, "_store", /* @__PURE__ */ new Map());
548
561
  /**
@@ -561,7 +574,7 @@ class z {
561
574
  });
562
575
  }
563
576
  }
564
- const Q = ({
577
+ const Y = ({
565
578
  key: t,
566
579
  defaultValue: e,
567
580
  store: r,
@@ -570,56 +583,56 @@ const Q = ({
570
583
  equals: o = (a, u) => a === u,
571
584
  onLoad: i = (a) => a
572
585
  }) => {
573
- const a = r.getItem(t), u = new F(
586
+ const a = r.getItem(t), u = new $(
574
587
  a != null ? i(n(a)) : typeof e == "function" ? e() : e,
575
588
  o
576
589
  );
577
- return u.on((c) => {
578
- r.setItem(t, s(c));
590
+ return u.on((f) => {
591
+ r.setItem(t, s(f));
579
592
  }), u;
580
- }, _t = (t) => Q({
593
+ }, _t = (t) => Y({
581
594
  ...t,
582
- store: (window == null ? void 0 : window.localStorage) ?? new z()
583
- }), vt = (t) => Q({
595
+ store: (window == null ? void 0 : window.localStorage) ?? new Q()
596
+ }), vt = (t) => Y({
584
597
  ...t,
585
- store: (window == null ? void 0 : window.sessionStorage) ?? new z()
598
+ store: (window == null ? void 0 : window.sessionStorage) ?? new Q()
586
599
  });
587
- function X(t) {
600
+ function z(t) {
588
601
  return typeof requestAnimationFrame == "function" ? requestAnimationFrame(t) : setTimeout(t, 0);
589
602
  }
590
- const Me = (t, e, r, s) => {
603
+ const $e = (t, e, r, s) => {
591
604
  const n = (s == null ? void 0 : s.duration) ?? 300, o = (s == null ? void 0 : s.easing) ?? ((_) => _), i = (s == null ? void 0 : s.equals) ?? ((_, k) => _ === k);
592
- let a = s == null ? void 0 : s.interpolate, u = t, c = e(), d = performance.now(), A = null, m = !0;
593
- const D = new P(e, i), S = C(t, i);
594
- S.onDispose(() => {
595
- A !== null && cancelAnimationFrame(A);
596
- }), S.onDispose(D.dispose), r.forEach((_) => {
597
- _.setDerivative(D), _.onDispose(S.dispose);
605
+ let a = s == null ? void 0 : s.interpolate, u = t, f = e(), d = performance.now(), S = null, m = !0;
606
+ const D = new E(e, i), A = C(t, i);
607
+ A.onDispose(() => {
608
+ S !== null && cancelAnimationFrame(S);
609
+ }), A.onDispose(D.dispose), r.forEach((_) => {
610
+ _.setDerivative(D), _.onDispose(A.dispose);
598
611
  });
599
- const Pe = (_) => {
600
- c = _, d = performance.now(), u = S.value, m && (m = !1, A = X(J));
601
- }, J = () => {
602
- const k = (performance.now() - d) / h.unwrap(n), Ee = o(k);
603
- a == null && (a = Oe(u));
604
- let K = a(u, c, Ee);
605
- k >= 1 ? (m = !0, K = c) : A = X(J), S.set(K);
612
+ const Ee = (_) => {
613
+ f = _, d = performance.now(), u = A.value, m && (m = !1, S = z(H));
614
+ }, H = () => {
615
+ const k = (performance.now() - d) / h.unwrap(n), Pe = o(k);
616
+ a == null && (a = Ne(u));
617
+ let X = a(u, f, Pe);
618
+ k >= 1 ? (m = !0, X = f) : S = z(H), A.set(X);
606
619
  };
607
- return D.on(Pe), S;
608
- }, yt = (t, e) => {
620
+ return D.on(Ee), A;
621
+ }, wt = (t, e) => {
609
622
  const { initialValue: r, ...s } = e ?? {};
610
- return Me(
623
+ return $e(
611
624
  r ?? t.get(),
612
625
  t.get,
613
626
  [t],
614
627
  s
615
628
  );
616
- }, wt = (t, e) => {
629
+ }, yt = (t, e) => {
617
630
  const { signals: r, literals: s } = Object.entries(t).reduce(
618
631
  ({ signals: o, literals: i }, [a, u]) => (h.is(u) ? o.push([a, u]) : i[a] = u, { signals: o, literals: i }),
619
632
  { signals: [], literals: {} }
620
633
  ), n = r.map(([, o]) => o);
621
- return U(() => (r.forEach(([o, i]) => s[o] = i.value), e(s)), n);
622
- }, Y = /* @__PURE__ */ new Set(["checked", "disabled", "hidden", "selected"]), Z = /* @__PURE__ */ new Set([
634
+ return V(() => (r.forEach(([o, i]) => s[o] = i.value), e(s)), n);
635
+ }, Z = /* @__PURE__ */ new Set(["checked", "disabled", "hidden", "selected"]), K = /* @__PURE__ */ new Set([
623
636
  "rowSpan",
624
637
  "colSpan",
625
638
  "tabIndex",
@@ -647,9 +660,9 @@ const Me = (t, e, r, s) => {
647
660
  r == null ? e[t] = null : e[t] = r;
648
661
  }, Ie = (t) => (e, r) => {
649
662
  r == null ? e[t] = null : e[t] = String(r);
650
- }, $e = (t) => (e, r) => {
663
+ }, Be = (t) => (e, r) => {
651
664
  r == null ? e.removeAttribute(t) : e.setAttribute(t, r);
652
- }, te = (t) => Y.has(t) ? b(t, Fe) : Z.has(t) ? b(t, Ve) : x.has(t) ? b(t, qe) : ee.has(t) ? b(t, Ie) : b(t, $e), re = (t) => (e) => Y.has(t) ? !!e[t] : Z.has(t) ? Number(e[t]) : x.has(t) ? e[t] : ee.has(t) ? String(e[t]) : e.getAttribute(t);
665
+ }, te = (t) => Z.has(t) ? b(t, Fe) : K.has(t) ? b(t, Ve) : x.has(t) ? b(t, qe) : ee.has(t) ? b(t, Ie) : b(t, Be), re = (t) => (e) => Z.has(t) ? !!e[t] : K.has(t) ? Number(e[t]) : x.has(t) ? e[t] : ee.has(t) ? String(e[t]) : e.getAttribute(t);
653
666
  class v {
654
667
  /**
655
668
  * Constructs a new `DOMContext` instance.
@@ -771,7 +784,7 @@ class v {
771
784
  */
772
785
  l(this, "getProvider", (e) => {
773
786
  if (this.providers[e] === void 0)
774
- throw new Be(e);
787
+ throw new je(e);
775
788
  return this.providers[e];
776
789
  });
777
790
  this.document = e, this.element = r, this.reference = s, this.providers = n, this.isFirstLevel = o;
@@ -787,7 +800,7 @@ class v {
787
800
  return new v(e.ownerDocument, e, r, {}, !0);
788
801
  }
789
802
  }
790
- class Be extends Error {
803
+ class je extends Error {
791
804
  constructor(e) {
792
805
  super(`Provider not found: ${e.description}`);
793
806
  }
@@ -795,42 +808,7 @@ class Be extends Error {
795
808
  const g = (t) => {
796
809
  const e = t;
797
810
  e && e.onblur && (e.onblur = null), !(!t || t.ownerDocument === void 0) && t.parentElement && t.parentElement.removeChild(t);
798
- }, Ue = (t) => se(t) ? t : t.parentElement, se = (t) => t.nodeType === 1;
799
- function je(t) {
800
- var r;
801
- let e = (r = t.split("/").pop()) == null ? void 0 : r.split(".").pop();
802
- return e === "" ? e = void 0 : e = "." + e, e;
803
- }
804
- function We(t, e, r) {
805
- let s = t.target;
806
- for (; s != null && !(s instanceof HTMLAnchorElement); )
807
- s = s.parentElement;
808
- if (s == null)
809
- return !0;
810
- const n = s;
811
- if (t.button !== 0 || t.ctrlKey || t.metaKey || n.target !== "_self" && n.target !== "" || n.getAttribute("download") != null)
812
- return !0;
813
- const { pathname: o, search: i, hash: a } = n;
814
- if (r) {
815
- const u = o + i + a, c = n.getAttribute("href");
816
- if (!(c != null && c.startsWith("#")) && c !== u)
817
- return !0;
818
- }
819
- if (e !== !1) {
820
- const u = je(o);
821
- if (u != null && (e === !0 || Array.isArray(e) && !e.some((c) => u == c)))
822
- return !0;
823
- }
824
- return !1;
825
- }
826
- const At = (t, {
827
- checkExtension: e = [".html"],
828
- checkExternalUrl: r = !0
829
- } = {}) => (s) => {
830
- Array.isArray(e) && (e = e.map(
831
- (n) => n.startsWith(".") ? n : "." + n
832
- )), !We(s, e, r) && t() && s.preventDefault();
833
- }, ne = (t) => (e) => {
811
+ }, Ue = (t) => se(t) ? t : t.parentElement, se = (t) => t.nodeType === 1, ne = (t) => (e) => {
834
812
  he(e);
835
813
  const r = e.createText(t);
836
814
  return e.appendOrInsert(r), (s) => {
@@ -844,15 +822,15 @@ const At = (t, {
844
822
  return (n) => {
845
823
  s(), n && g(r);
846
824
  };
847
- }, St = (t) => h.is(t) ? oe(t) : ne(t), y = (...t) => (e) => {
848
- const r = t.map((s) => f(s)(e));
825
+ }, St = (t) => h.is(t) ? oe(t) : ne(t), w = (...t) => (e) => {
826
+ const r = t.map((s) => c(s)(e));
849
827
  return (s) => {
850
828
  r.forEach((n) => n(s));
851
829
  };
852
- }, w = () => () => {
830
+ }, y = () => () => {
853
831
  }, Ge = (t) => (e) => (ce(e), e.element.classList.add(...t), (r) => {
854
832
  r && e.element.classList.remove(...t);
855
- }), He = (t) => (e) => {
833
+ }), Je = (t) => (e) => {
856
834
  ce(e);
857
835
  const r = e.element;
858
836
  let s = [];
@@ -871,7 +849,7 @@ const At = (t, {
871
849
  i && r(n.element, o);
872
850
  };
873
851
  };
874
- }, N = (t, e) => {
852
+ }, O = (t, e) => {
875
853
  const r = te(t), s = re(t);
876
854
  return (n) => {
877
855
  ae(n, t);
@@ -880,7 +858,7 @@ const At = (t, {
880
858
  i(), a && r(n.element, o);
881
859
  };
882
860
  };
883
- }, E = new Proxy(
861
+ }, P = new Proxy(
884
862
  {},
885
863
  {
886
864
  /**
@@ -894,9 +872,9 @@ const At = (t, {
894
872
  * @returns The renderable component for the specified attribute.
895
873
  *
896
874
  */
897
- get: (t, e) => e === "class" ? (r) => h.is(r) ? He(r) : Ge(
875
+ get: (t, e) => e === "class" ? (r) => h.is(r) ? Je(r) : Ge(
898
876
  (r ?? "").split(" ").filter((s) => s.length > 0)
899
- ) : (r) => h.is(r) ? N(
877
+ ) : (r) => h.is(r) ? O(
900
878
  e,
901
879
  r
902
880
  ) : L(
@@ -904,7 +882,7 @@ const At = (t, {
904
882
  r
905
883
  )
906
884
  }
907
- ), Pt = new Proxy(
885
+ ), At = new Proxy(
908
886
  {},
909
887
  {
910
888
  /**
@@ -915,7 +893,7 @@ const At = (t, {
915
893
  * @returns The renderable component for the specified attribute.
916
894
  *
917
895
  */
918
- get: (t, e) => (r) => h.is(r) ? N(
896
+ get: (t, e) => (r) => h.is(r) ? O(
919
897
  `data-${e}`,
920
898
  r
921
899
  ) : L(`data-${e}`, r)
@@ -931,7 +909,7 @@ const At = (t, {
931
909
  * @returns The renderable component for the specified attribute.
932
910
  *
933
911
  */
934
- get: (t, e) => (r) => h.is(r) ? N(
912
+ get: (t, e) => (r) => h.is(r) ? O(
935
913
  `aria-${e}`,
936
914
  r
937
915
  ) : L(
@@ -939,7 +917,7 @@ const At = (t, {
939
917
  r
940
918
  )
941
919
  }
942
- ), Dt = new Proxy(
920
+ ), Pt = new Proxy(
943
921
  {},
944
922
  {
945
923
  /**
@@ -950,7 +928,7 @@ const At = (t, {
950
928
  * @returns The renderable component for the specified attribute.
951
929
  *
952
930
  */
953
- get: (t, e) => (r) => h.is(r) ? N(
931
+ get: (t, e) => (r) => h.is(r) ? O(
954
932
  e,
955
933
  r
956
934
  ) : L(
@@ -958,7 +936,7 @@ const At = (t, {
958
936
  r
959
937
  )
960
938
  }
961
- ), bt = new Proxy(
939
+ ), Dt = new Proxy(
962
940
  {},
963
941
  {
964
942
  /**
@@ -968,7 +946,7 @@ const At = (t, {
968
946
  * @returns The renderable component for the specified attribute.
969
947
  *
970
948
  */
971
- get: (t, e) => (r) => h.is(r) ? N(
949
+ get: (t, e) => (r) => h.is(r) ? O(
972
950
  e,
973
951
  r
974
952
  ) : L(
@@ -976,21 +954,21 @@ const At = (t, {
976
954
  r
977
955
  )
978
956
  }
979
- ), f = (t) => t == null ? w : Array.isArray(t) ? y(...t.map(f)) : typeof t == "string" ? ne(t) : h.is(t) ? oe(t) : t, ie = (t, ...e) => (r) => {
957
+ ), c = (t) => t == null ? y : Array.isArray(t) ? w(...t.map(c)) : typeof t == "string" ? ne(t) : h.is(t) ? oe(t) : t, ie = (t, ...e) => (r) => {
980
958
  const s = r.createElement(t, void 0);
981
- r.isFirstLevel && O() && fe(s), r.appendOrInsert(s), r = r.withElement(s);
982
- const n = e.map((o) => f(o)(r));
959
+ r.isFirstLevel && N() && fe(s), r.appendOrInsert(s), r = r.withElement(s);
960
+ const n = e.map((o) => c(o)(r));
983
961
  return (o) => {
984
962
  n.forEach((i) => i(!1)), o && g(s);
985
963
  };
986
964
  }, le = (t, e, ...r) => (s) => {
987
965
  const n = s.createElement(t, e);
988
- s.isFirstLevel && O() && fe(n), s.appendOrInsert(n), s = s.withElement(n);
989
- const o = r.map((i) => f(i)(s));
966
+ s.isFirstLevel && N() && fe(n), s.appendOrInsert(n), s = s.withElement(n);
967
+ const o = r.map((i) => c(i)(s));
990
968
  return (i) => {
991
969
  o.forEach((a) => a(!1)), i && g(n);
992
970
  };
993
- }, Tt = new Proxy(
971
+ }, bt = new Proxy(
994
972
  {},
995
973
  {
996
974
  /**
@@ -998,9 +976,9 @@ const At = (t, {
998
976
  * @param tagName - The HTML tag name.
999
977
  * @returns A renderable function that creates and appends the HTML element to the DOM.
1000
978
  */
1001
- get: (t, e) => (...r) => ie(e, r.flatMap(f))
979
+ get: (t, e) => (...r) => ie(e, r.flatMap(c))
1002
980
  }
1003
- ), Ct = new Proxy(
981
+ ), Tt = new Proxy(
1004
982
  {},
1005
983
  {
1006
984
  /**
@@ -1008,9 +986,9 @@ const At = (t, {
1008
986
  * @param type - The input type name.
1009
987
  * @returns A renderable function that creates and appends the HTMLInput element to the DOM.
1010
988
  */
1011
- get: (t, e) => (...r) => ie("input", E.type(e), ...r)
989
+ get: (t, e) => (...r) => ie("input", P.type(e), ...r)
1012
990
  }
1013
- ), Je = "http://www.w3.org/2000/svg", Lt = new Proxy(
991
+ ), We = "http://www.w3.org/2000/svg", Ct = new Proxy(
1014
992
  {},
1015
993
  {
1016
994
  /**
@@ -1018,9 +996,9 @@ const At = (t, {
1018
996
  * @param tagName - The SVG tag name.
1019
997
  * @returns A renderable function that creates and appends the SVG element to the DOM.
1020
998
  */
1021
- get: (t, e) => (...r) => le(e, Je, r.flatMap(f))
999
+ get: (t, e) => (...r) => le(e, We, r.flatMap(c))
1022
1000
  }
1023
- ), Ke = "http://www.w3.org/1998/Math/MathML", Nt = new Proxy(
1001
+ ), He = "http://www.w3.org/1998/Math/MathML", Lt = new Proxy(
1024
1002
  {},
1025
1003
  {
1026
1004
  /**
@@ -1028,7 +1006,7 @@ const At = (t, {
1028
1006
  * @param tagName - The Math tag name.
1029
1007
  * @returns A renderable function that creates and appends the Math element to the DOM.
1030
1008
  */
1031
- get: (t, e) => (...r) => le(e, Ke, r.flatMap(f))
1009
+ get: (t, e) => (...r) => le(e, He, r.flatMap(c))
1032
1010
  }
1033
1011
  ), T = "data-tempo-attr", R = "data-tempo-class", ue = "data-tempo-node", M = "data-tempo-text", Xe = (t, e) => {
1034
1012
  const r = t.getAttribute(e);
@@ -1040,7 +1018,7 @@ const At = (t, {
1040
1018
  );
1041
1019
  }
1042
1020
  }, ae = (t, e) => {
1043
- O() && t.isFirstLevel && Xe(t.element, e);
1021
+ N() && t.isFirstLevel && Xe(t.element, e);
1044
1022
  }, ze = (t) => {
1045
1023
  t.querySelectorAll(`[${T}]`).forEach((e) => {
1046
1024
  const r = JSON.parse(
@@ -1055,7 +1033,7 @@ function Qe(t) {
1055
1033
  t.setAttribute(R, t.className);
1056
1034
  }
1057
1035
  const ce = (t) => {
1058
- O() && t.isFirstLevel && Qe(t.element);
1036
+ N() && t.isFirstLevel && Qe(t.element);
1059
1037
  }, Ye = (t) => {
1060
1038
  t.querySelectorAll(`[${R}]`).forEach((e) => {
1061
1039
  const r = e.getAttribute(R);
@@ -1067,62 +1045,62 @@ const ce = (t) => {
1067
1045
  t.querySelectorAll(`[${ue}]`).forEach((e) => {
1068
1046
  g(e);
1069
1047
  });
1070
- }, xe = (t) => {
1048
+ }, Ke = (t) => {
1071
1049
  t.setAttribute(M, t.textContent ?? "");
1072
1050
  }, he = (t) => {
1073
- O() && t.isFirstLevel && xe(t.element);
1074
- }, et = (t) => {
1051
+ N() && t.isFirstLevel && Ke(t.element);
1052
+ }, xe = (t) => {
1075
1053
  t.querySelectorAll(`[${M}]`).forEach((e) => {
1076
1054
  e.textContent = e.getAttribute(M), e.removeAttribute(M);
1077
1055
  });
1078
- }, tt = (t) => {
1079
- Ze(t), Ye(t), ze(t), et(t);
1056
+ }, et = (t) => {
1057
+ Ze(t), Ye(t), ze(t), xe(t);
1080
1058
  }, de = () => {
1081
1059
  const t = globalThis;
1082
1060
  return t.__tempoSSR__ == null && (t.__tempoSSR__ = {
1083
1061
  isSSR: !1,
1084
1062
  counter: 0
1085
1063
  }), t.__tempoSSR__;
1086
- }, j = (t, e) => {
1064
+ }, U = (t, e) => {
1087
1065
  const r = de();
1088
1066
  r[t] = e;
1089
- }, pe = (t) => de()[t], $ = (t) => {
1090
- j("isSSR", t);
1091
- }, W = () => pe("counter"), rt = () => {
1092
- j("counter", (W() ?? 0) + 1);
1093
- }, st = () => {
1094
- j("counter", (W() ?? 0) - 1);
1095
- }, Ot = (t = 30) => ($(!0), new Promise((e, r) => {
1067
+ }, pe = (t) => de()[t], B = (t) => {
1068
+ U("isSSR", t);
1069
+ }, G = () => pe("counter"), tt = () => {
1070
+ U("counter", (G() ?? 0) + 1);
1071
+ }, rt = () => {
1072
+ U("counter", (G() ?? 0) - 1);
1073
+ }, Ot = (t = 30) => (B(!0), new Promise((e, r) => {
1096
1074
  let s;
1097
1075
  const n = setInterval(() => {
1098
- W() <= 0 && (clearInterval(n), clearTimeout(s), $(!1), e());
1076
+ G() <= 0 && (clearInterval(n), clearTimeout(s), B(!1), e());
1099
1077
  }, 30);
1100
1078
  s = setTimeout(() => {
1101
- clearInterval(n), $(!1), r(new Error("SSR Timeout"));
1079
+ clearInterval(n), B(!1), r(new Error("SSR Timeout"));
1102
1080
  }, t * 1e3);
1103
- })), kt = (t) => (rt(), f(t(st))), O = () => pe("isSSR"), me = (t, e) => {
1081
+ })), Nt = (t) => (tt(), c(t(rt))), N = () => pe("isSSR"), me = (t, e) => {
1104
1082
  if (typeof e == "function")
1105
1083
  return me(t, { then: e });
1106
- const r = e.pending != null ? f(e.pending) : w, s = e.then, n = e.error != null ? (o) => f(e.error(o)) : () => w;
1084
+ const r = e.pending != null ? c(e.pending) : y, s = e.then, n = e.error != null ? (o) => c(e.error(o)) : () => y;
1107
1085
  return (o) => {
1108
1086
  let i = !0;
1109
1087
  const a = t();
1110
1088
  o = o.makeRef();
1111
- let u = f(r)(o);
1089
+ let u = c(r)(o);
1112
1090
  return a.then(
1113
- (c) => {
1114
- i && (u(!0), u = f(s(c))(o));
1091
+ (f) => {
1092
+ i && (u(!0), u = c(s(f))(o));
1115
1093
  },
1116
- (c) => {
1117
- i && (u(!0), u = f(n(c))(o));
1094
+ (f) => {
1095
+ i && (u(!0), u = c(n(f))(o));
1118
1096
  }
1119
- ), (c) => {
1120
- i = !1, u(c), c && o.reference && g(o.reference);
1097
+ ), (f) => {
1098
+ i = !1, u(f), f && o.reference && g(o.reference);
1121
1099
  };
1122
1100
  };
1123
- }, Rt = (t, e) => me(() => t, e), ge = (t, e) => (r) => (r.element.addEventListener(t, e), (s) => {
1101
+ }, kt = (t, e) => me(() => t, e), ge = (t, e) => (r) => (r.element.addEventListener(t, e), (s) => {
1124
1102
  s && r.element.removeEventListener(t, e);
1125
- }), nt = (t) => ge("click", (e) => {
1103
+ }), st = (t) => ge("click", (e) => {
1126
1104
  e.preventDefault();
1127
1105
  const r = e.target;
1128
1106
  setTimeout(() => {
@@ -1139,13 +1117,13 @@ const ce = (t) => {
1139
1117
  */
1140
1118
  get: (t, e) => (r) => ge(e, r)
1141
1119
  }
1142
- ), ot = (t) => (e) => {
1120
+ ), nt = (t) => (e) => {
1143
1121
  const r = e.target;
1144
1122
  t(r.value);
1145
- }, it = (t) => (e) => {
1123
+ }, ot = (t) => (e) => {
1146
1124
  const r = e.target;
1147
1125
  t(r.valueAsNumber);
1148
- }, lt = (t) => (e) => {
1126
+ }, it = (t) => (e) => {
1149
1127
  const r = e.target;
1150
1128
  if (r.value === "")
1151
1129
  return;
@@ -1155,7 +1133,7 @@ const ce = (t) => {
1155
1133
  Number(s[2].substring(0, 2))
1156
1134
  );
1157
1135
  t(n);
1158
- }, ut = (t) => (e) => {
1136
+ }, lt = (t) => (e) => {
1159
1137
  const r = e.target;
1160
1138
  if (r.value === "")
1161
1139
  return;
@@ -1165,25 +1143,25 @@ const ce = (t) => {
1165
1143
  Number(n[2])
1166
1144
  ), i = s[1].split(":");
1167
1145
  o.setHours(Number(i[0])), o.setMinutes(Number(i[1])), o.setSeconds(Number(i[2])), t(o);
1168
- }, Mt = (t) => (e) => {
1146
+ }, Rt = (t) => (e) => {
1169
1147
  const r = e.target;
1170
1148
  t(r.checked);
1171
- }, Ft = (t) => (e) => {
1149
+ }, Mt = (t) => (e) => {
1172
1150
  e.preventDefault(), t();
1173
- }, Vt = (t) => (e) => {
1151
+ }, $t = (t) => (e) => {
1174
1152
  e.stopPropagation(), t();
1175
- }, qt = (t) => (e) => {
1153
+ }, Ft = (t) => (e) => {
1176
1154
  e.stopImmediatePropagation(), t();
1177
- }, It = (t, e = "input") => y(
1178
- E.valueAsDate(t),
1179
- q[e](lt(t.set))
1180
- ), $t = (t, e = "input") => y(
1181
- E.valueAsDate(t),
1182
- q[e](ut(t.set))
1183
- ), Bt = (t, e = "input") => y(
1184
- E.valueAsNumber(t),
1155
+ }, Vt = (t, e = "input") => w(
1156
+ P.valueAsDate(t),
1185
1157
  q[e](it(t.set))
1186
- ), Ut = (t, e = "input") => y(E.value(t), q[e](ot(t.set))), jt = (t) => y(E.checked(t), nt(t.set)), G = (t, e) => (r) => {
1158
+ ), qt = (t, e = "input") => w(
1159
+ P.valueAsDate(t),
1160
+ q[e](lt(t.set))
1161
+ ), It = (t, e = "input") => w(
1162
+ P.valueAsNumber(t),
1163
+ q[e](ot(t.set))
1164
+ ), Bt = (t, e = "input") => w(P.value(t), q[e](nt(t.set))), jt = (t) => w(P.checked(t), st(t.set)), J = (t, e) => (r) => {
1187
1165
  r = r.makeRef();
1188
1166
  let s, n;
1189
1167
  const o = t.map((u) => Object.keys(u)[0]);
@@ -1191,26 +1169,26 @@ const ce = (t) => {
1191
1169
  const a = o.on((u) => {
1192
1170
  if (u !== i) {
1193
1171
  n == null || n.dispose(), s == null || s(!0), n = t.map((d) => d[u]);
1194
- const c = e[u](n);
1195
- s = f(c)(r), i = u;
1172
+ const f = e[u](n);
1173
+ s = c(f)(r), i = u;
1196
1174
  }
1197
1175
  });
1198
1176
  return (u) => {
1199
1177
  a(), u && r.reference != null && g(r.reference), s == null || s(!0);
1200
1178
  };
1201
- }, _e = (t, e, r) => G(
1179
+ }, _e = (t, e, r) => J(
1202
1180
  t.map((s) => ({ [s[e]]: s })),
1203
1181
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
1204
1182
  r
1205
- ), Wt = (t, e) => _e(t, "kind", e), Gt = (t, e) => {
1183
+ ), Ut = (t, e) => _e(t, "kind", e), Gt = (t, e) => {
1206
1184
  const r = t.map(([s, n]) => ({ [s]: n }));
1207
- return G(r, e);
1208
- }, Ht = (t, e) => _e(t, "type", e), H = (t, e) => G(
1185
+ return J(r, e);
1186
+ }, Jt = (t, e) => _e(t, "type", e), W = (t, e) => J(
1209
1187
  t.map((r) => ({ [r]: !0 })),
1210
1188
  e
1211
- ), Jt = (t, e = {}) => (r) => {
1212
- const s = (e == null ? void 0 : e.firstSeparator) ?? w, n = (e == null ? void 0 : e.lastSeparator) ?? w;
1213
- return H(
1189
+ ), Wt = (t, e = {}) => (r) => {
1190
+ const s = (e == null ? void 0 : e.firstSeparator) ?? y, n = (e == null ? void 0 : e.lastSeparator) ?? y;
1191
+ return W(
1214
1192
  r.map((o) => o.isFirst ? "first" : o.isLast ? "last" : "other"),
1215
1193
  {
1216
1194
  first: () => s,
@@ -1225,8 +1203,8 @@ const ce = (t) => {
1225
1203
  throw new Error(`No provider found for mark: ${o.description}`);
1226
1204
  return n[o] = i, n;
1227
1205
  }, {});
1228
- return f(e(s))(r);
1229
- }, Kt = (t, e) => (r) => {
1206
+ return c(e(s))(r);
1207
+ }, Ht = (t, e) => (r) => {
1230
1208
  const s = [], n = Object.entries(t).reduce(
1231
1209
  (o, [i, a]) => (s.push(
1232
1210
  a((u) => (Reflect.set(o, i, u), null))(r)
@@ -1236,42 +1214,42 @@ const ce = (t) => {
1236
1214
  return s.push(e(n)(r)), (o) => {
1237
1215
  s.forEach((i) => i(o));
1238
1216
  };
1239
- }, Xt = (t, e) => ve([t], (r) => f(e(r[t]))), zt = (t, e) => ve(t, (r) => f(e(r))), Qt = (t) => (e) => t(e), Yt = (t) => (e) => (e.appendOrInsert(t), (r) => {
1217
+ }, Xt = (t, e) => ve([t], (r) => c(e(r[t]))), zt = (t, e) => ve(t, (r) => c(e(r))), Qt = (t) => (e) => t(e), Yt = (t) => (e) => (e.appendOrInsert(t), (r) => {
1240
1218
  r && g(t);
1241
- }), at = (t, e, r) => (s) => {
1219
+ }), ut = (t, e, r) => (s) => {
1242
1220
  s = s.makeRef();
1243
1221
  let n = null, o = !1;
1244
1222
  const i = C(null), a = t.on((u) => {
1245
- u == null ? (n == null || n(!0), n = f((r == null ? void 0 : r()) ?? w)(s), o = !1) : (i.value = u, o || (n == null || n(!0), n = f(e(i))(s), o = !0));
1223
+ u == null ? (n == null || n(!0), n = c((r == null ? void 0 : r()) ?? y)(s), o = !1) : (i.value = u, o || (n == null || n(!0), n = c(e(i))(s), o = !0));
1246
1224
  });
1247
1225
  return (u) => {
1248
1226
  a(), n == null || n(u), u && s.reference && g(s.reference);
1249
1227
  };
1250
- }, B = (t) => (e) => (r) => t(r, e), ye = (t, e, r) => r != null ? ye(t, (s) => {
1228
+ }, j = (t) => (e) => (r) => t(r, e), we = (t, e, r) => r != null ? we(t, (s) => {
1251
1229
  const n = s.map((o) => o.isLast ? "last" : "other");
1252
- return y(
1253
- B(() => n.dispose()),
1254
- f(e(s)),
1255
- H(n, {
1256
- last: () => w,
1230
+ return w(
1231
+ j(() => n.dispose()),
1232
+ c(e(s)),
1233
+ W(n, {
1234
+ last: () => y,
1257
1235
  other: () => r(s)
1258
1236
  })
1259
1237
  );
1260
1238
  }) : (s) => {
1261
1239
  s = s.makeRef();
1262
1240
  const n = t.map(
1263
- (u) => Array.from({ length: u }, (c, d) => d).map(
1264
- (c) => new ke(c, u)
1241
+ (u) => Array.from({ length: u }, (f, d) => d).map(
1242
+ (f) => new ke(f, u)
1265
1243
  )
1266
1244
  ), o = [], i = [], a = n.on((u) => {
1267
- var d, A;
1268
- const c = u.length;
1269
- for (; c < o.length; )
1270
- (d = o.pop()) == null || d(!0), (A = i.pop()) == null || A.dispose();
1271
- for (let m = 0; m < c; m++)
1245
+ var d, S;
1246
+ const f = u.length;
1247
+ for (; f < o.length; )
1248
+ (d = o.pop()) == null || d(!0), (S = i.pop()) == null || S.dispose();
1249
+ for (let m = 0; m < f; m++)
1272
1250
  if (i[m] == null) {
1273
1251
  i[m] = C(u[m]);
1274
- const D = f(e(i[m]));
1252
+ const D = c(e(i[m]));
1275
1253
  o[m] = D(s);
1276
1254
  } else
1277
1255
  i[m].value = u[m];
@@ -1279,31 +1257,31 @@ const ce = (t) => {
1279
1257
  return (u) => {
1280
1258
  a(), u && s.reference && g(s.reference);
1281
1259
  };
1282
- }, ct = (t, e, r) => r != null ? ct(t, (s, n) => {
1260
+ }, at = (t, e, r) => r != null ? at(t, (s, n) => {
1283
1261
  const o = n.map((i) => i.isLast ? "last" : "other");
1284
- return y([
1285
- B(() => o.dispose()),
1286
- f(e(s, n)),
1287
- H(o, {
1288
- last: () => w,
1262
+ return w([
1263
+ j(() => o.dispose()),
1264
+ c(e(s, n)),
1265
+ W(o, {
1266
+ last: () => y,
1289
1267
  other: () => r(n)
1290
1268
  })
1291
1269
  ]);
1292
1270
  }) : (s) => {
1293
1271
  const n = t.map((o) => o.length);
1294
- return ye(n, (o) => {
1295
- const i = U(
1272
+ return we(n, (o) => {
1273
+ const i = V(
1296
1274
  () => t.value[o.value.index],
1297
1275
  [o, t]
1298
1276
  );
1299
- return y(
1300
- B(() => i.dispose()),
1301
- f(e(i, o))
1277
+ return w(
1278
+ j(() => i.dispose()),
1279
+ c(e(i, o))
1302
1280
  );
1303
1281
  })(s);
1304
1282
  }, Zt = (t, e) => (r) => {
1305
1283
  r = r.makeRef();
1306
- const s = t.map((i) => f(e(i)));
1284
+ const s = t.map((i) => c(e(i)));
1307
1285
  let n = () => {
1308
1286
  };
1309
1287
  const o = s.on((i) => {
@@ -1312,56 +1290,56 @@ const ce = (t) => {
1312
1290
  return (i) => {
1313
1291
  o(), n(i);
1314
1292
  };
1315
- }, we = (t, e, r) => at(
1293
+ }, ye = (t, e, r) => ut(
1316
1294
  t.map((s) => s ? !0 : null),
1317
1295
  () => e,
1318
1296
  r != null ? () => r : void 0
1319
- ), xt = (t, e, r) => we(
1297
+ ), Kt = (t, e, r) => ye(
1320
1298
  t.map((s) => !s),
1321
1299
  e,
1322
1300
  r
1323
- ), er = (t, e, r = w) => we(
1301
+ ), xt = (t, e, r = y) => ye(
1324
1302
  t.map((s) => s.length > 0),
1325
1303
  e,
1326
1304
  r
1327
- ), tr = (t) => (e) => t(e.element) ?? (() => {
1328
- }), Ae = (t, e) => {
1305
+ ), er = (t) => (e) => t(e.element) ?? (() => {
1306
+ }), Se = (t, e) => {
1329
1307
  const r = t(e);
1330
1308
  return () => r(!0);
1331
- }, rr = (t, e, { doc: r, clear: s } = {}) => {
1309
+ }, tr = (t, e, { doc: r, clear: s } = {}) => {
1332
1310
  const n = typeof e == "string" ? (r ?? document).querySelector(e) : e;
1333
1311
  if (n === null)
1334
- throw new ft(
1312
+ throw new ct(
1335
1313
  `Cannot find element by selector for render: ${e}`
1336
1314
  );
1337
- s !== !1 && (r ?? n.ownerDocument) != null && tt(r ?? n.ownerDocument);
1315
+ s !== !1 && (r ?? n.ownerDocument) != null && et(r ?? n.ownerDocument);
1338
1316
  const o = Ue(n), i = se(n) ? void 0 : n, a = v.of(o, i);
1339
- return Ae(t, a);
1317
+ return Se(t, a);
1340
1318
  };
1341
- class ft extends Error {
1319
+ class ct extends Error {
1342
1320
  constructor(e) {
1343
1321
  super(e);
1344
1322
  }
1345
1323
  }
1346
- const sr = (t, e) => (r) => {
1324
+ const rr = (t, e) => (r) => {
1347
1325
  const s = r.document.querySelector(t);
1348
1326
  if (s === null)
1349
1327
  throw new Error(`Cannot find element by selector for portal: ${t}`);
1350
- return Ae(
1351
- f(e),
1328
+ return Se(
1329
+ c(e),
1352
1330
  r.withElement(s).withFirstLevel()
1353
1331
  );
1354
- }, nr = (t) => Symbol(t), Se = (t, e) => (r) => f(e)(r.withProviders(t)), or = (...t) => t.length > 0 ? t.reduceRight((e, r) => (s) => e(r(s))) : f, ir = (t, e, r) => Se({ [t]: e }, f(r)), lr = (t, e) => Se(t, f(e)), ht = (t, e) => (r) => {
1332
+ }, sr = (t) => Symbol(t), Ae = (t, e) => (r) => c(e)(r.withProviders(t)), nr = (...t) => t.length > 0 ? t.reduceRight((e, r) => (s) => e(r(s))) : c, or = (t, e, r) => Ae({ [t]: e }, c(r)), ir = (t, e) => Ae(t, c(e)), ft = (t, e) => (r) => {
1355
1333
  const s = r.element, n = s.style.getPropertyValue(t);
1356
1334
  return s.style.setProperty(t, e), (o) => {
1357
1335
  o && s.style.setProperty(t, n);
1358
1336
  };
1359
- }, dt = (t, e) => (r) => {
1337
+ }, ht = (t, e) => (r) => {
1360
1338
  const s = r.element, n = s.style.getPropertyValue(t);
1361
1339
  return e.on((o) => s.style.setProperty(t, o)), (o) => {
1362
1340
  o && s.style.setProperty(t, n);
1363
1341
  };
1364
- }, ur = new Proxy(
1342
+ }, lr = new Proxy(
1365
1343
  {},
1366
1344
  {
1367
1345
  /**
@@ -1372,59 +1350,59 @@ const sr = (t, e) => (r) => {
1372
1350
  * @returns The renderable component for the specified attribute.
1373
1351
  *
1374
1352
  */
1375
- get: (t, e) => (r) => h.is(r) ? dt(e, r) : ht(e, r)
1353
+ get: (t, e) => (r) => h.is(r) ? ht(e, r) : ft(e, r)
1376
1354
  }
1377
1355
  );
1378
1356
  export {
1379
- Rt as Async,
1357
+ kt as Async,
1380
1358
  jt as BindChecked,
1381
- It as BindDate,
1382
- $t as BindDateTime,
1383
- Bt as BindNumber,
1384
- Ut as BindText,
1385
- P as Computed,
1386
- Jt as Conjunction,
1359
+ Vt as BindDate,
1360
+ qt as BindDateTime,
1361
+ It as BindNumber,
1362
+ Bt as BindText,
1363
+ E as Computed,
1364
+ Wt as Conjunction,
1387
1365
  v as DOMContext,
1388
1366
  Yt as DOMNode,
1389
1367
  ie as El,
1390
1368
  le as ElNS,
1391
1369
  ke as ElementPosition,
1392
- w as Empty,
1393
- at as Ensure,
1394
- ct as ForEach,
1395
- y as Fragment,
1370
+ y as Empty,
1371
+ ut as Ensure,
1372
+ at as ForEach,
1373
+ w as Fragment,
1396
1374
  Zt as MapSignal,
1397
- z as MemoryStore,
1398
- er as NotEmpty,
1399
- nt as OnChecked,
1375
+ Q as MemoryStore,
1376
+ xt as NotEmpty,
1377
+ st as OnChecked,
1400
1378
  Qt as OnCtx,
1401
- tr as OnMount,
1402
- B as OnUnmount,
1403
- G as OneOf,
1379
+ er as OnMount,
1380
+ j as OnUnmount,
1381
+ J as OneOf,
1404
1382
  _e as OneOfField,
1405
- Wt as OneOfKind,
1383
+ Ut as OneOfKind,
1406
1384
  Gt as OneOfTuple,
1407
- Ht as OneOfType,
1408
- H as OneOfValue,
1409
- sr as Portal,
1410
- F as Prop,
1411
- or as Provide,
1412
- Be as ProviderNotFoundError,
1413
- ft as RenderingError,
1414
- ye as Repeat,
1385
+ Jt as OneOfType,
1386
+ W as OneOfValue,
1387
+ rr as Portal,
1388
+ $ as Prop,
1389
+ nr as Provide,
1390
+ je as ProviderNotFoundError,
1391
+ ct as RenderingError,
1392
+ we as Repeat,
1415
1393
  h as Signal,
1416
1394
  me as Task,
1417
1395
  St as TextNode,
1418
- xt as Unless,
1419
- Kt as Use,
1396
+ Kt as Unless,
1397
+ Ht as Use,
1420
1398
  Xt as UseProvider,
1421
1399
  zt as UseProviders,
1422
- kt as UseSSRDone,
1423
- we as When,
1424
- ir as WithProvider,
1425
- lr as WithProviders,
1400
+ Nt as UseSSRDone,
1401
+ ye as When,
1402
+ or as WithProvider,
1403
+ ir as WithProviders,
1426
1404
  fe as _addNodeTracker,
1427
- tt as _clearSSR,
1405
+ et as _clearSSR,
1428
1406
  Ue as _getSelfOrParentElement,
1429
1407
  se as _isElement,
1430
1408
  re as _makeGetter,
@@ -1433,53 +1411,54 @@ export {
1433
1411
  ce as _maybeAddClassTracker,
1434
1412
  he as _maybeAddTextTracker,
1435
1413
  g as _removeDOMNode,
1436
- $e as _setAttribute,
1414
+ Be as _setAttribute,
1437
1415
  Fe as _setBooleanProperty,
1438
1416
  qe as _setDateProperty,
1439
1417
  Ve as _setNumberProperty,
1440
1418
  Ie as _setStringProperty,
1441
1419
  oe as _signalText,
1442
1420
  ne as _staticText,
1443
- yt as animateSignal,
1444
- Me as animateSignals,
1421
+ wt as animateSignal,
1422
+ $e as animateSignals,
1445
1423
  Et as aria,
1446
- E as attr,
1447
- Pt as dataAttr,
1448
- Mt as emitChecked,
1449
- Ft as emitPreventDefault,
1450
- qt as emitStopImmediatePropagation,
1451
- Vt as emitStopPropagation,
1452
- ot as emitValue,
1453
- lt as emitValueAsDate,
1454
- ut as emitValueAsDateTime,
1455
- it as emitValueAsNumber,
1456
- Ne as endInterpolate,
1457
- Oe as guessInterpolate,
1458
- At as handleAnchorClick,
1459
- Tt as html,
1460
- Ct as input,
1424
+ P as attr,
1425
+ At as dataAttr,
1426
+ Rt as emitChecked,
1427
+ Mt as emitPreventDefault,
1428
+ Ft as emitStopImmediatePropagation,
1429
+ $t as emitStopPropagation,
1430
+ nt as emitValue,
1431
+ it as emitValueAsDate,
1432
+ lt as emitValueAsDateTime,
1433
+ ot as emitValueAsNumber,
1434
+ Oe as endInterpolate,
1435
+ Ne as guessInterpolate,
1436
+ bt as html,
1437
+ Tt as input,
1461
1438
  Le as interpolateDate,
1462
1439
  Te as interpolateNumber,
1463
1440
  Ce as interpolateString,
1464
- O as isSSR,
1441
+ N as isSSR,
1465
1442
  _t as localStorageProp,
1466
- U as makeComputed,
1467
- wt as makeComputedRecord,
1468
- mt as makeEffect,
1443
+ V as makeComputed,
1444
+ pt as makeComputedOf,
1445
+ yt as makeComputedRecord,
1446
+ Me as makeEffect,
1447
+ mt as makeEffectOf,
1469
1448
  C as makeProp,
1470
- nr as makeProviderMark,
1449
+ sr as makeProviderMark,
1471
1450
  gt as makeSignal,
1472
- Nt as math,
1473
- bt as mathAttr,
1451
+ Lt as math,
1452
+ Dt as mathAttr,
1474
1453
  q as on,
1475
1454
  Ot as prepareSSR,
1476
- et as removeTextTrackers,
1477
- rr as render,
1478
- Ae as renderWithContext,
1479
- f as renderableOfTNode,
1455
+ xe as removeTextTrackers,
1456
+ tr as render,
1457
+ Se as renderWithContext,
1458
+ c as renderableOfTNode,
1480
1459
  vt as sessionStorageProp,
1481
- Q as storedProp,
1482
- ur as style,
1483
- Lt as svg,
1484
- Dt as svgAttr
1460
+ Y as storedProp,
1461
+ lr as style,
1462
+ Ct as svg,
1463
+ Pt as svgAttr
1485
1464
  };