@nuvra-ui/react 0.0.6 → 0.0.8

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