@livelayer/react 0.9.3 → 0.9.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.
- package/dist/index.d.ts +14 -0
- package/dist/index.js +3 -3
- package/dist/index.mjs +577 -567
- package/dist/styles.css +16 -9
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1007,17 +1007,24 @@
|
|
|
1007
1007
|
}
|
|
1008
1008
|
|
|
1009
1009
|
/* Captions affordance for deaf-friendly UX: when the latest transcript
|
|
1010
|
-
line is the AGENT's spoken output, tint the pill
|
|
1011
|
-
|
|
1012
|
-
keeps default styling
|
|
1013
|
-
|
|
1014
|
-
the
|
|
1010
|
+
line is the AGENT's spoken output, tint the pill ORANGE so it reads
|
|
1011
|
+
unambiguously as "this text is coming from Live Layer." The user's
|
|
1012
|
+
STT pill keeps default dark styling so the two voices contrast
|
|
1013
|
+
immediately at a glance. Previous opacity (0.18) was so faint
|
|
1014
|
+
testers couldn't tell the agent line was differentiated at all —
|
|
1015
|
+
now the pill is brand-orange, with a saturated glow + warm white
|
|
1016
|
+
text on the colored background. */
|
|
1015
1017
|
.ll-expanded__transcript--agent {
|
|
1016
|
-
background: rgba(
|
|
1017
|
-
border-color: rgba(255, 175, 110, 0.
|
|
1018
|
+
background: rgba(224, 101, 64, 0.85);
|
|
1019
|
+
border-color: rgba(255, 175, 110, 0.6);
|
|
1018
1020
|
box-shadow:
|
|
1019
|
-
0 0
|
|
1020
|
-
inset 0 0 0 1px rgba(255,
|
|
1021
|
+
0 0 24px rgba(224, 101, 64, 0.4),
|
|
1022
|
+
inset 0 0 0 1px rgba(255, 200, 160, 0.25);
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
.ll-expanded__transcript--agent .ll-expanded__transcript-text {
|
|
1026
|
+
color: #fff;
|
|
1027
|
+
font-weight: 500;
|
|
1021
1028
|
}
|
|
1022
1029
|
|
|
1023
1030
|
@media (prefers-reduced-motion: reduce) {
|
package/package.json
CHANGED