@equos/react 3.0.2-rc.3 → 3.0.2-rc.5

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.
@@ -108,5 +108,5 @@ function EquosConversationRenderer({ conversation, accessToken, allowMic = true,
108
108
  }, children: (0, jsx_runtime_1.jsx)(equos_video_tile_1.EquosVideoTile, { identity: conversation.consumerIdentity, source: livekit_client_1.Track.Source.Camera }) })), allowScreenshare && screenshareEnabled && ((0, jsx_runtime_1.jsx)("div", { ref: screenTileRef, onMouseDown: onScreenTileMouseDown, className: (0, cn_1.cn)('absolute z-50 select-none', cameraTileDragging ? 'cursor-grabbing' : 'cursor-grab'), style: {
109
109
  top: screenTilePos.y,
110
110
  left: screenTilePos.x,
111
- }, children: (0, jsx_runtime_1.jsx)(equos_video_tile_1.EquosVideoTile, { identity: conversation.consumerIdentity, source: livekit_client_1.Track.Source.ScreenShare }) })), (0, jsx_runtime_1.jsx)(equos_character_video_1.EquosCharacterVideo, { identity: conversation.character.livekitIdentity }), (0, jsx_runtime_1.jsx)(components_react_1.RoomAudioRenderer, {}), (0, jsx_runtime_1.jsxs)("div", { className: "absolute grid grid-cols-3 gap-2 max-w-full bottom-8 left-1/2 -translate-x-1/2", children: [(0, jsx_runtime_1.jsx)("div", { children: allowMic && (0, jsx_runtime_1.jsx)(equos_mic_toggle_1.EquosMicToggle, { onToggle: setMicEnabled }) }), (0, jsx_runtime_1.jsx)("div", { children: allowHangUp && ((0, jsx_runtime_1.jsx)(equos_hangup_button_1.EquosHangupButton, { onHangup: handleHangUp, loading: hangingUp })) }), (0, jsx_runtime_1.jsxs)("div", { children: [allowCamera && (0, jsx_runtime_1.jsx)(equos_camera_toggle_1.EquosCameraToggle, { onToggle: setCameraEnabled }), allowScreenshare && ((0, jsx_runtime_1.jsx)(equos_screenshare_toggle_1.EquosScreenshareToggle, { onToggle: setScreenshareEnabled }))] })] })] }) }));
111
+ }, children: (0, jsx_runtime_1.jsx)(equos_video_tile_1.EquosVideoTile, { identity: conversation.consumerIdentity, source: livekit_client_1.Track.Source.ScreenShare }) })), (0, jsx_runtime_1.jsx)(equos_character_video_1.EquosCharacterVideo, { identity: conversation.character.livekitIdentity }), (0, jsx_runtime_1.jsx)(components_react_1.RoomAudioRenderer, {}), (0, jsx_runtime_1.jsxs)("div", { className: "absolute grid grid-cols-3 gap-2 max-w-full bottom-8 left-1/2 -translate-x-1/2", children: [(0, jsx_runtime_1.jsx)("div", { className: "justify-self-end", children: allowMic && (0, jsx_runtime_1.jsx)(equos_mic_toggle_1.EquosMicToggle, { onToggle: setMicEnabled }) }), (0, jsx_runtime_1.jsx)("div", { children: allowHangUp && ((0, jsx_runtime_1.jsx)(equos_hangup_button_1.EquosHangupButton, { onHangup: handleHangUp, loading: hangingUp })) }), (0, jsx_runtime_1.jsxs)("div", { className: "flex items-center gap-2", children: [allowCamera && (0, jsx_runtime_1.jsx)(equos_camera_toggle_1.EquosCameraToggle, { onToggle: setCameraEnabled }), allowScreenshare && ((0, jsx_runtime_1.jsx)(equos_screenshare_toggle_1.EquosScreenshareToggle, { onToggle: setScreenshareEnabled }))] })] })] }) }));
112
112
  }
@@ -25,5 +25,9 @@ function EquosVideoTile({ identity, defaultToLocal = true, className, source = l
25
25
  source,
26
26
  };
27
27
  }, [identity, source, participants]);
28
- return ((0, jsx_runtime_1.jsxs)("div", { className: (0, cn_1.cn)('relative border border-white/60 shadow-xl rounded-2xl bg-black aspect-video transition-all max-w-full overflow-hidden', expanded ? 'w-96' : 'w-64', className), children: [(0, jsx_runtime_1.jsx)("button", { className: "absolute top-4 right-4 text-white cursor-pointer", onClick: () => setExpanded(!expanded), children: expanded ? (0, jsx_runtime_1.jsx)(lucide_react_1.Minimize2, { size: 12 }) : (0, jsx_runtime_1.jsx)(lucide_react_1.Maximize2, { size: 12 }) }), trackRef && (0, jsx_runtime_1.jsx)(components_react_1.VideoTrack, { trackRef: trackRef, className: "w-full h-full" })] }));
28
+ return ((0, jsx_runtime_1.jsxs)("div", { className: (0, cn_1.cn)('relative border border-white/60 shadow-xl rounded-2xl bg-black aspect-video transition-all max-w-full overflow-hidden', expanded ? 'w-96' : 'w-64', className), children: [(0, jsx_runtime_1.jsx)("button", { className: "absolute top-4 right-4 text-white cursor-pointer p-2", onClick: (e) => {
29
+ e.stopPropagation();
30
+ console.log('toggle', !expanded);
31
+ setExpanded(!expanded);
32
+ }, children: expanded ? (0, jsx_runtime_1.jsx)(lucide_react_1.Minimize2, { size: 12 }) : (0, jsx_runtime_1.jsx)(lucide_react_1.Maximize2, { size: 12 }) }), trackRef && (0, jsx_runtime_1.jsx)(components_react_1.VideoTrack, { trackRef: trackRef, className: "w-full h-full" })] }));
29
33
  }
@@ -0,0 +1,659 @@
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
+ .justify-self-end {
317
+ justify-self: flex-end;
318
+ }
319
+ .overflow-hidden {
320
+ overflow: hidden;
321
+ }
322
+ .rounded-2xl {
323
+ border-radius: var(--radius-2xl);
324
+ }
325
+ .rounded-3xl {
326
+ border-radius: var(--radius-3xl);
327
+ }
328
+ .rounded-full {
329
+ border-radius: calc(infinity * 1px);
330
+ }
331
+ .rounded-lg {
332
+ border-radius: var(--radius-lg);
333
+ }
334
+ .rounded-md {
335
+ border-radius: var(--radius-md);
336
+ }
337
+ .rounded-sm {
338
+ border-radius: var(--radius-sm);
339
+ }
340
+ .rounded-xl {
341
+ border-radius: var(--radius-xl);
342
+ }
343
+ .border {
344
+ border-style: var(--tw-border-style);
345
+ border-width: 1px;
346
+ }
347
+ .border-\[\#FF7366\]\/50 {
348
+ border-color: color-mix(in oklab, #FF7366 50%, transparent);
349
+ }
350
+ .border-white {
351
+ border-color: var(--color-white);
352
+ }
353
+ .border-white\/60 {
354
+ border-color: color-mix(in srgb, #fff 60%, transparent);
355
+ @supports (color: color-mix(in lab, red, red)) {
356
+ border-color: color-mix(in oklab, var(--color-white) 60%, transparent);
357
+ }
358
+ }
359
+ .bg-\[\#FF4133\]\/90 {
360
+ background-color: color-mix(in oklab, #FF4133 90%, transparent);
361
+ }
362
+ .bg-black {
363
+ background-color: var(--color-black);
364
+ }
365
+ .bg-white\/20 {
366
+ background-color: color-mix(in srgb, #fff 20%, transparent);
367
+ @supports (color: color-mix(in lab, red, red)) {
368
+ background-color: color-mix(in oklab, var(--color-white) 20%, transparent);
369
+ }
370
+ }
371
+ .bg-white\/60 {
372
+ background-color: color-mix(in srgb, #fff 60%, transparent);
373
+ @supports (color: color-mix(in lab, red, red)) {
374
+ background-color: color-mix(in oklab, var(--color-white) 60%, transparent);
375
+ }
376
+ }
377
+ .p-2 {
378
+ padding: calc(var(--spacing) * 2);
379
+ }
380
+ .p-3 {
381
+ padding: calc(var(--spacing) * 3);
382
+ }
383
+ .p-4 {
384
+ padding: calc(var(--spacing) * 4);
385
+ }
386
+ .text-2xl {
387
+ font-size: var(--text-2xl);
388
+ line-height: var(--tw-leading, var(--text-2xl--line-height));
389
+ }
390
+ .text-xl {
391
+ font-size: var(--text-xl);
392
+ line-height: var(--tw-leading, var(--text-xl--line-height));
393
+ }
394
+ .text-xs {
395
+ font-size: var(--text-xs);
396
+ line-height: var(--tw-leading, var(--text-xs--line-height));
397
+ }
398
+ .font-bold {
399
+ --tw-font-weight: var(--font-weight-bold);
400
+ font-weight: var(--font-weight-bold);
401
+ }
402
+ .text-\[\#141414\]\/50 {
403
+ color: color-mix(in oklab, #141414 50%, transparent);
404
+ }
405
+ .text-black {
406
+ color: var(--color-black);
407
+ }
408
+ .text-white {
409
+ color: var(--color-white);
410
+ }
411
+ .shadow-xl {
412
+ --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));
413
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
414
+ }
415
+ .backdrop-blur-sm {
416
+ --tw-backdrop-blur: blur(var(--blur-sm));
417
+ -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,);
418
+ 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,);
419
+ }
420
+ .transition-all {
421
+ transition-property: all;
422
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
423
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
424
+ }
425
+ .transition-colors {
426
+ transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to;
427
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
428
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
429
+ }
430
+ .select-none {
431
+ -webkit-user-select: none;
432
+ user-select: none;
433
+ }
434
+ .hover\:bg-\[\#FF4133\] {
435
+ &:hover {
436
+ @media (hover: hover) {
437
+ background-color: #FF4133;
438
+ }
439
+ }
440
+ }
441
+ .hover\:bg-white\/40 {
442
+ &:hover {
443
+ @media (hover: hover) {
444
+ background-color: color-mix(in srgb, #fff 40%, transparent);
445
+ @supports (color: color-mix(in lab, red, red)) {
446
+ background-color: color-mix(in oklab, var(--color-white) 40%, transparent);
447
+ }
448
+ }
449
+ }
450
+ }
451
+ .hover\:bg-white\/80 {
452
+ &:hover {
453
+ @media (hover: hover) {
454
+ background-color: color-mix(in srgb, #fff 80%, transparent);
455
+ @supports (color: color-mix(in lab, red, red)) {
456
+ background-color: color-mix(in oklab, var(--color-white) 80%, transparent);
457
+ }
458
+ }
459
+ }
460
+ }
461
+ }
462
+ @layer utilities {
463
+ .inset-shadow-glass {
464
+ box-shadow: inset 0 0 16px 0 rgba(255, 255, 255, 1);
465
+ }
466
+ .shadow-equos-sm {
467
+ box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
468
+ }
469
+ .shadow-equos-md {
470
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
471
+ }
472
+ .shadow-equos-lg {
473
+ box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
474
+ }
475
+ @keyframes equos-pulse {
476
+ 0% {
477
+ box-shadow: 0 0 0 0 rgba(128, 128, 128, 0.7);
478
+ opacity: 1;
479
+ }
480
+ 10% {
481
+ opacity: 0.75;
482
+ }
483
+ 70% {
484
+ box-shadow: 0 0 4px 16px rgba(128, 128, 128, 0);
485
+ opacity: 1;
486
+ }
487
+ 100% {
488
+ box-shadow: 0 0 0 0 rgba(128, 128, 128, 0);
489
+ opacity: 1;
490
+ }
491
+ }
492
+ .animate-equos-pulse {
493
+ animation: equos-pulse 2s ease-in-out infinite;
494
+ }
495
+ }
496
+ @property --tw-translate-x {
497
+ syntax: "*";
498
+ inherits: false;
499
+ initial-value: 0;
500
+ }
501
+ @property --tw-translate-y {
502
+ syntax: "*";
503
+ inherits: false;
504
+ initial-value: 0;
505
+ }
506
+ @property --tw-translate-z {
507
+ syntax: "*";
508
+ inherits: false;
509
+ initial-value: 0;
510
+ }
511
+ @property --tw-border-style {
512
+ syntax: "*";
513
+ inherits: false;
514
+ initial-value: solid;
515
+ }
516
+ @property --tw-font-weight {
517
+ syntax: "*";
518
+ inherits: false;
519
+ }
520
+ @property --tw-shadow {
521
+ syntax: "*";
522
+ inherits: false;
523
+ initial-value: 0 0 #0000;
524
+ }
525
+ @property --tw-shadow-color {
526
+ syntax: "*";
527
+ inherits: false;
528
+ }
529
+ @property --tw-shadow-alpha {
530
+ syntax: "<percentage>";
531
+ inherits: false;
532
+ initial-value: 100%;
533
+ }
534
+ @property --tw-inset-shadow {
535
+ syntax: "*";
536
+ inherits: false;
537
+ initial-value: 0 0 #0000;
538
+ }
539
+ @property --tw-inset-shadow-color {
540
+ syntax: "*";
541
+ inherits: false;
542
+ }
543
+ @property --tw-inset-shadow-alpha {
544
+ syntax: "<percentage>";
545
+ inherits: false;
546
+ initial-value: 100%;
547
+ }
548
+ @property --tw-ring-color {
549
+ syntax: "*";
550
+ inherits: false;
551
+ }
552
+ @property --tw-ring-shadow {
553
+ syntax: "*";
554
+ inherits: false;
555
+ initial-value: 0 0 #0000;
556
+ }
557
+ @property --tw-inset-ring-color {
558
+ syntax: "*";
559
+ inherits: false;
560
+ }
561
+ @property --tw-inset-ring-shadow {
562
+ syntax: "*";
563
+ inherits: false;
564
+ initial-value: 0 0 #0000;
565
+ }
566
+ @property --tw-ring-inset {
567
+ syntax: "*";
568
+ inherits: false;
569
+ }
570
+ @property --tw-ring-offset-width {
571
+ syntax: "<length>";
572
+ inherits: false;
573
+ initial-value: 0px;
574
+ }
575
+ @property --tw-ring-offset-color {
576
+ syntax: "*";
577
+ inherits: false;
578
+ initial-value: #fff;
579
+ }
580
+ @property --tw-ring-offset-shadow {
581
+ syntax: "*";
582
+ inherits: false;
583
+ initial-value: 0 0 #0000;
584
+ }
585
+ @property --tw-backdrop-blur {
586
+ syntax: "*";
587
+ inherits: false;
588
+ }
589
+ @property --tw-backdrop-brightness {
590
+ syntax: "*";
591
+ inherits: false;
592
+ }
593
+ @property --tw-backdrop-contrast {
594
+ syntax: "*";
595
+ inherits: false;
596
+ }
597
+ @property --tw-backdrop-grayscale {
598
+ syntax: "*";
599
+ inherits: false;
600
+ }
601
+ @property --tw-backdrop-hue-rotate {
602
+ syntax: "*";
603
+ inherits: false;
604
+ }
605
+ @property --tw-backdrop-invert {
606
+ syntax: "*";
607
+ inherits: false;
608
+ }
609
+ @property --tw-backdrop-opacity {
610
+ syntax: "*";
611
+ inherits: false;
612
+ }
613
+ @property --tw-backdrop-saturate {
614
+ syntax: "*";
615
+ inherits: false;
616
+ }
617
+ @property --tw-backdrop-sepia {
618
+ syntax: "*";
619
+ inherits: false;
620
+ }
621
+ @keyframes spin {
622
+ to {
623
+ transform: rotate(360deg);
624
+ }
625
+ }
626
+ @layer properties {
627
+ @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
628
+ *, ::before, ::after, ::backdrop {
629
+ --tw-translate-x: 0;
630
+ --tw-translate-y: 0;
631
+ --tw-translate-z: 0;
632
+ --tw-border-style: solid;
633
+ --tw-font-weight: initial;
634
+ --tw-shadow: 0 0 #0000;
635
+ --tw-shadow-color: initial;
636
+ --tw-shadow-alpha: 100%;
637
+ --tw-inset-shadow: 0 0 #0000;
638
+ --tw-inset-shadow-color: initial;
639
+ --tw-inset-shadow-alpha: 100%;
640
+ --tw-ring-color: initial;
641
+ --tw-ring-shadow: 0 0 #0000;
642
+ --tw-inset-ring-color: initial;
643
+ --tw-inset-ring-shadow: 0 0 #0000;
644
+ --tw-ring-inset: initial;
645
+ --tw-ring-offset-width: 0px;
646
+ --tw-ring-offset-color: #fff;
647
+ --tw-ring-offset-shadow: 0 0 #0000;
648
+ --tw-backdrop-blur: initial;
649
+ --tw-backdrop-brightness: initial;
650
+ --tw-backdrop-contrast: initial;
651
+ --tw-backdrop-grayscale: initial;
652
+ --tw-backdrop-hue-rotate: initial;
653
+ --tw-backdrop-invert: initial;
654
+ --tw-backdrop-opacity: initial;
655
+ --tw-backdrop-saturate: initial;
656
+ --tw-backdrop-sepia: initial;
657
+ }
658
+ }
659
+ }
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.5",
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",