@stream-io/video-react-sdk 1.7.12 → 1.7.13

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/video-react-sdk",
3
- "version": "1.7.12",
3
+ "version": "1.7.13",
4
4
  "packageManager": "yarn@3.2.4",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.es.js",
@@ -33,7 +33,7 @@
33
33
  "dependencies": {
34
34
  "@floating-ui/react": "^0.26.24",
35
35
  "@stream-io/video-client": "1.10.5",
36
- "@stream-io/video-filters-web": "0.1.5",
36
+ "@stream-io/video-filters-web": "0.1.6",
37
37
  "@stream-io/video-react-bindings": "1.1.16",
38
38
  "chart.js": "^4.4.4",
39
39
  "clsx": "^2.0.0",
@@ -145,7 +145,7 @@ export const BackgroundFiltersProvider = (
145
145
  backgroundImages = [],
146
146
  backgroundFilter: bgFilterFromProps = undefined,
147
147
  backgroundImage: bgImageFromProps = undefined,
148
- backgroundBlurLevel: bgBlurLevelFromProps = 'high',
148
+ backgroundBlurLevel: bgBlurLevelFromProps = undefined,
149
149
  tfFilePath,
150
150
  modelFilePath,
151
151
  basePath,
@@ -173,7 +173,7 @@ export const BackgroundFiltersProvider = (
173
173
  const disableBackgroundFilter = useCallback(() => {
174
174
  setBackgroundFilter(undefined);
175
175
  setBackgroundImage(undefined);
176
- setBackgroundBlurLevel('high');
176
+ setBackgroundBlurLevel(undefined);
177
177
  }, []);
178
178
 
179
179
  const [isSupported, setIsSupported] = useState(false);