@stream-io/video-react-sdk 1.27.1 → 1.27.2
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.27.
|
|
3
|
+
"version": "1.27.2",
|
|
4
4
|
"main": "./dist/index.cjs.js",
|
|
5
5
|
"module": "./dist/index.es.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@floating-ui/react": "^0.27.6",
|
|
34
|
-
"@stream-io/video-client": "1.37.
|
|
35
|
-
"@stream-io/video-filters-web": "0.5.
|
|
36
|
-
"@stream-io/video-react-bindings": "1.11.
|
|
34
|
+
"@stream-io/video-client": "1.37.3",
|
|
35
|
+
"@stream-io/video-filters-web": "0.5.1",
|
|
36
|
+
"@stream-io/video-react-bindings": "1.11.4",
|
|
37
37
|
"chart.js": "^4.4.4",
|
|
38
38
|
"clsx": "^2.0.0",
|
|
39
39
|
"react-chartjs-2": "^5.3.0"
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@rollup/plugin-json": "^6.1.0",
|
|
47
47
|
"@rollup/plugin-replace": "^6.0.2",
|
|
48
48
|
"@rollup/plugin-typescript": "^12.1.4",
|
|
49
|
-
"@stream-io/audio-filters-web": "^0.6.
|
|
49
|
+
"@stream-io/audio-filters-web": "^0.6.1",
|
|
50
50
|
"@stream-io/video-styling": "^1.8.0",
|
|
51
51
|
"@types/react": "~19.1.17",
|
|
52
52
|
"@types/react-dom": "~19.1.11",
|
|
@@ -138,9 +138,13 @@ export const NoiseCancellationProvider = (
|
|
|
138
138
|
? enabledOrSetter(isEnabled)
|
|
139
139
|
: enabledOrSetter;
|
|
140
140
|
if (enable) {
|
|
141
|
-
noiseCancellation.enable()
|
|
141
|
+
noiseCancellation.enable().catch((err) => {
|
|
142
|
+
console.error('Failed to enable noise cancellation', err);
|
|
143
|
+
});
|
|
142
144
|
} else {
|
|
143
|
-
noiseCancellation.disable()
|
|
145
|
+
noiseCancellation.disable().catch((err) => {
|
|
146
|
+
console.error('Failed to disable noise cancellation', err);
|
|
147
|
+
});
|
|
144
148
|
}
|
|
145
149
|
},
|
|
146
150
|
}),
|