@turquoisehealth/pit-viper 2.224.1-dev.2 → 2.224.1-dev.3

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 (63) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +79 -1
  2. package/_site/assets/css/pit-viper-consumer.css +79 -1
  3. package/_site/assets/css/pit-viper-v2-scoped.css +68 -1
  4. package/_site/assets/css/pit-viper-v2.css +118 -1
  5. package/_site/assets/css/pit-viper.css +79 -1
  6. package/package.json +1 -1
  7. package/pv-components/dist/stats/vue/ai/stats.html +1 -1
  8. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  9. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-action-button-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-filter-modal-stats.html +1 -1
  12. package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
  13. package/pv-components/dist/stats/web/pv-hover-action-menu-stats.html +1 -1
  14. package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
  15. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  16. package/pv-components/dist/stats/web/pv-popover-v2-stats.html +1 -1
  17. package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
  18. package/pv-components/dist/stats/web/pv-reasoning-stats.html +1 -1
  19. package/pv-components/dist/stats/web/pv-segmented-control-stats.html +1 -1
  20. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  21. package/pv-components/dist/stats/web/pv-sidebar-v2-stats.html +1 -1
  22. package/pv-components/dist/stats/web/pv-split-button-stats.html +1 -1
  23. package/pv-components/dist/stats/web/pv-step-list-stats.html +4950 -0
  24. package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
  25. package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
  26. package/pv-components/dist/vue/ai/components/ai/PvReasoning/PvReasoning.vue.d.ts +11 -3
  27. package/pv-components/dist/vue/ai/components/ai/PvReasoning/types.d.ts +3 -0
  28. package/pv-components/dist/vue/ai/components/ai/PvStepList/PvStepList.vue.d.ts +7 -0
  29. package/pv-components/dist/vue/ai/components/ai/PvStepList/types.d.ts +42 -0
  30. package/pv-components/dist/vue/ai/components/ai/index.d.ts +2 -0
  31. package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
  32. package/pv-components/dist/vue/ai/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
  33. package/pv-components/dist/vue/ai/components/base/PvSidebarV2/types.d.ts +2 -0
  34. package/pv-components/dist/vue/ai/pv-components-ai.mjs +490 -327
  35. package/pv-components/dist/vue/ai/pv-components-ai.mjs.map +1 -1
  36. package/pv-components/dist/vue/base/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
  37. package/pv-components/dist/vue/base/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
  38. package/pv-components/dist/vue/base/components/base/PvSidebarV2/types.d.ts +2 -0
  39. package/pv-components/dist/vue/base/pv-components-base.mjs +1091 -983
  40. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  41. package/pv-components/dist/vue/visualizations/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
  42. package/pv-components/dist/vue/visualizations/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
  43. package/pv-components/dist/vue/visualizations/components/base/PvSidebarV2/types.d.ts +2 -0
  44. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +13 -8
  45. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  46. package/pv-components/dist/web/components/pv-action-button/pv-action-button.js +8 -4
  47. package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +8 -4
  48. package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +8 -4
  49. package/pv-components/dist/web/components/pv-hover-action-menu/pv-hover-action-menu.js +197 -193
  50. package/pv-components/dist/web/components/pv-menu/pv-menu.js +8 -4
  51. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +8 -4
  52. package/pv-components/dist/web/components/pv-popover-v2/pv-popover-v2.js +8 -4
  53. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +16 -8
  54. package/pv-components/dist/web/components/pv-reasoning/pv-reasoning.js +640 -466
  55. package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +230 -226
  56. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +8 -4
  57. package/pv-components/dist/web/components/pv-sidebar-v2/pv-sidebar-v2.js +1431 -1322
  58. package/pv-components/dist/web/components/pv-split-button/pv-split-button.js +213 -209
  59. package/pv-components/dist/web/components/pv-step-list/pv-step-list.js +6309 -0
  60. package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +8 -4
  61. package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +8 -4
  62. package/pv-components/dist/web/pv-components.iife.js +39 -39
  63. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -1491,9 +1491,9 @@ var Gn = /* @__PURE__ */ new Set(), Kn = (e, t) => !!t.root.value && !!e.root.va
1491
1491
  !e && !t && !n && (j.value = !1);
1492
1492
  });
1493
1493
  let be = ({ target: e }) => {
1494
- D.value = e instanceof HTMLElement && e.matches(":focus-visible");
1494
+ D.value = !t.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
1495
1495
  }, xe = ({ target: e }) => {
1496
- k.value = e instanceof HTMLElement && e.matches(":focus-visible");
1496
+ k.value = !t.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
1497
1497
  }, Se = () => {
1498
1498
  k.value = !1;
1499
1499
  }, Ce = () => {
@@ -1531,7 +1531,11 @@ var Gn = /* @__PURE__ */ new Set(), Kn = (e, t) => !!t.root.value && !!e.root.va
1531
1531
  }), T(() => {
1532
1532
  he(), ge();
1533
1533
  }), P(() => t.disabled, (e) => {
1534
- e && (D.value &&= !1, k.value &&= !1, F(!1));
1534
+ if (!e) {
1535
+ ye.value && F(!0);
1536
+ return;
1537
+ }
1538
+ D.value &&= !1, k.value &&= !1, F(!1);
1535
1539
  }), (r, l) => (E(), o("div", {
1536
1540
  ref_key: "root",
1537
1541
  ref: v,
@@ -1567,7 +1571,7 @@ var Gn = /* @__PURE__ */ new Set(), Kn = (e, t) => !!t.root.value && !!e.root.va
1567
1571
  onFocusout: Se
1568
1572
  }, [A(r.$slots, "content")], 36), [[ie, c.value]])], 8, ["to", "disabled"])) : a("v-if", !0)], 36));
1569
1573
  }
1570
- }), [["styles", [".pv-floating-native[data-v-c13d6b59]{width:max-content;color:inherit;position-visibility:anchors-visible;background:0 0;border:0;margin:0;padding:0;position:fixed;inset:auto;overflow:visible}.pv-floating-native[data-v-c13d6b59]>.pv-popover,.pv-floating-native>slot[name=content][data-v-c13d6b59]::slotted(.pv-popover){position:static!important}"]], ["__scopeId", "data-v-c13d6b59"]]), Zn = ["data-variant"], Qn = /* @__PURE__ */ d({
1574
+ }), [["styles", [".pv-floating-native[data-v-e1e654f2]{width:max-content;color:inherit;position-visibility:anchors-visible;background:0 0;border:0;margin:0;padding:0;position:fixed;inset:auto;overflow:visible}.pv-floating-native[data-v-e1e654f2]>.pv-popover,.pv-floating-native>slot[name=content][data-v-e1e654f2]::slotted(.pv-popover){position:static!important}"]], ["__scopeId", "data-v-e1e654f2"]]), Zn = ["data-variant"], Qn = /* @__PURE__ */ d({
1571
1575
  __name: "PvTooltipV2",
1572
1576
  props: {
1573
1577
  variant: {
@@ -1726,34 +1730,34 @@ function fr(e = {}, t = {}) {
1726
1730
  function pr(...e) {
1727
1731
  return e.reduce((e, t, n) => n === 0 ? t : fr(e, t), {});
1728
1732
  }
1729
- function q(e, ...t) {
1733
+ function mr(e, ...t) {
1730
1734
  return ur(e) ? e(...t) : e;
1731
1735
  }
1732
- function mr(e, t = !0) {
1736
+ function hr(e, t = !0) {
1733
1737
  return typeof e == "string" && (t || e !== "");
1734
1738
  }
1735
- function hr(e) {
1739
+ function gr(e) {
1736
1740
  return K(e) && !isNaN(e);
1737
1741
  }
1738
- function gr(e, t) {
1742
+ function _r(e, t) {
1739
1743
  if (t) {
1740
1744
  let n = t.test(e);
1741
1745
  return t.lastIndex = 0, n;
1742
1746
  }
1743
1747
  return !1;
1744
1748
  }
1745
- function _r(...e) {
1749
+ function vr(...e) {
1746
1750
  return pr(...e);
1747
1751
  }
1748
- function vr(e) {
1752
+ function yr(e) {
1749
1753
  return e && e.replace(/\/\*(?:(?!\*\/)[\s\S])*\*\/|[\r\n\t]+/g, "").replace(/ {2,}/g, " ").replace(/ ([{:}]) /g, "$1").replace(/([;,]) /g, "$1").replace(/ !/g, "!").replace(/: /g, ":").trim();
1750
1754
  }
1751
- function yr(e) {
1752
- return mr(e) ? e.replace(/(_)/g, "-").replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase() : e;
1755
+ function br(e) {
1756
+ return hr(e) ? e.replace(/(_)/g, "-").replace(/([a-z])([A-Z])/g, "$1-$2").toLowerCase() : e;
1753
1757
  }
1754
1758
  //#endregion
1755
1759
  //#region ../node_modules/.pnpm/@primevue+core@4.5.4_vue@3.5.32_typescript@5.9.3_/node_modules/@primevue/core/api/index.mjs
1756
- var J = {
1760
+ var q = {
1757
1761
  STARTS_WITH: "startsWith",
1758
1762
  CONTAINS: "contains",
1759
1763
  NOT_CONTAINS: "notContains",
@@ -1773,7 +1777,7 @@ var J = {
1773
1777
  };
1774
1778
  //#endregion
1775
1779
  //#region ../node_modules/.pnpm/@primeuix+utils@0.6.4/node_modules/@primeuix/utils/dist/eventbus/index.mjs
1776
- function br() {
1780
+ function xr() {
1777
1781
  let e = /* @__PURE__ */ new Map();
1778
1782
  return {
1779
1783
  on(t, n) {
@@ -1797,21 +1801,21 @@ function br() {
1797
1801
  }
1798
1802
  //#endregion
1799
1803
  //#region ../node_modules/.pnpm/@primeuix+utils@0.6.4/node_modules/@primeuix/utils/dist/dom/index.mjs
1800
- function xr(e) {
1804
+ function Sr(e) {
1801
1805
  if (e) {
1802
1806
  let t = e.parentNode;
1803
1807
  return t && t instanceof ShadowRoot && t.host && (t = t.host), t;
1804
1808
  }
1805
1809
  return null;
1806
1810
  }
1807
- function Sr(e) {
1808
- return !!(e != null && e.nodeName && xr(e));
1809
- }
1810
1811
  function Cr(e) {
1812
+ return !!(e != null && e.nodeName && Sr(e));
1813
+ }
1814
+ function wr(e) {
1811
1815
  return typeof Element < "u" ? e instanceof Element : typeof e == "object" && !!e && e.nodeType === 1 && typeof e.nodeName == "string";
1812
1816
  }
1813
- function wr(e, t = {}) {
1814
- if (Cr(e)) {
1817
+ function Tr(e, t = {}) {
1818
+ if (wr(e)) {
1815
1819
  let n = (t, r) => {
1816
1820
  var i;
1817
1821
  let a = (i = e?.$attrs) != null && i[t] ? [e?.$attrs?.[t]] : [];
@@ -1830,70 +1834,70 @@ function wr(e, t = {}) {
1830
1834
  Object.entries(t).forEach(([t, r]) => {
1831
1835
  if (r != null) {
1832
1836
  let i = t.match(/^on(.+)/);
1833
- i ? e.addEventListener(i[1].toLowerCase(), r) : t === "p-bind" || t === "pBind" ? wr(e, r) : (r = t === "class" ? [...new Set(n("class", r))].join(" ").trim() : t === "style" ? n("style", r).join(";").trim() : r, (e.$attrs = e.$attrs || {}) && (e.$attrs[t] = r), e.setAttribute(t, r));
1837
+ i ? e.addEventListener(i[1].toLowerCase(), r) : t === "p-bind" || t === "pBind" ? Tr(e, r) : (r = t === "class" ? [...new Set(n("class", r))].join(" ").trim() : t === "style" ? n("style", r).join(";").trim() : r, (e.$attrs = e.$attrs || {}) && (e.$attrs[t] = r), e.setAttribute(t, r));
1834
1838
  }
1835
1839
  });
1836
1840
  }
1837
1841
  }
1838
- function Tr() {
1842
+ function Er() {
1839
1843
  return !!(typeof window < "u" && window.document && window.document.createElement);
1840
1844
  }
1841
- function Er(e, t = "", n) {
1842
- Cr(e) && n != null && e.setAttribute(t, n);
1845
+ function Dr(e, t = "", n) {
1846
+ wr(e) && n != null && e.setAttribute(t, n);
1843
1847
  }
1844
1848
  //#endregion
1845
1849
  //#region ../node_modules/.pnpm/@primeuix+styled@0.7.4/node_modules/@primeuix/styled/dist/index.mjs
1846
- var Dr = Object.defineProperty, Or = Object.defineProperties, kr = Object.getOwnPropertyDescriptors, Ar = Object.getOwnPropertySymbols, jr = Object.prototype.hasOwnProperty, Mr = Object.prototype.propertyIsEnumerable, Nr = (e, t, n) => t in e ? Dr(e, t, {
1850
+ var Or = Object.defineProperty, kr = Object.defineProperties, Ar = Object.getOwnPropertyDescriptors, jr = Object.getOwnPropertySymbols, Mr = Object.prototype.hasOwnProperty, Nr = Object.prototype.propertyIsEnumerable, Pr = (e, t, n) => t in e ? Or(e, t, {
1847
1851
  enumerable: !0,
1848
1852
  configurable: !0,
1849
1853
  writable: !0,
1850
1854
  value: n
1851
- }) : e[t] = n, Y = (e, t) => {
1852
- for (var n in t ||= {}) jr.call(t, n) && Nr(e, n, t[n]);
1853
- if (Ar) for (var n of Ar(t)) Mr.call(t, n) && Nr(e, n, t[n]);
1855
+ }) : e[t] = n, J = (e, t) => {
1856
+ for (var n in t ||= {}) Mr.call(t, n) && Pr(e, n, t[n]);
1857
+ if (jr) for (var n of jr(t)) Nr.call(t, n) && Pr(e, n, t[n]);
1854
1858
  return e;
1855
- }, Pr = (e, t) => Or(e, kr(t)), X = (e, t) => {
1859
+ }, Fr = (e, t) => kr(e, Ar(t)), Y = (e, t) => {
1856
1860
  var n = {};
1857
- for (var r in e) jr.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]);
1858
- if (e != null && Ar) for (var r of Ar(e)) t.indexOf(r) < 0 && Mr.call(e, r) && (n[r] = e[r]);
1861
+ for (var r in e) Mr.call(e, r) && t.indexOf(r) < 0 && (n[r] = e[r]);
1862
+ if (e != null && jr) for (var r of jr(e)) t.indexOf(r) < 0 && Nr.call(e, r) && (n[r] = e[r]);
1859
1863
  return n;
1860
- }, Z = br(), Fr = /{([^}]*)}/g, Ir = /(\d+\s+[\+\-\*\/]\s+\d+)/g, Lr = /var\([^)]+\)/g;
1861
- function Rr(e) {
1862
- return mr(e) ? e.replace(/[A-Z]/g, (e, t) => t === 0 ? e : "." + e.toLowerCase()).toLowerCase() : e;
1863
- }
1864
+ }, X = xr(), Ir = /{([^}]*)}/g, Lr = /(\d+\s+[\+\-\*\/]\s+\d+)/g, Rr = /var\([^)]+\)/g;
1864
1865
  function zr(e) {
1865
- return dr(e) && e.hasOwnProperty("$value") && e.hasOwnProperty("$type") ? e.$value : e;
1866
+ return hr(e) ? e.replace(/[A-Z]/g, (e, t) => t === 0 ? e : "." + e.toLowerCase()).toLowerCase() : e;
1866
1867
  }
1867
1868
  function Br(e) {
1868
- return e.replaceAll(/ /g, "").replace(/[^\w]/g, "-");
1869
+ return dr(e) && e.hasOwnProperty("$value") && e.hasOwnProperty("$type") ? e.$value : e;
1869
1870
  }
1870
- function Vr(e = "", t = "") {
1871
- return Br(`${mr(e, !1) && mr(t, !1) ? `${e}-` : e}${t}`);
1871
+ function Vr(e) {
1872
+ return e.replaceAll(/ /g, "").replace(/[^\w]/g, "-");
1872
1873
  }
1873
1874
  function Hr(e = "", t = "") {
1874
- return `--${Vr(e, t)}`;
1875
+ return Vr(`${hr(e, !1) && hr(t, !1) ? `${e}-` : e}${t}`);
1876
+ }
1877
+ function Ur(e = "", t = "") {
1878
+ return `--${Hr(e, t)}`;
1875
1879
  }
1876
- function Ur(e = "") {
1880
+ function Wr(e = "") {
1877
1881
  return ((e.match(/{/g) || []).length + (e.match(/}/g) || []).length) % 2 != 0;
1878
1882
  }
1879
- function Wr(e, t = "", n = "", r = [], i) {
1880
- if (mr(e)) {
1883
+ function Gr(e, t = "", n = "", r = [], i) {
1884
+ if (hr(e)) {
1881
1885
  let t = e.trim();
1882
- if (Ur(t)) return;
1883
- if (gr(t, Fr)) {
1884
- let e = t.replaceAll(Fr, (e) => `var(${Hr(n, yr(e.replace(/{|}/g, "").split(".").filter((e) => !r.some((t) => gr(e, t))).join("-")))}${K(i) ? `, ${i}` : ""})`);
1885
- return gr(e.replace(Lr, "0"), Ir) ? `calc(${e})` : e;
1886
+ if (Wr(t)) return;
1887
+ if (_r(t, Ir)) {
1888
+ let e = t.replaceAll(Ir, (e) => `var(${Ur(n, br(e.replace(/{|}/g, "").split(".").filter((e) => !r.some((t) => _r(e, t))).join("-")))}${K(i) ? `, ${i}` : ""})`);
1889
+ return _r(e.replace(Rr, "0"), Lr) ? `calc(${e})` : e;
1886
1890
  }
1887
1891
  return t;
1888
- } else if (hr(e)) return e;
1892
+ } else if (gr(e)) return e;
1889
1893
  }
1890
- function Gr(e, t, n) {
1891
- mr(t, !1) && e.push(`${t}:${n};`);
1894
+ function Kr(e, t, n) {
1895
+ hr(t, !1) && e.push(`${t}:${n};`);
1892
1896
  }
1893
- function Kr(e, t) {
1897
+ function qr(e, t) {
1894
1898
  return e ? `${e}{${t}}` : "";
1895
1899
  }
1896
- function qr(e, t) {
1900
+ function Jr(e, t) {
1897
1901
  if (e.indexOf("dt(") === -1) return e;
1898
1902
  function n(e, t) {
1899
1903
  let n = [], i = 0, a = "", o = null, s = 0;
@@ -1901,7 +1905,7 @@ function qr(e, t) {
1901
1905
  let c = e[i];
1902
1906
  if ((c === "\"" || c === "'" || c === "`") && e[i - 1] !== "\\" && (o = o === c ? null : c), !o && (c === "(" && s++, c === ")" && s--, (c === "," || i === e.length) && s === 0)) {
1903
1907
  let e = a.trim();
1904
- e.startsWith("dt(") ? n.push(qr(e, t)) : n.push(r(e)), a = "", i++;
1908
+ e.startsWith("dt(") ? n.push(Jr(e, t)) : n.push(r(e)), a = "", i++;
1905
1909
  continue;
1906
1910
  }
1907
1911
  c !== void 0 && (a += c), i++;
@@ -1927,31 +1931,31 @@ function qr(e, t) {
1927
1931
  }
1928
1932
  return e;
1929
1933
  }
1930
- var Jr = (...e) => Yr($.getTheme(), ...e), Yr = (e = {}, t, n, r) => {
1934
+ var Yr = (...e) => Xr(Q.getTheme(), ...e), Xr = (e = {}, t, n, r) => {
1931
1935
  if (t) {
1932
- let { variable: i, options: a } = $.defaults || {}, { prefix: o, transform: s } = e?.options || a || {}, c = gr(t, Fr) ? t : `{${t}}`;
1933
- return r === "value" || lr(r) && s === "strict" ? $.getTokenValue(t) : Wr(c, void 0, o, [i.excludedKeyRegex], n);
1936
+ let { variable: i, options: a } = Q.defaults || {}, { prefix: o, transform: s } = e?.options || a || {}, c = _r(t, Ir) ? t : `{${t}}`;
1937
+ return r === "value" || lr(r) && s === "strict" ? Q.getTokenValue(t) : Gr(c, void 0, o, [i.excludedKeyRegex], n);
1934
1938
  }
1935
1939
  return "";
1936
1940
  };
1937
- function Xr(e, ...t) {
1938
- return e instanceof Array ? qr(e.reduce((e, n, r) => e + n + (q(t[r], { dt: Jr }) ?? ""), ""), Jr) : q(e, { dt: Jr });
1941
+ function Zr(e, ...t) {
1942
+ return e instanceof Array ? Jr(e.reduce((e, n, r) => e + n + (mr(t[r], { dt: Yr }) ?? ""), ""), Yr) : mr(e, { dt: Yr });
1939
1943
  }
1940
- function Zr(e, t = {}) {
1941
- let n = $.defaults.variable, { prefix: r = n.prefix, selector: i = n.selector, excludedKeyRegex: a = n.excludedKeyRegex } = t, o = [], s = [], c = [{
1944
+ function Qr(e, t = {}) {
1945
+ let n = Q.defaults.variable, { prefix: r = n.prefix, selector: i = n.selector, excludedKeyRegex: a = n.excludedKeyRegex } = t, o = [], s = [], c = [{
1942
1946
  node: e,
1943
1947
  path: r
1944
1948
  }];
1945
1949
  for (; c.length;) {
1946
1950
  let { node: e, path: t } = c.pop();
1947
1951
  for (let n in e) {
1948
- let i = e[n], l = zr(i), u = gr(n, a) ? Vr(t) : Vr(t, yr(n));
1952
+ let i = e[n], l = Br(i), u = _r(n, a) ? Hr(t) : Hr(t, br(n));
1949
1953
  if (dr(l)) c.push({
1950
1954
  node: l,
1951
1955
  path: u
1952
1956
  });
1953
1957
  else {
1954
- Gr(s, Hr(u), Wr(l, u, r, [a]));
1958
+ Kr(s, Ur(u), Gr(l, u, r, [a]));
1955
1959
  let e = u;
1956
1960
  r && e.startsWith(r + "-") && (e = e.slice(r.length + 1)), o.push(e.replace(/-/g, "."));
1957
1961
  }
@@ -1962,10 +1966,10 @@ function Zr(e, t = {}) {
1962
1966
  value: s,
1963
1967
  tokens: o,
1964
1968
  declarations: l,
1965
- css: Kr(i, l)
1969
+ css: qr(i, l)
1966
1970
  };
1967
1971
  }
1968
- var Q = {
1972
+ var Z = {
1969
1973
  regex: {
1970
1974
  rules: {
1971
1975
  class: {
@@ -2022,12 +2026,12 @@ var Q = {
2022
2026
  }
2023
2027
  },
2024
2028
  _toVariables(e, t) {
2025
- return Zr(e, { prefix: t?.prefix });
2029
+ return Qr(e, { prefix: t?.prefix });
2026
2030
  },
2027
2031
  getCommon({ name: e = "", theme: t = {}, params: n, set: r, defaults: i }) {
2028
2032
  let { preset: a, options: o } = t, s, c, l, u, d, f, p;
2029
2033
  if (K(a) && o.transform !== "strict") {
2030
- let { primitive: t, semantic: n, extend: m } = a, h = n || {}, { colorScheme: g } = h, _ = X(h, ["colorScheme"]), v = m || {}, { colorScheme: y } = v, b = X(v, ["colorScheme"]), x = g || {}, { dark: S } = x, C = X(x, ["dark"]), w = y || {}, { dark: T } = w, E = X(w, ["dark"]), ee = K(t) ? this._toVariables({ primitive: t }, o) : {}, D = K(_) ? this._toVariables({ semantic: _ }, o) : {}, O = K(C) ? this._toVariables({ light: C }, o) : {}, k = K(S) ? this._toVariables({ dark: S }, o) : {}, A = K(b) ? this._toVariables({ semantic: b }, o) : {}, j = K(E) ? this._toVariables({ light: E }, o) : {}, M = K(T) ? this._toVariables({ dark: T }, o) : {}, [N, te] = [ee.declarations ?? "", ee.tokens], [ne, re] = [D.declarations ?? "", D.tokens || []], [ie, P] = [O.declarations ?? "", O.tokens || []], [ae, oe] = [k.declarations ?? "", k.tokens || []], [se, ce] = [A.declarations ?? "", A.tokens || []], [le, ue] = [j.declarations ?? "", j.tokens || []], [de, fe] = [M.declarations ?? "", M.tokens || []];
2034
+ let { primitive: t, semantic: n, extend: m } = a, h = n || {}, { colorScheme: g } = h, _ = Y(h, ["colorScheme"]), v = m || {}, { colorScheme: y } = v, b = Y(v, ["colorScheme"]), x = g || {}, { dark: S } = x, C = Y(x, ["dark"]), w = y || {}, { dark: T } = w, E = Y(w, ["dark"]), ee = K(t) ? this._toVariables({ primitive: t }, o) : {}, D = K(_) ? this._toVariables({ semantic: _ }, o) : {}, O = K(C) ? this._toVariables({ light: C }, o) : {}, k = K(S) ? this._toVariables({ dark: S }, o) : {}, A = K(b) ? this._toVariables({ semantic: b }, o) : {}, j = K(E) ? this._toVariables({ light: E }, o) : {}, M = K(T) ? this._toVariables({ dark: T }, o) : {}, [N, te] = [ee.declarations ?? "", ee.tokens], [ne, re] = [D.declarations ?? "", D.tokens || []], [ie, P] = [O.declarations ?? "", O.tokens || []], [ae, oe] = [k.declarations ?? "", k.tokens || []], [se, ce] = [A.declarations ?? "", A.tokens || []], [le, ue] = [j.declarations ?? "", j.tokens || []], [de, fe] = [M.declarations ?? "", M.tokens || []];
2031
2035
  s = this.transformCSS(e, N, "light", "variable", o, r, i), c = te, l = `${this.transformCSS(e, `${ne}${ie}`, "light", "variable", o, r, i)}${this.transformCSS(e, `${ae}`, "dark", "variable", o, r, i)}`, u = [...new Set([
2032
2036
  ...re,
2033
2037
  ...P,
@@ -2036,7 +2040,7 @@ var Q = {
2036
2040
  ...ce,
2037
2041
  ...ue,
2038
2042
  ...fe
2039
- ])], p = q(a.css, { dt: Jr });
2043
+ ])], p = mr(a.css, { dt: Yr });
2040
2044
  }
2041
2045
  return {
2042
2046
  primitive: {
@@ -2057,16 +2061,16 @@ var Q = {
2057
2061
  getPreset({ name: e = "", preset: t = {}, options: n, params: r, set: i, defaults: a, selector: o }) {
2058
2062
  let s, c, l;
2059
2063
  if (K(t) && n.transform !== "strict") {
2060
- let r = e.replace("-directive", ""), u = t, { colorScheme: d, extend: f, css: p } = u, m = X(u, [
2064
+ let r = e.replace("-directive", ""), u = t, { colorScheme: d, extend: f, css: p } = u, m = Y(u, [
2061
2065
  "colorScheme",
2062
2066
  "extend",
2063
2067
  "css"
2064
- ]), h = f || {}, { colorScheme: g } = h, _ = X(h, ["colorScheme"]), v = d || {}, { dark: y } = v, b = X(v, ["dark"]), x = g || {}, { dark: S } = x, C = X(x, ["dark"]), w = K(m) ? this._toVariables({ [r]: Y(Y({}, m), _) }, n) : {}, T = K(b) ? this._toVariables({ [r]: Y(Y({}, b), C) }, n) : {}, E = K(y) ? this._toVariables({ [r]: Y(Y({}, y), S) }, n) : {}, [ee, D] = [w.declarations ?? "", w.tokens || []], [O, k] = [T.declarations ?? "", T.tokens || []], [A, j] = [E.declarations ?? "", E.tokens || []];
2068
+ ]), h = f || {}, { colorScheme: g } = h, _ = Y(h, ["colorScheme"]), v = d || {}, { dark: y } = v, b = Y(v, ["dark"]), x = g || {}, { dark: S } = x, C = Y(x, ["dark"]), w = K(m) ? this._toVariables({ [r]: J(J({}, m), _) }, n) : {}, T = K(b) ? this._toVariables({ [r]: J(J({}, b), C) }, n) : {}, E = K(y) ? this._toVariables({ [r]: J(J({}, y), S) }, n) : {}, [ee, D] = [w.declarations ?? "", w.tokens || []], [O, k] = [T.declarations ?? "", T.tokens || []], [A, j] = [E.declarations ?? "", E.tokens || []];
2065
2069
  s = `${this.transformCSS(r, `${ee}${O}`, "light", "variable", n, i, a, o)}${this.transformCSS(r, A, "dark", "variable", n, i, a, o)}`, c = [...new Set([
2066
2070
  ...D,
2067
2071
  ...k,
2068
2072
  ...j
2069
- ])], l = q(p, { dt: Jr });
2073
+ ])], l = mr(p, { dt: Yr });
2070
2074
  }
2071
2075
  return {
2072
2076
  css: s,
@@ -2104,7 +2108,7 @@ var Q = {
2104
2108
  },
2105
2109
  getLayerOrder(e, t = {}, n, r) {
2106
2110
  let { cssLayer: i } = t;
2107
- return i ? `@layer ${q(i.order || i.name || "primeui", n)}` : "";
2111
+ return i ? `@layer ${mr(i.order || i.name || "primeui", n)}` : "";
2108
2112
  },
2109
2113
  getCommonStyleSheet({ name: e = "", theme: t = {}, params: n, props: r = {}, set: i, defaults: a }) {
2110
2114
  let o = this.getCommon({
@@ -2116,7 +2120,7 @@ var Q = {
2116
2120
  }), s = Object.entries(r).reduce((e, [t, n]) => e.push(`${t}="${n}"`) && e, []).join(" ");
2117
2121
  return Object.entries(o || {}).reduce((e, [t, n]) => {
2118
2122
  if (dr(n) && Object.hasOwn(n, "css")) {
2119
- let r = vr(n.css), i = `${t}-variables`;
2123
+ let r = yr(n.css), i = `${t}-variables`;
2120
2124
  e.push(`<style type="text/css" data-primevue-style-id="${i}" ${s}>${r}</style>`);
2121
2125
  }
2122
2126
  return e;
@@ -2130,7 +2134,7 @@ var Q = {
2130
2134
  set: i,
2131
2135
  defaults: a
2132
2136
  }, s = (e.includes("-directive") ? this.getPresetD(o) : this.getPresetC(o))?.css, c = Object.entries(r).reduce((e, [t, n]) => e.push(`${t}="${n}"`) && e, []).join(" ");
2133
- return s ? `<style type="text/css" data-primevue-style-id="${e}-variables" ${c}>${vr(s)}</style>` : "";
2137
+ return s ? `<style type="text/css" data-primevue-style-id="${e}-variables" ${c}>${yr(s)}</style>` : "";
2134
2138
  },
2135
2139
  createTokens(e = {}, t, n = "", r = "", i = {}) {
2136
2140
  let a = function(e, t = {}, n = []) {
@@ -2142,14 +2146,14 @@ var Q = {
2142
2146
  };
2143
2147
  n.push(this.path), t.name = this.path, t.binding ||= {};
2144
2148
  let r = this.value;
2145
- if (typeof this.value == "string" && Fr.test(this.value)) {
2146
- let i = this.value.trim().replace(Fr, (r) => {
2149
+ if (typeof this.value == "string" && Ir.test(this.value)) {
2150
+ let i = this.value.trim().replace(Ir, (r) => {
2147
2151
  let i = r.slice(1, -1), a = this.tokens[i];
2148
2152
  if (!a) return console.warn(`Token not found for path: ${i}`), "__UNRESOLVED__";
2149
2153
  let o = a.computed(e, t, n);
2150
2154
  return Array.isArray(o) && o.length === 2 ? `light-dark(${o[0].value},${o[1].value})` : o?.value ?? "__UNRESOLVED__";
2151
2155
  });
2152
- r = Ir.test(i.replace(Lr, "0")) ? `calc(${i})` : i;
2156
+ r = Lr.test(i.replace(Rr, "0")) ? `calc(${i})` : i;
2153
2157
  }
2154
2158
  return lr(t.binding) && delete t.binding, n.pop(), {
2155
2159
  colorScheme: e,
@@ -2159,7 +2163,7 @@ var Q = {
2159
2163
  };
2160
2164
  }, o = (e, n, r) => {
2161
2165
  Object.entries(e).forEach(([e, s]) => {
2162
- let c = gr(e, t.variable.excludedKeyRegex) ? n : n ? `${n}.${Rr(e)}` : Rr(e), l = r ? `${r}.${e}` : e;
2166
+ let c = _r(e, t.variable.excludedKeyRegex) ? n : n ? `${n}.${zr(e)}` : zr(e), l = r ? `${r}.${e}` : e;
2163
2167
  dr(s) ? o(s, c, l) : (i[c] || (i[c] = {
2164
2168
  paths: [],
2165
2169
  computed: (e, t = {}, n = []) => {
@@ -2182,37 +2186,37 @@ var Q = {
2182
2186
  return o(e, n, r), i;
2183
2187
  },
2184
2188
  getTokenValue(e, t, n) {
2185
- let r = ((e) => e.split(".").filter((e) => !gr(e.toLowerCase(), n.variable.excludedKeyRegex)).join("."))(t), i = t.includes("colorScheme.light") ? "light" : t.includes("colorScheme.dark") ? "dark" : void 0, a = [e[r]?.computed(i)].flat().filter((e) => e);
2189
+ let r = ((e) => e.split(".").filter((e) => !_r(e.toLowerCase(), n.variable.excludedKeyRegex)).join("."))(t), i = t.includes("colorScheme.light") ? "light" : t.includes("colorScheme.dark") ? "dark" : void 0, a = [e[r]?.computed(i)].flat().filter((e) => e);
2186
2190
  return a.length === 1 ? a[0].value : a.reduce((e = {}, t) => {
2187
2191
  let n = t, { colorScheme: r } = n;
2188
- return e[r] = X(n, ["colorScheme"]), e;
2192
+ return e[r] = Y(n, ["colorScheme"]), e;
2189
2193
  }, void 0);
2190
2194
  },
2191
2195
  getSelectorRule(e, t, n, r) {
2192
- return n === "class" || n === "attr" ? Kr(K(t) ? `${e}${t},${e} ${t}` : e, r) : Kr(e, Kr(t ?? ":root,:host", r));
2196
+ return n === "class" || n === "attr" ? qr(K(t) ? `${e}${t},${e} ${t}` : e, r) : qr(e, qr(t ?? ":root,:host", r));
2193
2197
  },
2194
2198
  transformCSS(e, t, n, r, i = {}, a, o, s) {
2195
2199
  if (K(t)) {
2196
2200
  let { cssLayer: c } = i;
2197
2201
  if (r !== "style") {
2198
2202
  let e = this.getColorSchemeOption(i, o);
2199
- t = n === "dark" ? e.reduce((e, { type: n, selector: r }) => (K(r) && (e += r.includes("[CSS]") ? r.replace("[CSS]", t) : this.getSelectorRule(r, s, n, t)), e), "") : Kr(s ?? ":root,:host", t);
2203
+ t = n === "dark" ? e.reduce((e, { type: n, selector: r }) => (K(r) && (e += r.includes("[CSS]") ? r.replace("[CSS]", t) : this.getSelectorRule(r, s, n, t)), e), "") : qr(s ?? ":root,:host", t);
2200
2204
  }
2201
2205
  if (c) {
2202
2206
  let n = {
2203
2207
  name: "primeui",
2204
2208
  order: "primeui"
2205
2209
  };
2206
- dr(c) && (n.name = q(c.name, {
2210
+ dr(c) && (n.name = mr(c.name, {
2207
2211
  name: e,
2208
2212
  type: r
2209
- })), K(n.name) && (t = Kr(`@layer ${n.name}`, t), a?.layerNames(n.name));
2213
+ })), K(n.name) && (t = qr(`@layer ${n.name}`, t), a?.layerNames(n.name));
2210
2214
  }
2211
2215
  return t;
2212
2216
  }
2213
2217
  return "";
2214
2218
  }
2215
- }, $ = {
2219
+ }, Q = {
2216
2220
  defaults: {
2217
2221
  variable: {
2218
2222
  prefix: "p",
@@ -2232,7 +2236,7 @@ var Q = {
2232
2236
  _tokens: {},
2233
2237
  update(e = {}) {
2234
2238
  let { theme: t } = e;
2235
- t && (this._theme = Pr(Y({}, t), { options: Y(Y({}, this.defaults.options), t.options) }), this._tokens = Q.createTokens(this.preset, this.defaults), this.clearLoadedStyleNames());
2239
+ t && (this._theme = Fr(J({}, t), { options: J(J({}, this.defaults.options), t.options) }), this._tokens = Z.createTokens(this.preset, this.defaults), this.clearLoadedStyleNames());
2236
2240
  },
2237
2241
  get theme() {
2238
2242
  return this._theme;
@@ -2250,19 +2254,19 @@ var Q = {
2250
2254
  return this.theme;
2251
2255
  },
2252
2256
  setTheme(e) {
2253
- this.update({ theme: e }), Z.emit("theme:change", e);
2257
+ this.update({ theme: e }), X.emit("theme:change", e);
2254
2258
  },
2255
2259
  getPreset() {
2256
2260
  return this.preset;
2257
2261
  },
2258
2262
  setPreset(e) {
2259
- this._theme = Pr(Y({}, this.theme), { preset: e }), this._tokens = Q.createTokens(e, this.defaults), this.clearLoadedStyleNames(), Z.emit("preset:change", e), Z.emit("theme:change", this.theme);
2263
+ this._theme = Fr(J({}, this.theme), { preset: e }), this._tokens = Z.createTokens(e, this.defaults), this.clearLoadedStyleNames(), X.emit("preset:change", e), X.emit("theme:change", this.theme);
2260
2264
  },
2261
2265
  getOptions() {
2262
2266
  return this.options;
2263
2267
  },
2264
2268
  setOptions(e) {
2265
- this._theme = Pr(Y({}, this.theme), { options: e }), this.clearLoadedStyleNames(), Z.emit("options:change", e), Z.emit("theme:change", this.theme);
2269
+ this._theme = Fr(J({}, this.theme), { options: e }), this.clearLoadedStyleNames(), X.emit("options:change", e), X.emit("theme:change", this.theme);
2266
2270
  },
2267
2271
  getLayerNames() {
2268
2272
  return [...this._layerNames];
@@ -2286,10 +2290,10 @@ var Q = {
2286
2290
  this._loadedStyleNames.clear();
2287
2291
  },
2288
2292
  getTokenValue(e) {
2289
- return Q.getTokenValue(this.tokens, e, this.defaults);
2293
+ return Z.getTokenValue(this.tokens, e, this.defaults);
2290
2294
  },
2291
2295
  getCommon(e = "", t) {
2292
- return Q.getCommon({
2296
+ return Z.getCommon({
2293
2297
  name: e,
2294
2298
  theme: this.theme,
2295
2299
  params: t,
@@ -2305,7 +2309,7 @@ var Q = {
2305
2309
  defaults: this.defaults,
2306
2310
  set: { layerNames: this.setLayerNames.bind(this) }
2307
2311
  };
2308
- return Q.getPresetC(n);
2312
+ return Z.getPresetC(n);
2309
2313
  },
2310
2314
  getDirective(e = "", t) {
2311
2315
  let n = {
@@ -2315,7 +2319,7 @@ var Q = {
2315
2319
  defaults: this.defaults,
2316
2320
  set: { layerNames: this.setLayerNames.bind(this) }
2317
2321
  };
2318
- return Q.getPresetD(n);
2322
+ return Z.getPresetD(n);
2319
2323
  },
2320
2324
  getCustomPreset(e = "", t, n, r) {
2321
2325
  let i = {
@@ -2327,16 +2331,16 @@ var Q = {
2327
2331
  defaults: this.defaults,
2328
2332
  set: { layerNames: this.setLayerNames.bind(this) }
2329
2333
  };
2330
- return Q.getPreset(i);
2334
+ return Z.getPreset(i);
2331
2335
  },
2332
2336
  getLayerOrderCSS(e = "") {
2333
- return Q.getLayerOrder(e, this.options, { names: this.getLayerNames() }, this.defaults);
2337
+ return Z.getLayerOrder(e, this.options, { names: this.getLayerNames() }, this.defaults);
2334
2338
  },
2335
2339
  transformCSS(e = "", t, n = "style", r) {
2336
- return Q.transformCSS(e, t, r, n, this.options, { layerNames: this.setLayerNames.bind(this) }, this.defaults);
2340
+ return Z.transformCSS(e, t, r, n, this.options, { layerNames: this.setLayerNames.bind(this) }, this.defaults);
2337
2341
  },
2338
2342
  getCommonStyleSheet(e = "", t, n = {}) {
2339
- return Q.getCommonStyleSheet({
2343
+ return Z.getCommonStyleSheet({
2340
2344
  name: e,
2341
2345
  theme: this.theme,
2342
2346
  params: t,
@@ -2346,7 +2350,7 @@ var Q = {
2346
2350
  });
2347
2351
  },
2348
2352
  getStyleSheet(e, t, n = {}) {
2349
- return Q.getStyleSheet({
2353
+ return Z.getStyleSheet({
2350
2354
  name: e,
2351
2355
  theme: this.theme,
2352
2356
  params: t,
@@ -2362,20 +2366,20 @@ var Q = {
2362
2366
  this._loadingStyles.add(e);
2363
2367
  },
2364
2368
  onStyleLoaded(e, { name: t }) {
2365
- this._loadingStyles.size && (this._loadingStyles.delete(t), Z.emit(`theme:${t}:load`, e), !this._loadingStyles.size && Z.emit("theme:load"));
2369
+ this._loadingStyles.size && (this._loadingStyles.delete(t), X.emit(`theme:${t}:load`, e), !this._loadingStyles.size && X.emit("theme:load"));
2366
2370
  }
2367
- }, Qr = "\n *,\n ::before,\n ::after {\n box-sizing: border-box;\n }\n\n .p-collapsible-enter-active {\n animation: p-animate-collapsible-expand 0.2s ease-out;\n overflow: hidden;\n }\n\n .p-collapsible-leave-active {\n animation: p-animate-collapsible-collapse 0.2s ease-out;\n overflow: hidden;\n }\n\n @keyframes p-animate-collapsible-expand {\n from {\n grid-template-rows: 0fr;\n }\n to {\n grid-template-rows: 1fr;\n }\n }\n\n @keyframes p-animate-collapsible-collapse {\n from {\n grid-template-rows: 1fr;\n }\n to {\n grid-template-rows: 0fr;\n }\n }\n\n .p-disabled,\n .p-disabled * {\n cursor: default;\n pointer-events: none;\n user-select: none;\n }\n\n .p-disabled,\n .p-component:disabled {\n opacity: dt('disabled.opacity');\n }\n\n .pi {\n font-size: dt('icon.size');\n }\n\n .p-icon {\n width: dt('icon.size');\n height: dt('icon.size');\n }\n\n .p-overlay-mask {\n background: var(--px-mask-background, dt('mask.background'));\n color: dt('mask.color');\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n }\n\n .p-overlay-mask-enter-active {\n animation: p-animate-overlay-mask-enter dt('mask.transition.duration') forwards;\n }\n\n .p-overlay-mask-leave-active {\n animation: p-animate-overlay-mask-leave dt('mask.transition.duration') forwards;\n }\n\n @keyframes p-animate-overlay-mask-enter {\n from {\n background: transparent;\n }\n to {\n background: var(--px-mask-background, dt('mask.background'));\n }\n }\n @keyframes p-animate-overlay-mask-leave {\n from {\n background: var(--px-mask-background, dt('mask.background'));\n }\n to {\n background: transparent;\n }\n }\n\n .p-anchored-overlay-enter-active {\n animation: p-animate-anchored-overlay-enter 300ms cubic-bezier(.19,1,.22,1);\n }\n\n .p-anchored-overlay-leave-active {\n animation: p-animate-anchored-overlay-leave 300ms cubic-bezier(.19,1,.22,1);\n }\n\n @keyframes p-animate-anchored-overlay-enter {\n from {\n opacity: 0;\n transform: scale(0.93);\n }\n }\n\n @keyframes p-animate-anchored-overlay-leave {\n to {\n opacity: 0;\n transform: scale(0.93);\n }\n }\n";
2371
+ }, $r = "\n *,\n ::before,\n ::after {\n box-sizing: border-box;\n }\n\n .p-collapsible-enter-active {\n animation: p-animate-collapsible-expand 0.2s ease-out;\n overflow: hidden;\n }\n\n .p-collapsible-leave-active {\n animation: p-animate-collapsible-collapse 0.2s ease-out;\n overflow: hidden;\n }\n\n @keyframes p-animate-collapsible-expand {\n from {\n grid-template-rows: 0fr;\n }\n to {\n grid-template-rows: 1fr;\n }\n }\n\n @keyframes p-animate-collapsible-collapse {\n from {\n grid-template-rows: 1fr;\n }\n to {\n grid-template-rows: 0fr;\n }\n }\n\n .p-disabled,\n .p-disabled * {\n cursor: default;\n pointer-events: none;\n user-select: none;\n }\n\n .p-disabled,\n .p-component:disabled {\n opacity: dt('disabled.opacity');\n }\n\n .pi {\n font-size: dt('icon.size');\n }\n\n .p-icon {\n width: dt('icon.size');\n height: dt('icon.size');\n }\n\n .p-overlay-mask {\n background: var(--px-mask-background, dt('mask.background'));\n color: dt('mask.color');\n position: fixed;\n top: 0;\n left: 0;\n width: 100%;\n height: 100%;\n }\n\n .p-overlay-mask-enter-active {\n animation: p-animate-overlay-mask-enter dt('mask.transition.duration') forwards;\n }\n\n .p-overlay-mask-leave-active {\n animation: p-animate-overlay-mask-leave dt('mask.transition.duration') forwards;\n }\n\n @keyframes p-animate-overlay-mask-enter {\n from {\n background: transparent;\n }\n to {\n background: var(--px-mask-background, dt('mask.background'));\n }\n }\n @keyframes p-animate-overlay-mask-leave {\n from {\n background: var(--px-mask-background, dt('mask.background'));\n }\n to {\n background: transparent;\n }\n }\n\n .p-anchored-overlay-enter-active {\n animation: p-animate-anchored-overlay-enter 300ms cubic-bezier(.19,1,.22,1);\n }\n\n .p-anchored-overlay-leave-active {\n animation: p-animate-anchored-overlay-leave 300ms cubic-bezier(.19,1,.22,1);\n }\n\n @keyframes p-animate-anchored-overlay-enter {\n from {\n opacity: 0;\n transform: scale(0.93);\n }\n }\n\n @keyframes p-animate-anchored-overlay-leave {\n to {\n opacity: 0;\n transform: scale(0.93);\n }\n }\n";
2368
2372
  //#endregion
2369
2373
  //#region ../node_modules/.pnpm/@primevue+core@4.5.4_vue@3.5.32_typescript@5.9.3_/node_modules/@primevue/core/usestyle/index.mjs
2370
- function $r(e) {
2374
+ function ei(e) {
2371
2375
  "@babel/helpers - typeof";
2372
- return $r = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
2376
+ return ei = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
2373
2377
  return typeof e;
2374
2378
  } : function(e) {
2375
2379
  return e && typeof Symbol == "function" && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e;
2376
- }, $r(e);
2380
+ }, ei(e);
2377
2381
  }
2378
- function ei(e, t) {
2382
+ function ti(e, t) {
2379
2383
  var n = Object.keys(e);
2380
2384
  if (Object.getOwnPropertySymbols) {
2381
2385
  var r = Object.getOwnPropertySymbols(e);
@@ -2385,68 +2389,68 @@ function ei(e, t) {
2385
2389
  }
2386
2390
  return n;
2387
2391
  }
2388
- function ti(e) {
2392
+ function ni(e) {
2389
2393
  for (var t = 1; t < arguments.length; t++) {
2390
2394
  var n = arguments[t] == null ? {} : arguments[t];
2391
- t % 2 ? ei(Object(n), !0).forEach(function(t) {
2392
- ni(e, t, n[t]);
2393
- }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : ei(Object(n)).forEach(function(t) {
2395
+ t % 2 ? ti(Object(n), !0).forEach(function(t) {
2396
+ ri(e, t, n[t]);
2397
+ }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : ti(Object(n)).forEach(function(t) {
2394
2398
  Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t));
2395
2399
  });
2396
2400
  }
2397
2401
  return e;
2398
2402
  }
2399
- function ni(e, t, n) {
2400
- return (t = ri(t)) in e ? Object.defineProperty(e, t, {
2403
+ function ri(e, t, n) {
2404
+ return (t = ii(t)) in e ? Object.defineProperty(e, t, {
2401
2405
  value: n,
2402
2406
  enumerable: !0,
2403
2407
  configurable: !0,
2404
2408
  writable: !0
2405
2409
  }) : e[t] = n, e;
2406
2410
  }
2407
- function ri(e) {
2408
- var t = ii(e, "string");
2409
- return $r(t) == "symbol" ? t : t + "";
2411
+ function ii(e) {
2412
+ var t = ai(e, "string");
2413
+ return ei(t) == "symbol" ? t : t + "";
2410
2414
  }
2411
- function ii(e, t) {
2412
- if ($r(e) != "object" || !e) return e;
2415
+ function ai(e, t) {
2416
+ if (ei(e) != "object" || !e) return e;
2413
2417
  var n = e[Symbol.toPrimitive];
2414
2418
  if (n !== void 0) {
2415
2419
  var r = n.call(e, t);
2416
- if ($r(r) != "object") return r;
2420
+ if (ei(r) != "object") return r;
2417
2421
  throw TypeError("@@toPrimitive must return a primitive value.");
2418
2422
  }
2419
2423
  return (t === "string" ? String : Number)(e);
2420
2424
  }
2421
- function ai(e) {
2425
+ function oi(e) {
2422
2426
  var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : !0;
2423
2427
  p() && p().components ? C(e) : t ? e() : _(e);
2424
2428
  }
2425
- var oi = 0;
2426
- function si(e) {
2427
- var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, n = O(!1), r = O(e), i = O(null), a = Tr() ? window.document : void 0, o = t.document, s = o === void 0 ? a : o, c = t.immediate, l = c === void 0 ? !0 : c, u = t.manual, d = u === void 0 ? !1 : u, f = t.name, p = f === void 0 ? `style_${++oi}` : f, m = t.id, h = m === void 0 ? void 0 : m, g = t.media, _ = g === void 0 ? void 0 : g, v = t.nonce, y = v === void 0 ? void 0 : v, b = t.first, x = b === void 0 ? !1 : b, S = t.onMounted, C = S === void 0 ? void 0 : S, w = t.onUpdated, T = w === void 0 ? void 0 : w, E = t.onLoad, ee = E === void 0 ? void 0 : E, k = t.props, A = k === void 0 ? {} : k, j = function() {}, M = function(t) {
2429
+ var si = 0;
2430
+ function ci(e) {
2431
+ var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, n = O(!1), r = O(e), i = O(null), a = Er() ? window.document : void 0, o = t.document, s = o === void 0 ? a : o, c = t.immediate, l = c === void 0 ? !0 : c, u = t.manual, d = u === void 0 ? !1 : u, f = t.name, p = f === void 0 ? `style_${++si}` : f, m = t.id, h = m === void 0 ? void 0 : m, g = t.media, _ = g === void 0 ? void 0 : g, v = t.nonce, y = v === void 0 ? void 0 : v, b = t.first, x = b === void 0 ? !1 : b, S = t.onMounted, C = S === void 0 ? void 0 : S, w = t.onUpdated, T = w === void 0 ? void 0 : w, E = t.onLoad, ee = E === void 0 ? void 0 : E, k = t.props, A = k === void 0 ? {} : k, j = function() {}, M = function(t) {
2428
2432
  var a = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
2429
2433
  if (s) {
2430
- var o = ti(ti({}, A), a), c = o.name || p, l = o.id || h, u = o.nonce || y;
2431
- i.value = s.querySelector(`style[data-primevue-style-id="${c}"]`) || s.getElementById(l) || s.createElement("style"), i.value.isConnected || (r.value = t || e, wr(i.value, {
2434
+ var o = ni(ni({}, A), a), c = o.name || p, l = o.id || h, u = o.nonce || y;
2435
+ i.value = s.querySelector(`style[data-primevue-style-id="${c}"]`) || s.getElementById(l) || s.createElement("style"), i.value.isConnected || (r.value = t || e, Tr(i.value, {
2432
2436
  type: "text/css",
2433
2437
  id: l,
2434
2438
  media: _,
2435
2439
  nonce: u
2436
- }), x ? s.head.prepend(i.value) : s.head.appendChild(i.value), Er(i.value, "data-primevue-style-id", c), wr(i.value, o), i.value.onload = function(e) {
2440
+ }), x ? s.head.prepend(i.value) : s.head.appendChild(i.value), Dr(i.value, "data-primevue-style-id", c), Tr(i.value, o), i.value.onload = function(e) {
2437
2441
  return ee?.(e, { name: c });
2438
2442
  }, C?.(c)), !n.value && (j = P(r, function(e) {
2439
2443
  i.value.textContent = e, T?.(c);
2440
2444
  }, { immediate: !0 }), n.value = !0);
2441
2445
  }
2442
2446
  };
2443
- return l && !d && ai(M), {
2447
+ return l && !d && oi(M), {
2444
2448
  id: h,
2445
2449
  name: p,
2446
2450
  el: i,
2447
2451
  css: r,
2448
2452
  unload: function() {
2449
- !s || !n.value || (j(), Sr(i.value) && s.head.removeChild(i.value), n.value = !1, i.value = null);
2453
+ !s || !n.value || (j(), Cr(i.value) && s.head.removeChild(i.value), n.value = !1, i.value = null);
2450
2454
  },
2451
2455
  load: M,
2452
2456
  isLoaded: D(n)
@@ -2454,34 +2458,34 @@ function si(e) {
2454
2458
  }
2455
2459
  //#endregion
2456
2460
  //#region ../node_modules/.pnpm/@primevue+core@4.5.4_vue@3.5.32_typescript@5.9.3_/node_modules/@primevue/core/base/style/index.mjs
2457
- function ci(e) {
2461
+ function li(e) {
2458
2462
  "@babel/helpers - typeof";
2459
- return ci = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
2463
+ return li = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
2460
2464
  return typeof e;
2461
2465
  } : function(e) {
2462
2466
  return e && typeof Symbol == "function" && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e;
2463
- }, ci(e);
2467
+ }, li(e);
2464
2468
  }
2465
- var li, ui, di, fi;
2466
- function pi(e, t) {
2467
- return vi(e) || _i(e, t) || hi(e, t) || mi();
2469
+ var ui, di, fi, pi;
2470
+ function mi(e, t) {
2471
+ return yi(e) || vi(e, t) || gi(e, t) || hi();
2468
2472
  }
2469
- function mi() {
2473
+ function hi() {
2470
2474
  throw TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.");
2471
2475
  }
2472
- function hi(e, t) {
2476
+ function gi(e, t) {
2473
2477
  if (e) {
2474
- if (typeof e == "string") return gi(e, t);
2478
+ if (typeof e == "string") return _i(e, t);
2475
2479
  var n = {}.toString.call(e).slice(8, -1);
2476
- return n === "Object" && e.constructor && (n = e.constructor.name), n === "Map" || n === "Set" ? Array.from(e) : n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? gi(e, t) : void 0;
2480
+ return n === "Object" && e.constructor && (n = e.constructor.name), n === "Map" || n === "Set" ? Array.from(e) : n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n) ? _i(e, t) : void 0;
2477
2481
  }
2478
2482
  }
2479
- function gi(e, t) {
2483
+ function _i(e, t) {
2480
2484
  (t == null || t > e.length) && (t = e.length);
2481
2485
  for (var n = 0, r = Array(t); n < t; n++) r[n] = e[n];
2482
2486
  return r;
2483
2487
  }
2484
- function _i(e, t) {
2488
+ function vi(e, t) {
2485
2489
  var n = e == null ? null : typeof Symbol < "u" && e[Symbol.iterator] || e["@@iterator"];
2486
2490
  if (n != null) {
2487
2491
  var r, i, a, o, s = [], c = !0, l = !1;
@@ -2499,10 +2503,10 @@ function _i(e, t) {
2499
2503
  return s;
2500
2504
  }
2501
2505
  }
2502
- function vi(e) {
2506
+ function yi(e) {
2503
2507
  if (Array.isArray(e)) return e;
2504
2508
  }
2505
- function yi(e, t) {
2509
+ function bi(e, t) {
2506
2510
  var n = Object.keys(e);
2507
2511
  if (Object.getOwnPropertySymbols) {
2508
2512
  var r = Object.getOwnPropertySymbols(e);
@@ -2512,43 +2516,43 @@ function yi(e, t) {
2512
2516
  }
2513
2517
  return n;
2514
2518
  }
2515
- function bi(e) {
2519
+ function xi(e) {
2516
2520
  for (var t = 1; t < arguments.length; t++) {
2517
2521
  var n = arguments[t] == null ? {} : arguments[t];
2518
- t % 2 ? yi(Object(n), !0).forEach(function(t) {
2519
- xi(e, t, n[t]);
2520
- }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : yi(Object(n)).forEach(function(t) {
2522
+ t % 2 ? bi(Object(n), !0).forEach(function(t) {
2523
+ Si(e, t, n[t]);
2524
+ }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(n)) : bi(Object(n)).forEach(function(t) {
2521
2525
  Object.defineProperty(e, t, Object.getOwnPropertyDescriptor(n, t));
2522
2526
  });
2523
2527
  }
2524
2528
  return e;
2525
2529
  }
2526
- function xi(e, t, n) {
2527
- return (t = Si(t)) in e ? Object.defineProperty(e, t, {
2530
+ function Si(e, t, n) {
2531
+ return (t = Ci(t)) in e ? Object.defineProperty(e, t, {
2528
2532
  value: n,
2529
2533
  enumerable: !0,
2530
2534
  configurable: !0,
2531
2535
  writable: !0
2532
2536
  }) : e[t] = n, e;
2533
2537
  }
2534
- function Si(e) {
2535
- var t = Ci(e, "string");
2536
- return ci(t) == "symbol" ? t : t + "";
2538
+ function Ci(e) {
2539
+ var t = wi(e, "string");
2540
+ return li(t) == "symbol" ? t : t + "";
2537
2541
  }
2538
- function Ci(e, t) {
2539
- if (ci(e) != "object" || !e) return e;
2542
+ function wi(e, t) {
2543
+ if (li(e) != "object" || !e) return e;
2540
2544
  var n = e[Symbol.toPrimitive];
2541
2545
  if (n !== void 0) {
2542
2546
  var r = n.call(e, t);
2543
- if (ci(r) != "object") return r;
2547
+ if (li(r) != "object") return r;
2544
2548
  throw TypeError("@@toPrimitive must return a primitive value.");
2545
2549
  }
2546
2550
  return (t === "string" ? String : Number)(e);
2547
2551
  }
2548
- function wi(e, t) {
2552
+ function Ti(e, t) {
2549
2553
  return t ||= e.slice(0), Object.freeze(Object.defineProperties(e, { raw: { value: Object.freeze(t) } }));
2550
2554
  }
2551
- var Ti = {
2555
+ var $ = {
2552
2556
  name: "base",
2553
2557
  css: function(e) {
2554
2558
  var t = e.dt;
@@ -2573,14 +2577,14 @@ var Ti = {
2573
2577
  }
2574
2578
  `;
2575
2579
  },
2576
- style: Qr,
2580
+ style: $r,
2577
2581
  classes: {},
2578
2582
  inlineStyles: {},
2579
2583
  load: function(e) {
2580
2584
  var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, n = (arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : function(e) {
2581
2585
  return e;
2582
- })(Xr(li ||= wi(["", ""]), e));
2583
- return K(n) ? si(vr(n), bi({ name: this.name }, t)) : {};
2586
+ })(Zr(ui ||= Ti(["", ""]), e));
2587
+ return K(n) ? ci(yr(n), xi({ name: this.name }, t)) : {};
2584
2588
  },
2585
2589
  loadCSS: function() {
2586
2590
  var e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};
@@ -2590,33 +2594,33 @@ var Ti = {
2590
2594
  var e = this, t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, n = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : "";
2591
2595
  return this.load(this.style, t, function() {
2592
2596
  var r = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : "";
2593
- return $.transformCSS(t.name || e.name, `${r}${Xr(ui ||= wi(["", ""]), n)}`);
2597
+ return Q.transformCSS(t.name || e.name, `${r}${Zr(di ||= Ti(["", ""]), n)}`);
2594
2598
  });
2595
2599
  },
2596
2600
  getCommonTheme: function(e) {
2597
- return $.getCommon(this.name, e);
2601
+ return Q.getCommon(this.name, e);
2598
2602
  },
2599
2603
  getComponentTheme: function(e) {
2600
- return $.getComponent(this.name, e);
2604
+ return Q.getComponent(this.name, e);
2601
2605
  },
2602
2606
  getDirectiveTheme: function(e) {
2603
- return $.getDirective(this.name, e);
2607
+ return Q.getDirective(this.name, e);
2604
2608
  },
2605
2609
  getPresetTheme: function(e, t, n) {
2606
- return $.getCustomPreset(this.name, e, t, n);
2610
+ return Q.getCustomPreset(this.name, e, t, n);
2607
2611
  },
2608
2612
  getLayerOrderThemeCSS: function() {
2609
- return $.getLayerOrderCSS(this.name);
2613
+ return Q.getLayerOrderCSS(this.name);
2610
2614
  },
2611
2615
  getStyleSheet: function() {
2612
2616
  var e = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : "", t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
2613
2617
  if (this.css) {
2614
- var n = q(this.css, { dt: Jr }) || "", r = vr(Xr(di ||= wi([
2618
+ var n = mr(this.css, { dt: Yr }) || "", r = yr(Zr(fi ||= Ti([
2615
2619
  "",
2616
2620
  "",
2617
2621
  ""
2618
2622
  ]), n, e)), i = Object.entries(t).reduce(function(e, t) {
2619
- var n = pi(t, 2), r = n[0], i = n[1];
2623
+ var n = mi(t, 2), r = n[0], i = n[1];
2620
2624
  return e.push(`${r}="${i}"`) && e;
2621
2625
  }, []).join(" ");
2622
2626
  return K(r) ? `<style type="text/css" data-primevue-style-id="${this.name}" ${i}>${r}</style>` : "";
@@ -2625,13 +2629,13 @@ var Ti = {
2625
2629
  },
2626
2630
  getCommonThemeStyleSheet: function(e) {
2627
2631
  var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
2628
- return $.getCommonStyleSheet(this.name, e, t);
2632
+ return Q.getCommonStyleSheet(this.name, e, t);
2629
2633
  },
2630
2634
  getThemeStyleSheet: function(e) {
2631
- var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, n = [$.getStyleSheet(this.name, e, t)];
2635
+ var t = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, n = [Q.getStyleSheet(this.name, e, t)];
2632
2636
  if (this.style) {
2633
- var r = this.name === "base" ? "global-style" : `${this.name}-style`, i = Xr(fi ||= wi(["", ""]), q(this.style, { dt: Jr })), a = vr($.transformCSS(r, i)), o = Object.entries(t).reduce(function(e, t) {
2634
- var n = pi(t, 2), r = n[0], i = n[1];
2637
+ var r = this.name === "base" ? "global-style" : `${this.name}-style`, i = Zr(pi ||= Ti(["", ""]), mr(this.style, { dt: Yr })), a = yr(Q.transformCSS(r, i)), o = Object.entries(t).reduce(function(e, t) {
2638
+ var n = mi(t, 2), r = n[0], i = n[1];
2635
2639
  return e.push(`${r}="${i}"`) && e;
2636
2640
  }, []).join(" ");
2637
2641
  K(a) && n.push(`<style type="text/css" data-primevue-style-id="${r}" ${o}>${a}</style>`);
@@ -2639,16 +2643,16 @@ var Ti = {
2639
2643
  return n.join("");
2640
2644
  },
2641
2645
  extend: function(e) {
2642
- return bi(bi({}, this), {}, {
2646
+ return xi(xi({}, this), {}, {
2643
2647
  css: void 0,
2644
2648
  style: void 0
2645
2649
  }, e);
2646
2650
  }
2647
2651
  };
2648
- Ti.extend({ name: "common" }), Ti.extend({ name: "common" });
2652
+ $.extend({ name: "common" }), $.extend({ name: "common" });
2649
2653
  //#endregion
2650
2654
  //#region ../node_modules/.pnpm/@primevue+core@4.5.4_vue@3.5.32_typescript@5.9.3_/node_modules/@primevue/core/service/index.mjs
2651
- var Ei = br();
2655
+ var Ei = xr();
2652
2656
  //#endregion
2653
2657
  //#region ../node_modules/.pnpm/@primevue+core@4.5.4_vue@3.5.32_typescript@5.9.3_/node_modules/@primevue/core/config/index.mjs
2654
2658
  function Di(e) {
@@ -2889,26 +2893,26 @@ var Ni = {
2889
2893
  },
2890
2894
  filterMatchModeOptions: {
2891
2895
  text: [
2892
- J.STARTS_WITH,
2893
- J.CONTAINS,
2894
- J.NOT_CONTAINS,
2895
- J.ENDS_WITH,
2896
- J.EQUALS,
2897
- J.NOT_EQUALS
2896
+ q.STARTS_WITH,
2897
+ q.CONTAINS,
2898
+ q.NOT_CONTAINS,
2899
+ q.ENDS_WITH,
2900
+ q.EQUALS,
2901
+ q.NOT_EQUALS
2898
2902
  ],
2899
2903
  numeric: [
2900
- J.EQUALS,
2901
- J.NOT_EQUALS,
2902
- J.LESS_THAN,
2903
- J.LESS_THAN_OR_EQUAL_TO,
2904
- J.GREATER_THAN,
2905
- J.GREATER_THAN_OR_EQUAL_TO
2904
+ q.EQUALS,
2905
+ q.NOT_EQUALS,
2906
+ q.LESS_THAN,
2907
+ q.LESS_THAN_OR_EQUAL_TO,
2908
+ q.GREATER_THAN,
2909
+ q.GREATER_THAN_OR_EQUAL_TO
2906
2910
  ],
2907
2911
  date: [
2908
- J.DATE_IS,
2909
- J.DATE_IS_NOT,
2910
- J.DATE_BEFORE,
2911
- J.DATE_AFTER
2912
+ q.DATE_IS,
2913
+ q.DATE_IS_NOT,
2914
+ q.DATE_BEFORE,
2915
+ q.DATE_AFTER
2912
2916
  ]
2913
2917
  },
2914
2918
  zIndex: {
@@ -2932,18 +2936,18 @@ function Fi(e, t) {
2932
2936
  }
2933
2937
  var Ii = [];
2934
2938
  function Li() {
2935
- Z.clear(), Ii.forEach(function(e) {
2939
+ X.clear(), Ii.forEach(function(e) {
2936
2940
  return e?.();
2937
2941
  }), Ii = [];
2938
2942
  }
2939
2943
  function Ri(e, t) {
2940
2944
  var n = O(!1), r = function() {
2941
- if (t.config?.theme !== "none" && !$.isStyleNameLoaded("common")) {
2942
- var e, n = Ti.getCommonTheme?.call(Ti) || {}, r = n.primitive, i = n.semantic, a = n.global, o = n.style, s = { nonce: (e = t.config) == null || (e = e.csp) == null ? void 0 : e.nonce };
2943
- Ti.load(r?.css, ki({ name: "primitive-variables" }, s)), Ti.load(i?.css, ki({ name: "semantic-variables" }, s)), Ti.load(a?.css, ki({ name: "global-variables" }, s)), Ti.loadStyle(ki({ name: "global-style" }, s), o), $.setLoadedStyleName("common");
2945
+ if (t.config?.theme !== "none" && !Q.isStyleNameLoaded("common")) {
2946
+ var e, n = $.getCommonTheme?.call($) || {}, r = n.primitive, i = n.semantic, a = n.global, o = n.style, s = { nonce: (e = t.config) == null || (e = e.csp) == null ? void 0 : e.nonce };
2947
+ $.load(r?.css, ki({ name: "primitive-variables" }, s)), $.load(i?.css, ki({ name: "semantic-variables" }, s)), $.load(a?.css, ki({ name: "global-variables" }, s)), $.loadStyle(ki({ name: "global-style" }, s), o), Q.setLoadedStyleName("common");
2944
2948
  }
2945
2949
  };
2946
- Z.on("theme:change", function(t) {
2950
+ X.on("theme:change", function(t) {
2947
2951
  n.value ||= (e.config.globalProperties.$primevue.config.theme = t, !0);
2948
2952
  });
2949
2953
  var i = P(t.config, function(e, t) {
@@ -2967,7 +2971,7 @@ function Ri(e, t) {
2967
2971
  }), o = P(function() {
2968
2972
  return t.config.theme;
2969
2973
  }, function(e, i) {
2970
- n.value || $.setTheme(e), t.config.unstyled || r(), n.value = !1, Ei.emit("config:theme:change", {
2974
+ n.value || Q.setTheme(e), t.config.unstyled || r(), n.value = !1, Ei.emit("config:theme:change", {
2971
2975
  newValue: e,
2972
2976
  oldValue: i
2973
2977
  });
@@ -2988,7 +2992,7 @@ function Ri(e, t) {
2988
2992
  Ii.push(i), Ii.push(a), Ii.push(o), Ii.push(s);
2989
2993
  }
2990
2994
  var zi = { install: function(e, t) {
2991
- Fi(e, _r(Ni, t));
2995
+ Fi(e, vr(Ni, t));
2992
2996
  } }, Bi = {
2993
2997
  root: { transitionDuration: "{transition.duration}" },
2994
2998
  panel: {