@nxgt/material 1.0.5 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (113) hide show
  1. package/README.md +26 -8
  2. package/dist/components.js +3 -2
  3. package/dist/{dist-DdZVa0Zr.js → dist-CwhEp6Y-.js} +2 -2
  4. package/dist/dnd.js +2 -2
  5. package/dist/{hooks-BPv0i6YN.js → hooks-CHmfdtMs.js} +81 -47
  6. package/dist/hooks.js +3 -3
  7. package/dist/{i18n-1Eg35q8-.js → i18n-D4R3sSqT.js} +102 -0
  8. package/dist/i18n.js +1 -1
  9. package/dist/lib/components/index.d.ts +15 -0
  10. package/dist/lib/components/ui/anchor-heading.d.ts +9 -0
  11. package/dist/lib/components/ui/anchor-heading.stories.d.ts +13 -0
  12. package/dist/lib/components/ui/anchor-heading.utils.d.ts +2 -0
  13. package/dist/lib/components/ui/api-endpoint.d.ts +9 -0
  14. package/dist/lib/components/ui/api-endpoint.stories.d.ts +14 -0
  15. package/dist/lib/components/ui/api-operation.d.ts +13 -0
  16. package/dist/lib/components/ui/api-operation.stories.d.ts +13 -0
  17. package/dist/lib/components/ui/cards/cards.stories.d.ts +20 -0
  18. package/dist/lib/components/ui/cards/cards.stories.data.d.ts +8 -0
  19. package/dist/lib/components/ui/cards/index.d.ts +9 -0
  20. package/dist/lib/components/ui/cards/partials/crew-card.d.ts +2 -0
  21. package/dist/lib/components/ui/cards/partials/feature-card.d.ts +2 -0
  22. package/dist/lib/components/ui/cards/partials/media-card.d.ts +2 -0
  23. package/dist/lib/components/ui/cards/partials/overlay-card.d.ts +2 -0
  24. package/dist/lib/components/ui/cards/partials/pricing-card.d.ts +2 -0
  25. package/dist/lib/components/ui/cards/partials/profile-card.d.ts +2 -0
  26. package/dist/lib/components/ui/cards/partials/quote-card.d.ts +2 -0
  27. package/dist/lib/components/ui/cards/partials/spotlight-card.d.ts +2 -0
  28. package/dist/lib/components/ui/cards/types.d.ts +56 -0
  29. package/dist/lib/components/ui/code/code-group.d.ts +13 -0
  30. package/dist/lib/components/ui/code/code-group.stories.d.ts +14 -0
  31. package/dist/lib/components/ui/code/index.d.ts +2 -0
  32. package/dist/lib/components/ui/copy-button/copy-button.d.ts +5 -3
  33. package/dist/lib/components/ui/doc/doc-api.stories.d.ts +13 -0
  34. package/dist/lib/components/ui/doc/doc-blocks.stories.d.ts +13 -0
  35. package/dist/lib/components/ui/doc/doc-context.d.ts +61 -0
  36. package/dist/lib/components/ui/doc/doc.d.ts +11 -0
  37. package/dist/lib/components/ui/doc/doc.keyboard.d.ts +20 -0
  38. package/dist/lib/components/ui/doc/doc.keyboard.test.d.ts +1 -0
  39. package/dist/lib/components/ui/doc/doc.slice.d.ts +97 -0
  40. package/dist/lib/components/ui/doc/doc.stories.d.ts +15 -0
  41. package/dist/lib/components/ui/doc/doc.stories.data.d.ts +7 -0
  42. package/dist/lib/components/ui/doc/doc.utils.d.ts +29 -0
  43. package/dist/lib/components/ui/doc/doc.utils.test.d.ts +1 -0
  44. package/dist/lib/components/ui/doc/index.d.ts +36 -0
  45. package/dist/lib/components/ui/doc/partials/doc-article.d.ts +6 -0
  46. package/dist/lib/components/ui/doc/partials/doc-child-cards.d.ts +4 -0
  47. package/dist/lib/components/ui/doc/partials/doc-copy-actions.d.ts +7 -0
  48. package/dist/lib/components/ui/doc/partials/doc-empty.d.ts +3 -0
  49. package/dist/lib/components/ui/doc/partials/doc-header.d.ts +18 -0
  50. package/dist/lib/components/ui/doc/partials/doc-link.d.ts +3 -0
  51. package/dist/lib/components/ui/doc/partials/doc-nav.d.ts +4 -0
  52. package/dist/lib/components/ui/doc/partials/doc-page.d.ts +6 -0
  53. package/dist/lib/components/ui/doc/partials/doc-pager.d.ts +4 -0
  54. package/dist/lib/components/ui/doc/partials/doc-progress.d.ts +3 -0
  55. package/dist/lib/components/ui/doc/partials/doc-search.d.ts +1 -0
  56. package/dist/lib/components/ui/doc/partials/doc-see-also.d.ts +4 -0
  57. package/dist/lib/components/ui/doc/partials/doc-sidebar.d.ts +4 -0
  58. package/dist/lib/components/ui/doc/partials/doc-skip-link.d.ts +2 -0
  59. package/dist/lib/components/ui/doc/partials/doc-toc.d.ts +6 -0
  60. package/dist/lib/components/ui/doc/partials/doc-topbar.d.ts +4 -0
  61. package/dist/lib/components/ui/doc/types.d.ts +46 -0
  62. package/dist/lib/components/ui/doc/use-doc.d.ts +43 -0
  63. package/dist/lib/components/ui/feedback/empty-state.stories.d.ts +1 -0
  64. package/dist/lib/components/ui/feedback/index.d.ts +1 -0
  65. package/dist/lib/components/ui/feedback/scroll-progress.d.ts +6 -0
  66. package/dist/lib/components/ui/feedback/scroll-progress.stories.d.ts +13 -0
  67. package/dist/lib/components/ui/figure.d.ts +7 -0
  68. package/dist/lib/components/ui/figure.stories.d.ts +13 -0
  69. package/dist/lib/components/ui/hero.d.ts +10 -0
  70. package/dist/lib/components/ui/hero.stories.d.ts +13 -0
  71. package/dist/lib/components/ui/highlight-text.d.ts +6 -0
  72. package/dist/lib/components/ui/highlight-text.stories.d.ts +12 -0
  73. package/dist/lib/components/ui/list-tile.d.ts +2 -1
  74. package/dist/lib/components/ui/list-tile.stories.d.ts +1 -0
  75. package/dist/lib/components/ui/metrics/index.d.ts +6 -0
  76. package/dist/lib/components/ui/metrics/metrics.stories.d.ts +16 -0
  77. package/dist/lib/components/ui/metrics/metrics.stories.data.d.ts +5 -0
  78. package/dist/lib/components/ui/metrics/partials/breakdown-card.d.ts +2 -0
  79. package/dist/lib/components/ui/metrics/partials/goal-card.d.ts +2 -0
  80. package/dist/lib/components/ui/metrics/partials/rank-card.d.ts +2 -0
  81. package/dist/lib/components/ui/metrics/partials/sparkline.d.ts +5 -0
  82. package/dist/lib/components/ui/metrics/partials/trend-card.d.ts +2 -0
  83. package/dist/lib/components/ui/metrics/types.d.ts +35 -0
  84. package/dist/lib/components/ui/pager.d.ts +20 -0
  85. package/dist/lib/components/ui/pager.stories.d.ts +13 -0
  86. package/dist/lib/components/ui/param-table.d.ts +13 -0
  87. package/dist/lib/components/ui/param-table.stories.d.ts +13 -0
  88. package/dist/lib/components/ui/see-also.d.ts +17 -0
  89. package/dist/lib/components/ui/see-also.stories.d.ts +12 -0
  90. package/dist/lib/components/ui/skip-link.d.ts +3 -0
  91. package/dist/lib/components/ui/skip-link.stories.d.ts +12 -0
  92. package/dist/lib/components/ui/steps.d.ts +13 -0
  93. package/dist/lib/components/ui/steps.stories.d.ts +13 -0
  94. package/dist/lib/components/ui/tabs.d.ts +4 -1
  95. package/dist/lib/components/ui/tabs.stories.d.ts +1 -0
  96. package/dist/lib/components/ui/toc.d.ts +21 -0
  97. package/dist/lib/components/ui/toc.stories.d.ts +13 -0
  98. package/dist/lib/hooks/index.d.ts +1 -0
  99. package/dist/lib/hooks/use-heading-spy.d.ts +6 -0
  100. package/dist/lib/i18n/resources/en/index.d.ts +57 -0
  101. package/dist/lib/i18n/resources/en/material.json.d.ts +57 -0
  102. package/dist/lib/i18n/resources/fr/index.d.ts +57 -0
  103. package/dist/lib/i18n/resources/fr/material.json.d.ts +57 -0
  104. package/dist/lib/i18n/resources/index.d.ts +114 -0
  105. package/dist/lib/i18n/translator.d.ts +1 -1
  106. package/dist/lib/lib/string.utils.d.ts +9 -0
  107. package/dist/lib/lib/url.utils.d.ts +2 -0
  108. package/dist/{lib-CaKARQ-7.js → lib-Rq5clPUe.js} +620 -584
  109. package/dist/lib.js +3 -3
  110. package/dist/{main-CHByIwHT.js → main-D7WtUVbv.js} +35669 -33724
  111. package/dist/main.js +6 -6
  112. package/dist/material.css +1 -1
  113. package/package.json +1 -1
@@ -1,50 +1,50 @@
1
- import { A as e, C as t, D as n, E as r, G as i, H as a, I as o, L as s, N as c, O as l, S as u, T as d, U as f, V as p, W as m, a as h, g, h as _, j as v, p as y, v as b } from "./i18n-1Eg35q8-.js";
2
- import { L as ee } from "./number.utils-BR3XO6me.js";
3
- import { Suspense as x, createContext as te, createElement as S, useCallback as C, useContext as ne, useMemo as w, useReducer as T } from "react";
4
- import { asyncThunkCreator as re, buildCreateSlice as ie, createSlice as E } from "@reduxjs/toolkit";
5
- import { useDispatch as D } from "react-redux";
1
+ import { A as e, C as t, D as n, E as r, G as i, H as a, I as o, L as s, N as c, O as l, S as u, T as d, U as f, V as p, W as m, a as h, g, h as _, j as v, p as y, v as b } from "./i18n-D4R3sSqT.js";
2
+ import { L as x } from "./number.utils-BR3XO6me.js";
3
+ import { Suspense as ee, createContext as S, createElement as C, useCallback as w, useContext as te, useMemo as T, useReducer as E } from "react";
4
+ import { asyncThunkCreator as ne, buildCreateSlice as re, createSlice as D } from "@reduxjs/toolkit";
5
+ import { useDispatch as O } from "react-redux";
6
6
  //#region node_modules/clsx/dist/clsx.mjs
7
- function O(e) {
7
+ function k(e) {
8
8
  var t, n, r = "";
9
9
  if (typeof e == "string" || typeof e == "number") r += e;
10
10
  else if (typeof e == "object") if (Array.isArray(e)) {
11
11
  var i = e.length;
12
- for (t = 0; t < i; t++) e[t] && (n = O(e[t])) && (r && (r += " "), r += n);
12
+ for (t = 0; t < i; t++) e[t] && (n = k(e[t])) && (r && (r += " "), r += n);
13
13
  } else for (n in e) e[n] && (r && (r += " "), r += n);
14
14
  return r;
15
15
  }
16
- function k() {
17
- for (var e, t, n = 0, r = "", i = arguments.length; n < i; n++) (e = arguments[n]) && (t = O(e)) && (r && (r += " "), r += t);
16
+ function A() {
17
+ for (var e, t, n = 0, r = "", i = arguments.length; n < i; n++) (e = arguments[n]) && (t = k(e)) && (r && (r += " "), r += t);
18
18
  return r;
19
19
  }
20
20
  //#endregion
21
21
  //#region node_modules/tailwind-merge/dist/bundle-mjs.mjs
22
- var ae = (e, t) => {
22
+ var ie = (e, t) => {
23
23
  let n = Array(e.length + t.length);
24
24
  for (let t = 0; t < e.length; t++) n[t] = e[t];
25
25
  for (let r = 0; r < t.length; r++) n[e.length + r] = t[r];
26
26
  return n;
27
- }, A = (e, t) => ({
27
+ }, j = (e, t) => ({
28
28
  classGroupId: e,
29
29
  validator: t
30
- }), oe = (e = /* @__PURE__ */ new Map(), t = null, n) => ({
30
+ }), ae = (e = /* @__PURE__ */ new Map(), t = null, n) => ({
31
31
  nextPart: e,
32
32
  validators: t,
33
33
  classGroupId: n
34
- }), j = "-", se = [], M = "arbitrary..", N = (e) => {
34
+ }), M = "-", oe = [], se = "arbitrary..", N = (e) => {
35
35
  let t = ce(e), { conflictingClassGroups: n, conflictingClassGroupModifiers: r } = e;
36
36
  return {
37
37
  getClassGroupId: (e) => {
38
38
  if (e.startsWith("[") && e.endsWith("]")) return F(e);
39
- let n = e.split(j);
39
+ let n = e.split(M);
40
40
  return P(n, +(n[0] === "" && n.length > 1), t);
41
41
  },
42
42
  getConflictingClassGroupIds: (e, t) => {
43
43
  if (t) {
44
44
  let t = r[e], i = n[e];
45
- return t ? i ? ae(i, t) : t : i || se;
45
+ return t ? i ? ie(i, t) : t : i || oe;
46
46
  }
47
- return n[e] || se;
47
+ return n[e] || oe;
48
48
  }
49
49
  };
50
50
  }, P = (e, t, n) => {
@@ -56,19 +56,19 @@ var ae = (e, t) => {
56
56
  }
57
57
  let a = n.validators;
58
58
  if (a === null) return;
59
- let o = t === 0 ? e.join(j) : e.slice(t).join(j), s = a.length;
59
+ let o = t === 0 ? e.join(M) : e.slice(t).join(M), s = a.length;
60
60
  for (let e = 0; e < s; e++) {
61
61
  let t = a[e];
62
62
  if (t.validator(o)) return t.classGroupId;
63
63
  }
64
64
  }, F = (e) => e.slice(1, -1).indexOf(":") === -1 ? void 0 : (() => {
65
65
  let t = e.slice(1, -1), n = t.indexOf(":"), r = t.slice(0, n);
66
- return r ? M + r : void 0;
66
+ return r ? se + r : void 0;
67
67
  })(), ce = (e) => {
68
68
  let { theme: t, classGroups: n } = e;
69
69
  return I(n, t);
70
70
  }, I = (e, t) => {
71
- let n = oe();
71
+ let n = ae();
72
72
  for (let r in e) {
73
73
  let i = e[r];
74
74
  L(i, n, r, t);
@@ -86,33 +86,33 @@ var ae = (e, t) => {
86
86
  return;
87
87
  }
88
88
  if (typeof e == "function") {
89
- le(e, t, n, r);
89
+ B(e, t, n, r);
90
90
  return;
91
91
  }
92
- B(e, t, n, r);
92
+ V(e, t, n, r);
93
93
  }, z = (e, t, n) => {
94
- let r = e === "" ? t : ue(t, e);
94
+ let r = e === "" ? t : le(t, e);
95
95
  r.classGroupId = n;
96
- }, le = (e, t, n, r) => {
97
- if (de(e)) {
96
+ }, B = (e, t, n, r) => {
97
+ if (ue(e)) {
98
98
  L(e(r), t, n, r);
99
99
  return;
100
100
  }
101
- t.validators === null && (t.validators = []), t.validators.push(A(n, e));
102
- }, B = (e, t, n, r) => {
101
+ t.validators === null && (t.validators = []), t.validators.push(j(n, e));
102
+ }, V = (e, t, n, r) => {
103
103
  let i = Object.entries(e), a = i.length;
104
104
  for (let e = 0; e < a; e++) {
105
105
  let [a, o] = i[e];
106
- L(o, ue(t, a), n, r);
106
+ L(o, le(t, a), n, r);
107
107
  }
108
- }, ue = (e, t) => {
109
- let n = e, r = t.split(j), i = r.length;
108
+ }, le = (e, t) => {
109
+ let n = e, r = t.split(M), i = r.length;
110
110
  for (let e = 0; e < i; e++) {
111
111
  let t = r[e], i = n.nextPart.get(t);
112
- i || (i = oe(), n.nextPart.set(t, i)), n = i;
112
+ i || (i = ae(), n.nextPart.set(t, i)), n = i;
113
113
  }
114
114
  return n;
115
- }, de = (e) => "isThemeGetter" in e && e.isThemeGetter === !0, fe = (e) => {
115
+ }, ue = (e) => "isThemeGetter" in e && e.isThemeGetter === !0, de = (e) => {
116
116
  if (e < 1) return {
117
117
  get: () => void 0,
118
118
  set: () => {}
@@ -130,19 +130,19 @@ var ae = (e, t) => {
130
130
  e in n ? n[e] = t : i(e, t);
131
131
  }
132
132
  };
133
- }, pe = "!", me = ":", he = [], ge = (e, t, n, r, i) => ({
133
+ }, fe = "!", pe = ":", me = [], he = (e, t, n, r, i) => ({
134
134
  modifiers: e,
135
135
  hasImportantModifier: t,
136
136
  baseClassName: n,
137
137
  maybePostfixModifierPosition: r,
138
138
  isExternal: i
139
- }), _e = (e) => {
139
+ }), ge = (e) => {
140
140
  let { prefix: t, experimentalParseClassName: n } = e, r = (e) => {
141
141
  let t = [], n = 0, r = 0, i = 0, a, o = e.length;
142
142
  for (let s = 0; s < o; s++) {
143
143
  let o = e[s];
144
144
  if (n === 0 && r === 0) {
145
- if (o === me) {
145
+ if (o === pe) {
146
146
  t.push(e.slice(i, s)), i = s + 1;
147
147
  continue;
148
148
  }
@@ -154,13 +154,13 @@ var ae = (e, t) => {
154
154
  o === "[" ? n++ : o === "]" ? n-- : o === "(" ? r++ : o === ")" && r--;
155
155
  }
156
156
  let s = t.length === 0 ? e : e.slice(i), c = s, l = !1;
157
- s.endsWith(pe) ? (c = s.slice(0, -1), l = !0) : s.startsWith(pe) && (c = s.slice(1), l = !0);
157
+ s.endsWith(fe) ? (c = s.slice(0, -1), l = !0) : s.startsWith(fe) && (c = s.slice(1), l = !0);
158
158
  let u = a && a > i ? a - i : void 0;
159
- return ge(t, l, c, u);
159
+ return he(t, l, c, u);
160
160
  };
161
161
  if (t) {
162
- let e = t + me, n = r;
163
- r = (t) => t.startsWith(e) ? n(t.slice(e.length)) : ge(he, !1, t, void 0, !0);
162
+ let e = t + pe, n = r;
163
+ r = (t) => t.startsWith(e) ? n(t.slice(e.length)) : he(me, !1, t, void 0, !0);
164
164
  }
165
165
  if (n) {
166
166
  let e = r;
@@ -170,7 +170,7 @@ var ae = (e, t) => {
170
170
  });
171
171
  }
172
172
  return r;
173
- }, ve = (e) => {
173
+ }, _e = (e) => {
174
174
  let t = /* @__PURE__ */ new Map();
175
175
  return e.orderSensitiveModifiers.forEach((e, n) => {
176
176
  t.set(e, 1e6 + n);
@@ -182,18 +182,18 @@ var ae = (e, t) => {
182
182
  }
183
183
  return r.length > 0 && (r.sort(), n.push(...r)), n;
184
184
  };
185
- }, ye = (e) => ({
186
- cache: fe(e.cacheSize),
187
- parseClassName: _e(e),
188
- sortModifiers: ve(e),
189
- postfixLookupClassGroupIds: be(e),
185
+ }, ve = (e) => ({
186
+ cache: de(e.cacheSize),
187
+ parseClassName: ge(e),
188
+ sortModifiers: _e(e),
189
+ postfixLookupClassGroupIds: ye(e),
190
190
  ...N(e)
191
- }), be = (e) => {
191
+ }), ye = (e) => {
192
192
  let t = Object.create(null), n = e.postfixLookupClassGroups;
193
193
  if (n) for (let e = 0; e < n.length; e++) t[n[e]] = !0;
194
194
  return t;
195
- }, xe = /\s+/, Se = (e, t) => {
196
- let { parseClassName: n, getClassGroupId: r, getConflictingClassGroupIds: i, sortModifiers: a, postfixLookupClassGroupIds: o } = t, s = [], c = e.trim().split(xe), l = "";
195
+ }, be = /\s+/, xe = (e, t) => {
196
+ let { parseClassName: n, getClassGroupId: r, getConflictingClassGroupIds: i, sortModifiers: a, postfixLookupClassGroupIds: o } = t, s = [], c = e.trim().split(be), l = "";
197
197
  for (let e = c.length - 1; e >= 0; --e) {
198
198
  let t = c[e], { isExternal: u, modifiers: d, hasImportantModifier: f, baseClassName: p, maybePostfixModifierPosition: m } = n(t);
199
199
  if (u) {
@@ -217,7 +217,7 @@ var ae = (e, t) => {
217
217
  }
218
218
  h = !1;
219
219
  }
220
- let _ = d.length === 0 ? "" : d.length === 1 ? d[0] : a(d).join(":"), v = f ? _ + pe : _, y = v + g;
220
+ let _ = d.length === 0 ? "" : d.length === 1 ? d[0] : a(d).join(":"), v = f ? _ + fe : _, y = v + g;
221
221
  if (s.indexOf(y) > -1) continue;
222
222
  s.push(y);
223
223
  let b = i(g, h);
@@ -228,34 +228,34 @@ var ae = (e, t) => {
228
228
  l = t + (l.length > 0 ? " " + l : l);
229
229
  }
230
230
  return l;
231
- }, Ce = (...e) => {
231
+ }, Se = (...e) => {
232
232
  let t = 0, n, r, i = "";
233
- for (; t < e.length;) (n = e[t++]) && (r = we(n)) && (i && (i += " "), i += r);
233
+ for (; t < e.length;) (n = e[t++]) && (r = Ce(n)) && (i && (i += " "), i += r);
234
234
  return i;
235
- }, we = (e) => {
235
+ }, Ce = (e) => {
236
236
  if (typeof e == "string") return e;
237
237
  let t, n = "";
238
- for (let r = 0; r < e.length; r++) e[r] && (t = we(e[r])) && (n && (n += " "), n += t);
238
+ for (let r = 0; r < e.length; r++) e[r] && (t = Ce(e[r])) && (n && (n += " "), n += t);
239
239
  return n;
240
- }, Te = (e, ...t) => {
241
- let n, r, i, a, o = (o) => (n = ye(t.reduce((e, t) => t(e), e())), r = n.cache.get, i = n.cache.set, a = s, s(o)), s = (e) => {
240
+ }, we = (e, ...t) => {
241
+ let n, r, i, a, o = (o) => (n = ve(t.reduce((e, t) => t(e), e())), r = n.cache.get, i = n.cache.set, a = s, s(o)), s = (e) => {
242
242
  let t = r(e);
243
243
  if (t) return t;
244
- let a = Se(e, n);
244
+ let a = xe(e, n);
245
245
  return i(e, a), a;
246
246
  };
247
- return a = o, (...e) => a(Ce(...e));
248
- }, Ee = [], V = (e) => {
249
- let t = (t) => t[e] || Ee;
247
+ return a = o, (...e) => a(Se(...e));
248
+ }, Te = [], H = (e) => {
249
+ let t = (t) => t[e] || Te;
250
250
  return t.isThemeGetter = !0, t;
251
- }, De = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, Oe = /^\((?:(\w[\w-]*):)?(.+)\)$/i, ke = /^\d+(?:\.\d+)?\/\d+(?:\.\d+)?$/, Ae = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, je = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/, Me = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/, Ne = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, Pe = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, H = (e) => ke.test(e), U = (e) => !!e && !Number.isNaN(Number(e)), W = (e) => !!e && Number.isInteger(Number(e)), Fe = (e) => e.endsWith("%") && U(e.slice(0, -1)), G = (e) => Ae.test(e), Ie = () => !0, Le = (e) => je.test(e) && !Me.test(e), Re = () => !1, ze = (e) => Ne.test(e), Be = (e) => Pe.test(e), Ve = (e) => !K(e) && !J(e), He = (e) => e.startsWith("@container") && (e[10] === "/" && e[11] !== void 0 || e[11] === "s" && e[16] !== void 0 && e.startsWith("-size/", 10) || e[11] === "n" && e[18] !== void 0 && e.startsWith("-normal/", 10)), Ue = (e) => Z(e, rt, Re), K = (e) => De.test(e), q = (e) => Z(e, it, Le), We = (e) => Z(e, at, U), Ge = (e) => Z(e, st, Ie), Ke = (e) => Z(e, ot, Re), qe = (e) => Z(e, tt, Re), Je = (e) => Z(e, nt, Be), Ye = (e) => Z(e, ct, ze), J = (e) => Oe.test(e), Y = (e) => Q(e, it), Xe = (e) => Q(e, ot), Ze = (e) => Q(e, tt), Qe = (e) => Q(e, rt), $e = (e) => Q(e, nt), X = (e) => Q(e, ct, !0), et = (e) => Q(e, st, !0), Z = (e, t, n) => {
252
- let r = De.exec(e);
251
+ }, Ee = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, De = /^\((?:(\w[\w-]*):)?(.+)\)$/i, Oe = /^\d+(?:\.\d+)?\/\d+(?:\.\d+)?$/, ke = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, Ae = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/, je = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/, Me = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, Ne = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, U = (e) => Oe.test(e), W = (e) => !!e && !Number.isNaN(Number(e)), G = (e) => !!e && Number.isInteger(Number(e)), Pe = (e) => e.endsWith("%") && W(e.slice(0, -1)), K = (e) => ke.test(e), Fe = () => !0, Ie = (e) => Ae.test(e) && !je.test(e), Le = () => !1, Re = (e) => Me.test(e), ze = (e) => Ne.test(e), Be = (e) => !q(e) && !Y(e), Ve = (e) => e.startsWith("@container") && (e[10] === "/" && e[11] !== void 0 || e[11] === "s" && e[16] !== void 0 && e.startsWith("-size/", 10) || e[11] === "n" && e[18] !== void 0 && e.startsWith("-normal/", 10)), He = (e) => Z(e, rt, Le), q = (e) => Ee.test(e), J = (e) => Z(e, it, Ie), Ue = (e) => Z(e, at, W), We = (e) => Z(e, st, Fe), Ge = (e) => Z(e, ot, Le), Ke = (e) => Z(e, tt, Le), qe = (e) => Z(e, nt, ze), Je = (e) => Z(e, ct, Re), Y = (e) => De.test(e), X = (e) => Q(e, it), Ye = (e) => Q(e, ot), Xe = (e) => Q(e, tt), Ze = (e) => Q(e, rt), Qe = (e) => Q(e, nt), $e = (e) => Q(e, ct, !0), et = (e) => Q(e, st, !0), Z = (e, t, n) => {
252
+ let r = Ee.exec(e);
253
253
  return r ? r[1] ? t(r[1]) : n(r[2]) : !1;
254
254
  }, Q = (e, t, n = !1) => {
255
- let r = Oe.exec(e);
255
+ let r = De.exec(e);
256
256
  return r ? r[1] ? t(r[1]) : n : !1;
257
- }, tt = (e) => e === "position" || e === "percentage", nt = (e) => e === "image" || e === "url", rt = (e) => e === "length" || e === "size" || e === "bg-size", it = (e) => e === "length", at = (e) => e === "number", ot = (e) => e === "family-name", st = (e) => e === "number" || e === "weight", ct = (e) => e === "shadow", lt = /*#__PURE__*/ Te(() => {
258
- let e = V("color"), t = V("font"), n = V("text"), r = V("font-weight"), i = V("tracking"), a = V("leading"), o = V("breakpoint"), s = V("container"), c = V("spacing"), l = V("radius"), u = V("shadow"), d = V("inset-shadow"), f = V("text-shadow"), p = V("drop-shadow"), m = V("blur"), h = V("perspective"), g = V("aspect"), _ = V("ease"), v = V("animate"), y = () => [
257
+ }, tt = (e) => e === "position" || e === "percentage", nt = (e) => e === "image" || e === "url", rt = (e) => e === "length" || e === "size" || e === "bg-size", it = (e) => e === "length", at = (e) => e === "number", ot = (e) => e === "family-name", st = (e) => e === "number" || e === "weight", ct = (e) => e === "shadow", lt = /*#__PURE__*/ we(() => {
258
+ let e = H("color"), t = H("font"), n = H("text"), r = H("font-weight"), i = H("tracking"), a = H("leading"), o = H("breakpoint"), s = H("container"), c = H("spacing"), l = H("radius"), u = H("shadow"), d = H("inset-shadow"), f = H("text-shadow"), p = H("drop-shadow"), m = H("blur"), h = H("perspective"), g = H("aspect"), _ = H("ease"), v = H("animate"), y = () => [
259
259
  "auto",
260
260
  "avoid",
261
261
  "all",
@@ -278,59 +278,59 @@ var ae = (e, t) => {
278
278
  "right-bottom",
279
279
  "bottom-left",
280
280
  "left-bottom"
281
- ], ee = () => [
282
- ...b(),
283
- J,
284
- K
285
281
  ], x = () => [
282
+ ...b(),
283
+ Y,
284
+ q
285
+ ], ee = () => [
286
286
  "auto",
287
287
  "hidden",
288
288
  "clip",
289
289
  "visible",
290
290
  "scroll"
291
- ], te = () => [
291
+ ], S = () => [
292
292
  "auto",
293
293
  "contain",
294
294
  "none"
295
- ], S = () => [
296
- J,
297
- K,
298
- c
299
295
  ], C = () => [
300
- H,
296
+ Y,
297
+ q,
298
+ c
299
+ ], w = () => [
300
+ U,
301
301
  "full",
302
302
  "auto",
303
- ...S()
304
- ], ne = () => [
305
- W,
303
+ ...C()
304
+ ], te = () => [
305
+ G,
306
306
  "none",
307
307
  "subgrid",
308
- J,
309
- K
310
- ], w = () => [
308
+ Y,
309
+ q
310
+ ], T = () => [
311
311
  "auto",
312
312
  { span: [
313
313
  "full",
314
- W,
315
- J,
316
- K
314
+ G,
315
+ Y,
316
+ q
317
317
  ] },
318
- W,
319
- J,
320
- K
321
- ], T = () => [
322
- W,
318
+ G,
319
+ Y,
320
+ q
321
+ ], E = () => [
322
+ G,
323
323
  "auto",
324
- J,
325
- K
326
- ], re = () => [
324
+ Y,
325
+ q
326
+ ], ne = () => [
327
327
  "auto",
328
328
  "min",
329
329
  "max",
330
330
  "fr",
331
- J,
332
- K
333
- ], ie = () => [
331
+ Y,
332
+ q
333
+ ], re = () => [
334
334
  "start",
335
335
  "end",
336
336
  "center",
@@ -341,15 +341,15 @@ var ae = (e, t) => {
341
341
  "baseline",
342
342
  "center-safe",
343
343
  "end-safe"
344
- ], E = () => [
344
+ ], D = () => [
345
345
  "start",
346
346
  "end",
347
347
  "center",
348
348
  "stretch",
349
349
  "center-safe",
350
350
  "end-safe"
351
- ], D = () => ["auto", ...S()], O = () => [
352
- H,
351
+ ], O = () => ["auto", ...C()], k = () => [
352
+ U,
353
353
  "auto",
354
354
  "full",
355
355
  "dvw",
@@ -361,9 +361,9 @@ var ae = (e, t) => {
361
361
  "min",
362
362
  "max",
363
363
  "fit",
364
- ...S()
365
- ], k = () => [
366
- H,
364
+ ...C()
365
+ ], A = () => [
366
+ U,
367
367
  "screen",
368
368
  "full",
369
369
  "dvw",
@@ -372,9 +372,9 @@ var ae = (e, t) => {
372
372
  "min",
373
373
  "max",
374
374
  "fit",
375
- ...S()
376
- ], ae = () => [
377
- H,
375
+ ...C()
376
+ ], ie = () => [
377
+ U,
378
378
  "screen",
379
379
  "full",
380
380
  "lh",
@@ -384,45 +384,45 @@ var ae = (e, t) => {
384
384
  "min",
385
385
  "max",
386
386
  "fit",
387
- ...S()
388
- ], A = () => [
387
+ ...C()
388
+ ], j = () => [
389
389
  e,
390
- J,
391
- K
392
- ], oe = () => [
390
+ Y,
391
+ q
392
+ ], ae = () => [
393
393
  ...b(),
394
- Ze,
395
- qe,
396
- { position: [J, K] }
397
- ], j = () => ["no-repeat", { repeat: [
394
+ Xe,
395
+ Ke,
396
+ { position: [Y, q] }
397
+ ], M = () => ["no-repeat", { repeat: [
398
398
  "",
399
399
  "x",
400
400
  "y",
401
401
  "space",
402
402
  "round"
403
- ] }], se = () => [
403
+ ] }], oe = () => [
404
404
  "auto",
405
405
  "cover",
406
406
  "contain",
407
- Qe,
408
- Ue,
409
- { size: [J, K] }
410
- ], M = () => [
411
- Fe,
412
- Y,
413
- q
407
+ Ze,
408
+ He,
409
+ { size: [Y, q] }
410
+ ], se = () => [
411
+ Pe,
412
+ X,
413
+ J
414
414
  ], N = () => [
415
415
  "",
416
416
  "none",
417
417
  "full",
418
418
  l,
419
- J,
420
- K
421
- ], P = () => [
422
- "",
423
- U,
424
419
  Y,
425
420
  q
421
+ ], P = () => [
422
+ "",
423
+ W,
424
+ X,
425
+ J
426
426
  ], F = () => [
427
427
  "solid",
428
428
  "dashed",
@@ -446,34 +446,34 @@ var ae = (e, t) => {
446
446
  "color",
447
447
  "luminosity"
448
448
  ], I = () => [
449
- U,
450
- Fe,
451
- Ze,
452
- qe
449
+ W,
450
+ Pe,
451
+ Xe,
452
+ Ke
453
453
  ], L = () => [
454
454
  "",
455
455
  "none",
456
456
  m,
457
- J,
458
- K
457
+ Y,
458
+ q
459
459
  ], R = () => [
460
460
  "none",
461
- U,
462
- J,
463
- K
461
+ W,
462
+ Y,
463
+ q
464
464
  ], z = () => [
465
465
  "none",
466
- U,
467
- J,
468
- K
469
- ], le = () => [
470
- U,
471
- J,
472
- K
466
+ W,
467
+ Y,
468
+ q
473
469
  ], B = () => [
474
- H,
470
+ W,
471
+ Y,
472
+ q
473
+ ], V = () => [
474
+ U,
475
475
  "full",
476
- ...S()
476
+ ...C()
477
477
  ];
478
478
  return {
479
479
  cacheSize: 500,
@@ -485,17 +485,17 @@ var ae = (e, t) => {
485
485
  "bounce"
486
486
  ],
487
487
  aspect: ["video"],
488
- blur: [G],
489
- breakpoint: [G],
490
- color: [Ie],
491
- container: [G],
492
- "drop-shadow": [G],
488
+ blur: [K],
489
+ breakpoint: [K],
490
+ color: [Fe],
491
+ container: [K],
492
+ "drop-shadow": [K],
493
493
  ease: [
494
494
  "in",
495
495
  "out",
496
496
  "in-out"
497
497
  ],
498
- font: [Ve],
498
+ font: [Be],
499
499
  "font-weight": [
500
500
  "thin",
501
501
  "extralight",
@@ -507,7 +507,7 @@ var ae = (e, t) => {
507
507
  "extrabold",
508
508
  "black"
509
509
  ],
510
- "inset-shadow": [G],
510
+ "inset-shadow": [K],
511
511
  leading: [
512
512
  "none",
513
513
  "tight",
@@ -524,11 +524,11 @@ var ae = (e, t) => {
524
524
  "distant",
525
525
  "none"
526
526
  ],
527
- radius: [G],
528
- shadow: [G],
529
- spacing: ["px", U],
530
- text: [G],
531
- "text-shadow": [G],
527
+ radius: [K],
528
+ shadow: [K],
529
+ spacing: ["px", W],
530
+ text: [K],
531
+ "text-shadow": [K],
532
532
  tracking: [
533
533
  "tighter",
534
534
  "tight",
@@ -542,9 +542,9 @@ var ae = (e, t) => {
542
542
  aspect: [{ aspect: [
543
543
  "auto",
544
544
  "square",
545
- H,
546
- K,
547
- J,
545
+ U,
546
+ q,
547
+ Y,
548
548
  g
549
549
  ] }],
550
550
  container: ["container"],
@@ -552,14 +552,14 @@ var ae = (e, t) => {
552
552
  "",
553
553
  "normal",
554
554
  "size",
555
- J,
556
- K
555
+ Y,
556
+ q
557
557
  ] }],
558
- "container-named": [He],
558
+ "container-named": [Ve],
559
559
  columns: [{ columns: [
560
- U,
561
- K,
562
- J,
560
+ W,
561
+ q,
562
+ Y,
563
563
  s
564
564
  ] }],
565
565
  "break-after": [{ "break-after": y() }],
@@ -619,13 +619,13 @@ var ae = (e, t) => {
619
619
  "none",
620
620
  "scale-down"
621
621
  ] }],
622
- "object-position": [{ object: ee() }],
623
- overflow: [{ overflow: x() }],
624
- "overflow-x": [{ "overflow-x": x() }],
625
- "overflow-y": [{ "overflow-y": x() }],
626
- overscroll: [{ overscroll: te() }],
627
- "overscroll-x": [{ "overscroll-x": te() }],
628
- "overscroll-y": [{ "overscroll-y": te() }],
622
+ "object-position": [{ object: x() }],
623
+ overflow: [{ overflow: ee() }],
624
+ "overflow-x": [{ "overflow-x": ee() }],
625
+ "overflow-y": [{ "overflow-y": ee() }],
626
+ overscroll: [{ overscroll: S() }],
627
+ "overscroll-x": [{ "overscroll-x": S() }],
628
+ "overscroll-y": [{ "overscroll-y": S() }],
629
629
  position: [
630
630
  "static",
631
631
  "fixed",
@@ -633,40 +633,40 @@ var ae = (e, t) => {
633
633
  "relative",
634
634
  "sticky"
635
635
  ],
636
- inset: [{ inset: C() }],
637
- "inset-x": [{ "inset-x": C() }],
638
- "inset-y": [{ "inset-y": C() }],
636
+ inset: [{ inset: w() }],
637
+ "inset-x": [{ "inset-x": w() }],
638
+ "inset-y": [{ "inset-y": w() }],
639
639
  start: [{
640
- "inset-s": C(),
641
- start: C()
640
+ "inset-s": w(),
641
+ start: w()
642
642
  }],
643
643
  end: [{
644
- "inset-e": C(),
645
- end: C()
644
+ "inset-e": w(),
645
+ end: w()
646
646
  }],
647
- "inset-bs": [{ "inset-bs": C() }],
648
- "inset-be": [{ "inset-be": C() }],
649
- top: [{ top: C() }],
650
- right: [{ right: C() }],
651
- bottom: [{ bottom: C() }],
652
- left: [{ left: C() }],
647
+ "inset-bs": [{ "inset-bs": w() }],
648
+ "inset-be": [{ "inset-be": w() }],
649
+ top: [{ top: w() }],
650
+ right: [{ right: w() }],
651
+ bottom: [{ bottom: w() }],
652
+ left: [{ left: w() }],
653
653
  visibility: [
654
654
  "visible",
655
655
  "invisible",
656
656
  "collapse"
657
657
  ],
658
658
  z: [{ z: [
659
- W,
659
+ G,
660
660
  "auto",
661
- J,
662
- K
661
+ Y,
662
+ q
663
663
  ] }],
664
664
  basis: [{ basis: [
665
- H,
665
+ U,
666
666
  "full",
667
667
  "auto",
668
668
  s,
669
- ...S()
669
+ ...C()
670
670
  ] }],
671
671
  "flex-direction": [{ flex: [
672
672
  "row",
@@ -680,41 +680,41 @@ var ae = (e, t) => {
680
680
  "wrap-reverse"
681
681
  ] }],
682
682
  flex: [{ flex: [
683
+ W,
683
684
  U,
684
- H,
685
685
  "auto",
686
686
  "initial",
687
687
  "none",
688
- K
688
+ q
689
689
  ] }],
690
690
  grow: [{ grow: [
691
691
  "",
692
- U,
693
- J,
694
- K
692
+ W,
693
+ Y,
694
+ q
695
695
  ] }],
696
696
  shrink: [{ shrink: [
697
697
  "",
698
- U,
699
- J,
700
- K
698
+ W,
699
+ Y,
700
+ q
701
701
  ] }],
702
702
  order: [{ order: [
703
- W,
703
+ G,
704
704
  "first",
705
705
  "last",
706
706
  "none",
707
- J,
708
- K
709
- ] }],
710
- "grid-cols": [{ "grid-cols": ne() }],
711
- "col-start-end": [{ col: w() }],
712
- "col-start": [{ "col-start": T() }],
713
- "col-end": [{ "col-end": T() }],
714
- "grid-rows": [{ "grid-rows": ne() }],
715
- "row-start-end": [{ row: w() }],
716
- "row-start": [{ "row-start": T() }],
717
- "row-end": [{ "row-end": T() }],
707
+ Y,
708
+ q
709
+ ] }],
710
+ "grid-cols": [{ "grid-cols": te() }],
711
+ "col-start-end": [{ col: T() }],
712
+ "col-start": [{ "col-start": E() }],
713
+ "col-end": [{ "col-end": E() }],
714
+ "grid-rows": [{ "grid-rows": te() }],
715
+ "row-start-end": [{ row: T() }],
716
+ "row-start": [{ "row-start": E() }],
717
+ "row-end": [{ "row-end": E() }],
718
718
  "grid-flow": [{ "grid-flow": [
719
719
  "row",
720
720
  "col",
@@ -722,67 +722,67 @@ var ae = (e, t) => {
722
722
  "row-dense",
723
723
  "col-dense"
724
724
  ] }],
725
- "auto-cols": [{ "auto-cols": re() }],
726
- "auto-rows": [{ "auto-rows": re() }],
727
- gap: [{ gap: S() }],
728
- "gap-x": [{ "gap-x": S() }],
729
- "gap-y": [{ "gap-y": S() }],
730
- "justify-content": [{ justify: [...ie(), "normal"] }],
731
- "justify-items": [{ "justify-items": [...E(), "normal"] }],
732
- "justify-self": [{ "justify-self": ["auto", ...E()] }],
733
- "align-content": [{ content: ["normal", ...ie()] }],
734
- "align-items": [{ items: [...E(), { baseline: ["", "last"] }] }],
725
+ "auto-cols": [{ "auto-cols": ne() }],
726
+ "auto-rows": [{ "auto-rows": ne() }],
727
+ gap: [{ gap: C() }],
728
+ "gap-x": [{ "gap-x": C() }],
729
+ "gap-y": [{ "gap-y": C() }],
730
+ "justify-content": [{ justify: [...re(), "normal"] }],
731
+ "justify-items": [{ "justify-items": [...D(), "normal"] }],
732
+ "justify-self": [{ "justify-self": ["auto", ...D()] }],
733
+ "align-content": [{ content: ["normal", ...re()] }],
734
+ "align-items": [{ items: [...D(), { baseline: ["", "last"] }] }],
735
735
  "align-self": [{ self: [
736
736
  "auto",
737
- ...E(),
737
+ ...D(),
738
738
  { baseline: ["", "last"] }
739
739
  ] }],
740
- "place-content": [{ "place-content": ie() }],
741
- "place-items": [{ "place-items": [...E(), "baseline"] }],
742
- "place-self": [{ "place-self": ["auto", ...E()] }],
743
- p: [{ p: S() }],
744
- px: [{ px: S() }],
745
- py: [{ py: S() }],
746
- ps: [{ ps: S() }],
747
- pe: [{ pe: S() }],
748
- pbs: [{ pbs: S() }],
749
- pbe: [{ pbe: S() }],
750
- pt: [{ pt: S() }],
751
- pr: [{ pr: S() }],
752
- pb: [{ pb: S() }],
753
- pl: [{ pl: S() }],
754
- m: [{ m: D() }],
755
- mx: [{ mx: D() }],
756
- my: [{ my: D() }],
757
- ms: [{ ms: D() }],
758
- me: [{ me: D() }],
759
- mbs: [{ mbs: D() }],
760
- mbe: [{ mbe: D() }],
761
- mt: [{ mt: D() }],
762
- mr: [{ mr: D() }],
763
- mb: [{ mb: D() }],
764
- ml: [{ ml: D() }],
765
- "space-x": [{ "space-x": S() }],
740
+ "place-content": [{ "place-content": re() }],
741
+ "place-items": [{ "place-items": [...D(), "baseline"] }],
742
+ "place-self": [{ "place-self": ["auto", ...D()] }],
743
+ p: [{ p: C() }],
744
+ px: [{ px: C() }],
745
+ py: [{ py: C() }],
746
+ ps: [{ ps: C() }],
747
+ pe: [{ pe: C() }],
748
+ pbs: [{ pbs: C() }],
749
+ pbe: [{ pbe: C() }],
750
+ pt: [{ pt: C() }],
751
+ pr: [{ pr: C() }],
752
+ pb: [{ pb: C() }],
753
+ pl: [{ pl: C() }],
754
+ m: [{ m: O() }],
755
+ mx: [{ mx: O() }],
756
+ my: [{ my: O() }],
757
+ ms: [{ ms: O() }],
758
+ me: [{ me: O() }],
759
+ mbs: [{ mbs: O() }],
760
+ mbe: [{ mbe: O() }],
761
+ mt: [{ mt: O() }],
762
+ mr: [{ mr: O() }],
763
+ mb: [{ mb: O() }],
764
+ ml: [{ ml: O() }],
765
+ "space-x": [{ "space-x": C() }],
766
766
  "space-x-reverse": ["space-x-reverse"],
767
- "space-y": [{ "space-y": S() }],
767
+ "space-y": [{ "space-y": C() }],
768
768
  "space-y-reverse": ["space-y-reverse"],
769
- size: [{ size: O() }],
770
- "inline-size": [{ inline: ["auto", ...k()] }],
771
- "min-inline-size": [{ "min-inline": ["auto", ...k()] }],
772
- "max-inline-size": [{ "max-inline": ["none", ...k()] }],
773
- "block-size": [{ block: ["auto", ...ae()] }],
774
- "min-block-size": [{ "min-block": ["auto", ...ae()] }],
775
- "max-block-size": [{ "max-block": ["none", ...ae()] }],
769
+ size: [{ size: k() }],
770
+ "inline-size": [{ inline: ["auto", ...A()] }],
771
+ "min-inline-size": [{ "min-inline": ["auto", ...A()] }],
772
+ "max-inline-size": [{ "max-inline": ["none", ...A()] }],
773
+ "block-size": [{ block: ["auto", ...ie()] }],
774
+ "min-block-size": [{ "min-block": ["auto", ...ie()] }],
775
+ "max-block-size": [{ "max-block": ["none", ...ie()] }],
776
776
  w: [{ w: [
777
777
  s,
778
778
  "screen",
779
- ...O()
779
+ ...k()
780
780
  ] }],
781
781
  "min-w": [{ "min-w": [
782
782
  s,
783
783
  "screen",
784
784
  "none",
785
- ...O()
785
+ ...k()
786
786
  ] }],
787
787
  "max-w": [{ "max-w": [
788
788
  s,
@@ -790,36 +790,36 @@ var ae = (e, t) => {
790
790
  "none",
791
791
  "prose",
792
792
  { screen: [o] },
793
- ...O()
793
+ ...k()
794
794
  ] }],
795
795
  h: [{ h: [
796
796
  "screen",
797
797
  "lh",
798
- ...O()
798
+ ...k()
799
799
  ] }],
800
800
  "min-h": [{ "min-h": [
801
801
  "screen",
802
802
  "lh",
803
803
  "none",
804
- ...O()
804
+ ...k()
805
805
  ] }],
806
806
  "max-h": [{ "max-h": [
807
807
  "screen",
808
808
  "lh",
809
- ...O()
809
+ ...k()
810
810
  ] }],
811
811
  "font-size": [{ text: [
812
812
  "base",
813
813
  n,
814
- Y,
815
- q
814
+ X,
815
+ J
816
816
  ] }],
817
817
  "font-smoothing": ["antialiased", "subpixel-antialiased"],
818
818
  "font-style": ["italic", "not-italic"],
819
819
  "font-weight": [{ font: [
820
820
  r,
821
821
  et,
822
- Ge
822
+ We
823
823
  ] }],
824
824
  "font-stretch": [{ "font-stretch": [
825
825
  "ultra-condensed",
@@ -831,15 +831,15 @@ var ae = (e, t) => {
831
831
  "expanded",
832
832
  "extra-expanded",
833
833
  "ultra-expanded",
834
- Fe,
835
- K
834
+ Pe,
835
+ q
836
836
  ] }],
837
837
  "font-family": [{ font: [
838
- Xe,
839
- Ke,
838
+ Ye,
839
+ Ge,
840
840
  t
841
841
  ] }],
842
- "font-features": [{ "font-features": [K] }],
842
+ "font-features": [{ "font-features": [q] }],
843
843
  "fvn-normal": ["normal-nums"],
844
844
  "fvn-ordinal": ["ordinal"],
845
845
  "fvn-slashed-zero": ["slashed-zero"],
@@ -848,28 +848,28 @@ var ae = (e, t) => {
848
848
  "fvn-fraction": ["diagonal-fractions", "stacked-fractions"],
849
849
  tracking: [{ tracking: [
850
850
  i,
851
- J,
852
- K
851
+ Y,
852
+ q
853
853
  ] }],
854
854
  "line-clamp": [{ "line-clamp": [
855
- U,
855
+ W,
856
856
  "none",
857
- J,
858
- We
857
+ Y,
858
+ Ue
859
859
  ] }],
860
- leading: [{ leading: [a, ...S()] }],
860
+ leading: [{ leading: [a, ...C()] }],
861
861
  "list-image": [{ "list-image": [
862
862
  "none",
863
- J,
864
- K
863
+ Y,
864
+ q
865
865
  ] }],
866
866
  "list-style-position": [{ list: ["inside", "outside"] }],
867
867
  "list-style-type": [{ list: [
868
868
  "disc",
869
869
  "decimal",
870
870
  "none",
871
- J,
872
- K
871
+ Y,
872
+ q
873
873
  ] }],
874
874
  "text-alignment": [{ text: [
875
875
  "left",
@@ -879,8 +879,8 @@ var ae = (e, t) => {
879
879
  "start",
880
880
  "end"
881
881
  ] }],
882
- "placeholder-color": [{ placeholder: A() }],
883
- "text-color": [{ text: A() }],
882
+ "placeholder-color": [{ placeholder: j() }],
883
+ "text-color": [{ text: j() }],
884
884
  "text-decoration": [
885
885
  "underline",
886
886
  "overline",
@@ -889,18 +889,18 @@ var ae = (e, t) => {
889
889
  ],
890
890
  "text-decoration-style": [{ decoration: [...F(), "wavy"] }],
891
891
  "text-decoration-thickness": [{ decoration: [
892
- U,
892
+ W,
893
893
  "from-font",
894
894
  "auto",
895
- J,
896
- q
895
+ Y,
896
+ J
897
897
  ] }],
898
- "text-decoration-color": [{ decoration: A() }],
898
+ "text-decoration-color": [{ decoration: j() }],
899
899
  "underline-offset": [{ "underline-offset": [
900
- U,
900
+ W,
901
901
  "auto",
902
- J,
903
- K
902
+ Y,
903
+ q
904
904
  ] }],
905
905
  "text-transform": [
906
906
  "uppercase",
@@ -919,11 +919,11 @@ var ae = (e, t) => {
919
919
  "balance",
920
920
  "pretty"
921
921
  ] }],
922
- indent: [{ indent: S() }],
922
+ indent: [{ indent: C() }],
923
923
  "tab-size": [{ tab: [
924
- W,
925
- J,
926
- K
924
+ G,
925
+ Y,
926
+ q
927
927
  ] }],
928
928
  "vertical-align": [{ align: [
929
929
  "baseline",
@@ -934,8 +934,8 @@ var ae = (e, t) => {
934
934
  "text-bottom",
935
935
  "sub",
936
936
  "super",
937
- J,
938
- K
937
+ Y,
938
+ q
939
939
  ] }],
940
940
  whitespace: [{ whitespace: [
941
941
  "normal",
@@ -963,8 +963,8 @@ var ae = (e, t) => {
963
963
  ] }],
964
964
  content: [{ content: [
965
965
  "none",
966
- J,
967
- K
966
+ Y,
967
+ q
968
968
  ] }],
969
969
  "bg-attachment": [{ bg: [
970
970
  "fixed",
@@ -982,9 +982,9 @@ var ae = (e, t) => {
982
982
  "padding",
983
983
  "content"
984
984
  ] }],
985
- "bg-position": [{ bg: oe() }],
986
- "bg-repeat": [{ bg: j() }],
987
- "bg-size": [{ bg: se() }],
985
+ "bg-position": [{ bg: ae() }],
986
+ "bg-repeat": [{ bg: M() }],
987
+ "bg-size": [{ bg: oe() }],
988
988
  "bg-image": [{ bg: [
989
989
  "none",
990
990
  {
@@ -999,31 +999,31 @@ var ae = (e, t) => {
999
999
  "l",
1000
1000
  "tl"
1001
1001
  ] },
1002
- W,
1003
- J,
1004
- K
1002
+ G,
1003
+ Y,
1004
+ q
1005
1005
  ],
1006
1006
  radial: [
1007
1007
  "",
1008
- J,
1009
- K
1008
+ Y,
1009
+ q
1010
1010
  ],
1011
1011
  conic: [
1012
- W,
1013
- J,
1014
- K
1012
+ G,
1013
+ Y,
1014
+ q
1015
1015
  ]
1016
1016
  },
1017
- $e,
1018
- Je
1019
- ] }],
1020
- "bg-color": [{ bg: A() }],
1021
- "gradient-from-pos": [{ from: M() }],
1022
- "gradient-via-pos": [{ via: M() }],
1023
- "gradient-to-pos": [{ to: M() }],
1024
- "gradient-from": [{ from: A() }],
1025
- "gradient-via": [{ via: A() }],
1026
- "gradient-to": [{ to: A() }],
1017
+ Qe,
1018
+ qe
1019
+ ] }],
1020
+ "bg-color": [{ bg: j() }],
1021
+ "gradient-from-pos": [{ from: se() }],
1022
+ "gradient-via-pos": [{ via: se() }],
1023
+ "gradient-to-pos": [{ to: se() }],
1024
+ "gradient-from": [{ from: j() }],
1025
+ "gradient-via": [{ via: j() }],
1026
+ "gradient-to": [{ to: j() }],
1027
1027
  rounded: [{ rounded: N() }],
1028
1028
  "rounded-s": [{ "rounded-s": N() }],
1029
1029
  "rounded-e": [{ "rounded-e": N() }],
@@ -1064,68 +1064,68 @@ var ae = (e, t) => {
1064
1064
  "hidden",
1065
1065
  "none"
1066
1066
  ] }],
1067
- "border-color": [{ border: A() }],
1068
- "border-color-x": [{ "border-x": A() }],
1069
- "border-color-y": [{ "border-y": A() }],
1070
- "border-color-s": [{ "border-s": A() }],
1071
- "border-color-e": [{ "border-e": A() }],
1072
- "border-color-bs": [{ "border-bs": A() }],
1073
- "border-color-be": [{ "border-be": A() }],
1074
- "border-color-t": [{ "border-t": A() }],
1075
- "border-color-r": [{ "border-r": A() }],
1076
- "border-color-b": [{ "border-b": A() }],
1077
- "border-color-l": [{ "border-l": A() }],
1078
- "divide-color": [{ divide: A() }],
1067
+ "border-color": [{ border: j() }],
1068
+ "border-color-x": [{ "border-x": j() }],
1069
+ "border-color-y": [{ "border-y": j() }],
1070
+ "border-color-s": [{ "border-s": j() }],
1071
+ "border-color-e": [{ "border-e": j() }],
1072
+ "border-color-bs": [{ "border-bs": j() }],
1073
+ "border-color-be": [{ "border-be": j() }],
1074
+ "border-color-t": [{ "border-t": j() }],
1075
+ "border-color-r": [{ "border-r": j() }],
1076
+ "border-color-b": [{ "border-b": j() }],
1077
+ "border-color-l": [{ "border-l": j() }],
1078
+ "divide-color": [{ divide: j() }],
1079
1079
  "outline-style": [{ outline: [
1080
1080
  ...F(),
1081
1081
  "none",
1082
1082
  "hidden"
1083
1083
  ] }],
1084
1084
  "outline-offset": [{ "outline-offset": [
1085
- U,
1086
- J,
1087
- K
1085
+ W,
1086
+ Y,
1087
+ q
1088
1088
  ] }],
1089
1089
  "outline-w": [{ outline: [
1090
1090
  "",
1091
- U,
1092
- Y,
1093
- q
1091
+ W,
1092
+ X,
1093
+ J
1094
1094
  ] }],
1095
- "outline-color": [{ outline: A() }],
1095
+ "outline-color": [{ outline: j() }],
1096
1096
  shadow: [{ shadow: [
1097
1097
  "",
1098
1098
  "none",
1099
1099
  u,
1100
- X,
1101
- Ye
1100
+ $e,
1101
+ Je
1102
1102
  ] }],
1103
- "shadow-color": [{ shadow: A() }],
1103
+ "shadow-color": [{ shadow: j() }],
1104
1104
  "inset-shadow": [{ "inset-shadow": [
1105
1105
  "none",
1106
1106
  d,
1107
- X,
1108
- Ye
1107
+ $e,
1108
+ Je
1109
1109
  ] }],
1110
- "inset-shadow-color": [{ "inset-shadow": A() }],
1110
+ "inset-shadow-color": [{ "inset-shadow": j() }],
1111
1111
  "ring-w": [{ ring: P() }],
1112
1112
  "ring-w-inset": ["ring-inset"],
1113
- "ring-color": [{ ring: A() }],
1114
- "ring-offset-w": [{ "ring-offset": [U, q] }],
1115
- "ring-offset-color": [{ "ring-offset": A() }],
1113
+ "ring-color": [{ ring: j() }],
1114
+ "ring-offset-w": [{ "ring-offset": [W, J] }],
1115
+ "ring-offset-color": [{ "ring-offset": j() }],
1116
1116
  "inset-ring-w": [{ "inset-ring": P() }],
1117
- "inset-ring-color": [{ "inset-ring": A() }],
1117
+ "inset-ring-color": [{ "inset-ring": j() }],
1118
1118
  "text-shadow": [{ "text-shadow": [
1119
1119
  "none",
1120
1120
  f,
1121
- X,
1122
- Ye
1121
+ $e,
1122
+ Je
1123
1123
  ] }],
1124
- "text-shadow-color": [{ "text-shadow": A() }],
1124
+ "text-shadow-color": [{ "text-shadow": j() }],
1125
1125
  opacity: [{ opacity: [
1126
- U,
1127
- J,
1128
- K
1126
+ W,
1127
+ Y,
1128
+ q
1129
1129
  ] }],
1130
1130
  "mix-blend": [{ "mix-blend": [
1131
1131
  ...ce(),
@@ -1147,51 +1147,51 @@ var ae = (e, t) => {
1147
1147
  "intersect",
1148
1148
  "exclude"
1149
1149
  ] }],
1150
- "mask-image-linear-pos": [{ "mask-linear": [U] }],
1150
+ "mask-image-linear-pos": [{ "mask-linear": [W] }],
1151
1151
  "mask-image-linear-from-pos": [{ "mask-linear-from": I() }],
1152
1152
  "mask-image-linear-to-pos": [{ "mask-linear-to": I() }],
1153
- "mask-image-linear-from-color": [{ "mask-linear-from": A() }],
1154
- "mask-image-linear-to-color": [{ "mask-linear-to": A() }],
1153
+ "mask-image-linear-from-color": [{ "mask-linear-from": j() }],
1154
+ "mask-image-linear-to-color": [{ "mask-linear-to": j() }],
1155
1155
  "mask-image-t-from-pos": [{ "mask-t-from": I() }],
1156
1156
  "mask-image-t-to-pos": [{ "mask-t-to": I() }],
1157
- "mask-image-t-from-color": [{ "mask-t-from": A() }],
1158
- "mask-image-t-to-color": [{ "mask-t-to": A() }],
1157
+ "mask-image-t-from-color": [{ "mask-t-from": j() }],
1158
+ "mask-image-t-to-color": [{ "mask-t-to": j() }],
1159
1159
  "mask-image-r-from-pos": [{ "mask-r-from": I() }],
1160
1160
  "mask-image-r-to-pos": [{ "mask-r-to": I() }],
1161
- "mask-image-r-from-color": [{ "mask-r-from": A() }],
1162
- "mask-image-r-to-color": [{ "mask-r-to": A() }],
1161
+ "mask-image-r-from-color": [{ "mask-r-from": j() }],
1162
+ "mask-image-r-to-color": [{ "mask-r-to": j() }],
1163
1163
  "mask-image-b-from-pos": [{ "mask-b-from": I() }],
1164
1164
  "mask-image-b-to-pos": [{ "mask-b-to": I() }],
1165
- "mask-image-b-from-color": [{ "mask-b-from": A() }],
1166
- "mask-image-b-to-color": [{ "mask-b-to": A() }],
1165
+ "mask-image-b-from-color": [{ "mask-b-from": j() }],
1166
+ "mask-image-b-to-color": [{ "mask-b-to": j() }],
1167
1167
  "mask-image-l-from-pos": [{ "mask-l-from": I() }],
1168
1168
  "mask-image-l-to-pos": [{ "mask-l-to": I() }],
1169
- "mask-image-l-from-color": [{ "mask-l-from": A() }],
1170
- "mask-image-l-to-color": [{ "mask-l-to": A() }],
1169
+ "mask-image-l-from-color": [{ "mask-l-from": j() }],
1170
+ "mask-image-l-to-color": [{ "mask-l-to": j() }],
1171
1171
  "mask-image-x-from-pos": [{ "mask-x-from": I() }],
1172
1172
  "mask-image-x-to-pos": [{ "mask-x-to": I() }],
1173
- "mask-image-x-from-color": [{ "mask-x-from": A() }],
1174
- "mask-image-x-to-color": [{ "mask-x-to": A() }],
1173
+ "mask-image-x-from-color": [{ "mask-x-from": j() }],
1174
+ "mask-image-x-to-color": [{ "mask-x-to": j() }],
1175
1175
  "mask-image-y-from-pos": [{ "mask-y-from": I() }],
1176
1176
  "mask-image-y-to-pos": [{ "mask-y-to": I() }],
1177
- "mask-image-y-from-color": [{ "mask-y-from": A() }],
1178
- "mask-image-y-to-color": [{ "mask-y-to": A() }],
1179
- "mask-image-radial": [{ "mask-radial": [J, K] }],
1177
+ "mask-image-y-from-color": [{ "mask-y-from": j() }],
1178
+ "mask-image-y-to-color": [{ "mask-y-to": j() }],
1179
+ "mask-image-radial": [{ "mask-radial": [Y, q] }],
1180
1180
  "mask-image-radial-from-pos": [{ "mask-radial-from": I() }],
1181
1181
  "mask-image-radial-to-pos": [{ "mask-radial-to": I() }],
1182
- "mask-image-radial-from-color": [{ "mask-radial-from": A() }],
1183
- "mask-image-radial-to-color": [{ "mask-radial-to": A() }],
1182
+ "mask-image-radial-from-color": [{ "mask-radial-from": j() }],
1183
+ "mask-image-radial-to-color": [{ "mask-radial-to": j() }],
1184
1184
  "mask-image-radial-shape": [{ "mask-radial": ["circle", "ellipse"] }],
1185
1185
  "mask-image-radial-size": [{ "mask-radial": [{
1186
1186
  closest: ["side", "corner"],
1187
1187
  farthest: ["side", "corner"]
1188
1188
  }] }],
1189
1189
  "mask-image-radial-pos": [{ "mask-radial-at": b() }],
1190
- "mask-image-conic-pos": [{ "mask-conic": [U] }],
1190
+ "mask-image-conic-pos": [{ "mask-conic": [W] }],
1191
1191
  "mask-image-conic-from-pos": [{ "mask-conic-from": I() }],
1192
1192
  "mask-image-conic-to-pos": [{ "mask-conic-to": I() }],
1193
- "mask-image-conic-from-color": [{ "mask-conic-from": A() }],
1194
- "mask-image-conic-to-color": [{ "mask-conic-to": A() }],
1193
+ "mask-image-conic-from-color": [{ "mask-conic-from": j() }],
1194
+ "mask-image-conic-to-color": [{ "mask-conic-to": j() }],
1195
1195
  "mask-mode": [{ mask: [
1196
1196
  "alpha",
1197
1197
  "luminance",
@@ -1205,122 +1205,122 @@ var ae = (e, t) => {
1205
1205
  "stroke",
1206
1206
  "view"
1207
1207
  ] }],
1208
- "mask-position": [{ mask: oe() }],
1209
- "mask-repeat": [{ mask: j() }],
1210
- "mask-size": [{ mask: se() }],
1208
+ "mask-position": [{ mask: ae() }],
1209
+ "mask-repeat": [{ mask: M() }],
1210
+ "mask-size": [{ mask: oe() }],
1211
1211
  "mask-type": [{ "mask-type": ["alpha", "luminance"] }],
1212
1212
  "mask-image": [{ mask: [
1213
1213
  "none",
1214
- J,
1215
- K
1214
+ Y,
1215
+ q
1216
1216
  ] }],
1217
1217
  filter: [{ filter: [
1218
1218
  "",
1219
1219
  "none",
1220
- J,
1221
- K
1220
+ Y,
1221
+ q
1222
1222
  ] }],
1223
1223
  blur: [{ blur: L() }],
1224
1224
  brightness: [{ brightness: [
1225
- U,
1226
- J,
1227
- K
1225
+ W,
1226
+ Y,
1227
+ q
1228
1228
  ] }],
1229
1229
  contrast: [{ contrast: [
1230
- U,
1231
- J,
1232
- K
1230
+ W,
1231
+ Y,
1232
+ q
1233
1233
  ] }],
1234
1234
  "drop-shadow": [{ "drop-shadow": [
1235
1235
  "",
1236
1236
  "none",
1237
1237
  p,
1238
- X,
1239
- Ye
1238
+ $e,
1239
+ Je
1240
1240
  ] }],
1241
- "drop-shadow-color": [{ "drop-shadow": A() }],
1241
+ "drop-shadow-color": [{ "drop-shadow": j() }],
1242
1242
  grayscale: [{ grayscale: [
1243
1243
  "",
1244
- U,
1245
- J,
1246
- K
1244
+ W,
1245
+ Y,
1246
+ q
1247
1247
  ] }],
1248
1248
  "hue-rotate": [{ "hue-rotate": [
1249
- U,
1250
- J,
1251
- K
1249
+ W,
1250
+ Y,
1251
+ q
1252
1252
  ] }],
1253
1253
  invert: [{ invert: [
1254
1254
  "",
1255
- U,
1256
- J,
1257
- K
1255
+ W,
1256
+ Y,
1257
+ q
1258
1258
  ] }],
1259
1259
  saturate: [{ saturate: [
1260
- U,
1261
- J,
1262
- K
1260
+ W,
1261
+ Y,
1262
+ q
1263
1263
  ] }],
1264
1264
  sepia: [{ sepia: [
1265
1265
  "",
1266
- U,
1267
- J,
1268
- K
1266
+ W,
1267
+ Y,
1268
+ q
1269
1269
  ] }],
1270
1270
  "backdrop-filter": [{ "backdrop-filter": [
1271
1271
  "",
1272
1272
  "none",
1273
- J,
1274
- K
1273
+ Y,
1274
+ q
1275
1275
  ] }],
1276
1276
  "backdrop-blur": [{ "backdrop-blur": L() }],
1277
1277
  "backdrop-brightness": [{ "backdrop-brightness": [
1278
- U,
1279
- J,
1280
- K
1278
+ W,
1279
+ Y,
1280
+ q
1281
1281
  ] }],
1282
1282
  "backdrop-contrast": [{ "backdrop-contrast": [
1283
- U,
1284
- J,
1285
- K
1283
+ W,
1284
+ Y,
1285
+ q
1286
1286
  ] }],
1287
1287
  "backdrop-grayscale": [{ "backdrop-grayscale": [
1288
1288
  "",
1289
- U,
1290
- J,
1291
- K
1289
+ W,
1290
+ Y,
1291
+ q
1292
1292
  ] }],
1293
1293
  "backdrop-hue-rotate": [{ "backdrop-hue-rotate": [
1294
- U,
1295
- J,
1296
- K
1294
+ W,
1295
+ Y,
1296
+ q
1297
1297
  ] }],
1298
1298
  "backdrop-invert": [{ "backdrop-invert": [
1299
1299
  "",
1300
- U,
1301
- J,
1302
- K
1300
+ W,
1301
+ Y,
1302
+ q
1303
1303
  ] }],
1304
1304
  "backdrop-opacity": [{ "backdrop-opacity": [
1305
- U,
1306
- J,
1307
- K
1305
+ W,
1306
+ Y,
1307
+ q
1308
1308
  ] }],
1309
1309
  "backdrop-saturate": [{ "backdrop-saturate": [
1310
- U,
1311
- J,
1312
- K
1310
+ W,
1311
+ Y,
1312
+ q
1313
1313
  ] }],
1314
1314
  "backdrop-sepia": [{ "backdrop-sepia": [
1315
1315
  "",
1316
- U,
1317
- J,
1318
- K
1316
+ W,
1317
+ Y,
1318
+ q
1319
1319
  ] }],
1320
1320
  "border-collapse": [{ border: ["collapse", "separate"] }],
1321
- "border-spacing": [{ "border-spacing": S() }],
1322
- "border-spacing-x": [{ "border-spacing-x": S() }],
1323
- "border-spacing-y": [{ "border-spacing-y": S() }],
1321
+ "border-spacing": [{ "border-spacing": C() }],
1322
+ "border-spacing-x": [{ "border-spacing-x": C() }],
1323
+ "border-spacing-y": [{ "border-spacing-y": C() }],
1324
1324
  "table-layout": [{ table: ["auto", "fixed"] }],
1325
1325
  caption: [{ caption: ["top", "bottom"] }],
1326
1326
  transition: [{ transition: [
@@ -1331,41 +1331,41 @@ var ae = (e, t) => {
1331
1331
  "shadow",
1332
1332
  "transform",
1333
1333
  "none",
1334
- J,
1335
- K
1334
+ Y,
1335
+ q
1336
1336
  ] }],
1337
1337
  "transition-behavior": [{ transition: ["normal", "discrete"] }],
1338
1338
  duration: [{ duration: [
1339
- U,
1339
+ W,
1340
1340
  "initial",
1341
- J,
1342
- K
1341
+ Y,
1342
+ q
1343
1343
  ] }],
1344
1344
  ease: [{ ease: [
1345
1345
  "linear",
1346
1346
  "initial",
1347
1347
  _,
1348
- J,
1349
- K
1348
+ Y,
1349
+ q
1350
1350
  ] }],
1351
1351
  delay: [{ delay: [
1352
- U,
1353
- J,
1354
- K
1352
+ W,
1353
+ Y,
1354
+ q
1355
1355
  ] }],
1356
1356
  animate: [{ animate: [
1357
1357
  "none",
1358
1358
  v,
1359
- J,
1360
- K
1359
+ Y,
1360
+ q
1361
1361
  ] }],
1362
1362
  backface: [{ backface: ["hidden", "visible"] }],
1363
1363
  perspective: [{ perspective: [
1364
1364
  h,
1365
- J,
1366
- K
1365
+ Y,
1366
+ q
1367
1367
  ] }],
1368
- "perspective-origin": [{ "perspective-origin": ee() }],
1368
+ "perspective-origin": [{ "perspective-origin": x() }],
1369
1369
  rotate: [{ rotate: R() }],
1370
1370
  "rotate-x": [{ "rotate-x": R() }],
1371
1371
  "rotate-y": [{ "rotate-y": R() }],
@@ -1375,32 +1375,32 @@ var ae = (e, t) => {
1375
1375
  "scale-y": [{ "scale-y": z() }],
1376
1376
  "scale-z": [{ "scale-z": z() }],
1377
1377
  "scale-3d": ["scale-3d"],
1378
- skew: [{ skew: le() }],
1379
- "skew-x": [{ "skew-x": le() }],
1380
- "skew-y": [{ "skew-y": le() }],
1378
+ skew: [{ skew: B() }],
1379
+ "skew-x": [{ "skew-x": B() }],
1380
+ "skew-y": [{ "skew-y": B() }],
1381
1381
  transform: [{ transform: [
1382
- J,
1383
- K,
1382
+ Y,
1383
+ q,
1384
1384
  "",
1385
1385
  "none",
1386
1386
  "gpu",
1387
1387
  "cpu"
1388
1388
  ] }],
1389
- "transform-origin": [{ origin: ee() }],
1389
+ "transform-origin": [{ origin: x() }],
1390
1390
  "transform-style": [{ transform: ["3d", "flat"] }],
1391
- translate: [{ translate: B() }],
1392
- "translate-x": [{ "translate-x": B() }],
1393
- "translate-y": [{ "translate-y": B() }],
1394
- "translate-z": [{ "translate-z": B() }],
1391
+ translate: [{ translate: V() }],
1392
+ "translate-x": [{ "translate-x": V() }],
1393
+ "translate-y": [{ "translate-y": V() }],
1394
+ "translate-z": [{ "translate-z": V() }],
1395
1395
  "translate-none": ["translate-none"],
1396
1396
  zoom: [{ zoom: [
1397
- W,
1398
- J,
1399
- K
1397
+ G,
1398
+ Y,
1399
+ q
1400
1400
  ] }],
1401
- accent: [{ accent: A() }],
1401
+ accent: [{ accent: j() }],
1402
1402
  appearance: [{ appearance: ["none", "auto"] }],
1403
- "caret-color": [{ caret: A() }],
1403
+ "caret-color": [{ caret: j() }],
1404
1404
  "color-scheme": [{ scheme: [
1405
1405
  "normal",
1406
1406
  "dark",
@@ -1446,8 +1446,8 @@ var ae = (e, t) => {
1446
1446
  "nwse-resize",
1447
1447
  "zoom-in",
1448
1448
  "zoom-out",
1449
- J,
1450
- K
1449
+ Y,
1450
+ q
1451
1451
  ] }],
1452
1452
  "field-sizing": [{ "field-sizing": ["fixed", "content"] }],
1453
1453
  "pointer-events": [{ "pointer-events": ["auto", "none"] }],
@@ -1458,8 +1458,8 @@ var ae = (e, t) => {
1458
1458
  "x"
1459
1459
  ] }],
1460
1460
  "scroll-behavior": [{ scroll: ["auto", "smooth"] }],
1461
- "scrollbar-thumb-color": [{ "scrollbar-thumb": A() }],
1462
- "scrollbar-track-color": [{ "scrollbar-track": A() }],
1461
+ "scrollbar-thumb-color": [{ "scrollbar-thumb": j() }],
1462
+ "scrollbar-track-color": [{ "scrollbar-track": j() }],
1463
1463
  "scrollbar-gutter": [{ "scrollbar-gutter": [
1464
1464
  "auto",
1465
1465
  "stable",
@@ -1470,28 +1470,28 @@ var ae = (e, t) => {
1470
1470
  "thin",
1471
1471
  "none"
1472
1472
  ] }],
1473
- "scroll-m": [{ "scroll-m": S() }],
1474
- "scroll-mx": [{ "scroll-mx": S() }],
1475
- "scroll-my": [{ "scroll-my": S() }],
1476
- "scroll-ms": [{ "scroll-ms": S() }],
1477
- "scroll-me": [{ "scroll-me": S() }],
1478
- "scroll-mbs": [{ "scroll-mbs": S() }],
1479
- "scroll-mbe": [{ "scroll-mbe": S() }],
1480
- "scroll-mt": [{ "scroll-mt": S() }],
1481
- "scroll-mr": [{ "scroll-mr": S() }],
1482
- "scroll-mb": [{ "scroll-mb": S() }],
1483
- "scroll-ml": [{ "scroll-ml": S() }],
1484
- "scroll-p": [{ "scroll-p": S() }],
1485
- "scroll-px": [{ "scroll-px": S() }],
1486
- "scroll-py": [{ "scroll-py": S() }],
1487
- "scroll-ps": [{ "scroll-ps": S() }],
1488
- "scroll-pe": [{ "scroll-pe": S() }],
1489
- "scroll-pbs": [{ "scroll-pbs": S() }],
1490
- "scroll-pbe": [{ "scroll-pbe": S() }],
1491
- "scroll-pt": [{ "scroll-pt": S() }],
1492
- "scroll-pr": [{ "scroll-pr": S() }],
1493
- "scroll-pb": [{ "scroll-pb": S() }],
1494
- "scroll-pl": [{ "scroll-pl": S() }],
1473
+ "scroll-m": [{ "scroll-m": C() }],
1474
+ "scroll-mx": [{ "scroll-mx": C() }],
1475
+ "scroll-my": [{ "scroll-my": C() }],
1476
+ "scroll-ms": [{ "scroll-ms": C() }],
1477
+ "scroll-me": [{ "scroll-me": C() }],
1478
+ "scroll-mbs": [{ "scroll-mbs": C() }],
1479
+ "scroll-mbe": [{ "scroll-mbe": C() }],
1480
+ "scroll-mt": [{ "scroll-mt": C() }],
1481
+ "scroll-mr": [{ "scroll-mr": C() }],
1482
+ "scroll-mb": [{ "scroll-mb": C() }],
1483
+ "scroll-ml": [{ "scroll-ml": C() }],
1484
+ "scroll-p": [{ "scroll-p": C() }],
1485
+ "scroll-px": [{ "scroll-px": C() }],
1486
+ "scroll-py": [{ "scroll-py": C() }],
1487
+ "scroll-ps": [{ "scroll-ps": C() }],
1488
+ "scroll-pe": [{ "scroll-pe": C() }],
1489
+ "scroll-pbs": [{ "scroll-pbs": C() }],
1490
+ "scroll-pbe": [{ "scroll-pbe": C() }],
1491
+ "scroll-pt": [{ "scroll-pt": C() }],
1492
+ "scroll-pr": [{ "scroll-pr": C() }],
1493
+ "scroll-pb": [{ "scroll-pb": C() }],
1494
+ "scroll-pl": [{ "scroll-pl": C() }],
1495
1495
  "snap-align": [{ snap: [
1496
1496
  "start",
1497
1497
  "end",
@@ -1533,17 +1533,17 @@ var ae = (e, t) => {
1533
1533
  "scroll",
1534
1534
  "contents",
1535
1535
  "transform",
1536
- J,
1537
- K
1536
+ Y,
1537
+ q
1538
1538
  ] }],
1539
- fill: [{ fill: ["none", ...A()] }],
1539
+ fill: [{ fill: ["none", ...j()] }],
1540
1540
  "stroke-w": [{ stroke: [
1541
- U,
1542
- Y,
1543
- q,
1544
- We
1541
+ W,
1542
+ X,
1543
+ J,
1544
+ Ue
1545
1545
  ] }],
1546
- stroke: [{ stroke: ["none", ...A()] }],
1546
+ stroke: [{ stroke: ["none", ...j()] }],
1547
1547
  "forced-color-adjust": [{ "forced-color-adjust": ["auto", "none"] }]
1548
1548
  },
1549
1549
  conflictingClassGroups: {
@@ -1733,7 +1733,7 @@ var ae = (e, t) => {
1733
1733
  //#endregion
1734
1734
  //#region lib/lib/utils.ts
1735
1735
  function ut(...e) {
1736
- return lt(k(e));
1736
+ return lt(A(e));
1737
1737
  }
1738
1738
  //#endregion
1739
1739
  //#region node_modules/lodash-es/_WeakMap.js
@@ -1970,28 +1970,70 @@ function wn(e) {
1970
1970
  return e == null;
1971
1971
  }
1972
1972
  //#endregion
1973
- //#region lib/lib/array.utils.ts
1973
+ //#region lib/lib/string.utils.ts
1974
1974
  function Tn(e) {
1975
+ return e.normalize("NFKD").replace(/[\u0300-\u036f]/g, "").toLowerCase().trim().replace(/[^a-z0-9]+/g, "-").replace(/^-+|-+$/g, "");
1976
+ }
1977
+ function En(e) {
1978
+ return e ? e.toLowerCase().replace(/_/g, "-") : "";
1979
+ }
1980
+ function Dn(e, t = ", ") {
1981
+ return e.filter((e) => !!e).join(t);
1982
+ }
1983
+ function On(e, t) {
1984
+ let n = t.trim();
1985
+ if (!n) return [{
1986
+ text: e,
1987
+ match: !1
1988
+ }];
1989
+ let r = n.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"), i = new RegExp(r, "ig"), a = [], o = 0;
1990
+ for (let t of e.matchAll(i)) {
1991
+ let n = t.index ?? 0;
1992
+ n > o && a.push({
1993
+ text: e.slice(o, n),
1994
+ match: !1
1995
+ }), a.push({
1996
+ text: t[0],
1997
+ match: !0
1998
+ }), o = n + t[0].length;
1999
+ }
2000
+ return o < e.length && a.push({
2001
+ text: e.slice(o),
2002
+ match: !1
2003
+ }), a.length > 0 ? a : [{
2004
+ text: e,
2005
+ match: !1
2006
+ }];
2007
+ }
2008
+ var kn = {
2009
+ enumToKebabCase: En,
2010
+ joinTruthyParts: Dn,
2011
+ slugify: Tn,
2012
+ splitMatch: On
2013
+ };
2014
+ //#endregion
2015
+ //#region lib/lib/array.utils.ts
2016
+ function An(e) {
1975
2017
  return Array.from(new Set(e));
1976
2018
  }
1977
- function En(e, t, n) {
2019
+ function jn(e, t, n) {
1978
2020
  return e.find((e) => e[t] === n);
1979
2021
  }
1980
- function Dn(e, t, n) {
2022
+ function Mn(e, t, n) {
1981
2023
  return e.filter((e) => n.includes(e[t]));
1982
2024
  }
1983
- function On(e, t) {
2025
+ function Nn(e, t) {
1984
2026
  return {
1985
- findByKey: C((n) => En(e, t, n), [e, t]),
1986
- findByKeyIn: C((n) => Dn(e, t, n), [e, t])
2027
+ findByKey: w((n) => jn(e, t, n), [e, t]),
2028
+ findByKeyIn: w((n) => Mn(e, t, n), [e, t])
1987
2029
  };
1988
2030
  }
1989
- function kn(e) {
1990
- return On(e, "id");
2031
+ function Pn(e) {
2032
+ return Nn(e, "id");
1991
2033
  }
1992
2034
  //#endregion
1993
2035
  //#region lib/lib/build-field-options.ts
1994
- function An(e, { valueKey: t, label: n }) {
2036
+ function Fn(e, { valueKey: t, label: n }) {
1995
2037
  return e.map((e) => ({
1996
2038
  value: b(e, t),
1997
2039
  label: typeof n == "function" ? n(e) : b(e, n)
@@ -1999,68 +2041,68 @@ function An(e, { valueKey: t, label: n }) {
1999
2041
  }
2000
2042
  //#endregion
2001
2043
  //#region lib/lib/client-only.utils.ts
2002
- var jn = te(!1);
2003
- function Mn(e) {
2044
+ var In = S(!1);
2045
+ function Ln(e) {
2004
2046
  function t(t) {
2005
- let n = ne(jn), r = ee();
2006
- return !n && !r ? null : S(jn.Provider, { value: !0 }, S(x, { fallback: null }, S(e, t)));
2047
+ let n = te(In), r = x();
2048
+ return !n && !r ? null : C(In.Provider, { value: !0 }, C(ee, { fallback: null }, C(e, t)));
2007
2049
  }
2008
2050
  return t.displayName = `ClientOnly(${e.displayName ?? e.name ?? "Component"})`, t;
2009
2051
  }
2010
2052
  //#endregion
2011
2053
  //#region lib/lib/format.utils.ts
2012
- function Nn(e, t) {
2054
+ function Rn(e, t) {
2013
2055
  return e?.length ? e : t;
2014
2056
  }
2015
- function Pn(e, t) {
2057
+ function zn(e, t) {
2016
2058
  return e?.length ? e : t;
2017
2059
  }
2018
- function Fn(e) {
2060
+ function Bn(e) {
2019
2061
  let t = new FormData();
2020
2062
  return typeof e == "object" && Object.entries(e).forEach(([e, n]) => {
2021
2063
  wn(n) || t.append(e, n);
2022
2064
  }), t;
2023
2065
  }
2024
- function In(e) {
2066
+ function Vn(e) {
2025
2067
  let t = {};
2026
2068
  for (let [n, r] of e.entries()) t[n] = r;
2027
2069
  return t;
2028
2070
  }
2029
2071
  //#endregion
2030
2072
  //#region lib/lib/object.utils.ts
2031
- function Ln(e, t) {
2073
+ function Hn(e, t) {
2032
2074
  let n = {};
2033
2075
  if (!Array.isArray(t)) n[t] = e?.[t];
2034
2076
  else for (let r of t) n[r] = e?.[r];
2035
2077
  return n;
2036
2078
  }
2037
- function Rn(e, t) {
2079
+ function Un(e, t) {
2038
2080
  let n = { ...e };
2039
2081
  if (Array.isArray(t)) for (let e of t) delete n?.[e];
2040
2082
  else delete n?.[t];
2041
2083
  return n ?? {};
2042
2084
  }
2043
- function zn(e) {
2085
+ function Wn(e) {
2044
2086
  return e;
2045
2087
  }
2046
- async function Bn(e) {
2088
+ async function Gn(e) {
2047
2089
  return await e;
2048
2090
  }
2049
- function Vn(e, t = !1) {
2091
+ function Kn(e, t = !1) {
2050
2092
  return Object.fromEntries(Object.entries(e).filter(([e, n]) => t ? n != null && n !== void 0 : n !== void 0));
2051
2093
  }
2052
2094
  //#endregion
2053
2095
  //#region lib/lib/promise.utils.ts
2054
- function Hn(e) {
2096
+ function qn(e) {
2055
2097
  return new Promise((t) => setTimeout(t, e));
2056
2098
  }
2057
2099
  //#endregion
2058
2100
  //#region lib/lib/redux/async-slice.ts
2059
- var Un = ie({ creators: { asyncThunk: re } });
2101
+ var Jn = re({ creators: { asyncThunk: ne } });
2060
2102
  //#endregion
2061
2103
  //#region lib/lib/redux/filter-slice.ts
2062
- function Wn({ name: e, initialState: t, reducers: n = void 0, selectors: r = {} }) {
2063
- return E({
2104
+ function Yn({ name: e, initialState: t, reducers: n = void 0, selectors: r = {} }) {
2105
+ return D({
2064
2106
  name: e,
2065
2107
  initialState: t,
2066
2108
  reducers: (e) => ({
@@ -2084,7 +2126,7 @@ function Wn({ name: e, initialState: t, reducers: n = void 0, selectors: r = {}
2084
2126
  }
2085
2127
  //#endregion
2086
2128
  //#region lib/lib/redux/status-slice.ts
2087
- var Gn = ({ name: e, initialState: t = { status: "idle" }, reducers: n = {}, selectors: r = {} }) => E({
2129
+ var Xn = ({ name: e, initialState: t = { status: "idle" }, reducers: n = {}, selectors: r = {} }) => D({
2088
2130
  name: e,
2089
2131
  initialState: t,
2090
2132
  reducers: {
@@ -2103,7 +2145,7 @@ var Gn = ({ name: e, initialState: t = { status: "idle" }, reducers: n = {}, sel
2103
2145
  ...n
2104
2146
  },
2105
2147
  selectors: { ...r }
2106
- }), Kn = ({ name: e, initialState: t, reducers: n = {}, selectors: r = {} }) => E({
2148
+ }), Zn = ({ name: e, initialState: t, reducers: n = {}, selectors: r = {} }) => D({
2107
2149
  name: e,
2108
2150
  initialState: t,
2109
2151
  reducers: {
@@ -2132,7 +2174,7 @@ var Gn = ({ name: e, initialState: t = { status: "idle" }, reducers: n = {}, sel
2132
2174
  });
2133
2175
  //#endregion
2134
2176
  //#region lib/lib/storage.utils.ts
2135
- function qn(e, t) {
2177
+ function Qn(e, t) {
2136
2178
  try {
2137
2179
  let n = localStorage.getItem(e);
2138
2180
  if (n) return typeof t == "string" ? n : JSON.parse(n);
@@ -2141,45 +2183,45 @@ function qn(e, t) {
2141
2183
  }
2142
2184
  return t;
2143
2185
  }
2144
- function Jn(e, t) {
2186
+ function $n(e, t) {
2145
2187
  try {
2146
2188
  localStorage.setItem(e, typeof t == "string" ? t : JSON.stringify(t));
2147
2189
  } catch (t) {
2148
2190
  console.warn(`Failed to store state for key "${e}":`, t);
2149
2191
  }
2150
2192
  }
2151
- function Yn(e) {
2193
+ function er(e) {
2152
2194
  try {
2153
2195
  localStorage.removeItem(e);
2154
2196
  } catch (t) {
2155
2197
  console.warn(`Failed to remove state for key "${e}":`, t);
2156
2198
  }
2157
2199
  }
2158
- var Xn = {
2159
- safeGetItem: qn,
2160
- safeSetItem: Jn,
2161
- safeRemoveItem: Yn
2162
- }, Zn = {
2200
+ var tr = {
2201
+ safeGetItem: Qn,
2202
+ safeSetItem: $n,
2203
+ safeRemoveItem: er
2204
+ }, nr = {
2163
2205
  isDirty: !1,
2164
2206
  step: 0,
2165
2207
  values: {}
2166
- }, Qn = ({ name: e, initialState: t, reducers: n = void 0, selectors: r = {} }) => {
2208
+ }, rr = ({ name: e, initialState: t, reducers: n = void 0, selectors: r = {} }) => {
2167
2209
  let i = () => ({
2168
- ...Zn,
2169
- values: t ?? Zn.values
2210
+ ...nr,
2211
+ values: t ?? nr.values
2170
2212
  });
2171
- return E({
2213
+ return D({
2172
2214
  name: e,
2173
2215
  initialState: i(),
2174
2216
  reducers: (t) => ({
2175
2217
  updateStep: t.reducer((t, n) => {
2176
- t.step = typeof n.payload == "function" ? n.payload(t.step) : n.payload, Jn(e, t);
2218
+ t.step = typeof n.payload == "function" ? n.payload(t.step) : n.payload, $n(e, t);
2177
2219
  }),
2178
2220
  updateFormValues: t.reducer((e, t) => {
2179
2221
  e.values = {
2180
2222
  ...e.values,
2181
2223
  ...typeof t.payload == "function" ? t.payload(e.values) : t.payload
2182
- }, e.isDirty = !Cn(e.values, Zn.values);
2224
+ }, e.isDirty = !Cn(e.values, nr.values);
2183
2225
  }),
2184
2226
  reset: t.reducer((e) => {
2185
2227
  Object.assign(e, i());
@@ -2191,12 +2233,12 @@ var Xn = {
2191
2233
  };
2192
2234
  //#endregion
2193
2235
  //#region node_modules/redux/dist/redux.mjs
2194
- function $n(e) {
2236
+ function ir(e) {
2195
2237
  return `Minified Redux error #${e}; visit https://redux.js.org/Errors?code=${e} for the full message or use the non-minified dev environment for full errors. `;
2196
2238
  }
2197
- var er = () => Math.random().toString(36).substring(7).split("").join(".");
2198
- `${/* @__PURE__ */ er()}`, `${/* @__PURE__ */ er()}`;
2199
- function tr(e) {
2239
+ var ar = () => Math.random().toString(36).substring(7).split("").join(".");
2240
+ `${/* @__PURE__ */ ar()}`, `${/* @__PURE__ */ ar()}`;
2241
+ function or(e) {
2200
2242
  if (e === void 0) return "undefined";
2201
2243
  if (e === null) return "null";
2202
2244
  let t = typeof e;
@@ -2208,9 +2250,9 @@ function tr(e) {
2208
2250
  case "function": return t;
2209
2251
  }
2210
2252
  if (Array.isArray(e)) return "array";
2211
- if (ir(e)) return "date";
2212
- if (rr(e)) return "error";
2213
- let n = nr(e);
2253
+ if (lr(e)) return "date";
2254
+ if (cr(e)) return "error";
2255
+ let n = sr(e);
2214
2256
  switch (n) {
2215
2257
  case "Symbol":
2216
2258
  case "Promise":
@@ -2221,51 +2263,51 @@ function tr(e) {
2221
2263
  }
2222
2264
  return Object.prototype.toString.call(e).slice(8, -1).toLowerCase().replace(/\s/g, "");
2223
2265
  }
2224
- function nr(e) {
2266
+ function sr(e) {
2225
2267
  return typeof e.constructor == "function" ? e.constructor.name : null;
2226
2268
  }
2227
- function rr(e) {
2269
+ function cr(e) {
2228
2270
  return e instanceof Error || typeof e.message == "string" && e.constructor && typeof e.constructor.stackTraceLimit == "number";
2229
2271
  }
2230
- function ir(e) {
2272
+ function lr(e) {
2231
2273
  return e instanceof Date || typeof e.toDateString == "function" && typeof e.getDate == "function" && typeof e.setDate == "function";
2232
2274
  }
2233
- function ar(e) {
2275
+ function ur(e) {
2234
2276
  let t = typeof e;
2235
- return process.env.NODE_ENV !== "production" && (t = tr(e)), t;
2277
+ return process.env.NODE_ENV !== "production" && (t = or(e)), t;
2236
2278
  }
2237
- function or(e, t) {
2279
+ function dr(e, t) {
2238
2280
  return function(...n) {
2239
2281
  return t(e.apply(this, n));
2240
2282
  };
2241
2283
  }
2242
- function sr(e, t) {
2243
- if (typeof e == "function") return or(e, t);
2244
- if (typeof e != "object" || !e) throw Error(process.env.NODE_ENV === "production" ? $n(16) : `bindActionCreators expected an object or a function, but instead received: '${ar(e)}'. Did you write "import ActionCreators from" instead of "import * as ActionCreators from"?`);
2284
+ function fr(e, t) {
2285
+ if (typeof e == "function") return dr(e, t);
2286
+ if (typeof e != "object" || !e) throw Error(process.env.NODE_ENV === "production" ? ir(16) : `bindActionCreators expected an object or a function, but instead received: '${ur(e)}'. Did you write "import ActionCreators from" instead of "import * as ActionCreators from"?`);
2245
2287
  let n = {};
2246
2288
  for (let r in e) {
2247
2289
  let i = e[r];
2248
- typeof i == "function" && (n[r] = or(i, t));
2290
+ typeof i == "function" && (n[r] = dr(i, t));
2249
2291
  }
2250
2292
  return n;
2251
2293
  }
2252
2294
  //#endregion
2253
2295
  //#region lib/lib/redux/use-actions.ts
2254
- function cr(e, t) {
2255
- let n = D();
2256
- return w(() => sr(e, n), t ? [n, ...t] : [n]);
2296
+ function pr(e, t) {
2297
+ let n = O();
2298
+ return T(() => fr(e, n), t ? [n, ...t] : [n]);
2257
2299
  }
2258
2300
  //#endregion
2259
2301
  //#region lib/lib/redux/use-slice-reducer.ts
2260
- function lr(e, t) {
2302
+ function mr(e, t) {
2261
2303
  return t ? {
2262
2304
  ...e,
2263
2305
  ...t
2264
2306
  } : e;
2265
2307
  }
2266
- function ur(e, t) {
2267
- let [n, r] = T(e.reducer, lr(e.getInitialState(), t));
2268
- return [n, w(() => {
2308
+ function hr(e, t) {
2309
+ let [n, r] = E(e.reducer, mr(e.getInitialState(), t));
2310
+ return [n, T(() => {
2269
2311
  let t = {};
2270
2312
  for (let n in e.actions) t[n] = (...t) => {
2271
2313
  r(e.actions[n](...t));
@@ -2275,23 +2317,14 @@ function ur(e, t) {
2275
2317
  }
2276
2318
  //#endregion
2277
2319
  //#region lib/lib/redux/use-slice-selector.ts
2278
- function dr(e, t) {
2279
- return w(() => t(e), [e, t]);
2320
+ function gr(e, t) {
2321
+ return T(() => t(e), [e, t]);
2280
2322
  }
2281
2323
  //#endregion
2282
- //#region lib/lib/string.utils.ts
2283
- function fr(e) {
2284
- return e ? e.toLowerCase().replace(/_/g, "-") : "";
2285
- }
2286
- function pr(e, t = ", ") {
2287
- return e.filter((e) => !!e).join(t);
2288
- }
2289
- var mr = {
2290
- enumToKebabCase: fr,
2291
- joinTruthyParts: pr
2292
- }, hr = { colorFromVariable(e, t = 1) {
2324
+ //#region lib/lib/styles.utils.ts
2325
+ var _r = { colorFromVariable(e, t = 1) {
2293
2326
  return `rgb(from var(--${e}) r g b / ${t})`;
2294
- } }, gr = (e, t) => typeof e == "function" ? e(t) : e, _r = (e, t = "files") => {
2327
+ } }, vr = (e, t) => typeof e == "function" ? e(t) : e, yr = (e, t = "files") => {
2295
2328
  let n = new FormData();
2296
2329
  return (p(e) ? e.filter(Boolean) : [e]).forEach((e) => {
2297
2330
  n.append(t, e, e.name);
@@ -2299,15 +2332,18 @@ var mr = {
2299
2332
  };
2300
2333
  //#endregion
2301
2334
  //#region lib/lib/url.utils.ts
2302
- function vr(e) {
2335
+ function br(e) {
2303
2336
  return new URL(e.url).searchParams;
2304
2337
  }
2305
- function yr(e, t) {
2306
- return vr(e).get(t);
2338
+ function xr(e, t) {
2339
+ return br(e).get(t);
2340
+ }
2341
+ function Sr(e) {
2342
+ return /^(https?:)?\/\//.test(e) || e.startsWith("mailto:");
2307
2343
  }
2308
2344
  //#endregion
2309
2345
  //#region lib/lib/zod-error-map.ts
2310
- var br = (e) => {
2346
+ var Cr = (e) => {
2311
2347
  let t = typeof e;
2312
2348
  switch (t) {
2313
2349
  case "number": return Number.isNaN(e) ? "NaN" : "number";
@@ -2317,12 +2353,12 @@ var br = (e) => {
2317
2353
  if (Object.getPrototypeOf(e) !== Object.prototype && e.constructor) return e.constructor.name;
2318
2354
  }
2319
2355
  return t;
2320
- }, xr = () => localStorage.getItem("language") === "fr" ? "fr" : "en", Sr = () => (e) => {
2321
- let t = xr(), n = y[t].material.zod.sizing[e.origin], r = y[t].material.zod.nouns;
2356
+ }, wr = () => localStorage.getItem("language") === "fr" ? "fr" : "en", Tr = () => (e) => {
2357
+ let t = wr(), n = y[t].material.zod.sizing[e.origin], r = y[t].material.zod.nouns;
2322
2358
  switch (e.code) {
2323
2359
  case "invalid_type": return h(e.input ? `material.zod.invalid_type.${e.expected}` : "material.zod.required", {
2324
2360
  expected: e.expected,
2325
- received: br(e.input)
2361
+ received: Cr(e.input)
2326
2362
  });
2327
2363
  case "invalid_value": return e.values.length === 1 ? h("material.zod.invalid_value_single", { value: e.values[0] }) : h("material.zod.invalid_value_multiple", { values: e.values.join(" | ") });
2328
2364
  case "too_big": {
@@ -2360,4 +2396,4 @@ var br = (e) => {
2360
2396
  }
2361
2397
  };
2362
2398
  //#endregion
2363
- export { In as A, On as B, Un as C, Vn as D, Bn as E, An as F, mt as G, Sn as H, En as I, ut as K, Dn as L, Nn as M, Fn as N, Rn as O, Mn as P, Tn as R, Wn as S, zn as T, Rt as U, wn as V, ht as W, qn as _, _r as a, Gn as b, mr as c, dr as d, lr as f, Xn as g, Qn as h, vr as i, Pn as j, Ln as k, fr as l, cr as m, Sr as n, gr as o, ur as p, k as q, yr as r, hr as s, br as t, pr as u, Yn as v, Hn as w, Kn as x, Jn as y, kn as z };
2399
+ export { Rn as A, En as B, Wn as C, Hn as D, Un as E, Mn as F, Sn as G, Tn as H, An as I, mt as J, Rt as K, Pn as L, Ln as M, Fn as N, Vn as O, jn as P, Nn as R, qn as S, Kn as T, On as U, Dn as V, wn as W, A as X, ut as Y, $n as _, br as a, Yn as b, _r as c, hr as d, pr as f, er as g, Qn as h, xr as i, Bn as j, zn as k, gr as l, tr as m, Tr as n, yr as o, rr as p, ht as q, Sr as r, vr as s, Cr as t, mr as u, Xn as v, Gn as w, Jn as x, Zn as y, kn as z };