@saasbase-io/core-elements 1.18.0 → 1.19.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.
package/dist/index.mjs CHANGED
@@ -56,7 +56,7 @@ class li {
56
56
  }
57
57
  }
58
58
  const oe = li.Instance;
59
- class _t extends Error {
59
+ class xt extends Error {
60
60
  constructor(e, r, i) {
61
61
  super(r), this.name = "LoginflowError", this.code = e, this.details = i;
62
62
  }
@@ -74,11 +74,11 @@ class Qe {
74
74
  const b = yield fetch(o, Object.assign(Object.assign({}, i), { signal: h.signal, headers: Object.assign(Object.assign(Object.assign({ "Content-Type": "application/json" }, s.apiKey && { Authorization: `Bearer ${s.apiKey}` }), s.headers), i.headers) }));
75
75
  if (clearTimeout(p), !b.ok) {
76
76
  const y = yield b.json().catch(() => ({}));
77
- throw new _t(y.code || "API_ERROR", y.message || `HTTP ${b.status}: ${b.statusText}`, y.details);
77
+ throw new xt(y.code || "API_ERROR", y.message || `HTTP ${b.status}: ${b.statusText}`, y.details);
78
78
  }
79
79
  return yield b.json();
80
80
  } catch (b) {
81
- throw clearTimeout(p), b instanceof _t ? b : b instanceof Error ? b.name === "AbortError" ? new _t("TIMEOUT", "Request timeout") : new _t("NETWORK_ERROR", b.message) : new _t("UNKNOWN_ERROR", "An unknown error occurred");
81
+ throw clearTimeout(p), b instanceof xt ? b : b instanceof Error ? b.name === "AbortError" ? new xt("TIMEOUT", "Request timeout") : new xt("NETWORK_ERROR", b.message) : new xt("UNKNOWN_ERROR", "An unknown error occurred");
82
82
  }
83
83
  });
84
84
  }
@@ -191,7 +191,7 @@ class Bt {
191
191
  expires_at: Date.now() + r.expires_in * 1e3
192
192
  };
193
193
  } catch (r) {
194
- return r instanceof _t ? console.error("Token refresh failed:", r.message, r.details) : console.error("Token refresh failed:", r), this.clearSession(), null;
194
+ return r instanceof xt ? console.error("Token refresh failed:", r.message, r.details) : console.error("Token refresh failed:", r), this.clearSession(), null;
195
195
  }
196
196
  });
197
197
  }
@@ -343,11 +343,11 @@ class sa {
343
343
  ]);
344
344
  const n = oe.getConfig();
345
345
  if (!n.domain)
346
- throw new _t("CONFIG_ERROR", "Domain is required");
346
+ throw new xt("CONFIG_ERROR", "Domain is required");
347
347
  if (!n.appId)
348
- throw new _t("CONFIG_ERROR", "App ID is required");
348
+ throw new xt("CONFIG_ERROR", "App ID is required");
349
349
  if (!n.clientSecret)
350
- throw new _t("CONFIG_ERROR", "Client Secret is required");
350
+ throw new xt("CONFIG_ERROR", "Client Secret is required");
351
351
  this.flowId = e, this.location = i, this.flowStateManager = s || new fc(), this.flowEventBus = r || new vc(), this.navigationTypeDetector = o || new vh(), Bt.Instance.cleanExpiredSession(), Bt.Instance.scheduleTokenRefresh();
352
352
  }
353
353
  static init(e, r, i, s, o) {
@@ -369,7 +369,7 @@ class sa {
369
369
  startFlow(e, r) {
370
370
  return K(this, void 0, void 0, function* () {
371
371
  if (!r.app_id)
372
- throw new _t("VALIDATION_ERROR", "Client ID is required");
372
+ throw new xt("VALIDATION_ERROR", "Client ID is required");
373
373
  const i = `/v1/auth-flow/${e}/start`;
374
374
  return this.executeFlowRequest(() => this.httpClient.post(i, r), "START_FLOW_ERROR", "Failed to start flow");
375
375
  });
@@ -389,7 +389,7 @@ class sa {
389
389
  processEvent(e, r) {
390
390
  return K(this, void 0, void 0, function* () {
391
391
  if (!e.event)
392
- throw new _t("VALIDATION_ERROR", "Event type is required");
392
+ throw new xt("VALIDATION_ERROR", "Event type is required");
393
393
  const i = this.eventHandlers.get(e.event);
394
394
  return i ? yield i() : yield this.processServerEvent(e, r);
395
395
  });
@@ -403,7 +403,7 @@ class sa {
403
403
  const o = yield e();
404
404
  return s && (yield s(o)), this.processAuthResult(o.auth_result), o.redirection && this.redirect(o.redirection), o;
405
405
  } catch (o) {
406
- throw o instanceof _t ? o : new _t(r, i, o instanceof Error ? { originalError: o.message, stack: o.stack } : o);
406
+ throw o instanceof xt ? o : new xt(r, i, o instanceof Error ? { originalError: o.message, stack: o.stack } : o);
407
407
  }
408
408
  });
409
409
  }
@@ -414,7 +414,7 @@ class sa {
414
414
  return K(this, void 0, void 0, function* () {
415
415
  let i = this.flowStateManager.getFlowState();
416
416
  if (!i && (console.warn("Flow state expired, restarting flow before processing event"), yield this.initializeFlowInternal(), i = this.flowStateManager.getFlowState(), !i))
417
- throw new _t("FLOW_RESTART_ERROR", "Failed to restart flow - no flow state after initialization");
417
+ throw new xt("FLOW_RESTART_ERROR", "Failed to restart flow - no flow state after initialization");
418
418
  const s = i.state, o = `/v1/auth-flow/${i.flowType}/events`, n = yield this.executeFlowRequest(() => this.httpClient.post(o, e), "PROCESS_EVENT_ERROR", "Failed to process event", r);
419
419
  if (!n.auth_result) {
420
420
  this.flowStateManager.saveFlowState(i.flowType, i.flow_id, n);
@@ -461,7 +461,7 @@ class sa {
461
461
  */
462
462
  validateFlowType(e) {
463
463
  if (e === "custom" && !this.flowId)
464
- throw new _t("FLOW_ID_ERROR", "Flow ID is required for custom flows");
464
+ throw new xt("FLOW_ID_ERROR", "Flow ID is required for custom flows");
465
465
  }
466
466
  /**
467
467
  * Check if we should resume an existing flow.
@@ -547,7 +547,7 @@ class sa {
547
547
  return this.flowId || "signup-flow";
548
548
  case "custom":
549
549
  if (!this.flowId)
550
- throw new _t("FLOW_ID_ERROR", "Flow ID is required for custom flows");
550
+ throw new xt("FLOW_ID_ERROR", "Flow ID is required for custom flows");
551
551
  return this.flowId;
552
552
  }
553
553
  }
@@ -1128,11 +1128,11 @@ class di {
1128
1128
  }
1129
1129
  ensureConfigured() {
1130
1130
  if (!this.configured)
1131
- throw new _t("NOT_CONFIGURED", "Auth.configure() must be called before using Auth methods");
1131
+ throw new xt("NOT_CONFIGURED", "Auth.configure() must be called before using Auth methods");
1132
1132
  }
1133
1133
  ensureLoginflowInitialized() {
1134
1134
  if (!this.loginflow)
1135
- throw new _t("LOGINFLOW_NOT_INITIALIZED", "Call Auth.startLoginflow() first");
1135
+ throw new xt("LOGINFLOW_NOT_INITIALIZED", "Call Auth.startLoginflow() first");
1136
1136
  }
1137
1137
  startLoginflowInternal(e) {
1138
1138
  return K(this, arguments, void 0, function* (r, i = !1) {
@@ -1160,7 +1160,7 @@ class di {
1160
1160
  }
1161
1161
  configure(e) {
1162
1162
  if (!e.domain || !e.appId || !e.clientSecret)
1163
- throw new _t("CONFIG_ERROR", "domain, appId, and clientSecret are required");
1163
+ throw new xt("CONFIG_ERROR", "domain, appId, and clientSecret are required");
1164
1164
  oe.setConfig(e), this.configured = !0;
1165
1165
  }
1166
1166
  isAuthenticated() {
@@ -1579,7 +1579,7 @@ ai.elementStyles = [], ai.shadowRootOptions = { mode: "open" }, ai[Di("elementPr
1579
1579
  */
1580
1580
  const Ui = globalThis, Ma = (t) => t, Js = Ui.trustedTypes, Ba = Js ? Js.createPolicy("lit-html", { createHTML: (t) => t }) : void 0, _c = "$lit$", Je = `lit$${Math.random().toFixed(9).slice(2)}$`, xc = "?" + Je, Lh = `<${xc}>`, Mr = document, Gi = () => Mr.createComment(""), Ki = (t) => t === null || typeof t != "object" && typeof t != "function", la = Array.isArray, Ph = (t) => la(t) || typeof (t == null ? void 0 : t[Symbol.iterator]) == "function", Xo = `[
1581
1581
  \f\r]`, Ei = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g, qa = /-->/g, Va = />/g, gr = RegExp(`>|${Xo}(?:([^\\s"'>=/]+)(${Xo}*=${Xo}*(?:[^
1582
- \f\r"'\`<>=]|("|')|))|$)`, "g"), Ha = /'/g, Ga = /"/g, $c = /^(?:script|style|textarea|title)$/i, Sc = (t) => (e, ...r) => ({ _$litType$: t, strings: e, values: r }), d = Sc(1), fe = Sc(2), Br = Symbol.for("lit-noChange"), m = Symbol.for("lit-nothing"), Ka = /* @__PURE__ */ new WeakMap(), Cr = Mr.createTreeWalker(Mr, 129);
1582
+ \f\r"'\`<>=]|("|')|))|$)`, "g"), Ha = /'/g, Ga = /"/g, $c = /^(?:script|style|textarea|title)$/i, Sc = (t) => (e, ...r) => ({ _$litType$: t, strings: e, values: r }), d = Sc(1), fe = Sc(2), Br = Symbol.for("lit-noChange"), g = Symbol.for("lit-nothing"), Ka = /* @__PURE__ */ new WeakMap(), Cr = Mr.createTreeWalker(Mr, 129);
1583
1583
  function Cc(t, e) {
1584
1584
  if (!la(t) || !t.hasOwnProperty("raw")) throw Error("invalid template strings array");
1585
1585
  return Ba !== void 0 ? Ba.createHTML(e) : e;
@@ -1673,7 +1673,7 @@ let zh = class {
1673
1673
  return ((e = this._$AM) == null ? void 0 : e._$AU) ?? this._$Cv;
1674
1674
  }
1675
1675
  constructor(e, r, i, s) {
1676
- this.type = 2, this._$AH = m, this._$AN = void 0, this._$AA = e, this._$AB = r, this._$AM = i, this.options = s, this._$Cv = (s == null ? void 0 : s.isConnected) ?? !0;
1676
+ this.type = 2, this._$AH = g, this._$AN = void 0, this._$AA = e, this._$AB = r, this._$AM = i, this.options = s, this._$Cv = (s == null ? void 0 : s.isConnected) ?? !0;
1677
1677
  }
1678
1678
  get parentNode() {
1679
1679
  let e = this._$AA.parentNode;
@@ -1687,7 +1687,7 @@ let zh = class {
1687
1687
  return this._$AB;
1688
1688
  }
1689
1689
  _$AI(e, r = this) {
1690
- e = bi(this, e, r), Ki(e) ? e === m || e == null || e === "" ? (this._$AH !== m && this._$AR(), this._$AH = m) : e !== this._$AH && e !== Br && this._(e) : e._$litType$ !== void 0 ? this.$(e) : e.nodeType !== void 0 ? this.T(e) : Ph(e) ? this.k(e) : this._(e);
1690
+ e = bi(this, e, r), Ki(e) ? e === g || e == null || e === "" ? (this._$AH !== g && this._$AR(), this._$AH = g) : e !== this._$AH && e !== Br && this._(e) : e._$litType$ !== void 0 ? this.$(e) : e.nodeType !== void 0 ? this.T(e) : Ph(e) ? this.k(e) : this._(e);
1691
1691
  }
1692
1692
  O(e) {
1693
1693
  return this._$AA.parentNode.insertBefore(e, this._$AB);
@@ -1696,7 +1696,7 @@ let zh = class {
1696
1696
  this._$AH !== e && (this._$AR(), this._$AH = this.O(e));
1697
1697
  }
1698
1698
  _(e) {
1699
- this._$AH !== m && Ki(this._$AH) ? this._$AA.nextSibling.data = e : this.T(Mr.createTextNode(e)), this._$AH = e;
1699
+ this._$AH !== g && Ki(this._$AH) ? this._$AA.nextSibling.data = e : this.T(Mr.createTextNode(e)), this._$AH = e;
1700
1700
  }
1701
1701
  $(e) {
1702
1702
  var o;
@@ -1737,7 +1737,7 @@ let zh = class {
1737
1737
  return this._$AM._$AU;
1738
1738
  }
1739
1739
  constructor(e, r, i, s, o) {
1740
- this.type = 1, this._$AH = m, this._$AN = void 0, this.element = e, this.name = r, this._$AM = s, this.options = o, i.length > 2 || i[0] !== "" || i[1] !== "" ? (this._$AH = Array(i.length - 1).fill(new String()), this.strings = i) : this._$AH = m;
1740
+ this.type = 1, this._$AH = g, this._$AN = void 0, this.element = e, this.name = r, this._$AM = s, this.options = o, i.length > 2 || i[0] !== "" || i[1] !== "" ? (this._$AH = Array(i.length - 1).fill(new String()), this.strings = i) : this._$AH = g;
1741
1741
  }
1742
1742
  _$AI(e, r = this, i, s) {
1743
1743
  const o = this.strings;
@@ -1746,34 +1746,34 @@ let zh = class {
1746
1746
  else {
1747
1747
  const h = e;
1748
1748
  let p, b;
1749
- for (e = o[0], p = 0; p < o.length - 1; p++) b = bi(this, h[i + p], r, p), b === Br && (b = this._$AH[p]), n || (n = !Ki(b) || b !== this._$AH[p]), b === m ? e = m : e !== m && (e += (b ?? "") + o[p + 1]), this._$AH[p] = b;
1749
+ for (e = o[0], p = 0; p < o.length - 1; p++) b = bi(this, h[i + p], r, p), b === Br && (b = this._$AH[p]), n || (n = !Ki(b) || b !== this._$AH[p]), b === g ? e = g : e !== g && (e += (b ?? "") + o[p + 1]), this._$AH[p] = b;
1750
1750
  }
1751
1751
  n && !s && this.j(e);
1752
1752
  }
1753
1753
  j(e) {
1754
- e === m ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, e ?? "");
1754
+ e === g ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, e ?? "");
1755
1755
  }
1756
1756
  }, jh = class extends wo {
1757
1757
  constructor() {
1758
1758
  super(...arguments), this.type = 3;
1759
1759
  }
1760
1760
  j(e) {
1761
- this.element[this.name] = e === m ? void 0 : e;
1761
+ this.element[this.name] = e === g ? void 0 : e;
1762
1762
  }
1763
1763
  }, Dh = class extends wo {
1764
1764
  constructor() {
1765
1765
  super(...arguments), this.type = 4;
1766
1766
  }
1767
1767
  j(e) {
1768
- this.element.toggleAttribute(this.name, !!e && e !== m);
1768
+ this.element.toggleAttribute(this.name, !!e && e !== g);
1769
1769
  }
1770
1770
  }, Uh = class extends wo {
1771
1771
  constructor(e, r, i, s, o) {
1772
1772
  super(e, r, i, s, o), this.type = 5;
1773
1773
  }
1774
1774
  _$AI(e, r = this) {
1775
- if ((e = bi(this, e, r, 0) ?? m) === Br) return;
1776
- const i = this._$AH, s = e === m && i !== m || e.capture !== i.capture || e.once !== i.once || e.passive !== i.passive, o = e !== m && (i === m || s);
1775
+ if ((e = bi(this, e, r, 0) ?? g) === Br) return;
1776
+ const i = this._$AH, s = e === g && i !== g || e.capture !== i.capture || e.once !== i.once || e.passive !== i.passive, o = e !== g && (i === g || s);
1777
1777
  s && this.element.removeEventListener(this.name, this, i), o && this.element.addEventListener(this.name, this, e), this._$AH = e;
1778
1778
  }
1779
1779
  handleEvent(e) {
@@ -2119,10 +2119,10 @@ class Ac extends Oc {
2119
2119
  */
2120
2120
  let to = class extends Oc {
2121
2121
  constructor(e) {
2122
- if (super(e), this.it = m, e.type !== Rc.CHILD) throw Error(this.constructor.directiveName + "() can only be used in child bindings");
2122
+ if (super(e), this.it = g, e.type !== Rc.CHILD) throw Error(this.constructor.directiveName + "() can only be used in child bindings");
2123
2123
  }
2124
2124
  render(e) {
2125
- if (e === m || e == null) return this._t = void 0, this.it = e;
2125
+ if (e === g || e == null) return this._t = void 0, this.it = e;
2126
2126
  if (e === Br) return e;
2127
2127
  if (typeof e != "string") throw Error(this.constructor.directiveName + "() called with a non-string value");
2128
2128
  if (e === this.it) return this._t;
@@ -2295,12 +2295,12 @@ function Jt({ context: t, subscribe: e }) {
2295
2295
  }
2296
2296
  const Qo = /* @__PURE__ */ new WeakMap(), Qh = _o(class extends Ac {
2297
2297
  render(t) {
2298
- return m;
2298
+ return g;
2299
2299
  }
2300
2300
  update(t, [e]) {
2301
2301
  var i;
2302
2302
  const r = e !== this.G;
2303
- return r && this.G !== void 0 && this.rt(void 0), (r || this.lt !== this.ct) && (this.G = e, this.ht = (i = t.options) == null ? void 0 : i.host, this.rt(this.ct = t.element)), m;
2303
+ return r && this.G !== void 0 && this.rt(void 0), (r || this.lt !== this.ct) && (this.G = e, this.ht = (i = t.options) == null ? void 0 : i.host, this.rt(this.ct = t.element)), g;
2304
2304
  }
2305
2305
  rt(t) {
2306
2306
  if (this.isConnected || (t = void 0), typeof this.G == "function") {
@@ -5542,7 +5542,7 @@ var it = (t) => {
5542
5542
  let i = Fc.exec(t);
5543
5543
  return i ? i[1] ? typeof e == "string" ? i[1] === e : e.has(i[1]) : r(i[2]) : !1;
5544
5544
  }, zp = (t) => Cp.test(t) && !Ep.test(t), Mc = () => !1, jp = (t) => kp.test(t), Dp = (t) => Rp.test(t), Up = /* @__PURE__ */ _p(() => {
5545
- let t = it("colors"), e = it("spacing"), r = it("blur"), i = it("brightness"), s = it("borderColor"), o = it("borderRadius"), n = it("borderSpacing"), h = it("borderWidth"), p = it("contrast"), b = it("grayscale"), y = it("hueRotate"), w = it("invert"), E = it("gap"), C = it("gradientColorStops"), S = it("gradientColorStopPositions"), k = it("inset"), T = it("margin"), I = it("opacity"), N = it("padding"), J = it("saturate"), Y = it("scale"), nt = it("sepia"), ut = it("skew"), jt = it("space"), H = it("translate"), Yt = () => [
5545
+ let t = it("colors"), e = it("spacing"), r = it("blur"), i = it("brightness"), s = it("borderColor"), o = it("borderRadius"), n = it("borderSpacing"), h = it("borderWidth"), p = it("contrast"), b = it("grayscale"), y = it("hueRotate"), w = it("invert"), E = it("gap"), C = it("gradientColorStops"), S = it("gradientColorStopPositions"), k = it("inset"), T = it("margin"), I = it("opacity"), N = it("padding"), J = it("saturate"), Y = it("scale"), nt = it("sepia"), gt = it("skew"), jt = it("space"), H = it("translate"), Yt = () => [
5546
5546
  "auto",
5547
5547
  "contain",
5548
5548
  "none"
@@ -5618,7 +5618,7 @@ var it = (t) => {
5618
5618
  "left",
5619
5619
  "right",
5620
5620
  "column"
5621
- ], gt = () => [ci, q];
5621
+ ], mt = () => [ci, q];
5622
5622
  return {
5623
5623
  cacheSize: 500,
5624
5624
  separator: ":",
@@ -5631,7 +5631,7 @@ var it = (t) => {
5631
5631
  Me,
5632
5632
  q
5633
5633
  ],
5634
- brightness: gt(),
5634
+ brightness: mt(),
5635
5635
  borderColor: [t],
5636
5636
  borderRadius: [
5637
5637
  "none",
@@ -5642,21 +5642,21 @@ var it = (t) => {
5642
5642
  ],
5643
5643
  borderSpacing: L(),
5644
5644
  borderWidth: hr(),
5645
- contrast: gt(),
5645
+ contrast: mt(),
5646
5646
  grayscale: Xt(),
5647
- hueRotate: gt(),
5647
+ hueRotate: mt(),
5648
5648
  invert: Xt(),
5649
5649
  gap: L(),
5650
5650
  gradientColorStops: [t],
5651
5651
  gradientColorStopPositions: [Op, Fe],
5652
5652
  inset: Oe(),
5653
5653
  margin: Oe(),
5654
- opacity: gt(),
5654
+ opacity: mt(),
5655
5655
  padding: L(),
5656
- saturate: gt(),
5657
- scale: gt(),
5656
+ saturate: mt(),
5657
+ scale: mt(),
5658
5658
  sepia: Xt(),
5659
- skew: gt(),
5659
+ skew: mt(),
5660
5660
  space: L(),
5661
5661
  translate: L()
5662
5662
  },
@@ -6268,7 +6268,7 @@ var it = (t) => {
6268
6268
  "transform",
6269
6269
  q
6270
6270
  ] }],
6271
- duration: [{ duration: gt() }],
6271
+ duration: [{ duration: mt() }],
6272
6272
  ease: [{ ease: [
6273
6273
  "linear",
6274
6274
  "in",
@@ -6276,7 +6276,7 @@ var it = (t) => {
6276
6276
  "in-out",
6277
6277
  q
6278
6278
  ] }],
6279
- delay: [{ delay: gt() }],
6279
+ delay: [{ delay: mt() }],
6280
6280
  animate: [{ animate: [
6281
6281
  "none",
6282
6282
  "spin",
@@ -6296,8 +6296,8 @@ var it = (t) => {
6296
6296
  rotate: [{ rotate: [ki, q] }],
6297
6297
  "translate-x": [{ "translate-x": [H] }],
6298
6298
  "translate-y": [{ "translate-y": [H] }],
6299
- "skew-x": [{ "skew-x": [ut] }],
6300
- "skew-y": [{ "skew-y": [ut] }],
6299
+ "skew-x": [{ "skew-x": [gt] }],
6300
+ "skew-y": [{ "skew-y": [gt] }],
6301
6301
  "transform-origin": [{ origin: [
6302
6302
  "center",
6303
6303
  "top",
@@ -6570,7 +6570,7 @@ var it = (t) => {
6570
6570
  conflictingClassGroupModifiers: { "font-size": ["leading"] }
6571
6571
  };
6572
6572
  });
6573
- function g(...t) {
6573
+ function m(...t) {
6574
6574
  return Up(zc(t));
6575
6575
  }
6576
6576
  var Fp = class extends Ac {
@@ -6578,7 +6578,7 @@ var Fp = class extends Ac {
6578
6578
  super(...arguments), this.prevData = {};
6579
6579
  }
6580
6580
  render(t) {
6581
- return m;
6581
+ return g;
6582
6582
  }
6583
6583
  update(t, [e]) {
6584
6584
  var r;
@@ -6757,7 +6757,7 @@ var Fp = class extends Ac {
6757
6757
  role="region"
6758
6758
  data-state=${this.hasActiveState() ? "open" : "closed"}
6759
6759
  data-orientation="vertical"
6760
- class=${g(Wi.content, this.className)}
6760
+ class=${m(Wi.content, this.className)}
6761
6761
  @click=${(e) => e.stopPropagation()}
6762
6762
  >
6763
6763
  <div>${ca(((t = this.textContent) == null ? void 0 : t.trim()) || "")}</div>
@@ -6808,7 +6808,7 @@ var Se = class extends _ {
6808
6808
  return d`
6809
6809
  <div
6810
6810
  data-state=${t ? "open" : "closed"}
6811
- class="${g(Wi.item, this.className)}"
6811
+ class="${m(Wi.item, this.className)}"
6812
6812
  value=${this.value}
6813
6813
  role="tablist"
6814
6814
  data-orientation="vertical"
@@ -6856,7 +6856,7 @@ var Yn = class extends _ {
6856
6856
  aria-selected=${t}
6857
6857
  aria-expanded=${t}
6858
6858
  data-state=${t ? "open" : "closed"}
6859
- class="${g(Wi.trigger, this.className)}"
6859
+ class="${m(Wi.trigger, this.className)}"
6860
6860
  tabindex="-1"
6861
6861
  data-orientation="horizontal"
6862
6862
  data-radix-collection-item
@@ -6871,7 +6871,7 @@ var Yn = class extends _ {
6871
6871
  stroke-width="2"
6872
6872
  stroke-linecap="round"
6873
6873
  stroke-linejoin="round"
6874
- class=${g(Wi.chevron, "lucide lucide-chevron-down-icon lucide-chevron-down")}
6874
+ class=${m(Wi.chevron, "lucide lucide-chevron-down-icon lucide-chevron-down")}
6875
6875
  >
6876
6876
  <path d="m6 9 6 6 6-6" />
6877
6877
  </svg>
@@ -6928,7 +6928,7 @@ var Ze = /* @__PURE__ */ (function(t) {
6928
6928
  data-orientation="vertical"
6929
6929
  ${Pt(this.getFilteredAttributes())}
6930
6930
  part="accordion"
6931
- class="${g(Wi.base, this.className)}"
6931
+ class="${m(Wi.base, this.className)}"
6932
6932
  >
6933
6933
  ${t}
6934
6934
  </div>
@@ -7022,7 +7022,7 @@ var il = {
7022
7022
  return this;
7023
7023
  }
7024
7024
  connectedCallback() {
7025
- super.connectedCallback(), this._userClass = this.getAttribute("class") ?? "", this._userStyle = this.getAttribute("style") ?? "", this._userClass && this.removeAttribute("class"), this._userStyle && this.removeAttribute("style"), this.className = g(this.className, il.host);
7025
+ super.connectedCallback(), this._userClass = this.getAttribute("class") ?? "", this._userStyle = this.getAttribute("style") ?? "", this._userClass && this.removeAttribute("class"), this._userStyle && this.removeAttribute("style"), this.className = m(this.className, il.host);
7026
7026
  }
7027
7027
  updated(t) {
7028
7028
  t.has("ratio") && (this.style.paddingBottom = this.ratio > 0 ? `${100 / this.ratio}%` : "0%");
@@ -7032,7 +7032,7 @@ var il = {
7032
7032
  this.style.paddingBottom = this.ratio > 0 ? `${100 / this.ratio}%` : "0%";
7033
7033
  let t = this.querySelector(".aspect-ratio");
7034
7034
  if (t) {
7035
- if (this._userClass && (t.className = g(t.className, this._userClass)), this._userStyle) {
7035
+ if (this._userClass && (t.className = m(t.className, this._userClass)), this._userStyle) {
7036
7036
  let r = (e = t.getAttribute("style")) == null ? void 0 : e.trim(), i = this._userStyle.trim();
7037
7037
  t.setAttribute("style", [r, i].filter(Boolean).join("; "));
7038
7038
  }
@@ -7043,7 +7043,7 @@ var il = {
7043
7043
  }
7044
7044
  render() {
7045
7045
  return d`
7046
- <div class="${g("aspect-ratio", il.self)}"></div>
7046
+ <div class="${m("aspect-ratio", il.self)}"></div>
7047
7047
  `;
7048
7048
  }
7049
7049
  };
@@ -7215,16 +7215,16 @@ var ei = class extends v {
7215
7215
  data-slot="badge"
7216
7216
  data-variant=${this.variant}
7217
7217
  href=${this.href}
7218
- target=${this.target ?? m}
7219
- aria-label=${this.ariaLabel ?? m}
7220
- aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : m}
7218
+ target=${this.target ?? g}
7219
+ aria-label=${this.ariaLabel ?? g}
7220
+ aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : g}
7221
7221
  ></a>
7222
7222
  ` : d`
7223
7223
  <span
7224
7224
  data-slot="badge"
7225
7225
  data-variant=${this.variant}
7226
- aria-label=${this.ariaLabel ?? m}
7227
- aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : m}
7226
+ aria-label=${this.ariaLabel ?? g}
7227
+ aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : g}
7228
7228
  ></span>
7229
7229
  `;
7230
7230
  }
@@ -7255,7 +7255,7 @@ var wi = {
7255
7255
  id="rtg-bread-crumb-ellipsis"
7256
7256
  role="presentation"
7257
7257
  aria-hidden="true"
7258
- class="${g(wi.ellipsis, this.className)}"
7258
+ class="${m(wi.ellipsis, this.className)}"
7259
7259
  part="breadcrumb-ellipsis"
7260
7260
  >
7261
7261
  <svg
@@ -7295,7 +7295,7 @@ var dl = class extends _ {
7295
7295
  <li
7296
7296
  ${Pt(this.getFilteredAttributes())}
7297
7297
  id="rtg-bread-crumb-item"
7298
- class="${g(wi.item, this.className)}"
7298
+ class="${m(wi.item, this.className)}"
7299
7299
  part="breadcrumb-item"
7300
7300
  ></li>
7301
7301
  `;
@@ -7323,7 +7323,7 @@ var sn = class extends _ {
7323
7323
  <a
7324
7324
  ${Pt(this.getFilteredAttributes())}
7325
7325
  id="rtg-bread-crumb-link"
7326
- class="${g(wi.link, this.className)}"
7326
+ class="${m(wi.link, this.className)}"
7327
7327
  href="${this.href}"
7328
7328
  part="breadcrumb-link"
7329
7329
  >
@@ -7350,7 +7350,7 @@ var cl = class extends _ {
7350
7350
  <ol
7351
7351
  ${Pt(this.getFilteredAttributes())}
7352
7352
  id="rtg-bread-crumb-list"
7353
- class="${g(wi.list, this.className)}"
7353
+ class="${m(wi.list, this.className)}"
7354
7354
  part="breadcrumb-list"
7355
7355
  ></ol>
7356
7356
  `;
@@ -7371,7 +7371,7 @@ var hl = class extends _ {
7371
7371
  id="rtg-bread-crumb-separator"
7372
7372
  role="presentation"
7373
7373
  aria-hidden="true"
7374
- class="${g(wi.separator, this.className)}"
7374
+ class="${m(wi.separator, this.className)}"
7375
7375
  part="breadcrumb-separator"
7376
7376
  >
7377
7377
  <svg
@@ -7411,7 +7411,7 @@ var pl = class extends _ {
7411
7411
  id="rtg-bread-crumb-text"
7412
7412
  aria-disabled="true"
7413
7413
  aria-current="page"
7414
- class="${g(wi.page, this.className)}"
7414
+ class="${m(wi.page, this.className)}"
7415
7415
  part="breadcrumb-text"
7416
7416
  >
7417
7417
  </span>
@@ -7437,7 +7437,7 @@ var ul = class extends _ {
7437
7437
  <nav
7438
7438
  ${Pt(this.getFilteredAttributes())}
7439
7439
  part="breadcrumb"
7440
- class="${g(this.className)}"
7440
+ class="${m(this.className)}"
7441
7441
  aria-label="breadcrumb"
7442
7442
  ></nav>
7443
7443
  `;
@@ -7470,10 +7470,10 @@ var he = class extends v {
7470
7470
  data-variant=${this.variant}
7471
7471
  data-size=${this.size}
7472
7472
  href=${this.href}
7473
- target=${this.target ?? m}
7473
+ target=${this.target ?? g}
7474
7474
  ?disabled=${this.disabled}
7475
- aria-label=${this.ariaLabel ?? m}
7476
- aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : m}
7475
+ aria-label=${this.ariaLabel ?? g}
7476
+ aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : g}
7477
7477
  @click=${this._handleClick}
7478
7478
  ></a>
7479
7479
  ` : d`
@@ -7483,8 +7483,8 @@ var he = class extends v {
7483
7483
  data-size=${this.size}
7484
7484
  type=${this.type}
7485
7485
  ?disabled=${this.disabled}
7486
- aria-label=${this.ariaLabel ?? m}
7487
- aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : m}
7486
+ aria-label=${this.ariaLabel ?? g}
7487
+ aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : g}
7488
7488
  @click=${this._handleClick}
7489
7489
  ></button>
7490
7490
  `;
@@ -7637,7 +7637,7 @@ var gl = (t) => typeof t == "boolean" ? `${t}` : t === 0 ? "0" : t, ml = zc, ua
7637
7637
  "rtg-w-full"
7638
7638
  ],
7639
7639
  buttonPrevious: [
7640
- g(Mi({
7640
+ m(Mi({
7641
7641
  variant: "ghost",
7642
7642
  size: "icon-sm"
7643
7643
  })),
@@ -7645,7 +7645,7 @@ var gl = (t) => typeof t == "boolean" ? `${t}` : t === 0 ? "0" : t, ml = zc, ua
7645
7645
  "aria-disabled:rtg-opacity-calendar-button-previous-opacity-disabled"
7646
7646
  ],
7647
7647
  buttonNext: [
7648
- g(Mi({
7648
+ m(Mi({
7649
7649
  variant: "ghost",
7650
7650
  size: "icon-sm"
7651
7651
  })),
@@ -7754,12 +7754,12 @@ var gl = (t) => typeof t == "boolean" ? `${t}` : t === 0 ? "0" : t, ml = zc, ua
7754
7754
  }
7755
7755
  connectedCallback() {
7756
7756
  var t;
7757
- super.connectedCallback(), this._userClass = ((t = this.getAttribute("class")) == null ? void 0 : t.replace(g(X.host), "")) ?? "", this._userStyle = this.getAttribute("style") ?? "", this._userClass && this.removeAttribute("class"), this._userStyle && this.removeAttribute("style"), this.className = g(X.host);
7757
+ super.connectedCallback(), this._userClass = ((t = this.getAttribute("class")) == null ? void 0 : t.replace(m(X.host), "")) ?? "", this._userStyle = this.getAttribute("style") ?? "", this._userClass && this.removeAttribute("class"), this._userStyle && this.removeAttribute("style"), this.className = m(X.host);
7758
7758
  }
7759
7759
  firstUpdated(t) {
7760
7760
  var r;
7761
7761
  let e = this.querySelector(".calendar");
7762
- if (e && (this._userClass && (e.className = g("calendar", X.root, this._userClass)), this._userStyle)) {
7762
+ if (e && (this._userClass && (e.className = m("calendar", X.root, this._userClass)), this._userStyle)) {
7763
7763
  let i = (r = e.getAttribute("style")) == null ? void 0 : r.trim(), s = this._userStyle.trim();
7764
7764
  e.setAttribute("style", [i, s].filter(Boolean).join("; "));
7765
7765
  }
@@ -7794,16 +7794,16 @@ var gl = (t) => typeof t == "boolean" ? `${t}` : t === 0 ? "0" : t, ml = zc, ua
7794
7794
  });
7795
7795
  return d`
7796
7796
  <div
7797
- class=${g("calendar", X.root, this._userClass)}
7797
+ class=${m("calendar", X.root, this._userClass)}
7798
7798
  data-slot="calendar"
7799
7799
  data-mode=${this.mode}
7800
7800
  part="calendar"
7801
7801
  style=${this._userStyle}
7802
7802
  >
7803
- <div class=${g("calendar-months", X.months)}>
7804
- <nav class=${g("calendar-nav", X.nav)}>
7803
+ <div class=${m("calendar-months", X.months)}>
7804
+ <nav class=${m("calendar-nav", X.nav)}>
7805
7805
  <button
7806
- class=${g("calendar-button-previous", X.buttonPrevious)}
7806
+ class=${m("calendar-button-previous", X.buttonPrevious)}
7807
7807
  aria-label="Go to the Previous Month"
7808
7808
  @click="${this.previousMonth}"
7809
7809
  >
@@ -7817,14 +7817,14 @@ var gl = (t) => typeof t == "boolean" ? `${t}` : t === 0 ? "0" : t, ml = zc, ua
7817
7817
  stroke-width="2"
7818
7818
  stroke-linecap="round"
7819
7819
  stroke-linejoin="round"
7820
- class=${g("calendar-chevron", X.chevron, "lucide lucide-chevron-left-icon lucide-chevron-left")}
7820
+ class=${m("calendar-chevron", X.chevron, "lucide lucide-chevron-left-icon lucide-chevron-left")}
7821
7821
  >
7822
7822
  <path d="m15 18-6-6 6-6" />
7823
7823
  </svg>
7824
7824
  </button>
7825
7825
 
7826
7826
  <button
7827
- class=${g("calendar-button-next", X.buttonNext)}
7827
+ class=${m("calendar-button-next", X.buttonNext)}
7828
7828
  aria-label="Go to the Next Month"
7829
7829
  @click="${this.nextMonth}"
7830
7830
  >
@@ -7838,19 +7838,19 @@ var gl = (t) => typeof t == "boolean" ? `${t}` : t === 0 ? "0" : t, ml = zc, ua
7838
7838
  stroke-width="2"
7839
7839
  stroke-linecap="round"
7840
7840
  stroke-linejoin="round"
7841
- class=${g("calendar-chevron", X.chevron, "lucide lucide-chevron-right-icon lucide-chevron-right")}
7841
+ class=${m("calendar-chevron", X.chevron, "lucide lucide-chevron-right-icon lucide-chevron-right")}
7842
7842
  >
7843
7843
  <path d="m9 18 6-6-6-6" />
7844
7844
  </svg>
7845
7845
  </button>
7846
7846
  </nav>
7847
7847
 
7848
- <div class=${g("calendar-month", X.month)}>
7848
+ <div class=${m("calendar-month", X.month)}>
7849
7849
  <div
7850
- class=${g("calendar-month-caption", X.monthCaption)}
7850
+ class=${m("calendar-month-caption", X.monthCaption)}
7851
7851
  >
7852
7852
  <span
7853
- class=${g("calendar-caption-label", X.captionLabel)}
7853
+ class=${m("calendar-caption-label", X.captionLabel)}
7854
7854
  role="status"
7855
7855
  aria-live="polite"
7856
7856
  >
@@ -7859,16 +7859,16 @@ var gl = (t) => typeof t == "boolean" ? `${t}` : t === 0 ? "0" : t, ml = zc, ua
7859
7859
  </div>
7860
7860
 
7861
7861
  <table
7862
- class=${g("calendar-month-grid", X.monthGrid)}
7862
+ class=${m("calendar-month-grid", X.monthGrid)}
7863
7863
  role="grid"
7864
7864
  aria-label=${p}
7865
7865
  aria-multiselectable=${this.mode === "range" ? "true" : "false"}
7866
7866
  >
7867
7867
  <thead aria-hidden="true">
7868
- <tr class=${g("calendar-weekdays", X.weekdays)}>
7868
+ <tr class=${m("calendar-weekdays", X.weekdays)}>
7869
7869
  ${Bp.map((b) => d`
7870
7870
  <th
7871
- class=${g("calendar-weekday", X.weekday)}
7871
+ class=${m("calendar-weekday", X.weekday)}
7872
7872
  scope="col"
7873
7873
  aria-label=${b}
7874
7874
  >
@@ -7878,15 +7878,15 @@ var gl = (t) => typeof t == "boolean" ? `${t}` : t === 0 ? "0" : t, ml = zc, ua
7878
7878
  </tr>
7879
7879
  </thead>
7880
7880
 
7881
- <tbody class=${g("calendar-weeks", X.weeks)}>
7881
+ <tbody class=${m("calendar-weeks", X.weeks)}>
7882
7882
  ${Array.from({ length: Math.ceil(o.length / 7) }, (b, y) => d`
7883
- <tr class=${g("calendar-week", X.week)}>
7883
+ <tr class=${m("calendar-week", X.week)}>
7884
7884
  ${o.slice(y * 7, (y + 1) * 7).map((w, E) => {
7885
7885
  var jt, H, Yt;
7886
- let C = new Date(this.currentDate.getFullYear(), w.month, Number(w.day)), S = C.toDateString() === (/* @__PURE__ */ new Date()).toDateString(), k = this.mode === "range" && C.toDateString() === ((jt = this.selectedStartDate) == null ? void 0 : jt.toDateString()), T = this.mode === "range" && this.isDayInRange(C, !0), I = this.mode === "range" && C.toDateString() === ((H = this.selectedEndDate) == null ? void 0 : H.toDateString()), N = this.mode === "single" && C.toDateString() === ((Yt = this.selectedStartDate) == null ? void 0 : Yt.toDateString()), J = N || k || T || I, Y = E === 0, nt = E === 6, ut = S ? "Today, " : "";
7887
- return ut += Vp(C), ut += J ? ", selected" : "", d`
7886
+ let C = new Date(this.currentDate.getFullYear(), w.month, Number(w.day)), S = C.toDateString() === (/* @__PURE__ */ new Date()).toDateString(), k = this.mode === "range" && C.toDateString() === ((jt = this.selectedStartDate) == null ? void 0 : jt.toDateString()), T = this.mode === "range" && this.isDayInRange(C, !0), I = this.mode === "range" && C.toDateString() === ((H = this.selectedEndDate) == null ? void 0 : H.toDateString()), N = this.mode === "single" && C.toDateString() === ((Yt = this.selectedStartDate) == null ? void 0 : Yt.toDateString()), J = N || k || T || I, Y = E === 0, nt = E === 6, gt = S ? "Today, " : "";
7887
+ return gt += Vp(C), gt += J ? ", selected" : "", d`
7888
7888
  <td
7889
- class=${g("calendar-day", X.day.base, S && !J && X.day.today, J && X.day.selected.common, N && X.day.selected.single, k && X.day.selected.range.start, T && X.day.selected.range.middle, I && X.day.selected.range.end, Y && X.day.index.first, nt && X.day.index.last, !1)}
7889
+ class=${m("calendar-day", X.day.base, S && !J && X.day.today, J && X.day.selected.common, N && X.day.selected.single, k && X.day.selected.range.start, T && X.day.selected.range.middle, I && X.day.selected.range.end, Y && X.day.index.first, nt && X.day.index.last, !1)}
7890
7890
  role="gridcell"
7891
7891
  data-day=${C.toISOString().slice(0, 10)}
7892
7892
  ?data-disabled=${void 0}
@@ -7900,7 +7900,7 @@ var gl = (t) => typeof t == "boolean" ? `${t}` : t === 0 ? "0" : t, ml = zc, ua
7900
7900
  ?aria-selected=${J ? "true" : void 0}
7901
7901
  >
7902
7902
  <button
7903
- class=${g("calendar-day-button", X.dayButton.base, w.isOutside && X.dayButton.outside, S && X.dayButton.today)}
7903
+ class=${m("calendar-day-button", X.dayButton.base, w.isOutside && X.dayButton.outside, S && X.dayButton.today)}
7904
7904
  ?disabled=${void 0}
7905
7905
  data-variant="ghost"
7906
7906
  data-size="icon"
@@ -7910,7 +7910,7 @@ var gl = (t) => typeof t == "boolean" ? `${t}` : t === 0 ? "0" : t, ml = zc, ua
7910
7910
  data-range-end=${I.toString()}
7911
7911
  tabindex=${N || I ? "0" : "-1"}
7912
7912
  type="button"
7913
- aria-label=${ut}
7913
+ aria-label=${gt}
7914
7914
  @click="${() => this.selectDate(Number(w.day), w.isOutside)}"
7915
7915
  >
7916
7916
  ${w.day}
@@ -8130,7 +8130,7 @@ function Wp(t) {
8130
8130
  stroke-width="2"
8131
8131
  stroke-linecap="round"
8132
8132
  stroke-linejoin="round"
8133
- class=${g("lucide lucide-check-icon lucide-check", "")}
8133
+ class=${m("lucide lucide-check-icon lucide-check", "")}
8134
8134
  >
8135
8135
  <path d="M20 6 9 17l-5-5"/>
8136
8136
  </svg>
@@ -8148,7 +8148,7 @@ function Yp(t) {
8148
8148
  stroke-width="2"
8149
8149
  stroke-linecap="round"
8150
8150
  stroke-linejoin="round"
8151
- class=${g("lucide lucide-minus-icon lucide-minus", "")}
8151
+ class=${m("lucide lucide-minus-icon lucide-minus", "")}
8152
8152
  >
8153
8153
  <path d="M5 12h14"/>
8154
8154
  </svg>
@@ -8166,7 +8166,7 @@ function Xp(t) {
8166
8166
  stroke-width="2"
8167
8167
  stroke-linecap="round"
8168
8168
  stroke-linejoin="round"
8169
- class=${g("lucide lucide-search-icon lucide-search", "")}
8169
+ class=${m("lucide lucide-search-icon lucide-search", "")}
8170
8170
  >
8171
8171
  <path d="m21 21-4.34-4.34"/>
8172
8172
  <circle cx="11" cy="11" r="8"/>
@@ -8247,7 +8247,7 @@ var Zt = {
8247
8247
  }
8248
8248
  }
8249
8249
  getSlideClasses() {
8250
- return g(Zt.slide.base, this.size ? Zt.slide.size.true : Zt.slide.size.false);
8250
+ return m(Zt.slide.base, this.size ? Zt.slide.size.true : Zt.slide.size.false);
8251
8251
  }
8252
8252
  nextSlide() {
8253
8253
  this.currentIndex < this.items.length - 1 && (this.currentIndex += 1, this.updateSlides());
@@ -8268,15 +8268,15 @@ var Zt = {
8268
8268
  super.disconnectedCallback(), window.removeEventListener("resize", this.handleResize);
8269
8269
  }
8270
8270
  render() {
8271
- let t = this.currentIndex === 0, e = this.size ? window.innerWidth >= 1024 ? 3 : window.innerWidth >= 768 ? 2 : 1 : 1, r = this.currentIndex >= this.items.length - e, i = g(Zt.slidesWrapper.base, Zt.slidesWrapper.orientation[this.orientation]), s = g(Zt.controls.base, Zt.controls.orientation[this.orientation]), o = g(Zt.controlButton.base, this.orientation === "vertical" && Zt.controlButton.orientation.verticalPrev), n = g(Zt.controlButton.base, this.orientation === "vertical" && Zt.controlButton.orientation.verticalNext);
8271
+ let t = this.currentIndex === 0, e = this.size ? window.innerWidth >= 1024 ? 3 : window.innerWidth >= 768 ? 2 : 1 : 1, r = this.currentIndex >= this.items.length - e, i = m(Zt.slidesWrapper.base, Zt.slidesWrapper.orientation[this.orientation]), s = m(Zt.controls.base, Zt.controls.orientation[this.orientation]), o = m(Zt.controlButton.base, this.orientation === "vertical" && Zt.controlButton.orientation.verticalPrev), n = m(Zt.controlButton.base, this.orientation === "vertical" && Zt.controlButton.orientation.verticalNext);
8272
8272
  return d`
8273
8273
  <div
8274
8274
  part="rtg-carousel"
8275
- class="${g(Zt.root, this.className)}"
8275
+ class="${m(Zt.root, this.className)}"
8276
8276
  size="${this.size}"
8277
8277
  orientation="${this.orientation}"
8278
8278
  >
8279
- <div class="${g(Zt.viewport, this.className)}">
8279
+ <div class="${m(Zt.viewport, this.className)}">
8280
8280
  <div class="slides ${i}"></div>
8281
8281
 
8282
8282
  <div class="${s}">
@@ -8367,8 +8367,8 @@ var ie = class extends v {
8367
8367
  ?disabled=${this.disabled}
8368
8368
  value=${this.value}
8369
8369
  aria-checked=${this._checked ? "true" : "false"}
8370
- aria-required=${this.required ? "true" : m}
8371
- aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : m}
8370
+ aria-required=${this.required ? "true" : g}
8371
+ aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : g}
8372
8372
  @click=${this._handleClick}
8373
8373
  >
8374
8374
  ${this._renderIndicator()}
@@ -8457,7 +8457,7 @@ var $l = class extends _ {
8457
8457
  return d`
8458
8458
  <div
8459
8459
  ${Pt(this.getFilteredAttributes())}
8460
- class="${g("", this.className)}"
8460
+ class="${m("", this.className)}"
8461
8461
  style="display: none;--radix-collapsible-content-height: 100px; --radix-collapsible-content-width: 350px;"
8462
8462
  part="collapsible-content"
8463
8463
  ></div>
@@ -8494,7 +8494,7 @@ var js = class extends _ {
8494
8494
  return d`
8495
8495
  <div
8496
8496
  ${Pt(this.getFilteredAttributes())}
8497
- class="${g("", this.className)}"
8497
+ class="${m("", this.className)}"
8498
8498
  part="collapsible"
8499
8499
  ></div>
8500
8500
  `;
@@ -8620,7 +8620,7 @@ var _i = {
8620
8620
  type="button"
8621
8621
  part="combo-box-trigger-button"
8622
8622
  role="tab"
8623
- class="${g(_i.trigger.base, this.className)}"
8623
+ class="${m(_i.trigger.base, this.className)}"
8624
8624
  tabindex="-1"
8625
8625
  data-orientation="horizontal"
8626
8626
  data-radix-collection-item=""
@@ -8663,7 +8663,7 @@ var dn = class extends v {
8663
8663
  return d`
8664
8664
  <span
8665
8665
  part="combo-box-value"
8666
- class="${g(_i.value, this.className)}"
8666
+ class="${m(_i.value, this.className)}"
8667
8667
  @click=${this.handleClick}
8668
8668
  >${this.renderLabel()}</span
8669
8669
  >
@@ -8684,7 +8684,7 @@ var us = class extends v {
8684
8684
  data-slot="separator"
8685
8685
  data-orientation=${this.orientation}
8686
8686
  role=${this.decorative ? "none" : "separator"}
8687
- aria-orientation=${this.decorative ? m : this.orientation}
8687
+ aria-orientation=${this.decorative ? g : this.orientation}
8688
8688
  ></div>
8689
8689
  `;
8690
8690
  }
@@ -8820,7 +8820,7 @@ var $r = class extends _ {
8820
8820
  return d`
8821
8821
  <div
8822
8822
  part="select-group"
8823
- class="${g(_i.group.base, this.className)}"
8823
+ class="${m(_i.group.base, this.className)}"
8824
8824
  data-hs-combo-box-output=""
8825
8825
  data-testId="select-group"
8826
8826
  >
@@ -8873,7 +8873,7 @@ var Cl, re = class extends _ {
8873
8873
  <div
8874
8874
  ${Pt(this.getFilteredAttributes())}
8875
8875
  @click=${this.handleClick}
8876
- class="${g(_i.item.base, this.className)}"
8876
+ class="${m(_i.item.base, this.className)}"
8877
8877
  data-hs-combo-box-value=${this.value}
8878
8878
  aria-selected="${this.isSelected}"
8879
8879
  data-selected="${this.isSelected}"
@@ -8914,7 +8914,7 @@ var gs = class extends v {
8914
8914
  <input
8915
8915
  part="combo-box-input"
8916
8916
  type="text"
8917
- class="${g(_i.input, this.className)}"
8917
+ class="${m(_i.input, this.className)}"
8918
8918
  placeholder=${this.placeholder}
8919
8919
  autocomplete="off"
8920
8920
  autocorrect="off"
@@ -8943,7 +8943,7 @@ var El = class extends _ {
8943
8943
  render() {
8944
8944
  return d`
8945
8945
  <div
8946
- class="${g(_i.empty, this.className)}"
8946
+ class="${m(_i.empty, this.className)}"
8947
8947
  role="presentation"
8948
8948
  >
8949
8949
  ${Array.from(this.childNodes)[0].textContent}
@@ -9000,7 +9000,7 @@ var kl, Mt = class extends _ {
9000
9000
  render() {
9001
9001
  return d`
9002
9002
  <div
9003
- class="${g("rtg-relative", this.className)}"
9003
+ class="${m("rtg-relative", this.className)}"
9004
9004
  data-hs-combo-box=""
9005
9005
  data-combo-box-uuid=${this.uuid}
9006
9006
  part="combo-box"
@@ -9100,7 +9100,7 @@ var Ce = {
9100
9100
  id="${this.identifier}"
9101
9101
  part="command-empty"
9102
9102
  role="presentation"
9103
- class=${g(Ce.empty, this._hidden === "true" && "rtg-hidden", this.className)}
9103
+ class=${m(Ce.empty, this._hidden === "true" && "rtg-hidden", this.className)}
9104
9104
  ></div>
9105
9105
  `;
9106
9106
  }
@@ -9141,13 +9141,13 @@ var Us, Rr, Ii = (Rr = class extends _ {
9141
9141
  id="${this.identifier}"
9142
9142
  part="command-group"
9143
9143
  role="presentation"
9144
- class=${g(Ce.group, this._hidden === "true" && "rtg-hidden", this.className)}
9144
+ class=${m(Ce.group, this._hidden === "true" && "rtg-hidden", this.className)}
9145
9145
  >
9146
9146
  <div
9147
9147
  rtgcmd-group-heading
9148
9148
  aria-hidden="true"
9149
9149
  id="${this.identifier}h"
9150
- class=${g(Ce.heading)}
9150
+ class=${m(Ce.heading)}
9151
9151
  >
9152
9152
  ${this.heading}
9153
9153
  </div>
@@ -9204,7 +9204,7 @@ var bs = class extends v {
9204
9204
  return d`
9205
9205
  <div
9206
9206
  part="command-input"
9207
- class=${g(Ce.input.wrapper, this.className)}
9207
+ class=${m(Ce.input.wrapper, this.className)}
9208
9208
  name="rtgcmd-input-container"
9209
9209
  data-slot="rtg-command-input-wrapper"
9210
9210
  >
@@ -9218,7 +9218,7 @@ var bs = class extends v {
9218
9218
  stroke-width="2"
9219
9219
  stroke-linecap="round"
9220
9220
  stroke-linejoin="round"
9221
- class=${g(Ce.input.icon, "lucide lucide-search-icon lucide-search")}
9221
+ class=${m(Ce.input.icon, "lucide lucide-search-icon lucide-search")}
9222
9222
  >
9223
9223
  <path d="m21 21-4.34-4.34" />
9224
9224
  <circle cx="11" cy="11" r="8" />
@@ -9239,7 +9239,7 @@ var bs = class extends v {
9239
9239
  aria-controls=":r1oe:"
9240
9240
  aria-labelledby=":r1of:"
9241
9241
  @input="${this.handleChange}"
9242
- class=${g(Ce.input.input)}
9242
+ class=${m(Ce.input.input)}
9243
9243
  />
9244
9244
  </div>
9245
9245
  `;
@@ -9296,7 +9296,7 @@ var Fs, Or, br = (Or = class extends _ {
9296
9296
  @mouseleave="${this.handleMouseEvent}"
9297
9297
  @focus="${this.handleMouseEvent}"
9298
9298
  @click="${this.onSelect}"
9299
- class=${g(Ce.item, this._hidden === "true" && "rtg-hidden", this.className)}
9299
+ class=${m(Ce.item, this._hidden === "true" && "rtg-hidden", this.className)}
9300
9300
  ></div>
9301
9301
  `;
9302
9302
  }
@@ -9340,7 +9340,7 @@ var Rl = class extends _ {
9340
9340
  id="${this.identifier}"
9341
9341
  part="command-list"
9342
9342
  role="listbox"
9343
- class=${g(Ce.list, this.className)}
9343
+ class=${m(Ce.list, this.className)}
9344
9344
  >
9345
9345
  <div></div>
9346
9346
  </div>
@@ -9361,13 +9361,13 @@ var Ms, Ir, fs = (Ir = class extends v {
9361
9361
  return this;
9362
9362
  }
9363
9363
  render() {
9364
- return d`${this._hidden === "true" ? m : d`
9364
+ return d`${this._hidden === "true" ? g : d`
9365
9365
  <div
9366
9366
  rtgcmd-separator
9367
9367
  id="${this.identifier}"
9368
9368
  part="command-separator"
9369
9369
  role="separator"
9370
- class=${g(Ce.separator, this.className)}
9370
+ class=${m(Ce.separator, this.className)}
9371
9371
  ></div>
9372
9372
  `}`;
9373
9373
  }
@@ -9397,7 +9397,7 @@ var Ol = class extends _ {
9397
9397
  return d`
9398
9398
  <div
9399
9399
  part="command"
9400
- class="${g(Ce.root, t)}"
9400
+ class="${m(Ce.root, t)}"
9401
9401
  style="${e}"
9402
9402
  id="rtgcmdr1"
9403
9403
  rtgcmd-root
@@ -9531,9 +9531,9 @@ var Vt = {
9531
9531
  @mouseover="${this.handleMouseEvent}"
9532
9532
  @mouseleave="${this.handleMouseEvent}"
9533
9533
  @focus="${this.handleMouseEvent}"
9534
- class=${g(Vt.checkboxItem.base, this.className)}
9534
+ class=${m(Vt.checkboxItem.base, this.className)}
9535
9535
  >
9536
- <span class=${g(Vt.checkboxItem.span)}>
9536
+ <span class=${m(Vt.checkboxItem.span)}>
9537
9537
  ${this.checked ? d`
9538
9538
  <svg
9539
9539
  xmlns="http://www.w3.org/2000/svg"
@@ -9545,11 +9545,11 @@ var Vt = {
9545
9545
  stroke-width="2"
9546
9546
  stroke-linecap="round"
9547
9547
  stroke-linejoin="round"
9548
- class=${g(Vt.checkboxItem.icon, "lucide lucide-check-icon lucide-check")}
9548
+ class=${m(Vt.checkboxItem.icon, "lucide lucide-check-icon lucide-check")}
9549
9549
  >
9550
9550
  <path d="M20 6 9 17l-5-5" />
9551
9551
  </svg>
9552
- ` : m}
9552
+ ` : g}
9553
9553
  </span>
9554
9554
  <div part="context-menu-checkbox-item-container"></div>
9555
9555
  </div>
@@ -9599,7 +9599,7 @@ var cn = class extends _ {
9599
9599
  return d`
9600
9600
  <div
9601
9601
  part="context-menu-content"
9602
- class=${g(Vt.content, this.className)}
9602
+ class=${m(Vt.content, this.className)}
9603
9603
  ></div>
9604
9604
  `;
9605
9605
  }
@@ -9627,9 +9627,9 @@ var hn = class extends _ {
9627
9627
  rtgcmd-group
9628
9628
  part="context-menu-group"
9629
9629
  role="presentation"
9630
- class=${g(Vt.group, this.className)}
9630
+ class=${m(Vt.group, this.className)}
9631
9631
  >
9632
- <div rtgcmd-group-heading class=${g(Vt.label)}>
9632
+ <div rtgcmd-group-heading class=${m(Vt.label)}>
9633
9633
  ${this.heading}
9634
9634
  </div>
9635
9635
 
@@ -9681,7 +9681,7 @@ var vs = class extends _ {
9681
9681
  role="option"
9682
9682
  data-value="${this.value}"
9683
9683
  ?data-disabled=${this.disabled}
9684
- class=${g(Vt.item, this.className)}
9684
+ class=${m(Vt.item, this.className)}
9685
9685
  ></div>
9686
9686
  `;
9687
9687
  }
@@ -9740,9 +9740,9 @@ var vr = class extends _ {
9740
9740
  @mouseover="${this.handleMouseEvent}"
9741
9741
  @mouseleave="${this.handleMouseEvent}"
9742
9742
  @focus="${this.handleMouseEvent}"
9743
- class=${g(Vt.radioItem.base, this.className)}
9743
+ class=${m(Vt.radioItem.base, this.className)}
9744
9744
  >
9745
- <span class=${g(Vt.radioItem.span)}>
9745
+ <span class=${m(Vt.radioItem.span)}>
9746
9746
  ${this.checked ? d`<svg
9747
9747
  xmlns="http://www.w3.org/2000/svg"
9748
9748
  width="24"
@@ -9753,10 +9753,10 @@ var vr = class extends _ {
9753
9753
  stroke-width="2"
9754
9754
  stroke-linecap="round"
9755
9755
  stroke-linejoin="round"
9756
- class=${g(Vt.radioItem.icon, "lucide lucide-circle-icon lucide-circle")}
9756
+ class=${m(Vt.radioItem.icon, "lucide lucide-circle-icon lucide-circle")}
9757
9757
  >
9758
9758
  <circle cx="12" cy="12" r="10" />
9759
- </svg>` : m}
9759
+ </svg>` : g}
9760
9760
  </span>
9761
9761
  <div part="context-menu-radio-item-container"></div>
9762
9762
  </div>
@@ -9787,7 +9787,7 @@ var pn = class extends v {
9787
9787
  rtgcmd-separator
9788
9788
  part="context-menu-separator"
9789
9789
  role="separator"
9790
- class=${g(Vt.separator, this.className)}
9790
+ class=${m(Vt.separator, this.className)}
9791
9791
  ></div>
9792
9792
  `;
9793
9793
  }
@@ -9801,7 +9801,7 @@ var Il = class extends _ {
9801
9801
  return [];
9802
9802
  }
9803
9803
  createRenderRoot() {
9804
- return this.classList = g(Vt.shortcut), this;
9804
+ return this.classList = m(Vt.shortcut), this;
9805
9805
  }
9806
9806
  firstUpdated(t) {
9807
9807
  this.moveLightDomChildrenInto(this._containerElement);
@@ -9810,7 +9810,7 @@ var Il = class extends _ {
9810
9810
  return d`
9811
9811
  <span
9812
9812
  part="context-menu-shortcut"
9813
- class=${g(Vt.shortcut, this.className)}
9813
+ class=${m(Vt.shortcut, this.className)}
9814
9814
  >
9815
9815
  </span>
9816
9816
  `;
@@ -9887,7 +9887,7 @@ var un = class extends _ {
9887
9887
  return d`
9888
9888
  <div
9889
9889
  part="context-menu"
9890
- class=${g(Vt.root, this.className)}
9890
+ class=${m(Vt.root, this.className)}
9891
9891
  ></div>
9892
9892
  `;
9893
9893
  }
@@ -9946,7 +9946,7 @@ var ga = {
9946
9946
  <div
9947
9947
  part="popover-content"
9948
9948
  data-state=${this.state}
9949
- class=${g(ga.content, this.className)}
9949
+ class=${m(ga.content, this.className)}
9950
9950
  @click="${this.preventClickPropagation}"
9951
9951
  ></div>
9952
9952
  `;
@@ -9986,7 +9986,7 @@ var Tl = class extends _ {
9986
9986
  return d`
9987
9987
  <div
9988
9988
  part="popover-trigger"
9989
- class=${g(ga.trigger, this.className)}
9989
+ class=${m(ga.trigger, this.className)}
9990
9990
  ></div>
9991
9991
  `;
9992
9992
  }
@@ -10013,7 +10013,7 @@ var Bi = class extends _ {
10013
10013
  }
10014
10014
  render() {
10015
10015
  return d`
10016
- <div part="popover" class=${g(ga.root, this.className)}></div>
10016
+ <div part="popover" class=${m(ga.root, this.className)}></div>
10017
10017
  `;
10018
10018
  }
10019
10019
  };
@@ -10042,18 +10042,18 @@ var ys = {
10042
10042
  render() {
10043
10043
  return d`
10044
10044
  <rtg-popover
10045
- class=${g("date-picker", ys.root, this.className)}
10045
+ class=${m("date-picker", ys.root, this.className)}
10046
10046
  @date-selected=${this.handleDateSelected}
10047
10047
  >
10048
10048
  <rtg-popover-trigger
10049
10049
  as-child
10050
- class=${g("date-picker-trigger", ys.trigger)}
10050
+ class=${m("date-picker-trigger", ys.trigger)}
10051
10051
  >
10052
10052
  <button
10053
10053
  data-variant="outline"
10054
10054
  data-size="default"
10055
10055
  data-empty=${this.selectedDate ? "false" : "true"}
10056
- class=${g("date-picker-trigger-button", ys.triggerButton)}
10056
+ class=${m("date-picker-trigger-button", ys.triggerButton)}
10057
10057
  >
10058
10058
  <svg
10059
10059
  xmlns="http://www.w3.org/2000/svg"
@@ -10089,7 +10089,7 @@ var ys = {
10089
10089
  </rtg-popover-trigger>
10090
10090
 
10091
10091
  <rtg-popover-content
10092
- class=${g("date-picker-content", ys.content)}
10092
+ class=${m("date-picker-content", ys.content)}
10093
10093
  >
10094
10094
  <rtg-calendar mode="single"></rtg-calendar>
10095
10095
  </rtg-popover-content>
@@ -10175,7 +10175,7 @@ var ue = {
10175
10175
  return d`
10176
10176
  <div
10177
10177
  part="dialog-close"
10178
- class=${g(ue.close, this.className)}
10178
+ class=${m(ue.close, this.className)}
10179
10179
  ></div>
10180
10180
  `;
10181
10181
  }
@@ -10221,7 +10221,7 @@ var mn = "closed", ws = class extends _ {
10221
10221
  <div
10222
10222
  rtgdlg-content
10223
10223
  part="dialog-content"
10224
- class=${g(ue.content.base, this.className)}
10224
+ class=${m(ue.content.base, this.className)}
10225
10225
  >
10226
10226
  <div part="dialog-content-slot"></div>
10227
10227
 
@@ -10230,7 +10230,7 @@ var mn = "closed", ws = class extends _ {
10230
10230
  data-slot="dialog-content-close"
10231
10231
  type="button"
10232
10232
  @click=${this.handleCloseButtonClick}
10233
- class=${g(ue.content.close.base)}
10233
+ class=${m(ue.content.close.base)}
10234
10234
  >
10235
10235
  <svg
10236
10236
  xmlns="http://www.w3.org/2000/svg"
@@ -10242,7 +10242,7 @@ var mn = "closed", ws = class extends _ {
10242
10242
  stroke-width="2"
10243
10243
  stroke-linecap="round"
10244
10244
  stroke-linejoin="round"
10245
- class=${g(ue.content.close.icon, "lucide lucide-x-icon lucide-x")}
10245
+ class=${m(ue.content.close.icon, "lucide lucide-x-icon lucide-x")}
10246
10246
  >
10247
10247
  <path d="M18 6 6 18" />
10248
10248
  <path d="m6 6 12 12" />
@@ -10279,7 +10279,7 @@ var Pl = class extends _ {
10279
10279
  return d`
10280
10280
  <div
10281
10281
  part="dialog-footer"
10282
- class=${g(ue.footer, this.className)}
10282
+ class=${m(ue.footer, this.className)}
10283
10283
  ></div>
10284
10284
  `;
10285
10285
  }
@@ -10296,11 +10296,11 @@ var _s = class extends v {
10296
10296
  return d`
10297
10297
  <div
10298
10298
  part="dialog-header"
10299
- class=${g(ue.header, this.className)}
10299
+ class=${m(ue.header, this.className)}
10300
10300
  >
10301
- <h2 class=${g(ue.title, this.className)}>${this._title}</h2>
10301
+ <h2 class=${m(ue.title, this.className)}>${this._title}</h2>
10302
10302
 
10303
- <p class=${g(ue.description, this.className)}>
10303
+ <p class=${m(ue.description, this.className)}>
10304
10304
  ${this.description}
10305
10305
  </p>
10306
10306
  </div>
@@ -10319,7 +10319,7 @@ var Nl = class extends v {
10319
10319
  return d`
10320
10320
  <div
10321
10321
  part="dialog-overly"
10322
- class=${g(ue.overlay, this.className)}
10322
+ class=${m(ue.overlay, this.className)}
10323
10323
  ></div>
10324
10324
  `;
10325
10325
  }
@@ -10358,7 +10358,7 @@ var Qp = "open", zl = class extends _ {
10358
10358
  return d`
10359
10359
  <div
10360
10360
  part="dialog-trigger"
10361
- class=${g(ue.trigger, this.className)}
10361
+ class=${m(ue.trigger, this.className)}
10362
10362
  ></div>
10363
10363
  `;
10364
10364
  }
@@ -10393,9 +10393,9 @@ var tu = "open", eu = "closed", pi = class extends _ {
10393
10393
  <div
10394
10394
  rtgdlg-root
10395
10395
  part="dialog"
10396
- class=${g(ue.root, this.className)}
10396
+ class=${m(ue.root, this.className)}
10397
10397
  >
10398
- ${this.state === tu ? d` <rtg-dialog-overlay></rtg-dialog-overlay>` : m}
10398
+ ${this.state === tu ? d` <rtg-dialog-overlay></rtg-dialog-overlay>` : g}
10399
10399
  </div>
10400
10400
  `;
10401
10401
  }
@@ -10477,7 +10477,7 @@ var $e = {
10477
10477
  return d`
10478
10478
  <div
10479
10479
  part="drawer-close"
10480
- class=${g(Ee.close, this.className)}
10480
+ class=${m(Ee.close, this.className)}
10481
10481
  ></div>
10482
10482
  `;
10483
10483
  }
@@ -10537,9 +10537,9 @@ var bn = class extends _ {
10537
10537
  <div
10538
10538
  rtgdlg-content
10539
10539
  part="drawer-content"
10540
- class=${g(Ee.content.base, this.state === $e.open ? "drawer-open" : "drawer-closed", this.className)}
10540
+ class=${m(Ee.content.base, this.state === $e.open ? "drawer-open" : "drawer-closed", this.className)}
10541
10541
  >
10542
- <div part="drawer-thumb" class=${g(Ee.content.thumb)}></div>
10542
+ <div part="drawer-thumb" class=${m(Ee.content.thumb)}></div>
10543
10543
  <div part="drawer-content-slot"></div>
10544
10544
  </div>
10545
10545
  `;
@@ -10566,7 +10566,7 @@ var Dl = class extends _ {
10566
10566
  return d`
10567
10567
  <p
10568
10568
  part="drawer-description"
10569
- class=${g(Ee.description, this.className)}
10569
+ class=${m(Ee.description, this.className)}
10570
10570
  ></p>
10571
10571
  `;
10572
10572
  }
@@ -10589,7 +10589,7 @@ var Ul = class extends _ {
10589
10589
  return d`
10590
10590
  <div
10591
10591
  part="drawer-footer"
10592
- class=${g(Ee.footer, this.className)}
10592
+ class=${m(Ee.footer, this.className)}
10593
10593
  ></div>
10594
10594
  `;
10595
10595
  }
@@ -10609,7 +10609,7 @@ var Fl = class extends _ {
10609
10609
  return d`
10610
10610
  <div
10611
10611
  part="drawer-header"
10612
- class=${g(Ee.header, this.className)}
10612
+ class=${m(Ee.header, this.className)}
10613
10613
  ></div>
10614
10614
  `;
10615
10615
  }
@@ -10623,7 +10623,7 @@ var Ml = class extends v {
10623
10623
  return d`
10624
10624
  <div
10625
10625
  part="drawer-overly"
10626
- class=${g(Ee.overlay, this.className)}
10626
+ class=${m(Ee.overlay, this.className)}
10627
10627
  ></div>
10628
10628
  `;
10629
10629
  }
@@ -10646,7 +10646,7 @@ var Bl = class extends _ {
10646
10646
  return d`
10647
10647
  <h2
10648
10648
  part="drawer-title"
10649
- class=${g(Ee.title, this.className)}
10649
+ class=${m(Ee.title, this.className)}
10650
10650
  ></h2>
10651
10651
  `;
10652
10652
  }
@@ -10685,7 +10685,7 @@ var ql = class extends _ {
10685
10685
  return d`
10686
10686
  <div
10687
10687
  part="drawer-trigger"
10688
- class=${g(Ee.trigger, this.className)}
10688
+ class=${m(Ee.trigger, this.className)}
10689
10689
  ></div>
10690
10690
  `;
10691
10691
  }
@@ -10735,9 +10735,9 @@ var qi = class extends _ {
10735
10735
  <div
10736
10736
  rtgdlg-root
10737
10737
  part="drawer"
10738
- class=${g(Ee.root, this.className)}
10738
+ class=${m(Ee.root, this.className)}
10739
10739
  >
10740
- ${this.state === $e.open ? d` <rtg-drawer-overlay></rtg-drawer-overlay>` : m}
10740
+ ${this.state === $e.open ? d` <rtg-drawer-overlay></rtg-drawer-overlay>` : g}
10741
10741
  </div>
10742
10742
  `;
10743
10743
  }
@@ -10875,9 +10875,9 @@ var Ht = {
10875
10875
  @mouseover="${this.handleMouseEvent}"
10876
10876
  @mouseleave="${this.handleMouseEvent}"
10877
10877
  @focus="${this.handleMouseEvent}"
10878
- class=${g(Ht.checkboxItem.base, this.className)}
10878
+ class=${m(Ht.checkboxItem.base, this.className)}
10879
10879
  >
10880
- <span class=${g(Ht.checkboxItem.span)}>
10880
+ <span class=${m(Ht.checkboxItem.span)}>
10881
10881
  ${this.checked ? d`
10882
10882
  <svg
10883
10883
  xmlns="http://www.w3.org/2000/svg"
@@ -10889,11 +10889,11 @@ var Ht = {
10889
10889
  stroke-width="2"
10890
10890
  stroke-linecap="round"
10891
10891
  stroke-linejoin="round"
10892
- class=${g(Ht.checkboxItem.icon, "lucide lucide-check-icon lucide-check")}
10892
+ class=${m(Ht.checkboxItem.icon, "lucide lucide-check-icon lucide-check")}
10893
10893
  >
10894
10894
  <path d="M20 6 9 17l-5-5" />
10895
10895
  </svg>
10896
- ` : m}
10896
+ ` : g}
10897
10897
  </span>
10898
10898
  <div part="dropdown-menu-checkbox-item-container"></div>
10899
10899
  </div>
@@ -10938,7 +10938,7 @@ var ma = "closed", xs = class extends _ {
10938
10938
  data-slot="dropdown-menu-content"
10939
10939
  part="dropdown-menu-content"
10940
10940
  style="display: ${this.isOpen ? "block" : "none"};"
10941
- class=${g(Ht.content, this.className)}
10941
+ class=${m(Ht.content, this.className)}
10942
10942
  ></div>
10943
10943
  `;
10944
10944
  }
@@ -10961,14 +10961,14 @@ var Ai = class extends _ {
10961
10961
  this.moveLightDomChildrenInto(this._containerElement);
10962
10962
  }
10963
10963
  render() {
10964
- return d`${this._hidden === "true" ? m : d`
10964
+ return d`${this._hidden === "true" ? g : d`
10965
10965
  <div
10966
10966
  rtgcmd-group
10967
10967
  part="dropdown-menu-group"
10968
10968
  role="presentation"
10969
- class=${g(Ht.group, this.className)}
10969
+ class=${m(Ht.group, this.className)}
10970
10970
  >
10971
- <div rtgcmd-group-heading class=${g(Ht.label)}>
10971
+ <div rtgcmd-group-heading class=${m(Ht.label)}>
10972
10972
  ${this.heading}
10973
10973
  </div>
10974
10974
 
@@ -11013,7 +11013,7 @@ var wr = class extends _ {
11013
11013
  this.moveLightDomChildrenInto(this._containerElement);
11014
11014
  }
11015
11015
  render() {
11016
- return d` ${this._hidden === "true" ? m : d`
11016
+ return d` ${this._hidden === "true" ? g : d`
11017
11017
  <div
11018
11018
  rtgcmd-item
11019
11019
  part="dropdown-menu-item"
@@ -11027,7 +11027,7 @@ var wr = class extends _ {
11027
11027
  @mouseleave="${this.handleMouseEvent}"
11028
11028
  @focus="${this.handleMouseEvent}"
11029
11029
  @click="${this.handleClickDefault}"
11030
- class=${g(Ht.item, this.className)}
11030
+ class=${m(Ht.item, this.className)}
11031
11031
  ></div>
11032
11032
  `}`;
11033
11033
  }
@@ -11088,9 +11088,9 @@ var Be = class extends _ {
11088
11088
  @mouseover="${this.handleMouseEvent}"
11089
11089
  @mouseleave="${this.handleMouseEvent}"
11090
11090
  @focus="${this.handleMouseEvent}"
11091
- class=${g(Ht.radioItem.base, this.className)}
11091
+ class=${m(Ht.radioItem.base, this.className)}
11092
11092
  >
11093
- <span class=${g(Ht.radioItem.span)}>
11093
+ <span class=${m(Ht.radioItem.span)}>
11094
11094
  ${this.checked ? d`<svg
11095
11095
  xmlns="http://www.w3.org/2000/svg"
11096
11096
  width="24"
@@ -11101,10 +11101,10 @@ var Be = class extends _ {
11101
11101
  stroke-width="2"
11102
11102
  stroke-linecap="round"
11103
11103
  stroke-linejoin="round"
11104
- class=${g(Ht.radioItem.icon, "lucide lucide-circle-icon lucide-circle")}
11104
+ class=${m(Ht.radioItem.icon, "lucide lucide-circle-icon lucide-circle")}
11105
11105
  >
11106
11106
  <circle cx="12" cy="12" r="10" />
11107
- </svg>` : m}
11107
+ </svg>` : g}
11108
11108
  </span>
11109
11109
  <div part="dropdown-menu-radio-item-container"></div>
11110
11110
  </div>
@@ -11140,7 +11140,7 @@ var Vl = class extends _ {
11140
11140
  rtgcmd-separator
11141
11141
  part="dropdown-menu-seperator"
11142
11142
  role="separator"
11143
- class=${g(Ht.separator, this.className)}
11143
+ class=${m(Ht.separator, this.className)}
11144
11144
  ></div>`;
11145
11145
  }
11146
11146
  };
@@ -11153,13 +11153,13 @@ var Hl = class extends _ {
11153
11153
  this.moveLightDomChildrenInto(this._containerElement);
11154
11154
  }
11155
11155
  createRenderRoot() {
11156
- return this.classList = g(Ht.shortcut), this;
11156
+ return this.classList = m(Ht.shortcut), this;
11157
11157
  }
11158
11158
  render() {
11159
11159
  return d`
11160
11160
  <span
11161
11161
  part="dropdown-menu-shortcut"
11162
- class=${g(Ht.shortcut, this.className)}
11162
+ class=${m(Ht.shortcut, this.className)}
11163
11163
  >
11164
11164
  </span>
11165
11165
  `;
@@ -11224,7 +11224,7 @@ var se, Ar, ui = (Ar = class extends _ {
11224
11224
  return d`
11225
11225
  <div
11226
11226
  part="dropdown-menu"
11227
- class=${g(Ht.root, this.className)}
11227
+ class=${m(Ht.root, this.className)}
11228
11228
  ></div>
11229
11229
  `;
11230
11230
  }
@@ -11406,8 +11406,8 @@ var Ti = class extends v {
11406
11406
  <div
11407
11407
  data-slot="field"
11408
11408
  data-orientation=${this.orientation}
11409
- data-disabled=${this.disabled ? "true" : m}
11410
- data-invalid=${this.invalid ? "true" : m}
11409
+ data-disabled=${this.disabled ? "true" : g}
11410
+ data-invalid=${this.invalid ? "true" : g}
11411
11411
  role="group"
11412
11412
  ></div>
11413
11413
  `;
@@ -11444,7 +11444,7 @@ var _n = class extends v {
11444
11444
  return this;
11445
11445
  }
11446
11446
  render() {
11447
- return d`<label data-slot="label" for=${this.for ?? m}></label>`;
11447
+ return d`<label data-slot="label" for=${this.for ?? g}></label>`;
11448
11448
  }
11449
11449
  };
11450
11450
  l([a({ type: String }), c("design:type", String)], _n.prototype, "for", void 0), _n = l([u("rtg-label")], _n);
@@ -11461,7 +11461,7 @@ var xn = class extends v {
11461
11461
  }
11462
11462
  render() {
11463
11463
  return d`
11464
- <rtg-label data-slot="field-label" for=${this.for ?? m}></rtg-label>
11464
+ <rtg-label data-slot="field-label" for=${this.for ?? g}></rtg-label>
11465
11465
  `;
11466
11466
  }
11467
11467
  };
@@ -11565,13 +11565,13 @@ var $n = class extends v {
11565
11565
  let t = [...new Map(this.errors.map((i) => [i == null ? void 0 : i.message, i])).values()];
11566
11566
  return t.length === 1 ? (r = t[0]) != null && r.message ? t[0].message : null : d`
11567
11567
  <ul data-slot="field-error-content">
11568
- ${t.map((i, s) => i != null && i.message ? d`<li key=${s}>${i.message}</li>` : m)}
11568
+ ${t.map((i, s) => i != null && i.message ? d`<li key=${s}>${i.message}</li>` : g)}
11569
11569
  </ul>
11570
11570
  `;
11571
11571
  }
11572
11572
  render() {
11573
11573
  let t = this._hasUserContent, e = this._renderContent();
11574
- return t ? d` <div data-slot="field-error" role="alert">${Array.from(this.childNodes)}</div>` : e ? d` <div data-slot="field-error" role="alert">${e}</div>` : (this.style.display = "none", m);
11574
+ return t ? d` <div data-slot="field-error" role="alert">${Array.from(this.childNodes)}</div>` : e ? d` <div data-slot="field-error" role="alert">${e}</div>` : (this.style.display = "none", g);
11575
11575
  }
11576
11576
  };
11577
11577
  l([a({ type: Array }), c("design:type", Array)], $n.prototype, "errors", void 0), $n = l([u("rtg-field-error")], $n);
@@ -11644,7 +11644,7 @@ var rr = class {
11644
11644
  return d`
11645
11645
  <form
11646
11646
  part="form-controller"
11647
- class="${g("", this.className)}"
11647
+ class="${m("", this.className)}"
11648
11648
  @submit=${this.handleSubmit}
11649
11649
  ${Qh((t) => this.formElement = t)}
11650
11650
  ></form>
@@ -11671,7 +11671,7 @@ var Bc = "rtg-form-item-context", ru = "rtg-space-form-space-y", iu = "rtg-text-
11671
11671
  <p
11672
11672
  id="${this.itemContext.id}-description"
11673
11673
  part="form-description"
11674
- class="${g(iu, this.className)}"
11674
+ class="${m(iu, this.className)}"
11675
11675
  ></p>
11676
11676
  `;
11677
11677
  }
@@ -11713,7 +11713,7 @@ var lu = "rtg-form-field-context", rd, ze = class extends _ {
11713
11713
  render() {
11714
11714
  return d`<div
11715
11715
  part="form-field"
11716
- class="${g(su, this.className)}"
11716
+ class="${m(su, this.className)}"
11717
11717
  ></div>`;
11718
11718
  }
11719
11719
  };
@@ -11734,7 +11734,7 @@ var En = class extends _ {
11734
11734
  render() {
11735
11735
  return d`<div
11736
11736
  part="form-item"
11737
- class="${g(ou, this.className)}"
11737
+ class="${m(ou, this.className)}"
11738
11738
  ></div>`;
11739
11739
  }
11740
11740
  };
@@ -11772,7 +11772,7 @@ var id, $s = class extends _ {
11772
11772
  <label
11773
11773
  part="form-label"
11774
11774
  for="${this._field.name}"
11775
- class="${g(nu, this.hasError && "rtg-text-form-label-color-text-error", this.className)}"
11775
+ class="${m(nu, this.hasError && "rtg-text-form-label-color-text-error", this.className)}"
11776
11776
  ></label>
11777
11777
  `;
11778
11778
  }
@@ -11801,7 +11801,7 @@ var sd, Ss = class extends v {
11801
11801
  render() {
11802
11802
  return this.error ? d`<p
11803
11803
  id="${this._field.name}-message"
11804
- class="${g(au, this.className)}"
11804
+ class="${m(au, this.className)}"
11805
11805
  >
11806
11806
  ${this.error}
11807
11807
  </p>` : null;
@@ -11830,7 +11830,7 @@ var Cs = class extends _ {
11830
11830
  part="form-root"
11831
11831
  id="rtg-form"
11832
11832
  @submit=${this.handleSubmit}
11833
- class="${g(ru, this.className)}"
11833
+ class="${m(ru, this.className)}"
11834
11834
  ></form>
11835
11835
  `;
11836
11836
  }
@@ -11882,7 +11882,7 @@ var ba = {
11882
11882
  <div
11883
11883
  id="rtg-hover-card-content"
11884
11884
  part="hover-card-content"
11885
- class=${g(ba.content, this.className)}
11885
+ class=${m(ba.content, this.className)}
11886
11886
  style="display: ${this.isOpen ? "block" : "none"};"
11887
11887
  ></div>
11888
11888
  `;
@@ -11907,7 +11907,7 @@ var od = class extends _ {
11907
11907
  <div
11908
11908
  id="rtg-hover-card-trigger"
11909
11909
  part="rtg-hover-card-trigger"
11910
- class=${g(ba.trigger, this.className)}
11910
+ class=${m(ba.trigger, this.className)}
11911
11911
  >
11912
11912
  ${Array.from(this.children)}
11913
11913
  </div>
@@ -11965,7 +11965,7 @@ var kn = class extends _ {
11965
11965
  <div
11966
11966
  id="rtg-hover-card-container"
11967
11967
  part="hover-card"
11968
- class=${g(ba.root, this.className)}
11968
+ class=${m(ba.root, this.className)}
11969
11969
  ></div>
11970
11970
  `;
11971
11971
  }
@@ -12082,27 +12082,27 @@ var tt = class extends v {
12082
12082
  return d`
12083
12083
  <input
12084
12084
  data-slot="input"
12085
- accept=${this.type === "file" && this.accept ? this.accept : m}
12086
- autocomplete=${this.autocomplete ?? m}
12085
+ accept=${this.type === "file" && this.accept ? this.accept : g}
12086
+ autocomplete=${this.autocomplete ?? g}
12087
12087
  ?disabled=${this.disabled}
12088
- form=${this.form ?? m}
12089
- id=${this._inputId && this._inputId !== "" ? this._inputId : m}
12090
- max=${this.max ?? m}
12091
- maxlength=${this.maxlength ?? m}
12092
- min=${this.min ?? m}
12093
- minlength=${this.minlength ?? m}
12094
- multiple=${this.multiple ?? m}
12095
- name=${this.name ?? m}
12096
- pattern=${this.max ?? m}
12097
- placeholder=${this.placeholder ?? m}
12088
+ form=${this.form ?? g}
12089
+ id=${this._inputId && this._inputId !== "" ? this._inputId : g}
12090
+ max=${this.max ?? g}
12091
+ maxlength=${this.maxlength ?? g}
12092
+ min=${this.min ?? g}
12093
+ minlength=${this.minlength ?? g}
12094
+ multiple=${this.multiple ?? g}
12095
+ name=${this.name ?? g}
12096
+ pattern=${this.max ?? g}
12097
+ placeholder=${this.placeholder ?? g}
12098
12098
  ?readonly=${this.readonly}
12099
12099
  ?required=${this.required}
12100
- step=${this.step ?? m}
12100
+ step=${this.step ?? g}
12101
12101
  type=${this.type}
12102
- value=${this.value ?? m}
12103
- aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : m}
12104
- aria-label=${this.ariaLabel ?? m}
12105
- aria-required=${this.required ? "true" : m}
12102
+ value=${this.value ?? g}
12103
+ aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : g}
12104
+ aria-label=${this.ariaLabel ?? g}
12105
+ aria-required=${this.required ? "true" : g}
12106
12106
  @click=${this._onClick}
12107
12107
  @input=${this._onInput}
12108
12108
  @change=${this._onChange}
@@ -12134,7 +12134,7 @@ var et = class extends v {
12134
12134
  .autocomplete=${this.autocomplete}
12135
12135
  ?disabled=${this.disabled}
12136
12136
  .form=${this.form}
12137
- id=${this._inputId && this._inputId !== "" ? this._inputId : m}
12137
+ id=${this._inputId && this._inputId !== "" ? this._inputId : g}
12138
12138
  ?invalid=${this.invalid}
12139
12139
  .max=${this.max}
12140
12140
  .maxlength=${this.maxlength}
@@ -12175,7 +12175,7 @@ var ad = class extends v {
12175
12175
  }
12176
12176
  };
12177
12177
  ad = l([u("rtg-input-group-text")], ad);
12178
- var mt = class extends v {
12178
+ var bt = class extends v {
12179
12179
  constructor(...t) {
12180
12180
  super(...t), this.id = "", this._onInput = (e) => {
12181
12181
  this.value = e.target.value, this.onInput && this.onInput(e);
@@ -12208,27 +12208,27 @@ var mt = class extends v {
12208
12208
  return d`
12209
12209
  <textarea
12210
12210
  data-slot="textarea"
12211
- autocapitalize=${this.autocapitalize ? this.autocapitalize : m}
12212
- autocomplete=${this.autocomplete ?? m}
12213
- autocorrect=${this.autocorrect ?? m}
12214
- autofocus=${this.autofocus ?? m}
12215
- cols=${this.cols ?? m}
12211
+ autocapitalize=${this.autocapitalize ? this.autocapitalize : g}
12212
+ autocomplete=${this.autocomplete ?? g}
12213
+ autocorrect=${this.autocorrect ?? g}
12214
+ autofocus=${this.autofocus ?? g}
12215
+ cols=${this.cols ?? g}
12216
12216
  ?disabled=${this.disabled}
12217
- form=${this.form ?? m}
12218
- id=${this._textareaId && this._textareaId !== "" ? this._textareaId : m}
12219
- maxlength=${this.maxlength ?? m}
12220
- minlength=${this.minlength ?? m}
12221
- name=${this.name ?? m}
12222
- placeholder=${this.placeholder ?? m}
12217
+ form=${this.form ?? g}
12218
+ id=${this._textareaId && this._textareaId !== "" ? this._textareaId : g}
12219
+ maxlength=${this.maxlength ?? g}
12220
+ minlength=${this.minlength ?? g}
12221
+ name=${this.name ?? g}
12222
+ placeholder=${this.placeholder ?? g}
12223
12223
  ?readonly=${this.readonly}
12224
12224
  ?required=${this.required}
12225
- rows=${this.rows ?? m}
12226
- spellcheck=${this.spellcheck ?? m}
12227
- wrap=${this.wrap ?? m}
12228
- value=${this.value ? this.value : m}
12229
- aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : m}
12230
- aria-label=${this.ariaLabel ?? m}
12231
- aria-required=${this.required ? "true" : m}
12225
+ rows=${this.rows ?? g}
12226
+ spellcheck=${this.spellcheck ?? g}
12227
+ wrap=${this.wrap ?? g}
12228
+ value=${this.value ? this.value : g}
12229
+ aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : g}
12230
+ aria-label=${this.ariaLabel ?? g}
12231
+ aria-required=${this.required ? "true" : g}
12232
12232
  @input=${this._onInput}
12233
12233
  @change=${this._onChange}
12234
12234
  @focus=${this._onFocus}
@@ -12237,8 +12237,8 @@ var mt = class extends v {
12237
12237
  `;
12238
12238
  }
12239
12239
  };
12240
- l([a({ type: String }), c("design:type", Object)], mt.prototype, "autocomplete", void 0), l([a({ type: Number }), c("design:type", Number)], mt.prototype, "cols", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], mt.prototype, "disabled", void 0), l([a({ type: String }), c("design:type", String)], mt.prototype, "form", void 0), l([a({ type: String }), c("design:type", Object)], mt.prototype, "id", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], mt.prototype, "invalid", void 0), l([a({ type: Number }), c("design:type", Number)], mt.prototype, "maxlength", void 0), l([a({ type: Number }), c("design:type", Number)], mt.prototype, "minlength", void 0), l([a({ type: String }), c("design:type", String)], mt.prototype, "name", void 0), l([a({ type: String }), c("design:type", String)], mt.prototype, "placeholder", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], mt.prototype, "readonly", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], mt.prototype, "required", void 0), l([a({ type: Number }), c("design:type", Number)], mt.prototype, "rows", void 0), l([a({ type: String }), c("design:type", Object)], mt.prototype, "wrap", void 0), l([a({ type: String }), c("design:type", String)], mt.prototype, "value", void 0), l([a({ attribute: !1 }), c("design:type", Function)], mt.prototype, "onInput", void 0), l([a({ attribute: !1 }), c("design:type", Function)], mt.prototype, "onChange", void 0), l([a({ attribute: !1 }), c("design:type", Function)], mt.prototype, "onFocus", void 0), l([a({ attribute: !1 }), c("design:type", Function)], mt.prototype, "onBlur", void 0), mt = l([u("rtg-textarea")], mt);
12241
- var bt = class extends v {
12240
+ l([a({ type: String }), c("design:type", Object)], bt.prototype, "autocomplete", void 0), l([a({ type: Number }), c("design:type", Number)], bt.prototype, "cols", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], bt.prototype, "disabled", void 0), l([a({ type: String }), c("design:type", String)], bt.prototype, "form", void 0), l([a({ type: String }), c("design:type", Object)], bt.prototype, "id", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], bt.prototype, "invalid", void 0), l([a({ type: Number }), c("design:type", Number)], bt.prototype, "maxlength", void 0), l([a({ type: Number }), c("design:type", Number)], bt.prototype, "minlength", void 0), l([a({ type: String }), c("design:type", String)], bt.prototype, "name", void 0), l([a({ type: String }), c("design:type", String)], bt.prototype, "placeholder", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], bt.prototype, "readonly", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], bt.prototype, "required", void 0), l([a({ type: Number }), c("design:type", Number)], bt.prototype, "rows", void 0), l([a({ type: String }), c("design:type", Object)], bt.prototype, "wrap", void 0), l([a({ type: String }), c("design:type", String)], bt.prototype, "value", void 0), l([a({ attribute: !1 }), c("design:type", Function)], bt.prototype, "onInput", void 0), l([a({ attribute: !1 }), c("design:type", Function)], bt.prototype, "onChange", void 0), l([a({ attribute: !1 }), c("design:type", Function)], bt.prototype, "onFocus", void 0), l([a({ attribute: !1 }), c("design:type", Function)], bt.prototype, "onBlur", void 0), bt = l([u("rtg-textarea")], bt);
12241
+ var ft = class extends v {
12242
12242
  constructor(...t) {
12243
12243
  super(...t), this.id = "";
12244
12244
  }
@@ -12255,25 +12255,25 @@ var bt = class extends v {
12255
12255
  return d`
12256
12256
  <rtg-textarea
12257
12257
  data-slot="input-group-textarea"
12258
- autocapitalize=${this.autocapitalize ? this.autocapitalize : m}
12259
- autocomplete=${this.autocomplete ?? m}
12260
- autocorrect=${this.autocorrect ?? m}
12261
- autofocus=${this.autofocus ?? m}
12262
- cols=${this.cols ?? m}
12258
+ autocapitalize=${this.autocapitalize ? this.autocapitalize : g}
12259
+ autocomplete=${this.autocomplete ?? g}
12260
+ autocorrect=${this.autocorrect ?? g}
12261
+ autofocus=${this.autofocus ?? g}
12262
+ cols=${this.cols ?? g}
12263
12263
  ?disabled=${this.disabled}
12264
- form=${this.form ?? m}
12265
- id=${this._textareaId && this._textareaId !== "" ? this._textareaId : m}
12264
+ form=${this.form ?? g}
12265
+ id=${this._textareaId && this._textareaId !== "" ? this._textareaId : g}
12266
12266
  ?invalid=${this.invalid}
12267
- maxlength=${this.maxlength ?? m}
12268
- minlength=${this.minlength ?? m}
12269
- name=${this.name ?? m}
12270
- placeholder=${this.placeholder ?? m}
12267
+ maxlength=${this.maxlength ?? g}
12268
+ minlength=${this.minlength ?? g}
12269
+ name=${this.name ?? g}
12270
+ placeholder=${this.placeholder ?? g}
12271
12271
  ?readonly=${this.readonly}
12272
12272
  ?required=${this.required}
12273
- rows=${this.rows ?? m}
12274
- spellcheck=${this.spellcheck ?? m}
12275
- wrap=${this.wrap ?? m}
12276
- value=${this.value ? this.value : m}
12273
+ rows=${this.rows ?? g}
12274
+ spellcheck=${this.spellcheck ?? g}
12275
+ wrap=${this.wrap ?? g}
12276
+ value=${this.value ? this.value : g}
12277
12277
  .oninput=${this.onInput}
12278
12278
  .onchange=${this.onChange}
12279
12279
  .onfocus=${this.onFocus}
@@ -12282,8 +12282,8 @@ var bt = class extends v {
12282
12282
  `;
12283
12283
  }
12284
12284
  };
12285
- l([a({ type: String }), c("design:type", Object)], bt.prototype, "autocomplete", void 0), l([a({ type: Number }), c("design:type", Number)], bt.prototype, "cols", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], bt.prototype, "disabled", void 0), l([a({ type: String }), c("design:type", String)], bt.prototype, "form", void 0), l([a({ type: String }), c("design:type", Object)], bt.prototype, "id", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], bt.prototype, "invalid", void 0), l([a({ type: Number }), c("design:type", Number)], bt.prototype, "maxlength", void 0), l([a({ type: Number }), c("design:type", Number)], bt.prototype, "minlength", void 0), l([a({ type: String }), c("design:type", String)], bt.prototype, "name", void 0), l([a({ type: String }), c("design:type", String)], bt.prototype, "placeholder", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], bt.prototype, "readonly", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], bt.prototype, "required", void 0), l([a({ type: Number }), c("design:type", Number)], bt.prototype, "rows", void 0), l([a({ type: String }), c("design:type", Object)], bt.prototype, "wrap", void 0), l([a({ type: String }), c("design:type", String)], bt.prototype, "value", void 0), l([a({ attribute: !1 }), c("design:type", Function)], bt.prototype, "onInput", void 0), l([a({ attribute: !1 }), c("design:type", Function)], bt.prototype, "onChange", void 0), l([a({ attribute: !1 }), c("design:type", Function)], bt.prototype, "onFocus", void 0), l([a({ attribute: !1 }), c("design:type", Function)], bt.prototype, "onBlur", void 0), bt = l([u("rtg-input-group-textarea")], bt);
12286
- var ht = class extends v {
12285
+ l([a({ type: String }), c("design:type", Object)], ft.prototype, "autocomplete", void 0), l([a({ type: Number }), c("design:type", Number)], ft.prototype, "cols", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], ft.prototype, "disabled", void 0), l([a({ type: String }), c("design:type", String)], ft.prototype, "form", void 0), l([a({ type: String }), c("design:type", Object)], ft.prototype, "id", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], ft.prototype, "invalid", void 0), l([a({ type: Number }), c("design:type", Number)], ft.prototype, "maxlength", void 0), l([a({ type: Number }), c("design:type", Number)], ft.prototype, "minlength", void 0), l([a({ type: String }), c("design:type", String)], ft.prototype, "name", void 0), l([a({ type: String }), c("design:type", String)], ft.prototype, "placeholder", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], ft.prototype, "readonly", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], ft.prototype, "required", void 0), l([a({ type: Number }), c("design:type", Number)], ft.prototype, "rows", void 0), l([a({ type: String }), c("design:type", Object)], ft.prototype, "wrap", void 0), l([a({ type: String }), c("design:type", String)], ft.prototype, "value", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ft.prototype, "onInput", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ft.prototype, "onChange", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ft.prototype, "onFocus", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ft.prototype, "onBlur", void 0), ft = l([u("rtg-input-group-textarea")], ft);
12286
+ var pt = class extends v {
12287
12287
  constructor() {
12288
12288
  super(), this.autocomplete = "one-time-code", this.id = "", this.inputmode = "numeric", this._activeSlot = null, this._hasFocus = !1, this._value = "", this._children = [], this._handleBlur = (t) => {
12289
12289
  var e;
@@ -12411,15 +12411,15 @@ var ht = class extends v {
12411
12411
  data-slot="input-otp"
12412
12412
  autocomplete=${this.autocomplete}
12413
12413
  ?disabled=${this.disabled}
12414
- form=${this.form ?? m}
12415
- id=${this._inputId && this._inputId !== "" ? this._inputId : m}
12414
+ form=${this.form ?? g}
12415
+ id=${this._inputId && this._inputId !== "" ? this._inputId : g}
12416
12416
  inputmode=${this.inputmode}
12417
12417
  maxlength=${this.maxlength}
12418
- name=${this.name ?? m}
12419
- pattern=${this.pattern ?? m}
12418
+ name=${this.name ?? g}
12419
+ pattern=${this.pattern ?? g}
12420
12420
  ?required=${this.required}
12421
12421
  spellcheck="false"
12422
- value=${this._currentValue ?? m}
12422
+ value=${this._currentValue ?? g}
12423
12423
  @blur=${this._handleBlur}
12424
12424
  @focus=${this._handleFocus}
12425
12425
  @keydown=${this._handleKeyDown}
@@ -12430,10 +12430,10 @@ var ht = class extends v {
12430
12430
  `;
12431
12431
  }
12432
12432
  };
12433
- l([a({ type: String }), c("design:type", Object)], ht.prototype, "autocomplete", void 0), l([a({
12433
+ l([a({ type: String }), c("design:type", Object)], pt.prototype, "autocomplete", void 0), l([a({
12434
12434
  attribute: "default-value",
12435
12435
  type: String
12436
- }), c("design:type", String)], ht.prototype, "defaultValue", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], ht.prototype, "disabled", void 0), l([a({ type: String }), c("design:type", String)], ht.prototype, "form", void 0), l([a({ type: String }), c("design:type", Object)], ht.prototype, "id", void 0), l([a({ type: String }), c("design:type", Object)], ht.prototype, "inputmode", void 0), l([a({ type: Number }), c("design:type", Number)], ht.prototype, "maxlength", void 0), l([a({ type: String }), c("design:type", String)], ht.prototype, "name", void 0), l([a({ type: String }), c("design:type", String)], ht.prototype, "pattern", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], ht.prototype, "required", void 0), l([a({ type: String }), c("design:type", String)], ht.prototype, "value", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ht.prototype, "onChange", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ht.prototype, "onComplete", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ht.prototype, "onBlur", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ht.prototype, "onFocus", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ht.prototype, "onPaste", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ht.prototype, "pasteTransformer", void 0), l([x(), c("design:type", Object)], ht.prototype, "_activeSlot", void 0), l([x(), c("design:type", Object)], ht.prototype, "_hasFocus", void 0), l([x(), c("design:type", Object)], ht.prototype, "_value", void 0), ht = l([u("rtg-input-otp"), c("design:paramtypes", [])], ht);
12436
+ }), c("design:type", String)], pt.prototype, "defaultValue", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], pt.prototype, "disabled", void 0), l([a({ type: String }), c("design:type", String)], pt.prototype, "form", void 0), l([a({ type: String }), c("design:type", Object)], pt.prototype, "id", void 0), l([a({ type: String }), c("design:type", Object)], pt.prototype, "inputmode", void 0), l([a({ type: Number }), c("design:type", Number)], pt.prototype, "maxlength", void 0), l([a({ type: String }), c("design:type", String)], pt.prototype, "name", void 0), l([a({ type: String }), c("design:type", String)], pt.prototype, "pattern", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], pt.prototype, "required", void 0), l([a({ type: String }), c("design:type", String)], pt.prototype, "value", void 0), l([a({ attribute: !1 }), c("design:type", Function)], pt.prototype, "onChange", void 0), l([a({ attribute: !1 }), c("design:type", Function)], pt.prototype, "onComplete", void 0), l([a({ attribute: !1 }), c("design:type", Function)], pt.prototype, "onBlur", void 0), l([a({ attribute: !1 }), c("design:type", Function)], pt.prototype, "onFocus", void 0), l([a({ attribute: !1 }), c("design:type", Function)], pt.prototype, "onPaste", void 0), l([a({ attribute: !1 }), c("design:type", Function)], pt.prototype, "pasteTransformer", void 0), l([x(), c("design:type", Object)], pt.prototype, "_activeSlot", void 0), l([x(), c("design:type", Object)], pt.prototype, "_hasFocus", void 0), l([x(), c("design:type", Object)], pt.prototype, "_value", void 0), pt = l([u("rtg-input-otp"), c("design:paramtypes", [])], pt);
12437
12437
  var ld = class extends v {
12438
12438
  createRenderRoot() {
12439
12439
  return this;
@@ -12469,7 +12469,7 @@ var Rs = class extends v {
12469
12469
  return d`
12470
12470
  <div
12471
12471
  data-slot="input-otp-slot"
12472
- aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : m}
12472
+ aria-invalid=${this.invalid || this.ariaInvalid === "true" ? "true" : g}
12473
12473
  @click=${this._handleClick}
12474
12474
  ></div>
12475
12475
  `;
@@ -12510,7 +12510,7 @@ var si = class extends v {
12510
12510
  data-variant="${this.variant}"
12511
12511
  data-size="${this.size}"
12512
12512
  href="${this.href}"
12513
- target="${this.target ?? m}"
12513
+ target="${this.target ?? g}"
12514
12514
  ></a>
12515
12515
  ` : d`
12516
12516
  <div
@@ -12843,7 +12843,7 @@ var Lt = {
12843
12843
  return d`
12844
12844
  <div
12845
12845
  part="menubar-checkbox-item"
12846
- class=${g(Lt.checkboxItem.base, this.disabled && "rtg-opacity-menubar-item-opacity-disabled rtg-pointer-events-none", this.className)}
12846
+ class=${m(Lt.checkboxItem.base, this.disabled && "rtg-opacity-menubar-item-opacity-disabled rtg-pointer-events-none", this.className)}
12847
12847
  @click=${this.toggleChecked}
12848
12848
  @mouseover="${this.handleMouseEvent}"
12849
12849
  @mouseleave="${this.handleMouseEvent}"
@@ -12856,7 +12856,7 @@ var Lt = {
12856
12856
  id="${this.identifier}"
12857
12857
  aria-hidden="${this.hidden}"
12858
12858
  >
12859
- <span class=${g(Lt.checkboxItem.indicator)}>
12859
+ <span class=${m(Lt.checkboxItem.indicator)}>
12860
12860
  ${this.checked ? d`
12861
12861
  <svg
12862
12862
  xmlns="http://www.w3.org/2000/svg"
@@ -12868,11 +12868,11 @@ var Lt = {
12868
12868
  stroke-width="2"
12869
12869
  stroke-linecap="round"
12870
12870
  stroke-linejoin="round"
12871
- class=${g(Lt.checkboxItem.icon, "lucide lucide-check-icon lucide-check")}
12871
+ class=${m(Lt.checkboxItem.icon, "lucide lucide-check-icon lucide-check")}
12872
12872
  >
12873
12873
  <path d="M20 6 9 17l-5-5" />
12874
12874
  </svg>
12875
- ` : m}
12875
+ ` : g}
12876
12876
  </span>
12877
12877
  </div>
12878
12878
  `;
@@ -12982,7 +12982,7 @@ var Ye = class extends _ {
12982
12982
  }
12983
12983
  render() {
12984
12984
  return d`
12985
- <div class=${g(Lt.menu, this.className)}>
12985
+ <div class=${m(Lt.menu, this.className)}>
12986
12986
  <div
12987
12987
  id="${this.id}"
12988
12988
  data-state="${this.isOpen}"
@@ -13043,7 +13043,7 @@ var oi = class extends _ {
13043
13043
  render() {
13044
13044
  return d`
13045
13045
  <div
13046
- class=${g(Lt.content, this.className)}
13046
+ class=${m(Lt.content, this.className)}
13047
13047
  id="${this.id}"
13048
13048
  data-side="${this.side}"
13049
13049
  data-align="start"
@@ -13085,15 +13085,15 @@ var qs, Lr, Li = (Lr = class extends _ {
13085
13085
  return e ? this._id = `${e.getAttribute("id")}g${qs._counter++}` : this._id = `rtgcmdrxlxg${qs._counter++}`, this._id;
13086
13086
  }
13087
13087
  render() {
13088
- return d`${this._hidden === "true" ? m : d`
13088
+ return d`${this._hidden === "true" ? g : d`
13089
13089
  <div
13090
- class=${g(Lt.group, this.className)}
13090
+ class=${m(Lt.group, this.className)}
13091
13091
  id="${this.identifier}"
13092
13092
  role="presentation"
13093
13093
  part="menubar-group"
13094
13094
  >
13095
13095
  <div
13096
- class=${g(Lt.label)}
13096
+ class=${m(Lt.label)}
13097
13097
  id="${this.identifier}h"
13098
13098
  aria-hidden="true"
13099
13099
  >
@@ -13146,10 +13146,10 @@ var Vs, Pr, _r = (Pr = class extends _ {
13146
13146
  (e.type === "mouseover" || e.type === "focus") && (this.selected = !0), e.type === "mouseleave" && (this.selected = !1);
13147
13147
  }
13148
13148
  render() {
13149
- return d` ${this._hidden === "true" ? m : d`
13149
+ return d` ${this._hidden === "true" ? g : d`
13150
13150
  <div
13151
13151
  part="menubar-item"
13152
- class=${g(Lt.item, this.disabled && "rtg-opacity-menubar-item-opacity-disabled rtg-pointer-events-none", this.className)}
13152
+ class=${m(Lt.item, this.disabled && "rtg-opacity-menubar-item-opacity-disabled rtg-pointer-events-none", this.className)}
13153
13153
  @mouseover="${this.handleMouseEvent}"
13154
13154
  @mouseleave="${this.handleMouseEvent}"
13155
13155
  @focus="${this.handleMouseEvent}"
@@ -13213,7 +13213,7 @@ var Hs, Nr, Ve = (Nr = class extends _ {
13213
13213
  return d`
13214
13214
  <div
13215
13215
  part="menubar-radio-item"
13216
- class=${g(Lt.radioItem.base, this.disabled && "rtg-opacity-menubar-item-opacity-disabled rtg-pointer-events-none", this.className)}
13216
+ class=${m(Lt.radioItem.base, this.disabled && "rtg-opacity-menubar-item-opacity-disabled rtg-pointer-events-none", this.className)}
13217
13217
  @click=${this.toggleChecked}
13218
13218
  @mouseover="${this.handleMouseEvent}"
13219
13219
  @mouseleave="${this.handleMouseEvent}"
@@ -13226,7 +13226,7 @@ var Hs, Nr, Ve = (Nr = class extends _ {
13226
13226
  id="${this.identifier}"
13227
13227
  aria-hidden="${this.hidden}"
13228
13228
  >
13229
- <span class=${g(Lt.radioItem.indicator)}>
13229
+ <span class=${m(Lt.radioItem.indicator)}>
13230
13230
  ${this.checked ? d`<svg
13231
13231
  xmlns="http://www.w3.org/2000/svg"
13232
13232
  width="24"
@@ -13237,10 +13237,10 @@ var Hs, Nr, Ve = (Nr = class extends _ {
13237
13237
  stroke-width="2"
13238
13238
  stroke-linecap="round"
13239
13239
  stroke-linejoin="round"
13240
- class=${g(Lt.radioItem.icon, "lucide lucide-circle-icon lucide-circle")}
13240
+ class=${m(Lt.radioItem.icon, "lucide lucide-circle-icon lucide-circle")}
13241
13241
  >
13242
13242
  <circle cx="12" cy="12" r="10" />
13243
- </svg>` : m}
13243
+ </svg>` : g}
13244
13244
  </span>
13245
13245
  </div>
13246
13246
  `;
@@ -13280,9 +13280,9 @@ var Gs, zr, Os = (zr = class extends _ {
13280
13280
  this.moveLightDomChildrenInto(this._containerElement);
13281
13281
  }
13282
13282
  render() {
13283
- return d`${this._hidden === "true" ? m : d`
13283
+ return d`${this._hidden === "true" ? g : d`
13284
13284
  <div
13285
- class=${g(Lt.separator, this.className)}
13285
+ class=${m(Lt.separator, this.className)}
13286
13286
  id="${this.identifier}"
13287
13287
  role="separator"
13288
13288
  part="menubar-separator"
@@ -13303,7 +13303,7 @@ var wd = class extends _ {
13303
13303
  return ["date-testid"];
13304
13304
  }
13305
13305
  createRenderRoot() {
13306
- return this.classList = g(Lt.shortcut), this;
13306
+ return this.classList = m(Lt.shortcut), this;
13307
13307
  }
13308
13308
  firstUpdated(t) {
13309
13309
  this.moveLightDomChildrenInto(this._containerElement);
@@ -13311,7 +13311,7 @@ var wd = class extends _ {
13311
13311
  render() {
13312
13312
  return d`
13313
13313
  <span
13314
- class=${g(Lt.shortcut, this.className)}
13314
+ class=${m(Lt.shortcut, this.className)}
13315
13315
  part="menubar-shortcut"
13316
13316
  >
13317
13317
  </span>
@@ -13335,7 +13335,7 @@ var _d = class extends _ {
13335
13335
  render() {
13336
13336
  return d`
13337
13337
  <button
13338
- class=${g(Lt.trigger, this.className)}
13338
+ class=${m(Lt.trigger, this.className)}
13339
13339
  type="button"
13340
13340
  role="menuitem"
13341
13341
  part="menubar-trigger"
@@ -13362,7 +13362,7 @@ var xd = class extends _ {
13362
13362
  <div
13363
13363
  role="menubar"
13364
13364
  part="menubar"
13365
- class=${g(Lt.root, this.className)}
13365
+ class=${m(Lt.root, this.className)}
13366
13366
  tabindex="0"
13367
13367
  data-orientation="horizontal"
13368
13368
  ></div>
@@ -13454,11 +13454,11 @@ var qr = {
13454
13454
  }
13455
13455
  render() {
13456
13456
  return d`
13457
- <div class="${g("relative", this.className)}">
13457
+ <div class="${m("relative", this.className)}">
13458
13458
  <ul
13459
13459
  part="navigation-menu-list"
13460
13460
  data-orientation="horizontal"
13461
- class=${g(qr.menuList)}
13461
+ class=${m(qr.menuList)}
13462
13462
  dir="ltr"
13463
13463
  ></ul>
13464
13464
  <div></div>
@@ -13527,10 +13527,10 @@ var Xe = class extends _ {
13527
13527
  @mouseenter="${this.handleHover}"
13528
13528
  @mouseleave="${this.handleMouseLeave}"
13529
13529
  part="navigation-menu-item"
13530
- class="${g("rtg-relative", this.className)}"
13530
+ class="${m("rtg-relative", this.className)}"
13531
13531
  >
13532
13532
  ${this.navigationLink ? d`<div
13533
- class=${g(qr.menuItem)}
13533
+ class=${m(qr.menuItem)}
13534
13534
  @click="${this.toggleMenubar}"
13535
13535
  >
13536
13536
  <div part="button-slot"></div>
@@ -13544,11 +13544,11 @@ var Xe = class extends _ {
13544
13544
  stroke-width="2"
13545
13545
  stroke-linecap="round"
13546
13546
  stroke-linejoin="round"
13547
- class=${g(qr.menuItemIcon, this.isOpen ? "rtg-rotate-180" : "")}
13547
+ class=${m(qr.menuItemIcon, this.isOpen ? "rtg-rotate-180" : "")}
13548
13548
  aria-hidden="true"
13549
13549
  >
13550
13550
  <path d="m6 9 6 6 6-6"></path>
13551
- </svg>` : m}
13551
+ </svg>` : g}
13552
13552
  </div>
13553
13553
  <div part="content-slot" style="position:absolute"></div>` : ""}
13554
13554
  </li>
@@ -13595,14 +13595,14 @@ var ni = class extends _ {
13595
13595
  render() {
13596
13596
  return d`
13597
13597
  <div
13598
- class="${g(qr.content, this.className)}"
13598
+ class="${m(qr.content, this.className)}"
13599
13599
  style="display: ${this.isOpen ? "block" : "none"};top:0px;left:0px;"
13600
13600
  part="navigation-menu-content"
13601
13601
  >
13602
13602
  <div
13603
13603
  data-state="${this.isOpen}"
13604
13604
  data-orientation="horizontal"
13605
- class="${g(qr.contentContainer, this.className)}"
13605
+ class="${m(qr.contentContainer, this.className)}"
13606
13606
  >
13607
13607
  <div
13608
13608
  id="${this.id}"
@@ -13637,7 +13637,7 @@ var On = class extends _ {
13637
13637
  return d`
13638
13638
  <a
13639
13639
  part="navigation-menu-link"
13640
- class="${g(qr.link, this.className)}"
13640
+ class="${m(qr.link, this.className)}"
13641
13641
  href="${this.href}"
13642
13642
  data-radix-collection-item=""
13643
13643
  data-tabindex=""
@@ -13663,7 +13663,7 @@ var Sd = class extends _ {
13663
13663
  }
13664
13664
  render() {
13665
13665
  return d`
13666
- <div part="navigation-menu-trigger" class="${g(this.className)}"></div>
13666
+ <div part="navigation-menu-trigger" class="${m(this.className)}"></div>
13667
13667
  `;
13668
13668
  }
13669
13669
  };
@@ -13684,7 +13684,7 @@ var Cd = class extends _ {
13684
13684
  aria-label="Main"
13685
13685
  data-orientation="horizontal"
13686
13686
  dir="ltr"
13687
- class="${g(qr.menu, this.className)}"
13687
+ class="${m(qr.menu, this.className)}"
13688
13688
  ></nav>
13689
13689
  `;
13690
13690
  }
@@ -13728,7 +13728,7 @@ var ge = {
13728
13728
  <ul
13729
13729
  data-slot="pagination-content"
13730
13730
  part="pagination-content"
13731
- class=${g(ge.content, this.className)}
13731
+ class=${m(ge.content, this.className)}
13732
13732
  ></ul>
13733
13733
  `;
13734
13734
  }
@@ -13750,7 +13750,7 @@ var kd = class extends _ {
13750
13750
  aria-hidden
13751
13751
  data-slot="pagination-ellipsis"
13752
13752
  part="pagination-ellipsis"
13753
- class=${g(ge.ellipsis.base, this.className)}
13753
+ class=${m(ge.ellipsis.base, this.className)}
13754
13754
  >
13755
13755
  <svg
13756
13756
  xmlns="http://www.w3.org/2000/svg"
@@ -13762,14 +13762,14 @@ var kd = class extends _ {
13762
13762
  stroke-width="2"
13763
13763
  stroke-linecap="round"
13764
13764
  stroke-linejoin="round"
13765
- class=${g(ge.ellipsis.icon, "lucide lucide-ellipsis-icon lucide-ellipsis")}
13765
+ class=${m(ge.ellipsis.icon, "lucide lucide-ellipsis-icon lucide-ellipsis")}
13766
13766
  >
13767
13767
  <circle cx="12" cy="12" r="1" />
13768
13768
  <circle cx="19" cy="12" r="1" />
13769
13769
  <circle cx="5" cy="12" r="1" />
13770
13770
  </svg>
13771
13771
 
13772
- <span class=${g(ge.ellipsis.span)}>More pages</span>
13772
+ <span class=${m(ge.ellipsis.span)}>More pages</span>
13773
13773
  </span>
13774
13774
  `;
13775
13775
  }
@@ -13800,7 +13800,7 @@ var Rd, Sr = class extends _ {
13800
13800
  part="pagination-link"
13801
13801
  id="${this.id}"
13802
13802
  href="${this.href}"
13803
- class=${g(ge.link({
13803
+ class=${m(ge.link({
13804
13804
  variant: this.isActive ? "outline" : "ghost",
13805
13805
  size: this.size
13806
13806
  }), this.className)}
@@ -13866,7 +13866,7 @@ var Is = class extends _ {
13866
13866
  <li
13867
13867
  data-slot="pagination-item"
13868
13868
  part="pagination-item"
13869
- class=${g(ge.item, this.className)}
13869
+ class=${m(ge.item, this.className)}
13870
13870
  @click="${this.handleClick}"
13871
13871
  ></li>
13872
13872
  `;
@@ -13892,9 +13892,9 @@ var In = class extends _ {
13892
13892
  aria-label="Go to next page"
13893
13893
  size="default"
13894
13894
  href=${this.href}
13895
- class=${g(ge.next.base, this.className)}
13895
+ class=${m(ge.next.base, this.className)}
13896
13896
  >
13897
- <span class=${g(ge.next.span)}>Next</span>
13897
+ <span class=${m(ge.next.span)}>Next</span>
13898
13898
 
13899
13899
  <svg
13900
13900
  xmlns="http://www.w3.org/2000/svg"
@@ -13936,7 +13936,7 @@ var An = class extends _ {
13936
13936
  aria-label="Go to previous page"
13937
13937
  size="default"
13938
13938
  href=${this.href}
13939
- class=${g(ge.previous.base, this.className)}
13939
+ class=${m(ge.previous.base, this.className)}
13940
13940
  >
13941
13941
  <svg
13942
13942
  xmlns="http://www.w3.org/2000/svg"
@@ -13953,7 +13953,7 @@ var An = class extends _ {
13953
13953
  <path d="m15 18-6-6 6-6" />
13954
13954
  </svg>
13955
13955
 
13956
- <span class=${g(ge.previous.span)}>Previous</span>
13956
+ <span class=${m(ge.previous.span)}>Previous</span>
13957
13957
 
13958
13958
  <div part="pagination-previous"></div>
13959
13959
  </rtg-pagination-link>
@@ -13978,13 +13978,13 @@ var Od = class extends _ {
13978
13978
  aria-label="pagination"
13979
13979
  data-slot="pagination"
13980
13980
  part="pagination"
13981
- class=${g(ge.root, this.className)}
13981
+ class=${m(ge.root, this.className)}
13982
13982
  ></nav>
13983
13983
  `;
13984
13984
  }
13985
13985
  };
13986
13986
  Od = l([u("rtg-pagination")], Od);
13987
- var ft = class extends v {
13987
+ var vt = class extends v {
13988
13988
  constructor(...t) {
13989
13989
  super(...t), this.id = "", this._showPassword = !1, this._handleToggle = () => {
13990
13990
  this._showPassword = !this._showPassword;
@@ -14055,7 +14055,7 @@ var ft = class extends v {
14055
14055
  .autocomplete=${this.autocomplete}
14056
14056
  ?disabled=${this.disabled}
14057
14057
  .form=${this.form}
14058
- id=${this._inputId && this._inputId !== "" ? this._inputId : m}
14058
+ id=${this._inputId && this._inputId !== "" ? this._inputId : g}
14059
14059
  ?invalid=${this.invalid}
14060
14060
  .maxlength=${this.maxlength}
14061
14061
  .minlength=${this.minlength}
@@ -14092,7 +14092,7 @@ var ft = class extends v {
14092
14092
  `;
14093
14093
  }
14094
14094
  };
14095
- l([a({ type: String }), c("design:type", Object)], ft.prototype, "autocomplete", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], ft.prototype, "disabled", void 0), l([a({ type: String }), c("design:type", String)], ft.prototype, "form", void 0), l([a({ type: String }), c("design:type", Object)], ft.prototype, "id", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], ft.prototype, "invalid", void 0), l([a({ type: Number }), c("design:type", Number)], ft.prototype, "maxlength", void 0), l([a({ type: Number }), c("design:type", Number)], ft.prototype, "minlength", void 0), l([a({ type: String }), c("design:type", String)], ft.prototype, "name", void 0), l([a({ type: String }), c("design:type", String)], ft.prototype, "pattern", void 0), l([a({ type: String }), c("design:type", String)], ft.prototype, "placeholder", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], ft.prototype, "readonly", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], ft.prototype, "required", void 0), l([a({ type: String }), c("design:type", String)], ft.prototype, "value", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ft.prototype, "onClick", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ft.prototype, "onInput", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ft.prototype, "onChange", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ft.prototype, "onFocus", void 0), l([a({ attribute: !1 }), c("design:type", Function)], ft.prototype, "onBlur", void 0), l([x(), c("design:type", Object)], ft.prototype, "_showPassword", void 0), ft = l([u("rtg-password-input")], ft);
14095
+ l([a({ type: String }), c("design:type", Object)], vt.prototype, "autocomplete", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], vt.prototype, "disabled", void 0), l([a({ type: String }), c("design:type", String)], vt.prototype, "form", void 0), l([a({ type: String }), c("design:type", Object)], vt.prototype, "id", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], vt.prototype, "invalid", void 0), l([a({ type: Number }), c("design:type", Number)], vt.prototype, "maxlength", void 0), l([a({ type: Number }), c("design:type", Number)], vt.prototype, "minlength", void 0), l([a({ type: String }), c("design:type", String)], vt.prototype, "name", void 0), l([a({ type: String }), c("design:type", String)], vt.prototype, "pattern", void 0), l([a({ type: String }), c("design:type", String)], vt.prototype, "placeholder", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], vt.prototype, "readonly", void 0), l([a({ type: Boolean }), c("design:type", Boolean)], vt.prototype, "required", void 0), l([a({ type: String }), c("design:type", String)], vt.prototype, "value", void 0), l([a({ attribute: !1 }), c("design:type", Function)], vt.prototype, "onClick", void 0), l([a({ attribute: !1 }), c("design:type", Function)], vt.prototype, "onInput", void 0), l([a({ attribute: !1 }), c("design:type", Function)], vt.prototype, "onChange", void 0), l([a({ attribute: !1 }), c("design:type", Function)], vt.prototype, "onFocus", void 0), l([a({ attribute: !1 }), c("design:type", Function)], vt.prototype, "onBlur", void 0), l([x(), c("design:type", Object)], vt.prototype, "_showPassword", void 0), vt = l([u("rtg-password-input")], vt);
14096
14096
  var Id = {
14097
14097
  root: [
14098
14098
  "rtg-relative rtg-overflow-hidden",
@@ -14123,12 +14123,12 @@ var Id = {
14123
14123
  role="progressbar"
14124
14124
  data-state="indeterminate"
14125
14125
  data-max="100"
14126
- class="${g(Id.root, this.className)}"
14126
+ class="${m(Id.root, this.className)}"
14127
14127
  >
14128
14128
  <div
14129
14129
  data-state="indeterminate"
14130
14130
  data-max="100"
14131
- class="${g(Id.indicator, this.className)}"
14131
+ class="${m(Id.indicator, this.className)}"
14132
14132
  style="transform: translateX(-${100 - (this.value || 0)}%);"
14133
14133
  ></div>
14134
14134
  </div>
@@ -14177,7 +14177,7 @@ var ji = {
14177
14177
  })));
14178
14178
  }
14179
14179
  createRenderRoot() {
14180
- return this.classList = g(ji.item.wrapper), this;
14180
+ return this.classList = m(ji.item.wrapper), this;
14181
14181
  }
14182
14182
  firstUpdated(t) {
14183
14183
  this.moveLightDomChildrenInto(this._containerElement);
@@ -14194,14 +14194,14 @@ var ji = {
14194
14194
  value="${this.value}"
14195
14195
  ?disabled=${this.disabled}
14196
14196
  @click="${this._onClick}"
14197
- class=${g(ji.item.item, this.className)}
14197
+ class=${m(ji.item.item, this.className)}
14198
14198
  id="${this.id}"
14199
14199
  tabindex="${this.tabindex}"
14200
14200
  >
14201
14201
  ${this.checked ? d`<span
14202
14202
  data-slot="radio-group-indicator"
14203
14203
  part="radio-group-indicator"
14204
- class=${g(ji.item.indicator)}
14204
+ class=${m(ji.item.indicator)}
14205
14205
  >
14206
14206
  <svg
14207
14207
  xmlns="http://www.w3.org/2000/svg"
@@ -14213,11 +14213,11 @@ var ji = {
14213
14213
  stroke-width="2"
14214
14214
  stroke-linecap="round"
14215
14215
  stroke-linejoin="round"
14216
- class=${g(ji.item.icon, "lucide lucide-circle-icon lucide-circle")}
14216
+ class=${m(ji.item.icon, "lucide lucide-circle-icon lucide-circle")}
14217
14217
  >
14218
14218
  <circle cx="12" cy="12" r="10" />
14219
14219
  </svg>
14220
- </span>` : m}
14220
+ </span>` : g}
14221
14221
  </button>
14222
14222
  `;
14223
14223
  }
@@ -14259,7 +14259,7 @@ var Ln = class extends _ {
14259
14259
  }), d`
14260
14260
  <div
14261
14261
  part="radio-group"
14262
- class=${g(ji.root, this.className)}
14262
+ class=${m(ji.root, this.className)}
14263
14263
  ></div>
14264
14264
  `;
14265
14265
  }
@@ -14281,7 +14281,7 @@ var cu = [
14281
14281
  <div
14282
14282
  dir="ltr"
14283
14283
  data-slot="scroll-area"
14284
- class=${g(cu, this.className)}
14284
+ class=${m(cu, this.className)}
14285
14285
  >
14286
14286
  <style>
14287
14287
  [data-radix-scroll-area-viewport] {
@@ -14517,12 +14517,12 @@ var hu = class {
14517
14517
  <div
14518
14518
  part="select-group"
14519
14519
  data-slot="select-content"
14520
- class="${g(me.content.content, this.className)}"
14520
+ class="${m(me.content.content, this.className)}"
14521
14521
  style=${"min-width: 128px; display: none;"}
14522
14522
  >
14523
14523
  <div
14524
14524
  part="select-viewport"
14525
- class=${g(me.content.viewport)}
14525
+ class=${m(me.content.viewport)}
14526
14526
  ></div>
14527
14527
  </div>
14528
14528
  `;
@@ -14578,7 +14578,7 @@ var He = class extends _ {
14578
14578
  ${Pt(this.getFilteredAttributes())}
14579
14579
  part="select-item"
14580
14580
  @click=${this.handleClick}
14581
- class=${g(me.item.item, this.className)}
14581
+ class=${m(me.item.item, this.className)}
14582
14582
  data-hs-select-value=${this.value}
14583
14583
  aria-selected="${this.isSelected}"
14584
14584
  data-selected="${this.isSelected}"
@@ -14586,7 +14586,7 @@ var He = class extends _ {
14586
14586
  ${this.isSelected ? d`
14587
14587
  <span
14588
14588
  part="select-item-indicator"
14589
- class=${g(me.item.indicator)}
14589
+ class=${m(me.item.indicator)}
14590
14590
  >
14591
14591
  <svg
14592
14592
  xmlns="http://www.w3.org/2000/svg"
@@ -14598,7 +14598,7 @@ var He = class extends _ {
14598
14598
  stroke-width="2"
14599
14599
  stroke-linecap="round"
14600
14600
  stroke-linejoin="round"
14601
- class=${g(me.item.icon, "lucide lucide-check-icon lucide-check")}
14601
+ class=${m(me.item.icon, "lucide lucide-check-icon lucide-check")}
14602
14602
  >
14603
14603
  <path d="M20 6 9 17l-5-5" />
14604
14604
  </svg>
@@ -14625,7 +14625,7 @@ var Td = class extends _ {
14625
14625
  return d`
14626
14626
  <div
14627
14627
  part="select-label"
14628
- class=${g(me.label, this.className)}
14628
+ class=${m(me.label, this.className)}
14629
14629
  ></div>
14630
14630
  `;
14631
14631
  }
@@ -14648,7 +14648,7 @@ var As = class extends _ {
14648
14648
  return d`
14649
14649
  <div
14650
14650
  part="select-list"
14651
- class="${g("rtg-absolute rtg-z-50 rtg-max-h-72 rtg-w-full rtg-overflow-hidden rtg-overflow-y-auto rtg-rounded-lg rtg-border rtg-border-input rtg-bg-background p-1 [&::-webkit-scrollbar-thumb]:rtg-rounded-full [&::-webkit-scrollbar-thumb]:rtg-bg-accent [&::-webkit-scrollbar-track]:rtg-bg-gray-100 [&::-webkit-scrollbar]:rtg-w-2", this.className)}"
14651
+ class="${m("rtg-absolute rtg-z-50 rtg-max-h-72 rtg-w-full rtg-overflow-hidden rtg-overflow-y-auto rtg-rounded-lg rtg-border rtg-border-input rtg-bg-background p-1 [&::-webkit-scrollbar-thumb]:rtg-rounded-full [&::-webkit-scrollbar-thumb]:rtg-bg-accent [&::-webkit-scrollbar-track]:rtg-bg-gray-100 [&::-webkit-scrollbar]:rtg-w-2", this.className)}"
14652
14652
  data-hs-combo-box-output=""
14653
14653
  data-state="${this.state}"
14654
14654
  style="display: ${this.isOpen ? "block" : "none"}; top:115%"
@@ -14673,7 +14673,7 @@ var Ts = class extends v {
14673
14673
  rtgcmd-separator
14674
14674
  part="select-separator"
14675
14675
  role="separator"
14676
- class=${g(me.separator, this.className)}
14676
+ class=${m(me.separator, this.className)}
14677
14677
  ></div>
14678
14678
  `;
14679
14679
  }
@@ -14735,7 +14735,7 @@ var Ld = class extends _ {
14735
14735
  type="button"
14736
14736
  part="select-trigger"
14737
14737
  role="tab"
14738
- class=${g(...this.filterConflictingWidthClasses(me.trigger.trigger, t), t)}
14738
+ class=${m(...this.filterConflictingWidthClasses(me.trigger.trigger, t), t)}
14739
14739
  tabindex="-1"
14740
14740
  data-orientation="horizontal"
14741
14741
  data-radix-collection-item=""
@@ -14754,7 +14754,7 @@ var Ld = class extends _ {
14754
14754
  stroke-width="2"
14755
14755
  stroke-linecap="round"
14756
14756
  stroke-linejoin="round"
14757
- class=${g(me.trigger.icon, "lucide lucide-chevron-down-icon lucide-chevron-down")}
14757
+ class=${m(me.trigger.icon, "lucide lucide-chevron-down-icon lucide-chevron-down")}
14758
14758
  >
14759
14759
  <path d="m6 9 6 6 6-6" />
14760
14760
  </svg>
@@ -14796,7 +14796,7 @@ var zn = class extends _ {
14796
14796
  }
14797
14797
  render() {
14798
14798
  return d`
14799
- <span part="select-value" class=${g(me.value, this.className)}>
14799
+ <span part="select-value" class=${m(me.value, this.className)}>
14800
14800
  ${this.renderLabel()}
14801
14801
  </span>
14802
14802
  `;
@@ -14828,7 +14828,7 @@ var fi = class extends _ {
14828
14828
  <div
14829
14829
  part="select"
14830
14830
  data-select-uuid=${this.uuid}
14831
- class=${g(me.root, this.className)}
14831
+ class=${m(me.root, this.className)}
14832
14832
  ></div>
14833
14833
  `;
14834
14834
  }
@@ -14839,7 +14839,7 @@ var pu = "rtg-bg-skeleton-color-bg rtg-animate-skeleton-animate rtg-rounded-skel
14839
14839
  return this;
14840
14840
  }
14841
14841
  render() {
14842
- return d` <div class=${g(pu, this.className)}></div> `;
14842
+ return d` <div class=${m(pu, this.className)}></div> `;
14843
14843
  }
14844
14844
  };
14845
14845
  Pd = l([u("rtg-skeleton")], Pd);
@@ -14962,12 +14962,12 @@ var Nd = {
14962
14962
  data-disabled=${this.disabled}
14963
14963
  data-state=${this.state}
14964
14964
  @click="${this._toggleChecked}"
14965
- class=${g(Nd.root, this.className)}
14965
+ class=${m(Nd.root, this.className)}
14966
14966
  >
14967
14967
  <div
14968
14968
  part="switch-thumb"
14969
14969
  data-state=${this.state}
14970
- class=${g(Nd.thumb)}
14970
+ class=${m(Nd.thumb)}
14971
14971
  ></div>
14972
14972
  </div>
14973
14973
  `;
@@ -15043,22 +15043,22 @@ var It = {
15043
15043
  render() {
15044
15044
  let t = this.columnKeys;
15045
15045
  return d`
15046
- <div class=${g(It.preview)}>
15047
- <div class=${g(It.container)}>
15048
- <table part="table" class=${g(It.table)}>
15046
+ <div class=${m(It.preview)}>
15047
+ <div class=${m(It.container)}>
15048
+ <table part="table" class=${m(It.table)}>
15049
15049
  ${this.captionText ? d`
15050
- <caption class=${g(It.caption)}>
15050
+ <caption class=${m(It.caption)}>
15051
15051
  ${this.captionText}
15052
15052
  </caption>
15053
15053
  ` : null}
15054
15054
 
15055
- <thead class=${g(It.head.root)}>
15056
- <tr class=${g(It.head.row)}>
15055
+ <thead class=${m(It.head.root)}>
15056
+ <tr class=${m(It.head.row)}>
15057
15057
  ${t.map((e, r, i) => {
15058
15058
  let s = r === i.length - 1;
15059
15059
  return d`
15060
15060
  <th
15061
- class=${g(It.head.cell.base, s ? It.head.cell.align.right : It.head.cell.align.left)}
15061
+ class=${m(It.head.cell.base, s ? It.head.cell.align.right : It.head.cell.align.left)}
15062
15062
  >
15063
15063
  ${this.capitalizeLabel(e)}
15064
15064
  </th>
@@ -15067,17 +15067,17 @@ var It = {
15067
15067
  </tr>
15068
15068
  </thead>
15069
15069
 
15070
- <tbody class=${g(It.body.root)}>
15070
+ <tbody class=${m(It.body.root)}>
15071
15071
  ${this.dataTable.map((e) => d`
15072
15072
  <tr
15073
15073
  data-id=${e.id ?? ""}
15074
- class=${g(It.body.row)}
15074
+ class=${m(It.body.row)}
15075
15075
  >
15076
15076
  ${t.map((r, i, s) => {
15077
15077
  let o = i === s.length - 1;
15078
15078
  return d`
15079
15079
  <td
15080
- class=${g(It.body.cell.base, o && It.body.cell.align.right)}
15080
+ class=${m(It.body.cell.base, o && It.body.cell.align.right)}
15081
15081
  >
15082
15082
  ${e[r] ?? ""}
15083
15083
  </td>
@@ -15088,13 +15088,13 @@ var It = {
15088
15088
  </tbody>
15089
15089
 
15090
15090
  ${this.footerData.length ? d`
15091
- <tfoot class=${g(It.footer.root)}>
15092
- <tr class=${g(It.footer.row)}>
15091
+ <tfoot class=${m(It.footer.root)}>
15092
+ <tr class=${m(It.footer.row)}>
15093
15093
  ${t.map((e, r, i) => {
15094
15094
  let s = r === i.length - 1, o = this.footerData.find((n) => n.key === e);
15095
15095
  return d`
15096
15096
  <td
15097
- class=${g(It.footer.cell.base, s && It.footer.cell.align.right)}
15097
+ class=${m(It.footer.cell.base, s && It.footer.cell.align.right)}
15098
15098
  >
15099
15099
  ${(o == null ? void 0 : o.value) ?? ""}
15100
15100
  </td>
@@ -15347,7 +15347,7 @@ var Yi = {
15347
15347
  part="toast-view-port"
15348
15348
  tabindex="-1"
15349
15349
  @click="${(e) => e.stopPropagation()}"
15350
- class="${g(Yi.viewportRoot, this.className, `${this.state === Ud ? "hidden" : "block"} `)}"
15350
+ class="${m(Yi.viewportRoot, this.className, `${this.state === Ud ? "hidden" : "block"} `)}"
15351
15351
  >
15352
15352
  <li
15353
15353
  part="toast-view-port-li"
@@ -15357,7 +15357,7 @@ var Yi = {
15357
15357
  tabindex="0"
15358
15358
  data-state="${this.state}"
15359
15359
  data-swipe-direction="right"
15360
- class="${g(Ks.toastVariants.base, Ks.toastVariants.variants[this.variant], this.className)}"
15360
+ class="${m(Ks.toastVariants.base, Ks.toastVariants.variants[this.variant], this.className)}"
15361
15361
  data-radix-collection-item=""
15362
15362
  style="user-select: none; touch-action: none;"
15363
15363
  ></li>
@@ -15399,7 +15399,7 @@ var Fd, Ws, Dr, Fn = (Dr = class extends _ {
15399
15399
  ${Pt(this.getFilteredAttributes())}
15400
15400
  part="toast-action"
15401
15401
  type="button"
15402
- class="${g(Ws.toastVariants.base, Ws.toastVariants.variants[this.variant], this.className, "rtg-w-max")}"
15402
+ class="${m(Ws.toastVariants.base, Ws.toastVariants.variants[this.variant], this.className, "rtg-w-max")}"
15403
15403
  ></button>
15404
15404
  `;
15405
15405
  }
@@ -15418,7 +15418,7 @@ var Md = class extends _ {
15418
15418
  render() {
15419
15419
  return d`
15420
15420
  <div
15421
- class="${g(Yi.description, this.className)}"
15421
+ class="${m(Yi.description, this.className)}"
15422
15422
  part="toast-description"
15423
15423
  >
15424
15424
  <slot></slot>
@@ -15441,7 +15441,7 @@ var Bd = class extends _ {
15441
15441
  return d`
15442
15442
  <div
15443
15443
  part="toast-title"
15444
- class="${g(Yi.title, this.className)}"
15444
+ class="${m(Yi.title, this.className)}"
15445
15445
  ></div>
15446
15446
  `;
15447
15447
  }
@@ -15473,7 +15473,7 @@ var qd = class extends _ {
15473
15473
  <div
15474
15474
  @click=${this.handleClick}
15475
15475
  part="toast-trigger"
15476
- class="${g(this.className)}"
15476
+ class="${m(this.className)}"
15477
15477
  ></div>
15478
15478
  `;
15479
15479
  }
@@ -15511,7 +15511,7 @@ var Ys = class extends _ {
15511
15511
  return this;
15512
15512
  }
15513
15513
  render() {
15514
- return d` <div class="${g("", this.className)}" part="toast"></div> `;
15514
+ return d` <div class="${m("", this.className)}" part="toast"></div> `;
15515
15515
  }
15516
15516
  };
15517
15517
  l([x(), c("design:type", Object)], Ys.prototype, "isOpen", void 0), Ys = l([u("rtg-toast")], Ys);
@@ -15584,7 +15584,7 @@ var Vr = /* @__PURE__ */ (function(t) {
15584
15584
  part="toggle-group-item"
15585
15585
  id=${this.id}
15586
15586
  type="button"
15587
- class="${g(Xn.toggleGroupVariants({
15587
+ class="${m(Xn.toggleGroupVariants({
15588
15588
  variant: this.variant,
15589
15589
  size: this.size,
15590
15590
  className: this.className
@@ -15645,7 +15645,7 @@ var Kd, Wd, Yd, Ne = class extends _ {
15645
15645
  part="toggle-group"
15646
15646
  role="group"
15647
15647
  ${Pt(t)}
15648
- class="${g(fu, this.className)}"
15648
+ class="${m(fu, this.className)}"
15649
15649
  ?disable="${this.disabled}"
15650
15650
  ></div>
15651
15651
  `;
@@ -15705,7 +15705,7 @@ var Vi = /* @__PURE__ */ (function(t) {
15705
15705
  <button
15706
15706
  type="button"
15707
15707
  part="toggle"
15708
- class="${g(Zn.toggleVariants({
15708
+ class="${m(Zn.toggleVariants({
15709
15709
  variant: this.variant,
15710
15710
  size: this.size,
15711
15711
  className: this.className
@@ -16224,7 +16224,7 @@ var xu = /* @__PURE__ */ Lc(((t) => {
16224
16224
  }
16225
16225
  var nt = Y.prototype = new J();
16226
16226
  nt.constructor = Y, T(nt, N.prototype), nt.isPureReactComponent = !0;
16227
- var ut = Array.isArray;
16227
+ var gt = Array.isArray;
16228
16228
  function jt() {
16229
16229
  }
16230
16230
  var H = {
@@ -16303,12 +16303,12 @@ var xu = /* @__PURE__ */ Lc(((t) => {
16303
16303
  return rt = f._init, te(rt(f._payload), $, B, M, W);
16304
16304
  }
16305
16305
  }
16306
- if (rt) return W = W(f), rt = M === "" ? "." + Ie(f, 0) : M, ut(W) ? (B = "", rt != null && (B = rt.replace(Qt, "$&/") + "/"), te(W, $, B, "", function(fh) {
16306
+ if (rt) return W = W(f), rt = M === "" ? "." + Ie(f, 0) : M, gt(W) ? (B = "", rt != null && (B = rt.replace(Qt, "$&/") + "/"), te(W, $, B, "", function(fh) {
16307
16307
  return fh;
16308
16308
  })) : W != null && (L(W) && (W = Oe(W, B + (W.key == null || f && f.key === W.key ? "" : ("" + W.key).replace(Qt, "$&/") + "/") + rt)), $.push(W)), 1;
16309
16309
  rt = 0;
16310
16310
  var _e = M === "" ? "." : M + ":";
16311
- if (ut(f)) for (var Ft = 0; Ft < f.length; Ft++) M = f[Ft], Q = _e + Ie(M, Ft), rt += te(M, $, B, Q, W);
16311
+ if (gt(f)) for (var Ft = 0; Ft < f.length; Ft++) M = f[Ft], Q = _e + Ie(M, Ft), rt += te(M, $, B, Q, W);
16312
16312
  else if (Ft = S(f), typeof Ft == "function") for (f = Ft.call(f), Ft = 0; !(M = f.next()).done; ) M = M.value, Q = _e + Ie(M, Ft++), rt += te(M, $, B, Q, W);
16313
16313
  else if (Q === "object") {
16314
16314
  if (typeof f.then == "function") return te(ce(f), $, B, M, W);
@@ -16349,7 +16349,7 @@ var xu = /* @__PURE__ */ Lc(((t) => {
16349
16349
  return;
16350
16350
  }
16351
16351
  console.error(f);
16352
- }, gt = {
16352
+ }, mt = {
16353
16353
  map: ee,
16354
16354
  forEach: function(f, $, B) {
16355
16355
  ee(f, function() {
@@ -16372,7 +16372,7 @@ var xu = /* @__PURE__ */ Lc(((t) => {
16372
16372
  return f;
16373
16373
  }
16374
16374
  };
16375
- t.Activity = E, t.Children = gt, t.Component = N, t.Fragment = i, t.Profiler = o, t.PureComponent = Y, t.StrictMode = s, t.Suspense = b, t.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = H, t.__COMPILER_RUNTIME = {
16375
+ t.Activity = E, t.Children = mt, t.Component = N, t.Fragment = i, t.Profiler = o, t.PureComponent = Y, t.StrictMode = s, t.Suspense = b, t.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE = H, t.__COMPILER_RUNTIME = {
16376
16376
  __proto__: null,
16377
16377
  c: function(f) {
16378
16378
  return H.H.useMemoCache(f);
@@ -16855,7 +16855,7 @@ const st = (t) => {
16855
16855
  // I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
16856
16856
  tg.test(t) && !eg.test(t)
16857
16857
  ), ah = () => !1, pg = (t) => rg.test(t), ug = (t) => ig.test(t), gg = () => {
16858
- const t = st("colors"), e = st("spacing"), r = st("blur"), i = st("brightness"), s = st("borderColor"), o = st("borderRadius"), n = st("borderSpacing"), h = st("borderWidth"), p = st("contrast"), b = st("grayscale"), y = st("hueRotate"), w = st("invert"), E = st("gap"), C = st("gradientColorStops"), S = st("gradientColorStopPositions"), k = st("inset"), T = st("margin"), I = st("opacity"), N = st("padding"), J = st("saturate"), Y = st("scale"), nt = st("sepia"), ut = st("skew"), jt = st("space"), H = st("translate"), Yt = () => ["auto", "contain", "none"], de = () => ["auto", "hidden", "clip", "visible", "scroll"], Oe = () => ["auto", V, e], L = () => [V, e], hr = () => ["", Pe, Ke], Qt = () => ["auto", gi, V], Ie = () => ["bottom", "center", "left", "left-bottom", "left-top", "right", "right-bottom", "right-top", "top"], ce = () => ["solid", "dashed", "dotted", "double", "none"], te = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], ee = () => ["start", "end", "center", "between", "around", "evenly", "stretch"], Xt = () => ["", "0", V], Ue = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], gt = () => [gi, V];
16858
+ const t = st("colors"), e = st("spacing"), r = st("blur"), i = st("brightness"), s = st("borderColor"), o = st("borderRadius"), n = st("borderSpacing"), h = st("borderWidth"), p = st("contrast"), b = st("grayscale"), y = st("hueRotate"), w = st("invert"), E = st("gap"), C = st("gradientColorStops"), S = st("gradientColorStopPositions"), k = st("inset"), T = st("margin"), I = st("opacity"), N = st("padding"), J = st("saturate"), Y = st("scale"), nt = st("sepia"), gt = st("skew"), jt = st("space"), H = st("translate"), Yt = () => ["auto", "contain", "none"], de = () => ["auto", "hidden", "clip", "visible", "scroll"], Oe = () => ["auto", V, e], L = () => [V, e], hr = () => ["", Pe, Ke], Qt = () => ["auto", gi, V], Ie = () => ["bottom", "center", "left", "left-bottom", "left-top", "right", "right-bottom", "right-top", "top"], ce = () => ["solid", "dashed", "dotted", "double", "none"], te = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], ee = () => ["start", "end", "center", "between", "around", "evenly", "stretch"], Xt = () => ["", "0", V], Ue = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], mt = () => [gi, V];
16859
16859
  return {
16860
16860
  cacheSize: 500,
16861
16861
  separator: ":",
@@ -16863,26 +16863,26 @@ const st = (t) => {
16863
16863
  colors: [zi],
16864
16864
  spacing: [Pe, Ke],
16865
16865
  blur: ["none", "", We, V],
16866
- brightness: gt(),
16866
+ brightness: mt(),
16867
16867
  borderColor: [t],
16868
16868
  borderRadius: ["none", "", "full", We, V],
16869
16869
  borderSpacing: L(),
16870
16870
  borderWidth: hr(),
16871
- contrast: gt(),
16871
+ contrast: mt(),
16872
16872
  grayscale: Xt(),
16873
- hueRotate: gt(),
16873
+ hueRotate: mt(),
16874
16874
  invert: Xt(),
16875
16875
  gap: L(),
16876
16876
  gradientColorStops: [t],
16877
16877
  gradientColorStopPositions: [sg, Ke],
16878
16878
  inset: Oe(),
16879
16879
  margin: Oe(),
16880
- opacity: gt(),
16880
+ opacity: mt(),
16881
16881
  padding: L(),
16882
- saturate: gt(),
16883
- scale: gt(),
16882
+ saturate: mt(),
16883
+ scale: mt(),
16884
16884
  sepia: Xt(),
16885
- skew: gt(),
16885
+ skew: mt(),
16886
16886
  space: L(),
16887
16887
  translate: L()
16888
16888
  },
@@ -18457,7 +18457,7 @@ const st = (t) => {
18457
18457
  * @see https://tailwindcss.com/docs/transition-duration
18458
18458
  */
18459
18459
  duration: [{
18460
- duration: gt()
18460
+ duration: mt()
18461
18461
  }],
18462
18462
  /**
18463
18463
  * Transition Timing Function
@@ -18471,7 +18471,7 @@ const st = (t) => {
18471
18471
  * @see https://tailwindcss.com/docs/transition-delay
18472
18472
  */
18473
18473
  delay: [{
18474
- delay: gt()
18474
+ delay: mt()
18475
18475
  }],
18476
18476
  /**
18477
18477
  * Animation
@@ -18535,14 +18535,14 @@ const st = (t) => {
18535
18535
  * @see https://tailwindcss.com/docs/skew
18536
18536
  */
18537
18537
  "skew-x": [{
18538
- "skew-x": [ut]
18538
+ "skew-x": [gt]
18539
18539
  }],
18540
18540
  /**
18541
18541
  * Skew Y
18542
18542
  * @see https://tailwindcss.com/docs/skew
18543
18543
  */
18544
18544
  "skew-y": [{
18545
- "skew-y": [ut]
18545
+ "skew-y": [gt]
18546
18546
  }],
18547
18547
  /**
18548
18548
  * Transform Origin
@@ -19163,19 +19163,19 @@ let Zi = class extends v {
19163
19163
  ), d`
19164
19164
  <rtg-button
19165
19165
  variant=${t}
19166
- size=${e ?? m}
19166
+ size=${e ?? g}
19167
19167
  type=${this.element.properties.submit ? "submit" : "button"}
19168
19168
  ?disabled=${this._disabled || this._loading}
19169
19169
  ?invalid=${r}
19170
- href=${i ?? m}
19171
- target=${s ?? m}
19170
+ href=${i ?? g}
19171
+ target=${s ?? g}
19172
19172
  class=${p}
19173
19173
  style=${R(y)}
19174
19174
  .onclick=${this._onClick}
19175
19175
  >
19176
- ${n === "start" ? this._renderIcon() : m}
19176
+ ${n === "start" ? this._renderIcon() : g}
19177
19177
  ${o}
19178
- ${n !== "start" ? this._renderIcon() : m}
19178
+ ${n !== "start" ? this._renderIcon() : g}
19179
19179
  </rtg-button>
19180
19180
  `;
19181
19181
  }
@@ -19624,10 +19624,10 @@ let ao = class extends v {
19624
19624
  const s = this.element.properties.variant || "digits_only";
19625
19625
  return io`
19626
19626
  <rtg-input-otp
19627
- id=${this.element.data_key ?? this.element.id ?? m}
19628
- name=${this.element.data_key ?? this.element.id ?? m}
19627
+ id=${this.element.data_key ?? this.element.id ?? g}
19628
+ name=${this.element.data_key ?? this.element.id ?? g}
19629
19629
  maxlength=${this.element.properties.length ?? 6}
19630
- pattern=${s === "digits_only" ? "\\d+" : m}
19630
+ pattern=${s === "digits_only" ? "\\d+" : g}
19631
19631
  .value=${this.element.data_key && this.component.formData[this.element.data_key] || ""}
19632
19632
  data-key=${this.element.data_key || ""}
19633
19633
  class=${t}
@@ -19694,8 +19694,8 @@ let lo = class extends v {
19694
19694
  ), d`
19695
19695
  <rtg-alert
19696
19696
  variant=${this.element.properties.variant ?? "destructive"}
19697
- class=${t ?? m}
19698
- style=${R(r) ?? m}
19697
+ class=${t ?? g}
19698
+ style=${R(r) ?? g}
19699
19699
  >
19700
19700
  ${this._renderIcon()}
19701
19701
  ${this._renderTitle()}
@@ -20072,7 +20072,7 @@ let uo = class extends v {
20072
20072
  renderChildren() {
20073
20073
  return this.element.properties.children ? this.element.properties.children.map(
20074
20074
  (t) => hh(this.component, t)
20075
- ) : m;
20075
+ ) : g;
20076
20076
  }
20077
20077
  render() {
20078
20078
  var s, o, n, h;
@@ -20427,8 +20427,8 @@ let mo = class extends v {
20427
20427
  id=${this._key}
20428
20428
  name=${this._key}
20429
20429
  type=${this.element.properties.type}
20430
- autocomplete=${this.element.properties.autocomplete ?? m}
20431
- placeholder=${this.element.properties.placeholder ?? m}
20430
+ autocomplete=${this.element.properties.autocomplete ?? g}
20431
+ placeholder=${this.element.properties.placeholder ?? g}
20432
20432
  value=${n}
20433
20433
  ?invalid=${this._invalid}
20434
20434
  data-key=${this.element.data_key || ""}
@@ -20480,9 +20480,9 @@ let bo = class extends v {
20480
20480
  ((p = (h = this.component.customizations) == null ? void 0 : h.config) == null ? void 0 : p.breakpoints) ?? kt
20481
20481
  ), d`
20482
20482
  <rtg-label
20483
- for=${this.element.properties.for ?? m}
20484
- class=${t ?? m}
20485
- style=${R(r) ?? m}
20483
+ for=${this.element.properties.for ?? g}
20484
+ class=${t ?? g}
20485
+ style=${R(r) ?? g}
20486
20486
  >
20487
20487
  ${this.element.properties.content}
20488
20488
  </rtg-label>
@@ -20627,7 +20627,7 @@ var bm = Object.defineProperty, fm = Object.getOwnPropertyDescriptor, Si = (t, e
20627
20627
  (n = t[o]) && (s = (i ? n(e, r, s) : n(s)) || s);
20628
20628
  return i && s && bm(e, r, s), s;
20629
20629
  };
20630
- let xt = class extends v {
20630
+ let $t = class extends v {
20631
20631
  constructor() {
20632
20632
  super(...arguments), this.seed = Nt(), this.variant = "default", this.content = { description: "Something went wrong." };
20633
20633
  }
@@ -20649,28 +20649,28 @@ let xt = class extends v {
20649
20649
  * derived from the component's part name and `seed`.
20650
20650
  */
20651
20651
  get rootId() {
20652
- return this.childId ?? `sb-${xt.parts.root}-${this.seed}`;
20652
+ return this.childId ?? `sb-${$t.parts.root}-${this.seed}`;
20653
20653
  }
20654
20654
  /**
20655
20655
  * The `id` of the spinner element, derived from `rootId` with the icon part
20656
20656
  * name appended.
20657
20657
  */
20658
20658
  get iconId() {
20659
- return `${this.rootId}-${xt._ICON}`;
20659
+ return `${this.rootId}-${$t._ICON}`;
20660
20660
  }
20661
20661
  /**
20662
20662
  * The `id` of the spinner element, derived from `rootId` with the title part
20663
20663
  * name appended.
20664
20664
  */
20665
20665
  get titleId() {
20666
- return `${this.rootId}-${xt._TITLE}`;
20666
+ return `${this.rootId}-${$t._TITLE}`;
20667
20667
  }
20668
20668
  /**
20669
20669
  * The `id` of the spinner element, derived from `rootId` with the description
20670
20670
  * part name appended.
20671
20671
  */
20672
20672
  get descriptionId() {
20673
- return `${this.rootId}-${xt._DESCRIPTION}`;
20673
+ return `${this.rootId}-${$t._DESCRIPTION}`;
20674
20674
  }
20675
20675
  /**
20676
20676
  * Uses the `variant` prop to derive the `variant` prop passed to `rtg-alert`.
@@ -20686,52 +20686,52 @@ let xt = class extends v {
20686
20686
  return d`
20687
20687
  <rtg-alert
20688
20688
  id="${this.rootId}"
20689
- part="${xt.parts.root}"
20689
+ part="${$t.parts.root}"
20690
20690
  variant="${this._variant}"
20691
20691
  >
20692
- ${t ? t(this.iconId, xt.parts.icon) : m}
20692
+ ${t ? t(this.iconId, $t.parts.icon) : g}
20693
20693
  ${e ? d`
20694
20694
  <rtg-alert-title
20695
20695
  id="${this.titleId}"
20696
- part="${xt.parts.title}"
20696
+ part="${$t.parts.title}"
20697
20697
  >
20698
20698
  ${e}
20699
20699
  </rtg-alert-title>
20700
- ` : m}
20700
+ ` : g}
20701
20701
  ${r ? d`
20702
20702
  <rtg-alert-description
20703
20703
  id="${this.descriptionId}"
20704
- part="${xt.parts.description}"
20704
+ part="${$t.parts.description}"
20705
20705
  >
20706
20706
  ${r}
20707
20707
  </rtg-alert-description>
20708
- ` : m}
20708
+ ` : g}
20709
20709
  </rtg-alert>
20710
20710
  `;
20711
20711
  }
20712
20712
  };
20713
- xt._ROOT = "error";
20714
- xt._ICON = "icon";
20715
- xt._TITLE = "title";
20716
- xt._DESCRIPTION = "description";
20713
+ $t._ROOT = "error";
20714
+ $t._ICON = "icon";
20715
+ $t._TITLE = "title";
20716
+ $t._DESCRIPTION = "description";
20717
20717
  Si([
20718
20718
  a({ type: String })
20719
- ], xt.prototype, "seed", 2);
20719
+ ], $t.prototype, "seed", 2);
20720
20720
  Si([
20721
20721
  a({ attribute: "child-id", type: String })
20722
- ], xt.prototype, "childId", 2);
20722
+ ], $t.prototype, "childId", 2);
20723
20723
  Si([
20724
20724
  a({ type: String })
20725
- ], xt.prototype, "variant", 2);
20725
+ ], $t.prototype, "variant", 2);
20726
20726
  Si([
20727
20727
  a({ type: Object })
20728
- ], xt.prototype, "content", 2);
20728
+ ], $t.prototype, "content", 2);
20729
20729
  Si([
20730
20730
  a({ type: String })
20731
- ], xt.prototype, "icon", 2);
20732
- xt = Si([
20731
+ ], $t.prototype, "icon", 2);
20732
+ $t = Si([
20733
20733
  u("sb-error")
20734
- ], xt);
20734
+ ], $t);
20735
20735
  var vm = Object.defineProperty, ym = Object.getOwnPropertyDescriptor, lt = (t, e, r, i) => {
20736
20736
  for (var s = i > 1 ? void 0 : i ? ym(e, r) : e, o = t.length - 1, n; o >= 0; o--)
20737
20737
  (n = t[o]) && (s = (i ? n(e, r, s) : n(s)) || s);
@@ -20936,7 +20936,7 @@ let A = class extends v {
20936
20936
  * mark will be prioritised and rendered instead of the asterisk.
20937
20937
  */
20938
20938
  _renderMark() {
20939
- return !this.mark && (!this.caret || !this.required) ? m : d`
20939
+ return !this.mark && (!this.caret || !this.required) ? g : d`
20940
20940
  <span
20941
20941
  id="${this.markId}"
20942
20942
  part="${A.parts.mark}"
@@ -20971,14 +20971,14 @@ let A = class extends v {
20971
20971
  >
20972
20972
  ${this.description}
20973
20973
  </rtg-field-description>
20974
- ` : m;
20974
+ ` : g;
20975
20975
  }
20976
20976
  /**
20977
20977
  * Returns the field error template with the `_errors` messages if the
20978
20978
  * `_invalid` state is `true`.
20979
20979
  */
20980
20980
  _renderError() {
20981
- if (!this._invalid) return m;
20981
+ if (!this._invalid) return g;
20982
20982
  const t = this._errors.map((e) => ({ message: e }));
20983
20983
  return d`
20984
20984
  <rtg-field-error
@@ -21012,9 +21012,9 @@ let A = class extends v {
21012
21012
  id="${this.inputId}"
21013
21013
  part="${A.parts.input}"
21014
21014
  name="${this.name}"
21015
- placeholder="${this.placeholder ?? m}"
21016
- minlength="${t ?? m}"
21017
- maxlength="${e ?? m}"
21015
+ placeholder="${this.placeholder ?? g}"
21016
+ minlength="${t ?? g}"
21017
+ maxlength="${e ?? g}"
21018
21018
  ?disabled="${this.disabled}"
21019
21019
  ?invalid=${this._invalid}
21020
21020
  ?required=${this.required}
@@ -21025,16 +21025,16 @@ let A = class extends v {
21025
21025
  part="${A.parts.input}"
21026
21026
  type="password"
21027
21027
  name="${this.name}"
21028
- placeholder="${this.placeholder ?? m}"
21029
- minlength="${t ?? m}"
21030
- maxlength="${e ?? m}"
21028
+ placeholder="${this.placeholder ?? g}"
21029
+ minlength="${t ?? g}"
21030
+ maxlength="${e ?? g}"
21031
21031
  ?disabled="${this.disabled}"
21032
21032
  ?invalid=${this._invalid}
21033
21033
  ?required=${this.required}
21034
21034
  ></rtg-input>
21035
21035
  `}
21036
21036
  ${this._renderError()}
21037
- ${this.content === "split" && !this._invalid ? this._renderDescription() : m}
21037
+ ${this.content === "split" && !this._invalid ? this._renderDescription() : g}
21038
21038
  </rtg-field>
21039
21039
  `;
21040
21040
  }
@@ -21125,7 +21125,7 @@ lt([
21125
21125
  A = lt([
21126
21126
  u("sb-password-field")
21127
21127
  ], A);
21128
- var wm = Object.defineProperty, _m = Object.getOwnPropertyDescriptor, wt = (t, e, r, i) => {
21128
+ var wm = Object.defineProperty, _m = Object.getOwnPropertyDescriptor, _t = (t, e, r, i) => {
21129
21129
  for (var s = i > 1 ? void 0 : i ? _m(e, r) : e, o = t.length - 1, n; o >= 0; o--)
21130
21130
  (n = t[o]) && (s = (i ? n(e, r, s) : n(s)) || s);
21131
21131
  return i && s && wm(e, r, s), s;
@@ -21312,7 +21312,7 @@ let z = class extends v {
21312
21312
  * mark will be prioritised and rendered instead of the asterisk.
21313
21313
  */
21314
21314
  _renderMark() {
21315
- return !this.mark && (!this.caret || !this.required) ? m : d`
21315
+ return !this.mark && (!this.caret || !this.required) ? g : d`
21316
21316
  <span
21317
21317
  id="${this.markId}"
21318
21318
  part="${z.parts.mark}"
@@ -21347,7 +21347,7 @@ let z = class extends v {
21347
21347
  >
21348
21348
  ${this.description}
21349
21349
  </rtg-field-description>
21350
- ` : m;
21350
+ ` : g;
21351
21351
  }
21352
21352
  /**
21353
21353
  * Returns the field error template with the `_error` message if the
@@ -21360,7 +21360,7 @@ let z = class extends v {
21360
21360
  part="${z.parts.error}"
21361
21361
  .errors="${[{ message: this._error }]}"
21362
21362
  ></rtg-field-error>
21363
- ` : m;
21363
+ ` : g;
21364
21364
  }
21365
21365
  render() {
21366
21366
  return d`
@@ -21385,7 +21385,7 @@ let z = class extends v {
21385
21385
  id="${this.inputId}"
21386
21386
  part="${z.parts.input}"
21387
21387
  name="${this.name}"
21388
- placeholder="${this.placeholder ?? m}"
21388
+ placeholder="${this.placeholder ?? g}"
21389
21389
  ?disabled="${this.disabled}"
21390
21390
  ?invalid=${this._invalid}
21391
21391
  ?required=${this.required}
@@ -21396,14 +21396,14 @@ let z = class extends v {
21396
21396
  part="${z.parts.input}"
21397
21397
  type="password"
21398
21398
  name="${this.name}"
21399
- placeholder="${this.placeholder ?? m}"
21399
+ placeholder="${this.placeholder ?? g}"
21400
21400
  ?disabled="${this.disabled}"
21401
21401
  ?invalid=${this._invalid}
21402
21402
  ?required=${this.required}
21403
21403
  ></rtg-input>
21404
21404
  `}
21405
21405
  ${this._renderError()}
21406
- ${this.content === "split" && !this._invalid ? this._renderDescription() : m}
21406
+ ${this.content === "split" && !this._invalid ? this._renderDescription() : g}
21407
21407
  </rtg-field>
21408
21408
  `;
21409
21409
  }
@@ -21416,64 +21416,64 @@ z._DESCRIPTION = "description";
21416
21416
  z._INPUT = "input";
21417
21417
  z._ERROR = "error";
21418
21418
  z.TAG = `sb-${z._ROOT}`;
21419
- wt([
21419
+ _t([
21420
21420
  a({ type: String })
21421
21421
  ], z.prototype, "seed", 2);
21422
- wt([
21422
+ _t([
21423
21423
  a({ attribute: "child-id", type: String })
21424
21424
  ], z.prototype, "childId", 2);
21425
- wt([
21425
+ _t([
21426
21426
  a({ attribute: "field-id", type: String })
21427
21427
  ], z.prototype, "fieldId", 2);
21428
- wt([
21428
+ _t([
21429
21429
  a({ type: String })
21430
21430
  ], z.prototype, "name", 2);
21431
- wt([
21431
+ _t([
21432
21432
  a({ type: String })
21433
21433
  ], z.prototype, "variant", 2);
21434
- wt([
21434
+ _t([
21435
21435
  a({ type: String })
21436
21436
  ], z.prototype, "content", 2);
21437
- wt([
21437
+ _t([
21438
21438
  a({ type: String })
21439
21439
  ], z.prototype, "pair", 2);
21440
- wt([
21440
+ _t([
21441
21441
  a({ type: String })
21442
21442
  ], z.prototype, "label", 2);
21443
- wt([
21443
+ _t([
21444
21444
  a({ type: String })
21445
21445
  ], z.prototype, "placeholder", 2);
21446
- wt([
21446
+ _t([
21447
21447
  a({ type: String })
21448
21448
  ], z.prototype, "description", 2);
21449
- wt([
21449
+ _t([
21450
21450
  a({ type: String })
21451
21451
  ], z.prototype, "mark", 2);
21452
- wt([
21452
+ _t([
21453
21453
  a({ type: Boolean })
21454
21454
  ], z.prototype, "caret", 2);
21455
- wt([
21455
+ _t([
21456
21456
  a({ type: Boolean })
21457
21457
  ], z.prototype, "disabled", 2);
21458
- wt([
21458
+ _t([
21459
21459
  a({ type: Boolean })
21460
21460
  ], z.prototype, "required", 2);
21461
- wt([
21461
+ _t([
21462
21462
  a({ attribute: "required-error", type: String })
21463
21463
  ], z.prototype, "requiredError", 2);
21464
- wt([
21464
+ _t([
21465
21465
  a({ attribute: "match-error", type: String })
21466
21466
  ], z.prototype, "matchError", 2);
21467
- wt([
21467
+ _t([
21468
21468
  x()
21469
21469
  ], z.prototype, "_invalid", 2);
21470
- wt([
21470
+ _t([
21471
21471
  x()
21472
21472
  ], z.prototype, "_error", 2);
21473
- wt([
21473
+ _t([
21474
21474
  x()
21475
21475
  ], z.prototype, "_value", 2);
21476
- z = wt([
21476
+ z = _t([
21477
21477
  u("sb-confirm-field")
21478
21478
  ], z);
21479
21479
  var xm = Object.defineProperty, $m = Object.getOwnPropertyDescriptor, Rt = (t, e, r, i) => {
@@ -21642,7 +21642,7 @@ let j = class extends v {
21642
21642
  * mark will be prioritised and rendered instead of the asterisk.
21643
21643
  */
21644
21644
  _renderMark() {
21645
- return !this.mark && (!this.caret || !this.required) ? m : d`
21645
+ return !this.mark && (!this.caret || !this.required) ? g : d`
21646
21646
  <span
21647
21647
  id="${this.markId}"
21648
21648
  part="${j.parts.mark}"
@@ -21677,7 +21677,7 @@ let j = class extends v {
21677
21677
  >
21678
21678
  ${this.description}
21679
21679
  </rtg-field-description>
21680
- ` : m;
21680
+ ` : g;
21681
21681
  }
21682
21682
  /**
21683
21683
  * Returns the field error template with the `_error` message if the
@@ -21690,7 +21690,7 @@ let j = class extends v {
21690
21690
  part="${j.parts.error}"
21691
21691
  .errors=${[{ message: this._error }]}
21692
21692
  ></rtg-field-error>
21693
- ` : m;
21693
+ ` : g;
21694
21694
  }
21695
21695
  render() {
21696
21696
  return d`
@@ -21715,14 +21715,14 @@ let j = class extends v {
21715
21715
  part="${j.parts.input}"
21716
21716
  type="email"
21717
21717
  name="${this.name}"
21718
- placeholder="${this.placeholder ?? m}"
21718
+ placeholder="${this.placeholder ?? g}"
21719
21719
  ?disabled="${this.disabled}"
21720
21720
  ?invalid=${this._invalid}
21721
21721
  ?required=${this.required}
21722
21722
  ></rtg-input>
21723
21723
 
21724
21724
  ${this._renderError()}
21725
- ${this.content === "split" && !this._invalid ? this._renderDescription() : m}
21725
+ ${this.content === "split" && !this._invalid ? this._renderDescription() : g}
21726
21726
  </rtg-field>
21727
21727
  `;
21728
21728
  }
@@ -21965,7 +21965,7 @@ let U = class extends v {
21965
21965
  * mark will be prioritised and rendered instead of the asterisk.
21966
21966
  */
21967
21967
  _renderMark() {
21968
- return !this.mark && (!this.caret || !this.required) ? m : d`
21968
+ return !this.mark && (!this.caret || !this.required) ? g : d`
21969
21969
  <span
21970
21970
  id="${this.markId}"
21971
21971
  part="${U.parts.mark}"
@@ -22000,7 +22000,7 @@ let U = class extends v {
22000
22000
  >
22001
22001
  ${this.description}
22002
22002
  </rtg-field-description>
22003
- ` : m;
22003
+ ` : g;
22004
22004
  }
22005
22005
  /**
22006
22006
  * Returns the field error template with the `_error` message if the
@@ -22013,7 +22013,7 @@ let U = class extends v {
22013
22013
  part="${U.parts.error}"
22014
22014
  .errors=${[{ message: this._error }]}
22015
22015
  ></rtg-field-error>
22016
- ` : m;
22016
+ ` : g;
22017
22017
  }
22018
22018
  render() {
22019
22019
  return d`
@@ -22038,15 +22038,15 @@ let U = class extends v {
22038
22038
  part="${U.parts.input}"
22039
22039
  type="${this._type}"
22040
22040
  name="${this.name}"
22041
- placeholder="${this.placeholder ?? m}"
22041
+ placeholder="${this.placeholder ?? g}"
22042
22042
  ?disabled="${this.disabled}"
22043
22043
  ?invalid=${this._invalid}
22044
- autocomplete="${this.autocomplete ?? m}"
22044
+ autocomplete="${this.autocomplete ?? g}"
22045
22045
  ?required=${this.required}
22046
22046
  ></rtg-input>
22047
22047
 
22048
22048
  ${this._renderError()}
22049
- ${this.content === "split" && !this._invalid ? this._renderDescription() : m}
22049
+ ${this.content === "split" && !this._invalid ? this._renderDescription() : g}
22050
22050
  </rtg-field>
22051
22051
  `;
22052
22052
  }
@@ -22116,7 +22116,7 @@ Ct([
22116
22116
  U = Ct([
22117
22117
  u("sb-identifier-field")
22118
22118
  ], U);
22119
- var Em = Object.defineProperty, km = Object.getOwnPropertyDescriptor, pt = (t, e, r, i) => {
22119
+ var Em = Object.defineProperty, km = Object.getOwnPropertyDescriptor, ut = (t, e, r, i) => {
22120
22120
  for (var s = i > 1 ? void 0 : i ? km(e, r) : e, o = t.length - 1, n; o >= 0; o--)
22121
22121
  (n = t[o]) && (s = (i ? n(e, r, s) : n(s)) || s);
22122
22122
  return i && s && Em(e, r, s), s;
@@ -22154,7 +22154,7 @@ let G = class extends v {
22154
22154
  // MARK
22155
22155
  // -------------------------
22156
22156
  _renderMark() {
22157
- return !this.mark && (!this.caret || !this.required) ? m : d`
22157
+ return !this.mark && (!this.caret || !this.required) ? g : d`
22158
22158
  <span
22159
22159
  id="${this.markId}"
22160
22160
  part="${G.parts.mark}"
@@ -22249,7 +22249,7 @@ let G = class extends v {
22249
22249
  <rtg-field-error part="${G.parts.error}">
22250
22250
  ${this._firstError}
22251
22251
  </rtg-field-error>
22252
- ` : m}
22252
+ ` : g}
22253
22253
  </rtg-field>
22254
22254
  `;
22255
22255
  }
@@ -22282,7 +22282,7 @@ let G = class extends v {
22282
22282
  <rtg-field-error part="${G.parts.error}">
22283
22283
  ${this._lastError}
22284
22284
  </rtg-field-error>
22285
- ` : m}
22285
+ ` : g}
22286
22286
  </rtg-field>
22287
22287
  `;
22288
22288
  }
@@ -22297,70 +22297,70 @@ let G = class extends v {
22297
22297
  G._ROOT = "name-field";
22298
22298
  G._FIRST = "first";
22299
22299
  G._LAST = "last";
22300
- pt([
22300
+ ut([
22301
22301
  a({ type: String })
22302
22302
  ], G.prototype, "firstLabel", 2);
22303
- pt([
22303
+ ut([
22304
22304
  a({ type: String })
22305
22305
  ], G.prototype, "lastLabel", 2);
22306
- pt([
22306
+ ut([
22307
22307
  a({ type: String })
22308
22308
  ], G.prototype, "seed", 2);
22309
- pt([
22309
+ ut([
22310
22310
  a({ attribute: "child-id" })
22311
22311
  ], G.prototype, "childId", 2);
22312
- pt([
22312
+ ut([
22313
22313
  a({ type: String })
22314
22314
  ], G.prototype, "name", 2);
22315
- pt([
22315
+ ut([
22316
22316
  a({ type: Boolean })
22317
22317
  ], G.prototype, "required", 2);
22318
- pt([
22318
+ ut([
22319
22319
  a({ type: Boolean })
22320
22320
  ], G.prototype, "disabled", 2);
22321
- pt([
22321
+ ut([
22322
22322
  a({ type: String })
22323
22323
  ], G.prototype, "firstName", 2);
22324
- pt([
22324
+ ut([
22325
22325
  a({ type: String })
22326
22326
  ], G.prototype, "lastName", 2);
22327
- pt([
22327
+ ut([
22328
22328
  a({ type: String })
22329
22329
  ], G.prototype, "firstPlaceholder", 2);
22330
- pt([
22330
+ ut([
22331
22331
  a({ type: String })
22332
22332
  ], G.prototype, "lastPlaceholder", 2);
22333
- pt([
22333
+ ut([
22334
22334
  a({ type: String })
22335
22335
  ], G.prototype, "requiredError", 2);
22336
- pt([
22336
+ ut([
22337
22337
  a({ type: String })
22338
22338
  ], G.prototype, "formatError", 2);
22339
- pt([
22339
+ ut([
22340
22340
  a({ type: String })
22341
22341
  ], G.prototype, "mark", 2);
22342
- pt([
22342
+ ut([
22343
22343
  a({ type: Boolean })
22344
22344
  ], G.prototype, "caret", 2);
22345
- pt([
22345
+ ut([
22346
22346
  x()
22347
22347
  ], G.prototype, "_first", 2);
22348
- pt([
22348
+ ut([
22349
22349
  x()
22350
22350
  ], G.prototype, "_firstInvalid", 2);
22351
- pt([
22351
+ ut([
22352
22352
  x()
22353
22353
  ], G.prototype, "_firstError", 2);
22354
- pt([
22354
+ ut([
22355
22355
  x()
22356
22356
  ], G.prototype, "_last", 2);
22357
- pt([
22357
+ ut([
22358
22358
  x()
22359
22359
  ], G.prototype, "_lastInvalid", 2);
22360
- pt([
22360
+ ut([
22361
22361
  x()
22362
22362
  ], G.prototype, "_lastError", 2);
22363
- G = pt([
22363
+ G = ut([
22364
22364
  u("sb-name-field")
22365
22365
  ], G);
22366
22366
  var Rm = Object.defineProperty, Om = Object.getOwnPropertyDescriptor, Ot = (t, e, r, i) => {
@@ -22528,7 +22528,7 @@ let D = class extends v {
22528
22528
  * mark will be prioritised and rendered instead of the asterisk.
22529
22529
  */
22530
22530
  _renderMark() {
22531
- return !this.mark && (!this.caret || !this.required) ? m : d`
22531
+ return !this.mark && (!this.caret || !this.required) ? g : d`
22532
22532
  <span
22533
22533
  id="${this.markId}"
22534
22534
  part="${D.parts.mark}"
@@ -22563,7 +22563,7 @@ let D = class extends v {
22563
22563
  >
22564
22564
  ${this.description}
22565
22565
  </rtg-field-description>
22566
- ` : m;
22566
+ ` : g;
22567
22567
  }
22568
22568
  /**
22569
22569
  * Returns the field error template with the `_error` message if the
@@ -22576,7 +22576,7 @@ let D = class extends v {
22576
22576
  part="${D.parts.error}"
22577
22577
  .errors=${[{ message: this._error }]}
22578
22578
  ></rtg-field-error>
22579
- ` : m;
22579
+ ` : g;
22580
22580
  }
22581
22581
  render() {
22582
22582
  return d`
@@ -22601,14 +22601,14 @@ let D = class extends v {
22601
22601
  part="${D.parts.input}"
22602
22602
  type="tel"
22603
22603
  name="${this.name}"
22604
- placeholder="${this.placeholder ?? m}"
22604
+ placeholder="${this.placeholder ?? g}"
22605
22605
  ?disabled="${this.disabled}"
22606
22606
  ?invalid=${this._invalid}
22607
22607
  ?required=${this.required}
22608
22608
  ></rtg-input>
22609
22609
 
22610
22610
  ${this._renderError()}
22611
- ${this.content === "split" && !this._invalid ? this._renderDescription() : m}
22611
+ ${this.content === "split" && !this._invalid ? this._renderDescription() : g}
22612
22612
  </rtg-field>
22613
22613
  `;
22614
22614
  }
@@ -22676,7 +22676,7 @@ Ot([
22676
22676
  D = Ot([
22677
22677
  u("sb-phone-field")
22678
22678
  ], D);
22679
- var Im = Object.defineProperty, Am = Object.getOwnPropertyDescriptor, ct = (t, e, r, i) => {
22679
+ var Im = Object.defineProperty, Am = Object.getOwnPropertyDescriptor, ht = (t, e, r, i) => {
22680
22680
  for (var s = i > 1 ? void 0 : i ? Am(e, r) : e, o = t.length - 1, n; o >= 0; o--)
22681
22681
  (n = t[o]) && (s = (i ? n(e, r, s) : n(s)) || s);
22682
22682
  return i && s && Im(e, r, s), s;
@@ -22886,7 +22886,7 @@ let P = class extends v {
22886
22886
  * mark will be prioritised and rendered instead of the asterisk.
22887
22887
  */
22888
22888
  _renderMark() {
22889
- return !this.mark && (!this.caret || !this.required) ? m : d`
22889
+ return !this.mark && (!this.caret || !this.required) ? g : d`
22890
22890
  <span
22891
22891
  id="${this.markId}"
22892
22892
  part="${P.parts.mark}"
@@ -22921,7 +22921,7 @@ let P = class extends v {
22921
22921
  >
22922
22922
  ${this.description}
22923
22923
  </rtg-field-description>
22924
- ` : m;
22924
+ ` : g;
22925
22925
  }
22926
22926
  /**
22927
22927
  * Returns the field error template with the `_error` message if the
@@ -22934,7 +22934,7 @@ let P = class extends v {
22934
22934
  part="${P.parts.error}"
22935
22935
  .errors=${[{ message: this._error }]}
22936
22936
  ></rtg-field-error>
22937
- ` : m;
22937
+ ` : g;
22938
22938
  }
22939
22939
  render() {
22940
22940
  const { minlength: t, maxlength: e } = this._lengths;
@@ -22960,17 +22960,17 @@ let P = class extends v {
22960
22960
  part="${P.parts.input}"
22961
22961
  type="text"
22962
22962
  name="${this.name}"
22963
- placeholder="${this.placeholder ?? m}"
22963
+ placeholder="${this.placeholder ?? g}"
22964
22964
  pattern="${this._pattern.source}"
22965
- minlength="${t ?? m}"
22966
- maxlength="${e ?? m}"
22965
+ minlength="${t ?? g}"
22966
+ maxlength="${e ?? g}"
22967
22967
  ?disabled="${this.disabled}"
22968
22968
  ?invalid=${this._invalid}
22969
22969
  ?required=${this.required}
22970
22970
  ></rtg-input>
22971
22971
 
22972
22972
  ${this._renderError()}
22973
- ${this.content === "split" && !this._invalid ? this._renderDescription() : m}
22973
+ ${this.content === "split" && !this._invalid ? this._renderDescription() : g}
22974
22974
  </rtg-field>
22975
22975
  `;
22976
22976
  }
@@ -22984,73 +22984,73 @@ P._INPUT = "input";
22984
22984
  P._ERROR = "error";
22985
22985
  P.TAG = `sb-${P._ROOT}`;
22986
22986
  P._PATTERN = /^[a-z0-9_]*$/;
22987
- ct([
22987
+ ht([
22988
22988
  a({ type: String })
22989
22989
  ], P.prototype, "seed", 2);
22990
- ct([
22990
+ ht([
22991
22991
  a({ attribute: "child-id", type: String })
22992
22992
  ], P.prototype, "childId", 2);
22993
- ct([
22993
+ ht([
22994
22994
  a({ attribute: "field-id", type: String })
22995
22995
  ], P.prototype, "fieldId", 2);
22996
- ct([
22996
+ ht([
22997
22997
  a({ type: String })
22998
22998
  ], P.prototype, "name", 2);
22999
- ct([
22999
+ ht([
23000
23000
  a({ type: String })
23001
23001
  ], P.prototype, "content", 2);
23002
- ct([
23002
+ ht([
23003
23003
  a({ type: String })
23004
23004
  ], P.prototype, "label", 2);
23005
- ct([
23005
+ ht([
23006
23006
  a({ type: String })
23007
23007
  ], P.prototype, "placeholder", 2);
23008
- ct([
23008
+ ht([
23009
23009
  a({ type: String })
23010
23010
  ], P.prototype, "description", 2);
23011
- ct([
23011
+ ht([
23012
23012
  a({ type: String })
23013
23013
  ], P.prototype, "mark", 2);
23014
- ct([
23014
+ ht([
23015
23015
  a({ type: Boolean })
23016
23016
  ], P.prototype, "caret", 2);
23017
- ct([
23017
+ ht([
23018
23018
  a({ type: Boolean })
23019
23019
  ], P.prototype, "disabled", 2);
23020
- ct([
23020
+ ht([
23021
23021
  a({ type: Boolean })
23022
23022
  ], P.prototype, "required", 2);
23023
- ct([
23023
+ ht([
23024
23024
  a({ type: Number })
23025
23025
  ], P.prototype, "minlength", 2);
23026
- ct([
23026
+ ht([
23027
23027
  a({ type: Number })
23028
23028
  ], P.prototype, "maxlength", 2);
23029
- ct([
23029
+ ht([
23030
23030
  a({ type: String })
23031
23031
  ], P.prototype, "pattern", 2);
23032
- ct([
23032
+ ht([
23033
23033
  a({ attribute: "required-error", type: String })
23034
23034
  ], P.prototype, "requiredError", 2);
23035
- ct([
23035
+ ht([
23036
23036
  a({ attribute: "minlength-error", type: String })
23037
23037
  ], P.prototype, "minlengthError", 2);
23038
- ct([
23038
+ ht([
23039
23039
  a({ attribute: "maxlength-error", type: String })
23040
23040
  ], P.prototype, "maxlengthError", 2);
23041
- ct([
23041
+ ht([
23042
23042
  a({ attribute: "format-error", type: String })
23043
23043
  ], P.prototype, "formatError", 2);
23044
- ct([
23044
+ ht([
23045
23045
  x()
23046
23046
  ], P.prototype, "_invalid", 2);
23047
- ct([
23047
+ ht([
23048
23048
  x()
23049
23049
  ], P.prototype, "_error", 2);
23050
- ct([
23050
+ ht([
23051
23051
  x()
23052
23052
  ], P.prototype, "_value", 2);
23053
- P = ct([
23053
+ P = ht([
23054
23054
  u("sb-username-field")
23055
23055
  ], P);
23056
23056
  var Tm = Object.defineProperty, Lm = Object.getOwnPropertyDescriptor, ve = (t, e, r, i) => {
@@ -23131,7 +23131,7 @@ let at = class extends v {
23131
23131
  part="${at.parts.spinner}"
23132
23132
  class="rtg-icon-inline-${this.spinnerAlign}"
23133
23133
  ></rtg-spinner>
23134
- ` : m;
23134
+ ` : g;
23135
23135
  }
23136
23136
  render() {
23137
23137
  return d`
@@ -23145,9 +23145,9 @@ let at = class extends v {
23145
23145
  type="submit"
23146
23146
  ?disabled=${this.disabled || this.isLoading}
23147
23147
  >
23148
- ${this.spinnerAlign === "start" ? this._renderSpinner() : m}
23148
+ ${this.spinnerAlign === "start" ? this._renderSpinner() : g}
23149
23149
  ${this.label}
23150
- ${this.spinnerAlign === "end" ? this._renderSpinner() : m}
23150
+ ${this.spinnerAlign === "end" ? this._renderSpinner() : g}
23151
23151
  </rtg-button>
23152
23152
  `;
23153
23153
  }
@@ -23201,7 +23201,7 @@ var Nm = Object.defineProperty, zm = Object.getOwnPropertyDescriptor, cs = (t, e
23201
23201
  (n = t[o]) && (s = (i ? n(e, r, s) : n(s)) || s);
23202
23202
  return i && s && Nm(e, r, s), s;
23203
23203
  };
23204
- let vt = class extends v {
23204
+ let yt = class extends v {
23205
23205
  constructor() {
23206
23206
  super(...arguments), this.seed = Nt(), this._loading = !1, this._handleSubmitClick = (t) => {
23207
23207
  var e;
@@ -23229,10 +23229,10 @@ let vt = class extends v {
23229
23229
  await St.processLoginflowEvent({
23230
23230
  event: n,
23231
23231
  ...Object.keys(r).length ? { data: r } : {}
23232
- }), this._dispatch(vt.SUCCESS_EVENT, { id: this.rootId, data: r, event: n });
23232
+ }), this._dispatch(yt.SUCCESS_EVENT, { id: this.rootId, data: r, event: n });
23233
23233
  } catch (p) {
23234
23234
  const b = p instanceof Error ? p.message : String(p);
23235
- this._dispatch(vt.ERROR_EVENT, {
23235
+ this._dispatch(yt.ERROR_EVENT, {
23236
23236
  id: this.rootId,
23237
23237
  data: r,
23238
23238
  event: n,
@@ -23242,7 +23242,7 @@ let vt = class extends v {
23242
23242
  this._setLoading(!1, e, h), this._pendingEvent = void 0;
23243
23243
  }
23244
23244
  }, this._handleReset = (t) => {
23245
- this._pendingEvent = void 0, this.onReset && this.onReset(t), this._dispatch(vt.RESET_EVENT, { id: this.rootId });
23245
+ this._pendingEvent = void 0, this.onReset && this.onReset(t), this._dispatch(yt.RESET_EVENT, { id: this.rootId });
23246
23246
  };
23247
23247
  }
23248
23248
  /**
@@ -23262,14 +23262,14 @@ let vt = class extends v {
23262
23262
  * derived from the component's part name and `seed`.
23263
23263
  */
23264
23264
  get rootId() {
23265
- return this.childId ?? `sb-${vt.parts.root}-${this.seed}`;
23265
+ return this.childId ?? `sb-${yt.parts.root}-${this.seed}`;
23266
23266
  }
23267
23267
  /**
23268
23268
  * The native `<form>` element rendered as the root part.
23269
23269
  */
23270
23270
  get _form() {
23271
23271
  return this.querySelector(
23272
- `form[part="${vt.parts.root}"]`
23272
+ `form[part="${yt.parts.root}"]`
23273
23273
  );
23274
23274
  }
23275
23275
  /**
@@ -23337,33 +23337,33 @@ let vt = class extends v {
23337
23337
  return d`
23338
23338
  <form
23339
23339
  id="${this.rootId}"
23340
- part="${vt.parts.root}"
23340
+ part="${yt.parts.root}"
23341
23341
  @submit=${this._handleSubmit}
23342
23342
  @reset=${this._handleReset}
23343
23343
  ></form>
23344
23344
  `;
23345
23345
  }
23346
23346
  };
23347
- vt._ROOT = "form";
23348
- vt.TAG = `sb-${vt._ROOT}`;
23349
- vt.SUCCESS_EVENT = `${vt.TAG}:success`;
23350
- vt.ERROR_EVENT = `${vt.TAG}:error`;
23351
- vt.RESET_EVENT = `${vt.TAG}:reset`;
23347
+ yt._ROOT = "form";
23348
+ yt.TAG = `sb-${yt._ROOT}`;
23349
+ yt.SUCCESS_EVENT = `${yt.TAG}:success`;
23350
+ yt.ERROR_EVENT = `${yt.TAG}:error`;
23351
+ yt.RESET_EVENT = `${yt.TAG}:reset`;
23352
23352
  cs([
23353
23353
  a({ type: String })
23354
- ], vt.prototype, "seed", 2);
23354
+ ], yt.prototype, "seed", 2);
23355
23355
  cs([
23356
23356
  a({ attribute: "child-id", type: String })
23357
- ], vt.prototype, "childId", 2);
23357
+ ], yt.prototype, "childId", 2);
23358
23358
  cs([
23359
23359
  a({ attribute: !1 })
23360
- ], vt.prototype, "onSubmit", 2);
23360
+ ], yt.prototype, "onSubmit", 2);
23361
23361
  cs([
23362
23362
  a({ attribute: !1 })
23363
- ], vt.prototype, "onReset", 2);
23364
- vt = cs([
23363
+ ], yt.prototype, "onReset", 2);
23364
+ yt = cs([
23365
23365
  u("sb-form")
23366
- ], vt);
23366
+ ], yt);
23367
23367
  var jm = Object.defineProperty, Dm = Object.getOwnPropertyDescriptor, Io = (t, e, r, i) => {
23368
23368
  for (var s = i > 1 ? void 0 : i ? Dm(e, r) : e, o = t.length - 1, n; o >= 0; o--)
23369
23369
  (n = t[o]) && (s = (i ? n(e, r, s) : n(s)) || s);
@@ -23399,7 +23399,7 @@ let ir = class extends v {
23399
23399
  part="${ir.parts.root}"
23400
23400
  data-content="${this.content ? "true" : "false"}"
23401
23401
  >
23402
- ${this.content ?? m}
23402
+ ${this.content ?? g}
23403
23403
  </rtg-field-separator>
23404
23404
  `;
23405
23405
  }
@@ -23501,7 +23501,7 @@ let Z = class extends v {
23501
23501
  * Returns the prompt paragraph template for `"default"` form switches.
23502
23502
  */
23503
23503
  _renderPrompt() {
23504
- return this.type === "button" || !this.prompt ? m : d`
23504
+ return this.type === "button" || !this.prompt ? g : d`
23505
23505
  <p id="${this.promptId}" part="${Z.parts.prompt}">
23506
23506
  ${this.prompt}
23507
23507
  </p>
@@ -23517,7 +23517,7 @@ let Z = class extends v {
23517
23517
  part="${Z.parts.spinner}"
23518
23518
  class="rtg-icon-inline-end"
23519
23519
  ></rtg-spinner>
23520
- ` : m;
23520
+ ` : g;
23521
23521
  }
23522
23522
  render() {
23523
23523
  const t = this.type === "button" ? this.variant : "link", e = this.type === "button" ? this.size : "default";
@@ -23528,8 +23528,8 @@ let Z = class extends v {
23528
23528
  id="${this.rootId}"
23529
23529
  part="${Z.parts.root}"
23530
23530
  data-type="${this.type}"
23531
- data-event="${this.event ?? m}"
23532
- data-loading="${this.isLoading ? "true" : m}"
23531
+ data-event="${this.event ?? g}"
23532
+ data-loading="${this.isLoading ? "true" : g}"
23533
23533
  variant="${t}"
23534
23534
  size="${e}"
23535
23535
  ?disabled="${this.disabled || this.isLoading}"
@@ -23587,10 +23587,23 @@ var Mm = Object.defineProperty, Bm = Object.getOwnPropertyDescriptor, ye = (t, e
23587
23587
  (n = t[o]) && (s = (i ? n(e, r, s) : n(s)) || s);
23588
23588
  return i && s && Mm(e, r, s), s;
23589
23589
  };
23590
- let $t = class extends v {
23590
+ let ct = class extends v {
23591
23591
  constructor() {
23592
- super(...arguments), this.seed = Nt(), this.variant = "secondary", this.size = "default", this.label = "Use Passkey", this.spinnerAlign = "start", this._loading = !1, this._handleClick = () => {
23593
- this.disabled || this.isLoading || (this._loading = !0, this._dispatchClick(), this._emitClickEvent());
23592
+ super(...arguments), this.seed = Nt(), this.variant = "secondary", this.size = "default", this.label = "Use Passkey", this.spinnerAlign = "start", this._loading = !1, this._handleClick = async () => {
23593
+ if (!(this.disabled || this.isLoading)) {
23594
+ this._loading = !0, this.dispatchEvent(
23595
+ new CustomEvent(ct.CLICK_EVENT, {
23596
+ detail: { id: this.rootId, event: this.event },
23597
+ bubbles: !0,
23598
+ composed: !0
23599
+ })
23600
+ );
23601
+ try {
23602
+ this.event && await St.processLoginflowEvent({ event: this.event });
23603
+ } finally {
23604
+ this._loading = !1;
23605
+ }
23606
+ }
23594
23607
  };
23595
23608
  }
23596
23609
  /**
@@ -23600,12 +23613,6 @@ let $t = class extends v {
23600
23613
  const t = this._ROOT, e = `${t}-${this._SPINNER}`;
23601
23614
  return { root: t, spinner: e };
23602
23615
  }
23603
- /**
23604
- * The name of the custom event fired on click.
23605
- */
23606
- static get clickEventName() {
23607
- return `sb-${this._ROOT}:click`;
23608
- }
23609
23616
  /**
23610
23617
  * Overrides default behavior to render into light DOM.
23611
23618
  */
@@ -23617,14 +23624,13 @@ let $t = class extends v {
23617
23624
  * derived from the component's part name and `seed`.
23618
23625
  */
23619
23626
  get rootId() {
23620
- return this.childId ?? `sb-${$t.parts.root}-${this.seed}`;
23627
+ return this.childId ?? `sb-${ct.parts.root}-${this.seed}`;
23621
23628
  }
23622
23629
  /**
23623
- * The `id` of the spinner element, derived from `rootId` with the spinner
23624
- * part name appended.
23630
+ * The `id` of the spinner element, derived from `rootId` and the part name.
23625
23631
  */
23626
23632
  get spinnerId() {
23627
- return `${this.rootId}-${$t._SPINNER}`;
23633
+ return `${this.rootId}-${ct._SPINNER}`;
23628
23634
  }
23629
23635
  /**
23630
23636
  * The loading state, derived from the private `_loading` and `loading` prop.
@@ -23644,30 +23650,6 @@ let $t = class extends v {
23644
23650
  disconnectedCallback() {
23645
23651
  super.disconnectedCallback(), this.removeEventListener("click", this._handleClick);
23646
23652
  }
23647
- /**
23648
- * Defines and dispatches the click event.
23649
- */
23650
- _dispatchClick() {
23651
- const t = new CustomEvent($t.clickEventName, {
23652
- detail: { id: this.rootId, event: this.event },
23653
- bubbles: !0,
23654
- composed: !0
23655
- });
23656
- this.dispatchEvent(t);
23657
- }
23658
- /**
23659
- * Emits the provided `event` to the auth service to process.
23660
- */
23661
- async _emitClickEvent() {
23662
- if (this.event) {
23663
- this._loading || (this._loading = !0);
23664
- try {
23665
- await St.processLoginflowEvent({ event: this.event });
23666
- } finally {
23667
- this._loading = !1;
23668
- }
23669
- }
23670
- }
23671
23653
  /**
23672
23654
  * Returns the loading spinner template.
23673
23655
  */
@@ -23675,65 +23657,66 @@ let $t = class extends v {
23675
23657
  return this.isLoading ? d`
23676
23658
  <rtg-spinner
23677
23659
  id="${this.spinnerId}"
23678
- part="${$t.parts.spinner}"
23660
+ part="${ct.parts.spinner}"
23679
23661
  class="rtg-icon-inline-${this.spinnerAlign}"
23680
23662
  ></rtg-spinner>
23681
- ` : m;
23663
+ ` : g;
23682
23664
  }
23683
23665
  render() {
23684
23666
  return d`
23685
23667
  <rtg-button
23686
23668
  id="${this.rootId}"
23687
- part="${$t.parts.root}"
23688
- data-event="${this.event}"
23689
- ?data-disabled=${this.disabled || this.isLoading}
23690
- ?data-loading=${this.isLoading}
23669
+ part="${ct.parts.root}"
23670
+ data-event="${this.event ?? g}"
23671
+ data-loading="${this.isLoading ? "true" : g}"
23691
23672
  variant="${this.variant}"
23692
23673
  size="${this.size}"
23693
23674
  ?disabled=${this.disabled || this.isLoading}
23694
23675
  >
23695
- ${this.spinnerAlign === "start" ? this._renderSpinner() : m}
23676
+ ${this.spinnerAlign === "start" ? this._renderSpinner() : g}
23696
23677
  ${this.label}
23697
- ${this.spinnerAlign === "end" ? this._renderSpinner() : m}
23678
+ ${this.spinnerAlign === "end" ? this._renderSpinner() : g}
23698
23679
  </rtg-button>
23699
23680
  `;
23700
23681
  }
23701
23682
  };
23702
- $t._ROOT = "passkey-button";
23703
- $t._SPINNER = "spinner";
23683
+ ct._ROOT = "passkey-button";
23684
+ ct._SPINNER = "spinner";
23685
+ ct.TAG = `sb-${ct._ROOT}`;
23686
+ ct.CLICK_EVENT = `${ct.TAG}:click`;
23704
23687
  ye([
23705
23688
  a({ type: String })
23706
- ], $t.prototype, "seed", 2);
23689
+ ], ct.prototype, "seed", 2);
23707
23690
  ye([
23708
23691
  a({ attribute: "child-id", type: String })
23709
- ], $t.prototype, "childId", 2);
23692
+ ], ct.prototype, "childId", 2);
23710
23693
  ye([
23711
23694
  a({ type: String })
23712
- ], $t.prototype, "variant", 2);
23695
+ ], ct.prototype, "variant", 2);
23713
23696
  ye([
23714
23697
  a({ type: String })
23715
- ], $t.prototype, "size", 2);
23698
+ ], ct.prototype, "size", 2);
23716
23699
  ye([
23717
23700
  a({ type: String })
23718
- ], $t.prototype, "label", 2);
23701
+ ], ct.prototype, "label", 2);
23719
23702
  ye([
23720
23703
  a({ attribute: "spinner-align", type: String })
23721
- ], $t.prototype, "spinnerAlign", 2);
23704
+ ], ct.prototype, "spinnerAlign", 2);
23722
23705
  ye([
23723
23706
  a({ type: Boolean })
23724
- ], $t.prototype, "disabled", 2);
23707
+ ], ct.prototype, "disabled", 2);
23725
23708
  ye([
23726
23709
  a({ type: Boolean })
23727
- ], $t.prototype, "loading", 2);
23710
+ ], ct.prototype, "loading", 2);
23728
23711
  ye([
23729
23712
  a({ type: String })
23730
- ], $t.prototype, "event", 2);
23713
+ ], ct.prototype, "event", 2);
23731
23714
  ye([
23732
23715
  x()
23733
- ], $t.prototype, "_loading", 2);
23734
- $t = ye([
23716
+ ], ct.prototype, "_loading", 2);
23717
+ ct = ye([
23735
23718
  u("sb-passkey-button")
23736
- ], $t);
23719
+ ], ct);
23737
23720
  const qm = {
23738
23721
  apple: "Apple",
23739
23722
  discord: "Discord",
@@ -23884,7 +23867,7 @@ let dt = class extends v {
23884
23867
  * `content` prop requires the icon part.
23885
23868
  */
23886
23869
  _renderIcon() {
23887
- return this.isLoading ? this._renderSpinner() : this.content.includes("icon") ? this._renderLogo() : m;
23870
+ return this.isLoading ? this._renderSpinner() : this.content.includes("icon") ? this._renderLogo() : g;
23888
23871
  }
23889
23872
  render() {
23890
23873
  const t = qm[this.provider], e = this.label ?? `${this.prompt} ${t}`;
@@ -23901,9 +23884,9 @@ let dt = class extends v {
23901
23884
  size="${this.size}"
23902
23885
  ?disabled=${this.disabled || this.isLoading}
23903
23886
  >
23904
- ${this.iconAlign === "start" ? this._renderIcon() : m}
23905
- ${this.content.includes("label") ? e : m}
23906
- ${this.iconAlign === "end" ? this._renderIcon() : m}
23887
+ ${this.iconAlign === "start" ? this._renderIcon() : g}
23888
+ ${this.content.includes("label") ? e : g}
23889
+ ${this.iconAlign === "end" ? this._renderIcon() : g}
23907
23890
  </rtg-button>
23908
23891
  `;
23909
23892
  }
@@ -23957,7 +23940,7 @@ var Km = Object.defineProperty, Wm = Object.getOwnPropertyDescriptor, Wt = (t, e
23957
23940
  (n = t[o]) && (s = (i ? n(e, r, s) : n(s)) || s);
23958
23941
  return i && s && Km(e, r, s), s;
23959
23942
  };
23960
- let yt = class extends v {
23943
+ let wt = class extends v {
23961
23944
  constructor() {
23962
23945
  super(...arguments), this.seed = Nt(), this.providers = [], this.overrides = [];
23963
23946
  }
@@ -23979,14 +23962,14 @@ let yt = class extends v {
23979
23962
  * derived from the component's part name and `seed`.
23980
23963
  */
23981
23964
  get rootId() {
23982
- return this.childId ?? `sb-${yt.parts.root}-${this.seed}`;
23965
+ return this.childId ?? `sb-${wt.parts.root}-${this.seed}`;
23983
23966
  }
23984
23967
  /**
23985
23968
  * The `id` of the provider button element, derived from `rootId` with the
23986
23969
  * button part name appended.
23987
23970
  */
23988
23971
  get buttonId() {
23989
- return `${this.rootId}-${yt._BUTTON}`;
23972
+ return `${this.rootId}-${wt._BUTTON}`;
23990
23973
  }
23991
23974
  /**
23992
23975
  * The number of columns within the field, given to the root element via its
@@ -24022,19 +24005,19 @@ let yt = class extends v {
24022
24005
  return d`
24023
24006
  <sb-provider-button
24024
24007
  id="${this.buttonId}"
24025
- part="${yt.parts.button}"
24008
+ part="${wt.parts.button}"
24026
24009
  seed="${t.seed ?? this.seed}"
24027
- child-id="${t.childId ?? m}"
24010
+ child-id="${t.childId ?? g}"
24028
24011
  provider="${t.provider}"
24029
- content="${t.content ?? this.content ?? (this._providers.length > 2 ? "icon" : m)}"
24030
- variant="${t.variant ?? this.variant ?? m}"
24031
- size="${t.size ?? this.size ?? m}"
24032
- prompt="${t.prompt ?? this.prompt ?? m}"
24033
- icon-align="${t.iconAlign ?? this.iconAlign ?? m}"
24034
- label="${t.label ?? this.label ?? m}"
24012
+ content="${t.content ?? this.content ?? (this._providers.length > 2 ? "icon" : g)}"
24013
+ variant="${t.variant ?? this.variant ?? g}"
24014
+ size="${t.size ?? this.size ?? g}"
24015
+ prompt="${t.prompt ?? this.prompt ?? g}"
24016
+ icon-align="${t.iconAlign ?? this.iconAlign ?? g}"
24017
+ label="${t.label ?? this.label ?? g}"
24035
24018
  ?disabled="${t.disabled || this.disabled}"
24036
24019
  ?loading="${t.loading || this.loading}"
24037
- event="${t.event ?? this.event ?? m}"
24020
+ event="${t.event ?? this.event ?? g}"
24038
24021
  ></sb-provider-button>
24039
24022
  `;
24040
24023
  }
@@ -24043,7 +24026,7 @@ let yt = class extends v {
24043
24026
  return d`
24044
24027
  <rtg-field
24045
24028
  id="${this.rootId}"
24046
- part="${yt.parts.root}"
24029
+ part="${wt.parts.root}"
24047
24030
  data-columns="${this.columns}"
24048
24031
  >
24049
24032
  ${this._providers.map(
@@ -24055,50 +24038,50 @@ let yt = class extends v {
24055
24038
  `;
24056
24039
  }
24057
24040
  };
24058
- yt._ROOT = "provider-field";
24059
- yt._BUTTON = "button";
24041
+ wt._ROOT = "provider-field";
24042
+ wt._BUTTON = "button";
24060
24043
  Wt([
24061
24044
  a({ type: String })
24062
- ], yt.prototype, "seed", 2);
24045
+ ], wt.prototype, "seed", 2);
24063
24046
  Wt([
24064
24047
  a({ attribute: "child-id", type: String })
24065
- ], yt.prototype, "childId", 2);
24048
+ ], wt.prototype, "childId", 2);
24066
24049
  Wt([
24067
24050
  a({ type: Array })
24068
- ], yt.prototype, "providers", 2);
24051
+ ], wt.prototype, "providers", 2);
24069
24052
  Wt([
24070
24053
  a({ type: String })
24071
- ], yt.prototype, "content", 2);
24054
+ ], wt.prototype, "content", 2);
24072
24055
  Wt([
24073
24056
  a({ type: String })
24074
- ], yt.prototype, "variant", 2);
24057
+ ], wt.prototype, "variant", 2);
24075
24058
  Wt([
24076
24059
  a({ type: String })
24077
- ], yt.prototype, "size", 2);
24060
+ ], wt.prototype, "size", 2);
24078
24061
  Wt([
24079
24062
  a({ type: String })
24080
- ], yt.prototype, "prompt", 2);
24063
+ ], wt.prototype, "prompt", 2);
24081
24064
  Wt([
24082
24065
  a({ attribute: "icon-align", type: String })
24083
- ], yt.prototype, "iconAlign", 2);
24066
+ ], wt.prototype, "iconAlign", 2);
24084
24067
  Wt([
24085
24068
  a({ type: String })
24086
- ], yt.prototype, "label", 2);
24069
+ ], wt.prototype, "label", 2);
24087
24070
  Wt([
24088
24071
  a({ type: Boolean })
24089
- ], yt.prototype, "disabled", 2);
24072
+ ], wt.prototype, "disabled", 2);
24090
24073
  Wt([
24091
24074
  a({ type: Boolean })
24092
- ], yt.prototype, "loading", 2);
24075
+ ], wt.prototype, "loading", 2);
24093
24076
  Wt([
24094
24077
  a({ type: String })
24095
- ], yt.prototype, "event", 2);
24078
+ ], wt.prototype, "event", 2);
24096
24079
  Wt([
24097
24080
  a({ type: Array })
24098
- ], yt.prototype, "overrides", 2);
24099
- yt = Wt([
24081
+ ], wt.prototype, "overrides", 2);
24082
+ wt = Wt([
24100
24083
  u("sb-provider-field")
24101
- ], yt);
24084
+ ], wt);
24102
24085
  var Ym = Object.defineProperty, Xm = Object.getOwnPropertyDescriptor, Ao = (t, e, r, i) => {
24103
24086
  for (var s = i > 1 ? void 0 : i ? Xm(e, r) : e, o = t.length - 1, n; o >= 0; o--)
24104
24087
  (n = t[o]) && (s = (i ? n(e, r, s) : n(s)) || s);
@@ -24307,10 +24290,10 @@ let be = class extends De {
24307
24290
  return io`
24308
24291
  <rtg-input-otp
24309
24292
  part=${this.id ? this.id : "otp"}
24310
- id=${this.dataKey ?? this.id ?? m}
24311
- name=${this.dataKey ?? this.id ?? m}
24293
+ id=${this.dataKey ?? this.id ?? g}
24294
+ name=${this.dataKey ?? this.id ?? g}
24312
24295
  maxlength=${this.length}
24313
- pattern=${t === "digits_only" ? "\\d+" : m}
24296
+ pattern=${t === "digits_only" ? "\\d+" : g}
24314
24297
  data-key=${this.dataKey || ""}
24315
24298
  .onComplete=${this.handleComplete}
24316
24299
  .onFocus=${this.handleFocus}
@@ -24327,7 +24310,7 @@ let be = class extends De {
24327
24310
  ${this.resendButtonText}
24328
24311
  </rtg-button>
24329
24312
  </div>
24330
- ` : m}
24313
+ ` : g}
24331
24314
  `;
24332
24315
  }
24333
24316
  };
@@ -24560,8 +24543,8 @@ let qt = class extends v {
24560
24543
  data-badge="${this.badge}"
24561
24544
  variant="${this.badge}"
24562
24545
  >
24563
- ${this.logoAlign === "start" ? this._renderLogo() : m}
24564
- ${this.label} ${this.logoAlign === "end" ? this._renderLogo() : m}
24546
+ ${this.logoAlign === "start" ? this._renderLogo() : g}
24547
+ ${this.label} ${this.logoAlign === "end" ? this._renderLogo() : g}
24565
24548
  </rtg-badge>
24566
24549
  `;
24567
24550
  }
@@ -25295,7 +25278,7 @@ let sr = class extends v {
25295
25278
  `;
25296
25279
  }
25297
25280
  render() {
25298
- var y, w, E, C, S, k, T, I, N, J, Y, nt, ut, jt;
25281
+ var y, w, E, C, S, k, T, I, N, J, Y, nt, gt, jt;
25299
25282
  const t = [
25300
25283
  { label: "Username", value: this.personal.username },
25301
25284
  { label: "First name", value: this.personal.first },
@@ -25334,7 +25317,7 @@ let sr = class extends v {
25334
25317
  ${(Y = this.content) != null && Y.icon ? (nt = this.content) == null ? void 0 : nt.icon : gb()}
25335
25318
 
25336
25319
  <span>
25337
- ${(ut = this.content) != null && ut.title ? (jt = this.content) == null ? void 0 : jt.title : "Personal Info"}
25320
+ ${(gt = this.content) != null && gt.title ? (jt = this.content) == null ? void 0 : jt.title : "Personal Info"}
25338
25321
  </span>
25339
25322
  </rtg-card-title>
25340
25323
  ${this.isEditing ? null : d`
@@ -25569,15 +25552,15 @@ let or = class extends v {
25569
25552
  <rtg-card-content>
25570
25553
  <div class="sb-flex sb-flex-col sb-gap-3 sb-m-4">
25571
25554
  ${t.map(
25572
- (ut) => d`
25555
+ (gt) => d`
25573
25556
  <div
25574
25557
  class="sb-flex ${this.layout === Gt.ROW ? "sb-flex-row sb-items-center sb-gap-2" : "sb-flex-col sb-gap-1"}"
25575
25558
  >
25576
25559
  <div class=${p.class} style=${R(p.style)}>
25577
- ${ut.label}
25560
+ ${gt.label}
25578
25561
  </div>
25579
25562
  <div class="sb-flex-1 sb-min-w-0 sb-mr-4">
25580
- ${this.renderInput(ut.value)}
25563
+ ${this.renderInput(gt.value)}
25581
25564
  </div>
25582
25565
  </div>
25583
25566
  `
@@ -25781,15 +25764,15 @@ let nr = class extends v {
25781
25764
  <rtg-card-content>
25782
25765
  <div class="sb-flex sb-flex-col sb-gap-3 sb-p-4">
25783
25766
  ${t.map(
25784
- (ut) => d`
25767
+ (gt) => d`
25785
25768
  <div
25786
25769
  class="sb-flex ${this.layout === Gt.ROW ? "sb-flex-row sb-items-center" : "sb-flex-col sb-gap-1"}"
25787
25770
  >
25788
25771
  <div class=${p.class} style=${R(p.style)}>
25789
- ${ut.label}
25772
+ ${gt.label}
25790
25773
  </div>
25791
25774
  <div class="sb-flex-1 sb-min-w-0 sb-mr-4">
25792
- ${this.renderInput(ut.value)}
25775
+ ${this.renderInput(gt.value)}
25793
25776
  </div>
25794
25777
  </div>
25795
25778
  `
@@ -26197,10 +26180,10 @@ class we extends v {
26197
26180
  >
26198
26181
  ${fb()}
26199
26182
  </button>
26200
- ` : m;
26183
+ ` : g;
26201
26184
  }
26202
26185
  renderWatermark() {
26203
- return this.orientation !== pe.VERTICAL ? m : d`
26186
+ return this.orientation !== pe.VERTICAL ? g : d`
26204
26187
  <div
26205
26188
  class="sb-fixed sb-bottom-0 sb-w-[-webkit-fill-available] sb-py-4 sb-bg-background"
26206
26189
  >
@@ -26276,7 +26259,7 @@ class we extends v {
26276
26259
  <div class=${Eu}>
26277
26260
  <div class=${ku}>${this.renderProfileContent()}</div>
26278
26261
  </div>
26279
- ` : this.renderProfileContent() : m;
26262
+ ` : this.renderProfileContent() : g;
26280
26263
  }
26281
26264
  // Use shadow DOM? No — matches original behavior
26282
26265
  createRenderRoot() {
@@ -26642,7 +26625,7 @@ let je = class extends v {
26642
26625
  customClass=${t}
26643
26626
  .customStyle=${e}
26644
26627
  ></linear-loader>
26645
- ` : m}
26628
+ ` : g}
26646
26629
  ${this._wrapSubmitButtons(
26647
26630
  hh(this, this.renderSpec.root_container, this.theme)
26648
26631
  )}
@@ -26934,7 +26917,7 @@ let ra = class extends v {
26934
26917
  render() {
26935
26918
  return this.auth ? d`
26936
26919
  <div ?hidden=${this.auth.isAuthenticated}>${this._cachedChildren}</div>
26937
- ` : m;
26920
+ ` : g;
26938
26921
  }
26939
26922
  };
26940
26923
  mh([
@@ -26962,7 +26945,7 @@ let ia = class extends v {
26962
26945
  render() {
26963
26946
  return this.auth ? d`
26964
26947
  <div ?hidden=${!this.auth.isAuthenticated}>${this._cachedChildren}</div>
26965
- ` : m;
26948
+ ` : g;
26966
26949
  }
26967
26950
  };
26968
26951
  bh([
@@ -26989,7 +26972,7 @@ let as = class extends v {
26989
26972
  }
26990
26973
  render() {
26991
26974
  var t;
26992
- return this.auth ? this.auth.isAuthenticated ? d`${this._cachedChildren}` : (window.location.href = this.redirectUrl || ((t = this.env) == null ? void 0 : t.signinUrl), m) : m;
26975
+ return this.auth ? this.auth.isAuthenticated ? d`${this._cachedChildren}` : (window.location.href = this.redirectUrl || ((t = this.env) == null ? void 0 : t.signinUrl), g) : g;
26993
26976
  }
26994
26977
  };
26995
26978
  Ko([
@@ -27026,9 +27009,9 @@ export {
27026
27009
  Ji as SbCountdownRenderer,
27027
27010
  so as SbDividerRenderer,
27028
27011
  j as SbEmailField,
27029
- xt as SbError,
27012
+ $t as SbError,
27030
27013
  lo as SbErrorRenderer,
27031
- vt as SbForm,
27014
+ yt as SbForm,
27032
27015
  ir as SbFormSeparator,
27033
27016
  at as SbFormSubmit,
27034
27017
  Z as SbFormSwitch,
@@ -27047,13 +27030,13 @@ export {
27047
27030
  G as SbNameField,
27048
27031
  be as SbOtp,
27049
27032
  ao as SbOtpRenderer,
27050
- $t as SbPasskeyButton,
27033
+ ct as SbPasskeyButton,
27051
27034
  A as SbPasswordField,
27052
27035
  sr as SbPersonalInfo,
27053
27036
  D as SbPhoneField,
27054
27037
  lr as SbProvider,
27055
27038
  dt as SbProviderButton,
27056
- yt as SbProviderField,
27039
+ wt as SbProviderField,
27057
27040
  os as SbSignIn,
27058
27041
  ns as SbSignUp,
27059
27042
  Kr as SbSpinner,