@zvoove/unity-ui 2.19.1 → 2.20.1
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/theme.css +55 -0
- package/dist/unity-ui.cjs.js +1 -1
- package/dist/unity-ui.css +1 -1
- package/dist/unity-ui.d.ts +249 -69
- package/dist/unity-ui.es.js +402 -376
- package/package.json +1 -1
package/dist/theme.css
CHANGED
|
@@ -348,6 +348,9 @@
|
|
|
348
348
|
--container-laptop: 80rem; /* 1280px */
|
|
349
349
|
--container-desktop: 96rem; /* 1536px */
|
|
350
350
|
|
|
351
|
+
--chat-shell-max-width: 54rem; /* 864px — centered conversation container */
|
|
352
|
+
--chat-content-measure: 72ch; /* max inline-size for bubbles & cards */
|
|
353
|
+
|
|
351
354
|
@keyframes ripple {
|
|
352
355
|
0% {
|
|
353
356
|
opacity: 0;
|
|
@@ -405,6 +408,50 @@
|
|
|
405
408
|
background-position: -200% 0;
|
|
406
409
|
}
|
|
407
410
|
}
|
|
411
|
+
|
|
412
|
+
@keyframes fade-in {
|
|
413
|
+
from {
|
|
414
|
+
opacity: 0;
|
|
415
|
+
transform: translateY(6px);
|
|
416
|
+
}
|
|
417
|
+
to {
|
|
418
|
+
opacity: 1;
|
|
419
|
+
transform: translateY(0);
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
--animate-fade-in: fade-in 0.5s ease-in-out both;
|
|
424
|
+
|
|
425
|
+
@keyframes dot-pulse {
|
|
426
|
+
0%,
|
|
427
|
+
80%,
|
|
428
|
+
100% {
|
|
429
|
+
opacity: 0.15;
|
|
430
|
+
}
|
|
431
|
+
40% {
|
|
432
|
+
opacity: 1;
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
--animate-dot-pulse: dot-pulse 1.4s ease-in-out infinite;
|
|
437
|
+
|
|
438
|
+
@keyframes thumb-pop {
|
|
439
|
+
0% {
|
|
440
|
+
transform: scale(1);
|
|
441
|
+
}
|
|
442
|
+
30% {
|
|
443
|
+
transform: scale(1.35);
|
|
444
|
+
}
|
|
445
|
+
50% {
|
|
446
|
+
transform: scale(0.9);
|
|
447
|
+
}
|
|
448
|
+
70% {
|
|
449
|
+
transform: scale(1.1);
|
|
450
|
+
}
|
|
451
|
+
100% {
|
|
452
|
+
transform: scale(1);
|
|
453
|
+
}
|
|
454
|
+
}
|
|
408
455
|
}
|
|
409
456
|
|
|
410
457
|
@layer base {
|
|
@@ -577,6 +624,14 @@
|
|
|
577
624
|
.animate-circular-indeterminate {
|
|
578
625
|
animation: circular-indeterminate 1.2s ease-in-out infinite;
|
|
579
626
|
}
|
|
627
|
+
|
|
628
|
+
.remove-margin-block-start {
|
|
629
|
+
margin-block-start: 0 !important;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
.remove-margin-block-end {
|
|
633
|
+
margin-block-end: 0 !important;
|
|
634
|
+
}
|
|
580
635
|
}
|
|
581
636
|
|
|
582
637
|
@layer base {
|