@pondipondi/mimas 0.1.2 → 0.1.4

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