@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.
@@ -1,18 +1,13 @@
1
1
  import { PropsWithChildren } from 'react';
2
2
  import { BackgroundBlurLevel, BackgroundFilter } from '@stream-io/video-filters-web';
3
3
  export type BackgroundFiltersProps = {
4
- /**
5
- * Enables or disables the background-blurring feature.
6
- * @default true.
7
- */
8
- isBlurringEnabled?: boolean;
9
4
  /**
10
5
  * A list of URLs to use as background images.
11
6
  */
12
7
  backgroundImages?: string[];
13
8
  /**
14
9
  * The background filter to apply to the video (by default).
15
- * @default 'none'.
10
+ * @default undefined no filter applied
16
11
  */
17
12
  backgroundFilter?: BackgroundFilter;
18
13
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/video-react-sdk",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
4
4
  "packageManager": "yarn@3.2.4",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.es.js",
@@ -29,9 +29,9 @@
29
29
  ],
30
30
  "dependencies": {
31
31
  "@floating-ui/react": "^0.26.5",
32
- "@stream-io/video-client": "1.4.0",
32
+ "@stream-io/video-client": "1.4.1",
33
33
  "@stream-io/video-filters-web": "0.1.2",
34
- "@stream-io/video-react-bindings": "0.4.44",
34
+ "@stream-io/video-react-bindings": "0.4.45",
35
35
  "chart.js": "^4.4.1",
36
36
  "clsx": "^2.0.0",
37
37
  "react-chartjs-2": "^5.2.0"
@@ -20,12 +20,6 @@ import {
20
20
  } from '@stream-io/video-filters-web';
21
21
 
22
22
  export type BackgroundFiltersProps = {
23
- /**
24
- * Enables or disables the background-blurring feature.
25
- * @default true.
26
- */
27
- isBlurringEnabled?: boolean;
28
-
29
23
  /**
30
24
  * A list of URLs to use as background images.
31
25
  */
@@ -33,7 +27,7 @@ export type BackgroundFiltersProps = {
33
27
 
34
28
  /**
35
29
  * The background filter to apply to the video (by default).
36
- * @default 'none'.
30
+ * @default undefined no filter applied
37
31
  */
38
32
  backgroundFilter?: BackgroundFilter;
39
33
 
@@ -138,7 +132,6 @@ export const BackgroundFiltersProvider = (
138
132
  ) => {
139
133
  const {
140
134
  children,
141
- isBlurringEnabled = true,
142
135
  backgroundImages = [],
143
136
  backgroundFilter: bgFilterFromProps = undefined,
144
137
  backgroundImage: bgImageFromProps = undefined,
@@ -198,7 +191,6 @@ export const BackgroundFiltersProvider = (
198
191
  applyBackgroundBlurFilter,
199
192
  applyBackgroundImageFilter,
200
193
  backgroundImages,
201
- isBlurringEnabled,
202
194
  tfFilePath,
203
195
  modelFilePath,
204
196
  basePath,