@breadstone/mosaik-elements-svelte 0.0.160 → 0.0.161

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 (3) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/index.mjs +205 -130
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.0.161 (2025-10-22)
2
+
3
+ This was a version bump only for mosaik-elements-svelte to align it with other projects, there were no code changes.
4
+
1
5
  ## 0.0.160 (2025-10-21)
2
6
 
3
7
  This was a version bump only for mosaik-elements-svelte to align it with other projects, there were no code changes.
package/index.mjs CHANGED
@@ -1246,9 +1246,9 @@ function QR(o, t, e, r, a) {
1246
1246
  var n = t.$$slots?.[e], i = !1;
1247
1247
  n === !0 && (n = t.children, i = !0), n === void 0 || n(o, i ? () => r : r);
1248
1248
  }
1249
- const tA = Symbol("is custom element"), eA = Symbol("is html");
1250
- function oA(o, t, e, r) {
1251
- var a = rA(o);
1249
+ const t2 = Symbol("is custom element"), e2 = Symbol("is html");
1250
+ function o2(o, t, e, r) {
1251
+ var a = r2(o);
1252
1252
  a[t] !== (a[t] = e) && (t === "loading" && (o[cR] = e), e == null ? o.removeAttribute(t) : typeof e != "string" && $z(o).includes(t) ? o[t] = e : o.setAttribute(t, e));
1253
1253
  }
1254
1254
  function oo(o, t, e) {
@@ -1260,18 +1260,18 @@ function oo(o, t, e) {
1260
1260
  // because during their upgrade/instantiation they might add more setters.
1261
1261
  // Instead, fall back to a simple "an object, then set as property" heuristic.
1262
1262
  (Iv.has(o.getAttribute("is") || o.nodeName) || // customElements may not be available in browser extension contexts
1263
- !customElements || customElements.get(o.getAttribute("is") || o.tagName.toLowerCase()) ? $z(o).includes(t) : e && typeof e == "object") ? o[t] = e : oA(o, t, e == null ? e : String(e));
1263
+ !customElements || customElements.get(o.getAttribute("is") || o.tagName.toLowerCase()) ? $z(o).includes(t) : e && typeof e == "object") ? o[t] = e : o2(o, t, e == null ? e : String(e));
1264
1264
  } finally {
1265
1265
  ts(r), rd(a);
1266
1266
  }
1267
1267
  }
1268
- function rA(o) {
1268
+ function r2(o) {
1269
1269
  return (
1270
1270
  /** @type {Record<string | symbol, unknown>} **/
1271
1271
  // @ts-expect-error
1272
1272
  o.__attributes ??= {
1273
- [tA]: o.nodeName.includes("-"),
1274
- [eA]: o.namespaceURI === oR
1273
+ [t2]: o.nodeName.includes("-"),
1274
+ [e2]: o.namespaceURI === oR
1275
1275
  }
1276
1276
  );
1277
1277
  }
@@ -1291,7 +1291,7 @@ function $z(o) {
1291
1291
  function a_(o, t) {
1292
1292
  return o === t || o?.[sc] === t;
1293
1293
  }
1294
- function nA(o = {}, t, e, r) {
1294
+ function n2(o = {}, t, e, r) {
1295
1295
  return NR(() => {
1296
1296
  var a, n;
1297
1297
  return BR(() => {
@@ -1305,7 +1305,7 @@ function nA(o = {}, t, e, r) {
1305
1305
  };
1306
1306
  }), o;
1307
1307
  }
1308
- function aA(o = !1) {
1308
+ function a2(o = !1) {
1309
1309
  const t = (
1310
1310
  /** @type {ComponentContextLegacy} */
1311
1311
  Cr
@@ -1344,7 +1344,7 @@ function i_(o, t) {
1344
1344
  t();
1345
1345
  }
1346
1346
  let Yf = !1;
1347
- function iA(o) {
1347
+ function i2(o) {
1348
1348
  var t = Yf;
1349
1349
  try {
1350
1350
  return Yf = !1, [o(), Yf];
@@ -1363,7 +1363,7 @@ function ro(o, t, e, r) {
1363
1363
  d = fb(o, t)?.set ?? (c && t in o ? (x) => o[t] = x : void 0);
1364
1364
  }
1365
1365
  var h, p = !1;
1366
- [h, p] = iA(() => (
1366
+ [h, p] = i2(() => (
1367
1367
  /** @type {V} */
1368
1368
  o[t]
1369
1369
  ));
@@ -1440,7 +1440,7 @@ const pw = (o) => new Oz(typeof o == "string" ? o : o + "", void 0, hw), Tz = (o
1440
1440
  throw Error("Value passed to 'css' function must be a 'css' function result: " + i + ". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.");
1441
1441
  })(a) + o[n + 1]), o[0]);
1442
1442
  return new Oz(e, o, hw);
1443
- }, sA = (o, t) => {
1443
+ }, s2 = (o, t) => {
1444
1444
  if (cw) o.adoptedStyleSheets = t.map(((e) => e instanceof CSSStyleSheet ? e : e.styleSheet));
1445
1445
  else for (const e of t) {
1446
1446
  const r = document.createElement("style"), a = bb.litNonce;
@@ -1456,10 +1456,10 @@ const pw = (o) => new Oz(typeof o == "string" ? o : o + "", void 0, hw), Tz = (o
1456
1456
  * Copyright 2017 Google LLC
1457
1457
  * SPDX-License-Identifier: BSD-3-Clause
1458
1458
  */
1459
- const { is: lA, defineProperty: dA, getOwnPropertyDescriptor: cA, getOwnPropertyNames: hA, getOwnPropertySymbols: pA, getPrototypeOf: uA } = Object, Fm = globalThis, l_ = Fm.trustedTypes, gA = l_ ? l_.emptyScript : "", fA = Fm.reactiveElementPolyfillSupport, Su = (o, t) => o, Db = { toAttribute(o, t) {
1459
+ const { is: l2, defineProperty: d2, getOwnPropertyDescriptor: c2, getOwnPropertyNames: h2, getOwnPropertySymbols: p2, getPrototypeOf: u2 } = Object, Fm = globalThis, l_ = Fm.trustedTypes, g2 = l_ ? l_.emptyScript : "", f2 = Fm.reactiveElementPolyfillSupport, Su = (o, t) => o, Db = { toAttribute(o, t) {
1460
1460
  switch (t) {
1461
1461
  case Boolean:
1462
- o = o ? gA : null;
1462
+ o = o ? g2 : null;
1463
1463
  break;
1464
1464
  case Object:
1465
1465
  case Array:
@@ -1484,7 +1484,7 @@ const { is: lA, defineProperty: dA, getOwnPropertyDescriptor: cA, getOwnProperty
1484
1484
  }
1485
1485
  }
1486
1486
  return e;
1487
- } }, uw = (o, t) => !lA(o, t), d_ = { attribute: !0, type: String, converter: Db, reflect: !1, useDefault: !1, hasChanged: uw };
1487
+ } }, uw = (o, t) => !l2(o, t), d_ = { attribute: !0, type: String, converter: Db, reflect: !1, useDefault: !1, hasChanged: uw };
1488
1488
  Symbol.metadata ??= Symbol("metadata"), Fm.litPropertyMetadata ??= /* @__PURE__ */ new WeakMap();
1489
1489
  let jh = class extends HTMLElement {
1490
1490
  static addInitializer(t) {
@@ -1496,11 +1496,11 @@ let jh = class extends HTMLElement {
1496
1496
  static createProperty(t, e = d_) {
1497
1497
  if (e.state && (e.attribute = !1), this._$Ei(), this.prototype.hasOwnProperty(t) && ((e = Object.create(e)).wrapped = !0), this.elementProperties.set(t, e), !e.noAccessor) {
1498
1498
  const r = Symbol(), a = this.getPropertyDescriptor(t, r, e);
1499
- a !== void 0 && dA(this.prototype, t, a);
1499
+ a !== void 0 && d2(this.prototype, t, a);
1500
1500
  }
1501
1501
  }
1502
1502
  static getPropertyDescriptor(t, e, r) {
1503
- const { get: a, set: n } = cA(this.prototype, t) ?? { get() {
1503
+ const { get: a, set: n } = c2(this.prototype, t) ?? { get() {
1504
1504
  return this[e];
1505
1505
  }, set(i) {
1506
1506
  this[e] = i;
@@ -1515,13 +1515,13 @@ let jh = class extends HTMLElement {
1515
1515
  }
1516
1516
  static _$Ei() {
1517
1517
  if (this.hasOwnProperty(Su("elementProperties"))) return;
1518
- const t = uA(this);
1518
+ const t = u2(this);
1519
1519
  t.finalize(), t.l !== void 0 && (this.l = [...t.l]), this.elementProperties = new Map(t.elementProperties);
1520
1520
  }
1521
1521
  static finalize() {
1522
1522
  if (this.hasOwnProperty(Su("finalized"))) return;
1523
1523
  if (this.finalized = !0, this._$Ei(), this.hasOwnProperty(Su("properties"))) {
1524
- const e = this.properties, r = [...hA(e), ...pA(e)];
1524
+ const e = this.properties, r = [...h2(e), ...p2(e)];
1525
1525
  for (const a of r) this.createProperty(a, e[a]);
1526
1526
  }
1527
1527
  const t = this[Symbol.metadata];
@@ -1567,7 +1567,7 @@ let jh = class extends HTMLElement {
1567
1567
  }
1568
1568
  createRenderRoot() {
1569
1569
  const t = this.shadowRoot ?? this.attachShadow(this.constructor.shadowRootOptions);
1570
- return sA(t, this.constructor.elementStyles), t;
1570
+ return s2(t, this.constructor.elementStyles), t;
1571
1571
  }
1572
1572
  connectedCallback() {
1573
1573
  this.renderRoot ??= this.createRenderRoot(), this.enableUpdating(!0), this._$EO?.forEach(((t) => t.hostConnected?.()));
@@ -1667,20 +1667,20 @@ let jh = class extends HTMLElement {
1667
1667
  firstUpdated(t) {
1668
1668
  }
1669
1669
  };
1670
- jh.elementStyles = [], jh.shadowRootOptions = { mode: "open" }, jh[Su("elementProperties")] = /* @__PURE__ */ new Map(), jh[Su("finalized")] = /* @__PURE__ */ new Map(), fA?.({ ReactiveElement: jh }), (Fm.reactiveElementVersions ??= []).push("2.1.1");
1670
+ jh.elementStyles = [], jh.shadowRootOptions = { mode: "open" }, jh[Su("elementProperties")] = /* @__PURE__ */ new Map(), jh[Su("finalized")] = /* @__PURE__ */ new Map(), f2?.({ ReactiveElement: jh }), (Fm.reactiveElementVersions ??= []).push("2.1.1");
1671
1671
  /**
1672
1672
  * @license
1673
1673
  * Copyright 2017 Google LLC
1674
1674
  * SPDX-License-Identifier: BSD-3-Clause
1675
1675
  */
1676
- const gw = globalThis, Lb = gw.trustedTypes, c_ = Lb ? Lb.createPolicy("lit-html", { createHTML: (o) => o }) : void 0, Pz = "$lit$", Fl = `lit$${Math.random().toFixed(9).slice(2)}$`, Dz = "?" + Fl, bA = `<${Dz}>`, pc = document, Du = () => pc.createComment(""), Lu = (o) => o === null || typeof o != "object" && typeof o != "function", fw = Array.isArray, mA = (o) => fw(o) || typeof o?.[Symbol.iterator] == "function", Qy = `[
1676
+ const gw = globalThis, Lb = gw.trustedTypes, c_ = Lb ? Lb.createPolicy("lit-html", { createHTML: (o) => o }) : void 0, Pz = "$lit$", Fl = `lit$${Math.random().toFixed(9).slice(2)}$`, Dz = "?" + Fl, b2 = `<${Dz}>`, pc = document, Du = () => pc.createComment(""), Lu = (o) => o === null || typeof o != "object" && typeof o != "function", fw = Array.isArray, m2 = (o) => fw(o) || typeof o?.[Symbol.iterator] == "function", Qy = `[
1677
1677
  \f\r]`, cu = /<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g, h_ = /-->/g, p_ = />/g, Md = RegExp(`>|${Qy}(?:([^\\s"'>=/]+)(${Qy}*=${Qy}*(?:[^
1678
- \f\r"'\`<>=]|("|')|))|$)`, "g"), u_ = /'/g, g_ = /"/g, Lz = /^(?:script|style|textarea|title)$/i, Iz = (o) => (t, ...e) => ({ _$litType$: o, strings: t, values: e }), bw = Iz(1), yA = Iz(2), lr = Symbol.for("lit-noChange"), Ee = Symbol.for("lit-nothing"), f_ = /* @__PURE__ */ new WeakMap(), Zd = pc.createTreeWalker(pc, 129);
1678
+ \f\r"'\`<>=]|("|')|))|$)`, "g"), u_ = /'/g, g_ = /"/g, Lz = /^(?:script|style|textarea|title)$/i, Iz = (o) => (t, ...e) => ({ _$litType$: o, strings: t, values: e }), bw = Iz(1), y2 = Iz(2), lr = Symbol.for("lit-noChange"), Ee = Symbol.for("lit-nothing"), f_ = /* @__PURE__ */ new WeakMap(), Zd = pc.createTreeWalker(pc, 129);
1679
1679
  function Hz(o, t) {
1680
1680
  if (!fw(o) || !o.hasOwnProperty("raw")) throw Error("invalid template strings array");
1681
1681
  return c_ !== void 0 ? c_.createHTML(t) : t;
1682
1682
  }
1683
- const vA = (o, t) => {
1683
+ const v2 = (o, t) => {
1684
1684
  const e = o.length - 1, r = [];
1685
1685
  let a, n = t === 2 ? "<svg>" : t === 3 ? "<math>" : "", i = cu;
1686
1686
  for (let s = 0; s < e; s++) {
@@ -1688,7 +1688,7 @@ const vA = (o, t) => {
1688
1688
  let d, c, h = -1, p = 0;
1689
1689
  for (; p < l.length && (i.lastIndex = p, c = i.exec(l), c !== null); ) p = i.lastIndex, i === cu ? c[1] === "!--" ? i = h_ : c[1] !== void 0 ? i = p_ : c[2] !== void 0 ? (Lz.test(c[2]) && (a = RegExp("</" + c[2], "g")), i = Md) : c[3] !== void 0 && (i = Md) : i === Md ? c[0] === ">" ? (i = a ?? cu, h = -1) : c[1] === void 0 ? h = -2 : (h = i.lastIndex - c[2].length, d = c[1], i = c[3] === void 0 ? Md : c[3] === '"' ? g_ : u_) : i === g_ || i === u_ ? i = Md : i === h_ || i === p_ ? i = cu : (i = Md, a = void 0);
1690
1690
  const u = i === Md && o[s + 1].startsWith("/>") ? " " : "";
1691
- n += i === cu ? l + bA : h >= 0 ? (r.push(d), l.slice(0, h) + Pz + l.slice(h) + Fl + u) : l + Fl + (h === -2 ? s : u);
1691
+ n += i === cu ? l + b2 : h >= 0 ? (r.push(d), l.slice(0, h) + Pz + l.slice(h) + Fl + u) : l + Fl + (h === -2 ? s : u);
1692
1692
  }
1693
1693
  return [Hz(o, n + (o[e] || "<?>") + (t === 2 ? "</svg>" : t === 3 ? "</math>" : "")), r];
1694
1694
  };
@@ -1697,7 +1697,7 @@ let Hv = class Nz {
1697
1697
  let a;
1698
1698
  this.parts = [];
1699
1699
  let n = 0, i = 0;
1700
- const s = t.length - 1, l = this.parts, [d, c] = vA(t, e);
1700
+ const s = t.length - 1, l = this.parts, [d, c] = v2(t, e);
1701
1701
  if (this.el = Nz.createElement(d, r), Zd.currentNode = this.el.content, e === 2 || e === 3) {
1702
1702
  const h = this.el.content.firstChild;
1703
1703
  h.replaceWith(...h.childNodes);
@@ -1706,7 +1706,7 @@ let Hv = class Nz {
1706
1706
  if (a.nodeType === 1) {
1707
1707
  if (a.hasAttributes()) for (const h of a.getAttributeNames()) if (h.endsWith(Pz)) {
1708
1708
  const p = c[i++], u = a.getAttribute(h).split(Fl), f = /([.?@])?(.*)/.exec(p);
1709
- l.push({ type: 1, index: n, name: f[2], strings: u, ctor: f[1] === "." ? wA : f[1] === "?" ? kA : f[1] === "@" ? _A : Ym }), a.removeAttribute(h);
1709
+ l.push({ type: 1, index: n, name: f[2], strings: u, ctor: f[1] === "." ? w2 : f[1] === "?" ? k2 : f[1] === "@" ? _2 : Ym }), a.removeAttribute(h);
1710
1710
  } else h.startsWith(Fl) && (l.push({ type: 6, index: n }), a.removeAttribute(h));
1711
1711
  if (Lz.test(a.tagName)) {
1712
1712
  const h = a.textContent.split(Fl), p = h.length - 1;
@@ -1735,7 +1735,7 @@ function Wh(o, t, e = o, r) {
1735
1735
  const n = Lu(t) ? void 0 : t._$litDirective$;
1736
1736
  return a?.constructor !== n && (a?._$AO?.(!1), n === void 0 ? a = void 0 : (a = new n(o), a._$AT(o, e, r)), r !== void 0 ? (e._$Co ??= [])[r] = a : e._$Cl = a), a !== void 0 && (t = Wh(o, a._$AS(o, t.values), a, r)), t;
1737
1737
  }
1738
- let xA = class {
1738
+ let x2 = class {
1739
1739
  constructor(t, e) {
1740
1740
  this._$AV = [], this._$AN = void 0, this._$AD = t, this._$AM = e;
1741
1741
  }
@@ -1752,7 +1752,7 @@ let xA = class {
1752
1752
  for (; l !== void 0; ) {
1753
1753
  if (i === l.index) {
1754
1754
  let d;
1755
- l.type === 2 ? d = new Um(n, n.nextSibling, this, t) : l.type === 1 ? d = new l.ctor(n, l.name, l.strings, this, t) : l.type === 6 && (d = new jA(n, this, t)), this._$AV.push(d), l = r[++s];
1755
+ l.type === 2 ? d = new Um(n, n.nextSibling, this, t) : l.type === 1 ? d = new l.ctor(n, l.name, l.strings, this, t) : l.type === 6 && (d = new j2(n, this, t)), this._$AV.push(d), l = r[++s];
1756
1756
  }
1757
1757
  i !== l?.index && (n = Zd.nextNode(), i++);
1758
1758
  }
@@ -1781,7 +1781,7 @@ let xA = class {
1781
1781
  return this._$AB;
1782
1782
  }
1783
1783
  _$AI(t, e = this) {
1784
- t = Wh(this, t, e), Lu(t) ? t === Ee || t == null || t === "" ? (this._$AH !== Ee && this._$AR(), this._$AH = Ee) : t !== this._$AH && t !== lr && this._(t) : t._$litType$ !== void 0 ? this.$(t) : t.nodeType !== void 0 ? this.T(t) : mA(t) ? this.k(t) : this._(t);
1784
+ t = Wh(this, t, e), Lu(t) ? t === Ee || t == null || t === "" ? (this._$AH !== Ee && this._$AR(), this._$AH = Ee) : t !== this._$AH && t !== lr && this._(t) : t._$litType$ !== void 0 ? this.$(t) : t.nodeType !== void 0 ? this.T(t) : m2(t) ? this.k(t) : this._(t);
1785
1785
  }
1786
1786
  O(t) {
1787
1787
  return this._$AA.parentNode.insertBefore(t, this._$AB);
@@ -1796,7 +1796,7 @@ let xA = class {
1796
1796
  const { values: e, _$litType$: r } = t, a = typeof r == "number" ? this._$AC(t) : (r.el === void 0 && (r.el = Hv.createElement(Hz(r.h, r.h[0]), this.options)), r);
1797
1797
  if (this._$AH?._$AD === a) this._$AH.p(e);
1798
1798
  else {
1799
- const n = new xA(a, this), i = n.u(this.options);
1799
+ const n = new x2(a, this), i = n.u(this.options);
1800
1800
  n.p(e), this.T(i), this._$AH = n;
1801
1801
  }
1802
1802
  }
@@ -1844,21 +1844,21 @@ let xA = class {
1844
1844
  j(t) {
1845
1845
  t === Ee ? this.element.removeAttribute(this.name) : this.element.setAttribute(this.name, t ?? "");
1846
1846
  }
1847
- }, wA = class extends Ym {
1847
+ }, w2 = class extends Ym {
1848
1848
  constructor() {
1849
1849
  super(...arguments), this.type = 3;
1850
1850
  }
1851
1851
  j(t) {
1852
1852
  this.element[this.name] = t === Ee ? void 0 : t;
1853
1853
  }
1854
- }, kA = class extends Ym {
1854
+ }, k2 = class extends Ym {
1855
1855
  constructor() {
1856
1856
  super(...arguments), this.type = 4;
1857
1857
  }
1858
1858
  j(t) {
1859
1859
  this.element.toggleAttribute(this.name, !!t && t !== Ee);
1860
1860
  }
1861
- }, _A = class extends Ym {
1861
+ }, _2 = class extends Ym {
1862
1862
  constructor(t, e, r, a, n) {
1863
1863
  super(t, e, r, a, n), this.type = 5;
1864
1864
  }
@@ -1870,7 +1870,7 @@ let xA = class {
1870
1870
  handleEvent(t) {
1871
1871
  typeof this._$AH == "function" ? this._$AH.call(this.options?.host ?? this.element, t) : this._$AH.handleEvent(t);
1872
1872
  }
1873
- }, jA = class {
1873
+ }, j2 = class {
1874
1874
  constructor(t, e, r) {
1875
1875
  this.element = t, this.type = 6, this._$AN = void 0, this._$AM = e, this.options = r;
1876
1876
  }
@@ -1881,8 +1881,8 @@ let xA = class {
1881
1881
  Wh(this, t);
1882
1882
  }
1883
1883
  };
1884
- const zA = { I: Um }, SA = gw.litHtmlPolyfillSupport;
1885
- SA?.(Hv, Um), (gw.litHtmlVersions ??= []).push("3.3.1");
1884
+ const z2 = { I: Um }, S2 = gw.litHtmlPolyfillSupport;
1885
+ S2?.(Hv, Um), (gw.litHtmlVersions ??= []).push("3.3.1");
1886
1886
  const Bz = (o, t, e) => {
1887
1887
  const r = e?.renderBefore ?? t;
1888
1888
  let a = r._$litPart$;
@@ -1921,13 +1921,13 @@ let dc = class extends jh {
1921
1921
  }
1922
1922
  };
1923
1923
  dc._$litElement$ = !0, dc.finalized = !0, mw.litElementHydrateSupport?.({ LitElement: dc });
1924
- const EA = mw.litElementPolyfillSupport;
1925
- EA?.({ LitElement: dc });
1924
+ const E2 = mw.litElementPolyfillSupport;
1925
+ E2?.({ LitElement: dc });
1926
1926
  (mw.litElementVersions ??= []).push("4.2.1");
1927
1927
  function Fz(o) {
1928
1928
  return typeof o == "function" && "is" in o;
1929
1929
  }
1930
- class CA {
1930
+ class C2 {
1931
1931
  // #region Ctor
1932
1932
  /**
1933
1933
  * Constructs a new instance of the `Dom` class.
@@ -2004,7 +2004,7 @@ class st {
2004
2004
  st._current = t;
2005
2005
  }
2006
2006
  }
2007
- st.set(new CA());
2007
+ st.set(new C2());
2008
2008
  class qm {
2009
2009
  // #region Fields
2010
2010
  _eventName;
@@ -2087,7 +2087,7 @@ function qo(o, t) {
2087
2087
  function yw(o, t) {
2088
2088
  o.preventDefault(), t(o);
2089
2089
  }
2090
- function RA(o, t) {
2090
+ function R2(o, t) {
2091
2091
  o.stopPropagation(), t(o);
2092
2092
  }
2093
2093
  class nt {
@@ -2162,7 +2162,7 @@ class qs {
2162
2162
  e > -1 && this._observers.splice(e, 1);
2163
2163
  }
2164
2164
  }
2165
- function AA(o) {
2165
+ function A2(o) {
2166
2166
  if (!o || typeof o != "object")
2167
2167
  return !1;
2168
2168
  const t = o;
@@ -2188,7 +2188,7 @@ function rt(o) {
2188
2188
  };
2189
2189
  }
2190
2190
  function b(o) {
2191
- return (t, e) => e !== void 0 ? OA(t, e, b_(e, o)) : $A(t, b_(t.key, o));
2191
+ return (t, e) => e !== void 0 ? O2(t, e, b_(e, o)) : $2(t, b_(t.key, o));
2192
2192
  }
2193
2193
  function b_(o, t) {
2194
2194
  switch (t = {
@@ -2238,7 +2238,7 @@ function b_(o, t) {
2238
2238
  };
2239
2239
  }
2240
2240
  }
2241
- function $A(o, t) {
2241
+ function $2(o, t) {
2242
2242
  return o.kind === "method" && o.descriptor && !("value" in o.descriptor) ? {
2243
2243
  ...o,
2244
2244
  finisher: (e) => {
@@ -2259,7 +2259,7 @@ function $A(o, t) {
2259
2259
  }
2260
2260
  };
2261
2261
  }
2262
- function OA(o, t, e) {
2262
+ function O2(o, t, e) {
2263
2263
  Mv(o.constructor, t, e);
2264
2264
  }
2265
2265
  function Mv(o, t, e) {
@@ -2428,7 +2428,7 @@ class H extends dc {
2428
2428
  return this.registerSubscription(t, n), n;
2429
2429
  }
2430
2430
  off(...t) {
2431
- if (AA(t[0])) {
2431
+ if (A2(t[0])) {
2432
2432
  t[0].dispose();
2433
2433
  return;
2434
2434
  }
@@ -2616,7 +2616,7 @@ var Vh;
2616
2616
  o.isEqual = r;
2617
2617
  })(Vh || (Vh = {}));
2618
2618
  function T(o) {
2619
- return (t, e) => e !== void 0 ? PA(t, e, y_(e, o)) : TA(t, y_(t.key, o));
2619
+ return (t, e) => e !== void 0 ? P2(t, e, y_(e, o)) : T2(t, y_(t.key, o));
2620
2620
  }
2621
2621
  function y_(o, t) {
2622
2622
  switch (t = {
@@ -2671,7 +2671,7 @@ function y_(o, t) {
2671
2671
  };
2672
2672
  }
2673
2673
  }
2674
- function TA(o, t) {
2674
+ function T2(o, t) {
2675
2675
  if (o.kind === "method" && o.descriptor && !("value" in o.descriptor)) {
2676
2676
  const e = o.key;
2677
2677
  let r = {
@@ -2728,7 +2728,7 @@ function TA(o, t) {
2728
2728
  }
2729
2729
  };
2730
2730
  }
2731
- function PA(o, t, e) {
2731
+ function P2(o, t, e) {
2732
2732
  if (e?.requestUpdate) {
2733
2733
  const r = `_${String(t)}`;
2734
2734
  Object.defineProperty(o, t, {
@@ -3004,11 +3004,11 @@ class Gm {
3004
3004
  };
3005
3005
  }
3006
3006
  }
3007
- const DA = "bootstrap", LA = "'Inter', Roboto, Helvetica, sans-serif", IA = "12px", HA = "8px", NA = "2px", MA = "#cfe2ff", BA = "#9ec5fe", FA = "#6ea8fe", UA = "#3d8bfd", YA = "#0d6efd", qA = "#0a58ca", GA = "#084298", WA = "#052c65", VA = "#031633", XA = "#f8f9fa", KA = "#e9ecef", ZA = "#dee2e6", JA = "#ced4da", QA = "#adb5bd", t2 = "#6c757d", e2 = "#495057", o2 = "#343a40", r2 = "#212529", n2 = "80px", a2 = "1.2", i2 = "300", s2 = "0", l2 = "none", d2 = "none", c2 = "72px", h2 = "1.2", p2 = "300", u2 = "0", g2 = "none", f2 = "none", b2 = "64px", m2 = "1.2", y2 = "300", v2 = "0", x2 = "none", w2 = "none", k2 = "56px", _2 = "1.2", j2 = "300", z2 = "0", S2 = "none", E2 = "none", C2 = "48px", R2 = "1.2", A2 = "300", $2 = "0", O2 = "none", T2 = "none", P2 = "40px", D2 = "1.2", L2 = "300", I2 = "0", H2 = "none", N2 = "none", v_ = "none";
3007
+ const D2 = "bootstrap", L2 = "'Inter', Roboto, Helvetica, sans-serif", I2 = "12px", H2 = "8px", N2 = "2px", M2 = "#cfe2ff", B2 = "#9ec5fe", F2 = "#6ea8fe", U2 = "#3d8bfd", Y2 = "#0d6efd", q2 = "#0a58ca", G2 = "#084298", W2 = "#052c65", V2 = "#031633", X2 = "#f8f9fa", K2 = "#e9ecef", Z2 = "#dee2e6", J2 = "#ced4da", Q2 = "#adb5bd", tA = "#6c757d", eA = "#495057", oA = "#343a40", rA = "#212529", nA = "80px", aA = "1.2", iA = "300", sA = "0", lA = "none", dA = "none", cA = "72px", hA = "1.2", pA = "300", uA = "0", gA = "none", fA = "none", bA = "64px", mA = "1.2", yA = "300", vA = "0", xA = "none", wA = "none", kA = "56px", _A = "1.2", jA = "300", zA = "0", SA = "none", EA = "none", CA = "48px", RA = "1.2", AA = "300", $A = "0", OA = "none", TA = "none", PA = "40px", DA = "1.2", LA = "300", IA = "0", HA = "none", NA = "none", v_ = "none";
3008
3008
  var x_;
3009
3009
  (function(o) {
3010
3010
  o.BOOTSTRAP_THEME = Gm.create({
3011
- name: DA,
3011
+ name: D2,
3012
3012
  scheme: {
3013
3013
  light: {
3014
3014
  body: "#ffffff",
@@ -3026,84 +3026,84 @@ var x_;
3026
3026
  palette: {
3027
3027
  light: {
3028
3028
  primary: {
3029
- 100: MA,
3030
- 200: BA,
3031
- 300: FA,
3032
- 400: UA,
3033
- 500: YA,
3034
- 600: qA,
3035
- 700: GA,
3036
- 800: WA,
3037
- 900: VA
3029
+ 100: M2,
3030
+ 200: B2,
3031
+ 300: F2,
3032
+ 400: U2,
3033
+ 500: Y2,
3034
+ 600: q2,
3035
+ 700: G2,
3036
+ 800: W2,
3037
+ 900: V2
3038
3038
  },
3039
3039
  secondary: {
3040
- 100: XA,
3041
- 200: KA,
3042
- 300: ZA,
3043
- 400: JA,
3044
- 500: QA,
3045
- 600: t2,
3046
- 700: e2,
3047
- 800: o2,
3048
- 900: r2
3040
+ 100: X2,
3041
+ 200: K2,
3042
+ 300: Z2,
3043
+ 400: J2,
3044
+ 500: Q2,
3045
+ 600: tA,
3046
+ 700: eA,
3047
+ 800: oA,
3048
+ 900: rA
3049
3049
  }
3050
3050
  }
3051
3051
  },
3052
- fontFamily: LA,
3052
+ fontFamily: L2,
3053
3053
  typography: {
3054
3054
  headline1: {
3055
- fontSize: n2,
3056
- lineHeight: a2,
3057
- fontWeight: i2,
3058
- letterSpacing: s2,
3059
- textDecoration: l2,
3060
- textTransform: d2
3055
+ fontSize: nA,
3056
+ lineHeight: aA,
3057
+ fontWeight: iA,
3058
+ letterSpacing: sA,
3059
+ textDecoration: lA,
3060
+ textTransform: dA
3061
3061
  },
3062
3062
  headline2: {
3063
- fontSize: c2,
3064
- lineHeight: h2,
3065
- fontWeight: p2,
3066
- letterSpacing: u2,
3067
- textDecoration: g2,
3068
- textTransform: f2
3063
+ fontSize: cA,
3064
+ lineHeight: hA,
3065
+ fontWeight: pA,
3066
+ letterSpacing: uA,
3067
+ textDecoration: gA,
3068
+ textTransform: fA
3069
3069
  },
3070
3070
  headline3: {
3071
- fontSize: b2,
3072
- lineHeight: m2,
3073
- fontWeight: y2,
3074
- letterSpacing: v2,
3075
- textDecoration: x2,
3076
- textTransform: w2
3071
+ fontSize: bA,
3072
+ lineHeight: mA,
3073
+ fontWeight: yA,
3074
+ letterSpacing: vA,
3075
+ textDecoration: xA,
3076
+ textTransform: wA
3077
3077
  },
3078
3078
  headline4: {
3079
- fontSize: k2,
3080
- lineHeight: _2,
3081
- fontWeight: j2,
3082
- letterSpacing: z2,
3083
- textDecoration: S2,
3084
- textTransform: E2
3079
+ fontSize: kA,
3080
+ lineHeight: _A,
3081
+ fontWeight: jA,
3082
+ letterSpacing: zA,
3083
+ textDecoration: SA,
3084
+ textTransform: EA
3085
3085
  },
3086
3086
  headline5: {
3087
- fontSize: C2,
3088
- lineHeight: R2,
3089
- fontWeight: A2,
3090
- letterSpacing: $2,
3091
- textDecoration: O2,
3092
- textTransform: T2
3087
+ fontSize: CA,
3088
+ lineHeight: RA,
3089
+ fontWeight: AA,
3090
+ letterSpacing: $A,
3091
+ textDecoration: OA,
3092
+ textTransform: TA
3093
3093
  },
3094
3094
  headline6: {
3095
- fontSize: P2,
3096
- lineHeight: D2,
3097
- fontWeight: L2,
3098
- letterSpacing: I2,
3099
- textDecoration: H2,
3100
- textTransform: N2
3095
+ fontSize: PA,
3096
+ lineHeight: DA,
3097
+ fontWeight: LA,
3098
+ letterSpacing: IA,
3099
+ textDecoration: HA,
3100
+ textTransform: NA
3101
3101
  }
3102
3102
  },
3103
3103
  layout: {
3104
- radius: IA,
3105
- space: HA,
3106
- thickness: NA
3104
+ radius: I2,
3105
+ space: H2,
3106
+ thickness: N2
3107
3107
  },
3108
3108
  elevation: {
3109
3109
  light: {
@@ -3131,22 +3131,22 @@ var x_;
3131
3131
  ]
3132
3132
  };
3133
3133
  })(x_ || (x_ = {}));
3134
- const M2 = "joy", B2 = "Nunito, sans-serif", F2 = "12px", U2 = "8px", Y2 = "2px", q2 = "#eaeaea", G2 = "#3c454f", W2 = "#d1d1d1", V2 = "#8a8a8a", X2 = "#5c5c5c", K2 = "rgba(255, 255, 255, 0)", Z2 = "rgba(255, 255, 255, 0.67)", J2 = "#686868", Q2 = "#ffffff", t$ = "rgba(204, 204, 204, 0.44)", e$ = "#151515", o$ = "#c3bab0", r$ = "#2e2e2e", n$ = "#757575", a$ = "#a3a3a3", i$ = "rgba(255, 255, 255, 0)", s$ = "rgba(255, 255, 255, 0.03)", l$ = "#474747", d$ = "#000000", c$ = "rgba(204, 204, 204, 0.44)", h$ = "#ffffff", p$ = "#fce4ec", u$ = "#f8bcd0", g$ = "#f48fb1", f$ = "#f06292", b$ = "#ec407a", m$ = "#e91e63", y$ = "#cb1a56", v$ = "#a31545", x$ = "#7e1035", w$ = "#3a0819", k$ = "#ffffff", _$ = "#e6f6e9", j$ = "#c3e8c9", z$ = "#9bd9a7", S$ = "#70cb83", E$ = "#4dbf68", C$ = "#21b34d", R$ = "#16a444", A$ = "#009238", $$ = "#00812d", O$ = "#006218", T$ = "#ffffff", P$ = "#e1f5fc", D$ = "#b4e6f7", L$ = "#84d5f3", I$ = "#56c5ee", H$ = "#35b8eb", N$ = "#19ace9", M$ = "#139edb", B$ = "#098bc7", F$ = "#087ab4", U$ = "#005a92", Y$ = "#ffffff", q$ = "#f4faff", G$ = "#ddf1ff", W$ = "#addbff", V$ = "#6fb6ff", X$ = "#3990ff", K$ = "#096bde", Z$ = "#054da7", J$ = "#02367d", Q$ = "#072859", tO = "#00153c", eO = "#ffffff", oO = "#fff8c5", rO = "#fae17d", nO = "#eac54f", aO = "#d4a72c", iO = "#bf8700", sO = "#9a6700", lO = "#7d4e00", dO = "#633c01", cO = "#4d2d00", hO = "#3b2300", pO = "#ffffff", uO = "#fff8f6", gO = "#ffe9e8", fO = "#ffc7c5", bO = "#ff9192", mO = "#fa5255", yO = "#d3232f", vO = "#a10e25", xO = "#77061b", wO = "#580013", kO = "#39000d", _O = "#ffffff", jO = "#f3fef5", zO = "#d7f5dd", SO = "#77ec95", EO = "#4cc76e", CO = "#2ca24d", RO = "#1a7d36", AO = "#0f5d26", $O = "#034318", OO = "#002f0f", TO = "#001d09", PO = "#ffffff", DO = "#fdf7ff", LO = "#f4eaff", IO = "#e1cbff", HO = "#c69eff", NO = "#a374f9", MO = "#814dde", BO = "#5f35ae", FO = "#452382", UO = "#301761", YO = "#1d0a42", qO = "#ffffff", GO = "#f7f7f8", WO = "#ebebef", VO = "#d8d8df", XO = "#b9b9c6", KO = "#8f8fa3", ZO = "#73738c", JO = "#5a5a72", QO = "#434356", tT = "#25252d", eT = "#131318", oT = "#000000", rT = "#3a0819", nT = "#7e1035", aT = "#a31545", iT = "#cb1a56", sT = "#e91e63", lT = "#ec407a", dT = "#f06292", cT = "#f48fb1", hT = "#f8bcd0", pT = "#fce4ec", uT = "#000000", gT = "#006218", fT = "#00812d", bT = "#009238", mT = "#16a444", yT = "#21b34d", vT = "#4dbf68", xT = "#70cb83", wT = "#9bd9a7", kT = "#c3e8c9", _T = "#e6f6e9", jT = "#000000", zT = "#005a92", ST = "#087ab4", ET = "#098bc7", CT = "#139edb", RT = "#19ace9", AT = "#35b8eb", $T = "#56c5ee", OT = "#84d5f3", TT = "#b4e6f7", PT = "#e1f5fc", DT = "#000000", LT = "#00153c", IT = "#072859", HT = "#02367d", NT = "#054da7", MT = "#096bde", BT = "#3990ff", FT = "#6fb6ff", UT = "#addbff", YT = "#ddf1ff", qT = "#f4faff", GT = "#000000", WT = "#3b2300", VT = "#4d2d00", XT = "#633c01", KT = "#7d4e00", ZT = "#9a6700", JT = "#bf8700", QT = "#d4a72c", t5 = "#eac54f", e5 = "#fae17d", o5 = "#fff8c5", r5 = "#000000", n5 = "#39000d", a5 = "#580013", i5 = "#77061b", s5 = "#a10e25", l5 = "#d3232f", d5 = "#fa5255", c5 = "#ff9192", h5 = "#ffc7c5", p5 = "#ffe9e8", u5 = "#fff8f6", g5 = "#000000", f5 = "#001d09", b5 = "#002f0f", m5 = "#034318", y5 = "#0f5d26", v5 = "#1a7d36", x5 = "#2ca24d", w5 = "#4cc76e", k5 = "#77ec95", _5 = "#d7f5dd", j5 = "#f3fef5", z5 = "#000000", S5 = "#1d0a42", E5 = "#301761", C5 = "#452382", R5 = "#5f35ae", A5 = "#814dde", $5 = "#a374f9", O5 = "#c69eff", T5 = "#e1cbff", P5 = "#f4eaff", D5 = "#fdf7ff", L5 = "#000000", I5 = "#131318", H5 = "#25252d", N5 = "#434356", M5 = "#5a5a72", B5 = "#73738c", F5 = "#8f8fa3", U5 = "#b9b9c6", Y5 = "#d8d8df", q5 = "#ebebef", G5 = "#f7f7f8", W5 = "Nunito, sans-serif", V5 = "96px", X5 = "100px", K5 = "300", Z5 = "-0.25px", J5 = "none", Q5 = "none", tP = "Nunito, sans-serif", eP = "60px", oP = "64px", rP = "300", nP = "-0.13333333333333333px", aP = "none", iP = "none", sP = "Nunito, sans-serif", lP = "48px", dP = "52px", cP = "400", hP = "normal", pP = "none", uP = "none", gP = "Nunito, sans-serif", fP = "34px", bP = "38px", mP = "400", yP = "0.11764705882352941px", vP = "none", xP = "none", wP = "Nunito, sans-serif", kP = "24px", _P = "28px", jP = "400", zP = "normal", SP = "none", EP = "none", CP = "Nunito, sans-serif", RP = "20px", AP = "24px", $P = "500", OP = "0.2px", TP = "none", PP = "none", DP = "Nunito, sans-serif", LP = "16px", IP = "20px", HP = "400", NP = "0.15px", MP = "none", BP = "none", FP = "Nunito, sans-serif", UP = "14px", YP = "18px", qP = "500", GP = "0.1142857142857143px", WP = "none", VP = "none", XP = "Nunito, sans-serif", KP = "16px", ZP = "20px", JP = "400", QP = "0.5px", tD = "none", eD = "none", oD = "Nunito, sans-serif", rD = "14px", nD = "18px", aD = "400", iD = "0.2857142857142857px", sD = "none", lD = "none", dD = "Nunito, sans-serif", cD = "12px", hD = "16px", pD = "400", uD = "0.5333333333333333px", gD = "none", fD = "none", bD = "Nunito, sans-serif", mD = "14px", yD = "18px", vD = "700", xD = "1.4285714285714286px", wD = "none", kD = "none", _D = "Nunito, sans-serif", jD = "12px", zD = "16px", SD = "500", ED = "2.6666666666666665px", CD = "none", RD = "none", AD = "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 1px 2px 0px rgba(0, 0, 0, 0.14)", $D = "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 4px 0px rgba(0, 0, 0, 0.14)", OD = "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 4px 8px 0px rgba(0, 0, 0, 0.14)", TD = "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 8px 16px 0px rgba(0, 0, 0, 0.14)", PD = "0px 0px 8px 0px rgba(0, 0, 0, 0.12), 0px 14px 28px 0px rgba(0, 0, 0, 0.14)", DD = "0px 0px 8px 0px rgba(0, 0, 0, 0.12), 0px 32px 64px 0px rgba(0, 0, 0, 0.14)", LD = "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 1px 2px 0px rgba(0, 0, 0, 0.28)", ID = "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 2px 4px 0px rgba(0, 0, 0, 0.28)", HD = "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 4px 8px 0px rgba(0, 0, 0, 0.28)", ND = "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 8px 16px 0px rgba(0, 0, 0, 0.28)", MD = "0px 0px 8px 0px rgba(0, 0, 0, 0.24), 0px 14px 28px 0px rgba(0, 0, 0, 0.28)", BD = "0px 0px 8px 0px rgba(0, 0, 0, 0.24), 0px 32px 64px 0px rgba(0, 0, 0, 0.28)", FD = "headline1", UD = "headline2", YD = "headline3", qD = "headline4", GD = "headline5", WD = "headline6", VD = "subtitle1", XD = "subtitle2", KD = "body1", ZD = "body2", JD = "caption", QD = "button", tL = "overline", eL = "light", oL = "semilight", rL = "regular", nL = "semibold", aL = "bold", iL = "extrabold", sL = "primary", lL = "secondary", dL = "tertiary", cL = "danger", hL = "warning", pL = "success", uL = "info", gL = "highlight", fL = "neutral";
3134
+ const MA = "joy", BA = "Nunito, sans-serif", FA = "12px", UA = "8px", YA = "2px", qA = "#eaeaea", GA = "#3c454f", WA = "#d1d1d1", VA = "#8a8a8a", XA = "#5c5c5c", KA = "rgba(255, 255, 255, 0)", ZA = "rgba(255, 255, 255, 0.67)", JA = "#686868", QA = "#ffffff", t$ = "rgba(204, 204, 204, 0.44)", e$ = "#151515", o$ = "#c3bab0", r$ = "#2e2e2e", n$ = "#757575", a$ = "#a3a3a3", i$ = "rgba(255, 255, 255, 0)", s$ = "rgba(255, 255, 255, 0.03)", l$ = "#474747", d$ = "#000000", c$ = "rgba(204, 204, 204, 0.44)", h$ = "#ffffff", p$ = "#fce4ec", u$ = "#f8bcd0", g$ = "#f48fb1", f$ = "#f06292", b$ = "#ec407a", m$ = "#e91e63", y$ = "#cb1a56", v$ = "#a31545", x$ = "#7e1035", w$ = "#3a0819", k$ = "#ffffff", _$ = "#e6f6e9", j$ = "#c3e8c9", z$ = "#9bd9a7", S$ = "#70cb83", E$ = "#4dbf68", C$ = "#21b34d", R$ = "#16a444", A$ = "#009238", $$ = "#00812d", O$ = "#006218", T$ = "#ffffff", P$ = "#e1f5fc", D$ = "#b4e6f7", L$ = "#84d5f3", I$ = "#56c5ee", H$ = "#35b8eb", N$ = "#19ace9", M$ = "#139edb", B$ = "#098bc7", F$ = "#087ab4", U$ = "#005a92", Y$ = "#ffffff", q$ = "#f4faff", G$ = "#ddf1ff", W$ = "#addbff", V$ = "#6fb6ff", X$ = "#3990ff", K$ = "#096bde", Z$ = "#054da7", J$ = "#02367d", Q$ = "#072859", tO = "#00153c", eO = "#ffffff", oO = "#fff8c5", rO = "#fae17d", nO = "#eac54f", aO = "#d4a72c", iO = "#bf8700", sO = "#9a6700", lO = "#7d4e00", dO = "#633c01", cO = "#4d2d00", hO = "#3b2300", pO = "#ffffff", uO = "#fff8f6", gO = "#ffe9e8", fO = "#ffc7c5", bO = "#ff9192", mO = "#fa5255", yO = "#d3232f", vO = "#a10e25", xO = "#77061b", wO = "#580013", kO = "#39000d", _O = "#ffffff", jO = "#f3fef5", zO = "#d7f5dd", SO = "#77ec95", EO = "#4cc76e", CO = "#2ca24d", RO = "#1a7d36", AO = "#0f5d26", $O = "#034318", OO = "#002f0f", TO = "#001d09", PO = "#ffffff", DO = "#fdf7ff", LO = "#f4eaff", IO = "#e1cbff", HO = "#c69eff", NO = "#a374f9", MO = "#814dde", BO = "#5f35ae", FO = "#452382", UO = "#301761", YO = "#1d0a42", qO = "#ffffff", GO = "#f7f7f8", WO = "#ebebef", VO = "#d8d8df", XO = "#b9b9c6", KO = "#8f8fa3", ZO = "#73738c", JO = "#5a5a72", QO = "#434356", tT = "#25252d", eT = "#131318", oT = "#000000", rT = "#3a0819", nT = "#7e1035", aT = "#a31545", iT = "#cb1a56", sT = "#e91e63", lT = "#ec407a", dT = "#f06292", cT = "#f48fb1", hT = "#f8bcd0", pT = "#fce4ec", uT = "#000000", gT = "#006218", fT = "#00812d", bT = "#009238", mT = "#16a444", yT = "#21b34d", vT = "#4dbf68", xT = "#70cb83", wT = "#9bd9a7", kT = "#c3e8c9", _T = "#e6f6e9", jT = "#000000", zT = "#005a92", ST = "#087ab4", ET = "#098bc7", CT = "#139edb", RT = "#19ace9", AT = "#35b8eb", $T = "#56c5ee", OT = "#84d5f3", TT = "#b4e6f7", PT = "#e1f5fc", DT = "#000000", LT = "#00153c", IT = "#072859", HT = "#02367d", NT = "#054da7", MT = "#096bde", BT = "#3990ff", FT = "#6fb6ff", UT = "#addbff", YT = "#ddf1ff", qT = "#f4faff", GT = "#000000", WT = "#3b2300", VT = "#4d2d00", XT = "#633c01", KT = "#7d4e00", ZT = "#9a6700", JT = "#bf8700", QT = "#d4a72c", t5 = "#eac54f", e5 = "#fae17d", o5 = "#fff8c5", r5 = "#000000", n5 = "#39000d", a5 = "#580013", i5 = "#77061b", s5 = "#a10e25", l5 = "#d3232f", d5 = "#fa5255", c5 = "#ff9192", h5 = "#ffc7c5", p5 = "#ffe9e8", u5 = "#fff8f6", g5 = "#000000", f5 = "#001d09", b5 = "#002f0f", m5 = "#034318", y5 = "#0f5d26", v5 = "#1a7d36", x5 = "#2ca24d", w5 = "#4cc76e", k5 = "#77ec95", _5 = "#d7f5dd", j5 = "#f3fef5", z5 = "#000000", S5 = "#1d0a42", E5 = "#301761", C5 = "#452382", R5 = "#5f35ae", A5 = "#814dde", $5 = "#a374f9", O5 = "#c69eff", T5 = "#e1cbff", P5 = "#f4eaff", D5 = "#fdf7ff", L5 = "#000000", I5 = "#131318", H5 = "#25252d", N5 = "#434356", M5 = "#5a5a72", B5 = "#73738c", F5 = "#8f8fa3", U5 = "#b9b9c6", Y5 = "#d8d8df", q5 = "#ebebef", G5 = "#f7f7f8", W5 = "Nunito, sans-serif", V5 = "96px", X5 = "100px", K5 = "300", Z5 = "-0.25px", J5 = "none", Q5 = "none", tP = "Nunito, sans-serif", eP = "60px", oP = "64px", rP = "300", nP = "-0.13333333333333333px", aP = "none", iP = "none", sP = "Nunito, sans-serif", lP = "48px", dP = "52px", cP = "400", hP = "normal", pP = "none", uP = "none", gP = "Nunito, sans-serif", fP = "34px", bP = "38px", mP = "400", yP = "0.11764705882352941px", vP = "none", xP = "none", wP = "Nunito, sans-serif", kP = "24px", _P = "28px", jP = "400", zP = "normal", SP = "none", EP = "none", CP = "Nunito, sans-serif", RP = "20px", AP = "24px", $P = "500", OP = "0.2px", TP = "none", PP = "none", DP = "Nunito, sans-serif", LP = "16px", IP = "20px", HP = "400", NP = "0.15px", MP = "none", BP = "none", FP = "Nunito, sans-serif", UP = "14px", YP = "18px", qP = "500", GP = "0.1142857142857143px", WP = "none", VP = "none", XP = "Nunito, sans-serif", KP = "16px", ZP = "20px", JP = "400", QP = "0.5px", tD = "none", eD = "none", oD = "Nunito, sans-serif", rD = "14px", nD = "18px", aD = "400", iD = "0.2857142857142857px", sD = "none", lD = "none", dD = "Nunito, sans-serif", cD = "12px", hD = "16px", pD = "400", uD = "0.5333333333333333px", gD = "none", fD = "none", bD = "Nunito, sans-serif", mD = "14px", yD = "18px", vD = "700", xD = "1.4285714285714286px", wD = "none", kD = "none", _D = "Nunito, sans-serif", jD = "12px", zD = "16px", SD = "500", ED = "2.6666666666666665px", CD = "none", RD = "none", AD = "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 1px 2px 0px rgba(0, 0, 0, 0.14)", $D = "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 2px 4px 0px rgba(0, 0, 0, 0.14)", OD = "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 4px 8px 0px rgba(0, 0, 0, 0.14)", TD = "0px 0px 2px 0px rgba(0, 0, 0, 0.12), 0px 8px 16px 0px rgba(0, 0, 0, 0.14)", PD = "0px 0px 8px 0px rgba(0, 0, 0, 0.12), 0px 14px 28px 0px rgba(0, 0, 0, 0.14)", DD = "0px 0px 8px 0px rgba(0, 0, 0, 0.12), 0px 32px 64px 0px rgba(0, 0, 0, 0.14)", LD = "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 1px 2px 0px rgba(0, 0, 0, 0.28)", ID = "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 2px 4px 0px rgba(0, 0, 0, 0.28)", HD = "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 4px 8px 0px rgba(0, 0, 0, 0.28)", ND = "0px 0px 2px 0px rgba(0, 0, 0, 0.24), 0px 8px 16px 0px rgba(0, 0, 0, 0.28)", MD = "0px 0px 8px 0px rgba(0, 0, 0, 0.24), 0px 14px 28px 0px rgba(0, 0, 0, 0.28)", BD = "0px 0px 8px 0px rgba(0, 0, 0, 0.24), 0px 32px 64px 0px rgba(0, 0, 0, 0.28)", FD = "headline1", UD = "headline2", YD = "headline3", qD = "headline4", GD = "headline5", WD = "headline6", VD = "subtitle1", XD = "subtitle2", KD = "body1", ZD = "body2", JD = "caption", QD = "button", tL = "overline", eL = "light", oL = "semilight", rL = "regular", nL = "semibold", aL = "bold", iL = "extrabold", sL = "primary", lL = "secondary", dL = "tertiary", cL = "danger", hL = "warning", pL = "success", uL = "info", gL = "highlight", fL = "neutral";
3135
3135
  var w_;
3136
3136
  (function(o) {
3137
3137
  o.JOY_THEME = Gm.create({
3138
- name: M2,
3138
+ name: MA,
3139
3139
  scheme: {
3140
3140
  light: {
3141
- background: q2,
3142
- foreground: G2,
3143
- highlight: W2,
3144
- middlelight: V2,
3145
- lowlight: X2,
3146
- transparent: K2,
3147
- semiTransparent: Z2,
3148
- disabled: J2,
3149
- contrast: Q2,
3141
+ background: qA,
3142
+ foreground: GA,
3143
+ highlight: WA,
3144
+ middlelight: VA,
3145
+ lowlight: XA,
3146
+ transparent: KA,
3147
+ semiTransparent: ZA,
3148
+ disabled: JA,
3149
+ contrast: QA,
3150
3150
  selection: t$
3151
3151
  },
3152
3152
  dark: {
@@ -3402,7 +3402,7 @@ var w_;
3402
3402
  }
3403
3403
  }
3404
3404
  },
3405
- fontFamily: B2,
3405
+ fontFamily: BA,
3406
3406
  typography: {
3407
3407
  headline1: {
3408
3408
  fontFamily: W5,
@@ -3523,9 +3523,9 @@ var w_;
3523
3523
  }
3524
3524
  },
3525
3525
  layout: {
3526
- radius: F2,
3527
- space: U2,
3528
- thickness: Y2
3526
+ radius: FA,
3527
+ space: UA,
3528
+ thickness: YA
3529
3529
  },
3530
3530
  elevation: {
3531
3531
  light: {
@@ -5298,7 +5298,7 @@ function Yz(o, t, e) {
5298
5298
  const Vt = (o, t = "self", e) => (r, a) => {
5299
5299
  const n = r.connectedCallback, i = r.disconnectedCallback, s = r.firstUpdated, l = (d, c) => (h) => {
5300
5300
  let p = !1;
5301
- e?.preventDefault && (p = !0, yw(h, () => d[c](h))), e?.stopPropagation && (p = !0, RA(h, () => d[c](h))), p || d[c](h);
5301
+ e?.preventDefault && (p = !0, yw(h, () => d[c](h))), e?.stopPropagation && (p = !0, R2(h, () => d[c](h))), p || d[c](h);
5302
5302
  };
5303
5303
  if (typeof t != "object")
5304
5304
  r.connectedCallback = function() {
@@ -5660,7 +5660,7 @@ function m(...o) {
5660
5660
  * Copyright 2020 Google LLC
5661
5661
  * SPDX-License-Identifier: BSD-3-Clause
5662
5662
  */
5663
- const { I: HB } = zA, qz = (o) => o.strings === void 0, N_ = () => document.createComment(""), pu = (o, t, e) => {
5663
+ const { I: HB } = z2, qz = (o) => o.strings === void 0, N_ = () => document.createComment(""), pu = (o, t, e) => {
5664
5664
  const r = o._$AA.parentNode, a = t === void 0 ? o._$AB : t._$AA;
5665
5665
  if (e === void 0) {
5666
5666
  const n = r.insertBefore(N_(), a), i = r.insertBefore(N_(), a);
@@ -10196,7 +10196,7 @@ const rn = (o) => {
10196
10196
  (o) => o instanceof Vm ? Vz(o) : o
10197
10197
  ];
10198
10198
  function aS(o, ...t) {
10199
- return yA(o, ...t.map((e) => jF.reduce((r, a) => a(r), e)));
10199
+ return y2(o, ...t.map((e) => jF.reduce((r, a) => a(r), e)));
10200
10200
  }
10201
10201
  aS.nothing = Ee;
10202
10202
  function zF(o) {
@@ -49846,6 +49846,31 @@ function y8() {
49846
49846
  min-height: 36px;
49847
49847
  }
49848
49848
 
49849
+ [size="giant"] [part="close"] {
49850
+ min-width: 52px;
49851
+ min-height: 52px;
49852
+ }
49853
+
49854
+ [size="large"] [part="close"] {
49855
+ min-width: 44px;
49856
+ min-height: 44px;
49857
+ }
49858
+
49859
+ [size="medium"] [part="close"] {
49860
+ min-width: 36px;
49861
+ min-height: 36px;
49862
+ }
49863
+
49864
+ [size="small"] [part="close"] {
49865
+ min-width: 28px;
49866
+ min-height: 28px;
49867
+ }
49868
+
49869
+ [size="tiny"] [part="close"] {
49870
+ min-width: 20px;
49871
+ min-height: 20px;
49872
+ }
49873
+
49849
49874
  `;
49850
49875
  }
49851
49876
  function v8() {
@@ -49901,6 +49926,31 @@ function v8() {
49901
49926
  min-height: 36px;
49902
49927
  }
49903
49928
 
49929
+ [size="giant"] [part="close"] {
49930
+ min-width: 52px;
49931
+ min-height: 52px;
49932
+ }
49933
+
49934
+ [size="large"] [part="close"] {
49935
+ min-width: 44px;
49936
+ min-height: 44px;
49937
+ }
49938
+
49939
+ [size="medium"] [part="close"] {
49940
+ min-width: 36px;
49941
+ min-height: 36px;
49942
+ }
49943
+
49944
+ [size="small"] [part="close"] {
49945
+ min-width: 28px;
49946
+ min-height: 28px;
49947
+ }
49948
+
49949
+ [size="tiny"] [part="close"] {
49950
+ min-width: 20px;
49951
+ min-height: 20px;
49952
+ }
49953
+
49904
49954
  `;
49905
49955
  }
49906
49956
  function x8() {
@@ -49956,6 +50006,31 @@ function x8() {
49956
50006
  min-height: 36px;
49957
50007
  }
49958
50008
 
50009
+ [size="giant"] [part="close"] {
50010
+ min-width: 52px;
50011
+ min-height: 52px;
50012
+ }
50013
+
50014
+ [size="large"] [part="close"] {
50015
+ min-width: 44px;
50016
+ min-height: 44px;
50017
+ }
50018
+
50019
+ [size="medium"] [part="close"] {
50020
+ min-width: 36px;
50021
+ min-height: 36px;
50022
+ }
50023
+
50024
+ [size="small"] [part="close"] {
50025
+ min-width: 28px;
50026
+ min-height: 28px;
50027
+ }
50028
+
50029
+ [size="tiny"] [part="close"] {
50030
+ min-width: 20px;
50031
+ min-height: 20px;
50032
+ }
50033
+
49959
50034
  `;
49960
50035
  }
49961
50036
  var w8 = function(o, t, e, r) {
@@ -171345,11 +171420,11 @@ function Cpt(o, t) {
171345
171420
  yn(e).on("connected", (q) => M("connected", q)), yn(e).on("disconnected", (q) => M("disconnected", q)), yn(e).on("changed", (q) => M("changed", q));
171346
171421
  }), XC(() => {
171347
171422
  r.forEach((q) => q.dispose());
171348
- }), aA();
171423
+ }), a2();
171349
171424
  var N = Ast();
171350
171425
  We(() => oo(N, "download", a())), We(() => oo(N, "href", n())), We(() => oo(N, "rel", i())), We(() => oo(N, "target", s())), We(() => oo(N, "themeName", l())), We(() => oo(N, "reverse", d())), We(() => oo(N, "orientation", c())), We(() => oo(N, "horizontalContentAlignment", h())), We(() => oo(N, "verticalContentAlignment", p())), We(() => oo(N, "fit", u())), We(() => oo(N, "isBusy", f())), We(() => oo(N, "label", g())), We(() => oo(N, "icon", y())), We(() => oo(N, "iconPosition", w())), We(() => oo(N, "iconSize", x())), We(() => oo(N, "type", _())), We(() => oo(N, "variant", z())), We(() => oo(N, "appearance", k())), We(() => oo(N, "size", E())), We(() => oo(N, "value", S())), We(() => oo(N, "disabled", C())), We(() => oo(N, "isFocused", R())), We(() => oo(N, "dir", $())), We(() => oo(N, "lang", L()));
171351
171426
  var U = DR(N);
171352
- QR(U, t, "default", {}), nA(N, (q) => Ds(e, q), () => yn(e)), We(() => N.dir = N.dir), JR(o, N), wR();
171427
+ QR(U, t, "default", {}), n2(N, (q) => Ds(e, q), () => yn(e)), We(() => N.dir = N.dir), JR(o, N), wR();
171353
171428
  }
171354
171429
  export {
171355
171430
  Cpt as MosaikButton
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breadstone/mosaik-elements-svelte",
3
- "version": "0.0.160",
3
+ "version": "0.0.161",
4
4
  "description": "Mosaik elements for Svelte.",
5
5
  "license": "MIT",
6
6
  "author": "andre.wehlert <awehlert@breadstone.de> (https://www.breadstone.de)",
@@ -15,8 +15,8 @@
15
15
  "vite": "*"
16
16
  },
17
17
  "dependencies": {
18
- "@breadstone/mosaik-elements": "^0.0.160",
19
- "@breadstone/mosaik-elements-foundation": "^0.0.160",
18
+ "@breadstone/mosaik-elements": "^0.0.161",
19
+ "@breadstone/mosaik-elements-foundation": "^0.0.161",
20
20
  "tslib": "^2.8.1"
21
21
  },
22
22
  "exports": {