@stream-io/video-react-sdk 1.10.3 → 1.10.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/CHANGELOG.md +13 -0
- package/dist/index.cjs.js +3 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3 -1
- package/dist/index.es.js.map +1 -1
- package/dist/src/wrappers/LivestreamPlayer/LivestreamPlayer.d.ts +1 -1
- package/package.json +3 -3
- package/src/wrappers/LivestreamPlayer/LivestreamPlayer.tsx +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.10.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.10.4...@stream-io/video-react-sdk-1.10.5) (2025-01-23)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `@stream-io/video-client` updated to version `1.15.4`
|
|
10
|
+
* `@stream-io/video-react-bindings` updated to version `1.4.4`
|
|
11
|
+
## [1.10.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.10.3...@stream-io/video-react-sdk-1.10.4) (2025-01-22)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **LivestreamPlayer:** don't render any component until `call` is ready ([#1653](https://github.com/GetStream/stream-video-js/issues/1653)) ([63afc30](https://github.com/GetStream/stream-video-js/commit/63afc3090a5ceb3d656f0111bc348d79b895ab5f))
|
|
17
|
+
|
|
5
18
|
## [1.10.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.10.2...@stream-io/video-react-sdk-1.10.3) (2025-01-21)
|
|
6
19
|
|
|
7
20
|
### Dependency Updates
|
package/dist/index.cjs.js
CHANGED
|
@@ -2571,10 +2571,12 @@ const LivestreamPlayer = (props) => {
|
|
|
2571
2571
|
setCall(undefined);
|
|
2572
2572
|
};
|
|
2573
2573
|
}, [callId, callType, client]);
|
|
2574
|
+
if (!call)
|
|
2575
|
+
return null;
|
|
2574
2576
|
return (jsxRuntime.jsx(StreamCall, { call: call, children: jsxRuntime.jsx(LivestreamLayout, { ...layoutProps }) }));
|
|
2575
2577
|
};
|
|
2576
2578
|
|
|
2577
|
-
const [major, minor, patch] = ("1.10.
|
|
2579
|
+
const [major, minor, patch] = ("1.10.5").split('.');
|
|
2578
2580
|
videoClient.setSdkInfo({
|
|
2579
2581
|
type: videoClient.SfuModels.SdkType.REACT,
|
|
2580
2582
|
major,
|