design-system-silkhaus 0.0.2 → 0.0.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.
package/dist/index.js ADDED
@@ -0,0 +1,3807 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __defProps = Object.defineProperties;
3
+ var __getOwnPropDescs = Object.getOwnPropertyDescriptors;
4
+ var __getOwnPropSymbols = Object.getOwnPropertySymbols;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __propIsEnum = Object.prototype.propertyIsEnumerable;
7
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
8
+ var __spreadValues = (a, b) => {
9
+ for (var prop in b || (b = {}))
10
+ if (__hasOwnProp.call(b, prop))
11
+ __defNormalProp(a, prop, b[prop]);
12
+ if (__getOwnPropSymbols)
13
+ for (var prop of __getOwnPropSymbols(b)) {
14
+ if (__propIsEnum.call(b, prop))
15
+ __defNormalProp(a, prop, b[prop]);
16
+ }
17
+ return a;
18
+ };
19
+ var __spreadProps = (a, b) => __defProps(a, __getOwnPropDescs(b));
20
+ var __objRest = (source, exclude) => {
21
+ var target = {};
22
+ for (var prop in source)
23
+ if (__hasOwnProp.call(source, prop) && exclude.indexOf(prop) < 0)
24
+ target[prop] = source[prop];
25
+ if (source != null && __getOwnPropSymbols)
26
+ for (var prop of __getOwnPropSymbols(source)) {
27
+ if (exclude.indexOf(prop) < 0 && __propIsEnum.call(source, prop))
28
+ target[prop] = source[prop];
29
+ }
30
+ return target;
31
+ };
32
+ import * as React from "react";
33
+ import React__default from "react";
34
+ var jsxRuntime = { exports: {} };
35
+ var reactJsxRuntime_development = {};
36
+ /**
37
+ * @license React
38
+ * react-jsx-runtime.development.js
39
+ *
40
+ * Copyright (c) Facebook, Inc. and its affiliates.
41
+ *
42
+ * This source code is licensed under the MIT license found in the
43
+ * LICENSE file in the root directory of this source tree.
44
+ */
45
+ var hasRequiredReactJsxRuntime_development;
46
+ function requireReactJsxRuntime_development() {
47
+ if (hasRequiredReactJsxRuntime_development)
48
+ return reactJsxRuntime_development;
49
+ hasRequiredReactJsxRuntime_development = 1;
50
+ if (process.env.NODE_ENV !== "production") {
51
+ (function() {
52
+ var React2 = React__default;
53
+ var REACT_ELEMENT_TYPE = Symbol.for("react.element");
54
+ var REACT_PORTAL_TYPE = Symbol.for("react.portal");
55
+ var REACT_FRAGMENT_TYPE = Symbol.for("react.fragment");
56
+ var REACT_STRICT_MODE_TYPE = Symbol.for("react.strict_mode");
57
+ var REACT_PROFILER_TYPE = Symbol.for("react.profiler");
58
+ var REACT_PROVIDER_TYPE = Symbol.for("react.provider");
59
+ var REACT_CONTEXT_TYPE = Symbol.for("react.context");
60
+ var REACT_FORWARD_REF_TYPE = Symbol.for("react.forward_ref");
61
+ var REACT_SUSPENSE_TYPE = Symbol.for("react.suspense");
62
+ var REACT_SUSPENSE_LIST_TYPE = Symbol.for("react.suspense_list");
63
+ var REACT_MEMO_TYPE = Symbol.for("react.memo");
64
+ var REACT_LAZY_TYPE = Symbol.for("react.lazy");
65
+ var REACT_OFFSCREEN_TYPE = Symbol.for("react.offscreen");
66
+ var MAYBE_ITERATOR_SYMBOL = Symbol.iterator;
67
+ var FAUX_ITERATOR_SYMBOL = "@@iterator";
68
+ function getIteratorFn(maybeIterable) {
69
+ if (maybeIterable === null || typeof maybeIterable !== "object") {
70
+ return null;
71
+ }
72
+ var maybeIterator = MAYBE_ITERATOR_SYMBOL && maybeIterable[MAYBE_ITERATOR_SYMBOL] || maybeIterable[FAUX_ITERATOR_SYMBOL];
73
+ if (typeof maybeIterator === "function") {
74
+ return maybeIterator;
75
+ }
76
+ return null;
77
+ }
78
+ var ReactSharedInternals = React2.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
79
+ function error(format) {
80
+ {
81
+ {
82
+ for (var _len2 = arguments.length, args = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {
83
+ args[_key2 - 1] = arguments[_key2];
84
+ }
85
+ printWarning("error", format, args);
86
+ }
87
+ }
88
+ }
89
+ function printWarning(level, format, args) {
90
+ {
91
+ var ReactDebugCurrentFrame2 = ReactSharedInternals.ReactDebugCurrentFrame;
92
+ var stack = ReactDebugCurrentFrame2.getStackAddendum();
93
+ if (stack !== "") {
94
+ format += "%s";
95
+ args = args.concat([stack]);
96
+ }
97
+ var argsWithFormat = args.map(function(item) {
98
+ return String(item);
99
+ });
100
+ argsWithFormat.unshift("Warning: " + format);
101
+ Function.prototype.apply.call(console[level], console, argsWithFormat);
102
+ }
103
+ }
104
+ var enableScopeAPI = false;
105
+ var enableCacheElement = false;
106
+ var enableTransitionTracing = false;
107
+ var enableLegacyHidden = false;
108
+ var enableDebugTracing = false;
109
+ var REACT_MODULE_REFERENCE;
110
+ {
111
+ REACT_MODULE_REFERENCE = Symbol.for("react.module.reference");
112
+ }
113
+ function isValidElementType(type) {
114
+ if (typeof type === "string" || typeof type === "function") {
115
+ return true;
116
+ }
117
+ if (type === REACT_FRAGMENT_TYPE || type === REACT_PROFILER_TYPE || enableDebugTracing || type === REACT_STRICT_MODE_TYPE || type === REACT_SUSPENSE_TYPE || type === REACT_SUSPENSE_LIST_TYPE || enableLegacyHidden || type === REACT_OFFSCREEN_TYPE || enableScopeAPI || enableCacheElement || enableTransitionTracing) {
118
+ return true;
119
+ }
120
+ if (typeof type === "object" && type !== null) {
121
+ if (type.$$typeof === REACT_LAZY_TYPE || type.$$typeof === REACT_MEMO_TYPE || type.$$typeof === REACT_PROVIDER_TYPE || type.$$typeof === REACT_CONTEXT_TYPE || type.$$typeof === REACT_FORWARD_REF_TYPE || // This needs to include all possible module reference object
122
+ // types supported by any Flight configuration anywhere since
123
+ // we don't know which Flight build this will end up being used
124
+ // with.
125
+ type.$$typeof === REACT_MODULE_REFERENCE || type.getModuleId !== void 0) {
126
+ return true;
127
+ }
128
+ }
129
+ return false;
130
+ }
131
+ function getWrappedName(outerType, innerType, wrapperName) {
132
+ var displayName = outerType.displayName;
133
+ if (displayName) {
134
+ return displayName;
135
+ }
136
+ var functionName = innerType.displayName || innerType.name || "";
137
+ return functionName !== "" ? wrapperName + "(" + functionName + ")" : wrapperName;
138
+ }
139
+ function getContextName(type) {
140
+ return type.displayName || "Context";
141
+ }
142
+ function getComponentNameFromType(type) {
143
+ if (type == null) {
144
+ return null;
145
+ }
146
+ {
147
+ if (typeof type.tag === "number") {
148
+ error("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue.");
149
+ }
150
+ }
151
+ if (typeof type === "function") {
152
+ return type.displayName || type.name || null;
153
+ }
154
+ if (typeof type === "string") {
155
+ return type;
156
+ }
157
+ switch (type) {
158
+ case REACT_FRAGMENT_TYPE:
159
+ return "Fragment";
160
+ case REACT_PORTAL_TYPE:
161
+ return "Portal";
162
+ case REACT_PROFILER_TYPE:
163
+ return "Profiler";
164
+ case REACT_STRICT_MODE_TYPE:
165
+ return "StrictMode";
166
+ case REACT_SUSPENSE_TYPE:
167
+ return "Suspense";
168
+ case REACT_SUSPENSE_LIST_TYPE:
169
+ return "SuspenseList";
170
+ }
171
+ if (typeof type === "object") {
172
+ switch (type.$$typeof) {
173
+ case REACT_CONTEXT_TYPE:
174
+ var context = type;
175
+ return getContextName(context) + ".Consumer";
176
+ case REACT_PROVIDER_TYPE:
177
+ var provider = type;
178
+ return getContextName(provider._context) + ".Provider";
179
+ case REACT_FORWARD_REF_TYPE:
180
+ return getWrappedName(type, type.render, "ForwardRef");
181
+ case REACT_MEMO_TYPE:
182
+ var outerName = type.displayName || null;
183
+ if (outerName !== null) {
184
+ return outerName;
185
+ }
186
+ return getComponentNameFromType(type.type) || "Memo";
187
+ case REACT_LAZY_TYPE: {
188
+ var lazyComponent = type;
189
+ var payload = lazyComponent._payload;
190
+ var init = lazyComponent._init;
191
+ try {
192
+ return getComponentNameFromType(init(payload));
193
+ } catch (x) {
194
+ return null;
195
+ }
196
+ }
197
+ }
198
+ }
199
+ return null;
200
+ }
201
+ var assign = Object.assign;
202
+ var disabledDepth = 0;
203
+ var prevLog;
204
+ var prevInfo;
205
+ var prevWarn;
206
+ var prevError;
207
+ var prevGroup;
208
+ var prevGroupCollapsed;
209
+ var prevGroupEnd;
210
+ function disabledLog() {
211
+ }
212
+ disabledLog.__reactDisabledLog = true;
213
+ function disableLogs() {
214
+ {
215
+ if (disabledDepth === 0) {
216
+ prevLog = console.log;
217
+ prevInfo = console.info;
218
+ prevWarn = console.warn;
219
+ prevError = console.error;
220
+ prevGroup = console.group;
221
+ prevGroupCollapsed = console.groupCollapsed;
222
+ prevGroupEnd = console.groupEnd;
223
+ var props = {
224
+ configurable: true,
225
+ enumerable: true,
226
+ value: disabledLog,
227
+ writable: true
228
+ };
229
+ Object.defineProperties(console, {
230
+ info: props,
231
+ log: props,
232
+ warn: props,
233
+ error: props,
234
+ group: props,
235
+ groupCollapsed: props,
236
+ groupEnd: props
237
+ });
238
+ }
239
+ disabledDepth++;
240
+ }
241
+ }
242
+ function reenableLogs() {
243
+ {
244
+ disabledDepth--;
245
+ if (disabledDepth === 0) {
246
+ var props = {
247
+ configurable: true,
248
+ enumerable: true,
249
+ writable: true
250
+ };
251
+ Object.defineProperties(console, {
252
+ log: assign({}, props, {
253
+ value: prevLog
254
+ }),
255
+ info: assign({}, props, {
256
+ value: prevInfo
257
+ }),
258
+ warn: assign({}, props, {
259
+ value: prevWarn
260
+ }),
261
+ error: assign({}, props, {
262
+ value: prevError
263
+ }),
264
+ group: assign({}, props, {
265
+ value: prevGroup
266
+ }),
267
+ groupCollapsed: assign({}, props, {
268
+ value: prevGroupCollapsed
269
+ }),
270
+ groupEnd: assign({}, props, {
271
+ value: prevGroupEnd
272
+ })
273
+ });
274
+ }
275
+ if (disabledDepth < 0) {
276
+ error("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
277
+ }
278
+ }
279
+ }
280
+ var ReactCurrentDispatcher = ReactSharedInternals.ReactCurrentDispatcher;
281
+ var prefix;
282
+ function describeBuiltInComponentFrame(name, source, ownerFn) {
283
+ {
284
+ if (prefix === void 0) {
285
+ try {
286
+ throw Error();
287
+ } catch (x) {
288
+ var match = x.stack.trim().match(/\n( *(at )?)/);
289
+ prefix = match && match[1] || "";
290
+ }
291
+ }
292
+ return "\n" + prefix + name;
293
+ }
294
+ }
295
+ var reentry = false;
296
+ var componentFrameCache;
297
+ {
298
+ var PossiblyWeakMap = typeof WeakMap === "function" ? WeakMap : Map;
299
+ componentFrameCache = new PossiblyWeakMap();
300
+ }
301
+ function describeNativeComponentFrame(fn, construct) {
302
+ if (!fn || reentry) {
303
+ return "";
304
+ }
305
+ {
306
+ var frame = componentFrameCache.get(fn);
307
+ if (frame !== void 0) {
308
+ return frame;
309
+ }
310
+ }
311
+ var control;
312
+ reentry = true;
313
+ var previousPrepareStackTrace = Error.prepareStackTrace;
314
+ Error.prepareStackTrace = void 0;
315
+ var previousDispatcher;
316
+ {
317
+ previousDispatcher = ReactCurrentDispatcher.current;
318
+ ReactCurrentDispatcher.current = null;
319
+ disableLogs();
320
+ }
321
+ try {
322
+ if (construct) {
323
+ var Fake = function() {
324
+ throw Error();
325
+ };
326
+ Object.defineProperty(Fake.prototype, "props", {
327
+ set: function() {
328
+ throw Error();
329
+ }
330
+ });
331
+ if (typeof Reflect === "object" && Reflect.construct) {
332
+ try {
333
+ Reflect.construct(Fake, []);
334
+ } catch (x) {
335
+ control = x;
336
+ }
337
+ Reflect.construct(fn, [], Fake);
338
+ } else {
339
+ try {
340
+ Fake.call();
341
+ } catch (x) {
342
+ control = x;
343
+ }
344
+ fn.call(Fake.prototype);
345
+ }
346
+ } else {
347
+ try {
348
+ throw Error();
349
+ } catch (x) {
350
+ control = x;
351
+ }
352
+ fn();
353
+ }
354
+ } catch (sample) {
355
+ if (sample && control && typeof sample.stack === "string") {
356
+ var sampleLines = sample.stack.split("\n");
357
+ var controlLines = control.stack.split("\n");
358
+ var s = sampleLines.length - 1;
359
+ var c = controlLines.length - 1;
360
+ while (s >= 1 && c >= 0 && sampleLines[s] !== controlLines[c]) {
361
+ c--;
362
+ }
363
+ for (; s >= 1 && c >= 0; s--, c--) {
364
+ if (sampleLines[s] !== controlLines[c]) {
365
+ if (s !== 1 || c !== 1) {
366
+ do {
367
+ s--;
368
+ c--;
369
+ if (c < 0 || sampleLines[s] !== controlLines[c]) {
370
+ var _frame = "\n" + sampleLines[s].replace(" at new ", " at ");
371
+ if (fn.displayName && _frame.includes("<anonymous>")) {
372
+ _frame = _frame.replace("<anonymous>", fn.displayName);
373
+ }
374
+ {
375
+ if (typeof fn === "function") {
376
+ componentFrameCache.set(fn, _frame);
377
+ }
378
+ }
379
+ return _frame;
380
+ }
381
+ } while (s >= 1 && c >= 0);
382
+ }
383
+ break;
384
+ }
385
+ }
386
+ }
387
+ } finally {
388
+ reentry = false;
389
+ {
390
+ ReactCurrentDispatcher.current = previousDispatcher;
391
+ reenableLogs();
392
+ }
393
+ Error.prepareStackTrace = previousPrepareStackTrace;
394
+ }
395
+ var name = fn ? fn.displayName || fn.name : "";
396
+ var syntheticFrame = name ? describeBuiltInComponentFrame(name) : "";
397
+ {
398
+ if (typeof fn === "function") {
399
+ componentFrameCache.set(fn, syntheticFrame);
400
+ }
401
+ }
402
+ return syntheticFrame;
403
+ }
404
+ function describeFunctionComponentFrame(fn, source, ownerFn) {
405
+ {
406
+ return describeNativeComponentFrame(fn, false);
407
+ }
408
+ }
409
+ function shouldConstruct(Component) {
410
+ var prototype = Component.prototype;
411
+ return !!(prototype && prototype.isReactComponent);
412
+ }
413
+ function describeUnknownElementTypeFrameInDEV(type, source, ownerFn) {
414
+ if (type == null) {
415
+ return "";
416
+ }
417
+ if (typeof type === "function") {
418
+ {
419
+ return describeNativeComponentFrame(type, shouldConstruct(type));
420
+ }
421
+ }
422
+ if (typeof type === "string") {
423
+ return describeBuiltInComponentFrame(type);
424
+ }
425
+ switch (type) {
426
+ case REACT_SUSPENSE_TYPE:
427
+ return describeBuiltInComponentFrame("Suspense");
428
+ case REACT_SUSPENSE_LIST_TYPE:
429
+ return describeBuiltInComponentFrame("SuspenseList");
430
+ }
431
+ if (typeof type === "object") {
432
+ switch (type.$$typeof) {
433
+ case REACT_FORWARD_REF_TYPE:
434
+ return describeFunctionComponentFrame(type.render);
435
+ case REACT_MEMO_TYPE:
436
+ return describeUnknownElementTypeFrameInDEV(type.type, source, ownerFn);
437
+ case REACT_LAZY_TYPE: {
438
+ var lazyComponent = type;
439
+ var payload = lazyComponent._payload;
440
+ var init = lazyComponent._init;
441
+ try {
442
+ return describeUnknownElementTypeFrameInDEV(init(payload), source, ownerFn);
443
+ } catch (x) {
444
+ }
445
+ }
446
+ }
447
+ }
448
+ return "";
449
+ }
450
+ var hasOwnProperty = Object.prototype.hasOwnProperty;
451
+ var loggedTypeFailures = {};
452
+ var ReactDebugCurrentFrame = ReactSharedInternals.ReactDebugCurrentFrame;
453
+ function setCurrentlyValidatingElement(element) {
454
+ {
455
+ if (element) {
456
+ var owner = element._owner;
457
+ var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
458
+ ReactDebugCurrentFrame.setExtraStackFrame(stack);
459
+ } else {
460
+ ReactDebugCurrentFrame.setExtraStackFrame(null);
461
+ }
462
+ }
463
+ }
464
+ function checkPropTypes(typeSpecs, values, location, componentName, element) {
465
+ {
466
+ var has = Function.call.bind(hasOwnProperty);
467
+ for (var typeSpecName in typeSpecs) {
468
+ if (has(typeSpecs, typeSpecName)) {
469
+ var error$1 = void 0;
470
+ try {
471
+ if (typeof typeSpecs[typeSpecName] !== "function") {
472
+ var err = Error((componentName || "React class") + ": " + location + " type `" + typeSpecName + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof typeSpecs[typeSpecName] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
473
+ err.name = "Invariant Violation";
474
+ throw err;
475
+ }
476
+ error$1 = typeSpecs[typeSpecName](values, typeSpecName, componentName, location, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
477
+ } catch (ex) {
478
+ error$1 = ex;
479
+ }
480
+ if (error$1 && !(error$1 instanceof Error)) {
481
+ setCurrentlyValidatingElement(element);
482
+ error("%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).", componentName || "React class", location, typeSpecName, typeof error$1);
483
+ setCurrentlyValidatingElement(null);
484
+ }
485
+ if (error$1 instanceof Error && !(error$1.message in loggedTypeFailures)) {
486
+ loggedTypeFailures[error$1.message] = true;
487
+ setCurrentlyValidatingElement(element);
488
+ error("Failed %s type: %s", location, error$1.message);
489
+ setCurrentlyValidatingElement(null);
490
+ }
491
+ }
492
+ }
493
+ }
494
+ }
495
+ var isArrayImpl = Array.isArray;
496
+ function isArray(a) {
497
+ return isArrayImpl(a);
498
+ }
499
+ function typeName(value) {
500
+ {
501
+ var hasToStringTag = typeof Symbol === "function" && Symbol.toStringTag;
502
+ var type = hasToStringTag && value[Symbol.toStringTag] || value.constructor.name || "Object";
503
+ return type;
504
+ }
505
+ }
506
+ function willCoercionThrow(value) {
507
+ {
508
+ try {
509
+ testStringCoercion(value);
510
+ return false;
511
+ } catch (e) {
512
+ return true;
513
+ }
514
+ }
515
+ }
516
+ function testStringCoercion(value) {
517
+ return "" + value;
518
+ }
519
+ function checkKeyStringCoercion(value) {
520
+ {
521
+ if (willCoercionThrow(value)) {
522
+ error("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", typeName(value));
523
+ return testStringCoercion(value);
524
+ }
525
+ }
526
+ }
527
+ var ReactCurrentOwner = ReactSharedInternals.ReactCurrentOwner;
528
+ var RESERVED_PROPS = {
529
+ key: true,
530
+ ref: true,
531
+ __self: true,
532
+ __source: true
533
+ };
534
+ var specialPropKeyWarningShown;
535
+ var specialPropRefWarningShown;
536
+ var didWarnAboutStringRefs;
537
+ {
538
+ didWarnAboutStringRefs = {};
539
+ }
540
+ function hasValidRef(config) {
541
+ {
542
+ if (hasOwnProperty.call(config, "ref")) {
543
+ var getter = Object.getOwnPropertyDescriptor(config, "ref").get;
544
+ if (getter && getter.isReactWarning) {
545
+ return false;
546
+ }
547
+ }
548
+ }
549
+ return config.ref !== void 0;
550
+ }
551
+ function hasValidKey(config) {
552
+ {
553
+ if (hasOwnProperty.call(config, "key")) {
554
+ var getter = Object.getOwnPropertyDescriptor(config, "key").get;
555
+ if (getter && getter.isReactWarning) {
556
+ return false;
557
+ }
558
+ }
559
+ }
560
+ return config.key !== void 0;
561
+ }
562
+ function warnIfStringRefCannotBeAutoConverted(config, self) {
563
+ {
564
+ if (typeof config.ref === "string" && ReactCurrentOwner.current && self && ReactCurrentOwner.current.stateNode !== self) {
565
+ var componentName = getComponentNameFromType(ReactCurrentOwner.current.type);
566
+ if (!didWarnAboutStringRefs[componentName]) {
567
+ error('Component "%s" contains the string ref "%s". Support for string refs will be removed in a future major release. This case cannot be automatically converted to an arrow function. We ask you to manually fix this case by using useRef() or createRef() instead. Learn more about using refs safely here: https://reactjs.org/link/strict-mode-string-ref', getComponentNameFromType(ReactCurrentOwner.current.type), config.ref);
568
+ didWarnAboutStringRefs[componentName] = true;
569
+ }
570
+ }
571
+ }
572
+ }
573
+ function defineKeyPropWarningGetter(props, displayName) {
574
+ {
575
+ var warnAboutAccessingKey = function() {
576
+ if (!specialPropKeyWarningShown) {
577
+ specialPropKeyWarningShown = true;
578
+ error("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", displayName);
579
+ }
580
+ };
581
+ warnAboutAccessingKey.isReactWarning = true;
582
+ Object.defineProperty(props, "key", {
583
+ get: warnAboutAccessingKey,
584
+ configurable: true
585
+ });
586
+ }
587
+ }
588
+ function defineRefPropWarningGetter(props, displayName) {
589
+ {
590
+ var warnAboutAccessingRef = function() {
591
+ if (!specialPropRefWarningShown) {
592
+ specialPropRefWarningShown = true;
593
+ error("%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)", displayName);
594
+ }
595
+ };
596
+ warnAboutAccessingRef.isReactWarning = true;
597
+ Object.defineProperty(props, "ref", {
598
+ get: warnAboutAccessingRef,
599
+ configurable: true
600
+ });
601
+ }
602
+ }
603
+ var ReactElement = function(type, key, ref, self, source, owner, props) {
604
+ var element = {
605
+ // This tag allows us to uniquely identify this as a React Element
606
+ $$typeof: REACT_ELEMENT_TYPE,
607
+ // Built-in properties that belong on the element
608
+ type,
609
+ key,
610
+ ref,
611
+ props,
612
+ // Record the component responsible for creating this element.
613
+ _owner: owner
614
+ };
615
+ {
616
+ element._store = {};
617
+ Object.defineProperty(element._store, "validated", {
618
+ configurable: false,
619
+ enumerable: false,
620
+ writable: true,
621
+ value: false
622
+ });
623
+ Object.defineProperty(element, "_self", {
624
+ configurable: false,
625
+ enumerable: false,
626
+ writable: false,
627
+ value: self
628
+ });
629
+ Object.defineProperty(element, "_source", {
630
+ configurable: false,
631
+ enumerable: false,
632
+ writable: false,
633
+ value: source
634
+ });
635
+ if (Object.freeze) {
636
+ Object.freeze(element.props);
637
+ Object.freeze(element);
638
+ }
639
+ }
640
+ return element;
641
+ };
642
+ function jsxDEV(type, config, maybeKey, source, self) {
643
+ {
644
+ var propName;
645
+ var props = {};
646
+ var key = null;
647
+ var ref = null;
648
+ if (maybeKey !== void 0) {
649
+ {
650
+ checkKeyStringCoercion(maybeKey);
651
+ }
652
+ key = "" + maybeKey;
653
+ }
654
+ if (hasValidKey(config)) {
655
+ {
656
+ checkKeyStringCoercion(config.key);
657
+ }
658
+ key = "" + config.key;
659
+ }
660
+ if (hasValidRef(config)) {
661
+ ref = config.ref;
662
+ warnIfStringRefCannotBeAutoConverted(config, self);
663
+ }
664
+ for (propName in config) {
665
+ if (hasOwnProperty.call(config, propName) && !RESERVED_PROPS.hasOwnProperty(propName)) {
666
+ props[propName] = config[propName];
667
+ }
668
+ }
669
+ if (type && type.defaultProps) {
670
+ var defaultProps = type.defaultProps;
671
+ for (propName in defaultProps) {
672
+ if (props[propName] === void 0) {
673
+ props[propName] = defaultProps[propName];
674
+ }
675
+ }
676
+ }
677
+ if (key || ref) {
678
+ var displayName = typeof type === "function" ? type.displayName || type.name || "Unknown" : type;
679
+ if (key) {
680
+ defineKeyPropWarningGetter(props, displayName);
681
+ }
682
+ if (ref) {
683
+ defineRefPropWarningGetter(props, displayName);
684
+ }
685
+ }
686
+ return ReactElement(type, key, ref, self, source, ReactCurrentOwner.current, props);
687
+ }
688
+ }
689
+ var ReactCurrentOwner$1 = ReactSharedInternals.ReactCurrentOwner;
690
+ var ReactDebugCurrentFrame$1 = ReactSharedInternals.ReactDebugCurrentFrame;
691
+ function setCurrentlyValidatingElement$1(element) {
692
+ {
693
+ if (element) {
694
+ var owner = element._owner;
695
+ var stack = describeUnknownElementTypeFrameInDEV(element.type, element._source, owner ? owner.type : null);
696
+ ReactDebugCurrentFrame$1.setExtraStackFrame(stack);
697
+ } else {
698
+ ReactDebugCurrentFrame$1.setExtraStackFrame(null);
699
+ }
700
+ }
701
+ }
702
+ var propTypesMisspellWarningShown;
703
+ {
704
+ propTypesMisspellWarningShown = false;
705
+ }
706
+ function isValidElement(object) {
707
+ {
708
+ return typeof object === "object" && object !== null && object.$$typeof === REACT_ELEMENT_TYPE;
709
+ }
710
+ }
711
+ function getDeclarationErrorAddendum() {
712
+ {
713
+ if (ReactCurrentOwner$1.current) {
714
+ var name = getComponentNameFromType(ReactCurrentOwner$1.current.type);
715
+ if (name) {
716
+ return "\n\nCheck the render method of `" + name + "`.";
717
+ }
718
+ }
719
+ return "";
720
+ }
721
+ }
722
+ function getSourceInfoErrorAddendum(source) {
723
+ {
724
+ if (source !== void 0) {
725
+ var fileName = source.fileName.replace(/^.*[\\\/]/, "");
726
+ var lineNumber = source.lineNumber;
727
+ return "\n\nCheck your code at " + fileName + ":" + lineNumber + ".";
728
+ }
729
+ return "";
730
+ }
731
+ }
732
+ var ownerHasKeyUseWarning = {};
733
+ function getCurrentComponentErrorInfo(parentType) {
734
+ {
735
+ var info = getDeclarationErrorAddendum();
736
+ if (!info) {
737
+ var parentName = typeof parentType === "string" ? parentType : parentType.displayName || parentType.name;
738
+ if (parentName) {
739
+ info = "\n\nCheck the top-level render call using <" + parentName + ">.";
740
+ }
741
+ }
742
+ return info;
743
+ }
744
+ }
745
+ function validateExplicitKey(element, parentType) {
746
+ {
747
+ if (!element._store || element._store.validated || element.key != null) {
748
+ return;
749
+ }
750
+ element._store.validated = true;
751
+ var currentComponentErrorInfo = getCurrentComponentErrorInfo(parentType);
752
+ if (ownerHasKeyUseWarning[currentComponentErrorInfo]) {
753
+ return;
754
+ }
755
+ ownerHasKeyUseWarning[currentComponentErrorInfo] = true;
756
+ var childOwner = "";
757
+ if (element && element._owner && element._owner !== ReactCurrentOwner$1.current) {
758
+ childOwner = " It was passed a child from " + getComponentNameFromType(element._owner.type) + ".";
759
+ }
760
+ setCurrentlyValidatingElement$1(element);
761
+ error('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', currentComponentErrorInfo, childOwner);
762
+ setCurrentlyValidatingElement$1(null);
763
+ }
764
+ }
765
+ function validateChildKeys(node, parentType) {
766
+ {
767
+ if (typeof node !== "object") {
768
+ return;
769
+ }
770
+ if (isArray(node)) {
771
+ for (var i = 0; i < node.length; i++) {
772
+ var child = node[i];
773
+ if (isValidElement(child)) {
774
+ validateExplicitKey(child, parentType);
775
+ }
776
+ }
777
+ } else if (isValidElement(node)) {
778
+ if (node._store) {
779
+ node._store.validated = true;
780
+ }
781
+ } else if (node) {
782
+ var iteratorFn = getIteratorFn(node);
783
+ if (typeof iteratorFn === "function") {
784
+ if (iteratorFn !== node.entries) {
785
+ var iterator = iteratorFn.call(node);
786
+ var step;
787
+ while (!(step = iterator.next()).done) {
788
+ if (isValidElement(step.value)) {
789
+ validateExplicitKey(step.value, parentType);
790
+ }
791
+ }
792
+ }
793
+ }
794
+ }
795
+ }
796
+ }
797
+ function validatePropTypes(element) {
798
+ {
799
+ var type = element.type;
800
+ if (type === null || type === void 0 || typeof type === "string") {
801
+ return;
802
+ }
803
+ var propTypes;
804
+ if (typeof type === "function") {
805
+ propTypes = type.propTypes;
806
+ } else if (typeof type === "object" && (type.$$typeof === REACT_FORWARD_REF_TYPE || // Note: Memo only checks outer props here.
807
+ // Inner props are checked in the reconciler.
808
+ type.$$typeof === REACT_MEMO_TYPE)) {
809
+ propTypes = type.propTypes;
810
+ } else {
811
+ return;
812
+ }
813
+ if (propTypes) {
814
+ var name = getComponentNameFromType(type);
815
+ checkPropTypes(propTypes, element.props, "prop", name, element);
816
+ } else if (type.PropTypes !== void 0 && !propTypesMisspellWarningShown) {
817
+ propTypesMisspellWarningShown = true;
818
+ var _name = getComponentNameFromType(type);
819
+ error("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", _name || "Unknown");
820
+ }
821
+ if (typeof type.getDefaultProps === "function" && !type.getDefaultProps.isReactClassApproved) {
822
+ error("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
823
+ }
824
+ }
825
+ }
826
+ function validateFragmentProps(fragment) {
827
+ {
828
+ var keys = Object.keys(fragment.props);
829
+ for (var i = 0; i < keys.length; i++) {
830
+ var key = keys[i];
831
+ if (key !== "children" && key !== "key") {
832
+ setCurrentlyValidatingElement$1(fragment);
833
+ error("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", key);
834
+ setCurrentlyValidatingElement$1(null);
835
+ break;
836
+ }
837
+ }
838
+ if (fragment.ref !== null) {
839
+ setCurrentlyValidatingElement$1(fragment);
840
+ error("Invalid attribute `ref` supplied to `React.Fragment`.");
841
+ setCurrentlyValidatingElement$1(null);
842
+ }
843
+ }
844
+ }
845
+ function jsxWithValidation(type, props, key, isStaticChildren, source, self) {
846
+ {
847
+ var validType = isValidElementType(type);
848
+ if (!validType) {
849
+ var info = "";
850
+ if (type === void 0 || typeof type === "object" && type !== null && Object.keys(type).length === 0) {
851
+ info += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.";
852
+ }
853
+ var sourceInfo = getSourceInfoErrorAddendum(source);
854
+ if (sourceInfo) {
855
+ info += sourceInfo;
856
+ } else {
857
+ info += getDeclarationErrorAddendum();
858
+ }
859
+ var typeString;
860
+ if (type === null) {
861
+ typeString = "null";
862
+ } else if (isArray(type)) {
863
+ typeString = "array";
864
+ } else if (type !== void 0 && type.$$typeof === REACT_ELEMENT_TYPE) {
865
+ typeString = "<" + (getComponentNameFromType(type.type) || "Unknown") + " />";
866
+ info = " Did you accidentally export a JSX literal instead of a component?";
867
+ } else {
868
+ typeString = typeof type;
869
+ }
870
+ error("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", typeString, info);
871
+ }
872
+ var element = jsxDEV(type, props, key, source, self);
873
+ if (element == null) {
874
+ return element;
875
+ }
876
+ if (validType) {
877
+ var children = props.children;
878
+ if (children !== void 0) {
879
+ if (isStaticChildren) {
880
+ if (isArray(children)) {
881
+ for (var i = 0; i < children.length; i++) {
882
+ validateChildKeys(children[i], type);
883
+ }
884
+ if (Object.freeze) {
885
+ Object.freeze(children);
886
+ }
887
+ } else {
888
+ error("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
889
+ }
890
+ } else {
891
+ validateChildKeys(children, type);
892
+ }
893
+ }
894
+ }
895
+ if (type === REACT_FRAGMENT_TYPE) {
896
+ validateFragmentProps(element);
897
+ } else {
898
+ validatePropTypes(element);
899
+ }
900
+ return element;
901
+ }
902
+ }
903
+ function jsxWithValidationStatic(type, props, key) {
904
+ {
905
+ return jsxWithValidation(type, props, key, true);
906
+ }
907
+ }
908
+ function jsxWithValidationDynamic(type, props, key) {
909
+ {
910
+ return jsxWithValidation(type, props, key, false);
911
+ }
912
+ }
913
+ var jsx = jsxWithValidationDynamic;
914
+ var jsxs = jsxWithValidationStatic;
915
+ reactJsxRuntime_development.Fragment = REACT_FRAGMENT_TYPE;
916
+ reactJsxRuntime_development.jsx = jsx;
917
+ reactJsxRuntime_development.jsxs = jsxs;
918
+ })();
919
+ }
920
+ return reactJsxRuntime_development;
921
+ }
922
+ var reactJsxRuntime_production_min = {};
923
+ /**
924
+ * @license React
925
+ * react-jsx-runtime.production.min.js
926
+ *
927
+ * Copyright (c) Facebook, Inc. and its affiliates.
928
+ *
929
+ * This source code is licensed under the MIT license found in the
930
+ * LICENSE file in the root directory of this source tree.
931
+ */
932
+ var hasRequiredReactJsxRuntime_production_min;
933
+ function requireReactJsxRuntime_production_min() {
934
+ if (hasRequiredReactJsxRuntime_production_min)
935
+ return reactJsxRuntime_production_min;
936
+ hasRequiredReactJsxRuntime_production_min = 1;
937
+ var f = React__default, k = Symbol.for("react.element"), l = Symbol.for("react.fragment"), m = Object.prototype.hasOwnProperty, n = f.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, p = { key: true, ref: true, __self: true, __source: true };
938
+ function q(c, a, g) {
939
+ var b, d = {}, e = null, h = null;
940
+ void 0 !== g && (e = "" + g);
941
+ void 0 !== a.key && (e = "" + a.key);
942
+ void 0 !== a.ref && (h = a.ref);
943
+ for (b in a)
944
+ m.call(a, b) && !p.hasOwnProperty(b) && (d[b] = a[b]);
945
+ if (c && c.defaultProps)
946
+ for (b in a = c.defaultProps, a)
947
+ void 0 === d[b] && (d[b] = a[b]);
948
+ return { $$typeof: k, type: c, key: e, ref: h, props: d, _owner: n.current };
949
+ }
950
+ reactJsxRuntime_production_min.Fragment = l;
951
+ reactJsxRuntime_production_min.jsx = q;
952
+ reactJsxRuntime_production_min.jsxs = q;
953
+ return reactJsxRuntime_production_min;
954
+ }
955
+ if (process.env.NODE_ENV === "production") {
956
+ jsxRuntime.exports = requireReactJsxRuntime_production_min();
957
+ } else {
958
+ jsxRuntime.exports = requireReactJsxRuntime_development();
959
+ }
960
+ var jsxRuntimeExports = jsxRuntime.exports;
961
+ function r$1(e) {
962
+ var t, f, n = "";
963
+ if ("string" == typeof e || "number" == typeof e)
964
+ n += e;
965
+ else if ("object" == typeof e)
966
+ if (Array.isArray(e)) {
967
+ var o = e.length;
968
+ for (t = 0; t < o; t++)
969
+ e[t] && (f = r$1(e[t])) && (n && (n += " "), n += f);
970
+ } else
971
+ for (f in e)
972
+ e[f] && (n && (n += " "), n += f);
973
+ return n;
974
+ }
975
+ function clsx$1() {
976
+ for (var e, t, f = 0, n = "", o = arguments.length; f < o; f++)
977
+ (e = arguments[f]) && (t = r$1(e)) && (n && (n += " "), n += t);
978
+ return n;
979
+ }
980
+ const CLASS_PART_SEPARATOR = "-";
981
+ function createClassUtils(config) {
982
+ const classMap = createClassMap(config);
983
+ const {
984
+ conflictingClassGroups,
985
+ conflictingClassGroupModifiers
986
+ } = config;
987
+ function getClassGroupId(className) {
988
+ const classParts = className.split(CLASS_PART_SEPARATOR);
989
+ if (classParts[0] === "" && classParts.length !== 1) {
990
+ classParts.shift();
991
+ }
992
+ return getGroupRecursive(classParts, classMap) || getGroupIdForArbitraryProperty(className);
993
+ }
994
+ function getConflictingClassGroupIds(classGroupId, hasPostfixModifier) {
995
+ const conflicts = conflictingClassGroups[classGroupId] || [];
996
+ if (hasPostfixModifier && conflictingClassGroupModifiers[classGroupId]) {
997
+ return [...conflicts, ...conflictingClassGroupModifiers[classGroupId]];
998
+ }
999
+ return conflicts;
1000
+ }
1001
+ return {
1002
+ getClassGroupId,
1003
+ getConflictingClassGroupIds
1004
+ };
1005
+ }
1006
+ function getGroupRecursive(classParts, classPartObject) {
1007
+ var _a;
1008
+ if (classParts.length === 0) {
1009
+ return classPartObject.classGroupId;
1010
+ }
1011
+ const currentClassPart = classParts[0];
1012
+ const nextClassPartObject = classPartObject.nextPart.get(currentClassPart);
1013
+ const classGroupFromNextClassPart = nextClassPartObject ? getGroupRecursive(classParts.slice(1), nextClassPartObject) : void 0;
1014
+ if (classGroupFromNextClassPart) {
1015
+ return classGroupFromNextClassPart;
1016
+ }
1017
+ if (classPartObject.validators.length === 0) {
1018
+ return void 0;
1019
+ }
1020
+ const classRest = classParts.join(CLASS_PART_SEPARATOR);
1021
+ return (_a = classPartObject.validators.find(({
1022
+ validator
1023
+ }) => validator(classRest))) == null ? void 0 : _a.classGroupId;
1024
+ }
1025
+ const arbitraryPropertyRegex = /^\[(.+)\]$/;
1026
+ function getGroupIdForArbitraryProperty(className) {
1027
+ if (arbitraryPropertyRegex.test(className)) {
1028
+ const arbitraryPropertyClassName = arbitraryPropertyRegex.exec(className)[1];
1029
+ const property = arbitraryPropertyClassName == null ? void 0 : arbitraryPropertyClassName.substring(0, arbitraryPropertyClassName.indexOf(":"));
1030
+ if (property) {
1031
+ return "arbitrary.." + property;
1032
+ }
1033
+ }
1034
+ }
1035
+ function createClassMap(config) {
1036
+ const {
1037
+ theme,
1038
+ prefix
1039
+ } = config;
1040
+ const classMap = {
1041
+ nextPart: /* @__PURE__ */ new Map(),
1042
+ validators: []
1043
+ };
1044
+ const prefixedClassGroupEntries = getPrefixedClassGroupEntries(Object.entries(config.classGroups), prefix);
1045
+ prefixedClassGroupEntries.forEach(([classGroupId, classGroup]) => {
1046
+ processClassesRecursively(classGroup, classMap, classGroupId, theme);
1047
+ });
1048
+ return classMap;
1049
+ }
1050
+ function processClassesRecursively(classGroup, classPartObject, classGroupId, theme) {
1051
+ classGroup.forEach((classDefinition) => {
1052
+ if (typeof classDefinition === "string") {
1053
+ const classPartObjectToEdit = classDefinition === "" ? classPartObject : getPart(classPartObject, classDefinition);
1054
+ classPartObjectToEdit.classGroupId = classGroupId;
1055
+ return;
1056
+ }
1057
+ if (typeof classDefinition === "function") {
1058
+ if (isThemeGetter(classDefinition)) {
1059
+ processClassesRecursively(classDefinition(theme), classPartObject, classGroupId, theme);
1060
+ return;
1061
+ }
1062
+ classPartObject.validators.push({
1063
+ validator: classDefinition,
1064
+ classGroupId
1065
+ });
1066
+ return;
1067
+ }
1068
+ Object.entries(classDefinition).forEach(([key, classGroup2]) => {
1069
+ processClassesRecursively(classGroup2, getPart(classPartObject, key), classGroupId, theme);
1070
+ });
1071
+ });
1072
+ }
1073
+ function getPart(classPartObject, path) {
1074
+ let currentClassPartObject = classPartObject;
1075
+ path.split(CLASS_PART_SEPARATOR).forEach((pathPart) => {
1076
+ if (!currentClassPartObject.nextPart.has(pathPart)) {
1077
+ currentClassPartObject.nextPart.set(pathPart, {
1078
+ nextPart: /* @__PURE__ */ new Map(),
1079
+ validators: []
1080
+ });
1081
+ }
1082
+ currentClassPartObject = currentClassPartObject.nextPart.get(pathPart);
1083
+ });
1084
+ return currentClassPartObject;
1085
+ }
1086
+ function isThemeGetter(func) {
1087
+ return func.isThemeGetter;
1088
+ }
1089
+ function getPrefixedClassGroupEntries(classGroupEntries, prefix) {
1090
+ if (!prefix) {
1091
+ return classGroupEntries;
1092
+ }
1093
+ return classGroupEntries.map(([classGroupId, classGroup]) => {
1094
+ const prefixedClassGroup = classGroup.map((classDefinition) => {
1095
+ if (typeof classDefinition === "string") {
1096
+ return prefix + classDefinition;
1097
+ }
1098
+ if (typeof classDefinition === "object") {
1099
+ return Object.fromEntries(Object.entries(classDefinition).map(([key, value]) => [prefix + key, value]));
1100
+ }
1101
+ return classDefinition;
1102
+ });
1103
+ return [classGroupId, prefixedClassGroup];
1104
+ });
1105
+ }
1106
+ function createLruCache(maxCacheSize) {
1107
+ if (maxCacheSize < 1) {
1108
+ return {
1109
+ get: () => void 0,
1110
+ set: () => {
1111
+ }
1112
+ };
1113
+ }
1114
+ let cacheSize = 0;
1115
+ let cache = /* @__PURE__ */ new Map();
1116
+ let previousCache = /* @__PURE__ */ new Map();
1117
+ function update(key, value) {
1118
+ cache.set(key, value);
1119
+ cacheSize++;
1120
+ if (cacheSize > maxCacheSize) {
1121
+ cacheSize = 0;
1122
+ previousCache = cache;
1123
+ cache = /* @__PURE__ */ new Map();
1124
+ }
1125
+ }
1126
+ return {
1127
+ get(key) {
1128
+ let value = cache.get(key);
1129
+ if (value !== void 0) {
1130
+ return value;
1131
+ }
1132
+ if ((value = previousCache.get(key)) !== void 0) {
1133
+ update(key, value);
1134
+ return value;
1135
+ }
1136
+ },
1137
+ set(key, value) {
1138
+ if (cache.has(key)) {
1139
+ cache.set(key, value);
1140
+ } else {
1141
+ update(key, value);
1142
+ }
1143
+ }
1144
+ };
1145
+ }
1146
+ const IMPORTANT_MODIFIER = "!";
1147
+ function createSplitModifiers(config) {
1148
+ const separator = config.separator;
1149
+ const isSeparatorSingleCharacter = separator.length === 1;
1150
+ const firstSeparatorCharacter = separator[0];
1151
+ const separatorLength = separator.length;
1152
+ return function splitModifiers(className) {
1153
+ const modifiers = [];
1154
+ let bracketDepth = 0;
1155
+ let modifierStart = 0;
1156
+ let postfixModifierPosition;
1157
+ for (let index = 0; index < className.length; index++) {
1158
+ let currentCharacter = className[index];
1159
+ if (bracketDepth === 0) {
1160
+ if (currentCharacter === firstSeparatorCharacter && (isSeparatorSingleCharacter || className.slice(index, index + separatorLength) === separator)) {
1161
+ modifiers.push(className.slice(modifierStart, index));
1162
+ modifierStart = index + separatorLength;
1163
+ continue;
1164
+ }
1165
+ if (currentCharacter === "/") {
1166
+ postfixModifierPosition = index;
1167
+ continue;
1168
+ }
1169
+ }
1170
+ if (currentCharacter === "[") {
1171
+ bracketDepth++;
1172
+ } else if (currentCharacter === "]") {
1173
+ bracketDepth--;
1174
+ }
1175
+ }
1176
+ const baseClassNameWithImportantModifier = modifiers.length === 0 ? className : className.substring(modifierStart);
1177
+ const hasImportantModifier = baseClassNameWithImportantModifier.startsWith(IMPORTANT_MODIFIER);
1178
+ const baseClassName = hasImportantModifier ? baseClassNameWithImportantModifier.substring(1) : baseClassNameWithImportantModifier;
1179
+ const maybePostfixModifierPosition = postfixModifierPosition && postfixModifierPosition > modifierStart ? postfixModifierPosition - modifierStart : void 0;
1180
+ return {
1181
+ modifiers,
1182
+ hasImportantModifier,
1183
+ baseClassName,
1184
+ maybePostfixModifierPosition
1185
+ };
1186
+ };
1187
+ }
1188
+ function sortModifiers(modifiers) {
1189
+ if (modifiers.length <= 1) {
1190
+ return modifiers;
1191
+ }
1192
+ const sortedModifiers = [];
1193
+ let unsortedModifiers = [];
1194
+ modifiers.forEach((modifier) => {
1195
+ const isArbitraryVariant = modifier[0] === "[";
1196
+ if (isArbitraryVariant) {
1197
+ sortedModifiers.push(...unsortedModifiers.sort(), modifier);
1198
+ unsortedModifiers = [];
1199
+ } else {
1200
+ unsortedModifiers.push(modifier);
1201
+ }
1202
+ });
1203
+ sortedModifiers.push(...unsortedModifiers.sort());
1204
+ return sortedModifiers;
1205
+ }
1206
+ function createConfigUtils(config) {
1207
+ return __spreadValues({
1208
+ cache: createLruCache(config.cacheSize),
1209
+ splitModifiers: createSplitModifiers(config)
1210
+ }, createClassUtils(config));
1211
+ }
1212
+ const SPLIT_CLASSES_REGEX = /\s+/;
1213
+ function mergeClassList(classList, configUtils) {
1214
+ const {
1215
+ splitModifiers,
1216
+ getClassGroupId,
1217
+ getConflictingClassGroupIds
1218
+ } = configUtils;
1219
+ const classGroupsInConflict = /* @__PURE__ */ new Set();
1220
+ return classList.trim().split(SPLIT_CLASSES_REGEX).map((originalClassName) => {
1221
+ const {
1222
+ modifiers,
1223
+ hasImportantModifier,
1224
+ baseClassName,
1225
+ maybePostfixModifierPosition
1226
+ } = splitModifiers(originalClassName);
1227
+ let classGroupId = getClassGroupId(maybePostfixModifierPosition ? baseClassName.substring(0, maybePostfixModifierPosition) : baseClassName);
1228
+ let hasPostfixModifier = Boolean(maybePostfixModifierPosition);
1229
+ if (!classGroupId) {
1230
+ if (!maybePostfixModifierPosition) {
1231
+ return {
1232
+ isTailwindClass: false,
1233
+ originalClassName
1234
+ };
1235
+ }
1236
+ classGroupId = getClassGroupId(baseClassName);
1237
+ if (!classGroupId) {
1238
+ return {
1239
+ isTailwindClass: false,
1240
+ originalClassName
1241
+ };
1242
+ }
1243
+ hasPostfixModifier = false;
1244
+ }
1245
+ const variantModifier = sortModifiers(modifiers).join(":");
1246
+ const modifierId = hasImportantModifier ? variantModifier + IMPORTANT_MODIFIER : variantModifier;
1247
+ return {
1248
+ isTailwindClass: true,
1249
+ modifierId,
1250
+ classGroupId,
1251
+ originalClassName,
1252
+ hasPostfixModifier
1253
+ };
1254
+ }).reverse().filter((parsed) => {
1255
+ if (!parsed.isTailwindClass) {
1256
+ return true;
1257
+ }
1258
+ const {
1259
+ modifierId,
1260
+ classGroupId,
1261
+ hasPostfixModifier
1262
+ } = parsed;
1263
+ const classId = modifierId + classGroupId;
1264
+ if (classGroupsInConflict.has(classId)) {
1265
+ return false;
1266
+ }
1267
+ classGroupsInConflict.add(classId);
1268
+ getConflictingClassGroupIds(classGroupId, hasPostfixModifier).forEach((group) => classGroupsInConflict.add(modifierId + group));
1269
+ return true;
1270
+ }).reverse().map((parsed) => parsed.originalClassName).join(" ");
1271
+ }
1272
+ function twJoin() {
1273
+ let index = 0;
1274
+ let argument;
1275
+ let resolvedValue;
1276
+ let string = "";
1277
+ while (index < arguments.length) {
1278
+ if (argument = arguments[index++]) {
1279
+ if (resolvedValue = toValue(argument)) {
1280
+ string && (string += " ");
1281
+ string += resolvedValue;
1282
+ }
1283
+ }
1284
+ }
1285
+ return string;
1286
+ }
1287
+ function toValue(mix) {
1288
+ if (typeof mix === "string") {
1289
+ return mix;
1290
+ }
1291
+ let resolvedValue;
1292
+ let string = "";
1293
+ for (let k = 0; k < mix.length; k++) {
1294
+ if (mix[k]) {
1295
+ if (resolvedValue = toValue(mix[k])) {
1296
+ string && (string += " ");
1297
+ string += resolvedValue;
1298
+ }
1299
+ }
1300
+ }
1301
+ return string;
1302
+ }
1303
+ function createTailwindMerge(createConfigFirst, ...createConfigRest) {
1304
+ let configUtils;
1305
+ let cacheGet;
1306
+ let cacheSet;
1307
+ let functionToCall = initTailwindMerge;
1308
+ function initTailwindMerge(classList) {
1309
+ const config = createConfigRest.reduce((previousConfig, createConfigCurrent) => createConfigCurrent(previousConfig), createConfigFirst());
1310
+ configUtils = createConfigUtils(config);
1311
+ cacheGet = configUtils.cache.get;
1312
+ cacheSet = configUtils.cache.set;
1313
+ functionToCall = tailwindMerge;
1314
+ return tailwindMerge(classList);
1315
+ }
1316
+ function tailwindMerge(classList) {
1317
+ const cachedResult = cacheGet(classList);
1318
+ if (cachedResult) {
1319
+ return cachedResult;
1320
+ }
1321
+ const result = mergeClassList(classList, configUtils);
1322
+ cacheSet(classList, result);
1323
+ return result;
1324
+ }
1325
+ return function callTailwindMerge() {
1326
+ return functionToCall(twJoin.apply(null, arguments));
1327
+ };
1328
+ }
1329
+ function fromTheme(key) {
1330
+ const themeGetter = (theme) => theme[key] || [];
1331
+ themeGetter.isThemeGetter = true;
1332
+ return themeGetter;
1333
+ }
1334
+ const arbitraryValueRegex = /^\[(?:([a-z-]+):)?(.+)\]$/i;
1335
+ const fractionRegex = /^\d+\/\d+$/;
1336
+ const stringLengths = /* @__PURE__ */ new Set(["px", "full", "screen"]);
1337
+ const tshirtUnitRegex = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/;
1338
+ const lengthUnitRegex = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh|cq(w|h|i|b|min|max))|\b(calc|min|max|clamp)\(.+\)|^0$/;
1339
+ const colorFunctionRegex = /^(rgba?|hsla?|hwb|(ok)?(lab|lch))\(.+\)$/;
1340
+ const shadowRegex = /^-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/;
1341
+ const imageRegex = /^(url|image|image-set|cross-fade|element|(repeating-)?(linear|radial|conic)-gradient)\(.+\)$/;
1342
+ function isLength(value) {
1343
+ return isNumber(value) || stringLengths.has(value) || fractionRegex.test(value);
1344
+ }
1345
+ function isArbitraryLength(value) {
1346
+ return getIsArbitraryValue(value, "length", isLengthOnly);
1347
+ }
1348
+ function isNumber(value) {
1349
+ return Boolean(value) && !Number.isNaN(Number(value));
1350
+ }
1351
+ function isArbitraryNumber(value) {
1352
+ return getIsArbitraryValue(value, "number", isNumber);
1353
+ }
1354
+ function isInteger(value) {
1355
+ return Boolean(value) && Number.isInteger(Number(value));
1356
+ }
1357
+ function isPercent(value) {
1358
+ return value.endsWith("%") && isNumber(value.slice(0, -1));
1359
+ }
1360
+ function isArbitraryValue(value) {
1361
+ return arbitraryValueRegex.test(value);
1362
+ }
1363
+ function isTshirtSize(value) {
1364
+ return tshirtUnitRegex.test(value);
1365
+ }
1366
+ const sizeLabels = /* @__PURE__ */ new Set(["length", "size", "percentage"]);
1367
+ function isArbitrarySize(value) {
1368
+ return getIsArbitraryValue(value, sizeLabels, isNever);
1369
+ }
1370
+ function isArbitraryPosition(value) {
1371
+ return getIsArbitraryValue(value, "position", isNever);
1372
+ }
1373
+ const imageLabels = /* @__PURE__ */ new Set(["image", "url"]);
1374
+ function isArbitraryImage(value) {
1375
+ return getIsArbitraryValue(value, imageLabels, isImage);
1376
+ }
1377
+ function isArbitraryShadow(value) {
1378
+ return getIsArbitraryValue(value, "", isShadow);
1379
+ }
1380
+ function isAny() {
1381
+ return true;
1382
+ }
1383
+ function getIsArbitraryValue(value, label, testValue) {
1384
+ const result = arbitraryValueRegex.exec(value);
1385
+ if (result) {
1386
+ if (result[1]) {
1387
+ return typeof label === "string" ? result[1] === label : label.has(result[1]);
1388
+ }
1389
+ return testValue(result[2]);
1390
+ }
1391
+ return false;
1392
+ }
1393
+ function isLengthOnly(value) {
1394
+ return lengthUnitRegex.test(value) && !colorFunctionRegex.test(value);
1395
+ }
1396
+ function isNever() {
1397
+ return false;
1398
+ }
1399
+ function isShadow(value) {
1400
+ return shadowRegex.test(value);
1401
+ }
1402
+ function isImage(value) {
1403
+ return imageRegex.test(value);
1404
+ }
1405
+ function getDefaultConfig() {
1406
+ const colors = fromTheme("colors");
1407
+ const spacing = fromTheme("spacing");
1408
+ const blur = fromTheme("blur");
1409
+ const brightness = fromTheme("brightness");
1410
+ const borderColor = fromTheme("borderColor");
1411
+ const borderRadius = fromTheme("borderRadius");
1412
+ const borderSpacing = fromTheme("borderSpacing");
1413
+ const borderWidth = fromTheme("borderWidth");
1414
+ const contrast = fromTheme("contrast");
1415
+ const grayscale = fromTheme("grayscale");
1416
+ const hueRotate = fromTheme("hueRotate");
1417
+ const invert = fromTheme("invert");
1418
+ const gap = fromTheme("gap");
1419
+ const gradientColorStops = fromTheme("gradientColorStops");
1420
+ const gradientColorStopPositions = fromTheme("gradientColorStopPositions");
1421
+ const inset = fromTheme("inset");
1422
+ const margin = fromTheme("margin");
1423
+ const opacity = fromTheme("opacity");
1424
+ const padding = fromTheme("padding");
1425
+ const saturate = fromTheme("saturate");
1426
+ const scale = fromTheme("scale");
1427
+ const sepia = fromTheme("sepia");
1428
+ const skew = fromTheme("skew");
1429
+ const space = fromTheme("space");
1430
+ const translate = fromTheme("translate");
1431
+ const getOverscroll = () => ["auto", "contain", "none"];
1432
+ const getOverflow = () => ["auto", "hidden", "clip", "visible", "scroll"];
1433
+ const getSpacingWithAutoAndArbitrary = () => ["auto", isArbitraryValue, spacing];
1434
+ const getSpacingWithArbitrary = () => [isArbitraryValue, spacing];
1435
+ const getLengthWithEmptyAndArbitrary = () => ["", isLength, isArbitraryLength];
1436
+ const getNumberWithAutoAndArbitrary = () => ["auto", isNumber, isArbitraryValue];
1437
+ const getPositions = () => ["bottom", "center", "left", "left-bottom", "left-top", "right", "right-bottom", "right-top", "top"];
1438
+ const getLineStyles = () => ["solid", "dashed", "dotted", "double", "none"];
1439
+ const getBlendModes = () => ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity", "plus-lighter"];
1440
+ const getAlign = () => ["start", "end", "center", "between", "around", "evenly", "stretch"];
1441
+ const getZeroAndEmpty = () => ["", "0", isArbitraryValue];
1442
+ const getBreaks = () => ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"];
1443
+ const getNumber = () => [isNumber, isArbitraryNumber];
1444
+ const getNumberAndArbitrary = () => [isNumber, isArbitraryValue];
1445
+ return {
1446
+ cacheSize: 500,
1447
+ separator: ":",
1448
+ theme: {
1449
+ colors: [isAny],
1450
+ spacing: [isLength, isArbitraryLength],
1451
+ blur: ["none", "", isTshirtSize, isArbitraryValue],
1452
+ brightness: getNumber(),
1453
+ borderColor: [colors],
1454
+ borderRadius: ["none", "", "full", isTshirtSize, isArbitraryValue],
1455
+ borderSpacing: getSpacingWithArbitrary(),
1456
+ borderWidth: getLengthWithEmptyAndArbitrary(),
1457
+ contrast: getNumber(),
1458
+ grayscale: getZeroAndEmpty(),
1459
+ hueRotate: getNumberAndArbitrary(),
1460
+ invert: getZeroAndEmpty(),
1461
+ gap: getSpacingWithArbitrary(),
1462
+ gradientColorStops: [colors],
1463
+ gradientColorStopPositions: [isPercent, isArbitraryLength],
1464
+ inset: getSpacingWithAutoAndArbitrary(),
1465
+ margin: getSpacingWithAutoAndArbitrary(),
1466
+ opacity: getNumber(),
1467
+ padding: getSpacingWithArbitrary(),
1468
+ saturate: getNumber(),
1469
+ scale: getNumber(),
1470
+ sepia: getZeroAndEmpty(),
1471
+ skew: getNumberAndArbitrary(),
1472
+ space: getSpacingWithArbitrary(),
1473
+ translate: getSpacingWithArbitrary()
1474
+ },
1475
+ classGroups: {
1476
+ // Layout
1477
+ /**
1478
+ * Aspect Ratio
1479
+ * @see https://tailwindcss.com/docs/aspect-ratio
1480
+ */
1481
+ aspect: [{
1482
+ aspect: ["auto", "square", "video", isArbitraryValue]
1483
+ }],
1484
+ /**
1485
+ * Container
1486
+ * @see https://tailwindcss.com/docs/container
1487
+ */
1488
+ container: ["container"],
1489
+ /**
1490
+ * Columns
1491
+ * @see https://tailwindcss.com/docs/columns
1492
+ */
1493
+ columns: [{
1494
+ columns: [isTshirtSize]
1495
+ }],
1496
+ /**
1497
+ * Break After
1498
+ * @see https://tailwindcss.com/docs/break-after
1499
+ */
1500
+ "break-after": [{
1501
+ "break-after": getBreaks()
1502
+ }],
1503
+ /**
1504
+ * Break Before
1505
+ * @see https://tailwindcss.com/docs/break-before
1506
+ */
1507
+ "break-before": [{
1508
+ "break-before": getBreaks()
1509
+ }],
1510
+ /**
1511
+ * Break Inside
1512
+ * @see https://tailwindcss.com/docs/break-inside
1513
+ */
1514
+ "break-inside": [{
1515
+ "break-inside": ["auto", "avoid", "avoid-page", "avoid-column"]
1516
+ }],
1517
+ /**
1518
+ * Box Decoration Break
1519
+ * @see https://tailwindcss.com/docs/box-decoration-break
1520
+ */
1521
+ "box-decoration": [{
1522
+ "box-decoration": ["slice", "clone"]
1523
+ }],
1524
+ /**
1525
+ * Box Sizing
1526
+ * @see https://tailwindcss.com/docs/box-sizing
1527
+ */
1528
+ box: [{
1529
+ box: ["border", "content"]
1530
+ }],
1531
+ /**
1532
+ * Display
1533
+ * @see https://tailwindcss.com/docs/display
1534
+ */
1535
+ 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"],
1536
+ /**
1537
+ * Floats
1538
+ * @see https://tailwindcss.com/docs/float
1539
+ */
1540
+ float: [{
1541
+ float: ["right", "left", "none", "start", "end"]
1542
+ }],
1543
+ /**
1544
+ * Clear
1545
+ * @see https://tailwindcss.com/docs/clear
1546
+ */
1547
+ clear: [{
1548
+ clear: ["left", "right", "both", "none", "start", "end"]
1549
+ }],
1550
+ /**
1551
+ * Isolation
1552
+ * @see https://tailwindcss.com/docs/isolation
1553
+ */
1554
+ isolation: ["isolate", "isolation-auto"],
1555
+ /**
1556
+ * Object Fit
1557
+ * @see https://tailwindcss.com/docs/object-fit
1558
+ */
1559
+ "object-fit": [{
1560
+ object: ["contain", "cover", "fill", "none", "scale-down"]
1561
+ }],
1562
+ /**
1563
+ * Object Position
1564
+ * @see https://tailwindcss.com/docs/object-position
1565
+ */
1566
+ "object-position": [{
1567
+ object: [...getPositions(), isArbitraryValue]
1568
+ }],
1569
+ /**
1570
+ * Overflow
1571
+ * @see https://tailwindcss.com/docs/overflow
1572
+ */
1573
+ overflow: [{
1574
+ overflow: getOverflow()
1575
+ }],
1576
+ /**
1577
+ * Overflow X
1578
+ * @see https://tailwindcss.com/docs/overflow
1579
+ */
1580
+ "overflow-x": [{
1581
+ "overflow-x": getOverflow()
1582
+ }],
1583
+ /**
1584
+ * Overflow Y
1585
+ * @see https://tailwindcss.com/docs/overflow
1586
+ */
1587
+ "overflow-y": [{
1588
+ "overflow-y": getOverflow()
1589
+ }],
1590
+ /**
1591
+ * Overscroll Behavior
1592
+ * @see https://tailwindcss.com/docs/overscroll-behavior
1593
+ */
1594
+ overscroll: [{
1595
+ overscroll: getOverscroll()
1596
+ }],
1597
+ /**
1598
+ * Overscroll Behavior X
1599
+ * @see https://tailwindcss.com/docs/overscroll-behavior
1600
+ */
1601
+ "overscroll-x": [{
1602
+ "overscroll-x": getOverscroll()
1603
+ }],
1604
+ /**
1605
+ * Overscroll Behavior Y
1606
+ * @see https://tailwindcss.com/docs/overscroll-behavior
1607
+ */
1608
+ "overscroll-y": [{
1609
+ "overscroll-y": getOverscroll()
1610
+ }],
1611
+ /**
1612
+ * Position
1613
+ * @see https://tailwindcss.com/docs/position
1614
+ */
1615
+ position: ["static", "fixed", "absolute", "relative", "sticky"],
1616
+ /**
1617
+ * Top / Right / Bottom / Left
1618
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1619
+ */
1620
+ inset: [{
1621
+ inset: [inset]
1622
+ }],
1623
+ /**
1624
+ * Right / Left
1625
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1626
+ */
1627
+ "inset-x": [{
1628
+ "inset-x": [inset]
1629
+ }],
1630
+ /**
1631
+ * Top / Bottom
1632
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1633
+ */
1634
+ "inset-y": [{
1635
+ "inset-y": [inset]
1636
+ }],
1637
+ /**
1638
+ * Start
1639
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1640
+ */
1641
+ start: [{
1642
+ start: [inset]
1643
+ }],
1644
+ /**
1645
+ * End
1646
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1647
+ */
1648
+ end: [{
1649
+ end: [inset]
1650
+ }],
1651
+ /**
1652
+ * Top
1653
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1654
+ */
1655
+ top: [{
1656
+ top: [inset]
1657
+ }],
1658
+ /**
1659
+ * Right
1660
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1661
+ */
1662
+ right: [{
1663
+ right: [inset]
1664
+ }],
1665
+ /**
1666
+ * Bottom
1667
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1668
+ */
1669
+ bottom: [{
1670
+ bottom: [inset]
1671
+ }],
1672
+ /**
1673
+ * Left
1674
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1675
+ */
1676
+ left: [{
1677
+ left: [inset]
1678
+ }],
1679
+ /**
1680
+ * Visibility
1681
+ * @see https://tailwindcss.com/docs/visibility
1682
+ */
1683
+ visibility: ["visible", "invisible", "collapse"],
1684
+ /**
1685
+ * Z-Index
1686
+ * @see https://tailwindcss.com/docs/z-index
1687
+ */
1688
+ z: [{
1689
+ z: ["auto", isInteger, isArbitraryValue]
1690
+ }],
1691
+ // Flexbox and Grid
1692
+ /**
1693
+ * Flex Basis
1694
+ * @see https://tailwindcss.com/docs/flex-basis
1695
+ */
1696
+ basis: [{
1697
+ basis: getSpacingWithAutoAndArbitrary()
1698
+ }],
1699
+ /**
1700
+ * Flex Direction
1701
+ * @see https://tailwindcss.com/docs/flex-direction
1702
+ */
1703
+ "flex-direction": [{
1704
+ flex: ["row", "row-reverse", "col", "col-reverse"]
1705
+ }],
1706
+ /**
1707
+ * Flex Wrap
1708
+ * @see https://tailwindcss.com/docs/flex-wrap
1709
+ */
1710
+ "flex-wrap": [{
1711
+ flex: ["wrap", "wrap-reverse", "nowrap"]
1712
+ }],
1713
+ /**
1714
+ * Flex
1715
+ * @see https://tailwindcss.com/docs/flex
1716
+ */
1717
+ flex: [{
1718
+ flex: ["1", "auto", "initial", "none", isArbitraryValue]
1719
+ }],
1720
+ /**
1721
+ * Flex Grow
1722
+ * @see https://tailwindcss.com/docs/flex-grow
1723
+ */
1724
+ grow: [{
1725
+ grow: getZeroAndEmpty()
1726
+ }],
1727
+ /**
1728
+ * Flex Shrink
1729
+ * @see https://tailwindcss.com/docs/flex-shrink
1730
+ */
1731
+ shrink: [{
1732
+ shrink: getZeroAndEmpty()
1733
+ }],
1734
+ /**
1735
+ * Order
1736
+ * @see https://tailwindcss.com/docs/order
1737
+ */
1738
+ order: [{
1739
+ order: ["first", "last", "none", isInteger, isArbitraryValue]
1740
+ }],
1741
+ /**
1742
+ * Grid Template Columns
1743
+ * @see https://tailwindcss.com/docs/grid-template-columns
1744
+ */
1745
+ "grid-cols": [{
1746
+ "grid-cols": [isAny]
1747
+ }],
1748
+ /**
1749
+ * Grid Column Start / End
1750
+ * @see https://tailwindcss.com/docs/grid-column
1751
+ */
1752
+ "col-start-end": [{
1753
+ col: ["auto", {
1754
+ span: ["full", isInteger, isArbitraryValue]
1755
+ }, isArbitraryValue]
1756
+ }],
1757
+ /**
1758
+ * Grid Column Start
1759
+ * @see https://tailwindcss.com/docs/grid-column
1760
+ */
1761
+ "col-start": [{
1762
+ "col-start": getNumberWithAutoAndArbitrary()
1763
+ }],
1764
+ /**
1765
+ * Grid Column End
1766
+ * @see https://tailwindcss.com/docs/grid-column
1767
+ */
1768
+ "col-end": [{
1769
+ "col-end": getNumberWithAutoAndArbitrary()
1770
+ }],
1771
+ /**
1772
+ * Grid Template Rows
1773
+ * @see https://tailwindcss.com/docs/grid-template-rows
1774
+ */
1775
+ "grid-rows": [{
1776
+ "grid-rows": [isAny]
1777
+ }],
1778
+ /**
1779
+ * Grid Row Start / End
1780
+ * @see https://tailwindcss.com/docs/grid-row
1781
+ */
1782
+ "row-start-end": [{
1783
+ row: ["auto", {
1784
+ span: [isInteger, isArbitraryValue]
1785
+ }, isArbitraryValue]
1786
+ }],
1787
+ /**
1788
+ * Grid Row Start
1789
+ * @see https://tailwindcss.com/docs/grid-row
1790
+ */
1791
+ "row-start": [{
1792
+ "row-start": getNumberWithAutoAndArbitrary()
1793
+ }],
1794
+ /**
1795
+ * Grid Row End
1796
+ * @see https://tailwindcss.com/docs/grid-row
1797
+ */
1798
+ "row-end": [{
1799
+ "row-end": getNumberWithAutoAndArbitrary()
1800
+ }],
1801
+ /**
1802
+ * Grid Auto Flow
1803
+ * @see https://tailwindcss.com/docs/grid-auto-flow
1804
+ */
1805
+ "grid-flow": [{
1806
+ "grid-flow": ["row", "col", "dense", "row-dense", "col-dense"]
1807
+ }],
1808
+ /**
1809
+ * Grid Auto Columns
1810
+ * @see https://tailwindcss.com/docs/grid-auto-columns
1811
+ */
1812
+ "auto-cols": [{
1813
+ "auto-cols": ["auto", "min", "max", "fr", isArbitraryValue]
1814
+ }],
1815
+ /**
1816
+ * Grid Auto Rows
1817
+ * @see https://tailwindcss.com/docs/grid-auto-rows
1818
+ */
1819
+ "auto-rows": [{
1820
+ "auto-rows": ["auto", "min", "max", "fr", isArbitraryValue]
1821
+ }],
1822
+ /**
1823
+ * Gap
1824
+ * @see https://tailwindcss.com/docs/gap
1825
+ */
1826
+ gap: [{
1827
+ gap: [gap]
1828
+ }],
1829
+ /**
1830
+ * Gap X
1831
+ * @see https://tailwindcss.com/docs/gap
1832
+ */
1833
+ "gap-x": [{
1834
+ "gap-x": [gap]
1835
+ }],
1836
+ /**
1837
+ * Gap Y
1838
+ * @see https://tailwindcss.com/docs/gap
1839
+ */
1840
+ "gap-y": [{
1841
+ "gap-y": [gap]
1842
+ }],
1843
+ /**
1844
+ * Justify Content
1845
+ * @see https://tailwindcss.com/docs/justify-content
1846
+ */
1847
+ "justify-content": [{
1848
+ justify: ["normal", ...getAlign()]
1849
+ }],
1850
+ /**
1851
+ * Justify Items
1852
+ * @see https://tailwindcss.com/docs/justify-items
1853
+ */
1854
+ "justify-items": [{
1855
+ "justify-items": ["start", "end", "center", "stretch"]
1856
+ }],
1857
+ /**
1858
+ * Justify Self
1859
+ * @see https://tailwindcss.com/docs/justify-self
1860
+ */
1861
+ "justify-self": [{
1862
+ "justify-self": ["auto", "start", "end", "center", "stretch"]
1863
+ }],
1864
+ /**
1865
+ * Align Content
1866
+ * @see https://tailwindcss.com/docs/align-content
1867
+ */
1868
+ "align-content": [{
1869
+ content: ["normal", ...getAlign(), "baseline"]
1870
+ }],
1871
+ /**
1872
+ * Align Items
1873
+ * @see https://tailwindcss.com/docs/align-items
1874
+ */
1875
+ "align-items": [{
1876
+ items: ["start", "end", "center", "baseline", "stretch"]
1877
+ }],
1878
+ /**
1879
+ * Align Self
1880
+ * @see https://tailwindcss.com/docs/align-self
1881
+ */
1882
+ "align-self": [{
1883
+ self: ["auto", "start", "end", "center", "stretch", "baseline"]
1884
+ }],
1885
+ /**
1886
+ * Place Content
1887
+ * @see https://tailwindcss.com/docs/place-content
1888
+ */
1889
+ "place-content": [{
1890
+ "place-content": [...getAlign(), "baseline"]
1891
+ }],
1892
+ /**
1893
+ * Place Items
1894
+ * @see https://tailwindcss.com/docs/place-items
1895
+ */
1896
+ "place-items": [{
1897
+ "place-items": ["start", "end", "center", "baseline", "stretch"]
1898
+ }],
1899
+ /**
1900
+ * Place Self
1901
+ * @see https://tailwindcss.com/docs/place-self
1902
+ */
1903
+ "place-self": [{
1904
+ "place-self": ["auto", "start", "end", "center", "stretch"]
1905
+ }],
1906
+ // Spacing
1907
+ /**
1908
+ * Padding
1909
+ * @see https://tailwindcss.com/docs/padding
1910
+ */
1911
+ p: [{
1912
+ p: [padding]
1913
+ }],
1914
+ /**
1915
+ * Padding X
1916
+ * @see https://tailwindcss.com/docs/padding
1917
+ */
1918
+ px: [{
1919
+ px: [padding]
1920
+ }],
1921
+ /**
1922
+ * Padding Y
1923
+ * @see https://tailwindcss.com/docs/padding
1924
+ */
1925
+ py: [{
1926
+ py: [padding]
1927
+ }],
1928
+ /**
1929
+ * Padding Start
1930
+ * @see https://tailwindcss.com/docs/padding
1931
+ */
1932
+ ps: [{
1933
+ ps: [padding]
1934
+ }],
1935
+ /**
1936
+ * Padding End
1937
+ * @see https://tailwindcss.com/docs/padding
1938
+ */
1939
+ pe: [{
1940
+ pe: [padding]
1941
+ }],
1942
+ /**
1943
+ * Padding Top
1944
+ * @see https://tailwindcss.com/docs/padding
1945
+ */
1946
+ pt: [{
1947
+ pt: [padding]
1948
+ }],
1949
+ /**
1950
+ * Padding Right
1951
+ * @see https://tailwindcss.com/docs/padding
1952
+ */
1953
+ pr: [{
1954
+ pr: [padding]
1955
+ }],
1956
+ /**
1957
+ * Padding Bottom
1958
+ * @see https://tailwindcss.com/docs/padding
1959
+ */
1960
+ pb: [{
1961
+ pb: [padding]
1962
+ }],
1963
+ /**
1964
+ * Padding Left
1965
+ * @see https://tailwindcss.com/docs/padding
1966
+ */
1967
+ pl: [{
1968
+ pl: [padding]
1969
+ }],
1970
+ /**
1971
+ * Margin
1972
+ * @see https://tailwindcss.com/docs/margin
1973
+ */
1974
+ m: [{
1975
+ m: [margin]
1976
+ }],
1977
+ /**
1978
+ * Margin X
1979
+ * @see https://tailwindcss.com/docs/margin
1980
+ */
1981
+ mx: [{
1982
+ mx: [margin]
1983
+ }],
1984
+ /**
1985
+ * Margin Y
1986
+ * @see https://tailwindcss.com/docs/margin
1987
+ */
1988
+ my: [{
1989
+ my: [margin]
1990
+ }],
1991
+ /**
1992
+ * Margin Start
1993
+ * @see https://tailwindcss.com/docs/margin
1994
+ */
1995
+ ms: [{
1996
+ ms: [margin]
1997
+ }],
1998
+ /**
1999
+ * Margin End
2000
+ * @see https://tailwindcss.com/docs/margin
2001
+ */
2002
+ me: [{
2003
+ me: [margin]
2004
+ }],
2005
+ /**
2006
+ * Margin Top
2007
+ * @see https://tailwindcss.com/docs/margin
2008
+ */
2009
+ mt: [{
2010
+ mt: [margin]
2011
+ }],
2012
+ /**
2013
+ * Margin Right
2014
+ * @see https://tailwindcss.com/docs/margin
2015
+ */
2016
+ mr: [{
2017
+ mr: [margin]
2018
+ }],
2019
+ /**
2020
+ * Margin Bottom
2021
+ * @see https://tailwindcss.com/docs/margin
2022
+ */
2023
+ mb: [{
2024
+ mb: [margin]
2025
+ }],
2026
+ /**
2027
+ * Margin Left
2028
+ * @see https://tailwindcss.com/docs/margin
2029
+ */
2030
+ ml: [{
2031
+ ml: [margin]
2032
+ }],
2033
+ /**
2034
+ * Space Between X
2035
+ * @see https://tailwindcss.com/docs/space
2036
+ */
2037
+ "space-x": [{
2038
+ "space-x": [space]
2039
+ }],
2040
+ /**
2041
+ * Space Between X Reverse
2042
+ * @see https://tailwindcss.com/docs/space
2043
+ */
2044
+ "space-x-reverse": ["space-x-reverse"],
2045
+ /**
2046
+ * Space Between Y
2047
+ * @see https://tailwindcss.com/docs/space
2048
+ */
2049
+ "space-y": [{
2050
+ "space-y": [space]
2051
+ }],
2052
+ /**
2053
+ * Space Between Y Reverse
2054
+ * @see https://tailwindcss.com/docs/space
2055
+ */
2056
+ "space-y-reverse": ["space-y-reverse"],
2057
+ // Sizing
2058
+ /**
2059
+ * Width
2060
+ * @see https://tailwindcss.com/docs/width
2061
+ */
2062
+ w: [{
2063
+ w: ["auto", "min", "max", "fit", "svw", "lvw", "dvw", isArbitraryValue, spacing]
2064
+ }],
2065
+ /**
2066
+ * Min-Width
2067
+ * @see https://tailwindcss.com/docs/min-width
2068
+ */
2069
+ "min-w": [{
2070
+ "min-w": [isArbitraryValue, spacing, "min", "max", "fit"]
2071
+ }],
2072
+ /**
2073
+ * Max-Width
2074
+ * @see https://tailwindcss.com/docs/max-width
2075
+ */
2076
+ "max-w": [{
2077
+ "max-w": [isArbitraryValue, spacing, "none", "full", "min", "max", "fit", "prose", {
2078
+ screen: [isTshirtSize]
2079
+ }, isTshirtSize]
2080
+ }],
2081
+ /**
2082
+ * Height
2083
+ * @see https://tailwindcss.com/docs/height
2084
+ */
2085
+ h: [{
2086
+ h: [isArbitraryValue, spacing, "auto", "min", "max", "fit", "svh", "lvh", "dvh"]
2087
+ }],
2088
+ /**
2089
+ * Min-Height
2090
+ * @see https://tailwindcss.com/docs/min-height
2091
+ */
2092
+ "min-h": [{
2093
+ "min-h": [isArbitraryValue, spacing, "min", "max", "fit", "svh", "lvh", "dvh"]
2094
+ }],
2095
+ /**
2096
+ * Max-Height
2097
+ * @see https://tailwindcss.com/docs/max-height
2098
+ */
2099
+ "max-h": [{
2100
+ "max-h": [isArbitraryValue, spacing, "min", "max", "fit", "svh", "lvh", "dvh"]
2101
+ }],
2102
+ /**
2103
+ * Size
2104
+ * @see https://tailwindcss.com/docs/size
2105
+ */
2106
+ size: [{
2107
+ size: [isArbitraryValue, spacing, "auto", "min", "max", "fit"]
2108
+ }],
2109
+ // Typography
2110
+ /**
2111
+ * Font Size
2112
+ * @see https://tailwindcss.com/docs/font-size
2113
+ */
2114
+ "font-size": [{
2115
+ text: ["base", isTshirtSize, isArbitraryLength]
2116
+ }],
2117
+ /**
2118
+ * Font Smoothing
2119
+ * @see https://tailwindcss.com/docs/font-smoothing
2120
+ */
2121
+ "font-smoothing": ["antialiased", "subpixel-antialiased"],
2122
+ /**
2123
+ * Font Style
2124
+ * @see https://tailwindcss.com/docs/font-style
2125
+ */
2126
+ "font-style": ["italic", "not-italic"],
2127
+ /**
2128
+ * Font Weight
2129
+ * @see https://tailwindcss.com/docs/font-weight
2130
+ */
2131
+ "font-weight": [{
2132
+ font: ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black", isArbitraryNumber]
2133
+ }],
2134
+ /**
2135
+ * Font Family
2136
+ * @see https://tailwindcss.com/docs/font-family
2137
+ */
2138
+ "font-family": [{
2139
+ font: [isAny]
2140
+ }],
2141
+ /**
2142
+ * Font Variant Numeric
2143
+ * @see https://tailwindcss.com/docs/font-variant-numeric
2144
+ */
2145
+ "fvn-normal": ["normal-nums"],
2146
+ /**
2147
+ * Font Variant Numeric
2148
+ * @see https://tailwindcss.com/docs/font-variant-numeric
2149
+ */
2150
+ "fvn-ordinal": ["ordinal"],
2151
+ /**
2152
+ * Font Variant Numeric
2153
+ * @see https://tailwindcss.com/docs/font-variant-numeric
2154
+ */
2155
+ "fvn-slashed-zero": ["slashed-zero"],
2156
+ /**
2157
+ * Font Variant Numeric
2158
+ * @see https://tailwindcss.com/docs/font-variant-numeric
2159
+ */
2160
+ "fvn-figure": ["lining-nums", "oldstyle-nums"],
2161
+ /**
2162
+ * Font Variant Numeric
2163
+ * @see https://tailwindcss.com/docs/font-variant-numeric
2164
+ */
2165
+ "fvn-spacing": ["proportional-nums", "tabular-nums"],
2166
+ /**
2167
+ * Font Variant Numeric
2168
+ * @see https://tailwindcss.com/docs/font-variant-numeric
2169
+ */
2170
+ "fvn-fraction": ["diagonal-fractions", "stacked-fractons"],
2171
+ /**
2172
+ * Letter Spacing
2173
+ * @see https://tailwindcss.com/docs/letter-spacing
2174
+ */
2175
+ tracking: [{
2176
+ tracking: ["tighter", "tight", "normal", "wide", "wider", "widest", isArbitraryValue]
2177
+ }],
2178
+ /**
2179
+ * Line Clamp
2180
+ * @see https://tailwindcss.com/docs/line-clamp
2181
+ */
2182
+ "line-clamp": [{
2183
+ "line-clamp": ["none", isNumber, isArbitraryNumber]
2184
+ }],
2185
+ /**
2186
+ * Line Height
2187
+ * @see https://tailwindcss.com/docs/line-height
2188
+ */
2189
+ leading: [{
2190
+ leading: ["none", "tight", "snug", "normal", "relaxed", "loose", isLength, isArbitraryValue]
2191
+ }],
2192
+ /**
2193
+ * List Style Image
2194
+ * @see https://tailwindcss.com/docs/list-style-image
2195
+ */
2196
+ "list-image": [{
2197
+ "list-image": ["none", isArbitraryValue]
2198
+ }],
2199
+ /**
2200
+ * List Style Type
2201
+ * @see https://tailwindcss.com/docs/list-style-type
2202
+ */
2203
+ "list-style-type": [{
2204
+ list: ["none", "disc", "decimal", isArbitraryValue]
2205
+ }],
2206
+ /**
2207
+ * List Style Position
2208
+ * @see https://tailwindcss.com/docs/list-style-position
2209
+ */
2210
+ "list-style-position": [{
2211
+ list: ["inside", "outside"]
2212
+ }],
2213
+ /**
2214
+ * Placeholder Color
2215
+ * @deprecated since Tailwind CSS v3.0.0
2216
+ * @see https://tailwindcss.com/docs/placeholder-color
2217
+ */
2218
+ "placeholder-color": [{
2219
+ placeholder: [colors]
2220
+ }],
2221
+ /**
2222
+ * Placeholder Opacity
2223
+ * @see https://tailwindcss.com/docs/placeholder-opacity
2224
+ */
2225
+ "placeholder-opacity": [{
2226
+ "placeholder-opacity": [opacity]
2227
+ }],
2228
+ /**
2229
+ * Text Alignment
2230
+ * @see https://tailwindcss.com/docs/text-align
2231
+ */
2232
+ "text-alignment": [{
2233
+ text: ["left", "center", "right", "justify", "start", "end"]
2234
+ }],
2235
+ /**
2236
+ * Text Color
2237
+ * @see https://tailwindcss.com/docs/text-color
2238
+ */
2239
+ "text-color": [{
2240
+ text: [colors]
2241
+ }],
2242
+ /**
2243
+ * Text Opacity
2244
+ * @see https://tailwindcss.com/docs/text-opacity
2245
+ */
2246
+ "text-opacity": [{
2247
+ "text-opacity": [opacity]
2248
+ }],
2249
+ /**
2250
+ * Text Decoration
2251
+ * @see https://tailwindcss.com/docs/text-decoration
2252
+ */
2253
+ "text-decoration": ["underline", "overline", "line-through", "no-underline"],
2254
+ /**
2255
+ * Text Decoration Style
2256
+ * @see https://tailwindcss.com/docs/text-decoration-style
2257
+ */
2258
+ "text-decoration-style": [{
2259
+ decoration: [...getLineStyles(), "wavy"]
2260
+ }],
2261
+ /**
2262
+ * Text Decoration Thickness
2263
+ * @see https://tailwindcss.com/docs/text-decoration-thickness
2264
+ */
2265
+ "text-decoration-thickness": [{
2266
+ decoration: ["auto", "from-font", isLength, isArbitraryLength]
2267
+ }],
2268
+ /**
2269
+ * Text Underline Offset
2270
+ * @see https://tailwindcss.com/docs/text-underline-offset
2271
+ */
2272
+ "underline-offset": [{
2273
+ "underline-offset": ["auto", isLength, isArbitraryValue]
2274
+ }],
2275
+ /**
2276
+ * Text Decoration Color
2277
+ * @see https://tailwindcss.com/docs/text-decoration-color
2278
+ */
2279
+ "text-decoration-color": [{
2280
+ decoration: [colors]
2281
+ }],
2282
+ /**
2283
+ * Text Transform
2284
+ * @see https://tailwindcss.com/docs/text-transform
2285
+ */
2286
+ "text-transform": ["uppercase", "lowercase", "capitalize", "normal-case"],
2287
+ /**
2288
+ * Text Overflow
2289
+ * @see https://tailwindcss.com/docs/text-overflow
2290
+ */
2291
+ "text-overflow": ["truncate", "text-ellipsis", "text-clip"],
2292
+ /**
2293
+ * Text Wrap
2294
+ * @see https://tailwindcss.com/docs/text-wrap
2295
+ */
2296
+ "text-wrap": [{
2297
+ text: ["wrap", "nowrap", "balance", "pretty"]
2298
+ }],
2299
+ /**
2300
+ * Text Indent
2301
+ * @see https://tailwindcss.com/docs/text-indent
2302
+ */
2303
+ indent: [{
2304
+ indent: getSpacingWithArbitrary()
2305
+ }],
2306
+ /**
2307
+ * Vertical Alignment
2308
+ * @see https://tailwindcss.com/docs/vertical-align
2309
+ */
2310
+ "vertical-align": [{
2311
+ align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", isArbitraryValue]
2312
+ }],
2313
+ /**
2314
+ * Whitespace
2315
+ * @see https://tailwindcss.com/docs/whitespace
2316
+ */
2317
+ whitespace: [{
2318
+ whitespace: ["normal", "nowrap", "pre", "pre-line", "pre-wrap", "break-spaces"]
2319
+ }],
2320
+ /**
2321
+ * Word Break
2322
+ * @see https://tailwindcss.com/docs/word-break
2323
+ */
2324
+ break: [{
2325
+ break: ["normal", "words", "all", "keep"]
2326
+ }],
2327
+ /**
2328
+ * Hyphens
2329
+ * @see https://tailwindcss.com/docs/hyphens
2330
+ */
2331
+ hyphens: [{
2332
+ hyphens: ["none", "manual", "auto"]
2333
+ }],
2334
+ /**
2335
+ * Content
2336
+ * @see https://tailwindcss.com/docs/content
2337
+ */
2338
+ content: [{
2339
+ content: ["none", isArbitraryValue]
2340
+ }],
2341
+ // Backgrounds
2342
+ /**
2343
+ * Background Attachment
2344
+ * @see https://tailwindcss.com/docs/background-attachment
2345
+ */
2346
+ "bg-attachment": [{
2347
+ bg: ["fixed", "local", "scroll"]
2348
+ }],
2349
+ /**
2350
+ * Background Clip
2351
+ * @see https://tailwindcss.com/docs/background-clip
2352
+ */
2353
+ "bg-clip": [{
2354
+ "bg-clip": ["border", "padding", "content", "text"]
2355
+ }],
2356
+ /**
2357
+ * Background Opacity
2358
+ * @deprecated since Tailwind CSS v3.0.0
2359
+ * @see https://tailwindcss.com/docs/background-opacity
2360
+ */
2361
+ "bg-opacity": [{
2362
+ "bg-opacity": [opacity]
2363
+ }],
2364
+ /**
2365
+ * Background Origin
2366
+ * @see https://tailwindcss.com/docs/background-origin
2367
+ */
2368
+ "bg-origin": [{
2369
+ "bg-origin": ["border", "padding", "content"]
2370
+ }],
2371
+ /**
2372
+ * Background Position
2373
+ * @see https://tailwindcss.com/docs/background-position
2374
+ */
2375
+ "bg-position": [{
2376
+ bg: [...getPositions(), isArbitraryPosition]
2377
+ }],
2378
+ /**
2379
+ * Background Repeat
2380
+ * @see https://tailwindcss.com/docs/background-repeat
2381
+ */
2382
+ "bg-repeat": [{
2383
+ bg: ["no-repeat", {
2384
+ repeat: ["", "x", "y", "round", "space"]
2385
+ }]
2386
+ }],
2387
+ /**
2388
+ * Background Size
2389
+ * @see https://tailwindcss.com/docs/background-size
2390
+ */
2391
+ "bg-size": [{
2392
+ bg: ["auto", "cover", "contain", isArbitrarySize]
2393
+ }],
2394
+ /**
2395
+ * Background Image
2396
+ * @see https://tailwindcss.com/docs/background-image
2397
+ */
2398
+ "bg-image": [{
2399
+ bg: ["none", {
2400
+ "gradient-to": ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
2401
+ }, isArbitraryImage]
2402
+ }],
2403
+ /**
2404
+ * Background Color
2405
+ * @see https://tailwindcss.com/docs/background-color
2406
+ */
2407
+ "bg-color": [{
2408
+ bg: [colors]
2409
+ }],
2410
+ /**
2411
+ * Gradient Color Stops From Position
2412
+ * @see https://tailwindcss.com/docs/gradient-color-stops
2413
+ */
2414
+ "gradient-from-pos": [{
2415
+ from: [gradientColorStopPositions]
2416
+ }],
2417
+ /**
2418
+ * Gradient Color Stops Via Position
2419
+ * @see https://tailwindcss.com/docs/gradient-color-stops
2420
+ */
2421
+ "gradient-via-pos": [{
2422
+ via: [gradientColorStopPositions]
2423
+ }],
2424
+ /**
2425
+ * Gradient Color Stops To Position
2426
+ * @see https://tailwindcss.com/docs/gradient-color-stops
2427
+ */
2428
+ "gradient-to-pos": [{
2429
+ to: [gradientColorStopPositions]
2430
+ }],
2431
+ /**
2432
+ * Gradient Color Stops From
2433
+ * @see https://tailwindcss.com/docs/gradient-color-stops
2434
+ */
2435
+ "gradient-from": [{
2436
+ from: [gradientColorStops]
2437
+ }],
2438
+ /**
2439
+ * Gradient Color Stops Via
2440
+ * @see https://tailwindcss.com/docs/gradient-color-stops
2441
+ */
2442
+ "gradient-via": [{
2443
+ via: [gradientColorStops]
2444
+ }],
2445
+ /**
2446
+ * Gradient Color Stops To
2447
+ * @see https://tailwindcss.com/docs/gradient-color-stops
2448
+ */
2449
+ "gradient-to": [{
2450
+ to: [gradientColorStops]
2451
+ }],
2452
+ // Borders
2453
+ /**
2454
+ * Border Radius
2455
+ * @see https://tailwindcss.com/docs/border-radius
2456
+ */
2457
+ rounded: [{
2458
+ rounded: [borderRadius]
2459
+ }],
2460
+ /**
2461
+ * Border Radius Start
2462
+ * @see https://tailwindcss.com/docs/border-radius
2463
+ */
2464
+ "rounded-s": [{
2465
+ "rounded-s": [borderRadius]
2466
+ }],
2467
+ /**
2468
+ * Border Radius End
2469
+ * @see https://tailwindcss.com/docs/border-radius
2470
+ */
2471
+ "rounded-e": [{
2472
+ "rounded-e": [borderRadius]
2473
+ }],
2474
+ /**
2475
+ * Border Radius Top
2476
+ * @see https://tailwindcss.com/docs/border-radius
2477
+ */
2478
+ "rounded-t": [{
2479
+ "rounded-t": [borderRadius]
2480
+ }],
2481
+ /**
2482
+ * Border Radius Right
2483
+ * @see https://tailwindcss.com/docs/border-radius
2484
+ */
2485
+ "rounded-r": [{
2486
+ "rounded-r": [borderRadius]
2487
+ }],
2488
+ /**
2489
+ * Border Radius Bottom
2490
+ * @see https://tailwindcss.com/docs/border-radius
2491
+ */
2492
+ "rounded-b": [{
2493
+ "rounded-b": [borderRadius]
2494
+ }],
2495
+ /**
2496
+ * Border Radius Left
2497
+ * @see https://tailwindcss.com/docs/border-radius
2498
+ */
2499
+ "rounded-l": [{
2500
+ "rounded-l": [borderRadius]
2501
+ }],
2502
+ /**
2503
+ * Border Radius Start Start
2504
+ * @see https://tailwindcss.com/docs/border-radius
2505
+ */
2506
+ "rounded-ss": [{
2507
+ "rounded-ss": [borderRadius]
2508
+ }],
2509
+ /**
2510
+ * Border Radius Start End
2511
+ * @see https://tailwindcss.com/docs/border-radius
2512
+ */
2513
+ "rounded-se": [{
2514
+ "rounded-se": [borderRadius]
2515
+ }],
2516
+ /**
2517
+ * Border Radius End End
2518
+ * @see https://tailwindcss.com/docs/border-radius
2519
+ */
2520
+ "rounded-ee": [{
2521
+ "rounded-ee": [borderRadius]
2522
+ }],
2523
+ /**
2524
+ * Border Radius End Start
2525
+ * @see https://tailwindcss.com/docs/border-radius
2526
+ */
2527
+ "rounded-es": [{
2528
+ "rounded-es": [borderRadius]
2529
+ }],
2530
+ /**
2531
+ * Border Radius Top Left
2532
+ * @see https://tailwindcss.com/docs/border-radius
2533
+ */
2534
+ "rounded-tl": [{
2535
+ "rounded-tl": [borderRadius]
2536
+ }],
2537
+ /**
2538
+ * Border Radius Top Right
2539
+ * @see https://tailwindcss.com/docs/border-radius
2540
+ */
2541
+ "rounded-tr": [{
2542
+ "rounded-tr": [borderRadius]
2543
+ }],
2544
+ /**
2545
+ * Border Radius Bottom Right
2546
+ * @see https://tailwindcss.com/docs/border-radius
2547
+ */
2548
+ "rounded-br": [{
2549
+ "rounded-br": [borderRadius]
2550
+ }],
2551
+ /**
2552
+ * Border Radius Bottom Left
2553
+ * @see https://tailwindcss.com/docs/border-radius
2554
+ */
2555
+ "rounded-bl": [{
2556
+ "rounded-bl": [borderRadius]
2557
+ }],
2558
+ /**
2559
+ * Border Width
2560
+ * @see https://tailwindcss.com/docs/border-width
2561
+ */
2562
+ "border-w": [{
2563
+ border: [borderWidth]
2564
+ }],
2565
+ /**
2566
+ * Border Width X
2567
+ * @see https://tailwindcss.com/docs/border-width
2568
+ */
2569
+ "border-w-x": [{
2570
+ "border-x": [borderWidth]
2571
+ }],
2572
+ /**
2573
+ * Border Width Y
2574
+ * @see https://tailwindcss.com/docs/border-width
2575
+ */
2576
+ "border-w-y": [{
2577
+ "border-y": [borderWidth]
2578
+ }],
2579
+ /**
2580
+ * Border Width Start
2581
+ * @see https://tailwindcss.com/docs/border-width
2582
+ */
2583
+ "border-w-s": [{
2584
+ "border-s": [borderWidth]
2585
+ }],
2586
+ /**
2587
+ * Border Width End
2588
+ * @see https://tailwindcss.com/docs/border-width
2589
+ */
2590
+ "border-w-e": [{
2591
+ "border-e": [borderWidth]
2592
+ }],
2593
+ /**
2594
+ * Border Width Top
2595
+ * @see https://tailwindcss.com/docs/border-width
2596
+ */
2597
+ "border-w-t": [{
2598
+ "border-t": [borderWidth]
2599
+ }],
2600
+ /**
2601
+ * Border Width Right
2602
+ * @see https://tailwindcss.com/docs/border-width
2603
+ */
2604
+ "border-w-r": [{
2605
+ "border-r": [borderWidth]
2606
+ }],
2607
+ /**
2608
+ * Border Width Bottom
2609
+ * @see https://tailwindcss.com/docs/border-width
2610
+ */
2611
+ "border-w-b": [{
2612
+ "border-b": [borderWidth]
2613
+ }],
2614
+ /**
2615
+ * Border Width Left
2616
+ * @see https://tailwindcss.com/docs/border-width
2617
+ */
2618
+ "border-w-l": [{
2619
+ "border-l": [borderWidth]
2620
+ }],
2621
+ /**
2622
+ * Border Opacity
2623
+ * @see https://tailwindcss.com/docs/border-opacity
2624
+ */
2625
+ "border-opacity": [{
2626
+ "border-opacity": [opacity]
2627
+ }],
2628
+ /**
2629
+ * Border Style
2630
+ * @see https://tailwindcss.com/docs/border-style
2631
+ */
2632
+ "border-style": [{
2633
+ border: [...getLineStyles(), "hidden"]
2634
+ }],
2635
+ /**
2636
+ * Divide Width X
2637
+ * @see https://tailwindcss.com/docs/divide-width
2638
+ */
2639
+ "divide-x": [{
2640
+ "divide-x": [borderWidth]
2641
+ }],
2642
+ /**
2643
+ * Divide Width X Reverse
2644
+ * @see https://tailwindcss.com/docs/divide-width
2645
+ */
2646
+ "divide-x-reverse": ["divide-x-reverse"],
2647
+ /**
2648
+ * Divide Width Y
2649
+ * @see https://tailwindcss.com/docs/divide-width
2650
+ */
2651
+ "divide-y": [{
2652
+ "divide-y": [borderWidth]
2653
+ }],
2654
+ /**
2655
+ * Divide Width Y Reverse
2656
+ * @see https://tailwindcss.com/docs/divide-width
2657
+ */
2658
+ "divide-y-reverse": ["divide-y-reverse"],
2659
+ /**
2660
+ * Divide Opacity
2661
+ * @see https://tailwindcss.com/docs/divide-opacity
2662
+ */
2663
+ "divide-opacity": [{
2664
+ "divide-opacity": [opacity]
2665
+ }],
2666
+ /**
2667
+ * Divide Style
2668
+ * @see https://tailwindcss.com/docs/divide-style
2669
+ */
2670
+ "divide-style": [{
2671
+ divide: getLineStyles()
2672
+ }],
2673
+ /**
2674
+ * Border Color
2675
+ * @see https://tailwindcss.com/docs/border-color
2676
+ */
2677
+ "border-color": [{
2678
+ border: [borderColor]
2679
+ }],
2680
+ /**
2681
+ * Border Color X
2682
+ * @see https://tailwindcss.com/docs/border-color
2683
+ */
2684
+ "border-color-x": [{
2685
+ "border-x": [borderColor]
2686
+ }],
2687
+ /**
2688
+ * Border Color Y
2689
+ * @see https://tailwindcss.com/docs/border-color
2690
+ */
2691
+ "border-color-y": [{
2692
+ "border-y": [borderColor]
2693
+ }],
2694
+ /**
2695
+ * Border Color Top
2696
+ * @see https://tailwindcss.com/docs/border-color
2697
+ */
2698
+ "border-color-t": [{
2699
+ "border-t": [borderColor]
2700
+ }],
2701
+ /**
2702
+ * Border Color Right
2703
+ * @see https://tailwindcss.com/docs/border-color
2704
+ */
2705
+ "border-color-r": [{
2706
+ "border-r": [borderColor]
2707
+ }],
2708
+ /**
2709
+ * Border Color Bottom
2710
+ * @see https://tailwindcss.com/docs/border-color
2711
+ */
2712
+ "border-color-b": [{
2713
+ "border-b": [borderColor]
2714
+ }],
2715
+ /**
2716
+ * Border Color Left
2717
+ * @see https://tailwindcss.com/docs/border-color
2718
+ */
2719
+ "border-color-l": [{
2720
+ "border-l": [borderColor]
2721
+ }],
2722
+ /**
2723
+ * Divide Color
2724
+ * @see https://tailwindcss.com/docs/divide-color
2725
+ */
2726
+ "divide-color": [{
2727
+ divide: [borderColor]
2728
+ }],
2729
+ /**
2730
+ * Outline Style
2731
+ * @see https://tailwindcss.com/docs/outline-style
2732
+ */
2733
+ "outline-style": [{
2734
+ outline: ["", ...getLineStyles()]
2735
+ }],
2736
+ /**
2737
+ * Outline Offset
2738
+ * @see https://tailwindcss.com/docs/outline-offset
2739
+ */
2740
+ "outline-offset": [{
2741
+ "outline-offset": [isLength, isArbitraryValue]
2742
+ }],
2743
+ /**
2744
+ * Outline Width
2745
+ * @see https://tailwindcss.com/docs/outline-width
2746
+ */
2747
+ "outline-w": [{
2748
+ outline: [isLength, isArbitraryLength]
2749
+ }],
2750
+ /**
2751
+ * Outline Color
2752
+ * @see https://tailwindcss.com/docs/outline-color
2753
+ */
2754
+ "outline-color": [{
2755
+ outline: [colors]
2756
+ }],
2757
+ /**
2758
+ * Ring Width
2759
+ * @see https://tailwindcss.com/docs/ring-width
2760
+ */
2761
+ "ring-w": [{
2762
+ ring: getLengthWithEmptyAndArbitrary()
2763
+ }],
2764
+ /**
2765
+ * Ring Width Inset
2766
+ * @see https://tailwindcss.com/docs/ring-width
2767
+ */
2768
+ "ring-w-inset": ["ring-inset"],
2769
+ /**
2770
+ * Ring Color
2771
+ * @see https://tailwindcss.com/docs/ring-color
2772
+ */
2773
+ "ring-color": [{
2774
+ ring: [colors]
2775
+ }],
2776
+ /**
2777
+ * Ring Opacity
2778
+ * @see https://tailwindcss.com/docs/ring-opacity
2779
+ */
2780
+ "ring-opacity": [{
2781
+ "ring-opacity": [opacity]
2782
+ }],
2783
+ /**
2784
+ * Ring Offset Width
2785
+ * @see https://tailwindcss.com/docs/ring-offset-width
2786
+ */
2787
+ "ring-offset-w": [{
2788
+ "ring-offset": [isLength, isArbitraryLength]
2789
+ }],
2790
+ /**
2791
+ * Ring Offset Color
2792
+ * @see https://tailwindcss.com/docs/ring-offset-color
2793
+ */
2794
+ "ring-offset-color": [{
2795
+ "ring-offset": [colors]
2796
+ }],
2797
+ // Effects
2798
+ /**
2799
+ * Box Shadow
2800
+ * @see https://tailwindcss.com/docs/box-shadow
2801
+ */
2802
+ shadow: [{
2803
+ shadow: ["", "inner", "none", isTshirtSize, isArbitraryShadow]
2804
+ }],
2805
+ /**
2806
+ * Box Shadow Color
2807
+ * @see https://tailwindcss.com/docs/box-shadow-color
2808
+ */
2809
+ "shadow-color": [{
2810
+ shadow: [isAny]
2811
+ }],
2812
+ /**
2813
+ * Opacity
2814
+ * @see https://tailwindcss.com/docs/opacity
2815
+ */
2816
+ opacity: [{
2817
+ opacity: [opacity]
2818
+ }],
2819
+ /**
2820
+ * Mix Blend Mode
2821
+ * @see https://tailwindcss.com/docs/mix-blend-mode
2822
+ */
2823
+ "mix-blend": [{
2824
+ "mix-blend": getBlendModes()
2825
+ }],
2826
+ /**
2827
+ * Background Blend Mode
2828
+ * @see https://tailwindcss.com/docs/background-blend-mode
2829
+ */
2830
+ "bg-blend": [{
2831
+ "bg-blend": getBlendModes()
2832
+ }],
2833
+ // Filters
2834
+ /**
2835
+ * Filter
2836
+ * @deprecated since Tailwind CSS v3.0.0
2837
+ * @see https://tailwindcss.com/docs/filter
2838
+ */
2839
+ filter: [{
2840
+ filter: ["", "none"]
2841
+ }],
2842
+ /**
2843
+ * Blur
2844
+ * @see https://tailwindcss.com/docs/blur
2845
+ */
2846
+ blur: [{
2847
+ blur: [blur]
2848
+ }],
2849
+ /**
2850
+ * Brightness
2851
+ * @see https://tailwindcss.com/docs/brightness
2852
+ */
2853
+ brightness: [{
2854
+ brightness: [brightness]
2855
+ }],
2856
+ /**
2857
+ * Contrast
2858
+ * @see https://tailwindcss.com/docs/contrast
2859
+ */
2860
+ contrast: [{
2861
+ contrast: [contrast]
2862
+ }],
2863
+ /**
2864
+ * Drop Shadow
2865
+ * @see https://tailwindcss.com/docs/drop-shadow
2866
+ */
2867
+ "drop-shadow": [{
2868
+ "drop-shadow": ["", "none", isTshirtSize, isArbitraryValue]
2869
+ }],
2870
+ /**
2871
+ * Grayscale
2872
+ * @see https://tailwindcss.com/docs/grayscale
2873
+ */
2874
+ grayscale: [{
2875
+ grayscale: [grayscale]
2876
+ }],
2877
+ /**
2878
+ * Hue Rotate
2879
+ * @see https://tailwindcss.com/docs/hue-rotate
2880
+ */
2881
+ "hue-rotate": [{
2882
+ "hue-rotate": [hueRotate]
2883
+ }],
2884
+ /**
2885
+ * Invert
2886
+ * @see https://tailwindcss.com/docs/invert
2887
+ */
2888
+ invert: [{
2889
+ invert: [invert]
2890
+ }],
2891
+ /**
2892
+ * Saturate
2893
+ * @see https://tailwindcss.com/docs/saturate
2894
+ */
2895
+ saturate: [{
2896
+ saturate: [saturate]
2897
+ }],
2898
+ /**
2899
+ * Sepia
2900
+ * @see https://tailwindcss.com/docs/sepia
2901
+ */
2902
+ sepia: [{
2903
+ sepia: [sepia]
2904
+ }],
2905
+ /**
2906
+ * Backdrop Filter
2907
+ * @deprecated since Tailwind CSS v3.0.0
2908
+ * @see https://tailwindcss.com/docs/backdrop-filter
2909
+ */
2910
+ "backdrop-filter": [{
2911
+ "backdrop-filter": ["", "none"]
2912
+ }],
2913
+ /**
2914
+ * Backdrop Blur
2915
+ * @see https://tailwindcss.com/docs/backdrop-blur
2916
+ */
2917
+ "backdrop-blur": [{
2918
+ "backdrop-blur": [blur]
2919
+ }],
2920
+ /**
2921
+ * Backdrop Brightness
2922
+ * @see https://tailwindcss.com/docs/backdrop-brightness
2923
+ */
2924
+ "backdrop-brightness": [{
2925
+ "backdrop-brightness": [brightness]
2926
+ }],
2927
+ /**
2928
+ * Backdrop Contrast
2929
+ * @see https://tailwindcss.com/docs/backdrop-contrast
2930
+ */
2931
+ "backdrop-contrast": [{
2932
+ "backdrop-contrast": [contrast]
2933
+ }],
2934
+ /**
2935
+ * Backdrop Grayscale
2936
+ * @see https://tailwindcss.com/docs/backdrop-grayscale
2937
+ */
2938
+ "backdrop-grayscale": [{
2939
+ "backdrop-grayscale": [grayscale]
2940
+ }],
2941
+ /**
2942
+ * Backdrop Hue Rotate
2943
+ * @see https://tailwindcss.com/docs/backdrop-hue-rotate
2944
+ */
2945
+ "backdrop-hue-rotate": [{
2946
+ "backdrop-hue-rotate": [hueRotate]
2947
+ }],
2948
+ /**
2949
+ * Backdrop Invert
2950
+ * @see https://tailwindcss.com/docs/backdrop-invert
2951
+ */
2952
+ "backdrop-invert": [{
2953
+ "backdrop-invert": [invert]
2954
+ }],
2955
+ /**
2956
+ * Backdrop Opacity
2957
+ * @see https://tailwindcss.com/docs/backdrop-opacity
2958
+ */
2959
+ "backdrop-opacity": [{
2960
+ "backdrop-opacity": [opacity]
2961
+ }],
2962
+ /**
2963
+ * Backdrop Saturate
2964
+ * @see https://tailwindcss.com/docs/backdrop-saturate
2965
+ */
2966
+ "backdrop-saturate": [{
2967
+ "backdrop-saturate": [saturate]
2968
+ }],
2969
+ /**
2970
+ * Backdrop Sepia
2971
+ * @see https://tailwindcss.com/docs/backdrop-sepia
2972
+ */
2973
+ "backdrop-sepia": [{
2974
+ "backdrop-sepia": [sepia]
2975
+ }],
2976
+ // Tables
2977
+ /**
2978
+ * Border Collapse
2979
+ * @see https://tailwindcss.com/docs/border-collapse
2980
+ */
2981
+ "border-collapse": [{
2982
+ border: ["collapse", "separate"]
2983
+ }],
2984
+ /**
2985
+ * Border Spacing
2986
+ * @see https://tailwindcss.com/docs/border-spacing
2987
+ */
2988
+ "border-spacing": [{
2989
+ "border-spacing": [borderSpacing]
2990
+ }],
2991
+ /**
2992
+ * Border Spacing X
2993
+ * @see https://tailwindcss.com/docs/border-spacing
2994
+ */
2995
+ "border-spacing-x": [{
2996
+ "border-spacing-x": [borderSpacing]
2997
+ }],
2998
+ /**
2999
+ * Border Spacing Y
3000
+ * @see https://tailwindcss.com/docs/border-spacing
3001
+ */
3002
+ "border-spacing-y": [{
3003
+ "border-spacing-y": [borderSpacing]
3004
+ }],
3005
+ /**
3006
+ * Table Layout
3007
+ * @see https://tailwindcss.com/docs/table-layout
3008
+ */
3009
+ "table-layout": [{
3010
+ table: ["auto", "fixed"]
3011
+ }],
3012
+ /**
3013
+ * Caption Side
3014
+ * @see https://tailwindcss.com/docs/caption-side
3015
+ */
3016
+ caption: [{
3017
+ caption: ["top", "bottom"]
3018
+ }],
3019
+ // Transitions and Animation
3020
+ /**
3021
+ * Tranisition Property
3022
+ * @see https://tailwindcss.com/docs/transition-property
3023
+ */
3024
+ transition: [{
3025
+ transition: ["none", "all", "", "colors", "opacity", "shadow", "transform", isArbitraryValue]
3026
+ }],
3027
+ /**
3028
+ * Transition Duration
3029
+ * @see https://tailwindcss.com/docs/transition-duration
3030
+ */
3031
+ duration: [{
3032
+ duration: getNumberAndArbitrary()
3033
+ }],
3034
+ /**
3035
+ * Transition Timing Function
3036
+ * @see https://tailwindcss.com/docs/transition-timing-function
3037
+ */
3038
+ ease: [{
3039
+ ease: ["linear", "in", "out", "in-out", isArbitraryValue]
3040
+ }],
3041
+ /**
3042
+ * Transition Delay
3043
+ * @see https://tailwindcss.com/docs/transition-delay
3044
+ */
3045
+ delay: [{
3046
+ delay: getNumberAndArbitrary()
3047
+ }],
3048
+ /**
3049
+ * Animation
3050
+ * @see https://tailwindcss.com/docs/animation
3051
+ */
3052
+ animate: [{
3053
+ animate: ["none", "spin", "ping", "pulse", "bounce", isArbitraryValue]
3054
+ }],
3055
+ // Transforms
3056
+ /**
3057
+ * Transform
3058
+ * @see https://tailwindcss.com/docs/transform
3059
+ */
3060
+ transform: [{
3061
+ transform: ["", "gpu", "none"]
3062
+ }],
3063
+ /**
3064
+ * Scale
3065
+ * @see https://tailwindcss.com/docs/scale
3066
+ */
3067
+ scale: [{
3068
+ scale: [scale]
3069
+ }],
3070
+ /**
3071
+ * Scale X
3072
+ * @see https://tailwindcss.com/docs/scale
3073
+ */
3074
+ "scale-x": [{
3075
+ "scale-x": [scale]
3076
+ }],
3077
+ /**
3078
+ * Scale Y
3079
+ * @see https://tailwindcss.com/docs/scale
3080
+ */
3081
+ "scale-y": [{
3082
+ "scale-y": [scale]
3083
+ }],
3084
+ /**
3085
+ * Rotate
3086
+ * @see https://tailwindcss.com/docs/rotate
3087
+ */
3088
+ rotate: [{
3089
+ rotate: [isInteger, isArbitraryValue]
3090
+ }],
3091
+ /**
3092
+ * Translate X
3093
+ * @see https://tailwindcss.com/docs/translate
3094
+ */
3095
+ "translate-x": [{
3096
+ "translate-x": [translate]
3097
+ }],
3098
+ /**
3099
+ * Translate Y
3100
+ * @see https://tailwindcss.com/docs/translate
3101
+ */
3102
+ "translate-y": [{
3103
+ "translate-y": [translate]
3104
+ }],
3105
+ /**
3106
+ * Skew X
3107
+ * @see https://tailwindcss.com/docs/skew
3108
+ */
3109
+ "skew-x": [{
3110
+ "skew-x": [skew]
3111
+ }],
3112
+ /**
3113
+ * Skew Y
3114
+ * @see https://tailwindcss.com/docs/skew
3115
+ */
3116
+ "skew-y": [{
3117
+ "skew-y": [skew]
3118
+ }],
3119
+ /**
3120
+ * Transform Origin
3121
+ * @see https://tailwindcss.com/docs/transform-origin
3122
+ */
3123
+ "transform-origin": [{
3124
+ origin: ["center", "top", "top-right", "right", "bottom-right", "bottom", "bottom-left", "left", "top-left", isArbitraryValue]
3125
+ }],
3126
+ // Interactivity
3127
+ /**
3128
+ * Accent Color
3129
+ * @see https://tailwindcss.com/docs/accent-color
3130
+ */
3131
+ accent: [{
3132
+ accent: ["auto", colors]
3133
+ }],
3134
+ /**
3135
+ * Appearance
3136
+ * @see https://tailwindcss.com/docs/appearance
3137
+ */
3138
+ appearance: [{
3139
+ appearance: ["none", "auto"]
3140
+ }],
3141
+ /**
3142
+ * Cursor
3143
+ * @see https://tailwindcss.com/docs/cursor
3144
+ */
3145
+ cursor: [{
3146
+ 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", isArbitraryValue]
3147
+ }],
3148
+ /**
3149
+ * Caret Color
3150
+ * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
3151
+ */
3152
+ "caret-color": [{
3153
+ caret: [colors]
3154
+ }],
3155
+ /**
3156
+ * Pointer Events
3157
+ * @see https://tailwindcss.com/docs/pointer-events
3158
+ */
3159
+ "pointer-events": [{
3160
+ "pointer-events": ["none", "auto"]
3161
+ }],
3162
+ /**
3163
+ * Resize
3164
+ * @see https://tailwindcss.com/docs/resize
3165
+ */
3166
+ resize: [{
3167
+ resize: ["none", "y", "x", ""]
3168
+ }],
3169
+ /**
3170
+ * Scroll Behavior
3171
+ * @see https://tailwindcss.com/docs/scroll-behavior
3172
+ */
3173
+ "scroll-behavior": [{
3174
+ scroll: ["auto", "smooth"]
3175
+ }],
3176
+ /**
3177
+ * Scroll Margin
3178
+ * @see https://tailwindcss.com/docs/scroll-margin
3179
+ */
3180
+ "scroll-m": [{
3181
+ "scroll-m": getSpacingWithArbitrary()
3182
+ }],
3183
+ /**
3184
+ * Scroll Margin X
3185
+ * @see https://tailwindcss.com/docs/scroll-margin
3186
+ */
3187
+ "scroll-mx": [{
3188
+ "scroll-mx": getSpacingWithArbitrary()
3189
+ }],
3190
+ /**
3191
+ * Scroll Margin Y
3192
+ * @see https://tailwindcss.com/docs/scroll-margin
3193
+ */
3194
+ "scroll-my": [{
3195
+ "scroll-my": getSpacingWithArbitrary()
3196
+ }],
3197
+ /**
3198
+ * Scroll Margin Start
3199
+ * @see https://tailwindcss.com/docs/scroll-margin
3200
+ */
3201
+ "scroll-ms": [{
3202
+ "scroll-ms": getSpacingWithArbitrary()
3203
+ }],
3204
+ /**
3205
+ * Scroll Margin End
3206
+ * @see https://tailwindcss.com/docs/scroll-margin
3207
+ */
3208
+ "scroll-me": [{
3209
+ "scroll-me": getSpacingWithArbitrary()
3210
+ }],
3211
+ /**
3212
+ * Scroll Margin Top
3213
+ * @see https://tailwindcss.com/docs/scroll-margin
3214
+ */
3215
+ "scroll-mt": [{
3216
+ "scroll-mt": getSpacingWithArbitrary()
3217
+ }],
3218
+ /**
3219
+ * Scroll Margin Right
3220
+ * @see https://tailwindcss.com/docs/scroll-margin
3221
+ */
3222
+ "scroll-mr": [{
3223
+ "scroll-mr": getSpacingWithArbitrary()
3224
+ }],
3225
+ /**
3226
+ * Scroll Margin Bottom
3227
+ * @see https://tailwindcss.com/docs/scroll-margin
3228
+ */
3229
+ "scroll-mb": [{
3230
+ "scroll-mb": getSpacingWithArbitrary()
3231
+ }],
3232
+ /**
3233
+ * Scroll Margin Left
3234
+ * @see https://tailwindcss.com/docs/scroll-margin
3235
+ */
3236
+ "scroll-ml": [{
3237
+ "scroll-ml": getSpacingWithArbitrary()
3238
+ }],
3239
+ /**
3240
+ * Scroll Padding
3241
+ * @see https://tailwindcss.com/docs/scroll-padding
3242
+ */
3243
+ "scroll-p": [{
3244
+ "scroll-p": getSpacingWithArbitrary()
3245
+ }],
3246
+ /**
3247
+ * Scroll Padding X
3248
+ * @see https://tailwindcss.com/docs/scroll-padding
3249
+ */
3250
+ "scroll-px": [{
3251
+ "scroll-px": getSpacingWithArbitrary()
3252
+ }],
3253
+ /**
3254
+ * Scroll Padding Y
3255
+ * @see https://tailwindcss.com/docs/scroll-padding
3256
+ */
3257
+ "scroll-py": [{
3258
+ "scroll-py": getSpacingWithArbitrary()
3259
+ }],
3260
+ /**
3261
+ * Scroll Padding Start
3262
+ * @see https://tailwindcss.com/docs/scroll-padding
3263
+ */
3264
+ "scroll-ps": [{
3265
+ "scroll-ps": getSpacingWithArbitrary()
3266
+ }],
3267
+ /**
3268
+ * Scroll Padding End
3269
+ * @see https://tailwindcss.com/docs/scroll-padding
3270
+ */
3271
+ "scroll-pe": [{
3272
+ "scroll-pe": getSpacingWithArbitrary()
3273
+ }],
3274
+ /**
3275
+ * Scroll Padding Top
3276
+ * @see https://tailwindcss.com/docs/scroll-padding
3277
+ */
3278
+ "scroll-pt": [{
3279
+ "scroll-pt": getSpacingWithArbitrary()
3280
+ }],
3281
+ /**
3282
+ * Scroll Padding Right
3283
+ * @see https://tailwindcss.com/docs/scroll-padding
3284
+ */
3285
+ "scroll-pr": [{
3286
+ "scroll-pr": getSpacingWithArbitrary()
3287
+ }],
3288
+ /**
3289
+ * Scroll Padding Bottom
3290
+ * @see https://tailwindcss.com/docs/scroll-padding
3291
+ */
3292
+ "scroll-pb": [{
3293
+ "scroll-pb": getSpacingWithArbitrary()
3294
+ }],
3295
+ /**
3296
+ * Scroll Padding Left
3297
+ * @see https://tailwindcss.com/docs/scroll-padding
3298
+ */
3299
+ "scroll-pl": [{
3300
+ "scroll-pl": getSpacingWithArbitrary()
3301
+ }],
3302
+ /**
3303
+ * Scroll Snap Align
3304
+ * @see https://tailwindcss.com/docs/scroll-snap-align
3305
+ */
3306
+ "snap-align": [{
3307
+ snap: ["start", "end", "center", "align-none"]
3308
+ }],
3309
+ /**
3310
+ * Scroll Snap Stop
3311
+ * @see https://tailwindcss.com/docs/scroll-snap-stop
3312
+ */
3313
+ "snap-stop": [{
3314
+ snap: ["normal", "always"]
3315
+ }],
3316
+ /**
3317
+ * Scroll Snap Type
3318
+ * @see https://tailwindcss.com/docs/scroll-snap-type
3319
+ */
3320
+ "snap-type": [{
3321
+ snap: ["none", "x", "y", "both"]
3322
+ }],
3323
+ /**
3324
+ * Scroll Snap Type Strictness
3325
+ * @see https://tailwindcss.com/docs/scroll-snap-type
3326
+ */
3327
+ "snap-strictness": [{
3328
+ snap: ["mandatory", "proximity"]
3329
+ }],
3330
+ /**
3331
+ * Touch Action
3332
+ * @see https://tailwindcss.com/docs/touch-action
3333
+ */
3334
+ touch: [{
3335
+ touch: ["auto", "none", "manipulation"]
3336
+ }],
3337
+ /**
3338
+ * Touch Action X
3339
+ * @see https://tailwindcss.com/docs/touch-action
3340
+ */
3341
+ "touch-x": [{
3342
+ "touch-pan": ["x", "left", "right"]
3343
+ }],
3344
+ /**
3345
+ * Touch Action Y
3346
+ * @see https://tailwindcss.com/docs/touch-action
3347
+ */
3348
+ "touch-y": [{
3349
+ "touch-pan": ["y", "up", "down"]
3350
+ }],
3351
+ /**
3352
+ * Touch Action Pinch Zoom
3353
+ * @see https://tailwindcss.com/docs/touch-action
3354
+ */
3355
+ "touch-pz": ["touch-pinch-zoom"],
3356
+ /**
3357
+ * User Select
3358
+ * @see https://tailwindcss.com/docs/user-select
3359
+ */
3360
+ select: [{
3361
+ select: ["none", "text", "all", "auto"]
3362
+ }],
3363
+ /**
3364
+ * Will Change
3365
+ * @see https://tailwindcss.com/docs/will-change
3366
+ */
3367
+ "will-change": [{
3368
+ "will-change": ["auto", "scroll", "contents", "transform", isArbitraryValue]
3369
+ }],
3370
+ // SVG
3371
+ /**
3372
+ * Fill
3373
+ * @see https://tailwindcss.com/docs/fill
3374
+ */
3375
+ fill: [{
3376
+ fill: [colors, "none"]
3377
+ }],
3378
+ /**
3379
+ * Stroke Width
3380
+ * @see https://tailwindcss.com/docs/stroke-width
3381
+ */
3382
+ "stroke-w": [{
3383
+ stroke: [isLength, isArbitraryLength, isArbitraryNumber]
3384
+ }],
3385
+ /**
3386
+ * Stroke
3387
+ * @see https://tailwindcss.com/docs/stroke
3388
+ */
3389
+ stroke: [{
3390
+ stroke: [colors, "none"]
3391
+ }],
3392
+ // Accessibility
3393
+ /**
3394
+ * Screen Readers
3395
+ * @see https://tailwindcss.com/docs/screen-readers
3396
+ */
3397
+ sr: ["sr-only", "not-sr-only"],
3398
+ /**
3399
+ * Forced Color Adjust
3400
+ * @see https://tailwindcss.com/docs/forced-color-adjust
3401
+ */
3402
+ "forced-color-adjust": [{
3403
+ "forced-color-adjust": ["auto", "none"]
3404
+ }]
3405
+ },
3406
+ conflictingClassGroups: {
3407
+ overflow: ["overflow-x", "overflow-y"],
3408
+ overscroll: ["overscroll-x", "overscroll-y"],
3409
+ inset: ["inset-x", "inset-y", "start", "end", "top", "right", "bottom", "left"],
3410
+ "inset-x": ["right", "left"],
3411
+ "inset-y": ["top", "bottom"],
3412
+ flex: ["basis", "grow", "shrink"],
3413
+ gap: ["gap-x", "gap-y"],
3414
+ p: ["px", "py", "ps", "pe", "pt", "pr", "pb", "pl"],
3415
+ px: ["pr", "pl"],
3416
+ py: ["pt", "pb"],
3417
+ m: ["mx", "my", "ms", "me", "mt", "mr", "mb", "ml"],
3418
+ mx: ["mr", "ml"],
3419
+ my: ["mt", "mb"],
3420
+ size: ["w", "h"],
3421
+ "font-size": ["leading"],
3422
+ "fvn-normal": ["fvn-ordinal", "fvn-slashed-zero", "fvn-figure", "fvn-spacing", "fvn-fraction"],
3423
+ "fvn-ordinal": ["fvn-normal"],
3424
+ "fvn-slashed-zero": ["fvn-normal"],
3425
+ "fvn-figure": ["fvn-normal"],
3426
+ "fvn-spacing": ["fvn-normal"],
3427
+ "fvn-fraction": ["fvn-normal"],
3428
+ "line-clamp": ["display", "overflow"],
3429
+ 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"],
3430
+ "rounded-s": ["rounded-ss", "rounded-es"],
3431
+ "rounded-e": ["rounded-se", "rounded-ee"],
3432
+ "rounded-t": ["rounded-tl", "rounded-tr"],
3433
+ "rounded-r": ["rounded-tr", "rounded-br"],
3434
+ "rounded-b": ["rounded-br", "rounded-bl"],
3435
+ "rounded-l": ["rounded-tl", "rounded-bl"],
3436
+ "border-spacing": ["border-spacing-x", "border-spacing-y"],
3437
+ "border-w": ["border-w-s", "border-w-e", "border-w-t", "border-w-r", "border-w-b", "border-w-l"],
3438
+ "border-w-x": ["border-w-r", "border-w-l"],
3439
+ "border-w-y": ["border-w-t", "border-w-b"],
3440
+ "border-color": ["border-color-t", "border-color-r", "border-color-b", "border-color-l"],
3441
+ "border-color-x": ["border-color-r", "border-color-l"],
3442
+ "border-color-y": ["border-color-t", "border-color-b"],
3443
+ "scroll-m": ["scroll-mx", "scroll-my", "scroll-ms", "scroll-me", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
3444
+ "scroll-mx": ["scroll-mr", "scroll-ml"],
3445
+ "scroll-my": ["scroll-mt", "scroll-mb"],
3446
+ "scroll-p": ["scroll-px", "scroll-py", "scroll-ps", "scroll-pe", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"],
3447
+ "scroll-px": ["scroll-pr", "scroll-pl"],
3448
+ "scroll-py": ["scroll-pt", "scroll-pb"],
3449
+ touch: ["touch-x", "touch-y", "touch-pz"],
3450
+ "touch-x": ["touch"],
3451
+ "touch-y": ["touch"],
3452
+ "touch-pz": ["touch"]
3453
+ },
3454
+ conflictingClassGroupModifiers: {
3455
+ "font-size": ["leading"]
3456
+ }
3457
+ };
3458
+ }
3459
+ const twMerge = /* @__PURE__ */ createTailwindMerge(getDefaultConfig);
3460
+ const variants$1 = {
3461
+ primary: "bg-Background-accentEggplant-100 text-Text-textPrimaryDark rounded-sm hover:text-Text-textPrimaryDark hover:bg-Background-accentEggplant-highlight active:bg-Background-accentEggplant-darkened focus:bg-Background-accentEggplant-100 focus:border focus:border-white disabled:bg-Background-accentEggplant-20",
3462
+ secondary: "text-Text-secondary rounded-sm border border-Fills-secondary hover:text-black hover:border hover:border-Fills-black active:text-black active:border active:border-Fills-black focus:bg-Background-accentEggplant-5 focus:text-accentEggplant-100 focus:border focus:border-Background-accentEggplant-100 disabled:border disabled:border-Fills-quadrutery disabled:text-Text-tertiary",
3463
+ tertiary: "text-Text-secondary rounded-sm hover:bg-Fills-quintiary active:bg-Fills-quintiary focus:bg-Fills-quadrutery disabled:text-Fills-quadrutery disabled:bg-Fills-quintiary",
3464
+ quaternary: "text-accentEggplant-100 rounded-sm hover:bg-Background-accentEggplant-5 active:bg-Background-accentEggplant-5 focus:bg-Background-accentEggplant-100 focus:text-Text-textPrimaryDark disabled:text-Background-accentEggplant-20",
3465
+ small: "py-space075 px-space400",
3466
+ large: "py-space150 px-space400"
3467
+ };
3468
+ const Button = React__default.forwardRef(
3469
+ (_a, ref) => {
3470
+ var _b = _a, { color = "primary", size = "small", disabled = false, className } = _b, rest = __objRest(_b, ["color", "size", "disabled", "className"]);
3471
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(
3472
+ "button",
3473
+ __spreadValues({
3474
+ ref,
3475
+ disabled,
3476
+ className: twMerge(clsx$1(variants$1[color], variants$1[size], className))
3477
+ }, rest)
3478
+ );
3479
+ }
3480
+ );
3481
+ Button.displayName = "Button";
3482
+ const variants = {
3483
+ primary: "bg-Text-textSecondaryPlusDark placeholder-Fills-quadrutery text-Text-primary border border-Fills-terciary rounded-sm hover:border-Fills-secondary active:text-Text-primary active:border-Text-primary focus:border-Text-primary focus:outline-none disabled:bg-Fills-quintiary px-[12px] pt-[8px] pb-[7px]",
3484
+ success: "bg-Text-textSecondaryPlusDark placeholder-Fills-quadrutery text-Text-primary border border-Fills-terciary rounded-sm hover:border-Fills-secondary active:text-Text-primary active:border-Text-primary focus:border-Text-primary focus:outline-none disabled:bg-Fills-quintiary px-[12px] pt-[8px] pb-[7px]",
3485
+ error: "bg-Text-textSecondaryPlusDark placeholder-Fills-quadrutery text-Text-primary border border-System-red rounded-sm active:text-Text-primary focus:outline-none disabled:bg-Fills-quintiary px-[12px] pt-[8px] pb-[7px]"
3486
+ };
3487
+ const Input = React__default.forwardRef(
3488
+ (_c, ref) => {
3489
+ var _d = _c, { color = "primary", disabled = false, textarea = false, label, caption, className } = _d, rest = __objRest(_d, ["color", "disabled", "textarea", "label", "caption", "className"]);
3490
+ return textarea ? /* @__PURE__ */ jsxRuntimeExports.jsx(
3491
+ "textarea",
3492
+ __spreadValues({
3493
+ disabled,
3494
+ className: twMerge(clsx$1(variants[color], className))
3495
+ }, rest)
3496
+ ) : /* @__PURE__ */ jsxRuntimeExports.jsxs("div", { className: "flex flex-col items-start", children: [
3497
+ label && /* @__PURE__ */ jsxRuntimeExports.jsx("label", { className: "text-mediumSubHead font-normal", children: label }),
3498
+ /* @__PURE__ */ jsxRuntimeExports.jsx(
3499
+ "input",
3500
+ __spreadValues({
3501
+ ref,
3502
+ disabled,
3503
+ className: twMerge(clsx$1(variants[color], className))
3504
+ }, rest)
3505
+ ),
3506
+ caption && /* @__PURE__ */ jsxRuntimeExports.jsx("caption", { className: "text-mediumCaption1 font-normal", children: caption })
3507
+ ] });
3508
+ }
3509
+ );
3510
+ Input.displayName = "Input";
3511
+ function r(e) {
3512
+ var t, f, n = "";
3513
+ if ("string" == typeof e || "number" == typeof e)
3514
+ n += e;
3515
+ else if ("object" == typeof e)
3516
+ if (Array.isArray(e))
3517
+ for (t = 0; t < e.length; t++)
3518
+ e[t] && (f = r(e[t])) && (n && (n += " "), n += f);
3519
+ else
3520
+ for (t in e)
3521
+ e[t] && (n && (n += " "), n += t);
3522
+ return n;
3523
+ }
3524
+ function clsx() {
3525
+ for (var e, t, f = 0, n = ""; f < arguments.length; )
3526
+ (e = arguments[f++]) && (t = r(e)) && (n && (n += " "), n += t);
3527
+ return n;
3528
+ }
3529
+ const falsyToString = (value) => typeof value === "boolean" ? "".concat(value) : value === 0 ? "0" : value;
3530
+ const cx = clsx;
3531
+ const cva = (base, config) => {
3532
+ return (props) => {
3533
+ var ref;
3534
+ if ((config === null || config === void 0 ? void 0 : config.variants) == null)
3535
+ return cx(base, props === null || props === void 0 ? void 0 : props.class, props === null || props === void 0 ? void 0 : props.className);
3536
+ const { variants: variants2, defaultVariants } = config;
3537
+ const getVariantClassNames = Object.keys(variants2).map((variant) => {
3538
+ const variantProp = props === null || props === void 0 ? void 0 : props[variant];
3539
+ const defaultVariantProp = defaultVariants === null || defaultVariants === void 0 ? void 0 : defaultVariants[variant];
3540
+ if (variantProp === null)
3541
+ return null;
3542
+ const variantKey = falsyToString(variantProp) || falsyToString(defaultVariantProp);
3543
+ return variants2[variant][variantKey];
3544
+ });
3545
+ const propsWithoutUndefined = props && Object.entries(props).reduce((acc, param) => {
3546
+ let [key, value] = param;
3547
+ if (value === void 0) {
3548
+ return acc;
3549
+ }
3550
+ acc[key] = value;
3551
+ return acc;
3552
+ }, {});
3553
+ const getCompoundVariantClassNames = config === null || config === void 0 ? void 0 : (ref = config.compoundVariants) === null || ref === void 0 ? void 0 : ref.reduce((acc, param1) => {
3554
+ let _a = param1, { class: cvClass, className: cvClassName } = _a, compoundVariantOptions = __objRest(_a, ["class", "className"]);
3555
+ return Object.entries(compoundVariantOptions).every((param) => {
3556
+ let [key, value] = param;
3557
+ return Array.isArray(value) ? value.includes(__spreadValues(__spreadValues({}, defaultVariants), propsWithoutUndefined)[key]) : __spreadValues(__spreadValues({}, defaultVariants), propsWithoutUndefined)[key] === value;
3558
+ }) ? [
3559
+ ...acc,
3560
+ cvClass,
3561
+ cvClassName
3562
+ ] : acc;
3563
+ }, []);
3564
+ return cx(base, getVariantClassNames, getCompoundVariantClassNames, props === null || props === void 0 ? void 0 : props.class, props === null || props === void 0 ? void 0 : props.className);
3565
+ };
3566
+ };
3567
+ const cardVariants = cva("border text-text-primary", {
3568
+ variants: {
3569
+ cardType: {
3570
+ default: "shadow-none",
3571
+ shadowCard: "shadow-card"
3572
+ }
3573
+ },
3574
+ defaultVariants: {
3575
+ cardType: "default"
3576
+ }
3577
+ });
3578
+ const Card = React.forwardRef(
3579
+ (_e, ref) => {
3580
+ var _f = _e, { className, cardType } = _f, props = __objRest(_f, ["className", "cardType"]);
3581
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(
3582
+ "div",
3583
+ __spreadValues({
3584
+ ref,
3585
+ className: twMerge(
3586
+ clsx$1(
3587
+ cardVariants({
3588
+ cardType,
3589
+ className
3590
+ }),
3591
+ "rounded-[24px_24px_0px_24px]"
3592
+ ),
3593
+ className
3594
+ )
3595
+ }, props)
3596
+ );
3597
+ }
3598
+ );
3599
+ Card.displayName = "Card";
3600
+ const CardHeader = React.forwardRef(
3601
+ (_g, ref) => {
3602
+ var _h = _g, { className } = _h, props = __objRest(_h, ["className"]);
3603
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(
3604
+ "div",
3605
+ __spreadValues({
3606
+ ref,
3607
+ className: twMerge(clsx$1("flex flex-col pt-space300 pb-space200 px-space300", className))
3608
+ }, props)
3609
+ );
3610
+ }
3611
+ );
3612
+ CardHeader.displayName = "CardHeader";
3613
+ const CardTitle = React.forwardRef(
3614
+ (_i, ref) => {
3615
+ var _j = _i, { className } = _j, props = __objRest(_j, ["className"]);
3616
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(
3617
+ "div",
3618
+ __spreadValues({
3619
+ ref,
3620
+ className: twMerge(clsx$1("font-medium", className))
3621
+ }, props)
3622
+ );
3623
+ }
3624
+ );
3625
+ CardTitle.displayName = "Title";
3626
+ const CardDescription = React.forwardRef(
3627
+ (_k, ref) => {
3628
+ var _l = _k, { className } = _l, props = __objRest(_l, ["className"]);
3629
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(
3630
+ "div",
3631
+ __spreadValues({
3632
+ ref,
3633
+ className: twMerge(clsx$1("font-regular", className))
3634
+ }, props)
3635
+ );
3636
+ }
3637
+ );
3638
+ CardDescription.displayName = "Description";
3639
+ const CardContent = React.forwardRef(
3640
+ (_m, ref) => {
3641
+ var _n = _m, { className } = _n, props = __objRest(_n, ["className"]);
3642
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(
3643
+ "div",
3644
+ __spreadValues({
3645
+ ref,
3646
+ className: twMerge(clsx$1("pb-space300 px-space300 ", className))
3647
+ }, props)
3648
+ );
3649
+ }
3650
+ );
3651
+ CardContent.displayName = "Content";
3652
+ const CardFooter = React.forwardRef(
3653
+ (_o, ref) => {
3654
+ var _p = _o, { className } = _p, props = __objRest(_p, ["className"]);
3655
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(
3656
+ "div",
3657
+ __spreadValues({
3658
+ ref,
3659
+ className: twMerge(clsx$1("pb-space300 px-space300", className))
3660
+ }, props)
3661
+ );
3662
+ }
3663
+ );
3664
+ CardFooter.displayName = "Footer";
3665
+ const gridVariants = cva(
3666
+ "grid mobile:grid-cols-4 mobile:gap-space150 tablet:grid-cols-6 tablet:gap-space200 desktop:grid-cols-12 desktop:gap-space300 wide_desktop:grid-cols-12 wide_desktop:gap-space300 max-w-[1920px] w-full",
3667
+ {
3668
+ variants: {
3669
+ display: {
3670
+ grid: "grid",
3671
+ inlineGrid: "inline-grid"
3672
+ },
3673
+ gap: {
3674
+ gap100: "gap-100",
3675
+ gap150: "gap-150",
3676
+ gap200: "gap-200",
3677
+ gap300: "gap-300",
3678
+ gap400: "gap-400",
3679
+ gap600: "gap-600",
3680
+ gap800: "gap-800",
3681
+ gap1000: "gap-1000",
3682
+ gap1200: "gap-1200",
3683
+ gap1600: "gap-1600",
3684
+ gap2000: "gap-2000"
3685
+ },
3686
+ gapX: {
3687
+ gap100: "gap-x-100",
3688
+ gap150: "gap-x-150",
3689
+ gap200: "gap-x-200",
3690
+ gap300: "gap-x-300",
3691
+ gap400: "gap-x-400",
3692
+ gap600: "gap-x-600",
3693
+ gap800: "gap-x-800",
3694
+ gap1000: "gap-x-1000",
3695
+ gap1200: "gap-x-1200",
3696
+ gap1600: "gap-x-1600",
3697
+ gap2000: "gap-x-2000"
3698
+ },
3699
+ gapY: {
3700
+ gap100: "gap-x-100",
3701
+ gap150: "gap-x-150",
3702
+ gap200: "gap-x-200",
3703
+ gap300: "gap-x-300",
3704
+ gap400: "gap-x-400",
3705
+ gap600: "gap-x-600",
3706
+ gap800: "gap-x-800",
3707
+ gap1000: "gap-x-1000",
3708
+ gap1200: "gap-x-1200",
3709
+ gap1600: "gap-x-1600",
3710
+ gap2000: "gap-x-2000"
3711
+ },
3712
+ justifyContent: {
3713
+ normal: "justify-normal",
3714
+ start: "justify-start",
3715
+ end: "justify-end",
3716
+ center: "justify-center",
3717
+ between: "justify-between",
3718
+ around: "justify-around",
3719
+ evenly: "justify-evenly",
3720
+ stretch: "justify-stretch"
3721
+ },
3722
+ justifyItems: {
3723
+ start: "justify-items-start",
3724
+ end: "justify-items-end",
3725
+ center: "justify-items-center",
3726
+ stretch: "justify-items-stretch"
3727
+ },
3728
+ alignContent: {
3729
+ normal: "content-normal",
3730
+ center: "content-center",
3731
+ start: "content-start",
3732
+ end: "content-end",
3733
+ between: "content-between",
3734
+ around: "content-around",
3735
+ evenly: "content-evenly",
3736
+ baseline: "content-baseline",
3737
+ stretch: "content-stretch"
3738
+ },
3739
+ alignItems: {
3740
+ start: "items-start",
3741
+ end: "items-end",
3742
+ center: "items-center",
3743
+ baseline: "items-baseline",
3744
+ stretch: "items-stretch"
3745
+ },
3746
+ placeContent: {
3747
+ center: "place-content-center",
3748
+ start: "place-content-start",
3749
+ end: "place-content-end",
3750
+ between: "place-content-between",
3751
+ around: "place-content-around",
3752
+ evenly: "place-content-evenly",
3753
+ baseline: "place-content-baseline",
3754
+ stretch: "place-content-stretch"
3755
+ },
3756
+ placeItems: {
3757
+ start: "place-items-start",
3758
+ end: "place-items-end",
3759
+ center: "place-items-center",
3760
+ baseline: "place-items-baseline",
3761
+ stretch: "place-items-stretch"
3762
+ }
3763
+ }
3764
+ }
3765
+ );
3766
+ const Grid = React.forwardRef(
3767
+ (_q, ref) => {
3768
+ var _r = _q, { className, children } = _r, props = __objRest(_r, ["className", "children"]);
3769
+ return /* @__PURE__ */ jsxRuntimeExports.jsx(
3770
+ "div",
3771
+ __spreadProps(__spreadValues({
3772
+ className: twMerge(
3773
+ clsx$1(
3774
+ gridVariants({
3775
+ display: props == null ? void 0 : props.display,
3776
+ gap: props == null ? void 0 : props.gap,
3777
+ gapX: props == null ? void 0 : props.gapX,
3778
+ gapY: props == null ? void 0 : props.gapY,
3779
+ justifyContent: props == null ? void 0 : props.justifyContent,
3780
+ justifyItems: props == null ? void 0 : props.justifyItems,
3781
+ alignContent: props == null ? void 0 : props.alignContent,
3782
+ alignItems: props == null ? void 0 : props.alignItems,
3783
+ placeContent: props == null ? void 0 : props.placeContent,
3784
+ placeItems: props == null ? void 0 : props.placeItems,
3785
+ className
3786
+ })
3787
+ )
3788
+ ),
3789
+ ref
3790
+ }, props), {
3791
+ children
3792
+ })
3793
+ );
3794
+ }
3795
+ );
3796
+ Grid.displayName = "Grid";
3797
+ export {
3798
+ Button,
3799
+ Card,
3800
+ CardContent,
3801
+ CardDescription,
3802
+ CardFooter,
3803
+ CardHeader,
3804
+ CardTitle,
3805
+ Grid,
3806
+ Input
3807
+ };