@stream-io/video-react-sdk 1.33.3 → 1.34.0
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 +26 -0
- package/dist/css/embedded.css +5 -0
- package/dist/css/embedded.css.map +1 -1
- package/dist/css/styles.css +5 -0
- package/dist/css/styles.css.map +1 -1
- package/dist/embedded.cjs.js +38 -5
- package/dist/embedded.cjs.js.map +1 -1
- package/dist/embedded.es.js +38 -5
- package/dist/embedded.es.js.map +1 -1
- package/dist/index.cjs.js +40 -7
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +40 -7
- package/dist/index.es.js.map +1 -1
- package/dist/src/components/NoiseCancellation/NoiseCancellationProvider.d.ts +4 -0
- package/dist/src/translations/index.d.ts +1 -0
- package/package.json +5 -5
- package/src/components/CallControls/CallControls.tsx +4 -9
- package/src/components/NoiseCancellation/NoiseCancellationProvider.tsx +15 -3
- package/src/core/components/ParticipantView/DefaultParticipantViewUI.tsx +44 -4
- package/src/translations/en.json +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,32 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.34.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.33.4...@stream-io/video-react-sdk-1.34.0) (2026-03-20)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
- `@stream-io/video-styling` updated to version `1.12.0`
|
|
10
|
+
- `@stream-io/video-client` updated to version `1.44.4`
|
|
11
|
+
- `@stream-io/video-react-bindings` updated to version `1.13.13`
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
- **react:** display loading indicator while participant audio is connecting ([#2167](https://github.com/GetStream/stream-video-js/issues/2167)) ([bb2e273](https://github.com/GetStream/stream-video-js/commit/bb2e2733a3e88fd60220118f267d74d952f16ed8))
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
- **react:** remove default broken microphone notification from call controls ([#2158](https://github.com/GetStream/stream-video-js/issues/2158)) ([4a95b9c](https://github.com/GetStream/stream-video-js/commit/4a95b9c29e9d2728ae7eea764f07ec8507aa0f5a))
|
|
20
|
+
|
|
21
|
+
## [1.33.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.33.3...@stream-io/video-react-sdk-1.33.4) (2026-03-09)
|
|
22
|
+
|
|
23
|
+
### Dependency Updates
|
|
24
|
+
|
|
25
|
+
- `@stream-io/audio-filters-web` updated to version `0.7.3`
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
- **react:** await initialization before enabling / disabling noise cancellation ([#2153](https://github.com/GetStream/stream-video-js/issues/2153)) ([3455a0e](https://github.com/GetStream/stream-video-js/commit/3455a0e597245af6c34332424b4b7029abf7c675))
|
|
30
|
+
|
|
5
31
|
## [1.33.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.33.2...@stream-io/video-react-sdk-1.33.3) (2026-03-06)
|
|
6
32
|
|
|
7
33
|
### Dependency Updates
|
package/dist/css/embedded.css
CHANGED
|
@@ -2055,6 +2055,11 @@
|
|
|
2055
2055
|
-webkit-mask-image: var(--str-video__icon--mic-off);
|
|
2056
2056
|
mask-image: var(--str-video__icon--mic-off);
|
|
2057
2057
|
}
|
|
2058
|
+
.str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--audio-connecting .str-video__loading-indicator__icon {
|
|
2059
|
+
width: 1rem;
|
|
2060
|
+
height: 1rem;
|
|
2061
|
+
border-width: 2px;
|
|
2062
|
+
}
|
|
2058
2063
|
.str-video__participant-view .str-video__participant-details .str-video__participant-details__name .str-video__participant-details__name--video-muted {
|
|
2059
2064
|
width: 1rem;
|
|
2060
2065
|
height: 1rem;
|