@stream-io/video-react-sdk 1.2.3 → 1.2.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 +2 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2 -3
- package/dist/index.es.js.map +1 -1
- package/dist/src/components/BackgroundFilters/BackgroundFilters.d.ts +1 -6
- package/package.json +3 -3
- package/src/components/BackgroundFilters/BackgroundFilters.tsx +1 -9
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.2.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.2.4...@stream-io/video-react-sdk-1.2.5) (2024-06-20)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* remove `isBlurringEnabled` prop ([#1411](https://github.com/GetStream/stream-video-js/issues/1411)) ([23bafe0](https://github.com/GetStream/stream-video-js/commit/23bafe0cc6a3bf0bcdff2e0339904dae5778c560))
|
|
11
|
+
|
|
12
|
+
### [1.2.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.2.3...@stream-io/video-react-sdk-1.2.4) (2024-06-19)
|
|
13
|
+
|
|
14
|
+
### Dependency Updates
|
|
15
|
+
|
|
16
|
+
* `@stream-io/video-client` updated to version `1.4.1`
|
|
17
|
+
* `@stream-io/video-react-bindings` updated to version `0.4.45`
|
|
5
18
|
### [1.2.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.2.2...@stream-io/video-react-sdk-1.2.3) (2024-06-19)
|
|
6
19
|
|
|
7
20
|
### Dependency Updates
|
package/dist/index.cjs.js
CHANGED
|
@@ -72,7 +72,7 @@ const useBackgroundFilters = () => {
|
|
|
72
72
|
* in your project before using this component.
|
|
73
73
|
*/
|
|
74
74
|
const BackgroundFiltersProvider = (props) => {
|
|
75
|
-
const { children,
|
|
75
|
+
const { children, backgroundImages = [], backgroundFilter: bgFilterFromProps = undefined, backgroundImage: bgImageFromProps = undefined, backgroundBlurLevel: bgBlurLevelFromProps = 'high', tfFilePath, modelFilePath, basePath, } = props;
|
|
76
76
|
const [backgroundFilter, setBackgroundFilter] = react.useState(bgFilterFromProps);
|
|
77
77
|
const [backgroundImage, setBackgroundImage] = react.useState(bgImageFromProps);
|
|
78
78
|
const [backgroundBlurLevel, setBackgroundBlurLevel] = react.useState(bgBlurLevelFromProps);
|
|
@@ -112,7 +112,6 @@ const BackgroundFiltersProvider = (props) => {
|
|
|
112
112
|
applyBackgroundBlurFilter,
|
|
113
113
|
applyBackgroundImageFilter,
|
|
114
114
|
backgroundImages,
|
|
115
|
-
isBlurringEnabled,
|
|
116
115
|
tfFilePath,
|
|
117
116
|
modelFilePath,
|
|
118
117
|
basePath,
|
|
@@ -2601,7 +2600,7 @@ const LivestreamPlayer = (props) => {
|
|
|
2601
2600
|
return (jsxRuntime.jsx(StreamCall, { call: call, children: jsxRuntime.jsx(LivestreamLayout, { ...layoutProps }) }));
|
|
2602
2601
|
};
|
|
2603
2602
|
|
|
2604
|
-
const [major, minor, patch] = ("1.2.
|
|
2603
|
+
const [major, minor, patch] = ("1.2.5" ).split('.');
|
|
2605
2604
|
videoClient.setSdkInfo({
|
|
2606
2605
|
type: videoClient.SfuModels.SdkType.REACT,
|
|
2607
2606
|
major,
|