@livelayer/react 0.5.14 → 0.5.15
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 +13 -2
- package/dist/index.js +3 -3
- package/dist/index.mjs +977 -953
- package/dist/styles.css +18 -0
- package/package.json +2 -2
package/dist/styles.css
CHANGED
|
@@ -1090,6 +1090,24 @@
|
|
|
1090
1090
|
border-color: rgba(248, 113, 113, 0.4);
|
|
1091
1091
|
}
|
|
1092
1092
|
|
|
1093
|
+
/* Mic gate: while the agent is mid-greeting we publish a muted track
|
|
1094
|
+
and disable the mute toggle so the user can't accidentally let their
|
|
1095
|
+
audio bleed back into the agent's mic before it finishes speaking.
|
|
1096
|
+
Visually we just dim it so the affordance is clearly "not yet." */
|
|
1097
|
+
.ll-tool-split--gated {
|
|
1098
|
+
opacity: 0.55;
|
|
1099
|
+
}
|
|
1100
|
+
.ll-tool-split--gated .ll-tool {
|
|
1101
|
+
cursor: not-allowed;
|
|
1102
|
+
}
|
|
1103
|
+
.ll-tool-split--gated .ll-tool:hover {
|
|
1104
|
+
background: inherit;
|
|
1105
|
+
border-color: inherit;
|
|
1106
|
+
}
|
|
1107
|
+
.ll-tool[disabled] {
|
|
1108
|
+
cursor: not-allowed;
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1093
1111
|
/* ── Device selection menu (mic / camera) ───────────────── */
|
|
1094
1112
|
|
|
1095
1113
|
.ll-device-menu {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@livelayer/react",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.15",
|
|
4
4
|
"description": "LiveLayer agent widget for React — avatar video, team switching, responsive layouts, full-fidelity embed",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"livekit-client": "^2.17.3",
|
|
25
|
-
"@livelayer/sdk": "0.3.
|
|
25
|
+
"@livelayer/sdk": "0.3.4"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@testing-library/dom": "^10.4.1",
|