@vaneui/ui 0.0.8 → 0.0.9

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 (2) hide show
  1. package/dist/all.css +1018 -0
  2. package/package.json +6 -2
package/dist/all.css ADDED
@@ -0,0 +1,1018 @@
1
+ /*! tailwindcss v4.0.9 | MIT License | https://tailwindcss.com */
2
+ @layer theme, base, components, utilities;
3
+ @layer theme {
4
+ :root, :host {
5
+ --font-sans: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
6
+ "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
7
+ --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
8
+ --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
9
+ "Courier New", monospace;
10
+ --color-red-200: oklch(0.885 0.062 18.334);
11
+ --color-yellow-200: oklch(0.945 0.129 101.54);
12
+ --color-green-200: oklch(0.925 0.084 155.995);
13
+ --color-blue-200: oklch(0.882 0.059 254.128);
14
+ --color-gray-100: oklch(0.967 0.003 264.542);
15
+ --color-gray-200: oklch(0.928 0.006 264.531);
16
+ --spacing: 0.25rem;
17
+ --container-3xl: 48rem;
18
+ --container-4xl: 56rem;
19
+ --container-5xl: 64rem;
20
+ --container-6xl: 72rem;
21
+ --container-7xl: 80rem;
22
+ --text-xs: 0.75rem;
23
+ --text-xs--line-height: calc(1 / 0.75);
24
+ --text-sm: 0.875rem;
25
+ --text-sm--line-height: calc(1.25 / 0.875);
26
+ --text-base: 1rem;
27
+ --text-base--line-height: calc(1.5 / 1);
28
+ --text-lg: 1.125rem;
29
+ --text-lg--line-height: calc(1.75 / 1.125);
30
+ --text-xl: 1.25rem;
31
+ --text-xl--line-height: calc(1.75 / 1.25);
32
+ --text-2xl: 1.5rem;
33
+ --text-2xl--line-height: calc(2 / 1.5);
34
+ --text-3xl: 1.875rem;
35
+ --text-3xl--line-height: calc(2.25 / 1.875);
36
+ --text-4xl: 2.25rem;
37
+ --text-4xl--line-height: calc(2.5 / 2.25);
38
+ --text-5xl: 3rem;
39
+ --text-5xl--line-height: 1;
40
+ --text-6xl: 3.75rem;
41
+ --text-6xl--line-height: 1;
42
+ --text-7xl: 4.5rem;
43
+ --text-7xl--line-height: 1;
44
+ --font-weight-thin: 100;
45
+ --font-weight-extralight: 200;
46
+ --font-weight-light: 300;
47
+ --font-weight-normal: 400;
48
+ --font-weight-medium: 500;
49
+ --font-weight-semibold: 600;
50
+ --font-weight-bold: 700;
51
+ --font-weight-extrabold: 800;
52
+ --font-weight-black: 900;
53
+ --radius-sm: 0.25rem;
54
+ --radius-md: 0.375rem;
55
+ --radius-lg: 0.5rem;
56
+ --radius-xl: 0.75rem;
57
+ --radius-2xl: 1rem;
58
+ --default-transition-duration: 150ms;
59
+ --default-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
60
+ --default-font-family: var(--font-sans);
61
+ --default-font-feature-settings: var(--font-sans--font-feature-settings);
62
+ --default-font-variation-settings: var(
63
+ --font-sans--font-variation-settings
64
+ );
65
+ --default-mono-font-family: var(--font-mono);
66
+ --default-mono-font-feature-settings: var(
67
+ --font-mono--font-feature-settings
68
+ );
69
+ --default-mono-font-variation-settings: var(
70
+ --font-mono--font-variation-settings
71
+ );
72
+ }
73
+ }
74
+ @layer base {
75
+ *, ::after, ::before, ::backdrop, ::file-selector-button {
76
+ box-sizing: border-box;
77
+ margin: 0;
78
+ padding: 0;
79
+ border: 0 solid;
80
+ }
81
+ html, :host {
82
+ line-height: 1.5;
83
+ -webkit-text-size-adjust: 100%;
84
+ tab-size: 4;
85
+ font-family: var( --default-font-family, ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" );
86
+ font-feature-settings: var(--default-font-feature-settings, normal);
87
+ font-variation-settings: var( --default-font-variation-settings, normal );
88
+ -webkit-tap-highlight-color: transparent;
89
+ }
90
+ body {
91
+ line-height: inherit;
92
+ }
93
+ hr {
94
+ height: 0;
95
+ color: inherit;
96
+ border-top-width: 1px;
97
+ }
98
+ abbr:where([title]) {
99
+ -webkit-text-decoration: underline dotted;
100
+ text-decoration: underline dotted;
101
+ }
102
+ h1, h2, h3, h4, h5, h6 {
103
+ font-size: inherit;
104
+ font-weight: inherit;
105
+ }
106
+ a {
107
+ color: inherit;
108
+ -webkit-text-decoration: inherit;
109
+ text-decoration: inherit;
110
+ }
111
+ b, strong {
112
+ font-weight: bolder;
113
+ }
114
+ code, kbd, samp, pre {
115
+ font-family: var( --default-mono-font-family, ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace );
116
+ font-feature-settings: var( --default-mono-font-feature-settings, normal );
117
+ font-variation-settings: var( --default-mono-font-variation-settings, normal );
118
+ font-size: 1em;
119
+ }
120
+ small {
121
+ font-size: 80%;
122
+ }
123
+ sub, sup {
124
+ font-size: 75%;
125
+ line-height: 0;
126
+ position: relative;
127
+ vertical-align: baseline;
128
+ }
129
+ sub {
130
+ bottom: -0.25em;
131
+ }
132
+ sup {
133
+ top: -0.5em;
134
+ }
135
+ table {
136
+ text-indent: 0;
137
+ border-color: inherit;
138
+ border-collapse: collapse;
139
+ }
140
+ :-moz-focusring {
141
+ outline: auto;
142
+ }
143
+ progress {
144
+ vertical-align: baseline;
145
+ }
146
+ summary {
147
+ display: list-item;
148
+ }
149
+ ol, ul, menu {
150
+ list-style: none;
151
+ }
152
+ img, svg, video, canvas, audio, iframe, embed, object {
153
+ display: block;
154
+ vertical-align: middle;
155
+ }
156
+ img, video {
157
+ max-width: 100%;
158
+ height: auto;
159
+ }
160
+ button, input, select, optgroup, textarea, ::file-selector-button {
161
+ font: inherit;
162
+ font-feature-settings: inherit;
163
+ font-variation-settings: inherit;
164
+ letter-spacing: inherit;
165
+ color: inherit;
166
+ border-radius: 0;
167
+ background-color: transparent;
168
+ opacity: 1;
169
+ }
170
+ :where(select:is([multiple], [size])) optgroup {
171
+ font-weight: bolder;
172
+ }
173
+ :where(select:is([multiple], [size])) optgroup option {
174
+ padding-inline-start: 20px;
175
+ }
176
+ ::file-selector-button {
177
+ margin-inline-end: 4px;
178
+ }
179
+ ::placeholder {
180
+ opacity: 1;
181
+ color: color-mix(in oklab, currentColor 50%, transparent);
182
+ }
183
+ textarea {
184
+ resize: vertical;
185
+ }
186
+ ::-webkit-search-decoration {
187
+ -webkit-appearance: none;
188
+ }
189
+ ::-webkit-date-and-time-value {
190
+ min-height: 1lh;
191
+ text-align: inherit;
192
+ }
193
+ ::-webkit-datetime-edit {
194
+ display: inline-flex;
195
+ }
196
+ ::-webkit-datetime-edit-fields-wrapper {
197
+ padding: 0;
198
+ }
199
+ ::-webkit-datetime-edit, ::-webkit-datetime-edit-year-field, ::-webkit-datetime-edit-month-field, ::-webkit-datetime-edit-day-field, ::-webkit-datetime-edit-hour-field, ::-webkit-datetime-edit-minute-field, ::-webkit-datetime-edit-second-field, ::-webkit-datetime-edit-millisecond-field, ::-webkit-datetime-edit-meridiem-field {
200
+ padding-block: 0;
201
+ }
202
+ :-moz-ui-invalid {
203
+ box-shadow: none;
204
+ }
205
+ button, input:where([type="button"], [type="reset"], [type="submit"]), ::file-selector-button {
206
+ appearance: button;
207
+ }
208
+ ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
209
+ height: auto;
210
+ }
211
+ [hidden]:where(:not([hidden="until-found"])) {
212
+ display: none !important;
213
+ }
214
+ }
215
+ @layer utilities {
216
+ .absolute {
217
+ position: absolute;
218
+ }
219
+ .fixed {
220
+ position: fixed;
221
+ }
222
+ .relative {
223
+ position: relative;
224
+ }
225
+ .static {
226
+ position: static;
227
+ }
228
+ .sticky {
229
+ position: sticky;
230
+ }
231
+ .container {
232
+ width: 100%;
233
+ @media (width >= 40rem) {
234
+ max-width: 40rem;
235
+ }
236
+ @media (width >= 48rem) {
237
+ max-width: 48rem;
238
+ }
239
+ @media (width >= 64rem) {
240
+ max-width: 64rem;
241
+ }
242
+ @media (width >= 80rem) {
243
+ max-width: 80rem;
244
+ }
245
+ @media (width >= 96rem) {
246
+ max-width: 96rem;
247
+ }
248
+ }
249
+ .m-0 {
250
+ margin: calc(var(--spacing) * 0);
251
+ }
252
+ .mx-auto {
253
+ margin-inline: auto;
254
+ }
255
+ .flex {
256
+ display: flex;
257
+ }
258
+ .grid {
259
+ display: grid;
260
+ }
261
+ .h-fit {
262
+ height: fit-content;
263
+ }
264
+ .h-px {
265
+ height: 1px;
266
+ }
267
+ .w-fit {
268
+ width: fit-content;
269
+ }
270
+ .w-full {
271
+ width: 100%;
272
+ }
273
+ .max-w-3xl {
274
+ max-width: var(--container-3xl);
275
+ }
276
+ .max-w-4xl {
277
+ max-width: var(--container-4xl);
278
+ }
279
+ .max-w-5xl {
280
+ max-width: var(--container-5xl);
281
+ }
282
+ .max-w-6xl {
283
+ max-width: var(--container-6xl);
284
+ }
285
+ .max-w-7xl {
286
+ max-width: var(--container-7xl);
287
+ }
288
+ .cursor-pointer {
289
+ cursor: pointer;
290
+ }
291
+ .list-inside {
292
+ list-style-position: inside;
293
+ }
294
+ .list-disc {
295
+ list-style-type: disc;
296
+ }
297
+ .grid-cols-3 {
298
+ grid-template-columns: repeat(3, minmax(0, 1fr));
299
+ }
300
+ .grid-cols-4 {
301
+ grid-template-columns: repeat(4, minmax(0, 1fr));
302
+ }
303
+ .flex-col {
304
+ flex-direction: column;
305
+ }
306
+ .flex-col-reverse {
307
+ flex-direction: column-reverse;
308
+ }
309
+ .flex-row {
310
+ flex-direction: row;
311
+ }
312
+ .flex-row-reverse {
313
+ flex-direction: row-reverse;
314
+ }
315
+ .items-center {
316
+ align-items: center;
317
+ }
318
+ .items-start {
319
+ align-items: flex-start;
320
+ }
321
+ .justify-around {
322
+ justify-content: space-around;
323
+ }
324
+ .justify-baseline {
325
+ justify-content: baseline;
326
+ }
327
+ .justify-between {
328
+ justify-content: space-between;
329
+ }
330
+ .justify-center {
331
+ justify-content: center;
332
+ }
333
+ .justify-end {
334
+ justify-content: flex-end;
335
+ }
336
+ .justify-evenly {
337
+ justify-content: space-evenly;
338
+ }
339
+ .justify-start {
340
+ justify-content: flex-start;
341
+ }
342
+ .justify-stretch {
343
+ justify-content: stretch;
344
+ }
345
+ .gap-0 {
346
+ gap: calc(var(--spacing) * 0);
347
+ }
348
+ .gap-1 {
349
+ gap: calc(var(--spacing) * 1);
350
+ }
351
+ .gap-2 {
352
+ gap: calc(var(--spacing) * 2);
353
+ }
354
+ .gap-4 {
355
+ gap: calc(var(--spacing) * 4);
356
+ }
357
+ .gap-6 {
358
+ gap: calc(var(--spacing) * 6);
359
+ }
360
+ .gap-8 {
361
+ gap: calc(var(--spacing) * 8);
362
+ }
363
+ .gap-10 {
364
+ gap: calc(var(--spacing) * 10);
365
+ }
366
+ .rounded-2xl {
367
+ border-radius: var(--radius-2xl);
368
+ }
369
+ .rounded-full {
370
+ border-radius: calc(infinity * 1px);
371
+ }
372
+ .rounded-lg {
373
+ border-radius: var(--radius-lg);
374
+ }
375
+ .rounded-md {
376
+ border-radius: var(--radius-md);
377
+ }
378
+ .rounded-sm {
379
+ border-radius: var(--radius-sm);
380
+ }
381
+ .rounded-xl {
382
+ border-radius: var(--radius-xl);
383
+ }
384
+ .border {
385
+ border-style: var(--tw-border-style);
386
+ border-width: 1px;
387
+ }
388
+ .border-gray-200 {
389
+ border-color: var(--color-gray-200);
390
+ }
391
+ .bg-blue-200 {
392
+ background-color: var(--color-blue-200);
393
+ }
394
+ .bg-gray-100 {
395
+ background-color: var(--color-gray-100);
396
+ }
397
+ .bg-gray-200 {
398
+ background-color: var(--color-gray-200);
399
+ }
400
+ .bg-green-200 {
401
+ background-color: var(--color-green-200);
402
+ }
403
+ .bg-red-200 {
404
+ background-color: var(--color-red-200);
405
+ }
406
+ .bg-yellow-200 {
407
+ background-color: var(--color-yellow-200);
408
+ }
409
+ .p-0 {
410
+ padding: calc(var(--spacing) * 0);
411
+ }
412
+ .px-1 {
413
+ padding-inline: calc(var(--spacing) * 1);
414
+ }
415
+ .px-2 {
416
+ padding-inline: calc(var(--spacing) * 2);
417
+ }
418
+ .px-3 {
419
+ padding-inline: calc(var(--spacing) * 3);
420
+ }
421
+ .px-4 {
422
+ padding-inline: calc(var(--spacing) * 4);
423
+ }
424
+ .px-5 {
425
+ padding-inline: calc(var(--spacing) * 5);
426
+ }
427
+ .px-6 {
428
+ padding-inline: calc(var(--spacing) * 6);
429
+ }
430
+ .px-8 {
431
+ padding-inline: calc(var(--spacing) * 8);
432
+ }
433
+ .px-10 {
434
+ padding-inline: calc(var(--spacing) * 10);
435
+ }
436
+ .px-12 {
437
+ padding-inline: calc(var(--spacing) * 12);
438
+ }
439
+ .py-1 {
440
+ padding-block: calc(var(--spacing) * 1);
441
+ }
442
+ .py-2 {
443
+ padding-block: calc(var(--spacing) * 2);
444
+ }
445
+ .py-3 {
446
+ padding-block: calc(var(--spacing) * 3);
447
+ }
448
+ .py-4 {
449
+ padding-block: calc(var(--spacing) * 4);
450
+ }
451
+ .py-6 {
452
+ padding-block: calc(var(--spacing) * 6);
453
+ }
454
+ .py-8 {
455
+ padding-block: calc(var(--spacing) * 8);
456
+ }
457
+ .py-10 {
458
+ padding-block: calc(var(--spacing) * 10);
459
+ }
460
+ .py-12 {
461
+ padding-block: calc(var(--spacing) * 12);
462
+ }
463
+ .py-14 {
464
+ padding-block: calc(var(--spacing) * 14);
465
+ }
466
+ .font-mono {
467
+ font-family: var(--font-mono);
468
+ }
469
+ .font-sans {
470
+ font-family: var(--font-sans);
471
+ }
472
+ .font-serif {
473
+ font-family: var(--font-serif);
474
+ }
475
+ .text-2xl {
476
+ font-size: var(--text-2xl);
477
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
478
+ }
479
+ .text-3xl {
480
+ font-size: var(--text-3xl);
481
+ line-height: var(--tw-leading, var(--text-3xl--line-height));
482
+ }
483
+ .text-4xl {
484
+ font-size: var(--text-4xl);
485
+ line-height: var(--tw-leading, var(--text-4xl--line-height));
486
+ }
487
+ .text-5xl {
488
+ font-size: var(--text-5xl);
489
+ line-height: var(--tw-leading, var(--text-5xl--line-height));
490
+ }
491
+ .text-6xl {
492
+ font-size: var(--text-6xl);
493
+ line-height: var(--tw-leading, var(--text-6xl--line-height));
494
+ }
495
+ .text-7xl {
496
+ font-size: var(--text-7xl);
497
+ line-height: var(--tw-leading, var(--text-7xl--line-height));
498
+ }
499
+ .text-base {
500
+ font-size: var(--text-base);
501
+ line-height: var(--tw-leading, var(--text-base--line-height));
502
+ }
503
+ .text-lg {
504
+ font-size: var(--text-lg);
505
+ line-height: var(--tw-leading, var(--text-lg--line-height));
506
+ }
507
+ .text-sm {
508
+ font-size: var(--text-sm);
509
+ line-height: var(--tw-leading, var(--text-sm--line-height));
510
+ }
511
+ .text-xl {
512
+ font-size: var(--text-xl);
513
+ line-height: var(--tw-leading, var(--text-xl--line-height));
514
+ }
515
+ .text-xs {
516
+ font-size: var(--text-xs);
517
+ line-height: var(--tw-leading, var(--text-xs--line-height));
518
+ }
519
+ .font-black {
520
+ --tw-font-weight: var(--font-weight-black);
521
+ font-weight: var(--font-weight-black);
522
+ }
523
+ .font-bold {
524
+ --tw-font-weight: var(--font-weight-bold);
525
+ font-weight: var(--font-weight-bold);
526
+ }
527
+ .font-extrabold {
528
+ --tw-font-weight: var(--font-weight-extrabold);
529
+ font-weight: var(--font-weight-extrabold);
530
+ }
531
+ .font-extralight {
532
+ --tw-font-weight: var(--font-weight-extralight);
533
+ font-weight: var(--font-weight-extralight);
534
+ }
535
+ .font-light {
536
+ --tw-font-weight: var(--font-weight-light);
537
+ font-weight: var(--font-weight-light);
538
+ }
539
+ .font-medium {
540
+ --tw-font-weight: var(--font-weight-medium);
541
+ font-weight: var(--font-weight-medium);
542
+ }
543
+ .font-normal {
544
+ --tw-font-weight: var(--font-weight-normal);
545
+ font-weight: var(--font-weight-normal);
546
+ }
547
+ .font-semibold {
548
+ --tw-font-weight: var(--font-weight-semibold);
549
+ font-weight: var(--font-weight-semibold);
550
+ }
551
+ .font-thin {
552
+ --tw-font-weight: var(--font-weight-thin);
553
+ font-weight: var(--font-weight-thin);
554
+ }
555
+ .text-\(--text-color-accent\) {
556
+ color: var(--text-color-accent);
557
+ }
558
+ .text-\(--text-color-danger\) {
559
+ color: var(--text-color-danger);
560
+ }
561
+ .text-\(--text-color-default\) {
562
+ color: var(--text-color-default);
563
+ }
564
+ .text-\(--text-color-info\) {
565
+ color: var(--text-color-info);
566
+ }
567
+ .text-\(--text-color-link\) {
568
+ color: var(--text-color-link);
569
+ }
570
+ .text-\(--text-color-muted\) {
571
+ color: var(--text-color-muted);
572
+ }
573
+ .text-\(--text-color-primary\) {
574
+ color: var(--text-color-primary);
575
+ }
576
+ .text-\(--text-color-secondary\) {
577
+ color: var(--text-color-secondary);
578
+ }
579
+ .text-\(--text-color-success\) {
580
+ color: var(--text-color-success);
581
+ }
582
+ .text-\(--text-color-tertiary\) {
583
+ color: var(--text-color-tertiary);
584
+ }
585
+ .text-\(--text-color-warning\) {
586
+ color: var(--text-color-warning);
587
+ }
588
+ .capitalize {
589
+ text-transform: capitalize;
590
+ }
591
+ .lowercase {
592
+ text-transform: lowercase;
593
+ }
594
+ .normal-case {
595
+ text-transform: none;
596
+ }
597
+ .uppercase {
598
+ text-transform: uppercase;
599
+ }
600
+ .italic {
601
+ font-style: italic;
602
+ }
603
+ .not-italic {
604
+ font-style: normal;
605
+ }
606
+ .line-through {
607
+ text-decoration-line: line-through;
608
+ }
609
+ .no-underline {
610
+ text-decoration-line: none;
611
+ }
612
+ .overline {
613
+ text-decoration-line: overline;
614
+ }
615
+ .underline {
616
+ text-decoration-line: underline;
617
+ }
618
+ .shadow-lg {
619
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
620
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
621
+ }
622
+ .shadow-md {
623
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
624
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
625
+ }
626
+ .shadow-sm {
627
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
628
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
629
+ }
630
+ .shadow-xs {
631
+ --tw-shadow: 0 1px 2px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.05));
632
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
633
+ }
634
+ .filter {
635
+ filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
636
+ }
637
+ .transition-all {
638
+ transition-property: all;
639
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
640
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
641
+ }
642
+ .duration-300 {
643
+ --tw-duration: 300ms;
644
+ transition-duration: 300ms;
645
+ }
646
+ .hover\:underline {
647
+ &:hover {
648
+ @media (hover: hover) {
649
+ text-decoration-line: underline;
650
+ }
651
+ }
652
+ }
653
+ .hover\:shadow-lg {
654
+ &:hover {
655
+ @media (hover: hover) {
656
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
657
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
658
+ }
659
+ }
660
+ }
661
+ .hover\:shadow-md {
662
+ &:hover {
663
+ @media (hover: hover) {
664
+ --tw-shadow: 0 4px 6px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 2px 4px -2px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
665
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
666
+ }
667
+ }
668
+ }
669
+ .hover\:shadow-sm {
670
+ &:hover {
671
+ @media (hover: hover) {
672
+ --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
673
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
674
+ }
675
+ }
676
+ }
677
+ .hover\:shadow-xl {
678
+ &:hover {
679
+ @media (hover: hover) {
680
+ --tw-shadow: 0 20px 25px -5px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 8px 10px -6px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
681
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
682
+ }
683
+ }
684
+ }
685
+ .max-xl\:hidden {
686
+ @media (width < 80rem) {
687
+ display: none;
688
+ }
689
+ }
690
+ .max-xl\:flex-col {
691
+ @media (width < 80rem) {
692
+ flex-direction: column;
693
+ }
694
+ }
695
+ .max-lg\:hidden {
696
+ @media (width < 64rem) {
697
+ display: none;
698
+ }
699
+ }
700
+ .max-lg\:grid-cols-2 {
701
+ @media (width < 64rem) {
702
+ grid-template-columns: repeat(2, minmax(0, 1fr));
703
+ }
704
+ }
705
+ .max-lg\:grid-cols-3 {
706
+ @media (width < 64rem) {
707
+ grid-template-columns: repeat(3, minmax(0, 1fr));
708
+ }
709
+ }
710
+ .max-lg\:flex-col {
711
+ @media (width < 64rem) {
712
+ flex-direction: column;
713
+ }
714
+ }
715
+ .max-lg\:gap-1 {
716
+ @media (width < 64rem) {
717
+ gap: calc(var(--spacing) * 1);
718
+ }
719
+ }
720
+ .max-lg\:gap-2 {
721
+ @media (width < 64rem) {
722
+ gap: calc(var(--spacing) * 2);
723
+ }
724
+ }
725
+ .max-lg\:gap-3 {
726
+ @media (width < 64rem) {
727
+ gap: calc(var(--spacing) * 3);
728
+ }
729
+ }
730
+ .max-lg\:gap-4 {
731
+ @media (width < 64rem) {
732
+ gap: calc(var(--spacing) * 4);
733
+ }
734
+ }
735
+ .max-lg\:gap-5 {
736
+ @media (width < 64rem) {
737
+ gap: calc(var(--spacing) * 5);
738
+ }
739
+ }
740
+ .max-lg\:gap-6 {
741
+ @media (width < 64rem) {
742
+ gap: calc(var(--spacing) * 6);
743
+ }
744
+ }
745
+ .max-lg\:gap-7 {
746
+ @media (width < 64rem) {
747
+ gap: calc(var(--spacing) * 7);
748
+ }
749
+ }
750
+ .max-lg\:gap-8 {
751
+ @media (width < 64rem) {
752
+ gap: calc(var(--spacing) * 8);
753
+ }
754
+ }
755
+ .max-lg\:gap-9 {
756
+ @media (width < 64rem) {
757
+ gap: calc(var(--spacing) * 9);
758
+ }
759
+ }
760
+ .max-lg\:px-2 {
761
+ @media (width < 64rem) {
762
+ padding-inline: calc(var(--spacing) * 2);
763
+ }
764
+ }
765
+ .max-lg\:px-6 {
766
+ @media (width < 64rem) {
767
+ padding-inline: calc(var(--spacing) * 6);
768
+ }
769
+ }
770
+ .max-lg\:px-8 {
771
+ @media (width < 64rem) {
772
+ padding-inline: calc(var(--spacing) * 8);
773
+ }
774
+ }
775
+ .max-lg\:px-10 {
776
+ @media (width < 64rem) {
777
+ padding-inline: calc(var(--spacing) * 10);
778
+ }
779
+ }
780
+ .max-lg\:py-4 {
781
+ @media (width < 64rem) {
782
+ padding-block: calc(var(--spacing) * 4);
783
+ }
784
+ }
785
+ .max-lg\:py-6 {
786
+ @media (width < 64rem) {
787
+ padding-block: calc(var(--spacing) * 6);
788
+ }
789
+ }
790
+ .max-lg\:py-8 {
791
+ @media (width < 64rem) {
792
+ padding-block: calc(var(--spacing) * 8);
793
+ }
794
+ }
795
+ .max-lg\:py-10 {
796
+ @media (width < 64rem) {
797
+ padding-block: calc(var(--spacing) * 10);
798
+ }
799
+ }
800
+ .max-lg\:py-12 {
801
+ @media (width < 64rem) {
802
+ padding-block: calc(var(--spacing) * 12);
803
+ }
804
+ }
805
+ .max-md\:hidden {
806
+ @media (width < 48rem) {
807
+ display: none;
808
+ }
809
+ }
810
+ .max-md\:grid-cols-1 {
811
+ @media (width < 48rem) {
812
+ grid-template-columns: repeat(1, minmax(0, 1fr));
813
+ }
814
+ }
815
+ .max-md\:grid-cols-2 {
816
+ @media (width < 48rem) {
817
+ grid-template-columns: repeat(2, minmax(0, 1fr));
818
+ }
819
+ }
820
+ .max-md\:flex-col {
821
+ @media (width < 48rem) {
822
+ flex-direction: column;
823
+ }
824
+ }
825
+ .max-md\:gap-2 {
826
+ @media (width < 48rem) {
827
+ gap: calc(var(--spacing) * 2);
828
+ }
829
+ }
830
+ .max-md\:gap-4 {
831
+ @media (width < 48rem) {
832
+ gap: calc(var(--spacing) * 4);
833
+ }
834
+ }
835
+ .max-md\:gap-6 {
836
+ @media (width < 48rem) {
837
+ gap: calc(var(--spacing) * 6);
838
+ }
839
+ }
840
+ .max-md\:gap-8 {
841
+ @media (width < 48rem) {
842
+ gap: calc(var(--spacing) * 8);
843
+ }
844
+ }
845
+ .max-md\:px-0 {
846
+ @media (width < 48rem) {
847
+ padding-inline: calc(var(--spacing) * 0);
848
+ }
849
+ }
850
+ .max-md\:px-2 {
851
+ @media (width < 48rem) {
852
+ padding-inline: calc(var(--spacing) * 2);
853
+ }
854
+ }
855
+ .max-md\:px-4 {
856
+ @media (width < 48rem) {
857
+ padding-inline: calc(var(--spacing) * 4);
858
+ }
859
+ }
860
+ .max-md\:px-6 {
861
+ @media (width < 48rem) {
862
+ padding-inline: calc(var(--spacing) * 6);
863
+ }
864
+ }
865
+ .max-md\:px-8 {
866
+ @media (width < 48rem) {
867
+ padding-inline: calc(var(--spacing) * 8);
868
+ }
869
+ }
870
+ .max-md\:py-2 {
871
+ @media (width < 48rem) {
872
+ padding-block: calc(var(--spacing) * 2);
873
+ }
874
+ }
875
+ .max-md\:py-4 {
876
+ @media (width < 48rem) {
877
+ padding-block: calc(var(--spacing) * 4);
878
+ }
879
+ }
880
+ .max-md\:py-6 {
881
+ @media (width < 48rem) {
882
+ padding-block: calc(var(--spacing) * 6);
883
+ }
884
+ }
885
+ .max-md\:py-8 {
886
+ @media (width < 48rem) {
887
+ padding-block: calc(var(--spacing) * 8);
888
+ }
889
+ }
890
+ .max-md\:py-10 {
891
+ @media (width < 48rem) {
892
+ padding-block: calc(var(--spacing) * 10);
893
+ }
894
+ }
895
+ .max-sm\:hidden {
896
+ @media (width < 40rem) {
897
+ display: none;
898
+ }
899
+ }
900
+ .max-sm\:grid-cols-1 {
901
+ @media (width < 40rem) {
902
+ grid-template-columns: repeat(1, minmax(0, 1fr));
903
+ }
904
+ }
905
+ .max-sm\:flex-col {
906
+ @media (width < 40rem) {
907
+ flex-direction: column;
908
+ }
909
+ }
910
+ }
911
+ @property --tw-border-style {
912
+ syntax: "*";
913
+ inherits: false;
914
+ initial-value: solid;
915
+ }
916
+ @property --tw-font-weight {
917
+ syntax: "*";
918
+ inherits: false;
919
+ }
920
+ @property --tw-shadow {
921
+ syntax: "*";
922
+ inherits: false;
923
+ initial-value: 0 0 #0000;
924
+ }
925
+ @property --tw-shadow-color {
926
+ syntax: "*";
927
+ inherits: false;
928
+ }
929
+ @property --tw-inset-shadow {
930
+ syntax: "*";
931
+ inherits: false;
932
+ initial-value: 0 0 #0000;
933
+ }
934
+ @property --tw-inset-shadow-color {
935
+ syntax: "*";
936
+ inherits: false;
937
+ }
938
+ @property --tw-ring-color {
939
+ syntax: "*";
940
+ inherits: false;
941
+ }
942
+ @property --tw-ring-shadow {
943
+ syntax: "*";
944
+ inherits: false;
945
+ initial-value: 0 0 #0000;
946
+ }
947
+ @property --tw-inset-ring-color {
948
+ syntax: "*";
949
+ inherits: false;
950
+ }
951
+ @property --tw-inset-ring-shadow {
952
+ syntax: "*";
953
+ inherits: false;
954
+ initial-value: 0 0 #0000;
955
+ }
956
+ @property --tw-ring-inset {
957
+ syntax: "*";
958
+ inherits: false;
959
+ }
960
+ @property --tw-ring-offset-width {
961
+ syntax: "<length>";
962
+ inherits: false;
963
+ initial-value: 0px;
964
+ }
965
+ @property --tw-ring-offset-color {
966
+ syntax: "*";
967
+ inherits: false;
968
+ initial-value: #fff;
969
+ }
970
+ @property --tw-ring-offset-shadow {
971
+ syntax: "*";
972
+ inherits: false;
973
+ initial-value: 0 0 #0000;
974
+ }
975
+ @property --tw-blur {
976
+ syntax: "*";
977
+ inherits: false;
978
+ }
979
+ @property --tw-brightness {
980
+ syntax: "*";
981
+ inherits: false;
982
+ }
983
+ @property --tw-contrast {
984
+ syntax: "*";
985
+ inherits: false;
986
+ }
987
+ @property --tw-grayscale {
988
+ syntax: "*";
989
+ inherits: false;
990
+ }
991
+ @property --tw-hue-rotate {
992
+ syntax: "*";
993
+ inherits: false;
994
+ }
995
+ @property --tw-invert {
996
+ syntax: "*";
997
+ inherits: false;
998
+ }
999
+ @property --tw-opacity {
1000
+ syntax: "*";
1001
+ inherits: false;
1002
+ }
1003
+ @property --tw-saturate {
1004
+ syntax: "*";
1005
+ inherits: false;
1006
+ }
1007
+ @property --tw-sepia {
1008
+ syntax: "*";
1009
+ inherits: false;
1010
+ }
1011
+ @property --tw-drop-shadow {
1012
+ syntax: "*";
1013
+ inherits: false;
1014
+ }
1015
+ @property --tw-duration {
1016
+ syntax: "*";
1017
+ inherits: false;
1018
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaneui/ui",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -20,6 +20,9 @@
20
20
  "require": "./dist/components/complex/index.js",
21
21
  "types": "./dist/components/complex/index.d.ts"
22
22
  },
23
+ "./css": {
24
+ "import": "./dist/all.css"
25
+ },
23
26
  "./css/ui": {
24
27
  "import": "./dist/ui.css"
25
28
  },
@@ -30,9 +33,10 @@
30
33
  "scripts": {
31
34
  "clean": "rimraf dist",
32
35
  "build:js": "npm run clean && rollup -c --bundleConfigAsCjs",
36
+ "build:css:all": "npx @tailwindcss/cli --input index.css --output ./../../dist/all.css --cwd ./src/components/",
33
37
  "build:css:ui": "npx @tailwindcss/cli --input index.css --output ./../../../dist/ui.css --cwd ./src/components/ui/",
34
38
  "build:css:complex": "npx @tailwindcss/cli --input index.css --output ./../../../dist/complex.css --cwd ./src/components/complex/",
35
- "build": "npm run clean && npm run build:js && npm run build:css:ui && npm run build:css:complex",
39
+ "build": "npm run clean && npm run build:js && npm run build:css:all && npm run build:css:ui && npm run build:css:complex",
36
40
  "prepublishOnly": "npm run build"
37
41
  },
38
42
  "keywords": [],