@stream-io/video-react-sdk 1.6.0 → 1.6.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/package.json
CHANGED
|
@@ -23,6 +23,7 @@ export type VideoProps = ComponentPropsWithoutRef<'video'> & {
|
|
|
23
23
|
/**
|
|
24
24
|
* Pass false to disable rendering video and render fallback
|
|
25
25
|
* even if the participant has published video.
|
|
26
|
+
* @default true
|
|
26
27
|
*/
|
|
27
28
|
enabled?: boolean;
|
|
28
29
|
/**
|
|
@@ -64,7 +65,7 @@ export type VideoProps = ComponentPropsWithoutRef<'video'> & {
|
|
|
64
65
|
};
|
|
65
66
|
|
|
66
67
|
export const Video = ({
|
|
67
|
-
enabled,
|
|
68
|
+
enabled = true,
|
|
68
69
|
mirror,
|
|
69
70
|
trackType,
|
|
70
71
|
participant,
|