@stereopt/data-table 0.2.0 → 0.2.2

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/styles.css CHANGED
@@ -1,147 +1,609 @@
1
1
  /*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
2
- *, ::after, ::before, ::backdrop, ::file-selector-button {
3
- box-sizing: border-box;
4
- margin: 0;
5
- padding: 0;
6
- border: 0 solid;
7
- }
8
- html, :host {
9
- line-height: 1.5;
10
- -webkit-text-size-adjust: 100%;
11
- tab-size: 4;
12
- font-family: ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
13
- font-feature-settings: normal;
14
- font-variation-settings: normal;
15
- -webkit-tap-highlight-color: transparent;
16
- }
17
- hr {
18
- height: 0;
19
- color: inherit;
20
- border-top-width: 1px;
21
- }
22
- abbr:where([title]) {
23
- -webkit-text-decoration: underline dotted;
24
- text-decoration: underline dotted;
25
- }
26
- h1, h2, h3, h4, h5, h6 {
27
- font-size: inherit;
28
- font-weight: inherit;
29
- }
30
- a {
31
- color: inherit;
32
- -webkit-text-decoration: inherit;
33
- text-decoration: inherit;
34
- }
35
- b, strong {
36
- font-weight: bolder;
37
- }
38
- code, kbd, samp, pre {
39
- font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
40
- font-feature-settings: normal;
41
- font-variation-settings: normal;
42
- font-size: 1em;
43
- }
44
- small {
45
- font-size: 80%;
46
- }
47
- sub, sup {
48
- font-size: 75%;
49
- line-height: 0;
50
- position: relative;
51
- vertical-align: baseline;
52
- }
53
- sub {
54
- bottom: -0.25em;
55
- }
56
- sup {
57
- top: -0.5em;
58
- }
59
- table {
60
- text-indent: 0;
61
- border-color: inherit;
62
- border-collapse: collapse;
63
- }
64
- :-moz-focusring {
65
- outline: auto;
66
- }
67
- progress {
68
- vertical-align: baseline;
69
- }
70
- summary {
71
- display: list-item;
72
- }
73
- ol, ul, menu {
74
- list-style: none;
75
- }
76
- img, svg, video, canvas, audio, iframe, embed, object {
77
- display: block;
78
- vertical-align: middle;
79
- }
80
- img, video {
81
- max-width: 100%;
82
- height: auto;
83
- }
84
- button, input, select, optgroup, textarea, ::file-selector-button {
85
- font: inherit;
86
- font-feature-settings: inherit;
87
- font-variation-settings: inherit;
88
- letter-spacing: inherit;
89
- color: inherit;
90
- border-radius: 0;
91
- background-color: transparent;
92
- opacity: 1;
93
- }
94
- :where(select:is([multiple], [size])) optgroup {
95
- font-weight: bolder;
96
- }
97
- :where(select:is([multiple], [size])) optgroup option {
98
- padding-inline-start: 20px;
99
- }
100
- ::file-selector-button {
101
- margin-inline-end: 4px;
102
- }
103
- ::placeholder {
104
- opacity: 1;
105
- }
106
- @supports (not (-webkit-appearance: -apple-pay-button)) or (contain-intrinsic-size: 1px) {
107
- ::placeholder {
108
- color: currentcolor;
109
- @supports (color: color-mix(in lab, red, red)) {
110
- color: color-mix(in oklab, currentcolor 50%, transparent);
2
+ @layer properties;
3
+ @layer utilities;
4
+ @layer utilities {
5
+ .\@container\/card-header {
6
+ container-type: inline-size;
7
+ container-name: card-header;
8
+ }
9
+ .pointer-events-none {
10
+ pointer-events: none;
11
+ }
12
+ .invisible {
13
+ visibility: hidden;
14
+ }
15
+ .sr-only {
16
+ position: absolute;
17
+ width: 1px;
18
+ height: 1px;
19
+ padding: 0;
20
+ margin: -1px;
21
+ overflow: hidden;
22
+ clip-path: inset(50%);
23
+ white-space: nowrap;
24
+ border-width: 0;
25
+ }
26
+ .absolute {
27
+ position: absolute;
28
+ }
29
+ .relative {
30
+ position: relative;
31
+ }
32
+ .z-50 {
33
+ z-index: 50;
34
+ }
35
+ .col-start-2 {
36
+ grid-column-start: 2;
37
+ }
38
+ .row-span-2 {
39
+ grid-row: span 2 / span 2;
40
+ }
41
+ .row-start-1 {
42
+ grid-row-start: 1;
43
+ }
44
+ .mx-auto {
45
+ margin-inline: auto;
46
+ }
47
+ .ml-auto {
48
+ margin-left: auto;
49
+ }
50
+ .flex {
51
+ display: flex;
52
+ }
53
+ .grid {
54
+ display: grid;
55
+ }
56
+ .hidden {
57
+ display: none;
58
+ }
59
+ .inline-flex {
60
+ display: inline-flex;
61
+ }
62
+ .table {
63
+ display: table;
64
+ }
65
+ .table-caption {
66
+ display: table-caption;
67
+ }
68
+ .table-cell {
69
+ display: table-cell;
70
+ }
71
+ .table-row {
72
+ display: table-row;
73
+ }
74
+ .aspect-square {
75
+ aspect-ratio: 1 / 1;
76
+ }
77
+ .size-\(--cell-size\) {
78
+ width: var(--cell-size);
79
+ height: var(--cell-size);
80
+ }
81
+ .size-auto {
82
+ width: auto;
83
+ height: auto;
84
+ }
85
+ .h-\(--cell-size\) {
86
+ height: var(--cell-size);
87
+ }
88
+ .h-full {
89
+ height: 100%;
90
+ }
91
+ .h-px {
92
+ height: 1px;
93
+ }
94
+ .max-h-\(--radix-dropdown-menu-content-available-height\) {
95
+ max-height: var(--radix-dropdown-menu-content-available-height);
96
+ }
97
+ .w-\(--cell-size\) {
98
+ width: var(--cell-size);
99
+ }
100
+ .w-\[100px\] {
101
+ width: 100px;
102
+ }
103
+ .w-auto {
104
+ width: auto;
105
+ }
106
+ .w-fit {
107
+ width: fit-content;
108
+ }
109
+ .w-full {
110
+ width: 100%;
111
+ }
112
+ .min-w-\(--cell-size\) {
113
+ min-width: var(--cell-size);
114
+ }
115
+ .min-w-\[8rem\] {
116
+ min-width: 8rem;
117
+ }
118
+ .flex-1 {
119
+ flex: 1;
120
+ }
121
+ .shrink-0 {
122
+ flex-shrink: 0;
123
+ }
124
+ .caption-bottom {
125
+ caption-side: bottom;
126
+ }
127
+ .border-collapse {
128
+ border-collapse: collapse;
129
+ }
130
+ .origin-\(--radix-dropdown-menu-content-transform-origin\) {
131
+ transform-origin: var(--radix-dropdown-menu-content-transform-origin);
132
+ }
133
+ .origin-\(--radix-popover-content-transform-origin\) {
134
+ transform-origin: var(--radix-popover-content-transform-origin);
135
+ }
136
+ .cursor-default {
137
+ cursor: default;
138
+ }
139
+ .cursor-pointer {
140
+ cursor: pointer;
141
+ }
142
+ .auto-rows-min {
143
+ grid-auto-rows: min-content;
144
+ }
145
+ .grid-cols-1 {
146
+ grid-template-columns: repeat(1, minmax(0, 1fr));
147
+ }
148
+ .grid-rows-\[auto_auto\] {
149
+ grid-template-rows: auto auto;
150
+ }
151
+ .flex-col {
152
+ flex-direction: column;
153
+ }
154
+ .items-center {
155
+ align-items: center;
156
+ }
157
+ .items-start {
158
+ align-items: flex-start;
159
+ }
160
+ .justify-between {
161
+ justify-content: space-between;
162
+ }
163
+ .justify-center {
164
+ justify-content: center;
165
+ }
166
+ .self-start {
167
+ align-self: flex-start;
168
+ }
169
+ .justify-self-end {
170
+ justify-self: flex-end;
171
+ }
172
+ .truncate {
173
+ overflow: hidden;
174
+ text-overflow: ellipsis;
175
+ white-space: nowrap;
176
+ }
177
+ .overflow-hidden {
178
+ overflow: hidden;
179
+ }
180
+ .overflow-x-auto {
181
+ overflow-x: auto;
182
+ }
183
+ .overflow-x-hidden {
184
+ overflow-x: hidden;
185
+ }
186
+ .overflow-y-auto {
187
+ overflow-y: auto;
188
+ }
189
+ .rounded-none {
190
+ border-radius: 0;
191
+ }
192
+ .border {
193
+ border-style: var(--tw-border-style);
194
+ border-width: 1px;
195
+ }
196
+ .border-t {
197
+ border-top-style: var(--tw-border-style);
198
+ border-top-width: 1px;
199
+ }
200
+ .border-b {
201
+ border-bottom-style: var(--tw-border-style);
202
+ border-bottom-width: 1px;
203
+ }
204
+ .bg-transparent {
205
+ background-color: transparent;
206
+ }
207
+ .fill-current {
208
+ fill: currentcolor;
209
+ }
210
+ .px-\(--cell-size\) {
211
+ padding-inline: var(--cell-size);
212
+ }
213
+ .text-center {
214
+ text-align: center;
215
+ }
216
+ .text-left {
217
+ text-align: left;
218
+ }
219
+ .align-middle {
220
+ vertical-align: middle;
221
+ }
222
+ .text-\[0\.8rem\] {
223
+ font-size: 0.8rem;
224
+ }
225
+ .leading-none {
226
+ --tw-leading: 1;
227
+ line-height: 1;
228
+ }
229
+ .whitespace-nowrap {
230
+ white-space: nowrap;
231
+ }
232
+ .capitalize {
233
+ text-transform: capitalize;
234
+ }
235
+ .underline-offset-4 {
236
+ text-underline-offset: 4px;
237
+ }
238
+ .opacity-0 {
239
+ opacity: 0%;
240
+ }
241
+ .opacity-50 {
242
+ opacity: 50%;
243
+ }
244
+ .outline-hidden {
245
+ --tw-outline-style: none;
246
+ outline-style: none;
247
+ @media (forced-colors: active) {
248
+ outline: 2px solid transparent;
249
+ outline-offset: 2px;
250
+ }
251
+ }
252
+ .outline {
253
+ outline-style: var(--tw-outline-style);
254
+ outline-width: 1px;
255
+ }
256
+ .filter {
257
+ 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,);
258
+ }
259
+ .transition-\[color\,box-shadow\] {
260
+ transition-property: color,box-shadow;
261
+ transition-timing-function: var(--tw-ease, ease);
262
+ transition-duration: var(--tw-duration, 0s);
263
+ }
264
+ .transition-all {
265
+ transition-property: all;
266
+ transition-timing-function: var(--tw-ease, ease);
267
+ transition-duration: var(--tw-duration, 0s);
268
+ }
269
+ .transition-colors {
270
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
271
+ transition-timing-function: var(--tw-ease, ease);
272
+ transition-duration: var(--tw-duration, 0s);
273
+ }
274
+ .outline-none {
275
+ --tw-outline-style: none;
276
+ outline-style: none;
277
+ }
278
+ .select-none {
279
+ -webkit-user-select: none;
280
+ user-select: none;
281
+ }
282
+ .group-data-\[focused\=true\]\/day\:relative {
283
+ &:is(:where(.group\/day)[data-focused="true"] *) {
284
+ position: relative;
285
+ }
286
+ }
287
+ .group-data-\[focused\=true\]\/day\:z-10 {
288
+ &:is(:where(.group\/day)[data-focused="true"] *) {
289
+ z-index: 10;
290
+ }
291
+ }
292
+ .group-data-\[focused\=true\]\/day\:ring-\[3px\] {
293
+ &:is(:where(.group\/day)[data-focused="true"] *) {
294
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
295
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
296
+ }
297
+ }
298
+ .file\:inline-flex {
299
+ &::file-selector-button {
300
+ display: inline-flex;
301
+ }
302
+ }
303
+ .file\:border-0 {
304
+ &::file-selector-button {
305
+ border-style: var(--tw-border-style);
306
+ border-width: 0px;
307
+ }
308
+ }
309
+ .file\:bg-transparent {
310
+ &::file-selector-button {
311
+ background-color: transparent;
312
+ }
313
+ }
314
+ .hover\:underline {
315
+ &:hover {
316
+ @media (hover: hover) {
317
+ text-decoration-line: underline;
318
+ }
319
+ }
320
+ }
321
+ .focus-visible\:ring-\[3px\] {
322
+ &:focus-visible {
323
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
324
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
325
+ }
326
+ }
327
+ .disabled\:pointer-events-none {
328
+ &:disabled {
329
+ pointer-events: none;
330
+ }
331
+ }
332
+ .disabled\:cursor-not-allowed {
333
+ &:disabled {
334
+ cursor: not-allowed;
335
+ }
336
+ }
337
+ .disabled\:opacity-50 {
338
+ &:disabled {
339
+ opacity: 50%;
340
+ }
341
+ }
342
+ .in-data-\[slot\=card-content\]\:bg-transparent {
343
+ :where(*[data-slot="card-content"]) & {
344
+ background-color: transparent;
345
+ }
346
+ }
347
+ .in-data-\[slot\=popover-content\]\:bg-transparent {
348
+ :where(*[data-slot="popover-content"]) & {
349
+ background-color: transparent;
350
+ }
351
+ }
352
+ .has-focus\:ring-\[3px\] {
353
+ &:has(*:focus) {
354
+ --tw-ring-shadow: var(--tw-ring-inset,) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color, currentcolor);
355
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
356
+ }
357
+ }
358
+ .has-data-\[slot\=card-action\]\:grid-cols-\[1fr_auto\] {
359
+ &:has(*[data-slot="card-action"]) {
360
+ grid-template-columns: 1fr auto;
361
+ }
362
+ }
363
+ .aria-disabled\:opacity-50 {
364
+ &[aria-disabled="true"] {
365
+ opacity: 50%;
366
+ }
367
+ }
368
+ .data-\[disabled\]\:pointer-events-none {
369
+ &[data-disabled] {
370
+ pointer-events: none;
371
+ }
372
+ }
373
+ .data-\[disabled\]\:opacity-50 {
374
+ &[data-disabled] {
375
+ opacity: 50%;
376
+ }
377
+ }
378
+ .data-\[range-middle\=true\]\:rounded-none {
379
+ &[data-range-middle="true"] {
380
+ border-radius: 0;
381
+ }
382
+ }
383
+ .data-\[selected\=true\]\:rounded-none {
384
+ &[data-selected="true"] {
385
+ border-radius: 0;
386
+ }
387
+ }
388
+ .\[\&_svg\]\:pointer-events-none {
389
+ & svg {
390
+ pointer-events: none;
391
+ }
392
+ }
393
+ .\[\&_svg\]\:shrink-0 {
394
+ & svg {
395
+ flex-shrink: 0;
396
+ }
397
+ }
398
+ .\[\&_tr\]\:border-b {
399
+ & tr {
400
+ border-bottom-style: var(--tw-border-style);
401
+ border-bottom-width: 1px;
402
+ }
403
+ }
404
+ .\[\&_tr\:last-child\]\:border-0 {
405
+ & tr:last-child {
406
+ border-style: var(--tw-border-style);
407
+ border-width: 0px;
408
+ }
409
+ }
410
+ .rtl\:\*\*\:\[\.rdp-button\\_next\>svg\]\:rotate-180 {
411
+ &:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
412
+ :is(& *) {
413
+ &:is(.rdp-button_next>svg) {
414
+ rotate: 180deg;
415
+ }
416
+ }
417
+ }
418
+ }
419
+ .rtl\:\*\*\:\[\.rdp-button\\_previous\>svg\]\:rotate-180 {
420
+ &:where(:dir(rtl), [dir="rtl"], [dir="rtl"] *) {
421
+ :is(& *) {
422
+ &:is(.rdp-button_previous>svg) {
423
+ rotate: 180deg;
424
+ }
425
+ }
426
+ }
427
+ }
428
+ .\[\&\>span\]\:opacity-70 {
429
+ &>span {
430
+ opacity: 70%;
431
+ }
432
+ }
433
+ .\[\&\>tr\]\:last\:border-b-0 {
434
+ &>tr {
435
+ &:last-child {
436
+ border-bottom-style: var(--tw-border-style);
437
+ border-bottom-width: 0px;
438
+ }
111
439
  }
112
440
  }
113
441
  }
114
- textarea {
115
- resize: vertical;
116
- }
117
- ::-webkit-search-decoration {
118
- -webkit-appearance: none;
119
- }
120
- ::-webkit-date-and-time-value {
121
- min-height: 1lh;
122
- text-align: inherit;
123
- }
124
- ::-webkit-datetime-edit {
125
- display: inline-flex;
126
- }
127
- ::-webkit-datetime-edit-fields-wrapper {
128
- padding: 0;
129
- }
130
- ::-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 {
131
- padding-block: 0;
132
- }
133
- ::-webkit-calendar-picker-indicator {
134
- line-height: 1;
135
- }
136
- :-moz-ui-invalid {
137
- box-shadow: none;
138
- }
139
- button, input:where([type='button'], [type='reset'], [type='submit']), ::file-selector-button {
140
- appearance: button;
141
- }
142
- ::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
143
- height: auto;
144
- }
145
- [hidden]:where(:not([hidden='until-found'])) {
146
- display: none !important;
442
+ @property --tw-border-style {
443
+ syntax: "*";
444
+ inherits: false;
445
+ initial-value: solid;
446
+ }
447
+ @property --tw-leading {
448
+ syntax: "*";
449
+ inherits: false;
450
+ }
451
+ @property --tw-outline-style {
452
+ syntax: "*";
453
+ inherits: false;
454
+ initial-value: solid;
455
+ }
456
+ @property --tw-blur {
457
+ syntax: "*";
458
+ inherits: false;
459
+ }
460
+ @property --tw-brightness {
461
+ syntax: "*";
462
+ inherits: false;
463
+ }
464
+ @property --tw-contrast {
465
+ syntax: "*";
466
+ inherits: false;
467
+ }
468
+ @property --tw-grayscale {
469
+ syntax: "*";
470
+ inherits: false;
471
+ }
472
+ @property --tw-hue-rotate {
473
+ syntax: "*";
474
+ inherits: false;
475
+ }
476
+ @property --tw-invert {
477
+ syntax: "*";
478
+ inherits: false;
479
+ }
480
+ @property --tw-opacity {
481
+ syntax: "*";
482
+ inherits: false;
483
+ }
484
+ @property --tw-saturate {
485
+ syntax: "*";
486
+ inherits: false;
487
+ }
488
+ @property --tw-sepia {
489
+ syntax: "*";
490
+ inherits: false;
491
+ }
492
+ @property --tw-drop-shadow {
493
+ syntax: "*";
494
+ inherits: false;
495
+ }
496
+ @property --tw-drop-shadow-color {
497
+ syntax: "*";
498
+ inherits: false;
499
+ }
500
+ @property --tw-drop-shadow-alpha {
501
+ syntax: "<percentage>";
502
+ inherits: false;
503
+ initial-value: 100%;
504
+ }
505
+ @property --tw-drop-shadow-size {
506
+ syntax: "*";
507
+ inherits: false;
508
+ }
509
+ @property --tw-shadow {
510
+ syntax: "*";
511
+ inherits: false;
512
+ initial-value: 0 0 #0000;
513
+ }
514
+ @property --tw-shadow-color {
515
+ syntax: "*";
516
+ inherits: false;
517
+ }
518
+ @property --tw-shadow-alpha {
519
+ syntax: "<percentage>";
520
+ inherits: false;
521
+ initial-value: 100%;
522
+ }
523
+ @property --tw-inset-shadow {
524
+ syntax: "*";
525
+ inherits: false;
526
+ initial-value: 0 0 #0000;
527
+ }
528
+ @property --tw-inset-shadow-color {
529
+ syntax: "*";
530
+ inherits: false;
531
+ }
532
+ @property --tw-inset-shadow-alpha {
533
+ syntax: "<percentage>";
534
+ inherits: false;
535
+ initial-value: 100%;
536
+ }
537
+ @property --tw-ring-color {
538
+ syntax: "*";
539
+ inherits: false;
540
+ }
541
+ @property --tw-ring-shadow {
542
+ syntax: "*";
543
+ inherits: false;
544
+ initial-value: 0 0 #0000;
545
+ }
546
+ @property --tw-inset-ring-color {
547
+ syntax: "*";
548
+ inherits: false;
549
+ }
550
+ @property --tw-inset-ring-shadow {
551
+ syntax: "*";
552
+ inherits: false;
553
+ initial-value: 0 0 #0000;
554
+ }
555
+ @property --tw-ring-inset {
556
+ syntax: "*";
557
+ inherits: false;
558
+ }
559
+ @property --tw-ring-offset-width {
560
+ syntax: "<length>";
561
+ inherits: false;
562
+ initial-value: 0px;
563
+ }
564
+ @property --tw-ring-offset-color {
565
+ syntax: "*";
566
+ inherits: false;
567
+ initial-value: #fff;
568
+ }
569
+ @property --tw-ring-offset-shadow {
570
+ syntax: "*";
571
+ inherits: false;
572
+ initial-value: 0 0 #0000;
573
+ }
574
+ @layer properties {
575
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
576
+ *, ::before, ::after, ::backdrop {
577
+ --tw-border-style: solid;
578
+ --tw-leading: initial;
579
+ --tw-outline-style: solid;
580
+ --tw-blur: initial;
581
+ --tw-brightness: initial;
582
+ --tw-contrast: initial;
583
+ --tw-grayscale: initial;
584
+ --tw-hue-rotate: initial;
585
+ --tw-invert: initial;
586
+ --tw-opacity: initial;
587
+ --tw-saturate: initial;
588
+ --tw-sepia: initial;
589
+ --tw-drop-shadow: initial;
590
+ --tw-drop-shadow-color: initial;
591
+ --tw-drop-shadow-alpha: 100%;
592
+ --tw-drop-shadow-size: initial;
593
+ --tw-shadow: 0 0 #0000;
594
+ --tw-shadow-color: initial;
595
+ --tw-shadow-alpha: 100%;
596
+ --tw-inset-shadow: 0 0 #0000;
597
+ --tw-inset-shadow-color: initial;
598
+ --tw-inset-shadow-alpha: 100%;
599
+ --tw-ring-color: initial;
600
+ --tw-ring-shadow: 0 0 #0000;
601
+ --tw-inset-ring-color: initial;
602
+ --tw-inset-ring-shadow: 0 0 #0000;
603
+ --tw-ring-inset: initial;
604
+ --tw-ring-offset-width: 0px;
605
+ --tw-ring-offset-color: #fff;
606
+ --tw-ring-offset-shadow: 0 0 #0000;
607
+ }
608
+ }
147
609
  }