@lateralus-ai/shipping-ui 1.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.
Files changed (87) hide show
  1. package/README.md +108 -0
  2. package/dist/components/HelloWorld.d.ts +1 -0
  3. package/dist/components/InputPrompt.d.ts +20 -0
  4. package/dist/components/ModalPanel.d.ts +8 -0
  5. package/dist/components/PdfViewer/ImageViewer.d.ts +8 -0
  6. package/dist/components/PdfViewer/PdfViewer.d.ts +7 -0
  7. package/dist/components/PdfViewer/index.d.ts +2 -0
  8. package/dist/components/PdfViewer/usePageManagement.d.ts +5 -0
  9. package/dist/components/PdfViewer/usePanning.d.ts +15 -0
  10. package/dist/components/PdfViewer/useRefDimensions.d.ts +4 -0
  11. package/dist/components/PdfViewer/useRotation.d.ts +4 -0
  12. package/dist/components/PdfViewer/useZoom.d.ts +8 -0
  13. package/dist/components/Sidebar/Button.d.ts +7 -0
  14. package/dist/components/Sidebar/Container.d.ts +5 -0
  15. package/dist/components/Sidebar/Item.d.ts +9 -0
  16. package/dist/components/Sidebar/Layout.d.ts +7 -0
  17. package/dist/components/Sidebar/Provider.d.ts +14 -0
  18. package/dist/components/Sidebar/SecondaryItem.d.ts +9 -0
  19. package/dist/components/Sidebar/ToggleCollapseButton.d.ts +1 -0
  20. package/dist/components/Sidebar/index.d.ts +7 -0
  21. package/dist/components/icons/CloseSidebarIcon.d.ts +2 -0
  22. package/dist/components/icons/CloseSidebarMidIcon.d.ts +1 -0
  23. package/dist/components/icons/ExpandIcon.d.ts +3 -0
  24. package/dist/components/icons/SendArrowIcon.d.ts +4 -0
  25. package/dist/components/icons/SendArrowIconGreen.d.ts +4 -0
  26. package/dist/components/icons/XIcon.d.ts +3 -0
  27. package/dist/components/index.d.ts +3 -0
  28. package/dist/index.cjs +30 -0
  29. package/dist/index.d.ts +3 -0
  30. package/dist/index.esm.js +3671 -0
  31. package/dist/material-theme.d.ts +416 -0
  32. package/dist/stories/Buttons.d.ts +1 -0
  33. package/dist/stories/Checkbox.d.ts +1 -0
  34. package/dist/stories/ColorPalette.d.ts +1 -0
  35. package/dist/stories/Dropdowns.d.ts +1 -0
  36. package/dist/stories/InputPrompt.d.ts +1 -0
  37. package/dist/stories/Sidebar.d.ts +1 -0
  38. package/dist/stories/Typography.d.ts +1 -0
  39. package/dist/tailwind-theme.d.ts +197 -0
  40. package/dist/utils/cn.d.ts +7 -0
  41. package/package.json +88 -0
  42. package/src/components/HelloWorld.tsx +3 -0
  43. package/src/components/InputPrompt.tsx +96 -0
  44. package/src/components/ModalPanel.tsx +31 -0
  45. package/src/components/PdfViewer/ImageViewer.tsx +167 -0
  46. package/src/components/PdfViewer/PdfViewer.tsx +53 -0
  47. package/src/components/PdfViewer/index.ts +2 -0
  48. package/src/components/PdfViewer/usePageManagement.ts +14 -0
  49. package/src/components/PdfViewer/usePanning.ts +42 -0
  50. package/src/components/PdfViewer/useRefDimensions.ts +16 -0
  51. package/src/components/PdfViewer/useRotation.ts +13 -0
  52. package/src/components/PdfViewer/useZoom.ts +26 -0
  53. package/src/components/Sidebar/Button.tsx +20 -0
  54. package/src/components/Sidebar/Container.tsx +32 -0
  55. package/src/components/Sidebar/Item.tsx +39 -0
  56. package/src/components/Sidebar/Layout.tsx +23 -0
  57. package/src/components/Sidebar/Provider.tsx +47 -0
  58. package/src/components/Sidebar/SecondaryItem.tsx +39 -0
  59. package/src/components/Sidebar/ToggleCollapseButton.tsx +24 -0
  60. package/src/components/Sidebar/index.ts +7 -0
  61. package/src/components/icons/CloseSidebarIcon.tsx +19 -0
  62. package/src/components/icons/CloseSidebarMidIcon.tsx +19 -0
  63. package/src/components/icons/ExpandIcon.tsx +21 -0
  64. package/src/components/icons/SendArrowIcon.tsx +23 -0
  65. package/src/components/icons/SendArrowIconGreen.tsx +17 -0
  66. package/src/components/icons/XIcon.tsx +21 -0
  67. package/src/components/index.ts +3 -0
  68. package/src/index.ts +4 -0
  69. package/src/material-theme.ts +447 -0
  70. package/src/stories/Buttons.stories.tsx +15 -0
  71. package/src/stories/Buttons.tsx +52 -0
  72. package/src/stories/Checkbox.stories.tsx +15 -0
  73. package/src/stories/Checkbox.tsx +56 -0
  74. package/src/stories/ColorPalette.stories.tsx +15 -0
  75. package/src/stories/ColorPalette.tsx +72 -0
  76. package/src/stories/Dropdowns.stories.tsx +15 -0
  77. package/src/stories/Dropdowns.tsx +52 -0
  78. package/src/stories/InputPrompt.stories.tsx +15 -0
  79. package/src/stories/InputPrompt.tsx +63 -0
  80. package/src/stories/PDFViewer.stories.tsx +37 -0
  81. package/src/stories/Sidebar.stories.tsx +15 -0
  82. package/src/stories/Sidebar.tsx +94 -0
  83. package/src/stories/Typography.stories.tsx +15 -0
  84. package/src/stories/Typography.tsx +110 -0
  85. package/src/style.css +2 -0
  86. package/src/tailwind-theme.ts +219 -0
  87. package/src/utils/cn.ts +11 -0
@@ -0,0 +1,3671 @@
1
+ import rr, { useState as Te, createContext as Lr, useContext as le } from "react";
2
+ import { Tooltip as Gr, IconButton as tr } from "@material-tailwind/react";
3
+ import Vr from "react-textarea-autosize";
4
+ const Ot = {
5
+ fontFamily: {
6
+ sans: ["Work Sans", "sans-serif"],
7
+ mono: ["Roboto Mono", "monospace"],
8
+ signature: ["Alex Brush", "Lucida Handwriting", "cursive"]
9
+ },
10
+ fontSize: {
11
+ subheader: [
12
+ "18px",
13
+ {
14
+ lineHeight: "28px",
15
+ letterSpacing: "-0.01em"
16
+ }
17
+ ],
18
+ "subheader-em": [
19
+ "18px",
20
+ {
21
+ lineHeight: "28px",
22
+ letterSpacing: "-0.01em",
23
+ fontWeight: "500"
24
+ }
25
+ ],
26
+ body: [
27
+ "16px",
28
+ {
29
+ lineHeight: "28px",
30
+ letterSpacing: "-0.01em"
31
+ }
32
+ ],
33
+ "body-em": [
34
+ "16px",
35
+ {
36
+ lineHeight: "28px",
37
+ letterSpacing: "-0.01em",
38
+ fontWeight: "500"
39
+ }
40
+ ],
41
+ "caption-1": [
42
+ "16px",
43
+ {
44
+ lineHeight: "22px"
45
+ }
46
+ ],
47
+ "caption-1-em": [
48
+ "16px",
49
+ {
50
+ lineHeight: "22px",
51
+ fontWeight: "500"
52
+ }
53
+ ],
54
+ "caption-2": [
55
+ "14px",
56
+ {
57
+ lineHeight: "20px"
58
+ }
59
+ ],
60
+ "caption-2-em": [
61
+ "14px",
62
+ {
63
+ lineHeight: "20px",
64
+ fontWeight: "500"
65
+ }
66
+ ],
67
+ footnote: [
68
+ "13px",
69
+ {
70
+ lineHeight: "17px"
71
+ }
72
+ ],
73
+ "footnote-em": [
74
+ "13px",
75
+ {
76
+ lineHeight: "17px",
77
+ fontWeight: "500"
78
+ }
79
+ ]
80
+ },
81
+ width: {
82
+ authPageWidth: "370px"
83
+ },
84
+ keyframes: {
85
+ "accordion-down": {
86
+ from: { height: 0 },
87
+ to: { height: "var(--radix-accordion-content-height)" }
88
+ },
89
+ "accordion-up": {
90
+ from: { height: "var(--radix-accordion-content-height)" },
91
+ to: { height: 0 }
92
+ }
93
+ },
94
+ animation: {
95
+ "accordion-down": "accordion-down 0.2s ease-out",
96
+ "accordion-up": "accordion-up 0.2s ease-out"
97
+ },
98
+ colors: {
99
+ gray: {
100
+ 50: "#fafafa",
101
+ 100: "#f0f0f0",
102
+ 200: "#d6d6d6",
103
+ 300: "#bdbdbd",
104
+ 400: "#a3a3a3",
105
+ 500: "#8a8a8a",
106
+ 600: "#6e6e6e",
107
+ 700: "#525252",
108
+ 800: "#363636",
109
+ 900: "#1a1a1a"
110
+ },
111
+ green: {
112
+ 50: "#e0fff2",
113
+ 100: "#adf0d3",
114
+ 200: "#8aeac1",
115
+ 300: "#67e4ae",
116
+ 400: "#45de9c",
117
+ 500: "#26d489",
118
+ 600: "#1da56a",
119
+ 700: "#15754c",
120
+ 800: "#0c452d",
121
+ 900: "#04160e"
122
+ },
123
+ blue: {
124
+ 50: "#cae8f7",
125
+ 100: "#b8e0f4",
126
+ 200: "#95d1ef",
127
+ 300: "#71c1ea",
128
+ 400: "#4eb2e4",
129
+ 500: "#2aa2df",
130
+ 600: "#1b82b6",
131
+ 700: "#145f85",
132
+ 800: "#0d3c54",
133
+ 900: "#051923"
134
+ },
135
+ red: {
136
+ 50: "#f9dcdc",
137
+ 100: "#f6cbcb",
138
+ 200: "#f0a8a8",
139
+ 300: "#ea8686",
140
+ 400: "#e36363",
141
+ 500: "#dd4040",
142
+ 600: "#c32222",
143
+ 700: "#931a1a",
144
+ 800: "#641212",
145
+ 900: "#340909"
146
+ },
147
+ orange: {
148
+ 50: "#fff7eb",
149
+ 100: "#f8e0bf",
150
+ 200: "#f4cf9a",
151
+ 300: "#f0bd75",
152
+ 400: "#ecab51",
153
+ 500: "#e89a2c",
154
+ 600: "#C77C0A",
155
+ 700: "#935d10",
156
+ 800: "#603d0b",
157
+ 900: "#2e1d05"
158
+ },
159
+ "brand-purple": "#ab68ff",
160
+ presentation: "var(--presentation)",
161
+ "text-primary": "var(--text-primary)",
162
+ "text-secondary": "var(--text-secondary)",
163
+ "text-secondary-alt": "var(--text-secondary-alt)",
164
+ "text-tertiary": "var(--text-tertiary)",
165
+ "ring-primary": "var(--ring-primary)",
166
+ "header-primary": "var(--header-primary)",
167
+ "header-hover": "var(--header-hover)",
168
+ "header-button-hover": "var(--header-button-hover)",
169
+ "surface-active": "var(--surface-active)",
170
+ "surface-active-alt": "var(--surface-active-alt)",
171
+ "surface-hover": "var(--surface-hover)",
172
+ "surface-primary": "var(--surface-primary)",
173
+ "surface-primary-alt": "var(--surface-primary-alt)",
174
+ "surface-primary-contrast": "var(--surface-primary-contrast)",
175
+ "surface-secondary": "var(--surface-secondary)",
176
+ "surface-secondary-alt": "var(--surface-secondary-alt)",
177
+ "surface-tertiary": "var(--surface-tertiary)",
178
+ "surface-tertiary-alt": "var(--surface-tertiary-alt)",
179
+ "surface-dialog": "var(--surface-dialog)",
180
+ "surface-submit": "var(--surface-submit)",
181
+ "border-light": "var(--border-light)",
182
+ "border-medium": "var(--border-medium)",
183
+ "border-medium-alt": "var(--border-medium-alt)",
184
+ "border-heavy": "var(--border-heavy)",
185
+ "border-xheavy": "var(--border-xheavy)",
186
+ border: "hsl(var(--border))",
187
+ input: "hsl(var(--input))",
188
+ "switch-unchecked": "hsl(var(--switch-unchecked))",
189
+ ring: "hsl(var(--ring))",
190
+ background: "hsl(var(--background))",
191
+ foreground: "hsl(var(--foreground))",
192
+ primary: {
193
+ DEFAULT: "hsl(var(--primary))",
194
+ foreground: "hsl(var(--primary-foreground))"
195
+ },
196
+ secondary: {
197
+ DEFAULT: "hsl(var(--secondary))",
198
+ foreground: "hsl(var(--secondary-foreground))"
199
+ },
200
+ destructive: {
201
+ DEFAULT: "hsl(var(--destructive))",
202
+ foreground: "hsl(var(--destructive-foreground))"
203
+ },
204
+ muted: {
205
+ DEFAULT: "hsl(var(--muted))",
206
+ foreground: "hsl(var(--muted-foreground))"
207
+ },
208
+ accent: {
209
+ DEFAULT: "hsl(var(--accent))",
210
+ foreground: "hsl(var(--accent-foreground))"
211
+ },
212
+ card: {
213
+ DEFAULT: "hsl(var(--card))",
214
+ foreground: "hsl(var(--card-foreground))"
215
+ }
216
+ },
217
+ borderRadius: {
218
+ lg: "8px",
219
+ md: "calc(8px - 2px)",
220
+ sm: "calc(8px - 4px)"
221
+ }
222
+ }, It = {
223
+ button: {
224
+ defaultProps: {
225
+ className: "items-center normal-case shadow-none hover:shadow-none text-caption-1 font-medium h-10 rounded-lg flex gap-2 px-3 truncate tracking-[0.16px] justify-center",
226
+ ripple: !1,
227
+ color: "green"
228
+ },
229
+ styles: {
230
+ sizes: {
231
+ md: {
232
+ fontSize: "text-md",
233
+ className: "py-2"
234
+ }
235
+ },
236
+ variants: {
237
+ filled: {
238
+ blue: {
239
+ color: "!text-white",
240
+ background: "bg-blue-400",
241
+ hover: "hover:bg-blue-500",
242
+ disabled: "disabled:bg-blue-200 disabled:!text-blue-600 !opacity-100"
243
+ },
244
+ green: {
245
+ color: "!text-white",
246
+ background: "bg-green-600",
247
+ hover: "hover:bg-green-700",
248
+ disabled: "disabled:bg-green-200 disabled:!text-green-600 !opacity-100"
249
+ },
250
+ red: {
251
+ color: "!text-white",
252
+ background: "bg-red-600",
253
+ hover: "hover:bg-red-700",
254
+ disabled: "disabled:bg-red-200 disabled:!text-red-600 !opacity-100"
255
+ },
256
+ gray: {
257
+ color: "text-black",
258
+ background: "bg-gray-50",
259
+ hover: "hover:bg-gray-100",
260
+ disabled: "disabled:bg-gray-50 disabled:!text-gray-200 !opacity-100"
261
+ },
262
+ orange: {
263
+ color: "!text-orange-600",
264
+ background: "bg-orange-50",
265
+ hover: "hover:bg-orange-100",
266
+ disabled: "disabled:bg-orange-50 disabled:!text-orange-200 !opacity-100"
267
+ }
268
+ },
269
+ outlined: {
270
+ gray: {
271
+ background: "bg-white",
272
+ color: "text-gray-700 border-gray-100",
273
+ hover: "!text-gray-900 hover:bg-gray-100",
274
+ disabled: "disabled:text-gray-500"
275
+ }
276
+ },
277
+ text: {
278
+ green: {
279
+ color: "!text-green-600",
280
+ hover: "hover:bg-gray-100",
281
+ disabled: "disabled:!text-gray-500"
282
+ },
283
+ gray: {
284
+ color: "!text-gray-700",
285
+ hover: "hover:bg-gray-100",
286
+ disabled: "disabled:!text-gray-500"
287
+ }
288
+ }
289
+ }
290
+ }
291
+ },
292
+ iconButton: {
293
+ defaultProps: {
294
+ className: "items-center justify-center normal-case shadow-none hover:shadow-none text-caption-1 font-medium h-10 rounded-lg flex gap-2 px-3 truncate",
295
+ ripple: !1,
296
+ color: "green"
297
+ },
298
+ styles: {
299
+ sizes: {
300
+ md: {
301
+ fontSize: "text-md",
302
+ className: "py-2"
303
+ }
304
+ },
305
+ variants: {
306
+ filled: {
307
+ blue: {
308
+ color: "!text-white",
309
+ background: "bg-blue-400",
310
+ hover: "hover:bg-blue-500",
311
+ disabled: "disabled:bg-blue-200 disabled:!text-blue-600 !opacity-100"
312
+ },
313
+ green: {
314
+ color: "!text-white",
315
+ background: "bg-green-600",
316
+ hover: "hover:bg-green-700",
317
+ disabled: "disabled:bg-green-200 disabled:!text-green-600 !opacity-100"
318
+ },
319
+ red: {
320
+ color: "!text-white",
321
+ background: "bg-red-600",
322
+ hover: "hover:bg-red-700",
323
+ disabled: "disabled:bg-red-200 disabled:!text-red-600 !opacity-100"
324
+ },
325
+ gray: {
326
+ color: "text-black",
327
+ background: "bg-gray-50",
328
+ hover: "hover:bg-gray-100",
329
+ disabled: "disabled:bg-gray-50 disabled:!text-gray-200 !opacity-100"
330
+ },
331
+ orange: {
332
+ color: "!text-orange-600",
333
+ background: "bg-orange-50",
334
+ hover: "hover:bg-orange-100",
335
+ disabled: "disabled:bg-orange-50 disabled:!text-orange-200 !opacity-100"
336
+ }
337
+ },
338
+ outlined: {
339
+ gray: {
340
+ background: "bg-white",
341
+ color: "text-gray-700 border-gray-100",
342
+ hover: "!text-gray-900 hover:bg-gray-100",
343
+ disabled: "disabled:text-gray-500"
344
+ }
345
+ },
346
+ text: {
347
+ green: {
348
+ color: "!text-green-600",
349
+ hover: "hover:bg-gray-100",
350
+ disabled: "disabled:!text-gray-500"
351
+ },
352
+ gray: {
353
+ color: "!text-gray-700",
354
+ hover: "hover:bg-gray-100",
355
+ disabled: "disabled:!text-gray-500"
356
+ }
357
+ }
358
+ }
359
+ }
360
+ },
361
+ progress: {
362
+ defaultProps: {
363
+ className: "bg-gray-100",
364
+ barProps: {
365
+ className: "transform transition-all duration-300"
366
+ }
367
+ },
368
+ styles: {
369
+ sizes: {
370
+ sm: {
371
+ container: {
372
+ initial: { height: "h-1" }
373
+ }
374
+ }
375
+ }
376
+ }
377
+ },
378
+ menu: {
379
+ styles: {
380
+ base: {
381
+ menu: {
382
+ border: "border border-gray-100",
383
+ borderRadius: "rounded-xl",
384
+ boxShadow: "shadow-sm",
385
+ p: "p-2"
386
+ },
387
+ item: {
388
+ initial: {
389
+ display: "flex gap-2 items-center focus-within:outline-none text-gray-900",
390
+ bg: "hover:bg-gray-100",
391
+ p: "p-2"
392
+ }
393
+ }
394
+ }
395
+ }
396
+ },
397
+ dialog: {
398
+ defaultProps: {
399
+ size: "sm",
400
+ dismiss: {},
401
+ animate: {
402
+ mount: {},
403
+ unmount: {}
404
+ },
405
+ className: ""
406
+ },
407
+ valid: {
408
+ sizes: ["xs", "sm", "md", "lg", "xl", "xxl"]
409
+ },
410
+ styles: {
411
+ base: {
412
+ backdrop: {
413
+ width: "w-full",
414
+ display: "grid",
415
+ placeItems: "place-items-center",
416
+ position: "fixed",
417
+ top: 0,
418
+ left: 0,
419
+ height: "h-screen",
420
+ backgroundColor: "bg-[rgba(0,0,0,0.16)]",
421
+ backgroundOpacity: "bg-opacity-100",
422
+ backdropFilter: "backdrop-blur-none"
423
+ },
424
+ container: {
425
+ height: "h-[450px]",
426
+ position: "relative",
427
+ bg: "bg-white",
428
+ m: "m-4",
429
+ borderRadius: "rounded-xl",
430
+ boxShadow: "shadow-[0px_2px_8px_0px_#00000029,0px_2px_2px_0px_#0000000A,0px_8px_8px_-8px_#0000000A]",
431
+ fontSmoothing: "antialiased"
432
+ }
433
+ },
434
+ sizes: {
435
+ sm: {
436
+ maxWidth: "!max-w-[550px]"
437
+ },
438
+ lg: {
439
+ maxWidth: "!max-w-[700px]"
440
+ }
441
+ }
442
+ }
443
+ },
444
+ dialogHeader: {
445
+ styles: {
446
+ base: {
447
+ display: "text-gray-900 font-normal"
448
+ }
449
+ }
450
+ },
451
+ checkbox: {
452
+ defaultProps: {
453
+ color: "custom",
454
+ ripple: !1
455
+ },
456
+ valid: {
457
+ colors: ["blue-gray", "gray", "red", "green", "custom"]
458
+ },
459
+ styles: {
460
+ base: {
461
+ root: {
462
+ display: "inline-flex",
463
+ alignItems: "items-center"
464
+ },
465
+ container: {
466
+ position: "relative",
467
+ display: "flex",
468
+ alignItems: "items-center",
469
+ cursor: "cursor-pointer",
470
+ p: "!p-0",
471
+ borderRadius: "rounded-full"
472
+ },
473
+ input: {
474
+ peer: "peer",
475
+ position: "relative",
476
+ appearance: "appearance-none",
477
+ width: "w-5",
478
+ height: "h-5",
479
+ borderWidth: "border-[1.5px]",
480
+ borderRadius: "rounded-md",
481
+ borderColor: "border-gray-100",
482
+ cursor: "cursor-pointer",
483
+ transition: "transition-all",
484
+ before: {
485
+ content: "before:content-['']",
486
+ display: "before:block",
487
+ bg: "before:bg-transparent",
488
+ width: "before:w-12",
489
+ height: "before:h-12",
490
+ borderRadius: "before:rounded-full",
491
+ position: "before:absolute",
492
+ opacity: "before:opacity-0 hover:before:opacity-10"
493
+ }
494
+ },
495
+ label: {
496
+ color: "text-gray-700",
497
+ fontWeight: "font-light",
498
+ userSelect: "select-none",
499
+ cursor: "cursor-pointer",
500
+ mt: "mt-px",
501
+ px: "px-2"
502
+ },
503
+ icon: {
504
+ display: "flex",
505
+ alignItems: "items-center",
506
+ justifyContent: "justify-center",
507
+ width: "w-5",
508
+ height: "h-5",
509
+ color: "text-green-600",
510
+ position: "absolute",
511
+ pointerEvents: "pointer-events-none",
512
+ opacity: "opacity-0 peer-checked:opacity-100",
513
+ transition: "transition-opacity"
514
+ },
515
+ disabled: {
516
+ opacity: "opacity-50",
517
+ pointerEvents: "pointer-events-none"
518
+ }
519
+ },
520
+ colors: {
521
+ custom: {
522
+ border: "checked:border-green-600"
523
+ }
524
+ }
525
+ }
526
+ },
527
+ popover: {
528
+ defaultProps: {
529
+ placement: "top",
530
+ offset: 5,
531
+ dismiss: {},
532
+ animate: {
533
+ unmount: {},
534
+ mount: {}
535
+ },
536
+ className: ""
537
+ },
538
+ styles: {
539
+ base: {
540
+ bg: "bg-white",
541
+ p: "p-4",
542
+ borderWidth: "border",
543
+ borderColor: "border-gray-200",
544
+ borderRadius: "rounded-lg",
545
+ boxShadow: "[box-shadow:0px_2px_2px_0px_#0000000A,_0px_8px_8px_-8px_#0000000A]",
546
+ fontSize: "text-sm",
547
+ fontWeight: "font-normal",
548
+ color: "text-blue-gray-500",
549
+ outline: "focus:outline-none",
550
+ overflowWrap: "break-words",
551
+ whiteSpace: "whitespace-normal"
552
+ }
553
+ }
554
+ },
555
+ switch: {
556
+ defaultProps: {
557
+ color: "blue",
558
+ label: "",
559
+ ripple: !0,
560
+ className: "",
561
+ disabled: !1,
562
+ containerProps: void 0,
563
+ labelProps: void 0,
564
+ circleProps: void 0
565
+ },
566
+ valid: {
567
+ colors: [
568
+ "blue-gray",
569
+ "gray",
570
+ "brown",
571
+ "deep-orange",
572
+ "orange",
573
+ "amber",
574
+ "yellow",
575
+ "lime",
576
+ "light-green",
577
+ "green",
578
+ "teal",
579
+ "cyan",
580
+ "light-blue",
581
+ "blue",
582
+ "indigo",
583
+ "deep-purple",
584
+ "purple",
585
+ "pink",
586
+ "red"
587
+ ]
588
+ },
589
+ styles: {
590
+ base: {
591
+ input: {
592
+ background: "bg-gray-500"
593
+ },
594
+ circle: {
595
+ borderColor: "border-gray-500",
596
+ borderRadius: "rounded-full",
597
+ boxShadow: "shadow-md",
598
+ position: "absolute",
599
+ top: "top-2/4",
600
+ left: "-left-1",
601
+ transform: "-translate-y-2/4 peer-checked:translate-x-full",
602
+ transition: "transition-all duration-300",
603
+ cursor: "cursor-pointer",
604
+ before: {
605
+ content: "before:content['']",
606
+ display: "before:block",
607
+ bg: "before:bg-blue-gray-500",
608
+ width: "before:w-10",
609
+ height: "before:h-10",
610
+ borderRadius: "before:rounded-full",
611
+ position: "before:absolute",
612
+ top: "before:top-2/4",
613
+ left: "before:left-2/4",
614
+ transform: "before:-translate-y-2/4 before:-translate-x-2/4",
615
+ transition: "before:transition-opacity",
616
+ opacity: "before:opacity-0 hover:before:opacity-10"
617
+ }
618
+ },
619
+ ripple: {
620
+ display: "inline-block",
621
+ top: "top-2/4",
622
+ left: "left-2/4",
623
+ transform: "-translate-x-2/4 -translate-y-2/4",
624
+ p: "p-5",
625
+ borderRadius: "rounded-full"
626
+ },
627
+ label: {
628
+ color: "text-gray-700",
629
+ fontWeight: "font-light",
630
+ userSelect: "select-none",
631
+ cursor: "cursor-pointer",
632
+ mt: "mt-px",
633
+ ml: "ml-3",
634
+ mb: "mb-0"
635
+ },
636
+ disabled: {
637
+ opacity: "opacity-50",
638
+ pointerEvents: "pointer-events-none"
639
+ }
640
+ },
641
+ colors: {
642
+ gray: {
643
+ input: "checked:bg-blue-gray-100",
644
+ circle: "peer-checked:border-blue-gray-100",
645
+ before: "peer-checked:before:bg-gray-500"
646
+ },
647
+ green: {
648
+ input: "checked:bg-green-600",
649
+ circle: "peer-checked:border-green-600",
650
+ before: "peer-checked:before:bg-green-600"
651
+ }
652
+ }
653
+ }
654
+ }
655
+ };
656
+ var Ae = { exports: {} }, oe = {};
657
+ /**
658
+ * @license React
659
+ * react-jsx-runtime.production.min.js
660
+ *
661
+ * Copyright (c) Facebook, Inc. and its affiliates.
662
+ *
663
+ * This source code is licensed under the MIT license found in the
664
+ * LICENSE file in the root directory of this source tree.
665
+ */
666
+ var Ke;
667
+ function Hr() {
668
+ if (Ke) return oe;
669
+ Ke = 1;
670
+ var r = rr, t = Symbol.for("react.element"), a = Symbol.for("react.fragment"), o = Object.prototype.hasOwnProperty, s = r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner, d = { key: !0, ref: !0, __self: !0, __source: !0 };
671
+ function c(l, f, m) {
672
+ var v, w = {}, R = null, P = null;
673
+ m !== void 0 && (R = "" + m), f.key !== void 0 && (R = "" + f.key), f.ref !== void 0 && (P = f.ref);
674
+ for (v in f) o.call(f, v) && !d.hasOwnProperty(v) && (w[v] = f[v]);
675
+ if (l && l.defaultProps) for (v in f = l.defaultProps, f) w[v] === void 0 && (w[v] = f[v]);
676
+ return { $$typeof: t, type: l, key: R, ref: P, props: w, _owner: s.current };
677
+ }
678
+ return oe.Fragment = a, oe.jsx = c, oe.jsxs = c, oe;
679
+ }
680
+ var ne = {};
681
+ /**
682
+ * @license React
683
+ * react-jsx-runtime.development.js
684
+ *
685
+ * Copyright (c) Facebook, Inc. and its affiliates.
686
+ *
687
+ * This source code is licensed under the MIT license found in the
688
+ * LICENSE file in the root directory of this source tree.
689
+ */
690
+ var qe;
691
+ function Dr() {
692
+ return qe || (qe = 1, process.env.NODE_ENV !== "production" && function() {
693
+ var r = rr, t = Symbol.for("react.element"), a = Symbol.for("react.portal"), o = Symbol.for("react.fragment"), s = Symbol.for("react.strict_mode"), d = Symbol.for("react.profiler"), c = Symbol.for("react.provider"), l = Symbol.for("react.context"), f = Symbol.for("react.forward_ref"), m = Symbol.for("react.suspense"), v = Symbol.for("react.suspense_list"), w = Symbol.for("react.memo"), R = Symbol.for("react.lazy"), P = Symbol.for("react.offscreen"), O = Symbol.iterator, F = "@@iterator";
694
+ function N(e) {
695
+ if (e === null || typeof e != "object")
696
+ return null;
697
+ var n = O && e[O] || e[F];
698
+ return typeof n == "function" ? n : null;
699
+ }
700
+ var T = r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
701
+ function E(e) {
702
+ {
703
+ for (var n = arguments.length, i = new Array(n > 1 ? n - 1 : 0), u = 1; u < n; u++)
704
+ i[u - 1] = arguments[u];
705
+ Q("error", e, i);
706
+ }
707
+ }
708
+ function Q(e, n, i) {
709
+ {
710
+ var u = T.ReactDebugCurrentFrame, h = u.getStackAddendum();
711
+ h !== "" && (n += "%s", i = i.concat([h]));
712
+ var y = i.map(function(g) {
713
+ return String(g);
714
+ });
715
+ y.unshift("Warning: " + n), Function.prototype.apply.call(console[e], console, y);
716
+ }
717
+ }
718
+ var ce = !1, de = !1, ue = !1, fe = !1, ee = !1, Z;
719
+ Z = Symbol.for("react.module.reference");
720
+ function pe(e) {
721
+ return !!(typeof e == "string" || typeof e == "function" || e === o || e === d || ee || e === s || e === m || e === v || fe || e === P || ce || de || ue || typeof e == "object" && e !== null && (e.$$typeof === R || e.$$typeof === w || e.$$typeof === c || e.$$typeof === l || e.$$typeof === f || // This needs to include all possible module reference object
722
+ // types supported by any Flight configuration anywhere since
723
+ // we don't know which Flight build this will end up being used
724
+ // with.
725
+ e.$$typeof === Z || e.getModuleId !== void 0));
726
+ }
727
+ function ge(e, n, i) {
728
+ var u = e.displayName;
729
+ if (u)
730
+ return u;
731
+ var h = n.displayName || n.name || "";
732
+ return h !== "" ? i + "(" + h + ")" : i;
733
+ }
734
+ function D(e) {
735
+ return e.displayName || "Context";
736
+ }
737
+ function z(e) {
738
+ if (e == null)
739
+ return null;
740
+ if (typeof e.tag == "number" && E("Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."), typeof e == "function")
741
+ return e.displayName || e.name || null;
742
+ if (typeof e == "string")
743
+ return e;
744
+ switch (e) {
745
+ case o:
746
+ return "Fragment";
747
+ case a:
748
+ return "Portal";
749
+ case d:
750
+ return "Profiler";
751
+ case s:
752
+ return "StrictMode";
753
+ case m:
754
+ return "Suspense";
755
+ case v:
756
+ return "SuspenseList";
757
+ }
758
+ if (typeof e == "object")
759
+ switch (e.$$typeof) {
760
+ case l:
761
+ var n = e;
762
+ return D(n) + ".Consumer";
763
+ case c:
764
+ var i = e;
765
+ return D(i._context) + ".Provider";
766
+ case f:
767
+ return ge(e, e.render, "ForwardRef");
768
+ case w:
769
+ var u = e.displayName || null;
770
+ return u !== null ? u : z(e.type) || "Memo";
771
+ case R: {
772
+ var h = e, y = h._payload, g = h._init;
773
+ try {
774
+ return z(g(y));
775
+ } catch {
776
+ return null;
777
+ }
778
+ }
779
+ }
780
+ return null;
781
+ }
782
+ var I = Object.assign, L = 0, J, G, re, V, $, S, Ie;
783
+ function Me() {
784
+ }
785
+ Me.__reactDisabledLog = !0;
786
+ function fr() {
787
+ {
788
+ if (L === 0) {
789
+ J = console.log, G = console.info, re = console.warn, V = console.error, $ = console.group, S = console.groupCollapsed, Ie = console.groupEnd;
790
+ var e = {
791
+ configurable: !0,
792
+ enumerable: !0,
793
+ value: Me,
794
+ writable: !0
795
+ };
796
+ Object.defineProperties(console, {
797
+ info: e,
798
+ log: e,
799
+ warn: e,
800
+ error: e,
801
+ group: e,
802
+ groupCollapsed: e,
803
+ groupEnd: e
804
+ });
805
+ }
806
+ L++;
807
+ }
808
+ }
809
+ function pr() {
810
+ {
811
+ if (L--, L === 0) {
812
+ var e = {
813
+ configurable: !0,
814
+ enumerable: !0,
815
+ writable: !0
816
+ };
817
+ Object.defineProperties(console, {
818
+ log: I({}, e, {
819
+ value: J
820
+ }),
821
+ info: I({}, e, {
822
+ value: G
823
+ }),
824
+ warn: I({}, e, {
825
+ value: re
826
+ }),
827
+ error: I({}, e, {
828
+ value: V
829
+ }),
830
+ group: I({}, e, {
831
+ value: $
832
+ }),
833
+ groupCollapsed: I({}, e, {
834
+ value: S
835
+ }),
836
+ groupEnd: I({}, e, {
837
+ value: Ie
838
+ })
839
+ });
840
+ }
841
+ L < 0 && E("disabledDepth fell below zero. This is a bug in React. Please file an issue.");
842
+ }
843
+ }
844
+ var xe = T.ReactCurrentDispatcher, we;
845
+ function be(e, n, i) {
846
+ {
847
+ if (we === void 0)
848
+ try {
849
+ throw Error();
850
+ } catch (h) {
851
+ var u = h.stack.trim().match(/\n( *(at )?)/);
852
+ we = u && u[1] || "";
853
+ }
854
+ return `
855
+ ` + we + e;
856
+ }
857
+ }
858
+ var Ce = !1, ve;
859
+ {
860
+ var gr = typeof WeakMap == "function" ? WeakMap : Map;
861
+ ve = new gr();
862
+ }
863
+ function ze(e, n) {
864
+ if (!e || Ce)
865
+ return "";
866
+ {
867
+ var i = ve.get(e);
868
+ if (i !== void 0)
869
+ return i;
870
+ }
871
+ var u;
872
+ Ce = !0;
873
+ var h = Error.prepareStackTrace;
874
+ Error.prepareStackTrace = void 0;
875
+ var y;
876
+ y = xe.current, xe.current = null, fr();
877
+ try {
878
+ if (n) {
879
+ var g = function() {
880
+ throw Error();
881
+ };
882
+ if (Object.defineProperty(g.prototype, "props", {
883
+ set: function() {
884
+ throw Error();
885
+ }
886
+ }), typeof Reflect == "object" && Reflect.construct) {
887
+ try {
888
+ Reflect.construct(g, []);
889
+ } catch (A) {
890
+ u = A;
891
+ }
892
+ Reflect.construct(e, [], g);
893
+ } else {
894
+ try {
895
+ g.call();
896
+ } catch (A) {
897
+ u = A;
898
+ }
899
+ e.call(g.prototype);
900
+ }
901
+ } else {
902
+ try {
903
+ throw Error();
904
+ } catch (A) {
905
+ u = A;
906
+ }
907
+ e();
908
+ }
909
+ } catch (A) {
910
+ if (A && u && typeof A.stack == "string") {
911
+ for (var p = A.stack.split(`
912
+ `), j = u.stack.split(`
913
+ `), C = p.length - 1, k = j.length - 1; C >= 1 && k >= 0 && p[C] !== j[k]; )
914
+ k--;
915
+ for (; C >= 1 && k >= 0; C--, k--)
916
+ if (p[C] !== j[k]) {
917
+ if (C !== 1 || k !== 1)
918
+ do
919
+ if (C--, k--, k < 0 || p[C] !== j[k]) {
920
+ var M = `
921
+ ` + p[C].replace(" at new ", " at ");
922
+ return e.displayName && M.includes("<anonymous>") && (M = M.replace("<anonymous>", e.displayName)), typeof e == "function" && ve.set(e, M), M;
923
+ }
924
+ while (C >= 1 && k >= 0);
925
+ break;
926
+ }
927
+ }
928
+ } finally {
929
+ Ce = !1, xe.current = y, pr(), Error.prepareStackTrace = h;
930
+ }
931
+ var q = e ? e.displayName || e.name : "", U = q ? be(q) : "";
932
+ return typeof e == "function" && ve.set(e, U), U;
933
+ }
934
+ function br(e, n, i) {
935
+ return ze(e, !1);
936
+ }
937
+ function vr(e) {
938
+ var n = e.prototype;
939
+ return !!(n && n.isReactComponent);
940
+ }
941
+ function he(e, n, i) {
942
+ if (e == null)
943
+ return "";
944
+ if (typeof e == "function")
945
+ return ze(e, vr(e));
946
+ if (typeof e == "string")
947
+ return be(e);
948
+ switch (e) {
949
+ case m:
950
+ return be("Suspense");
951
+ case v:
952
+ return be("SuspenseList");
953
+ }
954
+ if (typeof e == "object")
955
+ switch (e.$$typeof) {
956
+ case f:
957
+ return br(e.render);
958
+ case w:
959
+ return he(e.type, n, i);
960
+ case R: {
961
+ var u = e, h = u._payload, y = u._init;
962
+ try {
963
+ return he(y(h), n, i);
964
+ } catch {
965
+ }
966
+ }
967
+ }
968
+ return "";
969
+ }
970
+ var te = Object.prototype.hasOwnProperty, We = {}, Ne = T.ReactDebugCurrentFrame;
971
+ function me(e) {
972
+ if (e) {
973
+ var n = e._owner, i = he(e.type, e._source, n ? n.type : null);
974
+ Ne.setExtraStackFrame(i);
975
+ } else
976
+ Ne.setExtraStackFrame(null);
977
+ }
978
+ function hr(e, n, i, u, h) {
979
+ {
980
+ var y = Function.call.bind(te);
981
+ for (var g in e)
982
+ if (y(e, g)) {
983
+ var p = void 0;
984
+ try {
985
+ if (typeof e[g] != "function") {
986
+ var j = Error((u || "React class") + ": " + i + " type `" + g + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof e[g] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`.");
987
+ throw j.name = "Invariant Violation", j;
988
+ }
989
+ p = e[g](n, g, u, i, null, "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED");
990
+ } catch (C) {
991
+ p = C;
992
+ }
993
+ p && !(p instanceof Error) && (me(h), E("%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).", u || "React class", i, g, typeof p), me(null)), p instanceof Error && !(p.message in We) && (We[p.message] = !0, me(h), E("Failed %s type: %s", i, p.message), me(null));
994
+ }
995
+ }
996
+ }
997
+ var mr = Array.isArray;
998
+ function ke(e) {
999
+ return mr(e);
1000
+ }
1001
+ function yr(e) {
1002
+ {
1003
+ var n = typeof Symbol == "function" && Symbol.toStringTag, i = n && e[Symbol.toStringTag] || e.constructor.name || "Object";
1004
+ return i;
1005
+ }
1006
+ }
1007
+ function xr(e) {
1008
+ try {
1009
+ return Fe(e), !1;
1010
+ } catch {
1011
+ return !0;
1012
+ }
1013
+ }
1014
+ function Fe(e) {
1015
+ return "" + e;
1016
+ }
1017
+ function Le(e) {
1018
+ if (xr(e))
1019
+ return E("The provided key is an unsupported type %s. This value must be coerced to a string before before using it here.", yr(e)), Fe(e);
1020
+ }
1021
+ var Ge = T.ReactCurrentOwner, wr = {
1022
+ key: !0,
1023
+ ref: !0,
1024
+ __self: !0,
1025
+ __source: !0
1026
+ }, Ve, He;
1027
+ function Cr(e) {
1028
+ if (te.call(e, "ref")) {
1029
+ var n = Object.getOwnPropertyDescriptor(e, "ref").get;
1030
+ if (n && n.isReactWarning)
1031
+ return !1;
1032
+ }
1033
+ return e.ref !== void 0;
1034
+ }
1035
+ function kr(e) {
1036
+ if (te.call(e, "key")) {
1037
+ var n = Object.getOwnPropertyDescriptor(e, "key").get;
1038
+ if (n && n.isReactWarning)
1039
+ return !1;
1040
+ }
1041
+ return e.key !== void 0;
1042
+ }
1043
+ function _r(e, n) {
1044
+ typeof e.ref == "string" && Ge.current;
1045
+ }
1046
+ function Er(e, n) {
1047
+ {
1048
+ var i = function() {
1049
+ Ve || (Ve = !0, E("%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", n));
1050
+ };
1051
+ i.isReactWarning = !0, Object.defineProperty(e, "key", {
1052
+ get: i,
1053
+ configurable: !0
1054
+ });
1055
+ }
1056
+ }
1057
+ function Rr(e, n) {
1058
+ {
1059
+ var i = function() {
1060
+ He || (He = !0, E("%s: `ref` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://reactjs.org/link/special-props)", n));
1061
+ };
1062
+ i.isReactWarning = !0, Object.defineProperty(e, "ref", {
1063
+ get: i,
1064
+ configurable: !0
1065
+ });
1066
+ }
1067
+ }
1068
+ var Sr = function(e, n, i, u, h, y, g) {
1069
+ var p = {
1070
+ // This tag allows us to uniquely identify this as a React Element
1071
+ $$typeof: t,
1072
+ // Built-in properties that belong on the element
1073
+ type: e,
1074
+ key: n,
1075
+ ref: i,
1076
+ props: g,
1077
+ // Record the component responsible for creating this element.
1078
+ _owner: y
1079
+ };
1080
+ return p._store = {}, Object.defineProperty(p._store, "validated", {
1081
+ configurable: !1,
1082
+ enumerable: !1,
1083
+ writable: !0,
1084
+ value: !1
1085
+ }), Object.defineProperty(p, "_self", {
1086
+ configurable: !1,
1087
+ enumerable: !1,
1088
+ writable: !1,
1089
+ value: u
1090
+ }), Object.defineProperty(p, "_source", {
1091
+ configurable: !1,
1092
+ enumerable: !1,
1093
+ writable: !1,
1094
+ value: h
1095
+ }), Object.freeze && (Object.freeze(p.props), Object.freeze(p)), p;
1096
+ };
1097
+ function jr(e, n, i, u, h) {
1098
+ {
1099
+ var y, g = {}, p = null, j = null;
1100
+ i !== void 0 && (Le(i), p = "" + i), kr(n) && (Le(n.key), p = "" + n.key), Cr(n) && (j = n.ref, _r(n, h));
1101
+ for (y in n)
1102
+ te.call(n, y) && !wr.hasOwnProperty(y) && (g[y] = n[y]);
1103
+ if (e && e.defaultProps) {
1104
+ var C = e.defaultProps;
1105
+ for (y in C)
1106
+ g[y] === void 0 && (g[y] = C[y]);
1107
+ }
1108
+ if (p || j) {
1109
+ var k = typeof e == "function" ? e.displayName || e.name || "Unknown" : e;
1110
+ p && Er(g, k), j && Rr(g, k);
1111
+ }
1112
+ return Sr(e, p, j, h, u, Ge.current, g);
1113
+ }
1114
+ }
1115
+ var _e = T.ReactCurrentOwner, De = T.ReactDebugCurrentFrame;
1116
+ function K(e) {
1117
+ if (e) {
1118
+ var n = e._owner, i = he(e.type, e._source, n ? n.type : null);
1119
+ De.setExtraStackFrame(i);
1120
+ } else
1121
+ De.setExtraStackFrame(null);
1122
+ }
1123
+ var Ee;
1124
+ Ee = !1;
1125
+ function Re(e) {
1126
+ return typeof e == "object" && e !== null && e.$$typeof === t;
1127
+ }
1128
+ function $e() {
1129
+ {
1130
+ if (_e.current) {
1131
+ var e = z(_e.current.type);
1132
+ if (e)
1133
+ return `
1134
+
1135
+ Check the render method of \`` + e + "`.";
1136
+ }
1137
+ return "";
1138
+ }
1139
+ }
1140
+ function Tr(e) {
1141
+ return "";
1142
+ }
1143
+ var Ue = {};
1144
+ function Ar(e) {
1145
+ {
1146
+ var n = $e();
1147
+ if (!n) {
1148
+ var i = typeof e == "string" ? e : e.displayName || e.name;
1149
+ i && (n = `
1150
+
1151
+ Check the top-level render call using <` + i + ">.");
1152
+ }
1153
+ return n;
1154
+ }
1155
+ }
1156
+ function Be(e, n) {
1157
+ {
1158
+ if (!e._store || e._store.validated || e.key != null)
1159
+ return;
1160
+ e._store.validated = !0;
1161
+ var i = Ar(n);
1162
+ if (Ue[i])
1163
+ return;
1164
+ Ue[i] = !0;
1165
+ var u = "";
1166
+ e && e._owner && e._owner !== _e.current && (u = " It was passed a child from " + z(e._owner.type) + "."), K(e), E('Each child in a list should have a unique "key" prop.%s%s See https://reactjs.org/link/warning-keys for more information.', i, u), K(null);
1167
+ }
1168
+ }
1169
+ function Ye(e, n) {
1170
+ {
1171
+ if (typeof e != "object")
1172
+ return;
1173
+ if (ke(e))
1174
+ for (var i = 0; i < e.length; i++) {
1175
+ var u = e[i];
1176
+ Re(u) && Be(u, n);
1177
+ }
1178
+ else if (Re(e))
1179
+ e._store && (e._store.validated = !0);
1180
+ else if (e) {
1181
+ var h = N(e);
1182
+ if (typeof h == "function" && h !== e.entries)
1183
+ for (var y = h.call(e), g; !(g = y.next()).done; )
1184
+ Re(g.value) && Be(g.value, n);
1185
+ }
1186
+ }
1187
+ }
1188
+ function Pr(e) {
1189
+ {
1190
+ var n = e.type;
1191
+ if (n == null || typeof n == "string")
1192
+ return;
1193
+ var i;
1194
+ if (typeof n == "function")
1195
+ i = n.propTypes;
1196
+ else if (typeof n == "object" && (n.$$typeof === f || // Note: Memo only checks outer props here.
1197
+ // Inner props are checked in the reconciler.
1198
+ n.$$typeof === w))
1199
+ i = n.propTypes;
1200
+ else
1201
+ return;
1202
+ if (i) {
1203
+ var u = z(n);
1204
+ hr(i, e.props, "prop", u, e);
1205
+ } else if (n.PropTypes !== void 0 && !Ee) {
1206
+ Ee = !0;
1207
+ var h = z(n);
1208
+ E("Component %s declared `PropTypes` instead of `propTypes`. Did you misspell the property assignment?", h || "Unknown");
1209
+ }
1210
+ typeof n.getDefaultProps == "function" && !n.getDefaultProps.isReactClassApproved && E("getDefaultProps is only used on classic React.createClass definitions. Use a static property named `defaultProps` instead.");
1211
+ }
1212
+ }
1213
+ function Or(e) {
1214
+ {
1215
+ for (var n = Object.keys(e.props), i = 0; i < n.length; i++) {
1216
+ var u = n[i];
1217
+ if (u !== "children" && u !== "key") {
1218
+ K(e), E("Invalid prop `%s` supplied to `React.Fragment`. React.Fragment can only have `key` and `children` props.", u), K(null);
1219
+ break;
1220
+ }
1221
+ }
1222
+ e.ref !== null && (K(e), E("Invalid attribute `ref` supplied to `React.Fragment`."), K(null));
1223
+ }
1224
+ }
1225
+ var Ze = {};
1226
+ function Je(e, n, i, u, h, y) {
1227
+ {
1228
+ var g = pe(e);
1229
+ if (!g) {
1230
+ var p = "";
1231
+ (e === void 0 || typeof e == "object" && e !== null && Object.keys(e).length === 0) && (p += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports.");
1232
+ var j = Tr();
1233
+ j ? p += j : p += $e();
1234
+ var C;
1235
+ e === null ? C = "null" : ke(e) ? C = "array" : e !== void 0 && e.$$typeof === t ? (C = "<" + (z(e.type) || "Unknown") + " />", p = " Did you accidentally export a JSX literal instead of a component?") : C = typeof e, E("React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s", C, p);
1236
+ }
1237
+ var k = jr(e, n, i, h, y);
1238
+ if (k == null)
1239
+ return k;
1240
+ if (g) {
1241
+ var M = n.children;
1242
+ if (M !== void 0)
1243
+ if (u)
1244
+ if (ke(M)) {
1245
+ for (var q = 0; q < M.length; q++)
1246
+ Ye(M[q], e);
1247
+ Object.freeze && Object.freeze(M);
1248
+ } else
1249
+ E("React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead.");
1250
+ else
1251
+ Ye(M, e);
1252
+ }
1253
+ if (te.call(n, "key")) {
1254
+ var U = z(e), A = Object.keys(n).filter(function(Fr) {
1255
+ return Fr !== "key";
1256
+ }), Se = A.length > 0 ? "{key: someKey, " + A.join(": ..., ") + ": ...}" : "{key: someKey}";
1257
+ if (!Ze[U + Se]) {
1258
+ var Nr = A.length > 0 ? "{" + A.join(": ..., ") + ": ...}" : "{}";
1259
+ E(`A props object containing a "key" prop is being spread into JSX:
1260
+ let props = %s;
1261
+ <%s {...props} />
1262
+ React keys must be passed directly to JSX without using spread:
1263
+ let props = %s;
1264
+ <%s key={someKey} {...props} />`, Se, U, Nr, U), Ze[U + Se] = !0;
1265
+ }
1266
+ }
1267
+ return e === o ? Or(k) : Pr(k), k;
1268
+ }
1269
+ }
1270
+ function Ir(e, n, i) {
1271
+ return Je(e, n, i, !0);
1272
+ }
1273
+ function Mr(e, n, i) {
1274
+ return Je(e, n, i, !1);
1275
+ }
1276
+ var zr = Mr, Wr = Ir;
1277
+ ne.Fragment = o, ne.jsx = zr, ne.jsxs = Wr;
1278
+ }()), ne;
1279
+ }
1280
+ process.env.NODE_ENV === "production" ? Ae.exports = Hr() : Ae.exports = Dr();
1281
+ var b = Ae.exports;
1282
+ const Mt = () => /* @__PURE__ */ b.jsx("div", { className: "bg-red-800 text-white p-2", children: "Hello world" });
1283
+ function $r() {
1284
+ for (var r = 0, t, a, o = ""; r < arguments.length; )
1285
+ (t = arguments[r++]) && (a = or(t)) && (o && (o += " "), o += a);
1286
+ return o;
1287
+ }
1288
+ function or(r) {
1289
+ if (typeof r == "string")
1290
+ return r;
1291
+ for (var t, a = "", o = 0; o < r.length; o++)
1292
+ r[o] && (t = or(r[o])) && (a && (a += " "), a += t);
1293
+ return a;
1294
+ }
1295
+ var Oe = "-";
1296
+ function Ur(r) {
1297
+ var t = Yr(r);
1298
+ function a(s) {
1299
+ var d = s.split(Oe);
1300
+ return d[0] === "" && d.length !== 1 && d.shift(), nr(d, t) || Br(s);
1301
+ }
1302
+ function o(s) {
1303
+ return r.conflictingClassGroups[s] || [];
1304
+ }
1305
+ return {
1306
+ getClassGroupId: a,
1307
+ getConflictingClassGroupIds: o
1308
+ };
1309
+ }
1310
+ function nr(r, t) {
1311
+ var c;
1312
+ if (r.length === 0)
1313
+ return t.classGroupId;
1314
+ var a = r[0], o = t.nextPart.get(a), s = o ? nr(r.slice(1), o) : void 0;
1315
+ if (s)
1316
+ return s;
1317
+ if (t.validators.length !== 0) {
1318
+ var d = r.join(Oe);
1319
+ return (c = t.validators.find(function(l) {
1320
+ var f = l.validator;
1321
+ return f(d);
1322
+ })) == null ? void 0 : c.classGroupId;
1323
+ }
1324
+ }
1325
+ var Xe = /^\[(.+)\]$/;
1326
+ function Br(r) {
1327
+ if (Xe.test(r)) {
1328
+ var t = Xe.exec(r)[1], a = t == null ? void 0 : t.substring(0, t.indexOf(":"));
1329
+ if (a)
1330
+ return "arbitrary.." + a;
1331
+ }
1332
+ }
1333
+ function Yr(r) {
1334
+ var t = r.theme, a = r.prefix, o = {
1335
+ nextPart: /* @__PURE__ */ new Map(),
1336
+ validators: []
1337
+ }, s = Jr(Object.entries(r.classGroups), a);
1338
+ return s.forEach(function(d) {
1339
+ var c = d[0], l = d[1];
1340
+ Pe(l, o, c, t);
1341
+ }), o;
1342
+ }
1343
+ function Pe(r, t, a, o) {
1344
+ r.forEach(function(s) {
1345
+ if (typeof s == "string") {
1346
+ var d = s === "" ? t : Qe(t, s);
1347
+ d.classGroupId = a;
1348
+ return;
1349
+ }
1350
+ if (typeof s == "function") {
1351
+ if (Zr(s)) {
1352
+ Pe(s(o), t, a, o);
1353
+ return;
1354
+ }
1355
+ t.validators.push({
1356
+ validator: s,
1357
+ classGroupId: a
1358
+ });
1359
+ return;
1360
+ }
1361
+ Object.entries(s).forEach(function(c) {
1362
+ var l = c[0], f = c[1];
1363
+ Pe(f, Qe(t, l), a, o);
1364
+ });
1365
+ });
1366
+ }
1367
+ function Qe(r, t) {
1368
+ var a = r;
1369
+ return t.split(Oe).forEach(function(o) {
1370
+ a.nextPart.has(o) || a.nextPart.set(o, {
1371
+ nextPart: /* @__PURE__ */ new Map(),
1372
+ validators: []
1373
+ }), a = a.nextPart.get(o);
1374
+ }), a;
1375
+ }
1376
+ function Zr(r) {
1377
+ return r.isThemeGetter;
1378
+ }
1379
+ function Jr(r, t) {
1380
+ return t ? r.map(function(a) {
1381
+ var o = a[0], s = a[1], d = s.map(function(c) {
1382
+ return typeof c == "string" ? t + c : typeof c == "object" ? Object.fromEntries(Object.entries(c).map(function(l) {
1383
+ var f = l[0], m = l[1];
1384
+ return [t + f, m];
1385
+ })) : c;
1386
+ });
1387
+ return [o, d];
1388
+ }) : r;
1389
+ }
1390
+ function Kr(r) {
1391
+ if (r < 1)
1392
+ return {
1393
+ get: function() {
1394
+ },
1395
+ set: function() {
1396
+ }
1397
+ };
1398
+ var t = 0, a = /* @__PURE__ */ new Map(), o = /* @__PURE__ */ new Map();
1399
+ function s(d, c) {
1400
+ a.set(d, c), t++, t > r && (t = 0, o = a, a = /* @__PURE__ */ new Map());
1401
+ }
1402
+ return {
1403
+ get: function(c) {
1404
+ var l = a.get(c);
1405
+ if (l !== void 0)
1406
+ return l;
1407
+ if ((l = o.get(c)) !== void 0)
1408
+ return s(c, l), l;
1409
+ },
1410
+ set: function(c, l) {
1411
+ a.has(c) ? a.set(c, l) : s(c, l);
1412
+ }
1413
+ };
1414
+ }
1415
+ var ar = "!";
1416
+ function qr(r) {
1417
+ var t = r.separator || ":";
1418
+ return function(o) {
1419
+ for (var s = 0, d = [], c = 0, l = 0; l < o.length; l++) {
1420
+ var f = o[l];
1421
+ s === 0 && f === t[0] && (t.length === 1 || o.slice(l, l + t.length) === t) && (d.push(o.slice(c, l)), c = l + t.length), f === "[" ? s++ : f === "]" && s--;
1422
+ }
1423
+ var m = d.length === 0 ? o : o.substring(c), v = m.startsWith(ar), w = v ? m.substring(1) : m;
1424
+ return {
1425
+ modifiers: d,
1426
+ hasImportantModifier: v,
1427
+ baseClassName: w
1428
+ };
1429
+ };
1430
+ }
1431
+ function Xr(r) {
1432
+ if (r.length <= 1)
1433
+ return r;
1434
+ var t = [], a = [];
1435
+ return r.forEach(function(o) {
1436
+ var s = o[0] === "[";
1437
+ s ? (t.push.apply(t, a.sort().concat([o])), a = []) : a.push(o);
1438
+ }), t.push.apply(t, a.sort()), t;
1439
+ }
1440
+ function Qr(r) {
1441
+ return {
1442
+ cache: Kr(r.cacheSize),
1443
+ splitModifiers: qr(r),
1444
+ ...Ur(r)
1445
+ };
1446
+ }
1447
+ var et = /\s+/;
1448
+ function rt(r, t) {
1449
+ var a = t.splitModifiers, o = t.getClassGroupId, s = t.getConflictingClassGroupIds, d = /* @__PURE__ */ new Set();
1450
+ return r.trim().split(et).map(function(c) {
1451
+ var l = a(c), f = l.modifiers, m = l.hasImportantModifier, v = l.baseClassName, w = o(v);
1452
+ if (!w)
1453
+ return {
1454
+ isTailwindClass: !1,
1455
+ originalClassName: c
1456
+ };
1457
+ var R = Xr(f).join(":"), P = m ? R + ar : R;
1458
+ return {
1459
+ isTailwindClass: !0,
1460
+ modifierId: P,
1461
+ classGroupId: w,
1462
+ originalClassName: c
1463
+ };
1464
+ }).reverse().filter(function(c) {
1465
+ if (!c.isTailwindClass)
1466
+ return !0;
1467
+ var l = c.modifierId, f = c.classGroupId, m = l + f;
1468
+ return d.has(m) ? !1 : (d.add(m), s(f).forEach(function(v) {
1469
+ return d.add(l + v);
1470
+ }), !0);
1471
+ }).reverse().map(function(c) {
1472
+ return c.originalClassName;
1473
+ }).join(" ");
1474
+ }
1475
+ function tt() {
1476
+ for (var r = arguments.length, t = new Array(r), a = 0; a < r; a++)
1477
+ t[a] = arguments[a];
1478
+ var o, s, d, c = l;
1479
+ function l(m) {
1480
+ var v = t[0], w = t.slice(1), R = w.reduce(function(P, O) {
1481
+ return O(P);
1482
+ }, v());
1483
+ return o = Qr(R), s = o.cache.get, d = o.cache.set, c = f, f(m);
1484
+ }
1485
+ function f(m) {
1486
+ var v = s(m);
1487
+ if (v)
1488
+ return v;
1489
+ var w = rt(m, o);
1490
+ return d(m, w), w;
1491
+ }
1492
+ return function() {
1493
+ return c($r.apply(null, arguments));
1494
+ };
1495
+ }
1496
+ function x(r) {
1497
+ var t = function(o) {
1498
+ return o[r] || [];
1499
+ };
1500
+ return t.isThemeGetter = !0, t;
1501
+ }
1502
+ var ir = /^\[(?:([a-z-]+):)?(.+)\]$/i, ot = /^\d+\/\d+$/, nt = /* @__PURE__ */ new Set(["px", "full", "screen"]), at = /^(\d+(\.\d+)?)?(xs|sm|md|lg|xl)$/, it = /\d+(%|px|r?em|[sdl]?v([hwib]|min|max)|pt|pc|in|cm|mm|cap|ch|ex|r?lh)/, st = /^-?((\d+)?\.?(\d+)[a-z]+|0)_-?((\d+)?\.?(\d+)[a-z]+|0)/;
1503
+ function W(r) {
1504
+ return se(r) || nt.has(r) || ot.test(r) || B(r);
1505
+ }
1506
+ function B(r) {
1507
+ return Y(r, "length", ft);
1508
+ }
1509
+ function lt(r) {
1510
+ return Y(r, "size", sr);
1511
+ }
1512
+ function ct(r) {
1513
+ return Y(r, "position", sr);
1514
+ }
1515
+ function dt(r) {
1516
+ return Y(r, "url", pt);
1517
+ }
1518
+ function je(r) {
1519
+ return Y(r, "number", se);
1520
+ }
1521
+ function se(r) {
1522
+ return !Number.isNaN(Number(r));
1523
+ }
1524
+ function ae(r) {
1525
+ return er(r) || Y(r, "number", er);
1526
+ }
1527
+ function _(r) {
1528
+ return ir.test(r);
1529
+ }
1530
+ function ie() {
1531
+ return !0;
1532
+ }
1533
+ function H(r) {
1534
+ return at.test(r);
1535
+ }
1536
+ function ut(r) {
1537
+ return Y(r, "", gt);
1538
+ }
1539
+ function Y(r, t, a) {
1540
+ var o = ir.exec(r);
1541
+ return o ? o[1] ? o[1] === t : a(o[2]) : !1;
1542
+ }
1543
+ function ft(r) {
1544
+ return it.test(r);
1545
+ }
1546
+ function sr() {
1547
+ return !1;
1548
+ }
1549
+ function pt(r) {
1550
+ return r.startsWith("url(");
1551
+ }
1552
+ function er(r) {
1553
+ return Number.isInteger(Number(r));
1554
+ }
1555
+ function gt(r) {
1556
+ return st.test(r);
1557
+ }
1558
+ function bt() {
1559
+ var r = x("colors"), t = x("spacing"), a = x("blur"), o = x("brightness"), s = x("borderColor"), d = x("borderRadius"), c = x("borderSpacing"), l = x("borderWidth"), f = x("contrast"), m = x("grayscale"), v = x("hueRotate"), w = x("invert"), R = x("gap"), P = x("gradientColorStops"), O = x("inset"), F = x("margin"), N = x("opacity"), T = x("padding"), E = x("saturate"), Q = x("scale"), ce = x("sepia"), de = x("skew"), ue = x("space"), fe = x("translate"), ee = function() {
1560
+ return ["auto", "contain", "none"];
1561
+ }, Z = function() {
1562
+ return ["auto", "hidden", "clip", "visible", "scroll"];
1563
+ }, pe = function() {
1564
+ return ["auto", t];
1565
+ }, ge = function() {
1566
+ return ["", W];
1567
+ }, D = function() {
1568
+ return ["auto", se, _];
1569
+ }, z = function() {
1570
+ return ["bottom", "center", "left", "left-bottom", "left-top", "right", "right-bottom", "right-top", "top"];
1571
+ }, I = function() {
1572
+ return ["solid", "dashed", "dotted", "double", "none"];
1573
+ }, L = function() {
1574
+ return ["normal", "multiply", "screen", "overlay", "darken", "lighten", "color-dodge", "color-burn", "hard-light", "soft-light", "difference", "exclusion", "hue", "saturation", "color", "luminosity", "plus-lighter"];
1575
+ }, J = function() {
1576
+ return ["start", "end", "center", "between", "around", "evenly"];
1577
+ }, G = function() {
1578
+ return ["", "0", _];
1579
+ }, re = function() {
1580
+ return ["auto", "avoid", "all", "avoid-page", "page", "left", "right", "column"];
1581
+ }, V = function() {
1582
+ return [se, je];
1583
+ }, $ = function() {
1584
+ return [se, _];
1585
+ };
1586
+ return {
1587
+ cacheSize: 500,
1588
+ theme: {
1589
+ colors: [ie],
1590
+ spacing: [W],
1591
+ blur: ["none", "", H, B],
1592
+ brightness: V(),
1593
+ borderColor: [r],
1594
+ borderRadius: ["none", "", "full", H, B],
1595
+ borderSpacing: [t],
1596
+ borderWidth: ge(),
1597
+ contrast: V(),
1598
+ grayscale: G(),
1599
+ hueRotate: $(),
1600
+ invert: G(),
1601
+ gap: [t],
1602
+ gradientColorStops: [r],
1603
+ inset: pe(),
1604
+ margin: pe(),
1605
+ opacity: V(),
1606
+ padding: [t],
1607
+ saturate: V(),
1608
+ scale: V(),
1609
+ sepia: G(),
1610
+ skew: $(),
1611
+ space: [t],
1612
+ translate: [t]
1613
+ },
1614
+ classGroups: {
1615
+ // Layout
1616
+ /**
1617
+ * Aspect Ratio
1618
+ * @see https://tailwindcss.com/docs/aspect-ratio
1619
+ */
1620
+ aspect: [{
1621
+ aspect: ["auto", "square", "video", _]
1622
+ }],
1623
+ /**
1624
+ * Container
1625
+ * @see https://tailwindcss.com/docs/container
1626
+ */
1627
+ container: ["container"],
1628
+ /**
1629
+ * Columns
1630
+ * @see https://tailwindcss.com/docs/columns
1631
+ */
1632
+ columns: [{
1633
+ columns: [H]
1634
+ }],
1635
+ /**
1636
+ * Break After
1637
+ * @see https://tailwindcss.com/docs/break-after
1638
+ */
1639
+ "break-after": [{
1640
+ "break-after": re()
1641
+ }],
1642
+ /**
1643
+ * Break Before
1644
+ * @see https://tailwindcss.com/docs/break-before
1645
+ */
1646
+ "break-before": [{
1647
+ "break-before": re()
1648
+ }],
1649
+ /**
1650
+ * Break Inside
1651
+ * @see https://tailwindcss.com/docs/break-inside
1652
+ */
1653
+ "break-inside": [{
1654
+ "break-inside": ["auto", "avoid", "avoid-page", "avoid-column"]
1655
+ }],
1656
+ /**
1657
+ * Box Decoration Break
1658
+ * @see https://tailwindcss.com/docs/box-decoration-break
1659
+ */
1660
+ "box-decoration": [{
1661
+ "box-decoration": ["slice", "clone"]
1662
+ }],
1663
+ /**
1664
+ * Box Sizing
1665
+ * @see https://tailwindcss.com/docs/box-sizing
1666
+ */
1667
+ box: [{
1668
+ box: ["border", "content"]
1669
+ }],
1670
+ /**
1671
+ * Display
1672
+ * @see https://tailwindcss.com/docs/display
1673
+ */
1674
+ 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"],
1675
+ /**
1676
+ * Floats
1677
+ * @see https://tailwindcss.com/docs/float
1678
+ */
1679
+ float: [{
1680
+ float: ["right", "left", "none"]
1681
+ }],
1682
+ /**
1683
+ * Clear
1684
+ * @see https://tailwindcss.com/docs/clear
1685
+ */
1686
+ clear: [{
1687
+ clear: ["left", "right", "both", "none"]
1688
+ }],
1689
+ /**
1690
+ * Isolation
1691
+ * @see https://tailwindcss.com/docs/isolation
1692
+ */
1693
+ isolation: ["isolate", "isolation-auto"],
1694
+ /**
1695
+ * Object Fit
1696
+ * @see https://tailwindcss.com/docs/object-fit
1697
+ */
1698
+ "object-fit": [{
1699
+ object: ["contain", "cover", "fill", "none", "scale-down"]
1700
+ }],
1701
+ /**
1702
+ * Object Position
1703
+ * @see https://tailwindcss.com/docs/object-position
1704
+ */
1705
+ "object-position": [{
1706
+ object: [].concat(z(), [_])
1707
+ }],
1708
+ /**
1709
+ * Overflow
1710
+ * @see https://tailwindcss.com/docs/overflow
1711
+ */
1712
+ overflow: [{
1713
+ overflow: Z()
1714
+ }],
1715
+ /**
1716
+ * Overflow X
1717
+ * @see https://tailwindcss.com/docs/overflow
1718
+ */
1719
+ "overflow-x": [{
1720
+ "overflow-x": Z()
1721
+ }],
1722
+ /**
1723
+ * Overflow Y
1724
+ * @see https://tailwindcss.com/docs/overflow
1725
+ */
1726
+ "overflow-y": [{
1727
+ "overflow-y": Z()
1728
+ }],
1729
+ /**
1730
+ * Overscroll Behavior
1731
+ * @see https://tailwindcss.com/docs/overscroll-behavior
1732
+ */
1733
+ overscroll: [{
1734
+ overscroll: ee()
1735
+ }],
1736
+ /**
1737
+ * Overscroll Behavior X
1738
+ * @see https://tailwindcss.com/docs/overscroll-behavior
1739
+ */
1740
+ "overscroll-x": [{
1741
+ "overscroll-x": ee()
1742
+ }],
1743
+ /**
1744
+ * Overscroll Behavior Y
1745
+ * @see https://tailwindcss.com/docs/overscroll-behavior
1746
+ */
1747
+ "overscroll-y": [{
1748
+ "overscroll-y": ee()
1749
+ }],
1750
+ /**
1751
+ * Position
1752
+ * @see https://tailwindcss.com/docs/position
1753
+ */
1754
+ position: ["static", "fixed", "absolute", "relative", "sticky"],
1755
+ /**
1756
+ * Top / Right / Bottom / Left
1757
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1758
+ */
1759
+ inset: [{
1760
+ inset: [O]
1761
+ }],
1762
+ /**
1763
+ * Right / Left
1764
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1765
+ */
1766
+ "inset-x": [{
1767
+ "inset-x": [O]
1768
+ }],
1769
+ /**
1770
+ * Top / Bottom
1771
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1772
+ */
1773
+ "inset-y": [{
1774
+ "inset-y": [O]
1775
+ }],
1776
+ /**
1777
+ * Top
1778
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1779
+ */
1780
+ top: [{
1781
+ top: [O]
1782
+ }],
1783
+ /**
1784
+ * Right
1785
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1786
+ */
1787
+ right: [{
1788
+ right: [O]
1789
+ }],
1790
+ /**
1791
+ * Bottom
1792
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1793
+ */
1794
+ bottom: [{
1795
+ bottom: [O]
1796
+ }],
1797
+ /**
1798
+ * Left
1799
+ * @see https://tailwindcss.com/docs/top-right-bottom-left
1800
+ */
1801
+ left: [{
1802
+ left: [O]
1803
+ }],
1804
+ /**
1805
+ * Visibility
1806
+ * @see https://tailwindcss.com/docs/visibility
1807
+ */
1808
+ visibility: ["visible", "invisible", "collapse"],
1809
+ /**
1810
+ * Z-Index
1811
+ * @see https://tailwindcss.com/docs/z-index
1812
+ */
1813
+ z: [{
1814
+ z: ["auto", ae]
1815
+ }],
1816
+ // Flexbox and Grid
1817
+ /**
1818
+ * Flex Basis
1819
+ * @see https://tailwindcss.com/docs/flex-basis
1820
+ */
1821
+ basis: [{
1822
+ basis: [t]
1823
+ }],
1824
+ /**
1825
+ * Flex Direction
1826
+ * @see https://tailwindcss.com/docs/flex-direction
1827
+ */
1828
+ "flex-direction": [{
1829
+ flex: ["row", "row-reverse", "col", "col-reverse"]
1830
+ }],
1831
+ /**
1832
+ * Flex Wrap
1833
+ * @see https://tailwindcss.com/docs/flex-wrap
1834
+ */
1835
+ "flex-wrap": [{
1836
+ flex: ["wrap", "wrap-reverse", "nowrap"]
1837
+ }],
1838
+ /**
1839
+ * Flex
1840
+ * @see https://tailwindcss.com/docs/flex
1841
+ */
1842
+ flex: [{
1843
+ flex: ["1", "auto", "initial", "none", _]
1844
+ }],
1845
+ /**
1846
+ * Flex Grow
1847
+ * @see https://tailwindcss.com/docs/flex-grow
1848
+ */
1849
+ grow: [{
1850
+ grow: G()
1851
+ }],
1852
+ /**
1853
+ * Flex Shrink
1854
+ * @see https://tailwindcss.com/docs/flex-shrink
1855
+ */
1856
+ shrink: [{
1857
+ shrink: G()
1858
+ }],
1859
+ /**
1860
+ * Order
1861
+ * @see https://tailwindcss.com/docs/order
1862
+ */
1863
+ order: [{
1864
+ order: ["first", "last", "none", ae]
1865
+ }],
1866
+ /**
1867
+ * Grid Template Columns
1868
+ * @see https://tailwindcss.com/docs/grid-template-columns
1869
+ */
1870
+ "grid-cols": [{
1871
+ "grid-cols": [ie]
1872
+ }],
1873
+ /**
1874
+ * Grid Column Start / End
1875
+ * @see https://tailwindcss.com/docs/grid-column
1876
+ */
1877
+ "col-start-end": [{
1878
+ col: ["auto", {
1879
+ span: [ae]
1880
+ }, _]
1881
+ }],
1882
+ /**
1883
+ * Grid Column Start
1884
+ * @see https://tailwindcss.com/docs/grid-column
1885
+ */
1886
+ "col-start": [{
1887
+ "col-start": D()
1888
+ }],
1889
+ /**
1890
+ * Grid Column End
1891
+ * @see https://tailwindcss.com/docs/grid-column
1892
+ */
1893
+ "col-end": [{
1894
+ "col-end": D()
1895
+ }],
1896
+ /**
1897
+ * Grid Template Rows
1898
+ * @see https://tailwindcss.com/docs/grid-template-rows
1899
+ */
1900
+ "grid-rows": [{
1901
+ "grid-rows": [ie]
1902
+ }],
1903
+ /**
1904
+ * Grid Row Start / End
1905
+ * @see https://tailwindcss.com/docs/grid-row
1906
+ */
1907
+ "row-start-end": [{
1908
+ row: ["auto", {
1909
+ span: [ae]
1910
+ }, _]
1911
+ }],
1912
+ /**
1913
+ * Grid Row Start
1914
+ * @see https://tailwindcss.com/docs/grid-row
1915
+ */
1916
+ "row-start": [{
1917
+ "row-start": D()
1918
+ }],
1919
+ /**
1920
+ * Grid Row End
1921
+ * @see https://tailwindcss.com/docs/grid-row
1922
+ */
1923
+ "row-end": [{
1924
+ "row-end": D()
1925
+ }],
1926
+ /**
1927
+ * Grid Auto Flow
1928
+ * @see https://tailwindcss.com/docs/grid-auto-flow
1929
+ */
1930
+ "grid-flow": [{
1931
+ "grid-flow": ["row", "col", "dense", "row-dense", "col-dense"]
1932
+ }],
1933
+ /**
1934
+ * Grid Auto Columns
1935
+ * @see https://tailwindcss.com/docs/grid-auto-columns
1936
+ */
1937
+ "auto-cols": [{
1938
+ "auto-cols": ["auto", "min", "max", "fr", _]
1939
+ }],
1940
+ /**
1941
+ * Grid Auto Rows
1942
+ * @see https://tailwindcss.com/docs/grid-auto-rows
1943
+ */
1944
+ "auto-rows": [{
1945
+ "auto-rows": ["auto", "min", "max", "fr", _]
1946
+ }],
1947
+ /**
1948
+ * Gap
1949
+ * @see https://tailwindcss.com/docs/gap
1950
+ */
1951
+ gap: [{
1952
+ gap: [R]
1953
+ }],
1954
+ /**
1955
+ * Gap X
1956
+ * @see https://tailwindcss.com/docs/gap
1957
+ */
1958
+ "gap-x": [{
1959
+ "gap-x": [R]
1960
+ }],
1961
+ /**
1962
+ * Gap Y
1963
+ * @see https://tailwindcss.com/docs/gap
1964
+ */
1965
+ "gap-y": [{
1966
+ "gap-y": [R]
1967
+ }],
1968
+ /**
1969
+ * Justify Content
1970
+ * @see https://tailwindcss.com/docs/justify-content
1971
+ */
1972
+ "justify-content": [{
1973
+ justify: J()
1974
+ }],
1975
+ /**
1976
+ * Justify Items
1977
+ * @see https://tailwindcss.com/docs/justify-items
1978
+ */
1979
+ "justify-items": [{
1980
+ "justify-items": ["start", "end", "center", "stretch"]
1981
+ }],
1982
+ /**
1983
+ * Justify Self
1984
+ * @see https://tailwindcss.com/docs/justify-self
1985
+ */
1986
+ "justify-self": [{
1987
+ "justify-self": ["auto", "start", "end", "center", "stretch"]
1988
+ }],
1989
+ /**
1990
+ * Align Content
1991
+ * @see https://tailwindcss.com/docs/align-content
1992
+ */
1993
+ "align-content": [{
1994
+ content: [].concat(J(), ["baseline"])
1995
+ }],
1996
+ /**
1997
+ * Align Items
1998
+ * @see https://tailwindcss.com/docs/align-items
1999
+ */
2000
+ "align-items": [{
2001
+ items: ["start", "end", "center", "baseline", "stretch"]
2002
+ }],
2003
+ /**
2004
+ * Align Self
2005
+ * @see https://tailwindcss.com/docs/align-self
2006
+ */
2007
+ "align-self": [{
2008
+ self: ["auto", "start", "end", "center", "stretch", "baseline"]
2009
+ }],
2010
+ /**
2011
+ * Place Content
2012
+ * @see https://tailwindcss.com/docs/place-content
2013
+ */
2014
+ "place-content": [{
2015
+ "place-content": [].concat(J(), ["baseline", "stretch"])
2016
+ }],
2017
+ /**
2018
+ * Place Items
2019
+ * @see https://tailwindcss.com/docs/place-items
2020
+ */
2021
+ "place-items": [{
2022
+ "place-items": ["start", "end", "center", "baseline", "stretch"]
2023
+ }],
2024
+ /**
2025
+ * Place Self
2026
+ * @see https://tailwindcss.com/docs/place-self
2027
+ */
2028
+ "place-self": [{
2029
+ "place-self": ["auto", "start", "end", "center", "stretch"]
2030
+ }],
2031
+ // Spacing
2032
+ /**
2033
+ * Padding
2034
+ * @see https://tailwindcss.com/docs/padding
2035
+ */
2036
+ p: [{
2037
+ p: [T]
2038
+ }],
2039
+ /**
2040
+ * Padding X
2041
+ * @see https://tailwindcss.com/docs/padding
2042
+ */
2043
+ px: [{
2044
+ px: [T]
2045
+ }],
2046
+ /**
2047
+ * Padding Y
2048
+ * @see https://tailwindcss.com/docs/padding
2049
+ */
2050
+ py: [{
2051
+ py: [T]
2052
+ }],
2053
+ /**
2054
+ * Padding Top
2055
+ * @see https://tailwindcss.com/docs/padding
2056
+ */
2057
+ pt: [{
2058
+ pt: [T]
2059
+ }],
2060
+ /**
2061
+ * Padding Right
2062
+ * @see https://tailwindcss.com/docs/padding
2063
+ */
2064
+ pr: [{
2065
+ pr: [T]
2066
+ }],
2067
+ /**
2068
+ * Padding Bottom
2069
+ * @see https://tailwindcss.com/docs/padding
2070
+ */
2071
+ pb: [{
2072
+ pb: [T]
2073
+ }],
2074
+ /**
2075
+ * Padding Left
2076
+ * @see https://tailwindcss.com/docs/padding
2077
+ */
2078
+ pl: [{
2079
+ pl: [T]
2080
+ }],
2081
+ /**
2082
+ * Margin
2083
+ * @see https://tailwindcss.com/docs/margin
2084
+ */
2085
+ m: [{
2086
+ m: [F]
2087
+ }],
2088
+ /**
2089
+ * Margin X
2090
+ * @see https://tailwindcss.com/docs/margin
2091
+ */
2092
+ mx: [{
2093
+ mx: [F]
2094
+ }],
2095
+ /**
2096
+ * Margin Y
2097
+ * @see https://tailwindcss.com/docs/margin
2098
+ */
2099
+ my: [{
2100
+ my: [F]
2101
+ }],
2102
+ /**
2103
+ * Margin Top
2104
+ * @see https://tailwindcss.com/docs/margin
2105
+ */
2106
+ mt: [{
2107
+ mt: [F]
2108
+ }],
2109
+ /**
2110
+ * Margin Right
2111
+ * @see https://tailwindcss.com/docs/margin
2112
+ */
2113
+ mr: [{
2114
+ mr: [F]
2115
+ }],
2116
+ /**
2117
+ * Margin Bottom
2118
+ * @see https://tailwindcss.com/docs/margin
2119
+ */
2120
+ mb: [{
2121
+ mb: [F]
2122
+ }],
2123
+ /**
2124
+ * Margin Left
2125
+ * @see https://tailwindcss.com/docs/margin
2126
+ */
2127
+ ml: [{
2128
+ ml: [F]
2129
+ }],
2130
+ /**
2131
+ * Space Between X
2132
+ * @see https://tailwindcss.com/docs/space
2133
+ */
2134
+ "space-x": [{
2135
+ "space-x": [ue]
2136
+ }],
2137
+ /**
2138
+ * Space Between X Reverse
2139
+ * @see https://tailwindcss.com/docs/space
2140
+ */
2141
+ "space-x-reverse": ["space-x-reverse"],
2142
+ /**
2143
+ * Space Between Y
2144
+ * @see https://tailwindcss.com/docs/space
2145
+ */
2146
+ "space-y": [{
2147
+ "space-y": [ue]
2148
+ }],
2149
+ /**
2150
+ * Space Between Y Reverse
2151
+ * @see https://tailwindcss.com/docs/space
2152
+ */
2153
+ "space-y-reverse": ["space-y-reverse"],
2154
+ // Sizing
2155
+ /**
2156
+ * Width
2157
+ * @see https://tailwindcss.com/docs/width
2158
+ */
2159
+ w: [{
2160
+ w: ["auto", "min", "max", "fit", t]
2161
+ }],
2162
+ /**
2163
+ * Min-Width
2164
+ * @see https://tailwindcss.com/docs/min-width
2165
+ */
2166
+ "min-w": [{
2167
+ "min-w": ["min", "max", "fit", W]
2168
+ }],
2169
+ /**
2170
+ * Max-Width
2171
+ * @see https://tailwindcss.com/docs/max-width
2172
+ */
2173
+ "max-w": [{
2174
+ "max-w": ["0", "none", "full", "min", "max", "fit", "prose", {
2175
+ screen: [H]
2176
+ }, H, B]
2177
+ }],
2178
+ /**
2179
+ * Height
2180
+ * @see https://tailwindcss.com/docs/height
2181
+ */
2182
+ h: [{
2183
+ h: [t, "auto", "min", "max", "fit"]
2184
+ }],
2185
+ /**
2186
+ * Min-Height
2187
+ * @see https://tailwindcss.com/docs/min-height
2188
+ */
2189
+ "min-h": [{
2190
+ "min-h": ["min", "max", "fit", W]
2191
+ }],
2192
+ /**
2193
+ * Max-Height
2194
+ * @see https://tailwindcss.com/docs/max-height
2195
+ */
2196
+ "max-h": [{
2197
+ "max-h": [t, "min", "max", "fit"]
2198
+ }],
2199
+ // Typography
2200
+ /**
2201
+ * Font Size
2202
+ * @see https://tailwindcss.com/docs/font-size
2203
+ */
2204
+ "font-size": [{
2205
+ text: ["base", H, B]
2206
+ }],
2207
+ /**
2208
+ * Font Smoothing
2209
+ * @see https://tailwindcss.com/docs/font-smoothing
2210
+ */
2211
+ "font-smoothing": ["antialiased", "subpixel-antialiased"],
2212
+ /**
2213
+ * Font Style
2214
+ * @see https://tailwindcss.com/docs/font-style
2215
+ */
2216
+ "font-style": ["italic", "not-italic"],
2217
+ /**
2218
+ * Font Weight
2219
+ * @see https://tailwindcss.com/docs/font-weight
2220
+ */
2221
+ "font-weight": [{
2222
+ font: ["thin", "extralight", "light", "normal", "medium", "semibold", "bold", "extrabold", "black", je]
2223
+ }],
2224
+ /**
2225
+ * Font Family
2226
+ * @see https://tailwindcss.com/docs/font-family
2227
+ */
2228
+ "font-family": [{
2229
+ font: [ie]
2230
+ }],
2231
+ /**
2232
+ * Font Variant Numeric
2233
+ * @see https://tailwindcss.com/docs/font-variant-numeric
2234
+ */
2235
+ "fvn-normal": ["normal-nums"],
2236
+ /**
2237
+ * Font Variant Numeric
2238
+ * @see https://tailwindcss.com/docs/font-variant-numeric
2239
+ */
2240
+ "fvn-ordinal": ["ordinal"],
2241
+ /**
2242
+ * Font Variant Numeric
2243
+ * @see https://tailwindcss.com/docs/font-variant-numeric
2244
+ */
2245
+ "fvn-slashed-zero": ["slashed-zero"],
2246
+ /**
2247
+ * Font Variant Numeric
2248
+ * @see https://tailwindcss.com/docs/font-variant-numeric
2249
+ */
2250
+ "fvn-figure": ["lining-nums", "oldstyle-nums"],
2251
+ /**
2252
+ * Font Variant Numeric
2253
+ * @see https://tailwindcss.com/docs/font-variant-numeric
2254
+ */
2255
+ "fvn-spacing": ["proportional-nums", "tabular-nums"],
2256
+ /**
2257
+ * Font Variant Numeric
2258
+ * @see https://tailwindcss.com/docs/font-variant-numeric
2259
+ */
2260
+ "fvn-fraction": ["diagonal-fractions", "stacked-fractons"],
2261
+ /**
2262
+ * Letter Spacing
2263
+ * @see https://tailwindcss.com/docs/letter-spacing
2264
+ */
2265
+ tracking: [{
2266
+ tracking: ["tighter", "tight", "normal", "wide", "wider", "widest", B]
2267
+ }],
2268
+ /**
2269
+ * Line Height
2270
+ * @see https://tailwindcss.com/docs/line-height
2271
+ */
2272
+ leading: [{
2273
+ leading: ["none", "tight", "snug", "normal", "relaxed", "loose", W]
2274
+ }],
2275
+ /**
2276
+ * List Style Type
2277
+ * @see https://tailwindcss.com/docs/list-style-type
2278
+ */
2279
+ "list-style-type": [{
2280
+ list: ["none", "disc", "decimal", _]
2281
+ }],
2282
+ /**
2283
+ * List Style Position
2284
+ * @see https://tailwindcss.com/docs/list-style-position
2285
+ */
2286
+ "list-style-position": [{
2287
+ list: ["inside", "outside"]
2288
+ }],
2289
+ /**
2290
+ * Placeholder Color
2291
+ * @deprecated since Tailwind CSS v3.0.0
2292
+ * @see https://tailwindcss.com/docs/placeholder-color
2293
+ */
2294
+ "placeholder-color": [{
2295
+ placeholder: [r]
2296
+ }],
2297
+ /**
2298
+ * Placeholder Opacity
2299
+ * @see https://tailwindcss.com/docs/placeholder-opacity
2300
+ */
2301
+ "placeholder-opacity": [{
2302
+ "placeholder-opacity": [N]
2303
+ }],
2304
+ /**
2305
+ * Text Alignment
2306
+ * @see https://tailwindcss.com/docs/text-align
2307
+ */
2308
+ "text-alignment": [{
2309
+ text: ["left", "center", "right", "justify", "start", "end"]
2310
+ }],
2311
+ /**
2312
+ * Text Color
2313
+ * @see https://tailwindcss.com/docs/text-color
2314
+ */
2315
+ "text-color": [{
2316
+ text: [r]
2317
+ }],
2318
+ /**
2319
+ * Text Opacity
2320
+ * @see https://tailwindcss.com/docs/text-opacity
2321
+ */
2322
+ "text-opacity": [{
2323
+ "text-opacity": [N]
2324
+ }],
2325
+ /**
2326
+ * Text Decoration
2327
+ * @see https://tailwindcss.com/docs/text-decoration
2328
+ */
2329
+ "text-decoration": ["underline", "overline", "line-through", "no-underline"],
2330
+ /**
2331
+ * Text Decoration Style
2332
+ * @see https://tailwindcss.com/docs/text-decoration-style
2333
+ */
2334
+ "text-decoration-style": [{
2335
+ decoration: [].concat(I(), ["wavy"])
2336
+ }],
2337
+ /**
2338
+ * Text Decoration Thickness
2339
+ * @see https://tailwindcss.com/docs/text-decoration-thickness
2340
+ */
2341
+ "text-decoration-thickness": [{
2342
+ decoration: ["auto", "from-font", W]
2343
+ }],
2344
+ /**
2345
+ * Text Underline Offset
2346
+ * @see https://tailwindcss.com/docs/text-underline-offset
2347
+ */
2348
+ "underline-offset": [{
2349
+ "underline-offset": ["auto", W]
2350
+ }],
2351
+ /**
2352
+ * Text Decoration Color
2353
+ * @see https://tailwindcss.com/docs/text-decoration-color
2354
+ */
2355
+ "text-decoration-color": [{
2356
+ decoration: [r]
2357
+ }],
2358
+ /**
2359
+ * Text Transform
2360
+ * @see https://tailwindcss.com/docs/text-transform
2361
+ */
2362
+ "text-transform": ["uppercase", "lowercase", "capitalize", "normal-case"],
2363
+ /**
2364
+ * Text Overflow
2365
+ * @see https://tailwindcss.com/docs/text-overflow
2366
+ */
2367
+ "text-overflow": ["truncate", "text-ellipsis", "text-clip"],
2368
+ /**
2369
+ * Text Indent
2370
+ * @see https://tailwindcss.com/docs/text-indent
2371
+ */
2372
+ indent: [{
2373
+ indent: [t]
2374
+ }],
2375
+ /**
2376
+ * Vertical Alignment
2377
+ * @see https://tailwindcss.com/docs/vertical-align
2378
+ */
2379
+ "vertical-align": [{
2380
+ align: ["baseline", "top", "middle", "bottom", "text-top", "text-bottom", "sub", "super", B]
2381
+ }],
2382
+ /**
2383
+ * Whitespace
2384
+ * @see https://tailwindcss.com/docs/whitespace
2385
+ */
2386
+ whitespace: [{
2387
+ whitespace: ["normal", "nowrap", "pre", "pre-line", "pre-wrap"]
2388
+ }],
2389
+ /**
2390
+ * Word Break
2391
+ * @see https://tailwindcss.com/docs/word-break
2392
+ */
2393
+ break: [{
2394
+ break: ["normal", "words", "all", "keep"]
2395
+ }],
2396
+ /**
2397
+ * Content
2398
+ * @see https://tailwindcss.com/docs/content
2399
+ */
2400
+ content: [{
2401
+ content: ["none", _]
2402
+ }],
2403
+ // Backgrounds
2404
+ /**
2405
+ * Background Attachment
2406
+ * @see https://tailwindcss.com/docs/background-attachment
2407
+ */
2408
+ "bg-attachment": [{
2409
+ bg: ["fixed", "local", "scroll"]
2410
+ }],
2411
+ /**
2412
+ * Background Clip
2413
+ * @see https://tailwindcss.com/docs/background-clip
2414
+ */
2415
+ "bg-clip": [{
2416
+ "bg-clip": ["border", "padding", "content", "text"]
2417
+ }],
2418
+ /**
2419
+ * Background Opacity
2420
+ * @deprecated since Tailwind CSS v3.0.0
2421
+ * @see https://tailwindcss.com/docs/background-opacity
2422
+ */
2423
+ "bg-opacity": [{
2424
+ "bg-opacity": [N]
2425
+ }],
2426
+ /**
2427
+ * Background Origin
2428
+ * @see https://tailwindcss.com/docs/background-origin
2429
+ */
2430
+ "bg-origin": [{
2431
+ "bg-origin": ["border", "padding", "content"]
2432
+ }],
2433
+ /**
2434
+ * Background Position
2435
+ * @see https://tailwindcss.com/docs/background-position
2436
+ */
2437
+ "bg-position": [{
2438
+ bg: [].concat(z(), [ct])
2439
+ }],
2440
+ /**
2441
+ * Background Repeat
2442
+ * @see https://tailwindcss.com/docs/background-repeat
2443
+ */
2444
+ "bg-repeat": [{
2445
+ bg: ["no-repeat", {
2446
+ repeat: ["", "x", "y", "round", "space"]
2447
+ }]
2448
+ }],
2449
+ /**
2450
+ * Background Size
2451
+ * @see https://tailwindcss.com/docs/background-size
2452
+ */
2453
+ "bg-size": [{
2454
+ bg: ["auto", "cover", "contain", lt]
2455
+ }],
2456
+ /**
2457
+ * Background Image
2458
+ * @see https://tailwindcss.com/docs/background-image
2459
+ */
2460
+ "bg-image": [{
2461
+ bg: ["none", {
2462
+ "gradient-to": ["t", "tr", "r", "br", "b", "bl", "l", "tl"]
2463
+ }, dt]
2464
+ }],
2465
+ /**
2466
+ * Background Color
2467
+ * @see https://tailwindcss.com/docs/background-color
2468
+ */
2469
+ "bg-color": [{
2470
+ bg: [r]
2471
+ }],
2472
+ /**
2473
+ * Gradient Color Stops From
2474
+ * @see https://tailwindcss.com/docs/gradient-color-stops
2475
+ */
2476
+ "gradient-from": [{
2477
+ from: [P]
2478
+ }],
2479
+ /**
2480
+ * Gradient Color Stops Via
2481
+ * @see https://tailwindcss.com/docs/gradient-color-stops
2482
+ */
2483
+ "gradient-via": [{
2484
+ via: [P]
2485
+ }],
2486
+ /**
2487
+ * Gradient Color Stops To
2488
+ * @see https://tailwindcss.com/docs/gradient-color-stops
2489
+ */
2490
+ "gradient-to": [{
2491
+ to: [P]
2492
+ }],
2493
+ // Borders
2494
+ /**
2495
+ * Border Radius
2496
+ * @see https://tailwindcss.com/docs/border-radius
2497
+ */
2498
+ rounded: [{
2499
+ rounded: [d]
2500
+ }],
2501
+ /**
2502
+ * Border Radius Top
2503
+ * @see https://tailwindcss.com/docs/border-radius
2504
+ */
2505
+ "rounded-t": [{
2506
+ "rounded-t": [d]
2507
+ }],
2508
+ /**
2509
+ * Border Radius Right
2510
+ * @see https://tailwindcss.com/docs/border-radius
2511
+ */
2512
+ "rounded-r": [{
2513
+ "rounded-r": [d]
2514
+ }],
2515
+ /**
2516
+ * Border Radius Bottom
2517
+ * @see https://tailwindcss.com/docs/border-radius
2518
+ */
2519
+ "rounded-b": [{
2520
+ "rounded-b": [d]
2521
+ }],
2522
+ /**
2523
+ * Border Radius Left
2524
+ * @see https://tailwindcss.com/docs/border-radius
2525
+ */
2526
+ "rounded-l": [{
2527
+ "rounded-l": [d]
2528
+ }],
2529
+ /**
2530
+ * Border Radius Top Left
2531
+ * @see https://tailwindcss.com/docs/border-radius
2532
+ */
2533
+ "rounded-tl": [{
2534
+ "rounded-tl": [d]
2535
+ }],
2536
+ /**
2537
+ * Border Radius Top Right
2538
+ * @see https://tailwindcss.com/docs/border-radius
2539
+ */
2540
+ "rounded-tr": [{
2541
+ "rounded-tr": [d]
2542
+ }],
2543
+ /**
2544
+ * Border Radius Bottom Right
2545
+ * @see https://tailwindcss.com/docs/border-radius
2546
+ */
2547
+ "rounded-br": [{
2548
+ "rounded-br": [d]
2549
+ }],
2550
+ /**
2551
+ * Border Radius Bottom Left
2552
+ * @see https://tailwindcss.com/docs/border-radius
2553
+ */
2554
+ "rounded-bl": [{
2555
+ "rounded-bl": [d]
2556
+ }],
2557
+ /**
2558
+ * Border Width
2559
+ * @see https://tailwindcss.com/docs/border-width
2560
+ */
2561
+ "border-w": [{
2562
+ border: [l]
2563
+ }],
2564
+ /**
2565
+ * Border Width X
2566
+ * @see https://tailwindcss.com/docs/border-width
2567
+ */
2568
+ "border-w-x": [{
2569
+ "border-x": [l]
2570
+ }],
2571
+ /**
2572
+ * Border Width Y
2573
+ * @see https://tailwindcss.com/docs/border-width
2574
+ */
2575
+ "border-w-y": [{
2576
+ "border-y": [l]
2577
+ }],
2578
+ /**
2579
+ * Border Width Top
2580
+ * @see https://tailwindcss.com/docs/border-width
2581
+ */
2582
+ "border-w-t": [{
2583
+ "border-t": [l]
2584
+ }],
2585
+ /**
2586
+ * Border Width Right
2587
+ * @see https://tailwindcss.com/docs/border-width
2588
+ */
2589
+ "border-w-r": [{
2590
+ "border-r": [l]
2591
+ }],
2592
+ /**
2593
+ * Border Width Bottom
2594
+ * @see https://tailwindcss.com/docs/border-width
2595
+ */
2596
+ "border-w-b": [{
2597
+ "border-b": [l]
2598
+ }],
2599
+ /**
2600
+ * Border Width Left
2601
+ * @see https://tailwindcss.com/docs/border-width
2602
+ */
2603
+ "border-w-l": [{
2604
+ "border-l": [l]
2605
+ }],
2606
+ /**
2607
+ * Border Opacity
2608
+ * @see https://tailwindcss.com/docs/border-opacity
2609
+ */
2610
+ "border-opacity": [{
2611
+ "border-opacity": [N]
2612
+ }],
2613
+ /**
2614
+ * Border Style
2615
+ * @see https://tailwindcss.com/docs/border-style
2616
+ */
2617
+ "border-style": [{
2618
+ border: [].concat(I(), ["hidden"])
2619
+ }],
2620
+ /**
2621
+ * Divide Width X
2622
+ * @see https://tailwindcss.com/docs/divide-width
2623
+ */
2624
+ "divide-x": [{
2625
+ "divide-x": [l]
2626
+ }],
2627
+ /**
2628
+ * Divide Width X Reverse
2629
+ * @see https://tailwindcss.com/docs/divide-width
2630
+ */
2631
+ "divide-x-reverse": ["divide-x-reverse"],
2632
+ /**
2633
+ * Divide Width Y
2634
+ * @see https://tailwindcss.com/docs/divide-width
2635
+ */
2636
+ "divide-y": [{
2637
+ "divide-y": [l]
2638
+ }],
2639
+ /**
2640
+ * Divide Width Y Reverse
2641
+ * @see https://tailwindcss.com/docs/divide-width
2642
+ */
2643
+ "divide-y-reverse": ["divide-y-reverse"],
2644
+ /**
2645
+ * Divide Opacity
2646
+ * @see https://tailwindcss.com/docs/divide-opacity
2647
+ */
2648
+ "divide-opacity": [{
2649
+ "divide-opacity": [N]
2650
+ }],
2651
+ /**
2652
+ * Divide Style
2653
+ * @see https://tailwindcss.com/docs/divide-style
2654
+ */
2655
+ "divide-style": [{
2656
+ divide: I()
2657
+ }],
2658
+ /**
2659
+ * Border Color
2660
+ * @see https://tailwindcss.com/docs/border-color
2661
+ */
2662
+ "border-color": [{
2663
+ border: [s]
2664
+ }],
2665
+ /**
2666
+ * Border Color X
2667
+ * @see https://tailwindcss.com/docs/border-color
2668
+ */
2669
+ "border-color-x": [{
2670
+ "border-x": [s]
2671
+ }],
2672
+ /**
2673
+ * Border Color Y
2674
+ * @see https://tailwindcss.com/docs/border-color
2675
+ */
2676
+ "border-color-y": [{
2677
+ "border-y": [s]
2678
+ }],
2679
+ /**
2680
+ * Border Color Top
2681
+ * @see https://tailwindcss.com/docs/border-color
2682
+ */
2683
+ "border-color-t": [{
2684
+ "border-t": [s]
2685
+ }],
2686
+ /**
2687
+ * Border Color Right
2688
+ * @see https://tailwindcss.com/docs/border-color
2689
+ */
2690
+ "border-color-r": [{
2691
+ "border-r": [s]
2692
+ }],
2693
+ /**
2694
+ * Border Color Bottom
2695
+ * @see https://tailwindcss.com/docs/border-color
2696
+ */
2697
+ "border-color-b": [{
2698
+ "border-b": [s]
2699
+ }],
2700
+ /**
2701
+ * Border Color Left
2702
+ * @see https://tailwindcss.com/docs/border-color
2703
+ */
2704
+ "border-color-l": [{
2705
+ "border-l": [s]
2706
+ }],
2707
+ /**
2708
+ * Divide Color
2709
+ * @see https://tailwindcss.com/docs/divide-color
2710
+ */
2711
+ "divide-color": [{
2712
+ divide: [s]
2713
+ }],
2714
+ /**
2715
+ * Outline Style
2716
+ * @see https://tailwindcss.com/docs/outline-style
2717
+ */
2718
+ "outline-style": [{
2719
+ outline: [""].concat(I())
2720
+ }],
2721
+ /**
2722
+ * Outline Offset
2723
+ * @see https://tailwindcss.com/docs/outline-offset
2724
+ */
2725
+ "outline-offset": [{
2726
+ "outline-offset": [W]
2727
+ }],
2728
+ /**
2729
+ * Outline Width
2730
+ * @see https://tailwindcss.com/docs/outline-width
2731
+ */
2732
+ "outline-w": [{
2733
+ outline: [W]
2734
+ }],
2735
+ /**
2736
+ * Outline Color
2737
+ * @see https://tailwindcss.com/docs/outline-color
2738
+ */
2739
+ "outline-color": [{
2740
+ outline: [r]
2741
+ }],
2742
+ /**
2743
+ * Ring Width
2744
+ * @see https://tailwindcss.com/docs/ring-width
2745
+ */
2746
+ "ring-w": [{
2747
+ ring: ge()
2748
+ }],
2749
+ /**
2750
+ * Ring Width Inset
2751
+ * @see https://tailwindcss.com/docs/ring-width
2752
+ */
2753
+ "ring-w-inset": ["ring-inset"],
2754
+ /**
2755
+ * Ring Color
2756
+ * @see https://tailwindcss.com/docs/ring-color
2757
+ */
2758
+ "ring-color": [{
2759
+ ring: [r]
2760
+ }],
2761
+ /**
2762
+ * Ring Opacity
2763
+ * @see https://tailwindcss.com/docs/ring-opacity
2764
+ */
2765
+ "ring-opacity": [{
2766
+ "ring-opacity": [N]
2767
+ }],
2768
+ /**
2769
+ * Ring Offset Width
2770
+ * @see https://tailwindcss.com/docs/ring-offset-width
2771
+ */
2772
+ "ring-offset-w": [{
2773
+ "ring-offset": [W]
2774
+ }],
2775
+ /**
2776
+ * Ring Offset Color
2777
+ * @see https://tailwindcss.com/docs/ring-offset-color
2778
+ */
2779
+ "ring-offset-color": [{
2780
+ "ring-offset": [r]
2781
+ }],
2782
+ // Effects
2783
+ /**
2784
+ * Box Shadow
2785
+ * @see https://tailwindcss.com/docs/box-shadow
2786
+ */
2787
+ shadow: [{
2788
+ shadow: ["", "inner", "none", H, ut]
2789
+ }],
2790
+ /**
2791
+ * Box Shadow Color
2792
+ * @see https://tailwindcss.com/docs/box-shadow-color
2793
+ */
2794
+ "shadow-color": [{
2795
+ shadow: [ie]
2796
+ }],
2797
+ /**
2798
+ * Opacity
2799
+ * @see https://tailwindcss.com/docs/opacity
2800
+ */
2801
+ opacity: [{
2802
+ opacity: [N]
2803
+ }],
2804
+ /**
2805
+ * Mix Beldn Mode
2806
+ * @see https://tailwindcss.com/docs/mix-blend-mode
2807
+ */
2808
+ "mix-blend": [{
2809
+ "mix-blend": L()
2810
+ }],
2811
+ /**
2812
+ * Background Blend Mode
2813
+ * @see https://tailwindcss.com/docs/background-blend-mode
2814
+ */
2815
+ "bg-blend": [{
2816
+ "bg-blend": L()
2817
+ }],
2818
+ // Filters
2819
+ /**
2820
+ * Filter
2821
+ * @deprecated since Tailwind CSS v3.0.0
2822
+ * @see https://tailwindcss.com/docs/filter
2823
+ */
2824
+ filter: [{
2825
+ filter: ["", "none"]
2826
+ }],
2827
+ /**
2828
+ * Blur
2829
+ * @see https://tailwindcss.com/docs/blur
2830
+ */
2831
+ blur: [{
2832
+ blur: [a]
2833
+ }],
2834
+ /**
2835
+ * Brightness
2836
+ * @see https://tailwindcss.com/docs/brightness
2837
+ */
2838
+ brightness: [{
2839
+ brightness: [o]
2840
+ }],
2841
+ /**
2842
+ * Contrast
2843
+ * @see https://tailwindcss.com/docs/contrast
2844
+ */
2845
+ contrast: [{
2846
+ contrast: [f]
2847
+ }],
2848
+ /**
2849
+ * Drop Shadow
2850
+ * @see https://tailwindcss.com/docs/drop-shadow
2851
+ */
2852
+ "drop-shadow": [{
2853
+ "drop-shadow": ["", "none", H, _]
2854
+ }],
2855
+ /**
2856
+ * Grayscale
2857
+ * @see https://tailwindcss.com/docs/grayscale
2858
+ */
2859
+ grayscale: [{
2860
+ grayscale: [m]
2861
+ }],
2862
+ /**
2863
+ * Hue Rotate
2864
+ * @see https://tailwindcss.com/docs/hue-rotate
2865
+ */
2866
+ "hue-rotate": [{
2867
+ "hue-rotate": [v]
2868
+ }],
2869
+ /**
2870
+ * Invert
2871
+ * @see https://tailwindcss.com/docs/invert
2872
+ */
2873
+ invert: [{
2874
+ invert: [w]
2875
+ }],
2876
+ /**
2877
+ * Saturate
2878
+ * @see https://tailwindcss.com/docs/saturate
2879
+ */
2880
+ saturate: [{
2881
+ saturate: [E]
2882
+ }],
2883
+ /**
2884
+ * Sepia
2885
+ * @see https://tailwindcss.com/docs/sepia
2886
+ */
2887
+ sepia: [{
2888
+ sepia: [ce]
2889
+ }],
2890
+ /**
2891
+ * Backdrop Filter
2892
+ * @deprecated since Tailwind CSS v3.0.0
2893
+ * @see https://tailwindcss.com/docs/backdrop-filter
2894
+ */
2895
+ "backdrop-filter": [{
2896
+ "backdrop-filter": ["", "none"]
2897
+ }],
2898
+ /**
2899
+ * Backdrop Blur
2900
+ * @see https://tailwindcss.com/docs/backdrop-blur
2901
+ */
2902
+ "backdrop-blur": [{
2903
+ "backdrop-blur": [a]
2904
+ }],
2905
+ /**
2906
+ * Backdrop Brightness
2907
+ * @see https://tailwindcss.com/docs/backdrop-brightness
2908
+ */
2909
+ "backdrop-brightness": [{
2910
+ "backdrop-brightness": [o]
2911
+ }],
2912
+ /**
2913
+ * Backdrop Contrast
2914
+ * @see https://tailwindcss.com/docs/backdrop-contrast
2915
+ */
2916
+ "backdrop-contrast": [{
2917
+ "backdrop-contrast": [f]
2918
+ }],
2919
+ /**
2920
+ * Backdrop Grayscale
2921
+ * @see https://tailwindcss.com/docs/backdrop-grayscale
2922
+ */
2923
+ "backdrop-grayscale": [{
2924
+ "backdrop-grayscale": [m]
2925
+ }],
2926
+ /**
2927
+ * Backdrop Hue Rotate
2928
+ * @see https://tailwindcss.com/docs/backdrop-hue-rotate
2929
+ */
2930
+ "backdrop-hue-rotate": [{
2931
+ "backdrop-hue-rotate": [v]
2932
+ }],
2933
+ /**
2934
+ * Backdrop Invert
2935
+ * @see https://tailwindcss.com/docs/backdrop-invert
2936
+ */
2937
+ "backdrop-invert": [{
2938
+ "backdrop-invert": [w]
2939
+ }],
2940
+ /**
2941
+ * Backdrop Opacity
2942
+ * @see https://tailwindcss.com/docs/backdrop-opacity
2943
+ */
2944
+ "backdrop-opacity": [{
2945
+ "backdrop-opacity": [N]
2946
+ }],
2947
+ /**
2948
+ * Backdrop Saturate
2949
+ * @see https://tailwindcss.com/docs/backdrop-saturate
2950
+ */
2951
+ "backdrop-saturate": [{
2952
+ "backdrop-saturate": [E]
2953
+ }],
2954
+ /**
2955
+ * Backdrop Sepia
2956
+ * @see https://tailwindcss.com/docs/backdrop-sepia
2957
+ */
2958
+ "backdrop-sepia": [{
2959
+ "backdrop-sepia": [ce]
2960
+ }],
2961
+ // Tables
2962
+ /**
2963
+ * Border Collapse
2964
+ * @see https://tailwindcss.com/docs/border-collapse
2965
+ */
2966
+ "border-collapse": [{
2967
+ border: ["collapse", "separate"]
2968
+ }],
2969
+ /**
2970
+ * Border Spacing
2971
+ * @see https://tailwindcss.com/docs/border-spacing
2972
+ */
2973
+ "border-spacing": [{
2974
+ "border-spacing": [c]
2975
+ }],
2976
+ /**
2977
+ * Border Spacing X
2978
+ * @see https://tailwindcss.com/docs/border-spacing
2979
+ */
2980
+ "border-spacing-x": [{
2981
+ "border-spacing-x": [c]
2982
+ }],
2983
+ /**
2984
+ * Border Spacing Y
2985
+ * @see https://tailwindcss.com/docs/border-spacing
2986
+ */
2987
+ "border-spacing-y": [{
2988
+ "border-spacing-y": [c]
2989
+ }],
2990
+ /**
2991
+ * Table Layout
2992
+ * @see https://tailwindcss.com/docs/table-layout
2993
+ */
2994
+ "table-layout": [{
2995
+ table: ["auto", "fixed"]
2996
+ }],
2997
+ // Transitions and Animation
2998
+ /**
2999
+ * Tranisition Property
3000
+ * @see https://tailwindcss.com/docs/transition-property
3001
+ */
3002
+ transition: [{
3003
+ transition: ["none", "all", "", "colors", "opacity", "shadow", "transform", _]
3004
+ }],
3005
+ /**
3006
+ * Transition Duration
3007
+ * @see https://tailwindcss.com/docs/transition-duration
3008
+ */
3009
+ duration: [{
3010
+ duration: $()
3011
+ }],
3012
+ /**
3013
+ * Transition Timing Function
3014
+ * @see https://tailwindcss.com/docs/transition-timing-function
3015
+ */
3016
+ ease: [{
3017
+ ease: ["linear", "in", "out", "in-out", _]
3018
+ }],
3019
+ /**
3020
+ * Transition Delay
3021
+ * @see https://tailwindcss.com/docs/transition-delay
3022
+ */
3023
+ delay: [{
3024
+ delay: $()
3025
+ }],
3026
+ /**
3027
+ * Animation
3028
+ * @see https://tailwindcss.com/docs/animation
3029
+ */
3030
+ animate: [{
3031
+ animate: ["none", "spin", "ping", "pulse", "bounce", _]
3032
+ }],
3033
+ // Transforms
3034
+ /**
3035
+ * Transform
3036
+ * @see https://tailwindcss.com/docs/transform
3037
+ */
3038
+ transform: [{
3039
+ transform: ["", "gpu", "none"]
3040
+ }],
3041
+ /**
3042
+ * Scale
3043
+ * @see https://tailwindcss.com/docs/scale
3044
+ */
3045
+ scale: [{
3046
+ scale: [Q]
3047
+ }],
3048
+ /**
3049
+ * Scale X
3050
+ * @see https://tailwindcss.com/docs/scale
3051
+ */
3052
+ "scale-x": [{
3053
+ "scale-x": [Q]
3054
+ }],
3055
+ /**
3056
+ * Scale Y
3057
+ * @see https://tailwindcss.com/docs/scale
3058
+ */
3059
+ "scale-y": [{
3060
+ "scale-y": [Q]
3061
+ }],
3062
+ /**
3063
+ * Rotate
3064
+ * @see https://tailwindcss.com/docs/rotate
3065
+ */
3066
+ rotate: [{
3067
+ rotate: [ae, _]
3068
+ }],
3069
+ /**
3070
+ * Translate X
3071
+ * @see https://tailwindcss.com/docs/translate
3072
+ */
3073
+ "translate-x": [{
3074
+ "translate-x": [fe]
3075
+ }],
3076
+ /**
3077
+ * Translate Y
3078
+ * @see https://tailwindcss.com/docs/translate
3079
+ */
3080
+ "translate-y": [{
3081
+ "translate-y": [fe]
3082
+ }],
3083
+ /**
3084
+ * Skew X
3085
+ * @see https://tailwindcss.com/docs/skew
3086
+ */
3087
+ "skew-x": [{
3088
+ "skew-x": [de]
3089
+ }],
3090
+ /**
3091
+ * Skew Y
3092
+ * @see https://tailwindcss.com/docs/skew
3093
+ */
3094
+ "skew-y": [{
3095
+ "skew-y": [de]
3096
+ }],
3097
+ /**
3098
+ * Transform Origin
3099
+ * @see https://tailwindcss.com/docs/transform-origin
3100
+ */
3101
+ "transform-origin": [{
3102
+ origin: ["center", "top", "top-right", "right", "bottom-right", "bottom", "bottom-left", "left", "top-left", _]
3103
+ }],
3104
+ // Interactivity
3105
+ /**
3106
+ * Accent Color
3107
+ * @see https://tailwindcss.com/docs/accent-color
3108
+ */
3109
+ accent: [{
3110
+ accent: ["auto", r]
3111
+ }],
3112
+ /**
3113
+ * Appearance
3114
+ * @see https://tailwindcss.com/docs/appearance
3115
+ */
3116
+ appearance: ["appearance-none"],
3117
+ /**
3118
+ * Cursor
3119
+ * @see https://tailwindcss.com/docs/cursor
3120
+ */
3121
+ cursor: [{
3122
+ 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", _]
3123
+ }],
3124
+ /**
3125
+ * Caret Color
3126
+ * @see https://tailwindcss.com/docs/just-in-time-mode#caret-color-utilities
3127
+ */
3128
+ "caret-color": [{
3129
+ caret: [r]
3130
+ }],
3131
+ /**
3132
+ * Pointer Events
3133
+ * @see https://tailwindcss.com/docs/pointer-events
3134
+ */
3135
+ "pointer-events": [{
3136
+ "pointer-events": ["none", "auto"]
3137
+ }],
3138
+ /**
3139
+ * Resize
3140
+ * @see https://tailwindcss.com/docs/resize
3141
+ */
3142
+ resize: [{
3143
+ resize: ["none", "y", "x", ""]
3144
+ }],
3145
+ /**
3146
+ * Scroll Behavior
3147
+ * @see https://tailwindcss.com/docs/scroll-behavior
3148
+ */
3149
+ "scroll-behavior": [{
3150
+ scroll: ["auto", "smooth"]
3151
+ }],
3152
+ /**
3153
+ * Scroll Margin
3154
+ * @see https://tailwindcss.com/docs/scroll-margin
3155
+ */
3156
+ "scroll-m": [{
3157
+ "scroll-m": [t]
3158
+ }],
3159
+ /**
3160
+ * Scroll Margin X
3161
+ * @see https://tailwindcss.com/docs/scroll-margin
3162
+ */
3163
+ "scroll-mx": [{
3164
+ "scroll-mx": [t]
3165
+ }],
3166
+ /**
3167
+ * Scroll Margin Y
3168
+ * @see https://tailwindcss.com/docs/scroll-margin
3169
+ */
3170
+ "scroll-my": [{
3171
+ "scroll-my": [t]
3172
+ }],
3173
+ /**
3174
+ * Scroll Margin Top
3175
+ * @see https://tailwindcss.com/docs/scroll-margin
3176
+ */
3177
+ "scroll-mt": [{
3178
+ "scroll-mt": [t]
3179
+ }],
3180
+ /**
3181
+ * Scroll Margin Right
3182
+ * @see https://tailwindcss.com/docs/scroll-margin
3183
+ */
3184
+ "scroll-mr": [{
3185
+ "scroll-mr": [t]
3186
+ }],
3187
+ /**
3188
+ * Scroll Margin Bottom
3189
+ * @see https://tailwindcss.com/docs/scroll-margin
3190
+ */
3191
+ "scroll-mb": [{
3192
+ "scroll-mb": [t]
3193
+ }],
3194
+ /**
3195
+ * Scroll Margin Left
3196
+ * @see https://tailwindcss.com/docs/scroll-margin
3197
+ */
3198
+ "scroll-ml": [{
3199
+ "scroll-ml": [t]
3200
+ }],
3201
+ /**
3202
+ * Scroll Padding
3203
+ * @see https://tailwindcss.com/docs/scroll-padding
3204
+ */
3205
+ "scroll-p": [{
3206
+ "scroll-p": [t]
3207
+ }],
3208
+ /**
3209
+ * Scroll Padding X
3210
+ * @see https://tailwindcss.com/docs/scroll-padding
3211
+ */
3212
+ "scroll-px": [{
3213
+ "scroll-px": [t]
3214
+ }],
3215
+ /**
3216
+ * Scroll Padding Y
3217
+ * @see https://tailwindcss.com/docs/scroll-padding
3218
+ */
3219
+ "scroll-py": [{
3220
+ "scroll-py": [t]
3221
+ }],
3222
+ /**
3223
+ * Scroll Padding Top
3224
+ * @see https://tailwindcss.com/docs/scroll-padding
3225
+ */
3226
+ "scroll-pt": [{
3227
+ "scroll-pt": [t]
3228
+ }],
3229
+ /**
3230
+ * Scroll Padding Right
3231
+ * @see https://tailwindcss.com/docs/scroll-padding
3232
+ */
3233
+ "scroll-pr": [{
3234
+ "scroll-pr": [t]
3235
+ }],
3236
+ /**
3237
+ * Scroll Padding Bottom
3238
+ * @see https://tailwindcss.com/docs/scroll-padding
3239
+ */
3240
+ "scroll-pb": [{
3241
+ "scroll-pb": [t]
3242
+ }],
3243
+ /**
3244
+ * Scroll Padding Left
3245
+ * @see https://tailwindcss.com/docs/scroll-padding
3246
+ */
3247
+ "scroll-pl": [{
3248
+ "scroll-pl": [t]
3249
+ }],
3250
+ /**
3251
+ * Scroll Snap Align
3252
+ * @see https://tailwindcss.com/docs/scroll-snap-align
3253
+ */
3254
+ "snap-align": [{
3255
+ snap: ["start", "end", "center", "align-none"]
3256
+ }],
3257
+ /**
3258
+ * Scroll Snap Stop
3259
+ * @see https://tailwindcss.com/docs/scroll-snap-stop
3260
+ */
3261
+ "snap-stop": [{
3262
+ snap: ["normal", "always"]
3263
+ }],
3264
+ /**
3265
+ * Scroll Snap Type
3266
+ * @see https://tailwindcss.com/docs/scroll-snap-type
3267
+ */
3268
+ "snap-type": [{
3269
+ snap: ["none", "x", "y", "both"]
3270
+ }],
3271
+ /**
3272
+ * Scroll Snap Type Strictness
3273
+ * @see https://tailwindcss.com/docs/scroll-snap-type
3274
+ */
3275
+ "snap-strictness": [{
3276
+ snap: ["mandatory", "proximity"]
3277
+ }],
3278
+ /**
3279
+ * Touch Action
3280
+ * @see https://tailwindcss.com/docs/touch-action
3281
+ */
3282
+ touch: [{
3283
+ touch: ["auto", "none", "pinch-zoom", "manipulation", {
3284
+ pan: ["x", "left", "right", "y", "up", "down"]
3285
+ }]
3286
+ }],
3287
+ /**
3288
+ * User Select
3289
+ * @see https://tailwindcss.com/docs/user-select
3290
+ */
3291
+ select: [{
3292
+ select: ["none", "text", "all", "auto"]
3293
+ }],
3294
+ /**
3295
+ * Will Change
3296
+ * @see https://tailwindcss.com/docs/will-change
3297
+ */
3298
+ "will-change": [{
3299
+ "will-change": ["auto", "scroll", "contents", "transform", _]
3300
+ }],
3301
+ // SVG
3302
+ /**
3303
+ * Fill
3304
+ * @see https://tailwindcss.com/docs/fill
3305
+ */
3306
+ fill: [{
3307
+ fill: [r, "none"]
3308
+ }],
3309
+ /**
3310
+ * Stroke Width
3311
+ * @see https://tailwindcss.com/docs/stroke-width
3312
+ */
3313
+ "stroke-w": [{
3314
+ stroke: [W, je]
3315
+ }],
3316
+ /**
3317
+ * Stroke
3318
+ * @see https://tailwindcss.com/docs/stroke
3319
+ */
3320
+ stroke: [{
3321
+ stroke: [r, "none"]
3322
+ }],
3323
+ // Accessibility
3324
+ /**
3325
+ * Screen Readers
3326
+ * @see https://tailwindcss.com/docs/screen-readers
3327
+ */
3328
+ sr: ["sr-only", "not-sr-only"]
3329
+ },
3330
+ conflictingClassGroups: {
3331
+ overflow: ["overflow-x", "overflow-y"],
3332
+ overscroll: ["overscroll-x", "overscroll-y"],
3333
+ inset: ["inset-x", "inset-y", "top", "right", "bottom", "left"],
3334
+ "inset-x": ["right", "left"],
3335
+ "inset-y": ["top", "bottom"],
3336
+ flex: ["basis", "grow", "shrink"],
3337
+ gap: ["gap-x", "gap-y"],
3338
+ p: ["px", "py", "pt", "pr", "pb", "pl"],
3339
+ px: ["pr", "pl"],
3340
+ py: ["pt", "pb"],
3341
+ m: ["mx", "my", "mt", "mr", "mb", "ml"],
3342
+ mx: ["mr", "ml"],
3343
+ my: ["mt", "mb"],
3344
+ "font-size": ["leading"],
3345
+ "fvn-normal": ["fvn-ordinal", "fvn-slashed-zero", "fvn-figure", "fvn-spacing", "fvn-fraction"],
3346
+ "fvn-ordinal": ["fvn-normal"],
3347
+ "fvn-slashed-zero": ["fvn-normal"],
3348
+ "fvn-figure": ["fvn-normal"],
3349
+ "fvn-spacing": ["fvn-normal"],
3350
+ "fvn-fraction": ["fvn-normal"],
3351
+ rounded: ["rounded-t", "rounded-r", "rounded-b", "rounded-l", "rounded-tl", "rounded-tr", "rounded-br", "rounded-bl"],
3352
+ "rounded-t": ["rounded-tl", "rounded-tr"],
3353
+ "rounded-r": ["rounded-tr", "rounded-br"],
3354
+ "rounded-b": ["rounded-br", "rounded-bl"],
3355
+ "rounded-l": ["rounded-tl", "rounded-bl"],
3356
+ "border-spacing": ["border-spacing-x", "border-spacing-y"],
3357
+ "border-w": ["border-w-t", "border-w-r", "border-w-b", "border-w-l"],
3358
+ "border-w-x": ["border-w-r", "border-w-l"],
3359
+ "border-w-y": ["border-w-t", "border-w-b"],
3360
+ "border-color": ["border-color-t", "border-color-r", "border-color-b", "border-color-l"],
3361
+ "border-color-x": ["border-color-r", "border-color-l"],
3362
+ "border-color-y": ["border-color-t", "border-color-b"],
3363
+ "scroll-m": ["scroll-mx", "scroll-my", "scroll-mt", "scroll-mr", "scroll-mb", "scroll-ml"],
3364
+ "scroll-mx": ["scroll-mr", "scroll-ml"],
3365
+ "scroll-my": ["scroll-mt", "scroll-mb"],
3366
+ "scroll-p": ["scroll-px", "scroll-py", "scroll-pt", "scroll-pr", "scroll-pb", "scroll-pl"],
3367
+ "scroll-px": ["scroll-pr", "scroll-pl"],
3368
+ "scroll-py": ["scroll-pt", "scroll-pb"]
3369
+ }
3370
+ };
3371
+ }
3372
+ var vt = /* @__PURE__ */ tt(bt);
3373
+ function lr(r) {
3374
+ var t, a, o = "";
3375
+ if (typeof r == "string" || typeof r == "number") o += r;
3376
+ else if (typeof r == "object") if (Array.isArray(r)) for (t = 0; t < r.length; t++) r[t] && (a = lr(r[t])) && (o && (o += " "), o += a);
3377
+ else for (t in r) r[t] && (o && (o += " "), o += t);
3378
+ return o;
3379
+ }
3380
+ function ht() {
3381
+ for (var r, t, a = 0, o = ""; a < arguments.length; ) (r = arguments[a++]) && (t = lr(r)) && (o && (o += " "), o += t);
3382
+ return o;
3383
+ }
3384
+ function ye(...r) {
3385
+ return vt(ht(r));
3386
+ }
3387
+ function mt({ className: r = "", size: t = "1em" }) {
3388
+ return /* @__PURE__ */ b.jsxs(
3389
+ "svg",
3390
+ {
3391
+ width: "24",
3392
+ height: "25",
3393
+ viewBox: "0 0 24 25",
3394
+ fill: "none",
3395
+ xmlns: "http://www.w3.org/2000/svg",
3396
+ className: r,
3397
+ children: [
3398
+ /* @__PURE__ */ b.jsx(
3399
+ "path",
3400
+ {
3401
+ d: "M12.001 7.7395C12.2367 7.73978 12.4591 7.85076 12.6006 8.03931L15.376 11.7395C15.5459 11.9666 15.5731 12.2708 15.4463 12.5247C15.3193 12.7785 15.0592 12.9395 14.7754 12.9397H12.75V17.2766C12.7499 17.6907 12.4142 18.0266 12 18.0266C11.5858 18.0266 11.2501 17.6907 11.25 17.2766V12.9397H9.22559C8.94169 12.9397 8.68182 12.7785 8.55469 12.5247C8.42778 12.2706 8.45558 11.9667 8.62598 11.7395L11.4004 8.03931L11.457 7.97192C11.5977 7.82422 11.7945 7.7395 12.001 7.7395Z",
3402
+ fill: "currentColor"
3403
+ }
3404
+ ),
3405
+ /* @__PURE__ */ b.jsx(
3406
+ "path",
3407
+ {
3408
+ "fill-rule": "evenodd",
3409
+ "clip-rule": "evenodd",
3410
+ d: "M12 2.65161C17.5228 2.65161 22 7.12876 22 12.6516C22 18.1744 17.5228 22.6516 12 22.6516C6.47715 22.6516 2 18.1744 2 12.6516C2 7.12876 6.47715 2.65161 12 2.65161ZM12 4.15161C7.30558 4.15161 3.5 7.95719 3.5 12.6516C3.5 17.346 7.30558 21.1516 12 21.1516C16.6944 21.1516 20.5 17.346 20.5 12.6516C20.5 7.95719 16.6944 4.15161 12 4.15161Z",
3411
+ fill: "currentColor"
3412
+ }
3413
+ )
3414
+ ]
3415
+ }
3416
+ );
3417
+ }
3418
+ function yt({ className: r = "", size: t = "1em" }) {
3419
+ return /* @__PURE__ */ b.jsx(
3420
+ "svg",
3421
+ {
3422
+ width: "24",
3423
+ height: "24",
3424
+ viewBox: "0 0 24 24",
3425
+ fill: "none",
3426
+ xmlns: "http://www.w3.org/2000/svg",
3427
+ className: r,
3428
+ children: /* @__PURE__ */ b.jsx(
3429
+ "path",
3430
+ {
3431
+ d: "M12 2C10.0222 2 8.08879 2.58649 6.4443 3.6853C4.79981 4.78412 3.51809 6.3459 2.76121 8.17316C2.00433 10.0004 1.8063 12.0111 2.19215 13.9509C2.578 15.8907 3.53041 17.6725 4.92894 19.0711C6.32746 20.4696 8.10929 21.422 10.0491 21.8078C11.9889 22.1937 13.9996 21.9957 15.8268 21.2388C17.6541 20.4819 19.2159 19.2002 20.3147 17.5557C21.4135 15.9112 22 13.9778 22 12C21.9971 9.34871 20.9426 6.80684 19.0679 4.9321C17.1932 3.05736 14.6513 2.00287 12 2ZM15.7092 11.7642C15.6751 11.8349 15.6217 11.8945 15.5553 11.9363C15.4888 11.978 15.4118 12.0001 15.3333 12H12.8333V16.1667C12.8333 16.3877 12.7455 16.5996 12.5893 16.7559C12.433 16.9122 12.221 17 12 17C11.779 17 11.567 16.9122 11.4107 16.7559C11.2545 16.5996 11.1667 16.3877 11.1667 16.1667V12H8.66667C8.58819 12 8.5113 11.9779 8.44484 11.9362C8.37839 11.8945 8.32507 11.8348 8.29102 11.7641C8.25697 11.6934 8.24359 11.6145 8.2524 11.5365C8.26121 11.4586 8.29187 11.3847 8.34084 11.3233L11.6742 7.15667C11.7146 7.10991 11.7646 7.07241 11.8209 7.04671C11.8771 7.021 11.9382 7.0077 12 7.0077C12.0618 7.0077 12.1229 7.021 12.1791 7.04671C12.2354 7.07241 12.2854 7.10991 12.3258 7.15667L15.6592 11.3233C15.7082 11.3846 15.7389 11.4585 15.7477 11.5365C15.7566 11.6145 15.7432 11.6934 15.7092 11.7642Z",
3432
+ fill: "#1DA56A"
3433
+ }
3434
+ )
3435
+ }
3436
+ );
3437
+ }
3438
+ const xt = ({
3439
+ tooltipContent: r = "Send message",
3440
+ className: t,
3441
+ ...a
3442
+ }) => {
3443
+ const [o, s] = Te(!1);
3444
+ return /* @__PURE__ */ b.jsx(Gr, { content: r, children: /* @__PURE__ */ b.jsx(
3445
+ tr,
3446
+ {
3447
+ variant: "text",
3448
+ color: "gray",
3449
+ className: ye(t, "hover:rounded-lg hover:bg-gray-100"),
3450
+ type: "submit",
3451
+ onMouseEnter: () => s(!0),
3452
+ onMouseLeave: () => s(!1),
3453
+ ...a,
3454
+ children: o ? /* @__PURE__ */ b.jsx(yt, { className: "size-6 " }) : /* @__PURE__ */ b.jsx(mt, { className: "size-6 " })
3455
+ }
3456
+ ) });
3457
+ }, cr = ({
3458
+ onSubmit: r = () => {
3459
+ },
3460
+ ...t
3461
+ }) => /* @__PURE__ */ b.jsx(
3462
+ Vr,
3463
+ {
3464
+ autoFocus: !0,
3465
+ placeholder: "Write your message here",
3466
+ className: "pl-1 block w-full focus:outline-none max-h-32 resize-none placeholder:text-gray-400",
3467
+ onKeyDown: (a) => {
3468
+ a.key === "Enter" && !a.shiftKey && (a.preventDefault(), r());
3469
+ },
3470
+ ...t
3471
+ }
3472
+ ), wt = ({
3473
+ bottom: r,
3474
+ right: t,
3475
+ top: a,
3476
+ textArea: o = /* @__PURE__ */ b.jsx(cr, {}),
3477
+ ...s
3478
+ }) => /* @__PURE__ */ b.jsxs(
3479
+ "div",
3480
+ {
3481
+ className: "border gap-2 rounded-lg bg-white shadow-[0px_2px_2px_0px_#0000000A,0px_8px_8px_-8px_#0000000A] border-gray-100",
3482
+ ...s,
3483
+ children: [
3484
+ a,
3485
+ /* @__PURE__ */ b.jsxs("div", { className: "flex gap-2 p-4 rounded-lg bg-white", children: [
3486
+ /* @__PURE__ */ b.jsxs("div", { className: "grow flex flex-col items-start justify-center", children: [
3487
+ o,
3488
+ r
3489
+ ] }),
3490
+ /* @__PURE__ */ b.jsx("div", { className: "shrink flex items-end justify-end", children: t })
3491
+ ] })
3492
+ ]
3493
+ }
3494
+ ), zt = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3495
+ __proto__: null,
3496
+ Container: wt,
3497
+ SubmitButton: xt,
3498
+ Textarea: cr
3499
+ }, Symbol.toStringTag, { value: "Module" })), X = Lr(void 0), dr = ({
3500
+ children: r,
3501
+ isCollapsed: t,
3502
+ onSwitchLayout: a
3503
+ }) => {
3504
+ const [o, s] = Te(!1), [d, c] = Te(!1), l = t !== void 0 ? t : o, f = (m) => {
3505
+ const v = m ?? !l;
3506
+ t === void 0 && s(v), a == null || a(v);
3507
+ };
3508
+ return /* @__PURE__ */ b.jsx(
3509
+ X.Provider,
3510
+ {
3511
+ value: { isCollapsed: l, toggleCollapsed: f, isHovered: d, setIsHovered: c },
3512
+ children: r
3513
+ }
3514
+ );
3515
+ }, ur = ({
3516
+ className: r,
3517
+ children: t,
3518
+ ...a
3519
+ }) => {
3520
+ const { isCollapsed: o, isHovered: s, setIsHovered: d } = le(X);
3521
+ return /* @__PURE__ */ b.jsx(
3522
+ "div",
3523
+ {
3524
+ className: ye(
3525
+ r,
3526
+ o && "shadow-lg",
3527
+ o && !s ? "w-auto" : "w-[280px]",
3528
+ "bg-gray-50 p-2 flex flex-col justify-between items-center rounded-lg"
3529
+ ),
3530
+ onMouseEnter: () => o && d(!0),
3531
+ onMouseLeave: () => o && d(!1),
3532
+ ...a,
3533
+ children: t
3534
+ }
3535
+ );
3536
+ }, Ct = ({
3537
+ className: r,
3538
+ children: t,
3539
+ isCollapsed: a,
3540
+ onSwitchLayout: o,
3541
+ ...s
3542
+ }) => /* @__PURE__ */ b.jsx(dr, { isCollapsed: a, onSwitchLayout: o, children: /* @__PURE__ */ b.jsx(ur, { className: r, ...s, children: t }) }), kt = ({ icon: r, children: t, ...a }) => {
3543
+ const { isCollapsed: o, isHovered: s } = le(X);
3544
+ return /* @__PURE__ */ b.jsxs(
3545
+ "button",
3546
+ {
3547
+ className: "flex items-center gap-2 w-full hover:bg-gray-100 text-caption-1-em text-gray-600 hover:text-gray-900 h-[38px] rounded-lg px-2",
3548
+ ...a,
3549
+ children: [
3550
+ r,
3551
+ " ",
3552
+ (!o || s) && t
3553
+ ]
3554
+ }
3555
+ );
3556
+ };
3557
+ function _t(r) {
3558
+ return /* @__PURE__ */ b.jsx(
3559
+ "svg",
3560
+ {
3561
+ width: "16",
3562
+ height: "16",
3563
+ viewBox: "0 0 16 16",
3564
+ fill: "none",
3565
+ xmlns: "http://www.w3.org/2000/svg",
3566
+ ...r,
3567
+ children: /* @__PURE__ */ b.jsx(
3568
+ "path",
3569
+ {
3570
+ d: "M13 1C14.6569 1 16 2.34315 16 4V12L15.9961 12.1543C15.9158 13.7394 14.6051 15 13 15H3L2.8457 14.9961C1.31166 14.9184 0.0816253 13.6883 0.00390625 12.1543L0 12V4C1.28853e-07 2.34315 1.34315 1 3 1H13ZM3 2.5C2.17157 2.5 1.5 3.17157 1.5 4V12C1.5 12.8284 2.17157 13.5 3 13.5H13C13.8284 13.5 14.5 12.8284 14.5 12V4C14.5 3.17157 13.8284 2.5 13 2.5H3ZM3.75 3.5C4.16421 3.5 4.5 3.83579 4.5 4.25V11.75C4.5 12.1642 4.16421 12.5 3.75 12.5C3.33579 12.5 3 12.1642 3 11.75V4.25C3 3.83579 3.33579 3.5 3.75 3.5Z",
3571
+ fill: "currentColor"
3572
+ }
3573
+ )
3574
+ }
3575
+ );
3576
+ }
3577
+ function Et(r) {
3578
+ return /* @__PURE__ */ b.jsx(
3579
+ "svg",
3580
+ {
3581
+ width: "16",
3582
+ height: "16",
3583
+ viewBox: "0 0 16 16",
3584
+ fill: "none",
3585
+ xmlns: "http://www.w3.org/2000/svg",
3586
+ ...r,
3587
+ children: /* @__PURE__ */ b.jsx(
3588
+ "path",
3589
+ {
3590
+ d: "M13 1C14.6569 1 16 2.34315 16 4V12L15.9961 12.1543C15.9158 13.7394 14.6051 15 13 15H3L2.8457 14.9961C1.31166 14.9184 0.0816253 13.6883 0.00390625 12.1543L0 12V4C1.28853e-07 2.34315 1.34315 1 3 1H13ZM3 2.5C2.17157 2.5 1.5 3.17157 1.5 4V12C1.5 12.8284 2.17157 13.5 3 13.5H13C13.8284 13.5 14.5 12.8284 14.5 12V4C14.5 3.17157 13.8284 2.5 13 2.5H3ZM7.5 4C7.77614 4 8 4.22386 8 4.5V11.5C8 11.7761 7.77614 12 7.5 12H3.5C3.22386 12 3 11.7761 3 11.5V4.5C3 4.22386 3.22386 4 3.5 4H7.5Z",
3591
+ fill: "currentColor"
3592
+ }
3593
+ )
3594
+ }
3595
+ );
3596
+ }
3597
+ const Rt = () => {
3598
+ const { isCollapsed: r, isHovered: t, toggleCollapsed: a } = le(X);
3599
+ return r && !t ? null : /* @__PURE__ */ b.jsx(tr, { variant: "text", color: "gray", onClick: () => a(), children: r ? /* @__PURE__ */ b.jsx(_t, { className: "size-4" }) : /* @__PURE__ */ b.jsx(Et, { className: "size-4" }) });
3600
+ }, St = ({
3601
+ children: r,
3602
+ className: t,
3603
+ icon: a,
3604
+ isActive: o,
3605
+ trailing: s,
3606
+ ...d
3607
+ }) => {
3608
+ const { isCollapsed: c, isHovered: l } = le(X);
3609
+ return /* @__PURE__ */ b.jsxs(
3610
+ "div",
3611
+ {
3612
+ className: ye(
3613
+ o ? "!text-gray-900" : "!text-gray-600",
3614
+ "flex items-center justify-between w-full hover:bg-gray-100 text-caption-1-em hover:text-gray-900 h-[38px] rounded-lg px-2 cursor-pointer group",
3615
+ t
3616
+ ),
3617
+ ...d,
3618
+ children: [
3619
+ /* @__PURE__ */ b.jsxs("div", { className: "flex items-center gap-2", children: [
3620
+ a,
3621
+ (!c || l) && r
3622
+ ] }),
3623
+ (!c || l) && s
3624
+ ]
3625
+ }
3626
+ );
3627
+ }, jt = ({
3628
+ children: r,
3629
+ className: t,
3630
+ isActive: a,
3631
+ trailing: o,
3632
+ icon: s,
3633
+ ...d
3634
+ }) => {
3635
+ const { isCollapsed: c, isHovered: l } = le(X);
3636
+ return /* @__PURE__ */ b.jsxs(
3637
+ "div",
3638
+ {
3639
+ className: ye(
3640
+ a ? "!text-gray-900" : "!text-gray-600",
3641
+ "flex items-center justify-between w-full hover:bg-gray-100 text-caption-1-em hover:text-gray-900 h-[38px] rounded-lg pr-2 pl-3 cursor-pointer group text-sm",
3642
+ t
3643
+ ),
3644
+ ...d,
3645
+ children: [
3646
+ /* @__PURE__ */ b.jsxs("div", { className: "flex items-center gap-2 overflow-auto", children: [
3647
+ (!c || l) && s,
3648
+ " ",
3649
+ (!c || l) && r
3650
+ ] }),
3651
+ (!c || l) && o
3652
+ ]
3653
+ }
3654
+ );
3655
+ }, Wt = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
3656
+ __proto__: null,
3657
+ Button: kt,
3658
+ Container: ur,
3659
+ Item: St,
3660
+ Layout: Ct,
3661
+ Provider: dr,
3662
+ SecondaryItem: jt,
3663
+ ToggleCollapseButton: Rt
3664
+ }, Symbol.toStringTag, { value: "Module" }));
3665
+ export {
3666
+ Mt as HelloWorld,
3667
+ zt as InputPrompt,
3668
+ Wt as Sidebar,
3669
+ It as materialTheme,
3670
+ Ot as tailwindTheme
3671
+ };