@warp-ds/elements 1.0.0-alpha.11 → 1.0.0-alpha.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.js +119 -120
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@ var x = (e, o, r) => (pt(e, typeof o != "symbol" ? o + "" : o, r), r), ht = (e,
4
4
  if (!o.has(e))
5
5
  throw TypeError("Cannot " + r);
6
6
  };
7
- var X = (e, o, r) => (ht(e, o, "read from private field"), r ? r.call(e) : o.get(e)), Eo = (e, o, r) => {
7
+ var V = (e, o, r) => (ht(e, o, "read from private field"), r ? r.call(e) : o.get(e)), Eo = (e, o, r) => {
8
8
  if (o.has(e))
9
9
  throw TypeError("Cannot add the same private member more than once");
10
10
  o instanceof WeakSet ? o.add(e) : o.set(e, r);
@@ -61,15 +61,15 @@ const mt = (e) => {
61
61
  */
62
62
  var ee, re, te, Er;
63
63
  const N = window;
64
- let jr, Z;
64
+ let jr, D;
65
65
  const ar = N.trustedTypes, wt = ar ? ar.emptyScript : "", Ao = N.reactiveElementPolyfillSupportDevMode;
66
66
  {
67
67
  const e = (ee = N.litIssuedWarnings) !== null && ee !== void 0 ? ee : N.litIssuedWarnings = /* @__PURE__ */ new Set();
68
- Z = (o, r) => {
68
+ D = (o, r) => {
69
69
  r += ` See https://lit.dev/msg/${o} for more information.`, e.has(r) || (console.warn(r), e.add(r));
70
- }, Z("dev-mode", "Lit is in dev mode. Not recommended for production!"), ((re = N.ShadyDOM) === null || re === void 0 ? void 0 : re.inUse) && Ao === void 0 && Z("polyfill-support-missing", "Shadow DOM is being polyfilled via `ShadyDOM` but the `polyfill-support` module has not been loaded."), jr = (o) => ({
70
+ }, D("dev-mode", "Lit is in dev mode. Not recommended for production!"), ((re = N.ShadyDOM) === null || re === void 0 ? void 0 : re.inUse) && Ao === void 0 && D("polyfill-support-missing", "Shadow DOM is being polyfilled via `ShadyDOM` but the `polyfill-support` module has not been loaded."), jr = (o) => ({
71
71
  then: (r, t) => {
72
- Z("request-update-promise", `The \`requestUpdate\` method should no longer return a Promise but does so on \`${o}\`. Use \`updateComplete\` instead.`), r !== void 0 && r(!1);
72
+ D("request-update-promise", `The \`requestUpdate\` method should no longer return a Promise but does so on \`${o}\`. Use \`updateComplete\` instead.`), r !== void 0 && r(!1);
73
73
  }
74
74
  });
75
75
  }
@@ -172,7 +172,7 @@ class U extends HTMLElement {
172
172
  this.elementStyles = this.finalizeStyles(this.styles);
173
173
  {
174
174
  const r = (t, i = !1) => {
175
- this.prototype.hasOwnProperty(t) && Z(i ? "renamed-api" : "removed-api", `\`${t}\` is implemented on class ${this.name}. It has been ${i ? "renamed" : "removed"} in this version of LitElement.`);
175
+ this.prototype.hasOwnProperty(t) && D(i ? "renamed-api" : "removed-api", `\`${t}\` is implemented on class ${this.name}. It has been ${i ? "renamed" : "removed"} in this version of LitElement.`);
176
176
  };
177
177
  r("initialize"), r("requestUpdateInternal"), r("_getUpdateComplete", !0);
178
178
  }
@@ -238,7 +238,7 @@ class U extends HTMLElement {
238
238
  const n = this.constructor.__attributeNameForProperty(o, t);
239
239
  if (n !== void 0 && t.reflect === !0) {
240
240
  const l = (((i = t.converter) === null || i === void 0 ? void 0 : i.toAttribute) !== void 0 ? t.converter : ze).toAttribute(r, t.type);
241
- this.constructor.enabledWarnings.indexOf("migration") >= 0 && l === void 0 && Z("undefined-attribute-value", `The attribute value for the ${o} property is undefined on element ${this.localName}. The attribute will be removed, but in the previous version of \`ReactiveElement\`, the attribute would not have changed.`), this.__reflectingProperty = o, l == null ? this.removeAttribute(n) : this.setAttribute(n, l), this.__reflectingProperty = null;
241
+ this.constructor.enabledWarnings.indexOf("migration") >= 0 && l === void 0 && D("undefined-attribute-value", `The attribute value for the ${o} property is undefined on element ${this.localName}. The attribute will be removed, but in the previous version of \`ReactiveElement\`, the attribute would not have changed.`), this.__reflectingProperty = o, l == null ? this.removeAttribute(n) : this.setAttribute(n, l), this.__reflectingProperty = null;
242
242
  }
243
243
  }
244
244
  _$attributeToProperty(o, r) {
@@ -301,7 +301,7 @@ class U extends HTMLElement {
301
301
  (r = this.__controllers) === null || r === void 0 || r.forEach((t) => {
302
302
  var i;
303
303
  return (i = t.hostUpdated) === null || i === void 0 ? void 0 : i.call(t);
304
- }), this.hasUpdated || (this.hasUpdated = !0, this.firstUpdated(o)), this.updated(o), this.isUpdatePending && this.constructor.enabledWarnings.indexOf("change-in-update") >= 0 && Z("change-in-update", `Element ${this.localName} scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update.`);
304
+ }), this.hasUpdated || (this.hasUpdated = !0, this.firstUpdated(o)), this.updated(o), this.isUpdatePending && this.constructor.enabledWarnings.indexOf("change-in-update") >= 0 && D("change-in-update", `Element ${this.localName} scheduled an update (generally because a property was set) after an update completed, causing a new update to be scheduled. This is inefficient and should be avoided unless the next update can only be scheduled as a side effect of the previous update.`);
305
305
  }
306
306
  __markUpdated() {
307
307
  this._$changedProperties = /* @__PURE__ */ new Map(), this.isUpdatePending = !1;
@@ -343,7 +343,7 @@ Ao == null || Ao({ ReactiveElement: U });
343
343
  };
344
344
  }
345
345
  ((te = N.reactiveElementVersions) !== null && te !== void 0 ? te : N.reactiveElementVersions = []).push("1.6.1");
346
- N.reactiveElementVersions.length > 1 && Z("multiple-versions", "Multiple versions of Lit loaded. Loading multiple versions is not recommended.");
346
+ N.reactiveElementVersions.length > 1 && D("multiple-versions", "Multiple versions of Lit loaded. Loading multiple versions is not recommended.");
347
347
  /**
348
348
  * @license
349
349
  * Copyright 2017 Google LLC
@@ -362,20 +362,20 @@ let kt = 0, Fo;
362
362
  const j = ((le = q.ShadyDOM) === null || le === void 0 ? void 0 : le.inUse) && ((ce = q.ShadyDOM) === null || ce === void 0 ? void 0 : ce.noPatch) === !0 ? q.ShadyDOM.wrap : (e) => e, no = q.trustedTypes, nr = no ? no.createPolicy("lit-html", {
363
363
  createHTML: (e) => e
364
364
  }) : void 0, yt = (e) => e, Wo = (e, o, r) => yt, $t = (e) => {
365
- if (G !== Wo)
365
+ if (J !== Wo)
366
366
  throw new Error("Attempted to overwrite existing lit-html security policy. setSanitizeDOMValueFactory should be called at most once.");
367
- G = e;
367
+ J = e;
368
368
  }, zt = () => {
369
- G = Wo;
370
- }, Se = (e, o, r) => G(e, o, r), Oo = "$lit$", P = `lit$${String(Math.random()).slice(9)}$`, Xe = "?" + P, _t = `<${Xe}>`, vo = document, fo = (e = "") => vo.createComment(e), xo = (e) => e === null || typeof e != "object" && typeof e != "function", Pr = Array.isArray, Nr = (e) => Pr(e) || typeof (e == null ? void 0 : e[Symbol.iterator]) == "function", se = `[
369
+ J = Wo;
370
+ }, Se = (e, o, r) => J(e, o, r), Oo = "$lit$", P = `lit$${String(Math.random()).slice(9)}$`, Xe = "?" + P, _t = `<${Xe}>`, vo = document, fo = (e = "") => vo.createComment(e), xo = (e) => e === null || typeof e != "object" && typeof e != "function", Pr = Array.isArray, Nr = (e) => Pr(e) || typeof (e == null ? void 0 : e[Symbol.iterator]) == "function", se = `[
371
371
  \f\r]`, St = `[^
372
- \f\r"'\`<>=]`, Ct = `[^\\s"'>=/]`, po = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g, lr = 1, be = 2, qt = 3, cr = /-->/g, dr = />/g, H = new RegExp(`>|${se}(?:(${Ct}+)(${se}*=${se}*(?:${St}|("|')|))|$)`, "g"), Rt = 0, sr = 1, Et = 2, br = 3, ge = /'/g, ue = /"/g, Ur = /^(?:script|style|textarea|title)$/i, Tr = 1, Lo = 2, Ve = 1, Io = 2, jt = 3, At = 4, Mt = 5, Ze = 6, Pt = 7, Fr = (e) => (o, ...r) => (o.some((t) => t === void 0) && console.warn(`Some template strings are undefined.
372
+ \f\r"'\`<>=]`, Ct = `[^\\s"'>=/]`, po = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g, lr = 1, be = 2, qt = 3, cr = /-->/g, dr = />/g, W = new RegExp(`>|${se}(?:(${Ct}+)(${se}*=${se}*(?:${St}|("|')|))|$)`, "g"), Rt = 0, sr = 1, Et = 2, br = 3, ge = /'/g, ue = /"/g, Ur = /^(?:script|style|textarea|title)$/i, Tr = 1, Lo = 2, Ve = 1, Io = 2, jt = 3, At = 4, Mt = 5, Ze = 6, Pt = 7, Fr = (e) => (o, ...r) => (o.some((t) => t === void 0) && console.warn(`Some template strings are undefined.
373
373
  This is probably caused by illegal octal escape sequences.`), {
374
374
  _$litType$: e,
375
375
  strings: o,
376
376
  values: r
377
- }), p = Fr(Tr), Ko = Fr(Lo), I = Symbol.for("lit-noChange"), k = Symbol.for("lit-nothing"), gr = /* @__PURE__ */ new WeakMap(), to = vo.createTreeWalker(vo, 129, null, !1);
378
- let G = Wo;
377
+ }), p = Fr(Tr), Ko = Fr(Lo), B = Symbol.for("lit-noChange"), k = Symbol.for("lit-nothing"), gr = /* @__PURE__ */ new WeakMap(), to = vo.createTreeWalker(vo, 129, null, !1);
378
+ let J = Wo;
379
379
  const Or = (e, o) => {
380
380
  const r = e.length - 1, t = [];
381
381
  let i = o === Lo ? "<svg>" : "", n, a = po;
@@ -389,13 +389,13 @@ const Or = (e, o) => {
389
389
  else if (s[lr] !== void 0)
390
390
  a = dr;
391
391
  else if (s[be] !== void 0)
392
- Ur.test(s[be]) && (n = new RegExp(`</${s[be]}`, "g")), a = H;
392
+ Ur.test(s[be]) && (n = new RegExp(`</${s[be]}`, "g")), a = W;
393
393
  else if (s[qt] !== void 0)
394
394
  throw new Error("Bindings in tag names are not supported. Please use static templates instead. See https://lit.dev/docs/templates/expressions/#static-expressions");
395
395
  } else
396
- a === H ? s[Rt] === ">" ? (a = n != null ? n : po, u = -1) : s[sr] === void 0 ? u = -2 : (u = a.lastIndex - s[Et].length, b = s[sr], a = s[br] === void 0 ? H : s[br] === '"' ? ue : ge) : a === ue || a === ge ? a = H : a === cr || a === dr ? a = po : (a = H, n = void 0);
397
- console.assert(u === -1 || a === H || a === ge || a === ue, "unexpected parse state B");
398
- const h = a === H && e[c + 1].startsWith("/>") ? " " : "";
396
+ a === W ? s[Rt] === ">" ? (a = n != null ? n : po, u = -1) : s[sr] === void 0 ? u = -2 : (u = a.lastIndex - s[Et].length, b = s[sr], a = s[br] === void 0 ? W : s[br] === '"' ? ue : ge) : a === ue || a === ge ? a = W : a === cr || a === dr ? a = po : (a = W, n = void 0);
397
+ console.assert(u === -1 || a === W || a === ge || a === ue, "unexpected parse state B");
398
+ const h = a === W && e[c + 1].startsWith("/>") ? " " : "";
399
399
  i += a === po ? d + _t : u >= 0 ? (t.push(b), d.slice(0, u) + Oo + d.slice(u) + P + h) : d + P + (u === -2 ? (t.push(void 0), c) : h);
400
400
  }
401
401
  const l = i + (e[r] || "<?>") + (o === Lo ? "</svg>" : "");
@@ -495,13 +495,13 @@ class wo {
495
495
  return t.innerHTML = o, t;
496
496
  }
497
497
  }
498
- function J(e, o, r = e, t) {
498
+ function Q(e, o, r = e, t) {
499
499
  var i, n, a, l;
500
- if (o === I)
500
+ if (o === B)
501
501
  return o;
502
502
  let c = t !== void 0 ? (i = r.__directives) === null || i === void 0 ? void 0 : i[t] : r.__directive;
503
503
  const d = xo(o) ? void 0 : o._$litDirective$;
504
- return (c == null ? void 0 : c.constructor) !== d && ((n = c == null ? void 0 : c._$notifyDirectiveConnectionChanged) === null || n === void 0 || n.call(c, !1), d === void 0 ? c = void 0 : (c = new d(e), c._$initialize(e, r, t)), t !== void 0 ? ((a = (l = r).__directives) !== null && a !== void 0 ? a : l.__directives = [])[t] = c : r.__directive = c), c !== void 0 && (o = J(e, c._$resolve(e, o.values), c, t)), o;
504
+ return (c == null ? void 0 : c.constructor) !== d && ((n = c == null ? void 0 : c._$notifyDirectiveConnectionChanged) === null || n === void 0 || n.call(c, !1), d === void 0 ? c = void 0 : (c = new d(e), c._$initialize(e, r, t)), t !== void 0 ? ((a = (l = r).__directives) !== null && a !== void 0 ? a : l.__directives = [])[t] = c : r.__directive = c), c !== void 0 && (o = Q(e, c._$resolve(e, o.values), c, t)), o;
505
505
  }
506
506
  class Lr {
507
507
  constructor(o, r) {
@@ -564,14 +564,14 @@ class co {
564
564
  var t;
565
565
  if (this.parentNode === null)
566
566
  throw new Error("This `ChildPart` has no `parentNode` and therefore cannot accept a value. This likely means the element containing the part was manipulated in an unsupported way outside of Lit's control such that the part's marker nodes were ejected from DOM. For example, setting the element's `innerHTML` or `textContent` can do this.");
567
- if (o = J(this, o, r), xo(o))
567
+ if (o = Q(this, o, r), xo(o))
568
568
  o === k || o == null || o === "" ? (this._$committedValue !== k && (m == null || m({
569
569
  kind: "commit nothing to child",
570
570
  start: this._$startNode,
571
571
  end: this._$endNode,
572
572
  parent: this._$parent,
573
573
  options: this.options
574
- }), this._$clear()), this._$committedValue = k) : o !== this._$committedValue && o !== I && this._commitText(o);
574
+ }), this._$clear()), this._$committedValue = k) : o !== this._$committedValue && o !== B && this._commitText(o);
575
575
  else if (o._$litType$ !== void 0)
576
576
  this._commitTemplateResult(o);
577
577
  else if (o.nodeType !== void 0) {
@@ -589,7 +589,7 @@ class co {
589
589
  _commitNode(o) {
590
590
  var r;
591
591
  if (this._$committedValue !== o) {
592
- if (this._$clear(), G !== Wo) {
592
+ if (this._$clear(), J !== Wo) {
593
593
  const t = (r = this._$startNode.parentNode) === null || r === void 0 ? void 0 : r.nodeName;
594
594
  if (t === "STYLE" || t === "SCRIPT") {
595
595
  let i = "Forbidden";
@@ -699,18 +699,18 @@ class zo {
699
699
  const n = this.strings;
700
700
  let a = !1;
701
701
  if (n === void 0)
702
- o = J(this, o, r, 0), a = !xo(o) || o !== this._$committedValue && o !== I, a && (this._$committedValue = o);
702
+ o = Q(this, o, r, 0), a = !xo(o) || o !== this._$committedValue && o !== B, a && (this._$committedValue = o);
703
703
  else {
704
704
  const l = o;
705
705
  o = n[0];
706
706
  let c, d;
707
707
  for (c = 0; c < n.length - 1; c++)
708
- d = J(this, l[t + c], r, c), d === I && (d = this._$committedValue[c]), a || (a = !xo(d) || d !== this._$committedValue[c]), d === k ? o = k : o !== k && (o += (d != null ? d : "") + n[c + 1]), this._$committedValue[c] = d;
708
+ d = Q(this, l[t + c], r, c), d === B && (d = this._$committedValue[c]), a || (a = !xo(d) || d !== this._$committedValue[c]), d === k ? o = k : o !== k && (o += (d != null ? d : "") + n[c + 1]), this._$committedValue[c] = d;
709
709
  }
710
710
  a && !i && this._commitValue(o);
711
711
  }
712
712
  _commitValue(o) {
713
- o === k ? j(this.element).removeAttribute(this.name) : (this._sanitizer === void 0 && (this._sanitizer = G(this.element, this.name, "attribute")), o = this._sanitizer(o != null ? o : ""), m == null || m({
713
+ o === k ? j(this.element).removeAttribute(this.name) : (this._sanitizer === void 0 && (this._sanitizer = J(this.element, this.name, "attribute")), o = this._sanitizer(o != null ? o : ""), m == null || m({
714
714
  kind: "commit attribute",
715
715
  element: this.element,
716
716
  name: this.name,
@@ -724,7 +724,7 @@ class Ir extends zo {
724
724
  super(...arguments), this.type = jt;
725
725
  }
726
726
  _commitValue(o) {
727
- this._sanitizer === void 0 && (this._sanitizer = G(this.element, this.name, "property")), o = this._sanitizer(o), m == null || m({
727
+ this._sanitizer === void 0 && (this._sanitizer = J(this.element, this.name, "property")), o = this._sanitizer(o), m == null || m({
728
728
  kind: "commit property",
729
729
  element: this.element,
730
730
  name: this.name,
@@ -755,7 +755,7 @@ class Yr extends zo {
755
755
  }
756
756
  _$setValue(o, r = this) {
757
757
  var t;
758
- if (o = (t = J(this, o, r, 0)) !== null && t !== void 0 ? t : k, o === I)
758
+ if (o = (t = Q(this, o, r, 0)) !== null && t !== void 0 ? t : k, o === B)
759
759
  return;
760
760
  const i = this._$committedValue, n = o === k && i !== k || o.capture !== i.capture || o.once !== i.once || o.passive !== i.passive, a = o !== k && (i === k || n);
761
761
  m == null || m({
@@ -787,7 +787,7 @@ class Xr {
787
787
  element: this.element,
788
788
  value: o,
789
789
  options: this.options
790
- }), J(this, o);
790
+ }), Q(this, o);
791
791
  }
792
792
  }
793
793
  const Ut = {
@@ -798,7 +798,7 @@ const Ut = {
798
798
  _getTemplateHtml: Or,
799
799
  _TemplateInstance: Lr,
800
800
  _isIterable: Nr,
801
- _resolveDirective: J,
801
+ _resolveDirective: Q,
802
802
  _ChildPart: co,
803
803
  _AttributePart: zo,
804
804
  _BooleanAttributePart: Br,
@@ -871,7 +871,7 @@ class y extends U {
871
871
  super.disconnectedCallback(), (o = this.__childPart) === null || o === void 0 || o.setConnected(!1);
872
872
  }
873
873
  render() {
874
- return I;
874
+ return B;
875
875
  }
876
876
  }
877
877
  y.finalized = !0;
@@ -1840,7 +1840,7 @@ video {
1840
1840
  }
1841
1841
  `);
1842
1842
  customElements.get("w-alert") || customElements.define("w-alert", Ce);
1843
- const V = {
1843
+ const Z = {
1844
1844
  base: "border-2 relative",
1845
1845
  tooltip: "bg-gray-700 border-gray-700 text-white rounded-4 py-6 px-8",
1846
1846
  callout: "bg-green-100 border-green-400 py-8 px-16 rounded-8",
@@ -1849,7 +1849,7 @@ const V = {
1849
1849
  arrowTooltip: "bg-gray-700 border-gray-700",
1850
1850
  arrowCallout: "bg-green-100 border-green-400",
1851
1851
  arrowPopover: "bg-white border-white"
1852
- }, ro = {
1852
+ }, I = {
1853
1853
  box: "group block relative break-words last:mb-0 p-16 rounded-8",
1854
1854
  bleed: "-mx-16 sm:mx-0 rounded-l-0 rounded-r-0 sm:rounded-8",
1855
1855
  info: "i-bg-$color-box-info-background",
@@ -1904,7 +1904,7 @@ const V = {
1904
1904
  buttonSmallButtonLink: "p-0",
1905
1905
  buttonIsDisabled: "py-10 px-14 font-bold leading-24 max-w-max focusable justify-center transition-colors ease-in-out i-bg-$color-button-disabled-background! i-text-$color-button-disabled-text cursor-default pointer-events-none",
1906
1906
  buttonInProgress: "py-10 px-14 border-0 font-bold rounded-8 leading-24 max-w-max focusable justify-center transition-colors ease-in-out animate-inprogress i-text-$color-button-loading-text! pointer-events-none i-bg-$color-button-loading-background!"
1907
- }, W = {
1907
+ }, K = {
1908
1908
  default: "block text-16 mb-0 leading-22 i-text-$color-input-text-filled i-bg-$color-input-background i-border-$color-input-border hover:i-border-$color-input-border-hover active:i-border-$color-input-border-active rounded-4 py-12 px-8 block border-1 w-full focusable",
1909
1909
  disabled: "i-bg-$color-input-background-disabled i-border-$color-input-border-disabled hover:i-border-$color-input-border-disabled! i-text-$color-input-text-disabled pointer-events-none",
1910
1910
  invalid: "focusable i-border-$color-input-border-error i-text-$color-input-text-error!",
@@ -2004,7 +2004,7 @@ class Ht extends Ge {
2004
2004
  const l = !!r[a];
2005
2005
  l !== this._previousClasses.has(a) && !(!((i = this._staticClasses) === null || i === void 0) && i.has(a)) && (l ? (n.add(a), this._previousClasses.add(a)) : (n.remove(a), this._previousClasses.delete(a)));
2006
2006
  }
2007
- return I;
2007
+ return B;
2008
2008
  }
2009
2009
  }
2010
2010
  const Je = Ke(Ht), Wt = (e) => e.replace(/([a-z0-9])([A-Z])/g, "$1-$2").toLowerCase();
@@ -3821,7 +3821,7 @@ class Qe extends Ge {
3821
3821
  render(o) {
3822
3822
  if (o === k || o == null)
3823
3823
  return this._templateResult = void 0, this._value = o;
3824
- if (o === I)
3824
+ if (o === B)
3825
3825
  return o;
3826
3826
  if (typeof o != "string")
3827
3827
  throw new Error(`${this.constructor.directiveName}() called with a non-string value`);
@@ -3849,10 +3849,10 @@ class Re extends Go(y) {
3849
3849
  this._options = this.innerHTML;
3850
3850
  }
3851
3851
  render() {
3852
- return p`<div class="${X(this, Ho, Dr)}">
3852
+ return p`<div class="${V(this, Ho, Dr)}">
3853
3853
  ${No(
3854
3854
  this.label,
3855
- () => p`<label for="${X(this, io, Uo)}">
3855
+ () => p`<label for="${V(this, io, Uo)}">
3856
3856
  ${this.label}
3857
3857
  ${No(
3858
3858
  this.optional,
@@ -3862,18 +3862,18 @@ class Re extends Go(y) {
3862
3862
  )}
3863
3863
  <div class="input--select__wrap">
3864
3864
  <select
3865
- id="${X(this, io, Uo)}"
3865
+ id="${V(this, io, Uo)}"
3866
3866
  ?autofocus=${this.autoFocus}
3867
- aria-describedby="${z(X(this, ao, To))}"
3867
+ aria-describedby="${z(V(this, ao, To))}"
3868
3868
  aria-invalid="${z(this.invalid)}"
3869
- aria-errormessage="${z(this.invalid && X(this, ao, To))}"
3869
+ aria-errormessage="${z(this.invalid && V(this, ao, To))}"
3870
3870
  >
3871
3871
  ${Zr(this._options)}
3872
3872
  </select>
3873
3873
  </div>
3874
3874
  ${No(
3875
3875
  this.always || this.invalid,
3876
- () => p`<div id="${X(this, ao, To)}" class="input__sub-text">${this.hint}</div>`
3876
+ () => p`<div id="${V(this, ao, To)}" class="input__sub-text">${this.hint}</div>`
3877
3877
  )}
3878
3878
  </div>`;
3879
3879
  }
@@ -3885,7 +3885,7 @@ Ho = new WeakSet(), Dr = function() {
3885
3885
  }, io = new WeakSet(), Uo = function() {
3886
3886
  return "select_id";
3887
3887
  }, ao = new WeakSet(), To = function() {
3888
- return this.hint ? `${X(this, io, Uo)}__hint` : void 0;
3888
+ return this.hint ? `${V(this, io, Uo)}__hint` : void 0;
3889
3889
  }, x(Re, "properties", {
3890
3890
  autoFocus: { type: Boolean, reflect: !0 },
3891
3891
  invalid: { type: Boolean, reflect: !0 },
@@ -4706,11 +4706,11 @@ customElements.get("w-select") || customElements.define("w-select", Re);
4706
4706
  class Ee extends y {
4707
4707
  get _class() {
4708
4708
  return A({
4709
- [ro.box]: !0,
4710
- [ro.bleed]: this.bleed,
4711
- "bg-aqua-50": this.info,
4712
- "bg-bluegray-100": this.neutral,
4713
- "border-2 border-bluegray-300": this.bordered
4709
+ [I.box]: !0,
4710
+ [I.bleed]: this.bleed,
4711
+ [I.info]: this.info,
4712
+ [I.neutral]: this.neutral,
4713
+ [I.bordered]: this.bordered
4714
4714
  });
4715
4715
  }
4716
4716
  render() {
@@ -5224,7 +5224,6 @@ video {
5224
5224
  .bg-aqua-200,
5225
5225
  .bg-blue-200,
5226
5226
  .bg-blue-600,
5227
- .bg-bluegray-100,
5228
5227
  .bg-bluegray-200,
5229
5228
  .bg-bluegray-300,
5230
5229
  .bg-gray-100,
@@ -5537,7 +5536,7 @@ video {
5537
5536
  display: block;
5538
5537
  }
5539
5538
  ::slotted(:last-child) {
5540
- margin-bottom: 0px !important;
5539
+ margin-bottom: 0 !important;
5541
5540
  }
5542
5541
  `);
5543
5542
  customElements.get("w-box") || customElements.define("w-box", Ee);
@@ -7402,7 +7401,7 @@ const { _ChildPart: ai } = Ut, L = ((we = window.ShadyDOM) === null || we === vo
7402
7401
  }
7403
7402
  }
7404
7403
  return r;
7405
- }, K = (e, o, r = e) => (e._$setValue(o, r), e), ni = {}, li = (e, o = ni) => e._$committedValue = o, ci = (e) => e._$committedValue, ye = (e) => {
7404
+ }, G = (e, o, r = e) => (e._$setValue(o, r), e), ni = {}, li = (e, o = ni) => e._$committedValue = o, ci = (e) => e._$committedValue, ye = (e) => {
7406
7405
  var o;
7407
7406
  (o = e._$notifyConnectionChanged) === null || o === void 0 || o.call(e, !1, !0);
7408
7407
  let r = e._$startNode;
@@ -7456,13 +7455,13 @@ class di extends Ge {
7456
7455
  else if (a[h] === null)
7457
7456
  h--;
7458
7457
  else if (d[s] === c[v])
7459
- u[v] = K(a[s], l[v]), s++, v++;
7458
+ u[v] = G(a[s], l[v]), s++, v++;
7460
7459
  else if (d[h] === c[f])
7461
- u[f] = K(a[h], l[f]), h--, f--;
7460
+ u[f] = G(a[h], l[f]), h--, f--;
7462
7461
  else if (d[s] === c[f])
7463
- u[f] = K(a[s], l[f]), ho(o, u[f + 1], a[s]), s++, f--;
7462
+ u[f] = G(a[s], l[f]), ho(o, u[f + 1], a[s]), s++, f--;
7464
7463
  else if (d[h] === c[v])
7465
- u[v] = K(a[h], l[v]), ho(o, a[s], a[h]), h--, v++;
7464
+ u[v] = G(a[h], l[v]), ho(o, a[s], a[h]), h--, v++;
7466
7465
  else if (b === void 0 && (b = wr(c, v, f), g = wr(d, s, h)), !b.has(d[s]))
7467
7466
  ye(a[s]), s++;
7468
7467
  else if (!b.has(d[h]))
@@ -7471,20 +7470,20 @@ class di extends Ge {
7471
7470
  const w = g.get(c[v]), $ = w !== void 0 ? a[w] : null;
7472
7471
  if ($ === null) {
7473
7472
  const S = ho(o, a[s]);
7474
- K(S, l[v]), u[v] = S;
7473
+ G(S, l[v]), u[v] = S;
7475
7474
  } else
7476
- u[v] = K($, l[v]), ho(o, a[s], $), a[w] = null;
7475
+ u[v] = G($, l[v]), ho(o, a[s], $), a[w] = null;
7477
7476
  v++;
7478
7477
  }
7479
7478
  for (; v <= f; ) {
7480
7479
  const w = ho(o, u[f + 1]);
7481
- K(w, l[v]), u[v++] = w;
7480
+ G(w, l[v]), u[v++] = w;
7482
7481
  }
7483
7482
  for (; s <= h; ) {
7484
7483
  const w = a[s++];
7485
7484
  w !== null && ye(w);
7486
7485
  }
7487
- return this._itemKeys = c, li(o, u), I;
7486
+ return this._itemKeys = c, li(o, u), B;
7488
7487
  }
7489
7488
  }
7490
7489
  const ot = Ke(di);
@@ -9495,7 +9494,7 @@ const pi = (e) => ({
9495
9494
  }, b = So(a), g = Jo(a), s = er(b), h = await c.getDimensions(r), v = b === "y" ? "top" : "left", f = b === "y" ? "bottom" : "right", w = l.reference[s] + l.reference[b] - u[b] - l.floating[s], $ = u[b] - l.reference[b], S = await (c.getOffsetParent == null ? void 0 : c.getOffsetParent(r));
9496
9495
  let _ = S ? b === "y" ? S.clientHeight || 0 : S.clientWidth || 0 : 0;
9497
9496
  _ === 0 && (_ = l.floating[s]);
9498
- const oo = w / 2 - $ / 2, eo = d[v], so = _ - h[s] - d[f], F = _ / 2 - h[s] / 2 + oo, M = Pe(eo, F, so), qo = (g === "start" ? d[v] : d[f]) > 0 && F !== M && l.reference[s] <= l.floating[s] ? F < eo ? eo - F : so - F : 0;
9497
+ const eo = w / 2 - $ / 2, ro = d[v], so = _ - h[s] - d[f], F = _ / 2 - h[s] / 2 + eo, M = Pe(ro, F, so), qo = (g === "start" ? d[v] : d[f]) > 0 && F !== M && l.reference[s] <= l.floating[s] ? F < ro ? ro - F : so - F : 0;
9499
9498
  return {
9500
9499
  [b]: u[b] - qo,
9501
9500
  data: {
@@ -9554,7 +9553,7 @@ const xi = function(e) {
9554
9553
  flipAlignment: s = !0,
9555
9554
  ...h
9556
9555
  } = e, v = _o(t), w = b || (v === a || !s ? [Xo(a)] : fi(a)), $ = [a, ...w], S = await rt(o, h), _ = [];
9557
- let oo = ((r = i.flip) == null ? void 0 : r.overflows) || [];
9556
+ let eo = ((r = i.flip) == null ? void 0 : r.overflows) || [];
9558
9557
  if (d && _.push(S[v]), u) {
9559
9558
  const {
9560
9559
  main: M,
@@ -9562,17 +9561,17 @@ const xi = function(e) {
9562
9561
  } = mi(t, n, await (l.isRTL == null ? void 0 : l.isRTL(c.floating)));
9563
9562
  _.push(S[M], S[bo]);
9564
9563
  }
9565
- if (oo = [...oo, {
9564
+ if (eo = [...eo, {
9566
9565
  placement: t,
9567
9566
  overflows: _
9568
9567
  }], !_.every((M) => M <= 0)) {
9569
- var eo, so;
9570
- const M = ((eo = (so = i.flip) == null ? void 0 : so.index) != null ? eo : 0) + 1, bo = $[M];
9568
+ var ro, so;
9569
+ const M = ((ro = (so = i.flip) == null ? void 0 : so.index) != null ? ro : 0) + 1, bo = $[M];
9571
9570
  if (bo)
9572
9571
  return {
9573
9572
  data: {
9574
9573
  index: M,
9575
- overflows: oo
9574
+ overflows: eo
9576
9575
  },
9577
9576
  reset: {
9578
9577
  placement: bo
@@ -9582,7 +9581,7 @@ const xi = function(e) {
9582
9581
  switch (g) {
9583
9582
  case "bestFit": {
9584
9583
  var F;
9585
- const qo = (F = oo.map((Ro) => [Ro, Ro.overflows.filter((uo) => uo > 0).reduce((uo, gt) => uo + gt, 0)]).sort((Ro, uo) => Ro[1] - uo[1])[0]) == null ? void 0 : F[0].placement;
9584
+ const qo = (F = eo.map((Ro) => [Ro, Ro.overflows.filter((uo) => uo > 0).reduce((uo, gt) => uo + gt, 0)]).sort((Ro, uo) => Ro[1] - uo[1])[0]) == null ? void 0 : F[0].placement;
9586
9585
  qo && (go = qo);
9587
9586
  break;
9588
9587
  }
@@ -9705,7 +9704,7 @@ const $i = function(e) {
9705
9704
  function tt(e) {
9706
9705
  return e && e.document && e.location && e.alert && e.setInterval;
9707
9706
  }
9708
- function Y(e) {
9707
+ function X(e) {
9709
9708
  if (e == null)
9710
9709
  return window;
9711
9710
  if (!tt(e)) {
@@ -9715,9 +9714,9 @@ function Y(e) {
9715
9714
  return e;
9716
9715
  }
9717
9716
  function Co(e) {
9718
- return Y(e).getComputedStyle(e);
9717
+ return X(e).getComputedStyle(e);
9719
9718
  }
9720
- function B(e) {
9719
+ function Y(e) {
9721
9720
  return tt(e) ? "" : e ? (e.nodeName || "").toLowerCase() : "";
9722
9721
  }
9723
9722
  function it() {
@@ -9725,18 +9724,18 @@ function it() {
9725
9724
  return e != null && e.brands ? e.brands.map((o) => o.brand + "/" + o.version).join(" ") : navigator.userAgent;
9726
9725
  }
9727
9726
  function T(e) {
9728
- return e instanceof Y(e).HTMLElement;
9727
+ return e instanceof X(e).HTMLElement;
9729
9728
  }
9730
9729
  function lo(e) {
9731
- return e instanceof Y(e).Element;
9730
+ return e instanceof X(e).Element;
9732
9731
  }
9733
9732
  function zi(e) {
9734
- return e instanceof Y(e).Node;
9733
+ return e instanceof X(e).Node;
9735
9734
  }
9736
9735
  function rr(e) {
9737
9736
  if (typeof ShadowRoot > "u")
9738
9737
  return !1;
9739
- const o = Y(e).ShadowRoot;
9738
+ const o = X(e).ShadowRoot;
9740
9739
  return e instanceof o || e instanceof ShadowRoot;
9741
9740
  }
9742
9741
  function Qo(e) {
@@ -9748,7 +9747,7 @@ function Qo(e) {
9748
9747
  return /auto|scroll|overlay|hidden/.test(o + t + r);
9749
9748
  }
9750
9749
  function _i(e) {
9751
- return ["table", "td", "th"].includes(B(e));
9750
+ return ["table", "td", "th"].includes(Y(e));
9752
9751
  }
9753
9752
  function at(e) {
9754
9753
  const o = /firefox/i.test(it()), r = Co(e);
@@ -9758,13 +9757,13 @@ function nt() {
9758
9757
  return !/^((?!chrome|android).)*safari/i.test(it());
9759
9758
  }
9760
9759
  const $r = Math.min, mo = Math.max, Vo = Math.round;
9761
- function Q(e, o, r) {
9760
+ function oo(e, o, r) {
9762
9761
  var t, i, n, a;
9763
9762
  o === void 0 && (o = !1), r === void 0 && (r = !1);
9764
9763
  const l = e.getBoundingClientRect();
9765
9764
  let c = 1, d = 1;
9766
9765
  o && T(e) && (c = e.offsetWidth > 0 && Vo(l.width) / e.offsetWidth || 1, d = e.offsetHeight > 0 && Vo(l.height) / e.offsetHeight || 1);
9767
- const u = lo(e) ? Y(e) : window, b = !nt() && r, g = (l.left + (b && (t = (i = u.visualViewport) == null ? void 0 : i.offsetLeft) != null ? t : 0)) / c, s = (l.top + (b && (n = (a = u.visualViewport) == null ? void 0 : a.offsetTop) != null ? n : 0)) / d, h = l.width / c, v = l.height / d;
9766
+ const u = lo(e) ? X(e) : window, b = !nt() && r, g = (l.left + (b && (t = (i = u.visualViewport) == null ? void 0 : i.offsetLeft) != null ? t : 0)) / c, s = (l.top + (b && (n = (a = u.visualViewport) == null ? void 0 : a.offsetTop) != null ? n : 0)) / d, h = l.width / c, v = l.height / d;
9768
9767
  return {
9769
9768
  width: h,
9770
9769
  height: v,
@@ -9776,7 +9775,7 @@ function Q(e, o, r) {
9776
9775
  y: s
9777
9776
  };
9778
9777
  }
9779
- function D(e) {
9778
+ function H(e) {
9780
9779
  return ((zi(e) ? e.ownerDocument : e.document) || window.document).documentElement;
9781
9780
  }
9782
9781
  function oe(e) {
@@ -9789,14 +9788,14 @@ function oe(e) {
9789
9788
  };
9790
9789
  }
9791
9790
  function lt(e) {
9792
- return Q(D(e)).left + oe(e).scrollLeft;
9791
+ return oo(H(e)).left + oe(e).scrollLeft;
9793
9792
  }
9794
9793
  function Si(e) {
9795
- const o = Q(e);
9794
+ const o = oo(e);
9796
9795
  return Vo(o.width) !== e.offsetWidth || Vo(o.height) !== e.offsetHeight;
9797
9796
  }
9798
9797
  function Ci(e, o, r) {
9799
- const t = T(o), i = D(o), n = Q(
9798
+ const t = T(o), i = H(o), n = oo(
9800
9799
  e,
9801
9800
  t && Si(o),
9802
9801
  r === "fixed"
@@ -9810,8 +9809,8 @@ function Ci(e, o, r) {
9810
9809
  y: 0
9811
9810
  };
9812
9811
  if (t || !t && r !== "fixed")
9813
- if ((B(o) !== "body" || Qo(i)) && (a = oe(o)), T(o)) {
9814
- const c = Q(o, !0);
9812
+ if ((Y(o) !== "body" || Qo(i)) && (a = oe(o)), T(o)) {
9813
+ const c = oo(o, !0);
9815
9814
  l.x = c.x + o.clientLeft, l.y = c.y + o.clientTop;
9816
9815
  } else
9817
9816
  i && (l.x = lt(i));
@@ -9823,14 +9822,14 @@ function Ci(e, o, r) {
9823
9822
  };
9824
9823
  }
9825
9824
  function ct(e) {
9826
- return B(e) === "html" ? e : e.assignedSlot || e.parentNode || (rr(e) ? e.host : null) || D(e);
9825
+ return Y(e) === "html" ? e : e.assignedSlot || e.parentNode || (rr(e) ? e.host : null) || H(e);
9827
9826
  }
9828
9827
  function zr(e) {
9829
9828
  return !T(e) || getComputedStyle(e).position === "fixed" ? null : e.offsetParent;
9830
9829
  }
9831
9830
  function qi(e) {
9832
9831
  let o = ct(e);
9833
- for (rr(o) && (o = o.host); T(o) && !["html", "body"].includes(B(o)); ) {
9832
+ for (rr(o) && (o = o.host); T(o) && !["html", "body"].includes(Y(o)); ) {
9834
9833
  if (at(o))
9835
9834
  return o;
9836
9835
  o = o.parentNode;
@@ -9838,11 +9837,11 @@ function qi(e) {
9838
9837
  return null;
9839
9838
  }
9840
9839
  function Ne(e) {
9841
- const o = Y(e);
9840
+ const o = X(e);
9842
9841
  let r = zr(e);
9843
9842
  for (; r && _i(r) && getComputedStyle(r).position === "static"; )
9844
9843
  r = zr(r);
9845
- return r && (B(r) === "html" || B(r) === "body" && getComputedStyle(r).position === "static" && !at(r)) ? o : r || qi(e) || o;
9844
+ return r && (Y(r) === "html" || Y(r) === "body" && getComputedStyle(r).position === "static" && !at(r)) ? o : r || qi(e) || o;
9846
9845
  }
9847
9846
  function _r(e) {
9848
9847
  if (T(e))
@@ -9850,7 +9849,7 @@ function _r(e) {
9850
9849
  width: e.offsetWidth,
9851
9850
  height: e.offsetHeight
9852
9851
  };
9853
- const o = Q(e);
9852
+ const o = oo(e);
9854
9853
  return {
9855
9854
  width: o.width,
9856
9855
  height: o.height
@@ -9862,7 +9861,7 @@ function Ri(e) {
9862
9861
  offsetParent: r,
9863
9862
  strategy: t
9864
9863
  } = e;
9865
- const i = T(r), n = D(r);
9864
+ const i = T(r), n = H(r);
9866
9865
  if (r === n)
9867
9866
  return o;
9868
9867
  let a = {
@@ -9873,8 +9872,8 @@ function Ri(e) {
9873
9872
  x: 0,
9874
9873
  y: 0
9875
9874
  };
9876
- if ((i || !i && t !== "fixed") && ((B(r) !== "body" || Qo(n)) && (a = oe(r)), T(r))) {
9877
- const c = Q(r, !0);
9875
+ if ((i || !i && t !== "fixed") && ((Y(r) !== "body" || Qo(n)) && (a = oe(r)), T(r))) {
9876
+ const c = oo(r, !0);
9878
9877
  l.x = c.x + r.clientLeft, l.y = c.y + r.clientTop;
9879
9878
  }
9880
9879
  return {
@@ -9884,7 +9883,7 @@ function Ri(e) {
9884
9883
  };
9885
9884
  }
9886
9885
  function Ei(e, o) {
9887
- const r = Y(e), t = D(e), i = r.visualViewport;
9886
+ const r = X(e), t = H(e), i = r.visualViewport;
9888
9887
  let n = t.clientWidth, a = t.clientHeight, l = 0, c = 0;
9889
9888
  if (i) {
9890
9889
  n = i.width, a = i.height;
@@ -9900,7 +9899,7 @@ function Ei(e, o) {
9900
9899
  }
9901
9900
  function ji(e) {
9902
9901
  var o;
9903
- const r = D(e), t = oe(e), i = (o = e.ownerDocument) == null ? void 0 : o.body, n = mo(r.scrollWidth, r.clientWidth, i ? i.scrollWidth : 0, i ? i.clientWidth : 0), a = mo(r.scrollHeight, r.clientHeight, i ? i.scrollHeight : 0, i ? i.clientHeight : 0);
9902
+ const r = H(e), t = oe(e), i = (o = e.ownerDocument) == null ? void 0 : o.body, n = mo(r.scrollWidth, r.clientWidth, i ? i.scrollWidth : 0, i ? i.clientWidth : 0), a = mo(r.scrollHeight, r.clientHeight, i ? i.scrollHeight : 0, i ? i.clientHeight : 0);
9904
9903
  let l = -t.scrollLeft + lt(e);
9905
9904
  const c = -t.scrollTop;
9906
9905
  return Co(i || r).direction === "rtl" && (l += mo(r.clientWidth, i ? i.clientWidth : 0) - n), {
@@ -9912,12 +9911,12 @@ function ji(e) {
9912
9911
  }
9913
9912
  function dt(e) {
9914
9913
  const o = ct(e);
9915
- return ["html", "body", "#document"].includes(B(o)) ? e.ownerDocument.body : T(o) && Qo(o) ? o : dt(o);
9914
+ return ["html", "body", "#document"].includes(Y(o)) ? e.ownerDocument.body : T(o) && Qo(o) ? o : dt(o);
9916
9915
  }
9917
9916
  function st(e, o) {
9918
9917
  var r;
9919
9918
  o === void 0 && (o = []);
9920
- const t = dt(e), i = t === ((r = e.ownerDocument) == null ? void 0 : r.body), n = Y(t), a = i ? [n].concat(n.visualViewport || [], Qo(t) ? t : []) : t, l = o.concat(a);
9919
+ const t = dt(e), i = t === ((r = e.ownerDocument) == null ? void 0 : r.body), n = X(t), a = i ? [n].concat(n.visualViewport || [], Qo(t) ? t : []) : t, l = o.concat(a);
9921
9920
  return i ? l : l.concat(st(a));
9922
9921
  }
9923
9922
  function Ai(e, o) {
@@ -9935,7 +9934,7 @@ function Ai(e, o) {
9935
9934
  return !1;
9936
9935
  }
9937
9936
  function Mi(e, o) {
9938
- const r = Q(e, !1, o === "fixed"), t = r.top + e.clientTop, i = r.left + e.clientLeft;
9937
+ const r = oo(e, !1, o === "fixed"), t = r.top + e.clientTop, i = r.left + e.clientLeft;
9939
9938
  return {
9940
9939
  top: t,
9941
9940
  left: i,
@@ -9948,11 +9947,11 @@ function Mi(e, o) {
9948
9947
  };
9949
9948
  }
9950
9949
  function Sr(e, o, r) {
9951
- return o === "viewport" ? Yo(Ei(e, r)) : lo(o) ? Mi(o, r) : Yo(ji(D(e)));
9950
+ return o === "viewport" ? Yo(Ei(e, r)) : lo(o) ? Mi(o, r) : Yo(ji(H(e)));
9952
9951
  }
9953
9952
  function Pi(e) {
9954
9953
  const o = st(e), t = ["absolute", "fixed"].includes(Co(e).position) && T(e) ? Ne(e) : e;
9955
- return lo(t) ? o.filter((i) => lo(i) && Ai(i, t) && B(i) !== "body") : [];
9954
+ return lo(t) ? o.filter((i) => lo(i) && Ai(i, t) && Y(i) !== "body") : [];
9956
9955
  }
9957
9956
  function Ni(e) {
9958
9957
  let {
@@ -9978,7 +9977,7 @@ const Ui = {
9978
9977
  isElement: lo,
9979
9978
  getDimensions: _r,
9980
9979
  getOffsetParent: Ne,
9981
- getDocumentElement: D,
9980
+ getDocumentElement: H,
9982
9981
  getElementRects: (e) => {
9983
9982
  let {
9984
9983
  reference: o,
@@ -10100,22 +10099,22 @@ ${JSON.stringify(
10100
10099
  }
10101
10100
  get _wrapperClasses() {
10102
10101
  return mr({
10103
- [V.base]: !0,
10104
- [V.tooltip]: this.tooltip,
10105
- [V.callout]: this.callout,
10106
- [V.popover]: this.popover
10102
+ [Z.base]: !0,
10103
+ [Z.tooltip]: this.tooltip,
10104
+ [Z.callout]: this.callout,
10105
+ [Z.popover]: this.popover
10107
10106
  });
10108
10107
  }
10109
10108
  get _arrowClasses() {
10110
10109
  return mr({
10111
- [V.arrowBase]: !0,
10110
+ [Z.arrowBase]: !0,
10112
10111
  ["-top-8"]: this._arrowDirection === "top",
10113
10112
  ["-right-8"]: this._arrowDirection === "right",
10114
10113
  ["-bottom-8"]: this._arrowDirection === "bottom",
10115
10114
  ["-left-8"]: this._arrowDirection === "left",
10116
- [V.arrowTooltip]: this.tooltip,
10117
- [V.arrowCallout]: this.callout,
10118
- [V.arrowPopover]: this.popover
10115
+ [Z.arrowTooltip]: this.tooltip,
10116
+ [Z.arrowCallout]: this.callout,
10117
+ [Z.arrowPopover]: this.popover
10119
10118
  });
10120
10119
  }
10121
10120
  get _arrowHtml() {
@@ -10991,12 +10990,12 @@ class Te extends y {
10991
10990
  }
10992
10991
  get _inputStyles() {
10993
10992
  return A({
10994
- [W.default]: !0,
10995
- [W.invalid]: this.invalid,
10996
- [W.disabled]: this.disabled,
10997
- [W.readOnly]: this.readOnly,
10998
- [W.suffix]: this._hasSuffix,
10999
- [W.prefix]: this._hasPrefix
10993
+ [K.default]: !0,
10994
+ [K.invalid]: this.invalid,
10995
+ [K.disabled]: this.disabled,
10996
+ [K.readOnly]: this.readOnly,
10997
+ [K.suffix]: this._hasSuffix,
10998
+ [K.prefix]: this._hasPrefix
11000
10999
  });
11001
11000
  }
11002
11001
  get _helpTextStyles() {
@@ -11045,7 +11044,7 @@ class Te extends y {
11045
11044
  render() {
11046
11045
  return p`
11047
11046
  ${this._label}
11048
- <div class="${W.wrapper}">
11047
+ <div class="${K.wrapper}">
11049
11048
  <slot @slotchange="${this.prefixSlotChange}" name="prefix"></slot>
11050
11049
  <input
11051
11050
  class="${this._inputStyles}"
@@ -11930,7 +11929,7 @@ class Fe extends Go(y) {
11930
11929
  return p`<div
11931
11930
  class=${A({
11932
11931
  [this.contentClass || ""]: !0,
11933
- [ro.box + (this._hasTitle ? " pt-0" : "")]: this.box
11932
+ [I.box + (this._hasTitle ? " pt-0" : "")]: this.box
11934
11933
  })}
11935
11934
  >
11936
11935
  <slot></slot>
@@ -11940,8 +11939,8 @@ class Fe extends Go(y) {
11940
11939
  return p` <div
11941
11940
  class=${A({
11942
11941
  "bg-aqua-50": this.info,
11943
- ["py-0 px-0 " + ro.box]: this.box,
11944
- [ro.bleed]: this.bleed
11942
+ ["py-0 px-0 " + I.box]: this.box,
11943
+ [I.bleed]: this.bleed
11945
11944
  })}
11946
11945
  >
11947
11946
  ${this._hasTitle ? p`<w-unstyled-heading level=${this.headingLevel}>
@@ -11951,7 +11950,7 @@ class Fe extends Go(y) {
11951
11950
  class=${A({
11952
11951
  [this.buttonClass || ""]: !0,
11953
11952
  [Vt + " hover:underline focus:underline"]: !0,
11954
- ["w-full text-left relative " + ro.box]: this.box,
11953
+ ["w-full text-left relative " + I.box]: this.box,
11955
11954
  "hover:text-aqua-700 active:text-aqua-800": this.info
11956
11955
  })}
11957
11956
  @click=${() => this.expanded = !this.expanded}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@warp-ds/elements",
3
3
  "type": "module",
4
- "version": "1.0.0-alpha.11",
4
+ "version": "1.0.0-alpha.12",
5
5
  "description": "Custom elements for Warp",
6
6
  "exports": {
7
7
  ".": "./dist/index.js",