@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.
@@ -5,6 +5,7 @@ export type VideoProps = ComponentPropsWithoutRef<'video'> & {
5
5
  /**
6
6
  * Pass false to disable rendering video and render fallback
7
7
  * even if the participant has published video.
8
+ * @default true
8
9
  */
9
10
  enabled?: boolean;
10
11
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/video-react-sdk",
3
- "version": "1.6.0",
3
+ "version": "1.6.1",
4
4
  "packageManager": "yarn@3.2.4",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.es.js",
@@ -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,