@stream-io/video-react-sdk 1.11.4 → 1.11.6
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/CHANGELOG.md +13 -0
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/dist/src/core/components/CallLayout/LivestreamLayout.d.ts +1 -1
- package/package.json +3 -3
- package/src/core/components/CallLayout/LivestreamLayout.tsx +3 -3
|
@@ -27,7 +27,7 @@ export type LivestreamLayoutProps = {
|
|
|
27
27
|
*/
|
|
28
28
|
showSpeakerName?: boolean;
|
|
29
29
|
/**
|
|
30
|
-
* When set to `false` disables mirroring of the local
|
|
30
|
+
* When set to `false` disables mirroring of the local participant's video.
|
|
31
31
|
* @default true
|
|
32
32
|
*/
|
|
33
33
|
mirrorLocalParticipantVideo?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stream-io/video-react-sdk",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.6",
|
|
4
4
|
"packageManager": "yarn@3.2.4",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@floating-ui/react": "^0.26.24",
|
|
34
|
-
"@stream-io/video-client": "1.16.
|
|
34
|
+
"@stream-io/video-client": "1.16.3",
|
|
35
35
|
"@stream-io/video-filters-web": "0.1.6",
|
|
36
|
-
"@stream-io/video-react-bindings": "1.4.
|
|
36
|
+
"@stream-io/video-react-bindings": "1.4.11",
|
|
37
37
|
"chart.js": "^4.4.4",
|
|
38
38
|
"clsx": "^2.0.0",
|
|
39
39
|
"react-chartjs-2": "^5.3.0"
|
|
@@ -45,7 +45,7 @@ export type LivestreamLayoutProps = {
|
|
|
45
45
|
showSpeakerName?: boolean;
|
|
46
46
|
|
|
47
47
|
/**
|
|
48
|
-
* When set to `false` disables mirroring of the local
|
|
48
|
+
* When set to `false` disables mirroring of the local participant's video.
|
|
49
49
|
* @default true
|
|
50
50
|
*/
|
|
51
51
|
mirrorLocalParticipantVideo?: boolean;
|
|
@@ -84,7 +84,7 @@ export const LivestreamLayout = (props: LivestreamLayoutProps) => {
|
|
|
84
84
|
/>
|
|
85
85
|
);
|
|
86
86
|
|
|
87
|
-
const { floatingParticipantProps } = props;
|
|
87
|
+
const { floatingParticipantProps, muted } = props;
|
|
88
88
|
const FloatingParticipantOverlay = hasOngoingScreenShare && (
|
|
89
89
|
<ParticipantOverlay
|
|
90
90
|
// these elements aren't needed for the video feed
|
|
@@ -99,7 +99,7 @@ export const LivestreamLayout = (props: LivestreamLayoutProps) => {
|
|
|
99
99
|
|
|
100
100
|
return (
|
|
101
101
|
<div className="str-video__livestream-layout__wrapper">
|
|
102
|
-
<ParticipantsAudio participants={remoteParticipants} />
|
|
102
|
+
{!muted && <ParticipantsAudio participants={remoteParticipants} />}
|
|
103
103
|
{hasOngoingScreenShare && presenter && (
|
|
104
104
|
<ParticipantView
|
|
105
105
|
className="str-video__livestream-layout__screen-share"
|