@vezham/shared-varaints 0.2.0

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