next-ui-lib 0.1.11 → 0.1.13

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 (33) hide show
  1. package/dist/components/bgIcon/bgIcon.d.ts +10 -0
  2. package/dist/components/bgIcon/bgIcon.d.ts.map +1 -0
  3. package/dist/components/bgIcon/bgIcon.stories.d.ts +10 -0
  4. package/dist/components/bgIcon/bgIcon.stories.d.ts.map +1 -0
  5. package/dist/components/bgIcon/index.d.ts +2 -0
  6. package/dist/components/bgIcon/index.d.ts.map +1 -0
  7. package/dist/components/button/button.d.ts +2 -1
  8. package/dist/components/button/button.d.ts.map +1 -1
  9. package/dist/components/button/button.stories.d.ts +1 -1
  10. package/dist/components/button/button.stories.d.ts.map +1 -1
  11. package/dist/components/card/card.d.ts +15 -3
  12. package/dist/components/card/card.d.ts.map +1 -1
  13. package/dist/components/card/card.stories.d.ts +22 -9
  14. package/dist/components/card/card.stories.d.ts.map +1 -1
  15. package/dist/components/toggle/index.d.ts +2 -0
  16. package/dist/components/toggle/index.d.ts.map +1 -0
  17. package/dist/components/toggle/toggle.d.ts +7 -0
  18. package/dist/components/toggle/toggle.d.ts.map +1 -0
  19. package/dist/components/toggle/toggle.stories.d.ts +12 -0
  20. package/dist/components/toggle/toggle.stories.d.ts.map +1 -0
  21. package/dist/components/ui/card.d.ts +9 -0
  22. package/dist/components/ui/card.d.ts.map +1 -0
  23. package/dist/components/ui/toggle.d.ts +8 -0
  24. package/dist/components/ui/toggle.d.ts.map +1 -0
  25. package/dist/constants/colors.d.ts +34 -8
  26. package/dist/constants/colors.d.ts.map +1 -1
  27. package/dist/index.d.ts +1 -0
  28. package/dist/index.d.ts.map +1 -1
  29. package/dist/styles.css +1 -1
  30. package/dist/ui.cjs.js +7 -25
  31. package/dist/ui.es.js +2902 -623
  32. package/dist/ui.umd.js +7 -25
  33. package/package.json +1 -1
package/dist/ui.es.js CHANGED
@@ -1,654 +1,2933 @@
1
- import we from "react";
2
- var L = { exports: {} }, D = {};
3
- /**
4
- * @license React
5
- * react-jsx-runtime.production.min.js
6
- *
7
- * Copyright (c) Facebook, Inc. and its affiliates.
8
- *
9
- * This source code is licensed under the MIT license found in the
10
- * LICENSE file in the root directory of this source tree.
11
- */
12
- var _e;
13
- function ur() {
14
- if (_e) return D;
15
- _e = 1;
16
- var j = we, h = Symbol.for("react.element"), F = Symbol.for("react.fragment"), m = Object.prototype.hasOwnProperty, T = j.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, w = { key: !0, ref: !0, __self: !0, __source: !0 };
17
- function g(b, f, C) {
18
- var v, E = {}, _ = null, $ = null;
19
- C !== void 0 && (_ = "" + C), f.key !== void 0 && (_ = "" + f.key), f.ref !== void 0 && ($ = f.ref);
20
- for (v in f) m.call(f, v) && !w.hasOwnProperty(v) && (E[v] = f[v]);
21
- if (b && b.defaultProps) for (v in f = b.defaultProps, f) E[v] === void 0 && (E[v] = f[v]);
22
- return { $$typeof: h, type: b, key: _, ref: $, props: E, _owner: T.current };
1
+ import { jsx as x, jsxs as Y } from "react/jsx-runtime";
2
+ import * as $ from "react";
3
+ const Ce = {
4
+ lightBlue: {
5
+ primary: { text: "#FFFFFF", value: "#27a7e3", dark: "#1f8ecb" },
6
+ secondary: { text: "#1CB0F6", value: "#E0F3FF", dark: "#B3DFFC" }
7
+ },
8
+ amber: {
9
+ primary: { text: "#936E00", value: "#FFC107", dark: "#D39E00" },
10
+ secondary: { text: "#936E00", value: "#FFE082", dark: "#FFCA28" }
11
+ },
12
+ cyan: {
13
+ primary: { text: "#FFFFFF", value: "#00BCD4", dark: "#0097A7" },
14
+ secondary: { text: "#00BCD4", value: "#B2EBF2", dark: "#80DEEA" }
23
15
  }
24
- return D.Fragment = F, D.jsx = g, D.jsxs = g, D;
25
- }
26
- var A = {};
27
- /**
28
- * @license React
29
- * react-jsx-runtime.development.js
30
- *
31
- * Copyright (c) Facebook, Inc. and its affiliates.
32
- *
33
- * This source code is licensed under the MIT license found in the
34
- * LICENSE file in the root directory of this source tree.
35
- */
36
- var Re;
37
- function sr() {
38
- return Re || (Re = 1, process.env.NODE_ENV !== "production" && (function() {
39
- var j = we, h = Symbol.for("react.element"), F = Symbol.for("react.portal"), m = Symbol.for("react.fragment"), T = Symbol.for("react.strict_mode"), w = Symbol.for("react.profiler"), g = Symbol.for("react.provider"), b = Symbol.for("react.context"), f = Symbol.for("react.forward_ref"), C = Symbol.for("react.suspense"), v = Symbol.for("react.suspense_list"), E = Symbol.for("react.memo"), _ = Symbol.for("react.lazy"), $ = Symbol.for("react.offscreen"), K = Symbol.iterator, Ce = "@@iterator";
40
- function Oe(e) {
41
- if (e === null || typeof e != "object")
42
- return null;
43
- var r = K && e[K] || e[Ce];
44
- return typeof r == "function" ? r : null;
45
- }
46
- var O = j.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
47
- function d(e) {
48
- {
49
- for (var r = arguments.length, t = new Array(r > 1 ? r - 1 : 0), n = 1; n < r; n++)
50
- t[n - 1] = arguments[n];
51
- Se("error", e, t);
52
- }
53
- }
54
- function Se(e, r, t) {
55
- {
56
- var n = O.ReactDebugCurrentFrame, i = n.getStackAddendum();
57
- i !== "" && (r += "%s", t = t.concat([i]));
58
- var u = t.map(function(o) {
59
- return String(o);
60
- });
61
- u.unshift("Warning: " + r), Function.prototype.apply.call(console[e], console, u);
62
- }
63
- }
64
- var Pe = !1, je = !1, Fe = !1, ke = !1, De = !1, H;
65
- H = Symbol.for("react.module.reference");
66
- function Ae(e) {
67
- return !!(typeof e == "string" || typeof e == "function" || e === m || e === w || De || e === T || e === C || e === v || ke || e === $ || Pe || je || Fe || typeof e == "object" && e !== null && (e.$$typeof === _ || e.$$typeof === E || e.$$typeof === g || e.$$typeof === b || e.$$typeof === f || // This needs to include all possible module reference object
68
- // types supported by any Flight configuration anywhere since
69
- // we don't know which Flight build this will end up being used
70
- // with.
71
- e.$$typeof === H || e.getModuleId !== void 0));
72
- }
73
- function $e(e, r, t) {
74
- var n = e.displayName;
75
- if (n)
76
- return n;
77
- var i = r.displayName || r.name || "";
78
- return i !== "" ? t + "(" + i + ")" : t;
79
- }
80
- function X(e) {
81
- return e.displayName || "Context";
82
- }
83
- function R(e) {
84
- if (e == null)
85
- return null;
86
- if (typeof e.tag == "number" && d("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof e == "function")
87
- return e.displayName || e.name || null;
88
- if (typeof e == "string")
89
- return e;
90
- switch (e) {
91
- case m:
92
- return "Fragment";
93
- case F:
94
- return "Portal";
95
- case w:
96
- return "Profiler";
97
- case T:
98
- return "StrictMode";
99
- case C:
100
- return "Suspense";
101
- case v:
102
- return "SuspenseList";
103
- }
104
- if (typeof e == "object")
105
- switch (e.$$typeof) {
106
- case b:
107
- var r = e;
108
- return X(r) + ".Consumer";
109
- case g:
110
- var t = e;
111
- return X(t._context) + ".Provider";
112
- case f:
113
- return $e(e, e.render, "ForwardRef");
114
- case E:
115
- var n = e.displayName || null;
116
- return n !== null ? n : R(e.type) || "Memo";
117
- case _: {
118
- var i = e, u = i._payload, o = i._init;
119
- try {
120
- return R(o(u));
121
- } catch {
122
- return null;
123
- }
124
- }
125
- }
126
- return null;
127
- }
128
- var x = Object.assign, k = 0, Z, Q, ee, re, te, ne, ae;
129
- function oe() {
130
- }
131
- oe.__reactDisabledLog = !0;
132
- function Ie() {
133
- {
134
- if (k === 0) {
135
- Z = console.log, Q = console.info, ee = console.warn, re = console.error, te = console.group, ne = console.groupCollapsed, ae = console.groupEnd;
136
- var e = {
137
- configurable: !0,
138
- enumerable: !0,
139
- value: oe,
140
- writable: !0
141
- };
142
- Object.defineProperties(console, {
143
- info: e,
144
- log: e,
145
- warn: e,
146
- error: e,
147
- group: e,
148
- groupCollapsed: e,
149
- groupEnd: e
150
- });
151
- }
152
- k++;
153
- }
154
- }
155
- function Ye() {
156
- {
157
- if (k--, k === 0) {
158
- var e = {
159
- configurable: !0,
160
- enumerable: !0,
161
- writable: !0
162
- };
163
- Object.defineProperties(console, {
164
- log: x({}, e, {
165
- value: Z
166
- }),
167
- info: x({}, e, {
168
- value: Q
169
- }),
170
- warn: x({}, e, {
171
- value: ee
172
- }),
173
- error: x({}, e, {
174
- value: re
175
- }),
176
- group: x({}, e, {
177
- value: te
178
- }),
179
- groupCollapsed: x({}, e, {
180
- value: ne
181
- }),
182
- groupEnd: x({}, e, {
183
- value: ae
184
- })
185
- });
186
- }
187
- k < 0 && d("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
188
- }
189
- }
190
- var U = O.ReactCurrentDispatcher, V;
191
- function I(e, r, t) {
192
- {
193
- if (V === void 0)
194
- try {
195
- throw Error();
196
- } catch (i) {
197
- var n = i.stack.trim().match(/\n( *(at )?)/);
198
- V = n && n[1] || "";
199
- }
200
- return `
201
- ` + V + e;
202
- }
203
- }
204
- var B = !1, Y;
16
+ }, xe = ({
17
+ color: e = "lightBlue",
18
+ onClick: t,
19
+ label: r,
20
+ size: o = "medium",
21
+ variant: n = "primary",
22
+ customClass: c = ""
23
+ }) => {
24
+ const i = {
25
+ small: "px-2 py-1 text-xs rounded-lg",
26
+ medium: "px-3 py-1 text-base rounded-xl",
27
+ large: "px-8 py-3 text-2xl rounded-2xl",
28
+ full: "px-8 py-2 text-xl rounded-2xl w-full"
29
+ }, u = Ce[e];
30
+ return /* @__PURE__ */ x(
31
+ "button",
205
32
  {
206
- var We = typeof WeakMap == "function" ? WeakMap : Map;
207
- Y = new We();
208
- }
209
- function ie(e, r) {
210
- if (!e || B)
211
- return "";
212
- {
213
- var t = Y.get(e);
214
- if (t !== void 0)
215
- return t;
216
- }
217
- var n;
218
- B = !0;
219
- var i = Error.prepareStackTrace;
220
- Error.prepareStackTrace = void 0;
221
- var u;
222
- u = U.current, U.current = null, Ie();
223
- try {
224
- if (r) {
225
- var o = function() {
226
- throw Error();
227
- };
228
- if (Object.defineProperty(o.prototype, "props", {
229
- set: function() {
230
- throw Error();
231
- }
232
- }), typeof Reflect == "object" && Reflect.construct) {
233
- try {
234
- Reflect.construct(o, []);
235
- } catch (y) {
236
- n = y;
237
- }
238
- Reflect.construct(e, [], o);
239
- } else {
240
- try {
241
- o.call();
242
- } catch (y) {
243
- n = y;
244
- }
245
- e.call(o.prototype);
246
- }
247
- } else {
248
- try {
249
- throw Error();
250
- } catch (y) {
251
- n = y;
252
- }
253
- e();
254
- }
255
- } catch (y) {
256
- if (y && n && typeof y.stack == "string") {
257
- for (var a = y.stack.split(`
258
- `), c = n.stack.split(`
259
- `), s = a.length - 1, l = c.length - 1; s >= 1 && l >= 0 && a[s] !== c[l]; )
260
- l--;
261
- for (; s >= 1 && l >= 0; s--, l--)
262
- if (a[s] !== c[l]) {
263
- if (s !== 1 || l !== 1)
264
- do
265
- if (s--, l--, l < 0 || a[s] !== c[l]) {
266
- var p = `
267
- ` + a[s].replace(" at new ", " at ");
268
- return e.displayName && p.includes("<anonymous>") && (p = p.replace("<anonymous>", e.displayName)), typeof e == "function" && Y.set(e, p), p;
269
- }
270
- while (s >= 1 && l >= 0);
271
- break;
272
- }
273
- }
274
- } finally {
275
- B = !1, U.current = u, Ye(), Error.prepareStackTrace = i;
276
- }
277
- var P = e ? e.displayName || e.name : "", he = P ? I(P) : "";
278
- return typeof e == "function" && Y.set(e, he), he;
279
- }
280
- function Me(e, r, t) {
281
- return ie(e, !1);
282
- }
283
- function Ne(e) {
284
- var r = e.prototype;
285
- return !!(r && r.isReactComponent);
286
- }
287
- function W(e, r, t) {
288
- if (e == null)
289
- return "";
290
- if (typeof e == "function")
291
- return ie(e, Ne(e));
292
- if (typeof e == "string")
293
- return I(e);
294
- switch (e) {
295
- case C:
296
- return I("Suspense");
297
- case v:
298
- return I("SuspenseList");
299
- }
300
- if (typeof e == "object")
301
- switch (e.$$typeof) {
302
- case f:
303
- return Me(e.render);
304
- case E:
305
- return W(e.type, r, t);
306
- case _: {
307
- var n = e, i = n._payload, u = n._init;
308
- try {
309
- return W(u(i), r, t);
310
- } catch {
311
- }
312
- }
313
- }
314
- return "";
315
- }
316
- var M = Object.prototype.hasOwnProperty, ue = {}, se = O.ReactDebugCurrentFrame;
317
- function N(e) {
318
- if (e) {
319
- var r = e._owner, t = W(e.type, e._source, r ? r.type : null);
320
- se.setExtraStackFrame(t);
321
- } else
322
- se.setExtraStackFrame(null);
323
- }
324
- function Le(e, r, t, n, i) {
325
- {
326
- var u = Function.call.bind(M);
327
- for (var o in e)
328
- if (u(e, o)) {
329
- var a = void 0;
330
- try {
331
- if (typeof e[o] != "function") {
332
- var c = Error((n || "React class") + ": " + t + " type `" + o + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof e[o] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
333
- throw c.name = "Invariant Violation", c;
334
- }
335
- a = e[o](r, o, n, t, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
336
- } catch (s) {
337
- a = s;
338
- }
339
- a && !(a instanceof Error) && (N(i), d("%s: type specification of %s `%s` is invalid; the type checker function must return `null` or an `Error` but returned a %s. You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument).", n || "React class", t, o, typeof a), N(null)), a instanceof Error && !(a.message in ue) && (ue[a.message] = !0, N(i), d("Failed %s type: %s", t, a.message), N(null));
340
- }
341
- }
342
- }
343
- var Ue = Array.isArray;
344
- function q(e) {
345
- return Ue(e);
346
- }
347
- function Ve(e) {
348
- {
349
- var r = typeof Symbol == "function" && Symbol.toStringTag, t = r && e[Symbol.toStringTag] || e.constructor.name || "Object";
350
- return t;
351
- }
352
- }
353
- function Be(e) {
354
- try {
355
- return le(e), !1;
356
- } catch {
357
- return !0;
358
- }
359
- }
360
- function le(e) {
361
- return "" + e;
362
- }
363
- function fe(e) {
364
- if (Be(e))
365
- return d("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", Ve(e)), le(e);
366
- }
367
- var ce = O.ReactCurrentOwner, qe = {
368
- key: !0,
369
- ref: !0,
370
- __self: !0,
371
- __source: !0
372
- }, de, ve;
373
- function Je(e) {
374
- if (M.call(e, "ref")) {
375
- var r = Object.getOwnPropertyDescriptor(e, "ref").get;
376
- if (r && r.isReactWarning)
377
- return !1;
378
- }
379
- return e.ref !== void 0;
33
+ className: `relative flex items-center justify-center cursor-pointer transition duration-150 ease-in-out whitespace-nowrap active:translate-y-[4px] ${i[o]} ${c}`,
34
+ style: {
35
+ backgroundColor: n == "primary" ? u.primary.value : u.secondary.value,
36
+ boxShadow: `0 ${o === "large" ? "6px" : "4px"} 0 ${n == "primary" ? u.primary.dark : u.secondary.dark}`,
37
+ color: n == "primary" ? u.primary.text : u.secondary.text
38
+ },
39
+ onMouseDown: (m) => {
40
+ m.currentTarget.style.boxShadow = "none";
41
+ },
42
+ onMouseUp: (m) => {
43
+ m.currentTarget.style.boxShadow = `0 4px 0 ${n == "primary" ? u.primary.dark : u.secondary.dark}`;
44
+ },
45
+ onClick: t,
46
+ children: /* @__PURE__ */ x("span", { className: "font-bold", children: r })
380
47
  }
381
- function Ge(e) {
382
- if (M.call(e, "key")) {
383
- var r = Object.getOwnPropertyDescriptor(e, "key").get;
384
- if (r && r.isReactWarning)
385
- return !1;
386
- }
387
- return e.key !== void 0;
48
+ );
49
+ };
50
+ function ze(e) {
51
+ var t, r, o = "";
52
+ if (typeof e == "string" || typeof e == "number") o += e;
53
+ else if (typeof e == "object") if (Array.isArray(e)) {
54
+ var n = e.length;
55
+ for (t = 0; t < n; t++) e[t] && (r = ze(e[t])) && (o && (o += " "), o += r);
56
+ } else for (r in e) e[r] && (o && (o += " "), o += r);
57
+ return o;
58
+ }
59
+ function Oe() {
60
+ for (var e, t, r = 0, o = "", n = arguments.length; r < n; r++) (e = arguments[r]) && (t = ze(e)) && (o && (o += " "), o += t);
61
+ return o;
62
+ }
63
+ const ce = "-", _e = (e) => {
64
+ const t = De(e), {
65
+ conflictingClassGroups: r,
66
+ conflictingClassGroupModifiers: o
67
+ } = e;
68
+ return {
69
+ getClassGroupId: (i) => {
70
+ const u = i.split(ce);
71
+ return u[0] === "" && u.length !== 1 && u.shift(), Se(u, t) || We(i);
72
+ },
73
+ getConflictingClassGroupIds: (i, u) => {
74
+ const m = r[i] || [];
75
+ return u && o[i] ? [...m, ...o[i]] : m;
388
76
  }
389
- function ze(e, r) {
390
- typeof e.ref == "string" && ce.current;
77
+ };
78
+ }, Se = (e, t) => {
79
+ if (e.length === 0)
80
+ return t.classGroupId;
81
+ const r = e[0], o = t.nextPart.get(r), n = o ? Se(e.slice(1), o) : void 0;
82
+ if (n)
83
+ return n;
84
+ if (t.validators.length === 0)
85
+ return;
86
+ const c = e.join(ce);
87
+ return t.validators.find(({
88
+ validator: i
89
+ }) => i(c))?.classGroupId;
90
+ }, ye = /^\[(.+)\]$/, We = (e) => {
91
+ if (ye.test(e)) {
92
+ const t = ye.exec(e)[1], r = t?.substring(0, t.indexOf(":"));
93
+ if (r)
94
+ return "arbitrary.." + r;
95
+ }
96
+ }, De = (e) => {
97
+ const {
98
+ theme: t,
99
+ classGroups: r
100
+ } = e, o = {
101
+ nextPart: /* @__PURE__ */ new Map(),
102
+ validators: []
103
+ };
104
+ for (const n in r)
105
+ ne(r[n], o, n, t);
106
+ return o;
107
+ }, ne = (e, t, r, o) => {
108
+ e.forEach((n) => {
109
+ if (typeof n == "string") {
110
+ const c = n === "" ? t : we(t, n);
111
+ c.classGroupId = r;
112
+ return;
391
113
  }
392
- function Ke(e, r) {
393
- {
394
- var t = function() {
395
- de || (de = !0, d("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", r));
396
- };
397
- t.isReactWarning = !0, Object.defineProperty(e, "key", {
398
- get: t,
399
- configurable: !0
400
- });
114
+ if (typeof n == "function") {
115
+ if (Ue(n)) {
116
+ ne(n(o), t, r, o);
117
+ return;
401
118
  }
119
+ t.validators.push({
120
+ validator: n,
121
+ classGroupId: r
122
+ });
123
+ return;
402
124
  }
403
- function He(e, r) {
404
- {
405
- var t = function() {
406
- ve || (ve = !0, d("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", r));
407
- };
408
- t.isReactWarning = !0, Object.defineProperty(e, "ref", {
409
- get: t,
410
- configurable: !0
411
- });
125
+ Object.entries(n).forEach(([c, i]) => {
126
+ ne(i, we(t, c), r, o);
127
+ });
128
+ });
129
+ }, we = (e, t) => {
130
+ let r = e;
131
+ return t.split(ce).forEach((o) => {
132
+ r.nextPart.has(o) || r.nextPart.set(o, {
133
+ nextPart: /* @__PURE__ */ new Map(),
134
+ validators: []
135
+ }), r = r.nextPart.get(o);
136
+ }), r;
137
+ }, Ue = (e) => e.isThemeGetter, He = (e) => {
138
+ if (e < 1)
139
+ return {
140
+ get: () => {
141
+ },
142
+ set: () => {
412
143
  }
413
- }
414
- var Xe = function(e, r, t, n, i, u, o) {
415
- var a = {
416
- // This tag allows us to uniquely identify this as a React Element
417
- $$typeof: h,
418
- // Built-in properties that belong on the element
419
- type: e,
420
- key: r,
421
- ref: t,
422
- props: o,
423
- // Record the component responsible for creating this element.
424
- _owner: u
425
- };
426
- return a._store = {}, Object.defineProperty(a._store, "validated", {
427
- configurable: !1,
428
- enumerable: !1,
429
- writable: !0,
430
- value: !1
431
- }), Object.defineProperty(a, "_self", {
432
- configurable: !1,
433
- enumerable: !1,
434
- writable: !1,
435
- value: n
436
- }), Object.defineProperty(a, "_source", {
437
- configurable: !1,
438
- enumerable: !1,
439
- writable: !1,
440
- value: i
441
- }), Object.freeze && (Object.freeze(a.props), Object.freeze(a)), a;
442
144
  };
443
- function Ze(e, r, t, n, i) {
444
- {
445
- var u, o = {}, a = null, c = null;
446
- t !== void 0 && (fe(t), a = "" + t), Ge(r) && (fe(r.key), a = "" + r.key), Je(r) && (c = r.ref, ze(r, i));
447
- for (u in r)
448
- M.call(r, u) && !qe.hasOwnProperty(u) && (o[u] = r[u]);
449
- if (e && e.defaultProps) {
450
- var s = e.defaultProps;
451
- for (u in s)
452
- o[u] === void 0 && (o[u] = s[u]);
453
- }
454
- if (a || c) {
455
- var l = typeof e == "function" ? e.displayName || e.name || "Unknown" : e;
456
- a && Ke(o, l), c && He(o, l);
457
- }
458
- return Xe(e, a, c, i, n, ce.current, o);
459
- }
460
- }
461
- var J = O.ReactCurrentOwner, pe = O.ReactDebugCurrentFrame;
462
- function S(e) {
463
- if (e) {
464
- var r = e._owner, t = W(e.type, e._source, r ? r.type : null);
465
- pe.setExtraStackFrame(t);
466
- } else
467
- pe.setExtraStackFrame(null);
145
+ let t = 0, r = /* @__PURE__ */ new Map(), o = /* @__PURE__ */ new Map();
146
+ const n = (c, i) => {
147
+ r.set(c, i), t++, t > e && (t = 0, o = r, r = /* @__PURE__ */ new Map());
148
+ };
149
+ return {
150
+ get(c) {
151
+ let i = r.get(c);
152
+ if (i !== void 0)
153
+ return i;
154
+ if ((i = o.get(c)) !== void 0)
155
+ return n(c, i), i;
156
+ },
157
+ set(c, i) {
158
+ r.has(c) ? r.set(c, i) : n(c, i);
468
159
  }
469
- var G;
470
- G = !1;
471
- function z(e) {
472
- return typeof e == "object" && e !== null && e.$$typeof === h;
473
- }
474
- function be() {
475
- {
476
- if (J.current) {
477
- var e = R(J.current.type);
478
- if (e)
479
- return `
480
-
481
- Check the render method of \`` + e + "`.";
160
+ };
161
+ }, ie = "!", le = ":", qe = le.length, Je = (e) => {
162
+ const {
163
+ prefix: t,
164
+ experimentalParseClassName: r
165
+ } = e;
166
+ let o = (n) => {
167
+ const c = [];
168
+ let i = 0, u = 0, m = 0, g;
169
+ for (let k = 0; k < n.length; k++) {
170
+ let v = n[k];
171
+ if (i === 0 && u === 0) {
172
+ if (v === le) {
173
+ c.push(n.slice(m, k)), m = k + qe;
174
+ continue;
482
175
  }
483
- return "";
484
- }
485
- }
486
- function Qe(e) {
487
- return "";
488
- }
489
- var ge = {};
490
- function er(e) {
491
- {
492
- var r = be();
493
- if (!r) {
494
- var t = typeof e == "string" ? e : e.displayName || e.name;
495
- t && (r = `
496
-
497
- Check the top-level render call using <` + t + ">.");
176
+ if (v === "/") {
177
+ g = k;
178
+ continue;
498
179
  }
499
- return r;
500
180
  }
181
+ v === "[" ? i++ : v === "]" ? i-- : v === "(" ? u++ : v === ")" && u--;
501
182
  }
502
- function me(e, r) {
503
- {
504
- if (!e._store || e._store.validated || e.key != null)
505
- return;
506
- e._store.validated = !0;
507
- var t = er(r);
508
- if (ge[t])
509
- return;
510
- ge[t] = !0;
511
- var n = "";
512
- e && e._owner && e._owner !== J.current && (n = " It was passed a child from " + R(e._owner.type) + "."), S(e), d('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', t, n), S(null);
513
- }
514
- }
515
- function Ee(e, r) {
516
- {
517
- if (typeof e != "object")
518
- return;
519
- if (q(e))
520
- for (var t = 0; t < e.length; t++) {
521
- var n = e[t];
522
- z(n) && me(n, r);
523
- }
524
- else if (z(e))
525
- e._store && (e._store.validated = !0);
526
- else if (e) {
527
- var i = Oe(e);
528
- if (typeof i == "function" && i !== e.entries)
529
- for (var u = i.call(e), o; !(o = u.next()).done; )
530
- z(o.value) && me(o.value, r);
531
- }
532
- }
533
- }
534
- function rr(e) {
535
- {
536
- var r = e.type;
537
- if (r == null || typeof r == "string")
538
- return;
539
- var t;
540
- if (typeof r == "function")
541
- t = r.propTypes;
542
- else if (typeof r == "object" && (r.$$typeof === f || // Note: Memo only checks outer props here.
543
- // Inner props are checked in the reconciler.
544
- r.$$typeof === E))
545
- t = r.propTypes;
546
- else
547
- return;
548
- if (t) {
549
- var n = R(r);
550
- Le(t, e.props, "prop", n, e);
551
- } else if (r.PropTypes !== void 0 && !G) {
552
- G = !0;
553
- var i = R(r);
554
- d("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", i || "Unknown");
555
- }
556
- typeof r.getDefaultProps == "function" && !r.getDefaultProps.isReactClassApproved && d("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
557
- }
183
+ const b = c.length === 0 ? n : n.substring(m), C = Xe(b), A = C !== b, _ = g && g > m ? g - m : void 0;
184
+ return {
185
+ modifiers: c,
186
+ hasImportantModifier: A,
187
+ baseClassName: C,
188
+ maybePostfixModifierPosition: _
189
+ };
190
+ };
191
+ if (t) {
192
+ const n = t + le, c = o;
193
+ o = (i) => i.startsWith(n) ? c(i.substring(n.length)) : {
194
+ isExternal: !0,
195
+ modifiers: [],
196
+ hasImportantModifier: !1,
197
+ baseClassName: i,
198
+ maybePostfixModifierPosition: void 0
199
+ };
200
+ }
201
+ if (r) {
202
+ const n = o;
203
+ o = (c) => r({
204
+ className: c,
205
+ parseClassName: n
206
+ });
207
+ }
208
+ return o;
209
+ }, Xe = (e) => e.endsWith(ie) ? e.substring(0, e.length - 1) : e.startsWith(ie) ? e.substring(1) : e, Ke = (e) => {
210
+ const t = Object.fromEntries(e.orderSensitiveModifiers.map((o) => [o, !0]));
211
+ return (o) => {
212
+ if (o.length <= 1)
213
+ return o;
214
+ const n = [];
215
+ let c = [];
216
+ return o.forEach((i) => {
217
+ i[0] === "[" || t[i] ? (n.push(...c.sort(), i), c = []) : c.push(i);
218
+ }), n.push(...c.sort()), n;
219
+ };
220
+ }, Qe = (e) => ({
221
+ cache: He(e.cacheSize),
222
+ parseClassName: Je(e),
223
+ sortModifiers: Ke(e),
224
+ ..._e(e)
225
+ }), Ye = /\s+/, Ze = (e, t) => {
226
+ const {
227
+ parseClassName: r,
228
+ getClassGroupId: o,
229
+ getConflictingClassGroupIds: n,
230
+ sortModifiers: c
231
+ } = t, i = [], u = e.trim().split(Ye);
232
+ let m = "";
233
+ for (let g = u.length - 1; g >= 0; g -= 1) {
234
+ const b = u[g], {
235
+ isExternal: C,
236
+ modifiers: A,
237
+ hasImportantModifier: _,
238
+ baseClassName: k,
239
+ maybePostfixModifierPosition: v
240
+ } = r(b);
241
+ if (C) {
242
+ m = b + (m.length > 0 ? " " + m : m);
243
+ continue;
558
244
  }
559
- function tr(e) {
560
- {
561
- for (var r = Object.keys(e.props), t = 0; t < r.length; t++) {
562
- var n = r[t];
563
- if (n !== "children" && n !== "key") {
564
- S(e), d("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", n), S(null);
565
- break;
566
- }
567
- }
568
- e.ref !== null && (S(e), d("Invalid attribute `ref` supplied to `React.Fragment`."), S(null));
245
+ let G = !!v, R = o(G ? k.substring(0, v) : k);
246
+ if (!R) {
247
+ if (!G) {
248
+ m = b + (m.length > 0 ? " " + m : m);
249
+ continue;
569
250
  }
570
- }
571
- function ye(e, r, t, n, i, u) {
572
- {
573
- var o = Ae(e);
574
- if (!o) {
575
- var a = "";
576
- (e === void 0 || typeof e == "object" && e !== null && Object.keys(e).length === 0) && (a += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");
577
- var c = Qe();
578
- c ? a += c : a += be();
579
- var s;
580
- e === null ? s = "null" : q(e) ? s = "array" : e !== void 0 && e.$$typeof === h ? (s = "<" + (R(e.type) || "Unknown") + " />", a = " Did you accidentally export a JSX literal instead of a component?") : s = typeof e, d("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", s, a);
581
- }
582
- var l = Ze(e, r, t, i, u);
583
- if (l == null)
584
- return l;
585
- if (o) {
586
- var p = r.children;
587
- if (p !== void 0)
588
- if (n)
589
- if (q(p)) {
590
- for (var P = 0; P < p.length; P++)
591
- Ee(p[P], e);
592
- Object.freeze && Object.freeze(p);
593
- } else
594
- d("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
595
- else
596
- Ee(p, e);
597
- }
598
- return e === m ? tr(l) : rr(l), l;
251
+ if (R = o(k), !R) {
252
+ m = b + (m.length > 0 ? " " + m : m);
253
+ continue;
599
254
  }
255
+ G = !1;
600
256
  }
601
- function nr(e, r, t) {
602
- return ye(e, r, t, !0);
257
+ const H = c(A).join(":"), W = _ ? H + ie : H, E = W + R;
258
+ if (i.includes(E))
259
+ continue;
260
+ i.push(E);
261
+ const T = n(R, G);
262
+ for (let F = 0; F < T.length; ++F) {
263
+ const D = T[F];
264
+ i.push(W + D);
603
265
  }
604
- function ar(e, r, t) {
605
- return ye(e, r, t, !1);
606
- }
607
- var or = ar, ir = nr;
608
- A.Fragment = m, A.jsx = or, A.jsxs = ir;
609
- })()), A;
266
+ m = b + (m.length > 0 ? " " + m : m);
267
+ }
268
+ return m;
269
+ };
270
+ function er() {
271
+ let e = 0, t, r, o = "";
272
+ for (; e < arguments.length; )
273
+ (t = arguments[e++]) && (r = Me(t)) && (o && (o += " "), o += r);
274
+ return o;
275
+ }
276
+ const Me = (e) => {
277
+ if (typeof e == "string")
278
+ return e;
279
+ let t, r = "";
280
+ for (let o = 0; o < e.length; o++)
281
+ e[o] && (t = Me(e[o])) && (r && (r += " "), r += t);
282
+ return r;
283
+ };
284
+ function rr(e, ...t) {
285
+ let r, o, n, c = i;
286
+ function i(m) {
287
+ const g = t.reduce((b, C) => C(b), e());
288
+ return r = Qe(g), o = r.cache.get, n = r.cache.set, c = u, u(m);
289
+ }
290
+ function u(m) {
291
+ const g = o(m);
292
+ if (g)
293
+ return g;
294
+ const b = Ze(m, r);
295
+ return n(m, b), b;
296
+ }
297
+ return function() {
298
+ return c(er.apply(null, arguments));
299
+ };
610
300
  }
611
- var xe;
612
- function lr() {
613
- return xe || (xe = 1, process.env.NODE_ENV === "production" ? L.exports = ur() : L.exports = sr()), L.exports;
301
+ const f = (e) => {
302
+ const t = (r) => r[e] || [];
303
+ return t.isThemeGetter = !0, t;
304
+ }, Ae = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, Ne = /^\((?:(\w[\w-]*):)?(.+)\)$/i, or = /^\d+\/\d+$/, tr = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, sr = /\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$/, ar = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/, nr = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, ir = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, j = (e) => or.test(e), p = (e) => !!e && !Number.isNaN(Number(e)), N = (e) => !!e && Number.isInteger(Number(e)), se = (e) => e.endsWith("%") && p(e.slice(0, -1)), M = (e) => tr.test(e), lr = () => !0, cr = (e) => (
305
+ // `colorFunctionRegex` check is necessary because color functions can have percentages in them which which would be incorrectly classified as lengths.
306
+ // For example, `hsl(0 0% 0%)` would be classified as a length without this check.
307
+ // I could also use lookbehind assertion in `lengthUnitRegex` but that isn't supported widely enough.
308
+ sr.test(e) && !ar.test(e)
309
+ ), Re = () => !1, dr = (e) => nr.test(e), mr = (e) => ir.test(e), pr = (e) => !s(e) && !a(e), ur = (e) => L(e, Pe, Re), s = (e) => Ae.test(e), P = (e) => L(e, Ge, cr), ae = (e) => L(e, xr, p), ke = (e) => L(e, Fe, Re), fr = (e) => L(e, Ie, mr), Z = (e) => L(e, Ee, dr), a = (e) => Ne.test(e), U = (e) => V(e, Ge), gr = (e) => V(e, yr), ve = (e) => V(e, Fe), br = (e) => V(e, Pe), hr = (e) => V(e, Ie), ee = (e) => V(e, Ee, !0), L = (e, t, r) => {
310
+ const o = Ae.exec(e);
311
+ return o ? o[1] ? t(o[1]) : r(o[2]) : !1;
312
+ }, V = (e, t, r = !1) => {
313
+ const o = Ne.exec(e);
314
+ return o ? o[1] ? t(o[1]) : r : !1;
315
+ }, Fe = (e) => e === "position" || e === "percentage", Ie = (e) => e === "image" || e === "url", Pe = (e) => e === "length" || e === "size" || e === "bg-size", Ge = (e) => e === "length", xr = (e) => e === "number", yr = (e) => e === "family-name", Ee = (e) => e === "shadow", wr = () => {
316
+ const e = f("color"), t = f("font"), r = f("text"), o = f("font-weight"), n = f("tracking"), c = f("leading"), i = f("breakpoint"), u = f("container"), m = f("spacing"), g = f("radius"), b = f("shadow"), C = f("inset-shadow"), A = f("text-shadow"), _ = f("drop-shadow"), k = f("blur"), v = f("perspective"), G = f("aspect"), R = f("ease"), H = f("animate"), W = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"], E = () => [
317
+ "center",
318
+ "top",
319
+ "bottom",
320
+ "left",
321
+ "right",
322
+ "top-left",
323
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
324
+ "left-top",
325
+ "top-right",
326
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
327
+ "right-top",
328
+ "bottom-right",
329
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
330
+ "right-bottom",
331
+ "bottom-left",
332
+ // Deprecated since Tailwind CSS v4.1.0, see https://github.com/tailwindlabs/tailwindcss/pull/17378
333
+ "left-bottom"
334
+ ], T = () => [...E(), a, s], F = () => ["auto", "hidden", "clip", "visible", "scroll"], D = () => ["auto", "contain", "none"], d = () => [a, s, m], z = () => [j, "full", "auto", ...d()], de = () => [N, "none", "subgrid", a, s], me = () => ["auto", {
335
+ span: ["full", N, a, s]
336
+ }, N, a, s], q = () => [N, "auto", a, s], pe = () => ["auto", "min", "max", "fr", a, s], re = () => ["start", "end", "center", "between", "around", "evenly", "stretch", "baseline", "center-safe", "end-safe"], B = () => ["start", "end", "center", "stretch", "center-safe", "end-safe"], S = () => ["auto", ...d()], I = () => [j, "auto", "full", "dvw", "dvh", "lvw", "lvh", "svw", "svh", "min", "max", "fit", ...d()], l = () => [e, a, s], ue = () => [...E(), ve, ke, {
337
+ position: [a, s]
338
+ }], fe = () => ["no-repeat", {
339
+ repeat: ["", "x", "y", "space", "round"]
340
+ }], ge = () => ["auto", "cover", "contain", br, ur, {
341
+ size: [a, s]
342
+ }], oe = () => [se, U, P], y = () => [
343
+ // Deprecated since Tailwind CSS v4.0.0
344
+ "",
345
+ "none",
346
+ "full",
347
+ g,
348
+ a,
349
+ s
350
+ ], w = () => ["", p, U, P], J = () => ["solid", "dashed", "dotted", "double"], be = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity"], h = () => [p, se, ve, ke], he = () => [
351
+ // Deprecated since Tailwind CSS v4.0.0
352
+ "",
353
+ "none",
354
+ k,
355
+ a,
356
+ s
357
+ ], X = () => ["none", p, a, s], K = () => ["none", p, a, s], te = () => [p, a, s], Q = () => [j, "full", ...d()];
358
+ return {
359
+ cacheSize: 500,
360
+ theme: {
361
+ animate: ["spin", "ping", "pulse", "bounce"],
362
+ aspect: ["video"],
363
+ blur: [M],
364
+ breakpoint: [M],
365
+ color: [lr],
366
+ container: [M],
367
+ "drop-shadow": [M],
368
+ ease: ["in", "out", "in-out"],
369
+ font: [pr],
370
+ "font-weight": ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black"],
371
+ "inset-shadow": [M],
372
+ leading: ["none", "tight", "snug", "normal", "relaxed", "loose"],
373
+ perspective: ["dramatic", "near", "normal", "midrange", "distant", "none"],
374
+ radius: [M],
375
+ shadow: [M],
376
+ spacing: ["px", p],
377
+ text: [M],
378
+ "text-shadow": [M],
379
+ tracking: ["tighter", "tight", "normal", "wide", "wider", "widest"]
380
+ },
381
+ classGroups: {
382
+ // --------------
383
+ // --- Layout ---
384
+ // --------------
385
+ /**
386
+ * Aspect Ratio
387
+ * @see https://tailwindcss.com/docs/aspect-ratio
388
+ */
389
+ aspect: [{
390
+ aspect: ["auto", "square", j, s, a, G]
391
+ }],
392
+ /**
393
+ * Container
394
+ * @see https://tailwindcss.com/docs/container
395
+ * @deprecated since Tailwind CSS v4.0.0
396
+ */
397
+ container: ["container"],
398
+ /**
399
+ * Columns
400
+ * @see https://tailwindcss.com/docs/columns
401
+ */
402
+ columns: [{
403
+ columns: [p, s, a, u]
404
+ }],
405
+ /**
406
+ * Break After
407
+ * @see https://tailwindcss.com/docs/break-after
408
+ */
409
+ "break-after": [{
410
+ "break-after": W()
411
+ }],
412
+ /**
413
+ * Break Before
414
+ * @see https://tailwindcss.com/docs/break-before
415
+ */
416
+ "break-before": [{
417
+ "break-before": W()
418
+ }],
419
+ /**
420
+ * Break Inside
421
+ * @see https://tailwindcss.com/docs/break-inside
422
+ */
423
+ "break-inside": [{
424
+ "break-inside": ["auto", "avoid", "avoid-page", "avoid-column"]
425
+ }],
426
+ /**
427
+ * Box Decoration Break
428
+ * @see https://tailwindcss.com/docs/box-decoration-break
429
+ */
430
+ "box-decoration": [{
431
+ "box-decoration": ["slice", "clone"]
432
+ }],
433
+ /**
434
+ * Box Sizing
435
+ * @see https://tailwindcss.com/docs/box-sizing
436
+ */
437
+ box: [{
438
+ box: ["border", "content"]
439
+ }],
440
+ /**
441
+ * Display
442
+ * @see https://tailwindcss.com/docs/display
443
+ */
444
+ display: ["block", "inline-block", "inline", "flex", "inline-flex", "table", "inline-table", "table-caption", "table-cell", "table-column", "table-column-group", "table-footer-group", "table-header-group", "table-row-group", "table-row", "flow-root", "grid", "inline-grid", "contents", "list-item", "hidden"],
445
+ /**
446
+ * Screen Reader Only
447
+ * @see https://tailwindcss.com/docs/display#screen-reader-only
448
+ */
449
+ sr: ["sr-only", "not-sr-only"],
450
+ /**
451
+ * Floats
452
+ * @see https://tailwindcss.com/docs/float
453
+ */
454
+ float: [{
455
+ float: ["right", "left", "none", "start", "end"]
456
+ }],
457
+ /**
458
+ * Clear
459
+ * @see https://tailwindcss.com/docs/clear
460
+ */
461
+ clear: [{
462
+ clear: ["left", "right", "both", "none", "start", "end"]
463
+ }],
464
+ /**
465
+ * Isolation
466
+ * @see https://tailwindcss.com/docs/isolation
467
+ */
468
+ isolation: ["isolate", "isolation-auto"],
469
+ /**
470
+ * Object Fit
471
+ * @see https://tailwindcss.com/docs/object-fit
472
+ */
473
+ "object-fit": [{
474
+ object: ["contain", "cover", "fill", "none", "scale-down"]
475
+ }],
476
+ /**
477
+ * Object Position
478
+ * @see https://tailwindcss.com/docs/object-position
479
+ */
480
+ "object-position": [{
481
+ object: T()
482
+ }],
483
+ /**
484
+ * Overflow
485
+ * @see https://tailwindcss.com/docs/overflow
486
+ */
487
+ overflow: [{
488
+ overflow: F()
489
+ }],
490
+ /**
491
+ * Overflow X
492
+ * @see https://tailwindcss.com/docs/overflow
493
+ */
494
+ "overflow-x": [{
495
+ "overflow-x": F()
496
+ }],
497
+ /**
498
+ * Overflow Y
499
+ * @see https://tailwindcss.com/docs/overflow
500
+ */
501
+ "overflow-y": [{
502
+ "overflow-y": F()
503
+ }],
504
+ /**
505
+ * Overscroll Behavior
506
+ * @see https://tailwindcss.com/docs/overscroll-behavior
507
+ */
508
+ overscroll: [{
509
+ overscroll: D()
510
+ }],
511
+ /**
512
+ * Overscroll Behavior X
513
+ * @see https://tailwindcss.com/docs/overscroll-behavior
514
+ */
515
+ "overscroll-x": [{
516
+ "overscroll-x": D()
517
+ }],
518
+ /**
519
+ * Overscroll Behavior Y
520
+ * @see https://tailwindcss.com/docs/overscroll-behavior
521
+ */
522
+ "overscroll-y": [{
523
+ "overscroll-y": D()
524
+ }],
525
+ /**
526
+ * Position
527
+ * @see https://tailwindcss.com/docs/position
528
+ */
529
+ position: ["static", "fixed", "absolute", "relative", "sticky"],
530
+ /**
531
+ * Top / Right / Bottom / Left
532
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
533
+ */
534
+ inset: [{
535
+ inset: z()
536
+ }],
537
+ /**
538
+ * Right / Left
539
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
540
+ */
541
+ "inset-x": [{
542
+ "inset-x": z()
543
+ }],
544
+ /**
545
+ * Top / Bottom
546
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
547
+ */
548
+ "inset-y": [{
549
+ "inset-y": z()
550
+ }],
551
+ /**
552
+ * Start
553
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
554
+ */
555
+ start: [{
556
+ start: z()
557
+ }],
558
+ /**
559
+ * End
560
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
561
+ */
562
+ end: [{
563
+ end: z()
564
+ }],
565
+ /**
566
+ * Top
567
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
568
+ */
569
+ top: [{
570
+ top: z()
571
+ }],
572
+ /**
573
+ * Right
574
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
575
+ */
576
+ right: [{
577
+ right: z()
578
+ }],
579
+ /**
580
+ * Bottom
581
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
582
+ */
583
+ bottom: [{
584
+ bottom: z()
585
+ }],
586
+ /**
587
+ * Left
588
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
589
+ */
590
+ left: [{
591
+ left: z()
592
+ }],
593
+ /**
594
+ * Visibility
595
+ * @see https://tailwindcss.com/docs/visibility
596
+ */
597
+ visibility: ["visible", "invisible", "collapse"],
598
+ /**
599
+ * Z-Index
600
+ * @see https://tailwindcss.com/docs/z-index
601
+ */
602
+ z: [{
603
+ z: [N, "auto", a, s]
604
+ }],
605
+ // ------------------------
606
+ // --- Flexbox and Grid ---
607
+ // ------------------------
608
+ /**
609
+ * Flex Basis
610
+ * @see https://tailwindcss.com/docs/flex-basis
611
+ */
612
+ basis: [{
613
+ basis: [j, "full", "auto", u, ...d()]
614
+ }],
615
+ /**
616
+ * Flex Direction
617
+ * @see https://tailwindcss.com/docs/flex-direction
618
+ */
619
+ "flex-direction": [{
620
+ flex: ["row", "row-reverse", "col", "col-reverse"]
621
+ }],
622
+ /**
623
+ * Flex Wrap
624
+ * @see https://tailwindcss.com/docs/flex-wrap
625
+ */
626
+ "flex-wrap": [{
627
+ flex: ["nowrap", "wrap", "wrap-reverse"]
628
+ }],
629
+ /**
630
+ * Flex
631
+ * @see https://tailwindcss.com/docs/flex
632
+ */
633
+ flex: [{
634
+ flex: [p, j, "auto", "initial", "none", s]
635
+ }],
636
+ /**
637
+ * Flex Grow
638
+ * @see https://tailwindcss.com/docs/flex-grow
639
+ */
640
+ grow: [{
641
+ grow: ["", p, a, s]
642
+ }],
643
+ /**
644
+ * Flex Shrink
645
+ * @see https://tailwindcss.com/docs/flex-shrink
646
+ */
647
+ shrink: [{
648
+ shrink: ["", p, a, s]
649
+ }],
650
+ /**
651
+ * Order
652
+ * @see https://tailwindcss.com/docs/order
653
+ */
654
+ order: [{
655
+ order: [N, "first", "last", "none", a, s]
656
+ }],
657
+ /**
658
+ * Grid Template Columns
659
+ * @see https://tailwindcss.com/docs/grid-template-columns
660
+ */
661
+ "grid-cols": [{
662
+ "grid-cols": de()
663
+ }],
664
+ /**
665
+ * Grid Column Start / End
666
+ * @see https://tailwindcss.com/docs/grid-column
667
+ */
668
+ "col-start-end": [{
669
+ col: me()
670
+ }],
671
+ /**
672
+ * Grid Column Start
673
+ * @see https://tailwindcss.com/docs/grid-column
674
+ */
675
+ "col-start": [{
676
+ "col-start": q()
677
+ }],
678
+ /**
679
+ * Grid Column End
680
+ * @see https://tailwindcss.com/docs/grid-column
681
+ */
682
+ "col-end": [{
683
+ "col-end": q()
684
+ }],
685
+ /**
686
+ * Grid Template Rows
687
+ * @see https://tailwindcss.com/docs/grid-template-rows
688
+ */
689
+ "grid-rows": [{
690
+ "grid-rows": de()
691
+ }],
692
+ /**
693
+ * Grid Row Start / End
694
+ * @see https://tailwindcss.com/docs/grid-row
695
+ */
696
+ "row-start-end": [{
697
+ row: me()
698
+ }],
699
+ /**
700
+ * Grid Row Start
701
+ * @see https://tailwindcss.com/docs/grid-row
702
+ */
703
+ "row-start": [{
704
+ "row-start": q()
705
+ }],
706
+ /**
707
+ * Grid Row End
708
+ * @see https://tailwindcss.com/docs/grid-row
709
+ */
710
+ "row-end": [{
711
+ "row-end": q()
712
+ }],
713
+ /**
714
+ * Grid Auto Flow
715
+ * @see https://tailwindcss.com/docs/grid-auto-flow
716
+ */
717
+ "grid-flow": [{
718
+ "grid-flow": ["row", "col", "dense", "row-dense", "col-dense"]
719
+ }],
720
+ /**
721
+ * Grid Auto Columns
722
+ * @see https://tailwindcss.com/docs/grid-auto-columns
723
+ */
724
+ "auto-cols": [{
725
+ "auto-cols": pe()
726
+ }],
727
+ /**
728
+ * Grid Auto Rows
729
+ * @see https://tailwindcss.com/docs/grid-auto-rows
730
+ */
731
+ "auto-rows": [{
732
+ "auto-rows": pe()
733
+ }],
734
+ /**
735
+ * Gap
736
+ * @see https://tailwindcss.com/docs/gap
737
+ */
738
+ gap: [{
739
+ gap: d()
740
+ }],
741
+ /**
742
+ * Gap X
743
+ * @see https://tailwindcss.com/docs/gap
744
+ */
745
+ "gap-x": [{
746
+ "gap-x": d()
747
+ }],
748
+ /**
749
+ * Gap Y
750
+ * @see https://tailwindcss.com/docs/gap
751
+ */
752
+ "gap-y": [{
753
+ "gap-y": d()
754
+ }],
755
+ /**
756
+ * Justify Content
757
+ * @see https://tailwindcss.com/docs/justify-content
758
+ */
759
+ "justify-content": [{
760
+ justify: [...re(), "normal"]
761
+ }],
762
+ /**
763
+ * Justify Items
764
+ * @see https://tailwindcss.com/docs/justify-items
765
+ */
766
+ "justify-items": [{
767
+ "justify-items": [...B(), "normal"]
768
+ }],
769
+ /**
770
+ * Justify Self
771
+ * @see https://tailwindcss.com/docs/justify-self
772
+ */
773
+ "justify-self": [{
774
+ "justify-self": ["auto", ...B()]
775
+ }],
776
+ /**
777
+ * Align Content
778
+ * @see https://tailwindcss.com/docs/align-content
779
+ */
780
+ "align-content": [{
781
+ content: ["normal", ...re()]
782
+ }],
783
+ /**
784
+ * Align Items
785
+ * @see https://tailwindcss.com/docs/align-items
786
+ */
787
+ "align-items": [{
788
+ items: [...B(), {
789
+ baseline: ["", "last"]
790
+ }]
791
+ }],
792
+ /**
793
+ * Align Self
794
+ * @see https://tailwindcss.com/docs/align-self
795
+ */
796
+ "align-self": [{
797
+ self: ["auto", ...B(), {
798
+ baseline: ["", "last"]
799
+ }]
800
+ }],
801
+ /**
802
+ * Place Content
803
+ * @see https://tailwindcss.com/docs/place-content
804
+ */
805
+ "place-content": [{
806
+ "place-content": re()
807
+ }],
808
+ /**
809
+ * Place Items
810
+ * @see https://tailwindcss.com/docs/place-items
811
+ */
812
+ "place-items": [{
813
+ "place-items": [...B(), "baseline"]
814
+ }],
815
+ /**
816
+ * Place Self
817
+ * @see https://tailwindcss.com/docs/place-self
818
+ */
819
+ "place-self": [{
820
+ "place-self": ["auto", ...B()]
821
+ }],
822
+ // Spacing
823
+ /**
824
+ * Padding
825
+ * @see https://tailwindcss.com/docs/padding
826
+ */
827
+ p: [{
828
+ p: d()
829
+ }],
830
+ /**
831
+ * Padding X
832
+ * @see https://tailwindcss.com/docs/padding
833
+ */
834
+ px: [{
835
+ px: d()
836
+ }],
837
+ /**
838
+ * Padding Y
839
+ * @see https://tailwindcss.com/docs/padding
840
+ */
841
+ py: [{
842
+ py: d()
843
+ }],
844
+ /**
845
+ * Padding Start
846
+ * @see https://tailwindcss.com/docs/padding
847
+ */
848
+ ps: [{
849
+ ps: d()
850
+ }],
851
+ /**
852
+ * Padding End
853
+ * @see https://tailwindcss.com/docs/padding
854
+ */
855
+ pe: [{
856
+ pe: d()
857
+ }],
858
+ /**
859
+ * Padding Top
860
+ * @see https://tailwindcss.com/docs/padding
861
+ */
862
+ pt: [{
863
+ pt: d()
864
+ }],
865
+ /**
866
+ * Padding Right
867
+ * @see https://tailwindcss.com/docs/padding
868
+ */
869
+ pr: [{
870
+ pr: d()
871
+ }],
872
+ /**
873
+ * Padding Bottom
874
+ * @see https://tailwindcss.com/docs/padding
875
+ */
876
+ pb: [{
877
+ pb: d()
878
+ }],
879
+ /**
880
+ * Padding Left
881
+ * @see https://tailwindcss.com/docs/padding
882
+ */
883
+ pl: [{
884
+ pl: d()
885
+ }],
886
+ /**
887
+ * Margin
888
+ * @see https://tailwindcss.com/docs/margin
889
+ */
890
+ m: [{
891
+ m: S()
892
+ }],
893
+ /**
894
+ * Margin X
895
+ * @see https://tailwindcss.com/docs/margin
896
+ */
897
+ mx: [{
898
+ mx: S()
899
+ }],
900
+ /**
901
+ * Margin Y
902
+ * @see https://tailwindcss.com/docs/margin
903
+ */
904
+ my: [{
905
+ my: S()
906
+ }],
907
+ /**
908
+ * Margin Start
909
+ * @see https://tailwindcss.com/docs/margin
910
+ */
911
+ ms: [{
912
+ ms: S()
913
+ }],
914
+ /**
915
+ * Margin End
916
+ * @see https://tailwindcss.com/docs/margin
917
+ */
918
+ me: [{
919
+ me: S()
920
+ }],
921
+ /**
922
+ * Margin Top
923
+ * @see https://tailwindcss.com/docs/margin
924
+ */
925
+ mt: [{
926
+ mt: S()
927
+ }],
928
+ /**
929
+ * Margin Right
930
+ * @see https://tailwindcss.com/docs/margin
931
+ */
932
+ mr: [{
933
+ mr: S()
934
+ }],
935
+ /**
936
+ * Margin Bottom
937
+ * @see https://tailwindcss.com/docs/margin
938
+ */
939
+ mb: [{
940
+ mb: S()
941
+ }],
942
+ /**
943
+ * Margin Left
944
+ * @see https://tailwindcss.com/docs/margin
945
+ */
946
+ ml: [{
947
+ ml: S()
948
+ }],
949
+ /**
950
+ * Space Between X
951
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
952
+ */
953
+ "space-x": [{
954
+ "space-x": d()
955
+ }],
956
+ /**
957
+ * Space Between X Reverse
958
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
959
+ */
960
+ "space-x-reverse": ["space-x-reverse"],
961
+ /**
962
+ * Space Between Y
963
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
964
+ */
965
+ "space-y": [{
966
+ "space-y": d()
967
+ }],
968
+ /**
969
+ * Space Between Y Reverse
970
+ * @see https://tailwindcss.com/docs/margin#adding-space-between-children
971
+ */
972
+ "space-y-reverse": ["space-y-reverse"],
973
+ // --------------
974
+ // --- Sizing ---
975
+ // --------------
976
+ /**
977
+ * Size
978
+ * @see https://tailwindcss.com/docs/width#setting-both-width-and-height
979
+ */
980
+ size: [{
981
+ size: I()
982
+ }],
983
+ /**
984
+ * Width
985
+ * @see https://tailwindcss.com/docs/width
986
+ */
987
+ w: [{
988
+ w: [u, "screen", ...I()]
989
+ }],
990
+ /**
991
+ * Min-Width
992
+ * @see https://tailwindcss.com/docs/min-width
993
+ */
994
+ "min-w": [{
995
+ "min-w": [
996
+ u,
997
+ "screen",
998
+ /** Deprecated. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
999
+ "none",
1000
+ ...I()
1001
+ ]
1002
+ }],
1003
+ /**
1004
+ * Max-Width
1005
+ * @see https://tailwindcss.com/docs/max-width
1006
+ */
1007
+ "max-w": [{
1008
+ "max-w": [
1009
+ u,
1010
+ "screen",
1011
+ "none",
1012
+ /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
1013
+ "prose",
1014
+ /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
1015
+ {
1016
+ screen: [i]
1017
+ },
1018
+ ...I()
1019
+ ]
1020
+ }],
1021
+ /**
1022
+ * Height
1023
+ * @see https://tailwindcss.com/docs/height
1024
+ */
1025
+ h: [{
1026
+ h: ["screen", "lh", ...I()]
1027
+ }],
1028
+ /**
1029
+ * Min-Height
1030
+ * @see https://tailwindcss.com/docs/min-height
1031
+ */
1032
+ "min-h": [{
1033
+ "min-h": ["screen", "lh", "none", ...I()]
1034
+ }],
1035
+ /**
1036
+ * Max-Height
1037
+ * @see https://tailwindcss.com/docs/max-height
1038
+ */
1039
+ "max-h": [{
1040
+ "max-h": ["screen", "lh", ...I()]
1041
+ }],
1042
+ // ------------------
1043
+ // --- Typography ---
1044
+ // ------------------
1045
+ /**
1046
+ * Font Size
1047
+ * @see https://tailwindcss.com/docs/font-size
1048
+ */
1049
+ "font-size": [{
1050
+ text: ["base", r, U, P]
1051
+ }],
1052
+ /**
1053
+ * Font Smoothing
1054
+ * @see https://tailwindcss.com/docs/font-smoothing
1055
+ */
1056
+ "font-smoothing": ["antialiased", "subpixel-antialiased"],
1057
+ /**
1058
+ * Font Style
1059
+ * @see https://tailwindcss.com/docs/font-style
1060
+ */
1061
+ "font-style": ["italic", "not-italic"],
1062
+ /**
1063
+ * Font Weight
1064
+ * @see https://tailwindcss.com/docs/font-weight
1065
+ */
1066
+ "font-weight": [{
1067
+ font: [o, a, ae]
1068
+ }],
1069
+ /**
1070
+ * Font Stretch
1071
+ * @see https://tailwindcss.com/docs/font-stretch
1072
+ */
1073
+ "font-stretch": [{
1074
+ "font-stretch": ["ultra-condensed", "extra-condensed", "condensed", "semi-condensed", "normal", "semi-expanded", "expanded", "extra-expanded", "ultra-expanded", se, s]
1075
+ }],
1076
+ /**
1077
+ * Font Family
1078
+ * @see https://tailwindcss.com/docs/font-family
1079
+ */
1080
+ "font-family": [{
1081
+ font: [gr, s, t]
1082
+ }],
1083
+ /**
1084
+ * Font Variant Numeric
1085
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1086
+ */
1087
+ "fvn-normal": ["normal-nums"],
1088
+ /**
1089
+ * Font Variant Numeric
1090
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1091
+ */
1092
+ "fvn-ordinal": ["ordinal"],
1093
+ /**
1094
+ * Font Variant Numeric
1095
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1096
+ */
1097
+ "fvn-slashed-zero": ["slashed-zero"],
1098
+ /**
1099
+ * Font Variant Numeric
1100
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1101
+ */
1102
+ "fvn-figure": ["lining-nums", "oldstyle-nums"],
1103
+ /**
1104
+ * Font Variant Numeric
1105
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1106
+ */
1107
+ "fvn-spacing": ["proportional-nums", "tabular-nums"],
1108
+ /**
1109
+ * Font Variant Numeric
1110
+ * @see https://tailwindcss.com/docs/font-variant-numeric
1111
+ */
1112
+ "fvn-fraction": ["diagonal-fractions", "stacked-fractions"],
1113
+ /**
1114
+ * Letter Spacing
1115
+ * @see https://tailwindcss.com/docs/letter-spacing
1116
+ */
1117
+ tracking: [{
1118
+ tracking: [n, a, s]
1119
+ }],
1120
+ /**
1121
+ * Line Clamp
1122
+ * @see https://tailwindcss.com/docs/line-clamp
1123
+ */
1124
+ "line-clamp": [{
1125
+ "line-clamp": [p, "none", a, ae]
1126
+ }],
1127
+ /**
1128
+ * Line Height
1129
+ * @see https://tailwindcss.com/docs/line-height
1130
+ */
1131
+ leading: [{
1132
+ leading: [
1133
+ /** Deprecated since Tailwind CSS v4.0.0. @see https://github.com/tailwindlabs/tailwindcss.com/issues/2027#issuecomment-2620152757 */
1134
+ c,
1135
+ ...d()
1136
+ ]
1137
+ }],
1138
+ /**
1139
+ * List Style Image
1140
+ * @see https://tailwindcss.com/docs/list-style-image
1141
+ */
1142
+ "list-image": [{
1143
+ "list-image": ["none", a, s]
1144
+ }],
1145
+ /**
1146
+ * List Style Position
1147
+ * @see https://tailwindcss.com/docs/list-style-position
1148
+ */
1149
+ "list-style-position": [{
1150
+ list: ["inside", "outside"]
1151
+ }],
1152
+ /**
1153
+ * List Style Type
1154
+ * @see https://tailwindcss.com/docs/list-style-type
1155
+ */
1156
+ "list-style-type": [{
1157
+ list: ["disc", "decimal", "none", a, s]
1158
+ }],
1159
+ /**
1160
+ * Text Alignment
1161
+ * @see https://tailwindcss.com/docs/text-align
1162
+ */
1163
+ "text-alignment": [{
1164
+ text: ["left", "center", "right", "justify", "start", "end"]
1165
+ }],
1166
+ /**
1167
+ * Placeholder Color
1168
+ * @deprecated since Tailwind CSS v3.0.0
1169
+ * @see https://v3.tailwindcss.com/docs/placeholder-color
1170
+ */
1171
+ "placeholder-color": [{
1172
+ placeholder: l()
1173
+ }],
1174
+ /**
1175
+ * Text Color
1176
+ * @see https://tailwindcss.com/docs/text-color
1177
+ */
1178
+ "text-color": [{
1179
+ text: l()
1180
+ }],
1181
+ /**
1182
+ * Text Decoration
1183
+ * @see https://tailwindcss.com/docs/text-decoration
1184
+ */
1185
+ "text-decoration": ["underline", "overline", "line-through", "no-underline"],
1186
+ /**
1187
+ * Text Decoration Style
1188
+ * @see https://tailwindcss.com/docs/text-decoration-style
1189
+ */
1190
+ "text-decoration-style": [{
1191
+ decoration: [...J(), "wavy"]
1192
+ }],
1193
+ /**
1194
+ * Text Decoration Thickness
1195
+ * @see https://tailwindcss.com/docs/text-decoration-thickness
1196
+ */
1197
+ "text-decoration-thickness": [{
1198
+ decoration: [p, "from-font", "auto", a, P]
1199
+ }],
1200
+ /**
1201
+ * Text Decoration Color
1202
+ * @see https://tailwindcss.com/docs/text-decoration-color
1203
+ */
1204
+ "text-decoration-color": [{
1205
+ decoration: l()
1206
+ }],
1207
+ /**
1208
+ * Text Underline Offset
1209
+ * @see https://tailwindcss.com/docs/text-underline-offset
1210
+ */
1211
+ "underline-offset": [{
1212
+ "underline-offset": [p, "auto", a, s]
1213
+ }],
1214
+ /**
1215
+ * Text Transform
1216
+ * @see https://tailwindcss.com/docs/text-transform
1217
+ */
1218
+ "text-transform": ["uppercase", "lowercase", "capitalize", "normal-case"],
1219
+ /**
1220
+ * Text Overflow
1221
+ * @see https://tailwindcss.com/docs/text-overflow
1222
+ */
1223
+ "text-overflow": ["truncate", "text-ellipsis", "text-clip"],
1224
+ /**
1225
+ * Text Wrap
1226
+ * @see https://tailwindcss.com/docs/text-wrap
1227
+ */
1228
+ "text-wrap": [{
1229
+ text: ["wrap", "nowrap", "balance", "pretty"]
1230
+ }],
1231
+ /**
1232
+ * Text Indent
1233
+ * @see https://tailwindcss.com/docs/text-indent
1234
+ */
1235
+ indent: [{
1236
+ indent: d()
1237
+ }],
1238
+ /**
1239
+ * Vertical Alignment
1240
+ * @see https://tailwindcss.com/docs/vertical-align
1241
+ */
1242
+ "vertical-align": [{
1243
+ align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", a, s]
1244
+ }],
1245
+ /**
1246
+ * Whitespace
1247
+ * @see https://tailwindcss.com/docs/whitespace
1248
+ */
1249
+ whitespace: [{
1250
+ whitespace: ["normal", "nowrap", "pre", "pre-line", "pre-wrap", "break-spaces"]
1251
+ }],
1252
+ /**
1253
+ * Word Break
1254
+ * @see https://tailwindcss.com/docs/word-break
1255
+ */
1256
+ break: [{
1257
+ break: ["normal", "words", "all", "keep"]
1258
+ }],
1259
+ /**
1260
+ * Overflow Wrap
1261
+ * @see https://tailwindcss.com/docs/overflow-wrap
1262
+ */
1263
+ wrap: [{
1264
+ wrap: ["break-word", "anywhere", "normal"]
1265
+ }],
1266
+ /**
1267
+ * Hyphens
1268
+ * @see https://tailwindcss.com/docs/hyphens
1269
+ */
1270
+ hyphens: [{
1271
+ hyphens: ["none", "manual", "auto"]
1272
+ }],
1273
+ /**
1274
+ * Content
1275
+ * @see https://tailwindcss.com/docs/content
1276
+ */
1277
+ content: [{
1278
+ content: ["none", a, s]
1279
+ }],
1280
+ // -------------------
1281
+ // --- Backgrounds ---
1282
+ // -------------------
1283
+ /**
1284
+ * Background Attachment
1285
+ * @see https://tailwindcss.com/docs/background-attachment
1286
+ */
1287
+ "bg-attachment": [{
1288
+ bg: ["fixed", "local", "scroll"]
1289
+ }],
1290
+ /**
1291
+ * Background Clip
1292
+ * @see https://tailwindcss.com/docs/background-clip
1293
+ */
1294
+ "bg-clip": [{
1295
+ "bg-clip": ["border", "padding", "content", "text"]
1296
+ }],
1297
+ /**
1298
+ * Background Origin
1299
+ * @see https://tailwindcss.com/docs/background-origin
1300
+ */
1301
+ "bg-origin": [{
1302
+ "bg-origin": ["border", "padding", "content"]
1303
+ }],
1304
+ /**
1305
+ * Background Position
1306
+ * @see https://tailwindcss.com/docs/background-position
1307
+ */
1308
+ "bg-position": [{
1309
+ bg: ue()
1310
+ }],
1311
+ /**
1312
+ * Background Repeat
1313
+ * @see https://tailwindcss.com/docs/background-repeat
1314
+ */
1315
+ "bg-repeat": [{
1316
+ bg: fe()
1317
+ }],
1318
+ /**
1319
+ * Background Size
1320
+ * @see https://tailwindcss.com/docs/background-size
1321
+ */
1322
+ "bg-size": [{
1323
+ bg: ge()
1324
+ }],
1325
+ /**
1326
+ * Background Image
1327
+ * @see https://tailwindcss.com/docs/background-image
1328
+ */
1329
+ "bg-image": [{
1330
+ bg: ["none", {
1331
+ linear: [{
1332
+ to: ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
1333
+ }, N, a, s],
1334
+ radial: ["", a, s],
1335
+ conic: [N, a, s]
1336
+ }, hr, fr]
1337
+ }],
1338
+ /**
1339
+ * Background Color
1340
+ * @see https://tailwindcss.com/docs/background-color
1341
+ */
1342
+ "bg-color": [{
1343
+ bg: l()
1344
+ }],
1345
+ /**
1346
+ * Gradient Color Stops From Position
1347
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1348
+ */
1349
+ "gradient-from-pos": [{
1350
+ from: oe()
1351
+ }],
1352
+ /**
1353
+ * Gradient Color Stops Via Position
1354
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1355
+ */
1356
+ "gradient-via-pos": [{
1357
+ via: oe()
1358
+ }],
1359
+ /**
1360
+ * Gradient Color Stops To Position
1361
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1362
+ */
1363
+ "gradient-to-pos": [{
1364
+ to: oe()
1365
+ }],
1366
+ /**
1367
+ * Gradient Color Stops From
1368
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1369
+ */
1370
+ "gradient-from": [{
1371
+ from: l()
1372
+ }],
1373
+ /**
1374
+ * Gradient Color Stops Via
1375
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1376
+ */
1377
+ "gradient-via": [{
1378
+ via: l()
1379
+ }],
1380
+ /**
1381
+ * Gradient Color Stops To
1382
+ * @see https://tailwindcss.com/docs/gradient-color-stops
1383
+ */
1384
+ "gradient-to": [{
1385
+ to: l()
1386
+ }],
1387
+ // ---------------
1388
+ // --- Borders ---
1389
+ // ---------------
1390
+ /**
1391
+ * Border Radius
1392
+ * @see https://tailwindcss.com/docs/border-radius
1393
+ */
1394
+ rounded: [{
1395
+ rounded: y()
1396
+ }],
1397
+ /**
1398
+ * Border Radius Start
1399
+ * @see https://tailwindcss.com/docs/border-radius
1400
+ */
1401
+ "rounded-s": [{
1402
+ "rounded-s": y()
1403
+ }],
1404
+ /**
1405
+ * Border Radius End
1406
+ * @see https://tailwindcss.com/docs/border-radius
1407
+ */
1408
+ "rounded-e": [{
1409
+ "rounded-e": y()
1410
+ }],
1411
+ /**
1412
+ * Border Radius Top
1413
+ * @see https://tailwindcss.com/docs/border-radius
1414
+ */
1415
+ "rounded-t": [{
1416
+ "rounded-t": y()
1417
+ }],
1418
+ /**
1419
+ * Border Radius Right
1420
+ * @see https://tailwindcss.com/docs/border-radius
1421
+ */
1422
+ "rounded-r": [{
1423
+ "rounded-r": y()
1424
+ }],
1425
+ /**
1426
+ * Border Radius Bottom
1427
+ * @see https://tailwindcss.com/docs/border-radius
1428
+ */
1429
+ "rounded-b": [{
1430
+ "rounded-b": y()
1431
+ }],
1432
+ /**
1433
+ * Border Radius Left
1434
+ * @see https://tailwindcss.com/docs/border-radius
1435
+ */
1436
+ "rounded-l": [{
1437
+ "rounded-l": y()
1438
+ }],
1439
+ /**
1440
+ * Border Radius Start Start
1441
+ * @see https://tailwindcss.com/docs/border-radius
1442
+ */
1443
+ "rounded-ss": [{
1444
+ "rounded-ss": y()
1445
+ }],
1446
+ /**
1447
+ * Border Radius Start End
1448
+ * @see https://tailwindcss.com/docs/border-radius
1449
+ */
1450
+ "rounded-se": [{
1451
+ "rounded-se": y()
1452
+ }],
1453
+ /**
1454
+ * Border Radius End End
1455
+ * @see https://tailwindcss.com/docs/border-radius
1456
+ */
1457
+ "rounded-ee": [{
1458
+ "rounded-ee": y()
1459
+ }],
1460
+ /**
1461
+ * Border Radius End Start
1462
+ * @see https://tailwindcss.com/docs/border-radius
1463
+ */
1464
+ "rounded-es": [{
1465
+ "rounded-es": y()
1466
+ }],
1467
+ /**
1468
+ * Border Radius Top Left
1469
+ * @see https://tailwindcss.com/docs/border-radius
1470
+ */
1471
+ "rounded-tl": [{
1472
+ "rounded-tl": y()
1473
+ }],
1474
+ /**
1475
+ * Border Radius Top Right
1476
+ * @see https://tailwindcss.com/docs/border-radius
1477
+ */
1478
+ "rounded-tr": [{
1479
+ "rounded-tr": y()
1480
+ }],
1481
+ /**
1482
+ * Border Radius Bottom Right
1483
+ * @see https://tailwindcss.com/docs/border-radius
1484
+ */
1485
+ "rounded-br": [{
1486
+ "rounded-br": y()
1487
+ }],
1488
+ /**
1489
+ * Border Radius Bottom Left
1490
+ * @see https://tailwindcss.com/docs/border-radius
1491
+ */
1492
+ "rounded-bl": [{
1493
+ "rounded-bl": y()
1494
+ }],
1495
+ /**
1496
+ * Border Width
1497
+ * @see https://tailwindcss.com/docs/border-width
1498
+ */
1499
+ "border-w": [{
1500
+ border: w()
1501
+ }],
1502
+ /**
1503
+ * Border Width X
1504
+ * @see https://tailwindcss.com/docs/border-width
1505
+ */
1506
+ "border-w-x": [{
1507
+ "border-x": w()
1508
+ }],
1509
+ /**
1510
+ * Border Width Y
1511
+ * @see https://tailwindcss.com/docs/border-width
1512
+ */
1513
+ "border-w-y": [{
1514
+ "border-y": w()
1515
+ }],
1516
+ /**
1517
+ * Border Width Start
1518
+ * @see https://tailwindcss.com/docs/border-width
1519
+ */
1520
+ "border-w-s": [{
1521
+ "border-s": w()
1522
+ }],
1523
+ /**
1524
+ * Border Width End
1525
+ * @see https://tailwindcss.com/docs/border-width
1526
+ */
1527
+ "border-w-e": [{
1528
+ "border-e": w()
1529
+ }],
1530
+ /**
1531
+ * Border Width Top
1532
+ * @see https://tailwindcss.com/docs/border-width
1533
+ */
1534
+ "border-w-t": [{
1535
+ "border-t": w()
1536
+ }],
1537
+ /**
1538
+ * Border Width Right
1539
+ * @see https://tailwindcss.com/docs/border-width
1540
+ */
1541
+ "border-w-r": [{
1542
+ "border-r": w()
1543
+ }],
1544
+ /**
1545
+ * Border Width Bottom
1546
+ * @see https://tailwindcss.com/docs/border-width
1547
+ */
1548
+ "border-w-b": [{
1549
+ "border-b": w()
1550
+ }],
1551
+ /**
1552
+ * Border Width Left
1553
+ * @see https://tailwindcss.com/docs/border-width
1554
+ */
1555
+ "border-w-l": [{
1556
+ "border-l": w()
1557
+ }],
1558
+ /**
1559
+ * Divide Width X
1560
+ * @see https://tailwindcss.com/docs/border-width#between-children
1561
+ */
1562
+ "divide-x": [{
1563
+ "divide-x": w()
1564
+ }],
1565
+ /**
1566
+ * Divide Width X Reverse
1567
+ * @see https://tailwindcss.com/docs/border-width#between-children
1568
+ */
1569
+ "divide-x-reverse": ["divide-x-reverse"],
1570
+ /**
1571
+ * Divide Width Y
1572
+ * @see https://tailwindcss.com/docs/border-width#between-children
1573
+ */
1574
+ "divide-y": [{
1575
+ "divide-y": w()
1576
+ }],
1577
+ /**
1578
+ * Divide Width Y Reverse
1579
+ * @see https://tailwindcss.com/docs/border-width#between-children
1580
+ */
1581
+ "divide-y-reverse": ["divide-y-reverse"],
1582
+ /**
1583
+ * Border Style
1584
+ * @see https://tailwindcss.com/docs/border-style
1585
+ */
1586
+ "border-style": [{
1587
+ border: [...J(), "hidden", "none"]
1588
+ }],
1589
+ /**
1590
+ * Divide Style
1591
+ * @see https://tailwindcss.com/docs/border-style#setting-the-divider-style
1592
+ */
1593
+ "divide-style": [{
1594
+ divide: [...J(), "hidden", "none"]
1595
+ }],
1596
+ /**
1597
+ * Border Color
1598
+ * @see https://tailwindcss.com/docs/border-color
1599
+ */
1600
+ "border-color": [{
1601
+ border: l()
1602
+ }],
1603
+ /**
1604
+ * Border Color X
1605
+ * @see https://tailwindcss.com/docs/border-color
1606
+ */
1607
+ "border-color-x": [{
1608
+ "border-x": l()
1609
+ }],
1610
+ /**
1611
+ * Border Color Y
1612
+ * @see https://tailwindcss.com/docs/border-color
1613
+ */
1614
+ "border-color-y": [{
1615
+ "border-y": l()
1616
+ }],
1617
+ /**
1618
+ * Border Color S
1619
+ * @see https://tailwindcss.com/docs/border-color
1620
+ */
1621
+ "border-color-s": [{
1622
+ "border-s": l()
1623
+ }],
1624
+ /**
1625
+ * Border Color E
1626
+ * @see https://tailwindcss.com/docs/border-color
1627
+ */
1628
+ "border-color-e": [{
1629
+ "border-e": l()
1630
+ }],
1631
+ /**
1632
+ * Border Color Top
1633
+ * @see https://tailwindcss.com/docs/border-color
1634
+ */
1635
+ "border-color-t": [{
1636
+ "border-t": l()
1637
+ }],
1638
+ /**
1639
+ * Border Color Right
1640
+ * @see https://tailwindcss.com/docs/border-color
1641
+ */
1642
+ "border-color-r": [{
1643
+ "border-r": l()
1644
+ }],
1645
+ /**
1646
+ * Border Color Bottom
1647
+ * @see https://tailwindcss.com/docs/border-color
1648
+ */
1649
+ "border-color-b": [{
1650
+ "border-b": l()
1651
+ }],
1652
+ /**
1653
+ * Border Color Left
1654
+ * @see https://tailwindcss.com/docs/border-color
1655
+ */
1656
+ "border-color-l": [{
1657
+ "border-l": l()
1658
+ }],
1659
+ /**
1660
+ * Divide Color
1661
+ * @see https://tailwindcss.com/docs/divide-color
1662
+ */
1663
+ "divide-color": [{
1664
+ divide: l()
1665
+ }],
1666
+ /**
1667
+ * Outline Style
1668
+ * @see https://tailwindcss.com/docs/outline-style
1669
+ */
1670
+ "outline-style": [{
1671
+ outline: [...J(), "none", "hidden"]
1672
+ }],
1673
+ /**
1674
+ * Outline Offset
1675
+ * @see https://tailwindcss.com/docs/outline-offset
1676
+ */
1677
+ "outline-offset": [{
1678
+ "outline-offset": [p, a, s]
1679
+ }],
1680
+ /**
1681
+ * Outline Width
1682
+ * @see https://tailwindcss.com/docs/outline-width
1683
+ */
1684
+ "outline-w": [{
1685
+ outline: ["", p, U, P]
1686
+ }],
1687
+ /**
1688
+ * Outline Color
1689
+ * @see https://tailwindcss.com/docs/outline-color
1690
+ */
1691
+ "outline-color": [{
1692
+ outline: l()
1693
+ }],
1694
+ // ---------------
1695
+ // --- Effects ---
1696
+ // ---------------
1697
+ /**
1698
+ * Box Shadow
1699
+ * @see https://tailwindcss.com/docs/box-shadow
1700
+ */
1701
+ shadow: [{
1702
+ shadow: [
1703
+ // Deprecated since Tailwind CSS v4.0.0
1704
+ "",
1705
+ "none",
1706
+ b,
1707
+ ee,
1708
+ Z
1709
+ ]
1710
+ }],
1711
+ /**
1712
+ * Box Shadow Color
1713
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-shadow-color
1714
+ */
1715
+ "shadow-color": [{
1716
+ shadow: l()
1717
+ }],
1718
+ /**
1719
+ * Inset Box Shadow
1720
+ * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-shadow
1721
+ */
1722
+ "inset-shadow": [{
1723
+ "inset-shadow": ["none", C, ee, Z]
1724
+ }],
1725
+ /**
1726
+ * Inset Box Shadow Color
1727
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-shadow-color
1728
+ */
1729
+ "inset-shadow-color": [{
1730
+ "inset-shadow": l()
1731
+ }],
1732
+ /**
1733
+ * Ring Width
1734
+ * @see https://tailwindcss.com/docs/box-shadow#adding-a-ring
1735
+ */
1736
+ "ring-w": [{
1737
+ ring: w()
1738
+ }],
1739
+ /**
1740
+ * Ring Width Inset
1741
+ * @see https://v3.tailwindcss.com/docs/ring-width#inset-rings
1742
+ * @deprecated since Tailwind CSS v4.0.0
1743
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1744
+ */
1745
+ "ring-w-inset": ["ring-inset"],
1746
+ /**
1747
+ * Ring Color
1748
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-ring-color
1749
+ */
1750
+ "ring-color": [{
1751
+ ring: l()
1752
+ }],
1753
+ /**
1754
+ * Ring Offset Width
1755
+ * @see https://v3.tailwindcss.com/docs/ring-offset-width
1756
+ * @deprecated since Tailwind CSS v4.0.0
1757
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1758
+ */
1759
+ "ring-offset-w": [{
1760
+ "ring-offset": [p, P]
1761
+ }],
1762
+ /**
1763
+ * Ring Offset Color
1764
+ * @see https://v3.tailwindcss.com/docs/ring-offset-color
1765
+ * @deprecated since Tailwind CSS v4.0.0
1766
+ * @see https://github.com/tailwindlabs/tailwindcss/blob/v4.0.0/packages/tailwindcss/src/utilities.ts#L4158
1767
+ */
1768
+ "ring-offset-color": [{
1769
+ "ring-offset": l()
1770
+ }],
1771
+ /**
1772
+ * Inset Ring Width
1773
+ * @see https://tailwindcss.com/docs/box-shadow#adding-an-inset-ring
1774
+ */
1775
+ "inset-ring-w": [{
1776
+ "inset-ring": w()
1777
+ }],
1778
+ /**
1779
+ * Inset Ring Color
1780
+ * @see https://tailwindcss.com/docs/box-shadow#setting-the-inset-ring-color
1781
+ */
1782
+ "inset-ring-color": [{
1783
+ "inset-ring": l()
1784
+ }],
1785
+ /**
1786
+ * Text Shadow
1787
+ * @see https://tailwindcss.com/docs/text-shadow
1788
+ */
1789
+ "text-shadow": [{
1790
+ "text-shadow": ["none", A, ee, Z]
1791
+ }],
1792
+ /**
1793
+ * Text Shadow Color
1794
+ * @see https://tailwindcss.com/docs/text-shadow#setting-the-shadow-color
1795
+ */
1796
+ "text-shadow-color": [{
1797
+ "text-shadow": l()
1798
+ }],
1799
+ /**
1800
+ * Opacity
1801
+ * @see https://tailwindcss.com/docs/opacity
1802
+ */
1803
+ opacity: [{
1804
+ opacity: [p, a, s]
1805
+ }],
1806
+ /**
1807
+ * Mix Blend Mode
1808
+ * @see https://tailwindcss.com/docs/mix-blend-mode
1809
+ */
1810
+ "mix-blend": [{
1811
+ "mix-blend": [...be(), "plus-darker", "plus-lighter"]
1812
+ }],
1813
+ /**
1814
+ * Background Blend Mode
1815
+ * @see https://tailwindcss.com/docs/background-blend-mode
1816
+ */
1817
+ "bg-blend": [{
1818
+ "bg-blend": be()
1819
+ }],
1820
+ /**
1821
+ * Mask Clip
1822
+ * @see https://tailwindcss.com/docs/mask-clip
1823
+ */
1824
+ "mask-clip": [{
1825
+ "mask-clip": ["border", "padding", "content", "fill", "stroke", "view"]
1826
+ }, "mask-no-clip"],
1827
+ /**
1828
+ * Mask Composite
1829
+ * @see https://tailwindcss.com/docs/mask-composite
1830
+ */
1831
+ "mask-composite": [{
1832
+ mask: ["add", "subtract", "intersect", "exclude"]
1833
+ }],
1834
+ /**
1835
+ * Mask Image
1836
+ * @see https://tailwindcss.com/docs/mask-image
1837
+ */
1838
+ "mask-image-linear-pos": [{
1839
+ "mask-linear": [p]
1840
+ }],
1841
+ "mask-image-linear-from-pos": [{
1842
+ "mask-linear-from": h()
1843
+ }],
1844
+ "mask-image-linear-to-pos": [{
1845
+ "mask-linear-to": h()
1846
+ }],
1847
+ "mask-image-linear-from-color": [{
1848
+ "mask-linear-from": l()
1849
+ }],
1850
+ "mask-image-linear-to-color": [{
1851
+ "mask-linear-to": l()
1852
+ }],
1853
+ "mask-image-t-from-pos": [{
1854
+ "mask-t-from": h()
1855
+ }],
1856
+ "mask-image-t-to-pos": [{
1857
+ "mask-t-to": h()
1858
+ }],
1859
+ "mask-image-t-from-color": [{
1860
+ "mask-t-from": l()
1861
+ }],
1862
+ "mask-image-t-to-color": [{
1863
+ "mask-t-to": l()
1864
+ }],
1865
+ "mask-image-r-from-pos": [{
1866
+ "mask-r-from": h()
1867
+ }],
1868
+ "mask-image-r-to-pos": [{
1869
+ "mask-r-to": h()
1870
+ }],
1871
+ "mask-image-r-from-color": [{
1872
+ "mask-r-from": l()
1873
+ }],
1874
+ "mask-image-r-to-color": [{
1875
+ "mask-r-to": l()
1876
+ }],
1877
+ "mask-image-b-from-pos": [{
1878
+ "mask-b-from": h()
1879
+ }],
1880
+ "mask-image-b-to-pos": [{
1881
+ "mask-b-to": h()
1882
+ }],
1883
+ "mask-image-b-from-color": [{
1884
+ "mask-b-from": l()
1885
+ }],
1886
+ "mask-image-b-to-color": [{
1887
+ "mask-b-to": l()
1888
+ }],
1889
+ "mask-image-l-from-pos": [{
1890
+ "mask-l-from": h()
1891
+ }],
1892
+ "mask-image-l-to-pos": [{
1893
+ "mask-l-to": h()
1894
+ }],
1895
+ "mask-image-l-from-color": [{
1896
+ "mask-l-from": l()
1897
+ }],
1898
+ "mask-image-l-to-color": [{
1899
+ "mask-l-to": l()
1900
+ }],
1901
+ "mask-image-x-from-pos": [{
1902
+ "mask-x-from": h()
1903
+ }],
1904
+ "mask-image-x-to-pos": [{
1905
+ "mask-x-to": h()
1906
+ }],
1907
+ "mask-image-x-from-color": [{
1908
+ "mask-x-from": l()
1909
+ }],
1910
+ "mask-image-x-to-color": [{
1911
+ "mask-x-to": l()
1912
+ }],
1913
+ "mask-image-y-from-pos": [{
1914
+ "mask-y-from": h()
1915
+ }],
1916
+ "mask-image-y-to-pos": [{
1917
+ "mask-y-to": h()
1918
+ }],
1919
+ "mask-image-y-from-color": [{
1920
+ "mask-y-from": l()
1921
+ }],
1922
+ "mask-image-y-to-color": [{
1923
+ "mask-y-to": l()
1924
+ }],
1925
+ "mask-image-radial": [{
1926
+ "mask-radial": [a, s]
1927
+ }],
1928
+ "mask-image-radial-from-pos": [{
1929
+ "mask-radial-from": h()
1930
+ }],
1931
+ "mask-image-radial-to-pos": [{
1932
+ "mask-radial-to": h()
1933
+ }],
1934
+ "mask-image-radial-from-color": [{
1935
+ "mask-radial-from": l()
1936
+ }],
1937
+ "mask-image-radial-to-color": [{
1938
+ "mask-radial-to": l()
1939
+ }],
1940
+ "mask-image-radial-shape": [{
1941
+ "mask-radial": ["circle", "ellipse"]
1942
+ }],
1943
+ "mask-image-radial-size": [{
1944
+ "mask-radial": [{
1945
+ closest: ["side", "corner"],
1946
+ farthest: ["side", "corner"]
1947
+ }]
1948
+ }],
1949
+ "mask-image-radial-pos": [{
1950
+ "mask-radial-at": E()
1951
+ }],
1952
+ "mask-image-conic-pos": [{
1953
+ "mask-conic": [p]
1954
+ }],
1955
+ "mask-image-conic-from-pos": [{
1956
+ "mask-conic-from": h()
1957
+ }],
1958
+ "mask-image-conic-to-pos": [{
1959
+ "mask-conic-to": h()
1960
+ }],
1961
+ "mask-image-conic-from-color": [{
1962
+ "mask-conic-from": l()
1963
+ }],
1964
+ "mask-image-conic-to-color": [{
1965
+ "mask-conic-to": l()
1966
+ }],
1967
+ /**
1968
+ * Mask Mode
1969
+ * @see https://tailwindcss.com/docs/mask-mode
1970
+ */
1971
+ "mask-mode": [{
1972
+ mask: ["alpha", "luminance", "match"]
1973
+ }],
1974
+ /**
1975
+ * Mask Origin
1976
+ * @see https://tailwindcss.com/docs/mask-origin
1977
+ */
1978
+ "mask-origin": [{
1979
+ "mask-origin": ["border", "padding", "content", "fill", "stroke", "view"]
1980
+ }],
1981
+ /**
1982
+ * Mask Position
1983
+ * @see https://tailwindcss.com/docs/mask-position
1984
+ */
1985
+ "mask-position": [{
1986
+ mask: ue()
1987
+ }],
1988
+ /**
1989
+ * Mask Repeat
1990
+ * @see https://tailwindcss.com/docs/mask-repeat
1991
+ */
1992
+ "mask-repeat": [{
1993
+ mask: fe()
1994
+ }],
1995
+ /**
1996
+ * Mask Size
1997
+ * @see https://tailwindcss.com/docs/mask-size
1998
+ */
1999
+ "mask-size": [{
2000
+ mask: ge()
2001
+ }],
2002
+ /**
2003
+ * Mask Type
2004
+ * @see https://tailwindcss.com/docs/mask-type
2005
+ */
2006
+ "mask-type": [{
2007
+ "mask-type": ["alpha", "luminance"]
2008
+ }],
2009
+ /**
2010
+ * Mask Image
2011
+ * @see https://tailwindcss.com/docs/mask-image
2012
+ */
2013
+ "mask-image": [{
2014
+ mask: ["none", a, s]
2015
+ }],
2016
+ // ---------------
2017
+ // --- Filters ---
2018
+ // ---------------
2019
+ /**
2020
+ * Filter
2021
+ * @see https://tailwindcss.com/docs/filter
2022
+ */
2023
+ filter: [{
2024
+ filter: [
2025
+ // Deprecated since Tailwind CSS v3.0.0
2026
+ "",
2027
+ "none",
2028
+ a,
2029
+ s
2030
+ ]
2031
+ }],
2032
+ /**
2033
+ * Blur
2034
+ * @see https://tailwindcss.com/docs/blur
2035
+ */
2036
+ blur: [{
2037
+ blur: he()
2038
+ }],
2039
+ /**
2040
+ * Brightness
2041
+ * @see https://tailwindcss.com/docs/brightness
2042
+ */
2043
+ brightness: [{
2044
+ brightness: [p, a, s]
2045
+ }],
2046
+ /**
2047
+ * Contrast
2048
+ * @see https://tailwindcss.com/docs/contrast
2049
+ */
2050
+ contrast: [{
2051
+ contrast: [p, a, s]
2052
+ }],
2053
+ /**
2054
+ * Drop Shadow
2055
+ * @see https://tailwindcss.com/docs/drop-shadow
2056
+ */
2057
+ "drop-shadow": [{
2058
+ "drop-shadow": [
2059
+ // Deprecated since Tailwind CSS v4.0.0
2060
+ "",
2061
+ "none",
2062
+ _,
2063
+ ee,
2064
+ Z
2065
+ ]
2066
+ }],
2067
+ /**
2068
+ * Drop Shadow Color
2069
+ * @see https://tailwindcss.com/docs/filter-drop-shadow#setting-the-shadow-color
2070
+ */
2071
+ "drop-shadow-color": [{
2072
+ "drop-shadow": l()
2073
+ }],
2074
+ /**
2075
+ * Grayscale
2076
+ * @see https://tailwindcss.com/docs/grayscale
2077
+ */
2078
+ grayscale: [{
2079
+ grayscale: ["", p, a, s]
2080
+ }],
2081
+ /**
2082
+ * Hue Rotate
2083
+ * @see https://tailwindcss.com/docs/hue-rotate
2084
+ */
2085
+ "hue-rotate": [{
2086
+ "hue-rotate": [p, a, s]
2087
+ }],
2088
+ /**
2089
+ * Invert
2090
+ * @see https://tailwindcss.com/docs/invert
2091
+ */
2092
+ invert: [{
2093
+ invert: ["", p, a, s]
2094
+ }],
2095
+ /**
2096
+ * Saturate
2097
+ * @see https://tailwindcss.com/docs/saturate
2098
+ */
2099
+ saturate: [{
2100
+ saturate: [p, a, s]
2101
+ }],
2102
+ /**
2103
+ * Sepia
2104
+ * @see https://tailwindcss.com/docs/sepia
2105
+ */
2106
+ sepia: [{
2107
+ sepia: ["", p, a, s]
2108
+ }],
2109
+ /**
2110
+ * Backdrop Filter
2111
+ * @see https://tailwindcss.com/docs/backdrop-filter
2112
+ */
2113
+ "backdrop-filter": [{
2114
+ "backdrop-filter": [
2115
+ // Deprecated since Tailwind CSS v3.0.0
2116
+ "",
2117
+ "none",
2118
+ a,
2119
+ s
2120
+ ]
2121
+ }],
2122
+ /**
2123
+ * Backdrop Blur
2124
+ * @see https://tailwindcss.com/docs/backdrop-blur
2125
+ */
2126
+ "backdrop-blur": [{
2127
+ "backdrop-blur": he()
2128
+ }],
2129
+ /**
2130
+ * Backdrop Brightness
2131
+ * @see https://tailwindcss.com/docs/backdrop-brightness
2132
+ */
2133
+ "backdrop-brightness": [{
2134
+ "backdrop-brightness": [p, a, s]
2135
+ }],
2136
+ /**
2137
+ * Backdrop Contrast
2138
+ * @see https://tailwindcss.com/docs/backdrop-contrast
2139
+ */
2140
+ "backdrop-contrast": [{
2141
+ "backdrop-contrast": [p, a, s]
2142
+ }],
2143
+ /**
2144
+ * Backdrop Grayscale
2145
+ * @see https://tailwindcss.com/docs/backdrop-grayscale
2146
+ */
2147
+ "backdrop-grayscale": [{
2148
+ "backdrop-grayscale": ["", p, a, s]
2149
+ }],
2150
+ /**
2151
+ * Backdrop Hue Rotate
2152
+ * @see https://tailwindcss.com/docs/backdrop-hue-rotate
2153
+ */
2154
+ "backdrop-hue-rotate": [{
2155
+ "backdrop-hue-rotate": [p, a, s]
2156
+ }],
2157
+ /**
2158
+ * Backdrop Invert
2159
+ * @see https://tailwindcss.com/docs/backdrop-invert
2160
+ */
2161
+ "backdrop-invert": [{
2162
+ "backdrop-invert": ["", p, a, s]
2163
+ }],
2164
+ /**
2165
+ * Backdrop Opacity
2166
+ * @see https://tailwindcss.com/docs/backdrop-opacity
2167
+ */
2168
+ "backdrop-opacity": [{
2169
+ "backdrop-opacity": [p, a, s]
2170
+ }],
2171
+ /**
2172
+ * Backdrop Saturate
2173
+ * @see https://tailwindcss.com/docs/backdrop-saturate
2174
+ */
2175
+ "backdrop-saturate": [{
2176
+ "backdrop-saturate": [p, a, s]
2177
+ }],
2178
+ /**
2179
+ * Backdrop Sepia
2180
+ * @see https://tailwindcss.com/docs/backdrop-sepia
2181
+ */
2182
+ "backdrop-sepia": [{
2183
+ "backdrop-sepia": ["", p, a, s]
2184
+ }],
2185
+ // --------------
2186
+ // --- Tables ---
2187
+ // --------------
2188
+ /**
2189
+ * Border Collapse
2190
+ * @see https://tailwindcss.com/docs/border-collapse
2191
+ */
2192
+ "border-collapse": [{
2193
+ border: ["collapse", "separate"]
2194
+ }],
2195
+ /**
2196
+ * Border Spacing
2197
+ * @see https://tailwindcss.com/docs/border-spacing
2198
+ */
2199
+ "border-spacing": [{
2200
+ "border-spacing": d()
2201
+ }],
2202
+ /**
2203
+ * Border Spacing X
2204
+ * @see https://tailwindcss.com/docs/border-spacing
2205
+ */
2206
+ "border-spacing-x": [{
2207
+ "border-spacing-x": d()
2208
+ }],
2209
+ /**
2210
+ * Border Spacing Y
2211
+ * @see https://tailwindcss.com/docs/border-spacing
2212
+ */
2213
+ "border-spacing-y": [{
2214
+ "border-spacing-y": d()
2215
+ }],
2216
+ /**
2217
+ * Table Layout
2218
+ * @see https://tailwindcss.com/docs/table-layout
2219
+ */
2220
+ "table-layout": [{
2221
+ table: ["auto", "fixed"]
2222
+ }],
2223
+ /**
2224
+ * Caption Side
2225
+ * @see https://tailwindcss.com/docs/caption-side
2226
+ */
2227
+ caption: [{
2228
+ caption: ["top", "bottom"]
2229
+ }],
2230
+ // ---------------------------------
2231
+ // --- Transitions and Animation ---
2232
+ // ---------------------------------
2233
+ /**
2234
+ * Transition Property
2235
+ * @see https://tailwindcss.com/docs/transition-property
2236
+ */
2237
+ transition: [{
2238
+ transition: ["", "all", "colors", "opacity", "shadow", "transform", "none", a, s]
2239
+ }],
2240
+ /**
2241
+ * Transition Behavior
2242
+ * @see https://tailwindcss.com/docs/transition-behavior
2243
+ */
2244
+ "transition-behavior": [{
2245
+ transition: ["normal", "discrete"]
2246
+ }],
2247
+ /**
2248
+ * Transition Duration
2249
+ * @see https://tailwindcss.com/docs/transition-duration
2250
+ */
2251
+ duration: [{
2252
+ duration: [p, "initial", a, s]
2253
+ }],
2254
+ /**
2255
+ * Transition Timing Function
2256
+ * @see https://tailwindcss.com/docs/transition-timing-function
2257
+ */
2258
+ ease: [{
2259
+ ease: ["linear", "initial", R, a, s]
2260
+ }],
2261
+ /**
2262
+ * Transition Delay
2263
+ * @see https://tailwindcss.com/docs/transition-delay
2264
+ */
2265
+ delay: [{
2266
+ delay: [p, a, s]
2267
+ }],
2268
+ /**
2269
+ * Animation
2270
+ * @see https://tailwindcss.com/docs/animation
2271
+ */
2272
+ animate: [{
2273
+ animate: ["none", H, a, s]
2274
+ }],
2275
+ // ------------------
2276
+ // --- Transforms ---
2277
+ // ------------------
2278
+ /**
2279
+ * Backface Visibility
2280
+ * @see https://tailwindcss.com/docs/backface-visibility
2281
+ */
2282
+ backface: [{
2283
+ backface: ["hidden", "visible"]
2284
+ }],
2285
+ /**
2286
+ * Perspective
2287
+ * @see https://tailwindcss.com/docs/perspective
2288
+ */
2289
+ perspective: [{
2290
+ perspective: [v, a, s]
2291
+ }],
2292
+ /**
2293
+ * Perspective Origin
2294
+ * @see https://tailwindcss.com/docs/perspective-origin
2295
+ */
2296
+ "perspective-origin": [{
2297
+ "perspective-origin": T()
2298
+ }],
2299
+ /**
2300
+ * Rotate
2301
+ * @see https://tailwindcss.com/docs/rotate
2302
+ */
2303
+ rotate: [{
2304
+ rotate: X()
2305
+ }],
2306
+ /**
2307
+ * Rotate X
2308
+ * @see https://tailwindcss.com/docs/rotate
2309
+ */
2310
+ "rotate-x": [{
2311
+ "rotate-x": X()
2312
+ }],
2313
+ /**
2314
+ * Rotate Y
2315
+ * @see https://tailwindcss.com/docs/rotate
2316
+ */
2317
+ "rotate-y": [{
2318
+ "rotate-y": X()
2319
+ }],
2320
+ /**
2321
+ * Rotate Z
2322
+ * @see https://tailwindcss.com/docs/rotate
2323
+ */
2324
+ "rotate-z": [{
2325
+ "rotate-z": X()
2326
+ }],
2327
+ /**
2328
+ * Scale
2329
+ * @see https://tailwindcss.com/docs/scale
2330
+ */
2331
+ scale: [{
2332
+ scale: K()
2333
+ }],
2334
+ /**
2335
+ * Scale X
2336
+ * @see https://tailwindcss.com/docs/scale
2337
+ */
2338
+ "scale-x": [{
2339
+ "scale-x": K()
2340
+ }],
2341
+ /**
2342
+ * Scale Y
2343
+ * @see https://tailwindcss.com/docs/scale
2344
+ */
2345
+ "scale-y": [{
2346
+ "scale-y": K()
2347
+ }],
2348
+ /**
2349
+ * Scale Z
2350
+ * @see https://tailwindcss.com/docs/scale
2351
+ */
2352
+ "scale-z": [{
2353
+ "scale-z": K()
2354
+ }],
2355
+ /**
2356
+ * Scale 3D
2357
+ * @see https://tailwindcss.com/docs/scale
2358
+ */
2359
+ "scale-3d": ["scale-3d"],
2360
+ /**
2361
+ * Skew
2362
+ * @see https://tailwindcss.com/docs/skew
2363
+ */
2364
+ skew: [{
2365
+ skew: te()
2366
+ }],
2367
+ /**
2368
+ * Skew X
2369
+ * @see https://tailwindcss.com/docs/skew
2370
+ */
2371
+ "skew-x": [{
2372
+ "skew-x": te()
2373
+ }],
2374
+ /**
2375
+ * Skew Y
2376
+ * @see https://tailwindcss.com/docs/skew
2377
+ */
2378
+ "skew-y": [{
2379
+ "skew-y": te()
2380
+ }],
2381
+ /**
2382
+ * Transform
2383
+ * @see https://tailwindcss.com/docs/transform
2384
+ */
2385
+ transform: [{
2386
+ transform: [a, s, "", "none", "gpu", "cpu"]
2387
+ }],
2388
+ /**
2389
+ * Transform Origin
2390
+ * @see https://tailwindcss.com/docs/transform-origin
2391
+ */
2392
+ "transform-origin": [{
2393
+ origin: T()
2394
+ }],
2395
+ /**
2396
+ * Transform Style
2397
+ * @see https://tailwindcss.com/docs/transform-style
2398
+ */
2399
+ "transform-style": [{
2400
+ transform: ["3d", "flat"]
2401
+ }],
2402
+ /**
2403
+ * Translate
2404
+ * @see https://tailwindcss.com/docs/translate
2405
+ */
2406
+ translate: [{
2407
+ translate: Q()
2408
+ }],
2409
+ /**
2410
+ * Translate X
2411
+ * @see https://tailwindcss.com/docs/translate
2412
+ */
2413
+ "translate-x": [{
2414
+ "translate-x": Q()
2415
+ }],
2416
+ /**
2417
+ * Translate Y
2418
+ * @see https://tailwindcss.com/docs/translate
2419
+ */
2420
+ "translate-y": [{
2421
+ "translate-y": Q()
2422
+ }],
2423
+ /**
2424
+ * Translate Z
2425
+ * @see https://tailwindcss.com/docs/translate
2426
+ */
2427
+ "translate-z": [{
2428
+ "translate-z": Q()
2429
+ }],
2430
+ /**
2431
+ * Translate None
2432
+ * @see https://tailwindcss.com/docs/translate
2433
+ */
2434
+ "translate-none": ["translate-none"],
2435
+ // ---------------------
2436
+ // --- Interactivity ---
2437
+ // ---------------------
2438
+ /**
2439
+ * Accent Color
2440
+ * @see https://tailwindcss.com/docs/accent-color
2441
+ */
2442
+ accent: [{
2443
+ accent: l()
2444
+ }],
2445
+ /**
2446
+ * Appearance
2447
+ * @see https://tailwindcss.com/docs/appearance
2448
+ */
2449
+ appearance: [{
2450
+ appearance: ["none", "auto"]
2451
+ }],
2452
+ /**
2453
+ * Caret Color
2454
+ * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
2455
+ */
2456
+ "caret-color": [{
2457
+ caret: l()
2458
+ }],
2459
+ /**
2460
+ * Color Scheme
2461
+ * @see https://tailwindcss.com/docs/color-scheme
2462
+ */
2463
+ "color-scheme": [{
2464
+ scheme: ["normal", "dark", "light", "light-dark", "only-dark", "only-light"]
2465
+ }],
2466
+ /**
2467
+ * Cursor
2468
+ * @see https://tailwindcss.com/docs/cursor
2469
+ */
2470
+ cursor: [{
2471
+ cursor: ["auto", "default", "pointer", "wait", "text", "move", "help", "not-allowed", "none", "context-menu", "progress", "cell", "crosshair", "vertical-text", "alias", "copy", "no-drop", "grab", "grabbing", "all-scroll", "col-resize", "row-resize", "n-resize", "e-resize", "s-resize", "w-resize", "ne-resize", "nw-resize", "se-resize", "sw-resize", "ew-resize", "ns-resize", "nesw-resize", "nwse-resize", "zoom-in", "zoom-out", a, s]
2472
+ }],
2473
+ /**
2474
+ * Field Sizing
2475
+ * @see https://tailwindcss.com/docs/field-sizing
2476
+ */
2477
+ "field-sizing": [{
2478
+ "field-sizing": ["fixed", "content"]
2479
+ }],
2480
+ /**
2481
+ * Pointer Events
2482
+ * @see https://tailwindcss.com/docs/pointer-events
2483
+ */
2484
+ "pointer-events": [{
2485
+ "pointer-events": ["auto", "none"]
2486
+ }],
2487
+ /**
2488
+ * Resize
2489
+ * @see https://tailwindcss.com/docs/resize
2490
+ */
2491
+ resize: [{
2492
+ resize: ["none", "", "y", "x"]
2493
+ }],
2494
+ /**
2495
+ * Scroll Behavior
2496
+ * @see https://tailwindcss.com/docs/scroll-behavior
2497
+ */
2498
+ "scroll-behavior": [{
2499
+ scroll: ["auto", "smooth"]
2500
+ }],
2501
+ /**
2502
+ * Scroll Margin
2503
+ * @see https://tailwindcss.com/docs/scroll-margin
2504
+ */
2505
+ "scroll-m": [{
2506
+ "scroll-m": d()
2507
+ }],
2508
+ /**
2509
+ * Scroll Margin X
2510
+ * @see https://tailwindcss.com/docs/scroll-margin
2511
+ */
2512
+ "scroll-mx": [{
2513
+ "scroll-mx": d()
2514
+ }],
2515
+ /**
2516
+ * Scroll Margin Y
2517
+ * @see https://tailwindcss.com/docs/scroll-margin
2518
+ */
2519
+ "scroll-my": [{
2520
+ "scroll-my": d()
2521
+ }],
2522
+ /**
2523
+ * Scroll Margin Start
2524
+ * @see https://tailwindcss.com/docs/scroll-margin
2525
+ */
2526
+ "scroll-ms": [{
2527
+ "scroll-ms": d()
2528
+ }],
2529
+ /**
2530
+ * Scroll Margin End
2531
+ * @see https://tailwindcss.com/docs/scroll-margin
2532
+ */
2533
+ "scroll-me": [{
2534
+ "scroll-me": d()
2535
+ }],
2536
+ /**
2537
+ * Scroll Margin Top
2538
+ * @see https://tailwindcss.com/docs/scroll-margin
2539
+ */
2540
+ "scroll-mt": [{
2541
+ "scroll-mt": d()
2542
+ }],
2543
+ /**
2544
+ * Scroll Margin Right
2545
+ * @see https://tailwindcss.com/docs/scroll-margin
2546
+ */
2547
+ "scroll-mr": [{
2548
+ "scroll-mr": d()
2549
+ }],
2550
+ /**
2551
+ * Scroll Margin Bottom
2552
+ * @see https://tailwindcss.com/docs/scroll-margin
2553
+ */
2554
+ "scroll-mb": [{
2555
+ "scroll-mb": d()
2556
+ }],
2557
+ /**
2558
+ * Scroll Margin Left
2559
+ * @see https://tailwindcss.com/docs/scroll-margin
2560
+ */
2561
+ "scroll-ml": [{
2562
+ "scroll-ml": d()
2563
+ }],
2564
+ /**
2565
+ * Scroll Padding
2566
+ * @see https://tailwindcss.com/docs/scroll-padding
2567
+ */
2568
+ "scroll-p": [{
2569
+ "scroll-p": d()
2570
+ }],
2571
+ /**
2572
+ * Scroll Padding X
2573
+ * @see https://tailwindcss.com/docs/scroll-padding
2574
+ */
2575
+ "scroll-px": [{
2576
+ "scroll-px": d()
2577
+ }],
2578
+ /**
2579
+ * Scroll Padding Y
2580
+ * @see https://tailwindcss.com/docs/scroll-padding
2581
+ */
2582
+ "scroll-py": [{
2583
+ "scroll-py": d()
2584
+ }],
2585
+ /**
2586
+ * Scroll Padding Start
2587
+ * @see https://tailwindcss.com/docs/scroll-padding
2588
+ */
2589
+ "scroll-ps": [{
2590
+ "scroll-ps": d()
2591
+ }],
2592
+ /**
2593
+ * Scroll Padding End
2594
+ * @see https://tailwindcss.com/docs/scroll-padding
2595
+ */
2596
+ "scroll-pe": [{
2597
+ "scroll-pe": d()
2598
+ }],
2599
+ /**
2600
+ * Scroll Padding Top
2601
+ * @see https://tailwindcss.com/docs/scroll-padding
2602
+ */
2603
+ "scroll-pt": [{
2604
+ "scroll-pt": d()
2605
+ }],
2606
+ /**
2607
+ * Scroll Padding Right
2608
+ * @see https://tailwindcss.com/docs/scroll-padding
2609
+ */
2610
+ "scroll-pr": [{
2611
+ "scroll-pr": d()
2612
+ }],
2613
+ /**
2614
+ * Scroll Padding Bottom
2615
+ * @see https://tailwindcss.com/docs/scroll-padding
2616
+ */
2617
+ "scroll-pb": [{
2618
+ "scroll-pb": d()
2619
+ }],
2620
+ /**
2621
+ * Scroll Padding Left
2622
+ * @see https://tailwindcss.com/docs/scroll-padding
2623
+ */
2624
+ "scroll-pl": [{
2625
+ "scroll-pl": d()
2626
+ }],
2627
+ /**
2628
+ * Scroll Snap Align
2629
+ * @see https://tailwindcss.com/docs/scroll-snap-align
2630
+ */
2631
+ "snap-align": [{
2632
+ snap: ["start", "end", "center", "align-none"]
2633
+ }],
2634
+ /**
2635
+ * Scroll Snap Stop
2636
+ * @see https://tailwindcss.com/docs/scroll-snap-stop
2637
+ */
2638
+ "snap-stop": [{
2639
+ snap: ["normal", "always"]
2640
+ }],
2641
+ /**
2642
+ * Scroll Snap Type
2643
+ * @see https://tailwindcss.com/docs/scroll-snap-type
2644
+ */
2645
+ "snap-type": [{
2646
+ snap: ["none", "x", "y", "both"]
2647
+ }],
2648
+ /**
2649
+ * Scroll Snap Type Strictness
2650
+ * @see https://tailwindcss.com/docs/scroll-snap-type
2651
+ */
2652
+ "snap-strictness": [{
2653
+ snap: ["mandatory", "proximity"]
2654
+ }],
2655
+ /**
2656
+ * Touch Action
2657
+ * @see https://tailwindcss.com/docs/touch-action
2658
+ */
2659
+ touch: [{
2660
+ touch: ["auto", "none", "manipulation"]
2661
+ }],
2662
+ /**
2663
+ * Touch Action X
2664
+ * @see https://tailwindcss.com/docs/touch-action
2665
+ */
2666
+ "touch-x": [{
2667
+ "touch-pan": ["x", "left", "right"]
2668
+ }],
2669
+ /**
2670
+ * Touch Action Y
2671
+ * @see https://tailwindcss.com/docs/touch-action
2672
+ */
2673
+ "touch-y": [{
2674
+ "touch-pan": ["y", "up", "down"]
2675
+ }],
2676
+ /**
2677
+ * Touch Action Pinch Zoom
2678
+ * @see https://tailwindcss.com/docs/touch-action
2679
+ */
2680
+ "touch-pz": ["touch-pinch-zoom"],
2681
+ /**
2682
+ * User Select
2683
+ * @see https://tailwindcss.com/docs/user-select
2684
+ */
2685
+ select: [{
2686
+ select: ["none", "text", "all", "auto"]
2687
+ }],
2688
+ /**
2689
+ * Will Change
2690
+ * @see https://tailwindcss.com/docs/will-change
2691
+ */
2692
+ "will-change": [{
2693
+ "will-change": ["auto", "scroll", "contents", "transform", a, s]
2694
+ }],
2695
+ // -----------
2696
+ // --- SVG ---
2697
+ // -----------
2698
+ /**
2699
+ * Fill
2700
+ * @see https://tailwindcss.com/docs/fill
2701
+ */
2702
+ fill: [{
2703
+ fill: ["none", ...l()]
2704
+ }],
2705
+ /**
2706
+ * Stroke Width
2707
+ * @see https://tailwindcss.com/docs/stroke-width
2708
+ */
2709
+ "stroke-w": [{
2710
+ stroke: [p, U, P, ae]
2711
+ }],
2712
+ /**
2713
+ * Stroke
2714
+ * @see https://tailwindcss.com/docs/stroke
2715
+ */
2716
+ stroke: [{
2717
+ stroke: ["none", ...l()]
2718
+ }],
2719
+ // ---------------------
2720
+ // --- Accessibility ---
2721
+ // ---------------------
2722
+ /**
2723
+ * Forced Color Adjust
2724
+ * @see https://tailwindcss.com/docs/forced-color-adjust
2725
+ */
2726
+ "forced-color-adjust": [{
2727
+ "forced-color-adjust": ["auto", "none"]
2728
+ }]
2729
+ },
2730
+ conflictingClassGroups: {
2731
+ overflow: ["overflow-x", "overflow-y"],
2732
+ overscroll: ["overscroll-x", "overscroll-y"],
2733
+ inset: ["inset-x", "inset-y", "start", "end", "top", "right", "bottom", "left"],
2734
+ "inset-x": ["right", "left"],
2735
+ "inset-y": ["top", "bottom"],
2736
+ flex: ["basis", "grow", "shrink"],
2737
+ gap: ["gap-x", "gap-y"],
2738
+ p: ["px", "py", "ps", "pe", "pt", "pr", "pb", "pl"],
2739
+ px: ["pr", "pl"],
2740
+ py: ["pt", "pb"],
2741
+ m: ["mx", "my", "ms", "me", "mt", "mr", "mb", "ml"],
2742
+ mx: ["mr", "ml"],
2743
+ my: ["mt", "mb"],
2744
+ size: ["w", "h"],
2745
+ "font-size": ["leading"],
2746
+ "fvn-normal": ["fvn-ordinal", "fvn-slashed-zero", "fvn-figure", "fvn-spacing", "fvn-fraction"],
2747
+ "fvn-ordinal": ["fvn-normal"],
2748
+ "fvn-slashed-zero": ["fvn-normal"],
2749
+ "fvn-figure": ["fvn-normal"],
2750
+ "fvn-spacing": ["fvn-normal"],
2751
+ "fvn-fraction": ["fvn-normal"],
2752
+ "line-clamp": ["display", "overflow"],
2753
+ rounded: ["rounded-s", "rounded-e", "rounded-t", "rounded-r", "rounded-b", "rounded-l", "rounded-ss", "rounded-se", "rounded-ee", "rounded-es", "rounded-tl", "rounded-tr", "rounded-br", "rounded-bl"],
2754
+ "rounded-s": ["rounded-ss", "rounded-es"],
2755
+ "rounded-e": ["rounded-se", "rounded-ee"],
2756
+ "rounded-t": ["rounded-tl", "rounded-tr"],
2757
+ "rounded-r": ["rounded-tr", "rounded-br"],
2758
+ "rounded-b": ["rounded-br", "rounded-bl"],
2759
+ "rounded-l": ["rounded-tl", "rounded-bl"],
2760
+ "border-spacing": ["border-spacing-x", "border-spacing-y"],
2761
+ "border-w": ["border-w-x", "border-w-y", "border-w-s", "border-w-e", "border-w-t", "border-w-r", "border-w-b", "border-w-l"],
2762
+ "border-w-x": ["border-w-r", "border-w-l"],
2763
+ "border-w-y": ["border-w-t", "border-w-b"],
2764
+ "border-color": ["border-color-x", "border-color-y", "border-color-s", "border-color-e", "border-color-t", "border-color-r", "border-color-b", "border-color-l"],
2765
+ "border-color-x": ["border-color-r", "border-color-l"],
2766
+ "border-color-y": ["border-color-t", "border-color-b"],
2767
+ translate: ["translate-x", "translate-y", "translate-none"],
2768
+ "translate-none": ["translate", "translate-x", "translate-y", "translate-z"],
2769
+ "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
2770
+ "scroll-mx": ["scroll-mr", "scroll-ml"],
2771
+ "scroll-my": ["scroll-mt", "scroll-mb"],
2772
+ "scroll-p": ["scroll-px", "scroll-py", "scroll-ps", "scroll-pe", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"],
2773
+ "scroll-px": ["scroll-pr", "scroll-pl"],
2774
+ "scroll-py": ["scroll-pt", "scroll-pb"],
2775
+ touch: ["touch-x", "touch-y", "touch-pz"],
2776
+ "touch-x": ["touch"],
2777
+ "touch-y": ["touch"],
2778
+ "touch-pz": ["touch"]
2779
+ },
2780
+ conflictingClassGroupModifiers: {
2781
+ "font-size": ["leading"]
2782
+ },
2783
+ orderSensitiveModifiers: ["*", "**", "after", "backdrop", "before", "details-content", "file", "first-letter", "first-line", "marker", "placeholder", "selection"]
2784
+ };
2785
+ }, kr = /* @__PURE__ */ rr(wr);
2786
+ function O(...e) {
2787
+ return kr(Oe(e));
614
2788
  }
615
- var Te = lr();
616
- const fr = {
617
- primary: { text: "#FFFFFF", value: "#27a7e3", dark: "#1f8ecb" },
618
- secondary: { text: "#1CB0F6", value: "#E0F3FF", dark: "#B3DFFC" }
619
- }, dr = ({
620
- color: j = "primary",
621
- onClick: h,
622
- label: F,
623
- size: m = "medium",
624
- customClass: T = ""
2789
+ const Te = $.forwardRef(({ className: e, ...t }, r) => /* @__PURE__ */ x(
2790
+ "div",
2791
+ {
2792
+ ref: r,
2793
+ className: O(
2794
+ "rounded-xl border bg-card text-card-foreground shadow",
2795
+ e
2796
+ ),
2797
+ ...t
2798
+ }
2799
+ ));
2800
+ Te.displayName = "Card";
2801
+ const Be = $.forwardRef(({ className: e, ...t }, r) => /* @__PURE__ */ x("div", { ref: r, className: O("flex", e), ...t }));
2802
+ Be.displayName = "CardHeader";
2803
+ const je = $.forwardRef(({ className: e, ...t }, r) => /* @__PURE__ */ x(
2804
+ "div",
2805
+ {
2806
+ ref: r,
2807
+ className: O("font-semibold leading-none tracking-tight", e),
2808
+ ...t
2809
+ }
2810
+ ));
2811
+ je.displayName = "CardTitle";
2812
+ const $e = $.forwardRef(({ className: e, ...t }, r) => /* @__PURE__ */ x(
2813
+ "div",
2814
+ {
2815
+ ref: r,
2816
+ className: O("text-sm text-muted-foreground", e),
2817
+ ...t
2818
+ }
2819
+ ));
2820
+ $e.displayName = "CardDescription";
2821
+ const Le = $.forwardRef(({ className: e, ...t }, r) => /* @__PURE__ */ x("div", { ref: r, className: O("pt-0", e), ...t }));
2822
+ Le.displayName = "CardContent";
2823
+ const Ve = $.forwardRef(({ className: e, ...t }, r) => /* @__PURE__ */ x(
2824
+ "div",
2825
+ {
2826
+ ref: r,
2827
+ className: O("flex items-center pt-0", e),
2828
+ ...t
2829
+ }
2830
+ ));
2831
+ Ve.displayName = "CardFooter";
2832
+ const vr = ({
2833
+ color: e = "amber",
2834
+ onClick: t,
2835
+ customClass: r = "",
2836
+ iconSrc: o
625
2837
  }) => {
626
- const w = {
627
- small: "px-2 py-1 text-xs rounded-lg",
628
- medium: "px-3 py-1 text-base rounded-xl",
629
- large: "px-8 py-3 text-2xl rounded-2xl",
630
- full: "px-8 py-2 text-xl rounded-2xl w-full"
631
- }, g = fr[j];
632
- return /* @__PURE__ */ Te.jsx(
2838
+ const n = Ce[e];
2839
+ return /* @__PURE__ */ x(
633
2840
  "button",
634
2841
  {
635
- className: `relative flex items-center justify-center cursor-pointer transition duration-150 ease-in-out whitespace-nowrap active:translate-y-[4px] ${w[m]} ${T}`,
2842
+ className: `w-12 h-12 rounded-lg flex items-center justify-center cursor-pointer transition duration-150 ease-in-out whitespace-nowrap active:translate-y-[4px] ${r}`,
2843
+ onClick: t,
636
2844
  style: {
637
- backgroundColor: g.value,
638
- boxShadow: `0 ${m === "large" ? "6px" : "4px"} 0 ${g.dark}`,
639
- color: g.text
640
- },
641
- onMouseDown: (b) => {
642
- b.currentTarget.style.boxShadow = "none";
2845
+ backgroundColor: n.primary.value,
2846
+ boxShadow: `0 4px 0 ${n.primary.dark}`
643
2847
  },
644
- onMouseUp: (b) => {
645
- b.currentTarget.style.boxShadow = `0 4px 0 ${g.dark}`;
646
- },
647
- onClick: h,
648
- children: /* @__PURE__ */ Te.jsx("span", { className: "font-bold", children: F })
2848
+ children: /* @__PURE__ */ x("span", { className: "text-2xl", children: /* @__PURE__ */ x(
2849
+ "img",
2850
+ {
2851
+ style: {
2852
+ maxWidth: "1.2em",
2853
+ maxHeight: "1.2em",
2854
+ display: "inline-block"
2855
+ },
2856
+ src: o
2857
+ }
2858
+ ) })
2859
+ }
2860
+ );
2861
+ }, zr = ({
2862
+ title: e,
2863
+ description: t,
2864
+ children: r,
2865
+ iconSrc: o,
2866
+ customClass: n = "",
2867
+ button: c = !1,
2868
+ buttonLabel: i = "Button",
2869
+ buttonPosition: u = "top-right",
2870
+ bgIconColor: m = "lightBlue",
2871
+ buttonColor: g = "lightBlue",
2872
+ buttonVariant: b = "primary",
2873
+ onButtonClick: C
2874
+ }) => {
2875
+ const A = C ?? (() => {
2876
+ });
2877
+ return /* @__PURE__ */ Y(
2878
+ Te,
2879
+ {
2880
+ className: `
2881
+ w-full max-w-full sm:max-w-md md:max-w-lg lg:max-w-xl
2882
+ border-2 border-b-4 border-gray-200 border-opacity-80
2883
+ px-4 sm:px-6 py-4 sm:py-6 rounded-xl
2884
+ flex flex-col relative
2885
+ ${n}
2886
+ `,
2887
+ children: [
2888
+ (e || t || c && u === "top-right") && /* @__PURE__ */ Y(Be, { className: "mb-4 flex items-start justify-between", children: [
2889
+ /* @__PURE__ */ Y("div", { className: "flex items-center gap-3", children: [
2890
+ o && /* @__PURE__ */ x(
2891
+ vr,
2892
+ {
2893
+ color: m,
2894
+ iconSrc: o,
2895
+ onClick: () => {
2896
+ }
2897
+ }
2898
+ ),
2899
+ /* @__PURE__ */ Y("div", { children: [
2900
+ e && /* @__PURE__ */ x(je, { className: "text-base sm:text-lg md:text-xl font-semibold", children: e }),
2901
+ t && /* @__PURE__ */ x($e, { className: "text-sm sm:text-base text-gray-600", children: t })
2902
+ ] })
2903
+ ] }),
2904
+ c && u === "top-right" && /* @__PURE__ */ x(
2905
+ xe,
2906
+ {
2907
+ label: i,
2908
+ size: "medium",
2909
+ onClick: A,
2910
+ color: g,
2911
+ variant: b
2912
+ }
2913
+ )
2914
+ ] }),
2915
+ r && /* @__PURE__ */ x(Le, { className: "flex flex-col gap-3 font-regular", children: r }),
2916
+ c && u === "bottom-right" && /* @__PURE__ */ x(Ve, { className: "flex justify-end pt-2", children: /* @__PURE__ */ x(
2917
+ xe,
2918
+ {
2919
+ label: i,
2920
+ size: "medium",
2921
+ onClick: A,
2922
+ color: g,
2923
+ variant: b
2924
+ }
2925
+ ) })
2926
+ ]
649
2927
  }
650
2928
  );
651
2929
  };
652
2930
  export {
653
- dr as Button
2931
+ xe as Button,
2932
+ zr as Card
654
2933
  };