@nuvra-ui/react 0.0.7 → 0.0.9

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.
package/dist/index.js ADDED
@@ -0,0 +1,1644 @@
1
+ import { jsx } from "react/jsx-runtime";
2
+ function r(e) {
3
+ var s, c, l = "";
4
+ if (typeof e == "string" || typeof e == "number") l += e;
5
+ else if (typeof e == "object") if (Array.isArray(e)) {
6
+ var u = e.length;
7
+ for (s = 0; s < u; s++) e[s] && (c = r(e[s])) && (l && (l += " "), l += c);
8
+ } else for (c in e) e[c] && (l && (l += " "), l += c);
9
+ return l;
10
+ }
11
+ function clsx() {
12
+ for (var e, s, c = 0, l = "", u = arguments.length; c < u; c++) (e = arguments[c]) && (s = r(e)) && (l && (l += " "), l += s);
13
+ return l;
14
+ }
15
+ var concatArrays = (e, o) => {
16
+ let s = Array(e.length + o.length);
17
+ for (let o = 0; o < e.length; o++) s[o] = e[o];
18
+ for (let c = 0; c < o.length; c++) s[e.length + c] = o[c];
19
+ return s;
20
+ }, createClassValidatorObject = (e, o) => ({
21
+ classGroupId: e,
22
+ validator: o
23
+ }), createClassPartObject = (e = /* @__PURE__ */ new Map(), o = null, s) => ({
24
+ nextPart: e,
25
+ validators: o,
26
+ classGroupId: s
27
+ }), CLASS_PART_SEPARATOR = "-", EMPTY_CONFLICTS = [], ARBITRARY_PROPERTY_PREFIX = "arbitrary..", createClassGroupUtils = (e) => {
28
+ let o = createClassMap(e), { conflictingClassGroups: s, conflictingClassGroupModifiers: l } = e;
29
+ return {
30
+ getClassGroupId: (e) => {
31
+ if (e.startsWith("[") && e.endsWith("]")) return getGroupIdForArbitraryProperty(e);
32
+ let s = e.split(CLASS_PART_SEPARATOR);
33
+ return getGroupRecursive(s, s[0] === "" && s.length > 1 ? 1 : 0, o);
34
+ },
35
+ getConflictingClassGroupIds: (e, o) => {
36
+ if (o) {
37
+ let o = l[e], u = s[e];
38
+ return o ? u ? concatArrays(u, o) : o : u || EMPTY_CONFLICTS;
39
+ }
40
+ return s[e] || EMPTY_CONFLICTS;
41
+ }
42
+ };
43
+ }, getGroupRecursive = (e, o, s) => {
44
+ if (e.length - o === 0) return s.classGroupId;
45
+ let c = e[o], l = s.nextPart.get(c);
46
+ if (l) {
47
+ let s = getGroupRecursive(e, o + 1, l);
48
+ if (s) return s;
49
+ }
50
+ let u = s.validators;
51
+ if (u === null) return;
52
+ let f = o === 0 ? e.join(CLASS_PART_SEPARATOR) : e.slice(o).join(CLASS_PART_SEPARATOR), p = u.length;
53
+ for (let e = 0; e < p; e++) {
54
+ let o = u[e];
55
+ if (o.validator(f)) return o.classGroupId;
56
+ }
57
+ }, getGroupIdForArbitraryProperty = (e) => e.slice(1, -1).indexOf(":") === -1 ? void 0 : (() => {
58
+ let o = e.slice(1, -1), s = o.indexOf(":"), c = o.slice(0, s);
59
+ return c ? ARBITRARY_PROPERTY_PREFIX + c : void 0;
60
+ })(), createClassMap = (e) => {
61
+ let { theme: o, classGroups: s } = e;
62
+ return processClassGroups(s, o);
63
+ }, processClassGroups = (e, o) => {
64
+ let s = createClassPartObject();
65
+ for (let c in e) {
66
+ let l = e[c];
67
+ processClassesRecursively(l, s, c, o);
68
+ }
69
+ return s;
70
+ }, processClassesRecursively = (e, o, s, c) => {
71
+ let l = e.length;
72
+ for (let u = 0; u < l; u++) {
73
+ let l = e[u];
74
+ processClassDefinition(l, o, s, c);
75
+ }
76
+ }, processClassDefinition = (e, o, s, c) => {
77
+ if (typeof e == "string") {
78
+ processStringDefinition(e, o, s);
79
+ return;
80
+ }
81
+ if (typeof e == "function") {
82
+ processFunctionDefinition(e, o, s, c);
83
+ return;
84
+ }
85
+ processObjectDefinition(e, o, s, c);
86
+ }, processStringDefinition = (e, o, s) => {
87
+ let c = e === "" ? o : getPart(o, e);
88
+ c.classGroupId = s;
89
+ }, processFunctionDefinition = (e, o, s, c) => {
90
+ if (isThemeGetter(e)) {
91
+ processClassesRecursively(e(c), o, s, c);
92
+ return;
93
+ }
94
+ o.validators === null && (o.validators = []), o.validators.push(createClassValidatorObject(s, e));
95
+ }, processObjectDefinition = (e, o, s, c) => {
96
+ let l = Object.entries(e), u = l.length;
97
+ for (let e = 0; e < u; e++) {
98
+ let [u, d] = l[e];
99
+ processClassesRecursively(d, getPart(o, u), s, c);
100
+ }
101
+ }, getPart = (e, o) => {
102
+ let s = e, c = o.split(CLASS_PART_SEPARATOR), l = c.length;
103
+ for (let e = 0; e < l; e++) {
104
+ let o = c[e], l = s.nextPart.get(o);
105
+ l || (l = createClassPartObject(), s.nextPart.set(o, l)), s = l;
106
+ }
107
+ return s;
108
+ }, isThemeGetter = (e) => "isThemeGetter" in e && e.isThemeGetter === !0, createLruCache = (e) => {
109
+ if (e < 1) return {
110
+ get: () => void 0,
111
+ set: () => {}
112
+ };
113
+ let o = 0, s = Object.create(null), c = Object.create(null), l = (l, u) => {
114
+ s[l] = u, o++, o > e && (o = 0, c = s, s = Object.create(null));
115
+ };
116
+ return {
117
+ get(e) {
118
+ let o = s[e];
119
+ if (o !== void 0) return o;
120
+ if ((o = c[e]) !== void 0) return l(e, o), o;
121
+ },
122
+ set(e, o) {
123
+ e in s ? s[e] = o : l(e, o);
124
+ }
125
+ };
126
+ }, IMPORTANT_MODIFIER = "!", MODIFIER_SEPARATOR = ":", EMPTY_MODIFIERS = [], createResultObject = (e, o, s, c, l) => ({
127
+ modifiers: e,
128
+ hasImportantModifier: o,
129
+ baseClassName: s,
130
+ maybePostfixModifierPosition: c,
131
+ isExternal: l
132
+ }), createParseClassName = (e) => {
133
+ let { prefix: o, experimentalParseClassName: s } = e, c = (e) => {
134
+ let o = [], s = 0, c = 0, l = 0, u, d = e.length;
135
+ for (let f = 0; f < d; f++) {
136
+ let d = e[f];
137
+ if (s === 0 && c === 0) {
138
+ if (d === MODIFIER_SEPARATOR) {
139
+ o.push(e.slice(l, f)), l = f + 1;
140
+ continue;
141
+ }
142
+ if (d === "/") {
143
+ u = f;
144
+ continue;
145
+ }
146
+ }
147
+ d === "[" ? s++ : d === "]" ? s-- : d === "(" ? c++ : d === ")" && c--;
148
+ }
149
+ let f = o.length === 0 ? e : e.slice(l), p = f, m = !1;
150
+ f.endsWith(IMPORTANT_MODIFIER) ? (p = f.slice(0, -1), m = !0) : f.startsWith(IMPORTANT_MODIFIER) && (p = f.slice(1), m = !0);
151
+ let h = u && u > l ? u - l : void 0;
152
+ return createResultObject(o, m, p, h);
153
+ };
154
+ if (o) {
155
+ let e = o + MODIFIER_SEPARATOR, s = c;
156
+ c = (o) => o.startsWith(e) ? s(o.slice(e.length)) : createResultObject(EMPTY_MODIFIERS, !1, o, void 0, !0);
157
+ }
158
+ if (s) {
159
+ let e = c;
160
+ c = (o) => s({
161
+ className: o,
162
+ parseClassName: e
163
+ });
164
+ }
165
+ return c;
166
+ }, createSortModifiers = (e) => {
167
+ let o = /* @__PURE__ */ new Map();
168
+ return e.orderSensitiveModifiers.forEach((e, s) => {
169
+ o.set(e, 1e6 + s);
170
+ }), (e) => {
171
+ let s = [], c = [];
172
+ for (let l = 0; l < e.length; l++) {
173
+ let u = e[l], d = u[0] === "[", f = o.has(u);
174
+ d || f ? (c.length > 0 && (c.sort(), s.push(...c), c = []), s.push(u)) : c.push(u);
175
+ }
176
+ return c.length > 0 && (c.sort(), s.push(...c)), s;
177
+ };
178
+ }, createConfigUtils = (e) => ({
179
+ cache: createLruCache(e.cacheSize),
180
+ parseClassName: createParseClassName(e),
181
+ sortModifiers: createSortModifiers(e),
182
+ ...createClassGroupUtils(e)
183
+ }), SPLIT_CLASSES_REGEX = /\s+/, mergeClassList = (e, o) => {
184
+ let { parseClassName: s, getClassGroupId: c, getConflictingClassGroupIds: l, sortModifiers: u } = o, d = [], f = e.trim().split(SPLIT_CLASSES_REGEX), p = "";
185
+ for (let e = f.length - 1; e >= 0; --e) {
186
+ let o = f[e], { isExternal: m, modifiers: h, hasImportantModifier: g, baseClassName: _, maybePostfixModifierPosition: v } = s(o);
187
+ if (m) {
188
+ p = o + (p.length > 0 ? " " + p : p);
189
+ continue;
190
+ }
191
+ let y = !!v, b = c(y ? _.substring(0, v) : _);
192
+ if (!b) {
193
+ if (!y) {
194
+ p = o + (p.length > 0 ? " " + p : p);
195
+ continue;
196
+ }
197
+ if (b = c(_), !b) {
198
+ p = o + (p.length > 0 ? " " + p : p);
199
+ continue;
200
+ }
201
+ y = !1;
202
+ }
203
+ let x = h.length === 0 ? "" : h.length === 1 ? h[0] : u(h).join(":"), S = g ? x + IMPORTANT_MODIFIER : x, C = S + b;
204
+ if (d.indexOf(C) > -1) continue;
205
+ d.push(C);
206
+ let w = l(b, y);
207
+ for (let e = 0; e < w.length; ++e) {
208
+ let o = w[e];
209
+ d.push(S + o);
210
+ }
211
+ p = o + (p.length > 0 ? " " + p : p);
212
+ }
213
+ return p;
214
+ }, twJoin = (...e) => {
215
+ let o = 0, s, c, l = "";
216
+ for (; o < e.length;) (s = e[o++]) && (c = toValue(s)) && (l && (l += " "), l += c);
217
+ return l;
218
+ }, toValue = (e) => {
219
+ if (typeof e == "string") return e;
220
+ let o, s = "";
221
+ for (let c = 0; c < e.length; c++) e[c] && (o = toValue(e[c])) && (s && (s += " "), s += o);
222
+ return s;
223
+ }, createTailwindMerge = (e, ...o) => {
224
+ let s, c, l, u, d = (d) => (s = createConfigUtils(o.reduce((e, o) => o(e), e())), c = s.cache.get, l = s.cache.set, u = f, f(d)), f = (e) => {
225
+ let o = c(e);
226
+ if (o) return o;
227
+ let u = mergeClassList(e, s);
228
+ return l(e, u), u;
229
+ };
230
+ return u = d, (...e) => u(twJoin(...e));
231
+ }, fallbackThemeArr = [], fromTheme = (e) => {
232
+ let o = (o) => o[e] || fallbackThemeArr;
233
+ return o.isThemeGetter = !0, o;
234
+ }, arbitraryValueRegex = /^\[(?:(\w[\w-]*):)?(.+)\]$/i, arbitraryVariableRegex = /^\((?:(\w[\w-]*):)?(.+)\)$/i, fractionRegex = /^\d+\/\d+$/, tshirtUnitRegex = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, lengthUnitRegex = /\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$/, colorFunctionRegex = /^(rgba?|hsla?|hwb|(ok)?(lab|lch)|color-mix)\(.+\)$/, shadowRegex = /^(inset_)?-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/, imageRegex = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/, isFraction = (e) => fractionRegex.test(e), isNumber = (e) => !!e && !Number.isNaN(Number(e)), isInteger = (e) => !!e && Number.isInteger(Number(e)), isPercent = (e) => e.endsWith("%") && isNumber(e.slice(0, -1)), isTshirtSize = (e) => tshirtUnitRegex.test(e), isAny = () => !0, isLengthOnly = (e) => lengthUnitRegex.test(e) && !colorFunctionRegex.test(e), isNever = () => !1, isShadow = (e) => shadowRegex.test(e), isImage = (e) => imageRegex.test(e), isAnyNonArbitrary = (e) => !isArbitraryValue(e) && !isArbitraryVariable(e), isArbitrarySize = (e) => getIsArbitraryValue(e, isLabelSize, isNever), isArbitraryValue = (e) => arbitraryValueRegex.test(e), isArbitraryLength = (e) => getIsArbitraryValue(e, isLabelLength, isLengthOnly), isArbitraryNumber = (e) => getIsArbitraryValue(e, isLabelNumber, isNumber), isArbitraryPosition = (e) => getIsArbitraryValue(e, isLabelPosition, isNever), isArbitraryImage = (e) => getIsArbitraryValue(e, isLabelImage, isImage), isArbitraryShadow = (e) => getIsArbitraryValue(e, isLabelShadow, isShadow), isArbitraryVariable = (e) => arbitraryVariableRegex.test(e), isArbitraryVariableLength = (e) => getIsArbitraryVariable(e, isLabelLength), isArbitraryVariableFamilyName = (e) => getIsArbitraryVariable(e, isLabelFamilyName), isArbitraryVariablePosition = (e) => getIsArbitraryVariable(e, isLabelPosition), isArbitraryVariableSize = (e) => getIsArbitraryVariable(e, isLabelSize), isArbitraryVariableImage = (e) => getIsArbitraryVariable(e, isLabelImage), isArbitraryVariableShadow = (e) => getIsArbitraryVariable(e, isLabelShadow, !0), getIsArbitraryValue = (e, o, s) => {
235
+ let c = arbitraryValueRegex.exec(e);
236
+ return c ? c[1] ? o(c[1]) : s(c[2]) : !1;
237
+ }, getIsArbitraryVariable = (e, o, s = !1) => {
238
+ let c = arbitraryVariableRegex.exec(e);
239
+ return c ? c[1] ? o(c[1]) : s : !1;
240
+ }, isLabelPosition = (e) => e === "position" || e === "percentage", isLabelImage = (e) => e === "image" || e === "url", isLabelSize = (e) => e === "length" || e === "size" || e === "bg-size", isLabelLength = (e) => e === "length", isLabelNumber = (e) => e === "number", isLabelFamilyName = (e) => e === "family-name", isLabelShadow = (e) => e === "shadow", twMerge = /* @__PURE__ */ createTailwindMerge(() => {
241
+ let e = fromTheme("color"), o = fromTheme("font"), s = fromTheme("text"), c = fromTheme("font-weight"), l = fromTheme("tracking"), u = fromTheme("leading"), d = fromTheme("breakpoint"), f = fromTheme("container"), p = fromTheme("spacing"), m = fromTheme("radius"), h = fromTheme("shadow"), g = fromTheme("inset-shadow"), _ = fromTheme("text-shadow"), v = fromTheme("drop-shadow"), y = fromTheme("blur"), b = fromTheme("perspective"), x = fromTheme("aspect"), S = fromTheme("ease"), C = fromTheme("animate"), w = () => [
242
+ "auto",
243
+ "avoid",
244
+ "all",
245
+ "avoid-page",
246
+ "page",
247
+ "left",
248
+ "right",
249
+ "column"
250
+ ], T = () => [
251
+ "center",
252
+ "top",
253
+ "bottom",
254
+ "left",
255
+ "right",
256
+ "top-left",
257
+ "left-top",
258
+ "top-right",
259
+ "right-top",
260
+ "bottom-right",
261
+ "right-bottom",
262
+ "bottom-left",
263
+ "left-bottom"
264
+ ], E = () => [
265
+ ...T(),
266
+ isArbitraryVariable,
267
+ isArbitraryValue
268
+ ], D = () => [
269
+ "auto",
270
+ "hidden",
271
+ "clip",
272
+ "visible",
273
+ "scroll"
274
+ ], O = () => [
275
+ "auto",
276
+ "contain",
277
+ "none"
278
+ ], k = () => [
279
+ isArbitraryVariable,
280
+ isArbitraryValue,
281
+ p
282
+ ], A = () => [
283
+ isFraction,
284
+ "full",
285
+ "auto",
286
+ ...k()
287
+ ], j = () => [
288
+ isInteger,
289
+ "none",
290
+ "subgrid",
291
+ isArbitraryVariable,
292
+ isArbitraryValue
293
+ ], M = () => [
294
+ "auto",
295
+ { span: [
296
+ "full",
297
+ isInteger,
298
+ isArbitraryVariable,
299
+ isArbitraryValue
300
+ ] },
301
+ isInteger,
302
+ isArbitraryVariable,
303
+ isArbitraryValue
304
+ ], N = () => [
305
+ isInteger,
306
+ "auto",
307
+ isArbitraryVariable,
308
+ isArbitraryValue
309
+ ], P = () => [
310
+ "auto",
311
+ "min",
312
+ "max",
313
+ "fr",
314
+ isArbitraryVariable,
315
+ isArbitraryValue
316
+ ], F = () => [
317
+ "start",
318
+ "end",
319
+ "center",
320
+ "between",
321
+ "around",
322
+ "evenly",
323
+ "stretch",
324
+ "baseline",
325
+ "center-safe",
326
+ "end-safe"
327
+ ], I = () => [
328
+ "start",
329
+ "end",
330
+ "center",
331
+ "stretch",
332
+ "center-safe",
333
+ "end-safe"
334
+ ], L = () => ["auto", ...k()], R = () => [
335
+ isFraction,
336
+ "auto",
337
+ "full",
338
+ "dvw",
339
+ "dvh",
340
+ "lvw",
341
+ "lvh",
342
+ "svw",
343
+ "svh",
344
+ "min",
345
+ "max",
346
+ "fit",
347
+ ...k()
348
+ ], z = () => [
349
+ e,
350
+ isArbitraryVariable,
351
+ isArbitraryValue
352
+ ], B = () => [
353
+ ...T(),
354
+ isArbitraryVariablePosition,
355
+ isArbitraryPosition,
356
+ { position: [isArbitraryVariable, isArbitraryValue] }
357
+ ], V = () => ["no-repeat", { repeat: [
358
+ "",
359
+ "x",
360
+ "y",
361
+ "space",
362
+ "round"
363
+ ] }], H = () => [
364
+ "auto",
365
+ "cover",
366
+ "contain",
367
+ isArbitraryVariableSize,
368
+ isArbitrarySize,
369
+ { size: [isArbitraryVariable, isArbitraryValue] }
370
+ ], U = () => [
371
+ isPercent,
372
+ isArbitraryVariableLength,
373
+ isArbitraryLength
374
+ ], W = () => [
375
+ "",
376
+ "none",
377
+ "full",
378
+ m,
379
+ isArbitraryVariable,
380
+ isArbitraryValue
381
+ ], G = () => [
382
+ "",
383
+ isNumber,
384
+ isArbitraryVariableLength,
385
+ isArbitraryLength
386
+ ], K = () => [
387
+ "solid",
388
+ "dashed",
389
+ "dotted",
390
+ "double"
391
+ ], q = () => [
392
+ "normal",
393
+ "multiply",
394
+ "screen",
395
+ "overlay",
396
+ "darken",
397
+ "lighten",
398
+ "color-dodge",
399
+ "color-burn",
400
+ "hard-light",
401
+ "soft-light",
402
+ "difference",
403
+ "exclusion",
404
+ "hue",
405
+ "saturation",
406
+ "color",
407
+ "luminosity"
408
+ ], J = () => [
409
+ isNumber,
410
+ isPercent,
411
+ isArbitraryVariablePosition,
412
+ isArbitraryPosition
413
+ ], Y = () => [
414
+ "",
415
+ "none",
416
+ y,
417
+ isArbitraryVariable,
418
+ isArbitraryValue
419
+ ], X = () => [
420
+ "none",
421
+ isNumber,
422
+ isArbitraryVariable,
423
+ isArbitraryValue
424
+ ], Z = () => [
425
+ "none",
426
+ isNumber,
427
+ isArbitraryVariable,
428
+ isArbitraryValue
429
+ ], Q = () => [
430
+ isNumber,
431
+ isArbitraryVariable,
432
+ isArbitraryValue
433
+ ], $ = () => [
434
+ isFraction,
435
+ "full",
436
+ ...k()
437
+ ];
438
+ return {
439
+ cacheSize: 500,
440
+ theme: {
441
+ animate: [
442
+ "spin",
443
+ "ping",
444
+ "pulse",
445
+ "bounce"
446
+ ],
447
+ aspect: ["video"],
448
+ blur: [isTshirtSize],
449
+ breakpoint: [isTshirtSize],
450
+ color: [isAny],
451
+ container: [isTshirtSize],
452
+ "drop-shadow": [isTshirtSize],
453
+ ease: [
454
+ "in",
455
+ "out",
456
+ "in-out"
457
+ ],
458
+ font: [isAnyNonArbitrary],
459
+ "font-weight": [
460
+ "thin",
461
+ "extralight",
462
+ "light",
463
+ "normal",
464
+ "medium",
465
+ "semibold",
466
+ "bold",
467
+ "extrabold",
468
+ "black"
469
+ ],
470
+ "inset-shadow": [isTshirtSize],
471
+ leading: [
472
+ "none",
473
+ "tight",
474
+ "snug",
475
+ "normal",
476
+ "relaxed",
477
+ "loose"
478
+ ],
479
+ perspective: [
480
+ "dramatic",
481
+ "near",
482
+ "normal",
483
+ "midrange",
484
+ "distant",
485
+ "none"
486
+ ],
487
+ radius: [isTshirtSize],
488
+ shadow: [isTshirtSize],
489
+ spacing: ["px", isNumber],
490
+ text: [isTshirtSize],
491
+ "text-shadow": [isTshirtSize],
492
+ tracking: [
493
+ "tighter",
494
+ "tight",
495
+ "normal",
496
+ "wide",
497
+ "wider",
498
+ "widest"
499
+ ]
500
+ },
501
+ classGroups: {
502
+ aspect: [{ aspect: [
503
+ "auto",
504
+ "square",
505
+ isFraction,
506
+ isArbitraryValue,
507
+ isArbitraryVariable,
508
+ x
509
+ ] }],
510
+ container: ["container"],
511
+ columns: [{ columns: [
512
+ isNumber,
513
+ isArbitraryValue,
514
+ isArbitraryVariable,
515
+ f
516
+ ] }],
517
+ "break-after": [{ "break-after": w() }],
518
+ "break-before": [{ "break-before": w() }],
519
+ "break-inside": [{ "break-inside": [
520
+ "auto",
521
+ "avoid",
522
+ "avoid-page",
523
+ "avoid-column"
524
+ ] }],
525
+ "box-decoration": [{ "box-decoration": ["slice", "clone"] }],
526
+ box: [{ box: ["border", "content"] }],
527
+ display: [
528
+ "block",
529
+ "inline-block",
530
+ "inline",
531
+ "flex",
532
+ "inline-flex",
533
+ "table",
534
+ "inline-table",
535
+ "table-caption",
536
+ "table-cell",
537
+ "table-column",
538
+ "table-column-group",
539
+ "table-footer-group",
540
+ "table-header-group",
541
+ "table-row-group",
542
+ "table-row",
543
+ "flow-root",
544
+ "grid",
545
+ "inline-grid",
546
+ "contents",
547
+ "list-item",
548
+ "hidden"
549
+ ],
550
+ sr: ["sr-only", "not-sr-only"],
551
+ float: [{ float: [
552
+ "right",
553
+ "left",
554
+ "none",
555
+ "start",
556
+ "end"
557
+ ] }],
558
+ clear: [{ clear: [
559
+ "left",
560
+ "right",
561
+ "both",
562
+ "none",
563
+ "start",
564
+ "end"
565
+ ] }],
566
+ isolation: ["isolate", "isolation-auto"],
567
+ "object-fit": [{ object: [
568
+ "contain",
569
+ "cover",
570
+ "fill",
571
+ "none",
572
+ "scale-down"
573
+ ] }],
574
+ "object-position": [{ object: E() }],
575
+ overflow: [{ overflow: D() }],
576
+ "overflow-x": [{ "overflow-x": D() }],
577
+ "overflow-y": [{ "overflow-y": D() }],
578
+ overscroll: [{ overscroll: O() }],
579
+ "overscroll-x": [{ "overscroll-x": O() }],
580
+ "overscroll-y": [{ "overscroll-y": O() }],
581
+ position: [
582
+ "static",
583
+ "fixed",
584
+ "absolute",
585
+ "relative",
586
+ "sticky"
587
+ ],
588
+ inset: [{ inset: A() }],
589
+ "inset-x": [{ "inset-x": A() }],
590
+ "inset-y": [{ "inset-y": A() }],
591
+ start: [{ start: A() }],
592
+ end: [{ end: A() }],
593
+ top: [{ top: A() }],
594
+ right: [{ right: A() }],
595
+ bottom: [{ bottom: A() }],
596
+ left: [{ left: A() }],
597
+ visibility: [
598
+ "visible",
599
+ "invisible",
600
+ "collapse"
601
+ ],
602
+ z: [{ z: [
603
+ isInteger,
604
+ "auto",
605
+ isArbitraryVariable,
606
+ isArbitraryValue
607
+ ] }],
608
+ basis: [{ basis: [
609
+ isFraction,
610
+ "full",
611
+ "auto",
612
+ f,
613
+ ...k()
614
+ ] }],
615
+ "flex-direction": [{ flex: [
616
+ "row",
617
+ "row-reverse",
618
+ "col",
619
+ "col-reverse"
620
+ ] }],
621
+ "flex-wrap": [{ flex: [
622
+ "nowrap",
623
+ "wrap",
624
+ "wrap-reverse"
625
+ ] }],
626
+ flex: [{ flex: [
627
+ isNumber,
628
+ isFraction,
629
+ "auto",
630
+ "initial",
631
+ "none",
632
+ isArbitraryValue
633
+ ] }],
634
+ grow: [{ grow: [
635
+ "",
636
+ isNumber,
637
+ isArbitraryVariable,
638
+ isArbitraryValue
639
+ ] }],
640
+ shrink: [{ shrink: [
641
+ "",
642
+ isNumber,
643
+ isArbitraryVariable,
644
+ isArbitraryValue
645
+ ] }],
646
+ order: [{ order: [
647
+ isInteger,
648
+ "first",
649
+ "last",
650
+ "none",
651
+ isArbitraryVariable,
652
+ isArbitraryValue
653
+ ] }],
654
+ "grid-cols": [{ "grid-cols": j() }],
655
+ "col-start-end": [{ col: M() }],
656
+ "col-start": [{ "col-start": N() }],
657
+ "col-end": [{ "col-end": N() }],
658
+ "grid-rows": [{ "grid-rows": j() }],
659
+ "row-start-end": [{ row: M() }],
660
+ "row-start": [{ "row-start": N() }],
661
+ "row-end": [{ "row-end": N() }],
662
+ "grid-flow": [{ "grid-flow": [
663
+ "row",
664
+ "col",
665
+ "dense",
666
+ "row-dense",
667
+ "col-dense"
668
+ ] }],
669
+ "auto-cols": [{ "auto-cols": P() }],
670
+ "auto-rows": [{ "auto-rows": P() }],
671
+ gap: [{ gap: k() }],
672
+ "gap-x": [{ "gap-x": k() }],
673
+ "gap-y": [{ "gap-y": k() }],
674
+ "justify-content": [{ justify: [...F(), "normal"] }],
675
+ "justify-items": [{ "justify-items": [...I(), "normal"] }],
676
+ "justify-self": [{ "justify-self": ["auto", ...I()] }],
677
+ "align-content": [{ content: ["normal", ...F()] }],
678
+ "align-items": [{ items: [...I(), { baseline: ["", "last"] }] }],
679
+ "align-self": [{ self: [
680
+ "auto",
681
+ ...I(),
682
+ { baseline: ["", "last"] }
683
+ ] }],
684
+ "place-content": [{ "place-content": F() }],
685
+ "place-items": [{ "place-items": [...I(), "baseline"] }],
686
+ "place-self": [{ "place-self": ["auto", ...I()] }],
687
+ p: [{ p: k() }],
688
+ px: [{ px: k() }],
689
+ py: [{ py: k() }],
690
+ ps: [{ ps: k() }],
691
+ pe: [{ pe: k() }],
692
+ pt: [{ pt: k() }],
693
+ pr: [{ pr: k() }],
694
+ pb: [{ pb: k() }],
695
+ pl: [{ pl: k() }],
696
+ m: [{ m: L() }],
697
+ mx: [{ mx: L() }],
698
+ my: [{ my: L() }],
699
+ ms: [{ ms: L() }],
700
+ me: [{ me: L() }],
701
+ mt: [{ mt: L() }],
702
+ mr: [{ mr: L() }],
703
+ mb: [{ mb: L() }],
704
+ ml: [{ ml: L() }],
705
+ "space-x": [{ "space-x": k() }],
706
+ "space-x-reverse": ["space-x-reverse"],
707
+ "space-y": [{ "space-y": k() }],
708
+ "space-y-reverse": ["space-y-reverse"],
709
+ size: [{ size: R() }],
710
+ w: [{ w: [
711
+ f,
712
+ "screen",
713
+ ...R()
714
+ ] }],
715
+ "min-w": [{ "min-w": [
716
+ f,
717
+ "screen",
718
+ "none",
719
+ ...R()
720
+ ] }],
721
+ "max-w": [{ "max-w": [
722
+ f,
723
+ "screen",
724
+ "none",
725
+ "prose",
726
+ { screen: [d] },
727
+ ...R()
728
+ ] }],
729
+ h: [{ h: [
730
+ "screen",
731
+ "lh",
732
+ ...R()
733
+ ] }],
734
+ "min-h": [{ "min-h": [
735
+ "screen",
736
+ "lh",
737
+ "none",
738
+ ...R()
739
+ ] }],
740
+ "max-h": [{ "max-h": [
741
+ "screen",
742
+ "lh",
743
+ ...R()
744
+ ] }],
745
+ "font-size": [{ text: [
746
+ "base",
747
+ s,
748
+ isArbitraryVariableLength,
749
+ isArbitraryLength
750
+ ] }],
751
+ "font-smoothing": ["antialiased", "subpixel-antialiased"],
752
+ "font-style": ["italic", "not-italic"],
753
+ "font-weight": [{ font: [
754
+ c,
755
+ isArbitraryVariable,
756
+ isArbitraryNumber
757
+ ] }],
758
+ "font-stretch": [{ "font-stretch": [
759
+ "ultra-condensed",
760
+ "extra-condensed",
761
+ "condensed",
762
+ "semi-condensed",
763
+ "normal",
764
+ "semi-expanded",
765
+ "expanded",
766
+ "extra-expanded",
767
+ "ultra-expanded",
768
+ isPercent,
769
+ isArbitraryValue
770
+ ] }],
771
+ "font-family": [{ font: [
772
+ isArbitraryVariableFamilyName,
773
+ isArbitraryValue,
774
+ o
775
+ ] }],
776
+ "fvn-normal": ["normal-nums"],
777
+ "fvn-ordinal": ["ordinal"],
778
+ "fvn-slashed-zero": ["slashed-zero"],
779
+ "fvn-figure": ["lining-nums", "oldstyle-nums"],
780
+ "fvn-spacing": ["proportional-nums", "tabular-nums"],
781
+ "fvn-fraction": ["diagonal-fractions", "stacked-fractions"],
782
+ tracking: [{ tracking: [
783
+ l,
784
+ isArbitraryVariable,
785
+ isArbitraryValue
786
+ ] }],
787
+ "line-clamp": [{ "line-clamp": [
788
+ isNumber,
789
+ "none",
790
+ isArbitraryVariable,
791
+ isArbitraryNumber
792
+ ] }],
793
+ leading: [{ leading: [u, ...k()] }],
794
+ "list-image": [{ "list-image": [
795
+ "none",
796
+ isArbitraryVariable,
797
+ isArbitraryValue
798
+ ] }],
799
+ "list-style-position": [{ list: ["inside", "outside"] }],
800
+ "list-style-type": [{ list: [
801
+ "disc",
802
+ "decimal",
803
+ "none",
804
+ isArbitraryVariable,
805
+ isArbitraryValue
806
+ ] }],
807
+ "text-alignment": [{ text: [
808
+ "left",
809
+ "center",
810
+ "right",
811
+ "justify",
812
+ "start",
813
+ "end"
814
+ ] }],
815
+ "placeholder-color": [{ placeholder: z() }],
816
+ "text-color": [{ text: z() }],
817
+ "text-decoration": [
818
+ "underline",
819
+ "overline",
820
+ "line-through",
821
+ "no-underline"
822
+ ],
823
+ "text-decoration-style": [{ decoration: [...K(), "wavy"] }],
824
+ "text-decoration-thickness": [{ decoration: [
825
+ isNumber,
826
+ "from-font",
827
+ "auto",
828
+ isArbitraryVariable,
829
+ isArbitraryLength
830
+ ] }],
831
+ "text-decoration-color": [{ decoration: z() }],
832
+ "underline-offset": [{ "underline-offset": [
833
+ isNumber,
834
+ "auto",
835
+ isArbitraryVariable,
836
+ isArbitraryValue
837
+ ] }],
838
+ "text-transform": [
839
+ "uppercase",
840
+ "lowercase",
841
+ "capitalize",
842
+ "normal-case"
843
+ ],
844
+ "text-overflow": [
845
+ "truncate",
846
+ "text-ellipsis",
847
+ "text-clip"
848
+ ],
849
+ "text-wrap": [{ text: [
850
+ "wrap",
851
+ "nowrap",
852
+ "balance",
853
+ "pretty"
854
+ ] }],
855
+ indent: [{ indent: k() }],
856
+ "vertical-align": [{ align: [
857
+ "baseline",
858
+ "top",
859
+ "middle",
860
+ "bottom",
861
+ "text-top",
862
+ "text-bottom",
863
+ "sub",
864
+ "super",
865
+ isArbitraryVariable,
866
+ isArbitraryValue
867
+ ] }],
868
+ whitespace: [{ whitespace: [
869
+ "normal",
870
+ "nowrap",
871
+ "pre",
872
+ "pre-line",
873
+ "pre-wrap",
874
+ "break-spaces"
875
+ ] }],
876
+ break: [{ break: [
877
+ "normal",
878
+ "words",
879
+ "all",
880
+ "keep"
881
+ ] }],
882
+ wrap: [{ wrap: [
883
+ "break-word",
884
+ "anywhere",
885
+ "normal"
886
+ ] }],
887
+ hyphens: [{ hyphens: [
888
+ "none",
889
+ "manual",
890
+ "auto"
891
+ ] }],
892
+ content: [{ content: [
893
+ "none",
894
+ isArbitraryVariable,
895
+ isArbitraryValue
896
+ ] }],
897
+ "bg-attachment": [{ bg: [
898
+ "fixed",
899
+ "local",
900
+ "scroll"
901
+ ] }],
902
+ "bg-clip": [{ "bg-clip": [
903
+ "border",
904
+ "padding",
905
+ "content",
906
+ "text"
907
+ ] }],
908
+ "bg-origin": [{ "bg-origin": [
909
+ "border",
910
+ "padding",
911
+ "content"
912
+ ] }],
913
+ "bg-position": [{ bg: B() }],
914
+ "bg-repeat": [{ bg: V() }],
915
+ "bg-size": [{ bg: H() }],
916
+ "bg-image": [{ bg: [
917
+ "none",
918
+ {
919
+ linear: [
920
+ { to: [
921
+ "t",
922
+ "tr",
923
+ "r",
924
+ "br",
925
+ "b",
926
+ "bl",
927
+ "l",
928
+ "tl"
929
+ ] },
930
+ isInteger,
931
+ isArbitraryVariable,
932
+ isArbitraryValue
933
+ ],
934
+ radial: [
935
+ "",
936
+ isArbitraryVariable,
937
+ isArbitraryValue
938
+ ],
939
+ conic: [
940
+ isInteger,
941
+ isArbitraryVariable,
942
+ isArbitraryValue
943
+ ]
944
+ },
945
+ isArbitraryVariableImage,
946
+ isArbitraryImage
947
+ ] }],
948
+ "bg-color": [{ bg: z() }],
949
+ "gradient-from-pos": [{ from: U() }],
950
+ "gradient-via-pos": [{ via: U() }],
951
+ "gradient-to-pos": [{ to: U() }],
952
+ "gradient-from": [{ from: z() }],
953
+ "gradient-via": [{ via: z() }],
954
+ "gradient-to": [{ to: z() }],
955
+ rounded: [{ rounded: W() }],
956
+ "rounded-s": [{ "rounded-s": W() }],
957
+ "rounded-e": [{ "rounded-e": W() }],
958
+ "rounded-t": [{ "rounded-t": W() }],
959
+ "rounded-r": [{ "rounded-r": W() }],
960
+ "rounded-b": [{ "rounded-b": W() }],
961
+ "rounded-l": [{ "rounded-l": W() }],
962
+ "rounded-ss": [{ "rounded-ss": W() }],
963
+ "rounded-se": [{ "rounded-se": W() }],
964
+ "rounded-ee": [{ "rounded-ee": W() }],
965
+ "rounded-es": [{ "rounded-es": W() }],
966
+ "rounded-tl": [{ "rounded-tl": W() }],
967
+ "rounded-tr": [{ "rounded-tr": W() }],
968
+ "rounded-br": [{ "rounded-br": W() }],
969
+ "rounded-bl": [{ "rounded-bl": W() }],
970
+ "border-w": [{ border: G() }],
971
+ "border-w-x": [{ "border-x": G() }],
972
+ "border-w-y": [{ "border-y": G() }],
973
+ "border-w-s": [{ "border-s": G() }],
974
+ "border-w-e": [{ "border-e": G() }],
975
+ "border-w-t": [{ "border-t": G() }],
976
+ "border-w-r": [{ "border-r": G() }],
977
+ "border-w-b": [{ "border-b": G() }],
978
+ "border-w-l": [{ "border-l": G() }],
979
+ "divide-x": [{ "divide-x": G() }],
980
+ "divide-x-reverse": ["divide-x-reverse"],
981
+ "divide-y": [{ "divide-y": G() }],
982
+ "divide-y-reverse": ["divide-y-reverse"],
983
+ "border-style": [{ border: [
984
+ ...K(),
985
+ "hidden",
986
+ "none"
987
+ ] }],
988
+ "divide-style": [{ divide: [
989
+ ...K(),
990
+ "hidden",
991
+ "none"
992
+ ] }],
993
+ "border-color": [{ border: z() }],
994
+ "border-color-x": [{ "border-x": z() }],
995
+ "border-color-y": [{ "border-y": z() }],
996
+ "border-color-s": [{ "border-s": z() }],
997
+ "border-color-e": [{ "border-e": z() }],
998
+ "border-color-t": [{ "border-t": z() }],
999
+ "border-color-r": [{ "border-r": z() }],
1000
+ "border-color-b": [{ "border-b": z() }],
1001
+ "border-color-l": [{ "border-l": z() }],
1002
+ "divide-color": [{ divide: z() }],
1003
+ "outline-style": [{ outline: [
1004
+ ...K(),
1005
+ "none",
1006
+ "hidden"
1007
+ ] }],
1008
+ "outline-offset": [{ "outline-offset": [
1009
+ isNumber,
1010
+ isArbitraryVariable,
1011
+ isArbitraryValue
1012
+ ] }],
1013
+ "outline-w": [{ outline: [
1014
+ "",
1015
+ isNumber,
1016
+ isArbitraryVariableLength,
1017
+ isArbitraryLength
1018
+ ] }],
1019
+ "outline-color": [{ outline: z() }],
1020
+ shadow: [{ shadow: [
1021
+ "",
1022
+ "none",
1023
+ h,
1024
+ isArbitraryVariableShadow,
1025
+ isArbitraryShadow
1026
+ ] }],
1027
+ "shadow-color": [{ shadow: z() }],
1028
+ "inset-shadow": [{ "inset-shadow": [
1029
+ "none",
1030
+ g,
1031
+ isArbitraryVariableShadow,
1032
+ isArbitraryShadow
1033
+ ] }],
1034
+ "inset-shadow-color": [{ "inset-shadow": z() }],
1035
+ "ring-w": [{ ring: G() }],
1036
+ "ring-w-inset": ["ring-inset"],
1037
+ "ring-color": [{ ring: z() }],
1038
+ "ring-offset-w": [{ "ring-offset": [isNumber, isArbitraryLength] }],
1039
+ "ring-offset-color": [{ "ring-offset": z() }],
1040
+ "inset-ring-w": [{ "inset-ring": G() }],
1041
+ "inset-ring-color": [{ "inset-ring": z() }],
1042
+ "text-shadow": [{ "text-shadow": [
1043
+ "none",
1044
+ _,
1045
+ isArbitraryVariableShadow,
1046
+ isArbitraryShadow
1047
+ ] }],
1048
+ "text-shadow-color": [{ "text-shadow": z() }],
1049
+ opacity: [{ opacity: [
1050
+ isNumber,
1051
+ isArbitraryVariable,
1052
+ isArbitraryValue
1053
+ ] }],
1054
+ "mix-blend": [{ "mix-blend": [
1055
+ ...q(),
1056
+ "plus-darker",
1057
+ "plus-lighter"
1058
+ ] }],
1059
+ "bg-blend": [{ "bg-blend": q() }],
1060
+ "mask-clip": [{ "mask-clip": [
1061
+ "border",
1062
+ "padding",
1063
+ "content",
1064
+ "fill",
1065
+ "stroke",
1066
+ "view"
1067
+ ] }, "mask-no-clip"],
1068
+ "mask-composite": [{ mask: [
1069
+ "add",
1070
+ "subtract",
1071
+ "intersect",
1072
+ "exclude"
1073
+ ] }],
1074
+ "mask-image-linear-pos": [{ "mask-linear": [isNumber] }],
1075
+ "mask-image-linear-from-pos": [{ "mask-linear-from": J() }],
1076
+ "mask-image-linear-to-pos": [{ "mask-linear-to": J() }],
1077
+ "mask-image-linear-from-color": [{ "mask-linear-from": z() }],
1078
+ "mask-image-linear-to-color": [{ "mask-linear-to": z() }],
1079
+ "mask-image-t-from-pos": [{ "mask-t-from": J() }],
1080
+ "mask-image-t-to-pos": [{ "mask-t-to": J() }],
1081
+ "mask-image-t-from-color": [{ "mask-t-from": z() }],
1082
+ "mask-image-t-to-color": [{ "mask-t-to": z() }],
1083
+ "mask-image-r-from-pos": [{ "mask-r-from": J() }],
1084
+ "mask-image-r-to-pos": [{ "mask-r-to": J() }],
1085
+ "mask-image-r-from-color": [{ "mask-r-from": z() }],
1086
+ "mask-image-r-to-color": [{ "mask-r-to": z() }],
1087
+ "mask-image-b-from-pos": [{ "mask-b-from": J() }],
1088
+ "mask-image-b-to-pos": [{ "mask-b-to": J() }],
1089
+ "mask-image-b-from-color": [{ "mask-b-from": z() }],
1090
+ "mask-image-b-to-color": [{ "mask-b-to": z() }],
1091
+ "mask-image-l-from-pos": [{ "mask-l-from": J() }],
1092
+ "mask-image-l-to-pos": [{ "mask-l-to": J() }],
1093
+ "mask-image-l-from-color": [{ "mask-l-from": z() }],
1094
+ "mask-image-l-to-color": [{ "mask-l-to": z() }],
1095
+ "mask-image-x-from-pos": [{ "mask-x-from": J() }],
1096
+ "mask-image-x-to-pos": [{ "mask-x-to": J() }],
1097
+ "mask-image-x-from-color": [{ "mask-x-from": z() }],
1098
+ "mask-image-x-to-color": [{ "mask-x-to": z() }],
1099
+ "mask-image-y-from-pos": [{ "mask-y-from": J() }],
1100
+ "mask-image-y-to-pos": [{ "mask-y-to": J() }],
1101
+ "mask-image-y-from-color": [{ "mask-y-from": z() }],
1102
+ "mask-image-y-to-color": [{ "mask-y-to": z() }],
1103
+ "mask-image-radial": [{ "mask-radial": [isArbitraryVariable, isArbitraryValue] }],
1104
+ "mask-image-radial-from-pos": [{ "mask-radial-from": J() }],
1105
+ "mask-image-radial-to-pos": [{ "mask-radial-to": J() }],
1106
+ "mask-image-radial-from-color": [{ "mask-radial-from": z() }],
1107
+ "mask-image-radial-to-color": [{ "mask-radial-to": z() }],
1108
+ "mask-image-radial-shape": [{ "mask-radial": ["circle", "ellipse"] }],
1109
+ "mask-image-radial-size": [{ "mask-radial": [{
1110
+ closest: ["side", "corner"],
1111
+ farthest: ["side", "corner"]
1112
+ }] }],
1113
+ "mask-image-radial-pos": [{ "mask-radial-at": T() }],
1114
+ "mask-image-conic-pos": [{ "mask-conic": [isNumber] }],
1115
+ "mask-image-conic-from-pos": [{ "mask-conic-from": J() }],
1116
+ "mask-image-conic-to-pos": [{ "mask-conic-to": J() }],
1117
+ "mask-image-conic-from-color": [{ "mask-conic-from": z() }],
1118
+ "mask-image-conic-to-color": [{ "mask-conic-to": z() }],
1119
+ "mask-mode": [{ mask: [
1120
+ "alpha",
1121
+ "luminance",
1122
+ "match"
1123
+ ] }],
1124
+ "mask-origin": [{ "mask-origin": [
1125
+ "border",
1126
+ "padding",
1127
+ "content",
1128
+ "fill",
1129
+ "stroke",
1130
+ "view"
1131
+ ] }],
1132
+ "mask-position": [{ mask: B() }],
1133
+ "mask-repeat": [{ mask: V() }],
1134
+ "mask-size": [{ mask: H() }],
1135
+ "mask-type": [{ "mask-type": ["alpha", "luminance"] }],
1136
+ "mask-image": [{ mask: [
1137
+ "none",
1138
+ isArbitraryVariable,
1139
+ isArbitraryValue
1140
+ ] }],
1141
+ filter: [{ filter: [
1142
+ "",
1143
+ "none",
1144
+ isArbitraryVariable,
1145
+ isArbitraryValue
1146
+ ] }],
1147
+ blur: [{ blur: Y() }],
1148
+ brightness: [{ brightness: [
1149
+ isNumber,
1150
+ isArbitraryVariable,
1151
+ isArbitraryValue
1152
+ ] }],
1153
+ contrast: [{ contrast: [
1154
+ isNumber,
1155
+ isArbitraryVariable,
1156
+ isArbitraryValue
1157
+ ] }],
1158
+ "drop-shadow": [{ "drop-shadow": [
1159
+ "",
1160
+ "none",
1161
+ v,
1162
+ isArbitraryVariableShadow,
1163
+ isArbitraryShadow
1164
+ ] }],
1165
+ "drop-shadow-color": [{ "drop-shadow": z() }],
1166
+ grayscale: [{ grayscale: [
1167
+ "",
1168
+ isNumber,
1169
+ isArbitraryVariable,
1170
+ isArbitraryValue
1171
+ ] }],
1172
+ "hue-rotate": [{ "hue-rotate": [
1173
+ isNumber,
1174
+ isArbitraryVariable,
1175
+ isArbitraryValue
1176
+ ] }],
1177
+ invert: [{ invert: [
1178
+ "",
1179
+ isNumber,
1180
+ isArbitraryVariable,
1181
+ isArbitraryValue
1182
+ ] }],
1183
+ saturate: [{ saturate: [
1184
+ isNumber,
1185
+ isArbitraryVariable,
1186
+ isArbitraryValue
1187
+ ] }],
1188
+ sepia: [{ sepia: [
1189
+ "",
1190
+ isNumber,
1191
+ isArbitraryVariable,
1192
+ isArbitraryValue
1193
+ ] }],
1194
+ "backdrop-filter": [{ "backdrop-filter": [
1195
+ "",
1196
+ "none",
1197
+ isArbitraryVariable,
1198
+ isArbitraryValue
1199
+ ] }],
1200
+ "backdrop-blur": [{ "backdrop-blur": Y() }],
1201
+ "backdrop-brightness": [{ "backdrop-brightness": [
1202
+ isNumber,
1203
+ isArbitraryVariable,
1204
+ isArbitraryValue
1205
+ ] }],
1206
+ "backdrop-contrast": [{ "backdrop-contrast": [
1207
+ isNumber,
1208
+ isArbitraryVariable,
1209
+ isArbitraryValue
1210
+ ] }],
1211
+ "backdrop-grayscale": [{ "backdrop-grayscale": [
1212
+ "",
1213
+ isNumber,
1214
+ isArbitraryVariable,
1215
+ isArbitraryValue
1216
+ ] }],
1217
+ "backdrop-hue-rotate": [{ "backdrop-hue-rotate": [
1218
+ isNumber,
1219
+ isArbitraryVariable,
1220
+ isArbitraryValue
1221
+ ] }],
1222
+ "backdrop-invert": [{ "backdrop-invert": [
1223
+ "",
1224
+ isNumber,
1225
+ isArbitraryVariable,
1226
+ isArbitraryValue
1227
+ ] }],
1228
+ "backdrop-opacity": [{ "backdrop-opacity": [
1229
+ isNumber,
1230
+ isArbitraryVariable,
1231
+ isArbitraryValue
1232
+ ] }],
1233
+ "backdrop-saturate": [{ "backdrop-saturate": [
1234
+ isNumber,
1235
+ isArbitraryVariable,
1236
+ isArbitraryValue
1237
+ ] }],
1238
+ "backdrop-sepia": [{ "backdrop-sepia": [
1239
+ "",
1240
+ isNumber,
1241
+ isArbitraryVariable,
1242
+ isArbitraryValue
1243
+ ] }],
1244
+ "border-collapse": [{ border: ["collapse", "separate"] }],
1245
+ "border-spacing": [{ "border-spacing": k() }],
1246
+ "border-spacing-x": [{ "border-spacing-x": k() }],
1247
+ "border-spacing-y": [{ "border-spacing-y": k() }],
1248
+ "table-layout": [{ table: ["auto", "fixed"] }],
1249
+ caption: [{ caption: ["top", "bottom"] }],
1250
+ transition: [{ transition: [
1251
+ "",
1252
+ "all",
1253
+ "colors",
1254
+ "opacity",
1255
+ "shadow",
1256
+ "transform",
1257
+ "none",
1258
+ isArbitraryVariable,
1259
+ isArbitraryValue
1260
+ ] }],
1261
+ "transition-behavior": [{ transition: ["normal", "discrete"] }],
1262
+ duration: [{ duration: [
1263
+ isNumber,
1264
+ "initial",
1265
+ isArbitraryVariable,
1266
+ isArbitraryValue
1267
+ ] }],
1268
+ ease: [{ ease: [
1269
+ "linear",
1270
+ "initial",
1271
+ S,
1272
+ isArbitraryVariable,
1273
+ isArbitraryValue
1274
+ ] }],
1275
+ delay: [{ delay: [
1276
+ isNumber,
1277
+ isArbitraryVariable,
1278
+ isArbitraryValue
1279
+ ] }],
1280
+ animate: [{ animate: [
1281
+ "none",
1282
+ C,
1283
+ isArbitraryVariable,
1284
+ isArbitraryValue
1285
+ ] }],
1286
+ backface: [{ backface: ["hidden", "visible"] }],
1287
+ perspective: [{ perspective: [
1288
+ b,
1289
+ isArbitraryVariable,
1290
+ isArbitraryValue
1291
+ ] }],
1292
+ "perspective-origin": [{ "perspective-origin": E() }],
1293
+ rotate: [{ rotate: X() }],
1294
+ "rotate-x": [{ "rotate-x": X() }],
1295
+ "rotate-y": [{ "rotate-y": X() }],
1296
+ "rotate-z": [{ "rotate-z": X() }],
1297
+ scale: [{ scale: Z() }],
1298
+ "scale-x": [{ "scale-x": Z() }],
1299
+ "scale-y": [{ "scale-y": Z() }],
1300
+ "scale-z": [{ "scale-z": Z() }],
1301
+ "scale-3d": ["scale-3d"],
1302
+ skew: [{ skew: Q() }],
1303
+ "skew-x": [{ "skew-x": Q() }],
1304
+ "skew-y": [{ "skew-y": Q() }],
1305
+ transform: [{ transform: [
1306
+ isArbitraryVariable,
1307
+ isArbitraryValue,
1308
+ "",
1309
+ "none",
1310
+ "gpu",
1311
+ "cpu"
1312
+ ] }],
1313
+ "transform-origin": [{ origin: E() }],
1314
+ "transform-style": [{ transform: ["3d", "flat"] }],
1315
+ translate: [{ translate: $() }],
1316
+ "translate-x": [{ "translate-x": $() }],
1317
+ "translate-y": [{ "translate-y": $() }],
1318
+ "translate-z": [{ "translate-z": $() }],
1319
+ "translate-none": ["translate-none"],
1320
+ accent: [{ accent: z() }],
1321
+ appearance: [{ appearance: ["none", "auto"] }],
1322
+ "caret-color": [{ caret: z() }],
1323
+ "color-scheme": [{ scheme: [
1324
+ "normal",
1325
+ "dark",
1326
+ "light",
1327
+ "light-dark",
1328
+ "only-dark",
1329
+ "only-light"
1330
+ ] }],
1331
+ cursor: [{ cursor: [
1332
+ "auto",
1333
+ "default",
1334
+ "pointer",
1335
+ "wait",
1336
+ "text",
1337
+ "move",
1338
+ "help",
1339
+ "not-allowed",
1340
+ "none",
1341
+ "context-menu",
1342
+ "progress",
1343
+ "cell",
1344
+ "crosshair",
1345
+ "vertical-text",
1346
+ "alias",
1347
+ "copy",
1348
+ "no-drop",
1349
+ "grab",
1350
+ "grabbing",
1351
+ "all-scroll",
1352
+ "col-resize",
1353
+ "row-resize",
1354
+ "n-resize",
1355
+ "e-resize",
1356
+ "s-resize",
1357
+ "w-resize",
1358
+ "ne-resize",
1359
+ "nw-resize",
1360
+ "se-resize",
1361
+ "sw-resize",
1362
+ "ew-resize",
1363
+ "ns-resize",
1364
+ "nesw-resize",
1365
+ "nwse-resize",
1366
+ "zoom-in",
1367
+ "zoom-out",
1368
+ isArbitraryVariable,
1369
+ isArbitraryValue
1370
+ ] }],
1371
+ "field-sizing": [{ "field-sizing": ["fixed", "content"] }],
1372
+ "pointer-events": [{ "pointer-events": ["auto", "none"] }],
1373
+ resize: [{ resize: [
1374
+ "none",
1375
+ "",
1376
+ "y",
1377
+ "x"
1378
+ ] }],
1379
+ "scroll-behavior": [{ scroll: ["auto", "smooth"] }],
1380
+ "scroll-m": [{ "scroll-m": k() }],
1381
+ "scroll-mx": [{ "scroll-mx": k() }],
1382
+ "scroll-my": [{ "scroll-my": k() }],
1383
+ "scroll-ms": [{ "scroll-ms": k() }],
1384
+ "scroll-me": [{ "scroll-me": k() }],
1385
+ "scroll-mt": [{ "scroll-mt": k() }],
1386
+ "scroll-mr": [{ "scroll-mr": k() }],
1387
+ "scroll-mb": [{ "scroll-mb": k() }],
1388
+ "scroll-ml": [{ "scroll-ml": k() }],
1389
+ "scroll-p": [{ "scroll-p": k() }],
1390
+ "scroll-px": [{ "scroll-px": k() }],
1391
+ "scroll-py": [{ "scroll-py": k() }],
1392
+ "scroll-ps": [{ "scroll-ps": k() }],
1393
+ "scroll-pe": [{ "scroll-pe": k() }],
1394
+ "scroll-pt": [{ "scroll-pt": k() }],
1395
+ "scroll-pr": [{ "scroll-pr": k() }],
1396
+ "scroll-pb": [{ "scroll-pb": k() }],
1397
+ "scroll-pl": [{ "scroll-pl": k() }],
1398
+ "snap-align": [{ snap: [
1399
+ "start",
1400
+ "end",
1401
+ "center",
1402
+ "align-none"
1403
+ ] }],
1404
+ "snap-stop": [{ snap: ["normal", "always"] }],
1405
+ "snap-type": [{ snap: [
1406
+ "none",
1407
+ "x",
1408
+ "y",
1409
+ "both"
1410
+ ] }],
1411
+ "snap-strictness": [{ snap: ["mandatory", "proximity"] }],
1412
+ touch: [{ touch: [
1413
+ "auto",
1414
+ "none",
1415
+ "manipulation"
1416
+ ] }],
1417
+ "touch-x": [{ "touch-pan": [
1418
+ "x",
1419
+ "left",
1420
+ "right"
1421
+ ] }],
1422
+ "touch-y": [{ "touch-pan": [
1423
+ "y",
1424
+ "up",
1425
+ "down"
1426
+ ] }],
1427
+ "touch-pz": ["touch-pinch-zoom"],
1428
+ select: [{ select: [
1429
+ "none",
1430
+ "text",
1431
+ "all",
1432
+ "auto"
1433
+ ] }],
1434
+ "will-change": [{ "will-change": [
1435
+ "auto",
1436
+ "scroll",
1437
+ "contents",
1438
+ "transform",
1439
+ isArbitraryVariable,
1440
+ isArbitraryValue
1441
+ ] }],
1442
+ fill: [{ fill: ["none", ...z()] }],
1443
+ "stroke-w": [{ stroke: [
1444
+ isNumber,
1445
+ isArbitraryVariableLength,
1446
+ isArbitraryLength,
1447
+ isArbitraryNumber
1448
+ ] }],
1449
+ stroke: [{ stroke: ["none", ...z()] }],
1450
+ "forced-color-adjust": [{ "forced-color-adjust": ["auto", "none"] }]
1451
+ },
1452
+ conflictingClassGroups: {
1453
+ overflow: ["overflow-x", "overflow-y"],
1454
+ overscroll: ["overscroll-x", "overscroll-y"],
1455
+ inset: [
1456
+ "inset-x",
1457
+ "inset-y",
1458
+ "start",
1459
+ "end",
1460
+ "top",
1461
+ "right",
1462
+ "bottom",
1463
+ "left"
1464
+ ],
1465
+ "inset-x": ["right", "left"],
1466
+ "inset-y": ["top", "bottom"],
1467
+ flex: [
1468
+ "basis",
1469
+ "grow",
1470
+ "shrink"
1471
+ ],
1472
+ gap: ["gap-x", "gap-y"],
1473
+ p: [
1474
+ "px",
1475
+ "py",
1476
+ "ps",
1477
+ "pe",
1478
+ "pt",
1479
+ "pr",
1480
+ "pb",
1481
+ "pl"
1482
+ ],
1483
+ px: ["pr", "pl"],
1484
+ py: ["pt", "pb"],
1485
+ m: [
1486
+ "mx",
1487
+ "my",
1488
+ "ms",
1489
+ "me",
1490
+ "mt",
1491
+ "mr",
1492
+ "mb",
1493
+ "ml"
1494
+ ],
1495
+ mx: ["mr", "ml"],
1496
+ my: ["mt", "mb"],
1497
+ size: ["w", "h"],
1498
+ "font-size": ["leading"],
1499
+ "fvn-normal": [
1500
+ "fvn-ordinal",
1501
+ "fvn-slashed-zero",
1502
+ "fvn-figure",
1503
+ "fvn-spacing",
1504
+ "fvn-fraction"
1505
+ ],
1506
+ "fvn-ordinal": ["fvn-normal"],
1507
+ "fvn-slashed-zero": ["fvn-normal"],
1508
+ "fvn-figure": ["fvn-normal"],
1509
+ "fvn-spacing": ["fvn-normal"],
1510
+ "fvn-fraction": ["fvn-normal"],
1511
+ "line-clamp": ["display", "overflow"],
1512
+ rounded: [
1513
+ "rounded-s",
1514
+ "rounded-e",
1515
+ "rounded-t",
1516
+ "rounded-r",
1517
+ "rounded-b",
1518
+ "rounded-l",
1519
+ "rounded-ss",
1520
+ "rounded-se",
1521
+ "rounded-ee",
1522
+ "rounded-es",
1523
+ "rounded-tl",
1524
+ "rounded-tr",
1525
+ "rounded-br",
1526
+ "rounded-bl"
1527
+ ],
1528
+ "rounded-s": ["rounded-ss", "rounded-es"],
1529
+ "rounded-e": ["rounded-se", "rounded-ee"],
1530
+ "rounded-t": ["rounded-tl", "rounded-tr"],
1531
+ "rounded-r": ["rounded-tr", "rounded-br"],
1532
+ "rounded-b": ["rounded-br", "rounded-bl"],
1533
+ "rounded-l": ["rounded-tl", "rounded-bl"],
1534
+ "border-spacing": ["border-spacing-x", "border-spacing-y"],
1535
+ "border-w": [
1536
+ "border-w-x",
1537
+ "border-w-y",
1538
+ "border-w-s",
1539
+ "border-w-e",
1540
+ "border-w-t",
1541
+ "border-w-r",
1542
+ "border-w-b",
1543
+ "border-w-l"
1544
+ ],
1545
+ "border-w-x": ["border-w-r", "border-w-l"],
1546
+ "border-w-y": ["border-w-t", "border-w-b"],
1547
+ "border-color": [
1548
+ "border-color-x",
1549
+ "border-color-y",
1550
+ "border-color-s",
1551
+ "border-color-e",
1552
+ "border-color-t",
1553
+ "border-color-r",
1554
+ "border-color-b",
1555
+ "border-color-l"
1556
+ ],
1557
+ "border-color-x": ["border-color-r", "border-color-l"],
1558
+ "border-color-y": ["border-color-t", "border-color-b"],
1559
+ translate: [
1560
+ "translate-x",
1561
+ "translate-y",
1562
+ "translate-none"
1563
+ ],
1564
+ "translate-none": [
1565
+ "translate",
1566
+ "translate-x",
1567
+ "translate-y",
1568
+ "translate-z"
1569
+ ],
1570
+ "scroll-m": [
1571
+ "scroll-mx",
1572
+ "scroll-my",
1573
+ "scroll-ms",
1574
+ "scroll-me",
1575
+ "scroll-mt",
1576
+ "scroll-mr",
1577
+ "scroll-mb",
1578
+ "scroll-ml"
1579
+ ],
1580
+ "scroll-mx": ["scroll-mr", "scroll-ml"],
1581
+ "scroll-my": ["scroll-mt", "scroll-mb"],
1582
+ "scroll-p": [
1583
+ "scroll-px",
1584
+ "scroll-py",
1585
+ "scroll-ps",
1586
+ "scroll-pe",
1587
+ "scroll-pt",
1588
+ "scroll-pr",
1589
+ "scroll-pb",
1590
+ "scroll-pl"
1591
+ ],
1592
+ "scroll-px": ["scroll-pr", "scroll-pl"],
1593
+ "scroll-py": ["scroll-pt", "scroll-pb"],
1594
+ touch: [
1595
+ "touch-x",
1596
+ "touch-y",
1597
+ "touch-pz"
1598
+ ],
1599
+ "touch-x": ["touch"],
1600
+ "touch-y": ["touch"],
1601
+ "touch-pz": ["touch"]
1602
+ },
1603
+ conflictingClassGroupModifiers: { "font-size": ["leading"] },
1604
+ orderSensitiveModifiers: [
1605
+ "*",
1606
+ "**",
1607
+ "after",
1608
+ "backdrop",
1609
+ "before",
1610
+ "details-content",
1611
+ "file",
1612
+ "first-letter",
1613
+ "first-line",
1614
+ "marker",
1615
+ "placeholder",
1616
+ "selection"
1617
+ ]
1618
+ };
1619
+ });
1620
+ function cn(...e) {
1621
+ return twMerge(clsx(e));
1622
+ }
1623
+ function Badge({ className: o, children: s, ...c }) {
1624
+ return /* @__PURE__ */ jsx("span", {
1625
+ className: cn("bg-primary text-primary-foreground text-sm px-3 py-1 rounded-full", o),
1626
+ ...c,
1627
+ children: s
1628
+ });
1629
+ }
1630
+ function Button({ className: o, children: s, ...c }) {
1631
+ return /* @__PURE__ */ jsx("button", {
1632
+ className: cn("bg-primary hover:bg-primary/90 text-primary-foreground px-3 py-1 rounded-md flex justify-center items-center", o),
1633
+ ...c,
1634
+ children: s
1635
+ });
1636
+ }
1637
+ function Link({ className: o, children: s, ...c }) {
1638
+ return /* @__PURE__ */ jsx("a", {
1639
+ className: cn("text-primary underline-offset-4 hover:underline", o),
1640
+ ...c,
1641
+ children: s
1642
+ });
1643
+ }
1644
+ export { Badge, Button, Link };