@stream-io/video-react-sdk 1.2.4 → 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 CHANGED
@@ -2,6 +2,13 @@
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
+
5
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)
6
13
 
7
14
  ### 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, isBlurringEnabled = true, backgroundImages = [], backgroundFilter: bgFilterFromProps = undefined, backgroundImage: bgImageFromProps = undefined, backgroundBlurLevel: bgBlurLevelFromProps = 'high', tfFilePath, modelFilePath, basePath, } = props;
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.4" ).split('.');
2603
+ const [major, minor, patch] = ("1.2.5" ).split('.');
2605
2604
  videoClient.setSdkInfo({
2606
2605
  type: videoClient.SfuModels.SdkType.REACT,
2607
2606
  major,