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