@new-black/lyra 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/lyra33.js CHANGED
@@ -1,993 +1,27 @@
1
- var r = {
2
- content: [],
3
- presets: [],
4
- darkMode: "media",
5
- // or 'class'
6
- theme: {
7
- accentColor: ({ theme: e }) => ({
8
- ...e("colors"),
9
- auto: "auto"
10
- }),
11
- animation: {
12
- none: "none",
13
- spin: "spin 1s linear infinite",
14
- ping: "ping 1s cubic-bezier(0, 0, 0.2, 1) infinite",
15
- pulse: "pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite",
16
- bounce: "bounce 1s infinite"
17
- },
18
- aria: {
19
- checked: 'checked="true"',
20
- disabled: 'disabled="true"',
21
- expanded: 'expanded="true"',
22
- hidden: 'hidden="true"',
23
- pressed: 'pressed="true"',
24
- readonly: 'readonly="true"',
25
- required: 'required="true"',
26
- selected: 'selected="true"'
27
- },
28
- aspectRatio: {
29
- auto: "auto",
30
- square: "1 / 1",
31
- video: "16 / 9"
32
- },
33
- backdropBlur: ({ theme: e }) => e("blur"),
34
- backdropBrightness: ({ theme: e }) => e("brightness"),
35
- backdropContrast: ({ theme: e }) => e("contrast"),
36
- backdropGrayscale: ({ theme: e }) => e("grayscale"),
37
- backdropHueRotate: ({ theme: e }) => e("hueRotate"),
38
- backdropInvert: ({ theme: e }) => e("invert"),
39
- backdropOpacity: ({ theme: e }) => e("opacity"),
40
- backdropSaturate: ({ theme: e }) => e("saturate"),
41
- backdropSepia: ({ theme: e }) => e("sepia"),
42
- backgroundColor: ({ theme: e }) => e("colors"),
43
- backgroundImage: {
44
- none: "none",
45
- "gradient-to-t": "linear-gradient(to top, var(--tw-gradient-stops))",
46
- "gradient-to-tr": "linear-gradient(to top right, var(--tw-gradient-stops))",
47
- "gradient-to-r": "linear-gradient(to right, var(--tw-gradient-stops))",
48
- "gradient-to-br": "linear-gradient(to bottom right, var(--tw-gradient-stops))",
49
- "gradient-to-b": "linear-gradient(to bottom, var(--tw-gradient-stops))",
50
- "gradient-to-bl": "linear-gradient(to bottom left, var(--tw-gradient-stops))",
51
- "gradient-to-l": "linear-gradient(to left, var(--tw-gradient-stops))",
52
- "gradient-to-tl": "linear-gradient(to top left, var(--tw-gradient-stops))"
53
- },
54
- backgroundOpacity: ({ theme: e }) => e("opacity"),
55
- backgroundPosition: {
56
- bottom: "bottom",
57
- center: "center",
58
- left: "left",
59
- "left-bottom": "left bottom",
60
- "left-top": "left top",
61
- right: "right",
62
- "right-bottom": "right bottom",
63
- "right-top": "right top",
64
- top: "top"
65
- },
66
- backgroundSize: {
67
- auto: "auto",
68
- cover: "cover",
69
- contain: "contain"
70
- },
71
- blur: {
72
- 0: "0",
73
- none: "0",
74
- sm: "4px",
75
- DEFAULT: "8px",
76
- md: "12px",
77
- lg: "16px",
78
- xl: "24px",
79
- "2xl": "40px",
80
- "3xl": "64px"
81
- },
82
- borderColor: ({ theme: e }) => ({
83
- ...e("colors"),
84
- DEFAULT: e("colors.gray.200", "currentColor")
85
- }),
86
- borderOpacity: ({ theme: e }) => e("opacity"),
87
- borderRadius: {
88
- none: "0px",
89
- sm: "0.125rem",
90
- DEFAULT: "0.25rem",
91
- md: "0.375rem",
92
- lg: "0.5rem",
93
- xl: "0.75rem",
94
- "2xl": "1rem",
95
- "3xl": "1.5rem",
96
- full: "9999px"
97
- },
98
- borderSpacing: ({ theme: e }) => ({
99
- ...e("spacing")
100
- }),
101
- borderWidth: {
102
- DEFAULT: "1px",
103
- 0: "0px",
104
- 2: "2px",
105
- 4: "4px",
106
- 8: "8px"
107
- },
108
- boxShadow: {
109
- sm: "0 1px 2px 0 rgb(0 0 0 / 0.05)",
110
- DEFAULT: "0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)",
111
- md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
112
- lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
113
- xl: "0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)",
114
- "2xl": "0 25px 50px -12px rgb(0 0 0 / 0.25)",
115
- inner: "inset 0 2px 4px 0 rgb(0 0 0 / 0.05)",
116
- none: "none"
117
- },
118
- boxShadowColor: ({ theme: e }) => e("colors"),
119
- brightness: {
120
- 0: "0",
121
- 50: ".5",
122
- 75: ".75",
123
- 90: ".9",
124
- 95: ".95",
125
- 100: "1",
126
- 105: "1.05",
127
- 110: "1.1",
128
- 125: "1.25",
129
- 150: "1.5",
130
- 200: "2"
131
- },
132
- caretColor: ({ theme: e }) => e("colors"),
133
- colors: ({ colors: e }) => ({
134
- inherit: e.inherit,
135
- current: e.current,
136
- transparent: e.transparent,
137
- black: e.black,
138
- white: e.white,
139
- slate: e.slate,
140
- gray: e.gray,
141
- zinc: e.zinc,
142
- neutral: e.neutral,
143
- stone: e.stone,
144
- red: e.red,
145
- orange: e.orange,
146
- amber: e.amber,
147
- yellow: e.yellow,
148
- lime: e.lime,
149
- green: e.green,
150
- emerald: e.emerald,
151
- teal: e.teal,
152
- cyan: e.cyan,
153
- sky: e.sky,
154
- blue: e.blue,
155
- indigo: e.indigo,
156
- violet: e.violet,
157
- purple: e.purple,
158
- fuchsia: e.fuchsia,
159
- pink: e.pink,
160
- rose: e.rose
161
- }),
162
- columns: {
163
- auto: "auto",
164
- 1: "1",
165
- 2: "2",
166
- 3: "3",
167
- 4: "4",
168
- 5: "5",
169
- 6: "6",
170
- 7: "7",
171
- 8: "8",
172
- 9: "9",
173
- 10: "10",
174
- 11: "11",
175
- 12: "12",
176
- "3xs": "16rem",
177
- "2xs": "18rem",
178
- xs: "20rem",
179
- sm: "24rem",
180
- md: "28rem",
181
- lg: "32rem",
182
- xl: "36rem",
183
- "2xl": "42rem",
184
- "3xl": "48rem",
185
- "4xl": "56rem",
186
- "5xl": "64rem",
187
- "6xl": "72rem",
188
- "7xl": "80rem"
189
- },
190
- container: {},
191
- content: {
192
- none: "none"
193
- },
194
- contrast: {
195
- 0: "0",
196
- 50: ".5",
197
- 75: ".75",
198
- 100: "1",
199
- 125: "1.25",
200
- 150: "1.5",
201
- 200: "2"
202
- },
203
- cursor: {
204
- auto: "auto",
205
- default: "default",
206
- pointer: "pointer",
207
- wait: "wait",
208
- text: "text",
209
- move: "move",
210
- help: "help",
211
- "not-allowed": "not-allowed",
212
- none: "none",
213
- "context-menu": "context-menu",
214
- progress: "progress",
215
- cell: "cell",
216
- crosshair: "crosshair",
217
- "vertical-text": "vertical-text",
218
- alias: "alias",
219
- copy: "copy",
220
- "no-drop": "no-drop",
221
- grab: "grab",
222
- grabbing: "grabbing",
223
- "all-scroll": "all-scroll",
224
- "col-resize": "col-resize",
225
- "row-resize": "row-resize",
226
- "n-resize": "n-resize",
227
- "e-resize": "e-resize",
228
- "s-resize": "s-resize",
229
- "w-resize": "w-resize",
230
- "ne-resize": "ne-resize",
231
- "nw-resize": "nw-resize",
232
- "se-resize": "se-resize",
233
- "sw-resize": "sw-resize",
234
- "ew-resize": "ew-resize",
235
- "ns-resize": "ns-resize",
236
- "nesw-resize": "nesw-resize",
237
- "nwse-resize": "nwse-resize",
238
- "zoom-in": "zoom-in",
239
- "zoom-out": "zoom-out"
240
- },
241
- divideColor: ({ theme: e }) => e("borderColor"),
242
- divideOpacity: ({ theme: e }) => e("borderOpacity"),
243
- divideWidth: ({ theme: e }) => e("borderWidth"),
244
- dropShadow: {
245
- sm: "0 1px 1px rgb(0 0 0 / 0.05)",
246
- DEFAULT: ["0 1px 2px rgb(0 0 0 / 0.1)", "0 1px 1px rgb(0 0 0 / 0.06)"],
247
- md: ["0 4px 3px rgb(0 0 0 / 0.07)", "0 2px 2px rgb(0 0 0 / 0.06)"],
248
- lg: ["0 10px 8px rgb(0 0 0 / 0.04)", "0 4px 3px rgb(0 0 0 / 0.1)"],
249
- xl: ["0 20px 13px rgb(0 0 0 / 0.03)", "0 8px 5px rgb(0 0 0 / 0.08)"],
250
- "2xl": "0 25px 25px rgb(0 0 0 / 0.15)",
251
- none: "0 0 #0000"
252
- },
253
- fill: ({ theme: e }) => ({
254
- none: "none",
255
- ...e("colors")
256
- }),
257
- flex: {
258
- 1: "1 1 0%",
259
- auto: "1 1 auto",
260
- initial: "0 1 auto",
261
- none: "none"
262
- },
263
- flexBasis: ({ theme: e }) => ({
264
- auto: "auto",
265
- ...e("spacing"),
266
- "1/2": "50%",
267
- "1/3": "33.333333%",
268
- "2/3": "66.666667%",
269
- "1/4": "25%",
270
- "2/4": "50%",
271
- "3/4": "75%",
272
- "1/5": "20%",
273
- "2/5": "40%",
274
- "3/5": "60%",
275
- "4/5": "80%",
276
- "1/6": "16.666667%",
277
- "2/6": "33.333333%",
278
- "3/6": "50%",
279
- "4/6": "66.666667%",
280
- "5/6": "83.333333%",
281
- "1/12": "8.333333%",
282
- "2/12": "16.666667%",
283
- "3/12": "25%",
284
- "4/12": "33.333333%",
285
- "5/12": "41.666667%",
286
- "6/12": "50%",
287
- "7/12": "58.333333%",
288
- "8/12": "66.666667%",
289
- "9/12": "75%",
290
- "10/12": "83.333333%",
291
- "11/12": "91.666667%",
292
- full: "100%"
293
- }),
294
- flexGrow: {
295
- 0: "0",
296
- DEFAULT: "1"
297
- },
298
- flexShrink: {
299
- 0: "0",
300
- DEFAULT: "1"
301
- },
302
- fontFamily: {
303
- sans: [
304
- "ui-sans-serif",
305
- "system-ui",
306
- "-apple-system",
307
- "BlinkMacSystemFont",
308
- '"Segoe UI"',
309
- "Roboto",
310
- '"Helvetica Neue"',
311
- "Arial",
312
- '"Noto Sans"',
313
- "sans-serif",
314
- '"Apple Color Emoji"',
315
- '"Segoe UI Emoji"',
316
- '"Segoe UI Symbol"',
317
- '"Noto Color Emoji"'
318
- ],
319
- serif: ["ui-serif", "Georgia", "Cambria", '"Times New Roman"', "Times", "serif"],
320
- mono: [
321
- "ui-monospace",
322
- "SFMono-Regular",
323
- "Menlo",
324
- "Monaco",
325
- "Consolas",
326
- '"Liberation Mono"',
327
- '"Courier New"',
328
- "monospace"
329
- ]
330
- },
331
- fontSize: {
332
- xs: ["0.75rem", { lineHeight: "1rem" }],
333
- sm: ["0.875rem", { lineHeight: "1.25rem" }],
334
- base: ["1rem", { lineHeight: "1.5rem" }],
335
- lg: ["1.125rem", { lineHeight: "1.75rem" }],
336
- xl: ["1.25rem", { lineHeight: "1.75rem" }],
337
- "2xl": ["1.5rem", { lineHeight: "2rem" }],
338
- "3xl": ["1.875rem", { lineHeight: "2.25rem" }],
339
- "4xl": ["2.25rem", { lineHeight: "2.5rem" }],
340
- "5xl": ["3rem", { lineHeight: "1" }],
341
- "6xl": ["3.75rem", { lineHeight: "1" }],
342
- "7xl": ["4.5rem", { lineHeight: "1" }],
343
- "8xl": ["6rem", { lineHeight: "1" }],
344
- "9xl": ["8rem", { lineHeight: "1" }]
345
- },
346
- fontWeight: {
347
- thin: "100",
348
- extralight: "200",
349
- light: "300",
350
- normal: "400",
351
- medium: "500",
352
- semibold: "600",
353
- bold: "700",
354
- extrabold: "800",
355
- black: "900"
356
- },
357
- gap: ({ theme: e }) => e("spacing"),
358
- gradientColorStops: ({ theme: e }) => e("colors"),
359
- gradientColorStopPositions: {
360
- "0%": "0%",
361
- "5%": "5%",
362
- "10%": "10%",
363
- "15%": "15%",
364
- "20%": "20%",
365
- "25%": "25%",
366
- "30%": "30%",
367
- "35%": "35%",
368
- "40%": "40%",
369
- "45%": "45%",
370
- "50%": "50%",
371
- "55%": "55%",
372
- "60%": "60%",
373
- "65%": "65%",
374
- "70%": "70%",
375
- "75%": "75%",
376
- "80%": "80%",
377
- "85%": "85%",
378
- "90%": "90%",
379
- "95%": "95%",
380
- "100%": "100%"
381
- },
382
- grayscale: {
383
- 0: "0",
384
- DEFAULT: "100%"
385
- },
386
- gridAutoColumns: {
387
- auto: "auto",
388
- min: "min-content",
389
- max: "max-content",
390
- fr: "minmax(0, 1fr)"
391
- },
392
- gridAutoRows: {
393
- auto: "auto",
394
- min: "min-content",
395
- max: "max-content",
396
- fr: "minmax(0, 1fr)"
397
- },
398
- gridColumn: {
399
- auto: "auto",
400
- "span-1": "span 1 / span 1",
401
- "span-2": "span 2 / span 2",
402
- "span-3": "span 3 / span 3",
403
- "span-4": "span 4 / span 4",
404
- "span-5": "span 5 / span 5",
405
- "span-6": "span 6 / span 6",
406
- "span-7": "span 7 / span 7",
407
- "span-8": "span 8 / span 8",
408
- "span-9": "span 9 / span 9",
409
- "span-10": "span 10 / span 10",
410
- "span-11": "span 11 / span 11",
411
- "span-12": "span 12 / span 12",
412
- "span-full": "1 / -1"
413
- },
414
- gridColumnEnd: {
415
- auto: "auto",
416
- 1: "1",
417
- 2: "2",
418
- 3: "3",
419
- 4: "4",
420
- 5: "5",
421
- 6: "6",
422
- 7: "7",
423
- 8: "8",
424
- 9: "9",
425
- 10: "10",
426
- 11: "11",
427
- 12: "12",
428
- 13: "13"
429
- },
430
- gridColumnStart: {
431
- auto: "auto",
432
- 1: "1",
433
- 2: "2",
434
- 3: "3",
435
- 4: "4",
436
- 5: "5",
437
- 6: "6",
438
- 7: "7",
439
- 8: "8",
440
- 9: "9",
441
- 10: "10",
442
- 11: "11",
443
- 12: "12",
444
- 13: "13"
445
- },
446
- gridRow: {
447
- auto: "auto",
448
- "span-1": "span 1 / span 1",
449
- "span-2": "span 2 / span 2",
450
- "span-3": "span 3 / span 3",
451
- "span-4": "span 4 / span 4",
452
- "span-5": "span 5 / span 5",
453
- "span-6": "span 6 / span 6",
454
- "span-full": "1 / -1"
455
- },
456
- gridRowEnd: {
457
- auto: "auto",
458
- 1: "1",
459
- 2: "2",
460
- 3: "3",
461
- 4: "4",
462
- 5: "5",
463
- 6: "6",
464
- 7: "7"
465
- },
466
- gridRowStart: {
467
- auto: "auto",
468
- 1: "1",
469
- 2: "2",
470
- 3: "3",
471
- 4: "4",
472
- 5: "5",
473
- 6: "6",
474
- 7: "7"
475
- },
476
- gridTemplateColumns: {
477
- none: "none",
478
- 1: "repeat(1, minmax(0, 1fr))",
479
- 2: "repeat(2, minmax(0, 1fr))",
480
- 3: "repeat(3, minmax(0, 1fr))",
481
- 4: "repeat(4, minmax(0, 1fr))",
482
- 5: "repeat(5, minmax(0, 1fr))",
483
- 6: "repeat(6, minmax(0, 1fr))",
484
- 7: "repeat(7, minmax(0, 1fr))",
485
- 8: "repeat(8, minmax(0, 1fr))",
486
- 9: "repeat(9, minmax(0, 1fr))",
487
- 10: "repeat(10, minmax(0, 1fr))",
488
- 11: "repeat(11, minmax(0, 1fr))",
489
- 12: "repeat(12, minmax(0, 1fr))"
490
- },
491
- gridTemplateRows: {
492
- none: "none",
493
- 1: "repeat(1, minmax(0, 1fr))",
494
- 2: "repeat(2, minmax(0, 1fr))",
495
- 3: "repeat(3, minmax(0, 1fr))",
496
- 4: "repeat(4, minmax(0, 1fr))",
497
- 5: "repeat(5, minmax(0, 1fr))",
498
- 6: "repeat(6, minmax(0, 1fr))"
499
- },
500
- height: ({ theme: e }) => ({
501
- auto: "auto",
502
- ...e("spacing"),
503
- "1/2": "50%",
504
- "1/3": "33.333333%",
505
- "2/3": "66.666667%",
506
- "1/4": "25%",
507
- "2/4": "50%",
508
- "3/4": "75%",
509
- "1/5": "20%",
510
- "2/5": "40%",
511
- "3/5": "60%",
512
- "4/5": "80%",
513
- "1/6": "16.666667%",
514
- "2/6": "33.333333%",
515
- "3/6": "50%",
516
- "4/6": "66.666667%",
517
- "5/6": "83.333333%",
518
- full: "100%",
519
- screen: "100vh",
520
- min: "min-content",
521
- max: "max-content",
522
- fit: "fit-content"
523
- }),
524
- hueRotate: {
525
- 0: "0deg",
526
- 15: "15deg",
527
- 30: "30deg",
528
- 60: "60deg",
529
- 90: "90deg",
530
- 180: "180deg"
531
- },
532
- inset: ({ theme: e }) => ({
533
- auto: "auto",
534
- ...e("spacing"),
535
- "1/2": "50%",
536
- "1/3": "33.333333%",
537
- "2/3": "66.666667%",
538
- "1/4": "25%",
539
- "2/4": "50%",
540
- "3/4": "75%",
541
- full: "100%"
542
- }),
543
- invert: {
544
- 0: "0",
545
- DEFAULT: "100%"
546
- },
547
- keyframes: {
548
- spin: {
549
- to: {
550
- transform: "rotate(360deg)"
551
- }
552
- },
553
- ping: {
554
- "75%, 100%": {
555
- transform: "scale(2)",
556
- opacity: "0"
557
- }
558
- },
559
- pulse: {
560
- "50%": {
561
- opacity: ".5"
562
- }
563
- },
564
- bounce: {
565
- "0%, 100%": {
566
- transform: "translateY(-25%)",
567
- animationTimingFunction: "cubic-bezier(0.8,0,1,1)"
568
- },
569
- "50%": {
570
- transform: "none",
571
- animationTimingFunction: "cubic-bezier(0,0,0.2,1)"
572
- }
573
- }
574
- },
575
- letterSpacing: {
576
- tighter: "-0.05em",
577
- tight: "-0.025em",
578
- normal: "0em",
579
- wide: "0.025em",
580
- wider: "0.05em",
581
- widest: "0.1em"
582
- },
583
- lineHeight: {
584
- none: "1",
585
- tight: "1.25",
586
- snug: "1.375",
587
- normal: "1.5",
588
- relaxed: "1.625",
589
- loose: "2",
590
- 3: ".75rem",
591
- 4: "1rem",
592
- 5: "1.25rem",
593
- 6: "1.5rem",
594
- 7: "1.75rem",
595
- 8: "2rem",
596
- 9: "2.25rem",
597
- 10: "2.5rem"
598
- },
599
- listStyleType: {
600
- none: "none",
601
- disc: "disc",
602
- decimal: "decimal"
603
- },
604
- listStyleImage: {
605
- none: "none"
606
- },
607
- margin: ({ theme: e }) => ({
608
- auto: "auto",
609
- ...e("spacing")
610
- }),
611
- lineClamp: {
612
- 1: "1",
613
- 2: "2",
614
- 3: "3",
615
- 4: "4",
616
- 5: "5",
617
- 6: "6"
618
- },
619
- maxHeight: ({ theme: e }) => ({
620
- ...e("spacing"),
621
- none: "none",
622
- full: "100%",
623
- screen: "100vh",
624
- min: "min-content",
625
- max: "max-content",
626
- fit: "fit-content"
627
- }),
628
- maxWidth: ({ theme: e, breakpoints: t }) => ({
629
- none: "none",
630
- 0: "0rem",
631
- xs: "20rem",
632
- sm: "24rem",
633
- md: "28rem",
634
- lg: "32rem",
635
- xl: "36rem",
636
- "2xl": "42rem",
637
- "3xl": "48rem",
638
- "4xl": "56rem",
639
- "5xl": "64rem",
640
- "6xl": "72rem",
641
- "7xl": "80rem",
642
- full: "100%",
643
- min: "min-content",
644
- max: "max-content",
645
- fit: "fit-content",
646
- prose: "65ch",
647
- ...t(e("screens"))
648
- }),
649
- minHeight: {
650
- 0: "0px",
651
- full: "100%",
652
- screen: "100vh",
653
- min: "min-content",
654
- max: "max-content",
655
- fit: "fit-content"
656
- },
657
- minWidth: {
658
- 0: "0px",
659
- full: "100%",
660
- min: "min-content",
661
- max: "max-content",
662
- fit: "fit-content"
663
- },
664
- objectPosition: {
665
- bottom: "bottom",
666
- center: "center",
667
- left: "left",
668
- "left-bottom": "left bottom",
669
- "left-top": "left top",
670
- right: "right",
671
- "right-bottom": "right bottom",
672
- "right-top": "right top",
673
- top: "top"
674
- },
675
- opacity: {
676
- 0: "0",
677
- 5: "0.05",
678
- 10: "0.1",
679
- 20: "0.2",
680
- 25: "0.25",
681
- 30: "0.3",
682
- 40: "0.4",
683
- 50: "0.5",
684
- 60: "0.6",
685
- 70: "0.7",
686
- 75: "0.75",
687
- 80: "0.8",
688
- 90: "0.9",
689
- 95: "0.95",
690
- 100: "1"
691
- },
692
- order: {
693
- first: "-9999",
694
- last: "9999",
695
- none: "0",
696
- 1: "1",
697
- 2: "2",
698
- 3: "3",
699
- 4: "4",
700
- 5: "5",
701
- 6: "6",
702
- 7: "7",
703
- 8: "8",
704
- 9: "9",
705
- 10: "10",
706
- 11: "11",
707
- 12: "12"
708
- },
709
- outlineColor: ({ theme: e }) => e("colors"),
710
- outlineOffset: {
711
- 0: "0px",
712
- 1: "1px",
713
- 2: "2px",
714
- 4: "4px",
715
- 8: "8px"
716
- },
717
- outlineWidth: {
718
- 0: "0px",
719
- 1: "1px",
720
- 2: "2px",
721
- 4: "4px",
722
- 8: "8px"
723
- },
724
- padding: ({ theme: e }) => e("spacing"),
725
- placeholderColor: ({ theme: e }) => e("colors"),
726
- placeholderOpacity: ({ theme: e }) => e("opacity"),
727
- ringColor: ({ theme: e }) => ({
728
- DEFAULT: e("colors.blue.500", "#3b82f6"),
729
- ...e("colors")
730
- }),
731
- ringOffsetColor: ({ theme: e }) => e("colors"),
732
- ringOffsetWidth: {
733
- 0: "0px",
734
- 1: "1px",
735
- 2: "2px",
736
- 4: "4px",
737
- 8: "8px"
738
- },
739
- ringOpacity: ({ theme: e }) => ({
740
- DEFAULT: "0.5",
741
- ...e("opacity")
742
- }),
743
- ringWidth: {
744
- DEFAULT: "3px",
745
- 0: "0px",
746
- 1: "1px",
747
- 2: "2px",
748
- 4: "4px",
749
- 8: "8px"
750
- },
751
- rotate: {
752
- 0: "0deg",
753
- 1: "1deg",
754
- 2: "2deg",
755
- 3: "3deg",
756
- 6: "6deg",
757
- 12: "12deg",
758
- 45: "45deg",
759
- 90: "90deg",
760
- 180: "180deg"
761
- },
762
- saturate: {
763
- 0: "0",
764
- 50: ".5",
765
- 100: "1",
766
- 150: "1.5",
767
- 200: "2"
768
- },
769
- scale: {
770
- 0: "0",
771
- 50: ".5",
772
- 75: ".75",
773
- 90: ".9",
774
- 95: ".95",
775
- 100: "1",
776
- 105: "1.05",
777
- 110: "1.1",
778
- 125: "1.25",
779
- 150: "1.5"
780
- },
781
- screens: {
782
- sm: "640px",
783
- md: "768px",
784
- lg: "1024px",
785
- xl: "1280px",
786
- "2xl": "1536px"
787
- },
788
- scrollMargin: ({ theme: e }) => ({
789
- ...e("spacing")
790
- }),
791
- scrollPadding: ({ theme: e }) => e("spacing"),
792
- sepia: {
793
- 0: "0",
794
- DEFAULT: "100%"
795
- },
796
- skew: {
797
- 0: "0deg",
798
- 1: "1deg",
799
- 2: "2deg",
800
- 3: "3deg",
801
- 6: "6deg",
802
- 12: "12deg"
803
- },
804
- space: ({ theme: e }) => ({
805
- ...e("spacing")
806
- }),
807
- spacing: {
808
- px: "1px",
809
- 0: "0px",
810
- 0.5: "0.125rem",
811
- 1: "0.25rem",
812
- 1.5: "0.375rem",
813
- 2: "0.5rem",
814
- 2.5: "0.625rem",
815
- 3: "0.75rem",
816
- 3.5: "0.875rem",
817
- 4: "1rem",
818
- 5: "1.25rem",
819
- 6: "1.5rem",
820
- 7: "1.75rem",
821
- 8: "2rem",
822
- 9: "2.25rem",
823
- 10: "2.5rem",
824
- 11: "2.75rem",
825
- 12: "3rem",
826
- 14: "3.5rem",
827
- 16: "4rem",
828
- 20: "5rem",
829
- 24: "6rem",
830
- 28: "7rem",
831
- 32: "8rem",
832
- 36: "9rem",
833
- 40: "10rem",
834
- 44: "11rem",
835
- 48: "12rem",
836
- 52: "13rem",
837
- 56: "14rem",
838
- 60: "15rem",
839
- 64: "16rem",
840
- 72: "18rem",
841
- 80: "20rem",
842
- 96: "24rem"
843
- },
844
- stroke: ({ theme: e }) => ({
845
- none: "none",
846
- ...e("colors")
847
- }),
848
- strokeWidth: {
849
- 0: "0",
850
- 1: "1",
851
- 2: "2"
852
- },
853
- supports: {},
854
- data: {},
855
- textColor: ({ theme: e }) => e("colors"),
856
- textDecorationColor: ({ theme: e }) => e("colors"),
857
- textDecorationThickness: {
858
- auto: "auto",
859
- "from-font": "from-font",
860
- 0: "0px",
861
- 1: "1px",
862
- 2: "2px",
863
- 4: "4px",
864
- 8: "8px"
865
- },
866
- textIndent: ({ theme: e }) => ({
867
- ...e("spacing")
868
- }),
869
- textOpacity: ({ theme: e }) => e("opacity"),
870
- textUnderlineOffset: {
871
- auto: "auto",
872
- 0: "0px",
873
- 1: "1px",
874
- 2: "2px",
875
- 4: "4px",
876
- 8: "8px"
877
- },
878
- transformOrigin: {
879
- center: "center",
880
- top: "top",
881
- "top-right": "top right",
882
- right: "right",
883
- "bottom-right": "bottom right",
884
- bottom: "bottom",
885
- "bottom-left": "bottom left",
886
- left: "left",
887
- "top-left": "top left"
888
- },
889
- transitionDelay: {
890
- 0: "0s",
891
- 75: "75ms",
892
- 100: "100ms",
893
- 150: "150ms",
894
- 200: "200ms",
895
- 300: "300ms",
896
- 500: "500ms",
897
- 700: "700ms",
898
- 1e3: "1000ms"
899
- },
900
- transitionDuration: {
901
- DEFAULT: "150ms",
902
- 0: "0s",
903
- 75: "75ms",
904
- 100: "100ms",
905
- 150: "150ms",
906
- 200: "200ms",
907
- 300: "300ms",
908
- 500: "500ms",
909
- 700: "700ms",
910
- 1e3: "1000ms"
911
- },
912
- transitionProperty: {
913
- none: "none",
914
- all: "all",
915
- DEFAULT: "color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter",
916
- colors: "color, background-color, border-color, text-decoration-color, fill, stroke",
917
- opacity: "opacity",
918
- shadow: "box-shadow",
919
- transform: "transform"
920
- },
921
- transitionTimingFunction: {
922
- DEFAULT: "cubic-bezier(0.4, 0, 0.2, 1)",
923
- linear: "linear",
924
- in: "cubic-bezier(0.4, 0, 1, 1)",
925
- out: "cubic-bezier(0, 0, 0.2, 1)",
926
- "in-out": "cubic-bezier(0.4, 0, 0.2, 1)"
927
- },
928
- translate: ({ theme: e }) => ({
929
- ...e("spacing"),
930
- "1/2": "50%",
931
- "1/3": "33.333333%",
932
- "2/3": "66.666667%",
933
- "1/4": "25%",
934
- "2/4": "50%",
935
- "3/4": "75%",
936
- full: "100%"
937
- }),
938
- width: ({ theme: e }) => ({
939
- auto: "auto",
940
- ...e("spacing"),
941
- "1/2": "50%",
942
- "1/3": "33.333333%",
943
- "2/3": "66.666667%",
944
- "1/4": "25%",
945
- "2/4": "50%",
946
- "3/4": "75%",
947
- "1/5": "20%",
948
- "2/5": "40%",
949
- "3/5": "60%",
950
- "4/5": "80%",
951
- "1/6": "16.666667%",
952
- "2/6": "33.333333%",
953
- "3/6": "50%",
954
- "4/6": "66.666667%",
955
- "5/6": "83.333333%",
956
- "1/12": "8.333333%",
957
- "2/12": "16.666667%",
958
- "3/12": "25%",
959
- "4/12": "33.333333%",
960
- "5/12": "41.666667%",
961
- "6/12": "50%",
962
- "7/12": "58.333333%",
963
- "8/12": "66.666667%",
964
- "9/12": "75%",
965
- "10/12": "83.333333%",
966
- "11/12": "91.666667%",
967
- full: "100%",
968
- screen: "100vw",
969
- min: "min-content",
970
- max: "max-content",
971
- fit: "fit-content"
972
- }),
973
- willChange: {
974
- auto: "auto",
975
- scroll: "scroll-position",
976
- contents: "contents",
977
- transform: "transform"
978
- },
979
- zIndex: {
980
- auto: "auto",
981
- 0: "0",
982
- 10: "10",
983
- 20: "20",
984
- 30: "30",
985
- 40: "40",
986
- 50: "50"
987
- }
988
- },
989
- plugins: []
990
- };
1
+ import { createConfigUtils as d } from "./lyra34.js";
2
+ import { mergeClassList as h } from "./lyra35.js";
3
+ import { twJoin as p } from "./lyra32.js";
4
+ function T() {
5
+ for (var c = arguments.length, a = new Array(c), e = 0; e < c; e++)
6
+ a[e] = arguments[e];
7
+ var t, o, u, f = g;
8
+ function g(r) {
9
+ var n = a[0], i = a.slice(1), m = i.reduce(function(v, s) {
10
+ return s(v);
11
+ }, n());
12
+ return t = d(m), o = t.cache.get, u = t.cache.set, f = l, l(r);
13
+ }
14
+ function l(r) {
15
+ var n = o(r);
16
+ if (n)
17
+ return n;
18
+ var i = h(r, t);
19
+ return u(r, i), i;
20
+ }
21
+ return function() {
22
+ return f(p.apply(null, arguments));
23
+ };
24
+ }
991
25
  export {
992
- r as c
26
+ T as createTailwindMerge
993
27
  };