@equos/react 3.0.2-rc.0 → 3.0.2-rc.10

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