@stream-io/video-react-sdk 1.17.1 → 1.18.1
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/styles.css +16 -0
- package/dist/css/styles.css.map +1 -1
- package/dist/index.cjs.js +256 -57
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +256 -58
- package/dist/index.es.js.map +1 -1
- package/dist/src/core/components/CallLayout/LivestreamLayout.d.ts +14 -0
- package/dist/src/hooks/useEffectEvent.d.ts +1 -0
- package/dist/src/translations/index.d.ts +4 -0
- package/dist/src/wrappers/LivestreamPlayer/LivestreamPlayer.d.ts +21 -1
- package/package.json +5 -5
- package/src/components/NoiseCancellation/NoiseCancellationProvider.tsx +1 -1
- package/src/core/components/CallLayout/LivestreamLayout.tsx +48 -6
- package/src/hooks/useEffectEvent.ts +16 -0
- package/src/hooks/usePersistedDevicePreferences.ts +181 -72
- package/src/translations/en.json +4 -0
- package/src/wrappers/LivestreamPlayer/LivestreamPlayer.tsx +119 -8
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.18.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.18.0...@stream-io/video-react-sdk-1.18.1) (2025-05-26)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
- `@stream-io/audio-filters-web` updated to version `0.4.1`
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- add audio context state tracing ([#1805](https://github.com/GetStream/stream-video-js/issues/1805)) ([0d86623](https://github.com/GetStream/stream-video-js/commit/0d8662398a2e8b5c07bf3ef5b68faf0a4003c702))
|
|
14
|
+
|
|
15
|
+
## [1.18.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.17.1...@stream-io/video-react-sdk-1.18.0) (2025-05-22)
|
|
16
|
+
|
|
17
|
+
### Dependency Updates
|
|
18
|
+
|
|
19
|
+
- `@stream-io/video-styling` updated to version `1.2.0`
|
|
20
|
+
- `@stream-io/video-client` updated to version `1.23.2`
|
|
21
|
+
- `@stream-io/video-react-bindings` updated to version `1.6.5`
|
|
22
|
+
|
|
23
|
+
### Features
|
|
24
|
+
|
|
25
|
+
- add backstage mode for LivestreamPlayer ([#1796](https://github.com/GetStream/stream-video-js/issues/1796)) ([94e2863](https://github.com/GetStream/stream-video-js/commit/94e2863aa8c52542f2ecb53f71485d5d5f2e79fd))
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
- sequential uPDP ([#1802](https://github.com/GetStream/stream-video-js/issues/1802)) ([f613b97](https://github.com/GetStream/stream-video-js/commit/f613b97ea03e85fd64ca5de76f4e34d1507fef27))
|
|
30
|
+
|
|
5
31
|
## [1.17.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.17.0...@stream-io/video-react-sdk-1.17.1) (2025-05-21)
|
|
6
32
|
|
|
7
33
|
### Dependency Updates
|
package/dist/css/styles.css
CHANGED
|
@@ -715,6 +715,22 @@
|
|
|
715
715
|
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__go-fullscreen:hover {
|
|
716
716
|
background-color: var(--str-video__overlay-color);
|
|
717
717
|
}
|
|
718
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__backstage {
|
|
719
|
+
display: flex;
|
|
720
|
+
flex-direction: column;
|
|
721
|
+
align-items: center;
|
|
722
|
+
}
|
|
723
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__backstage .str-video__livestream-layout__starts-at {
|
|
724
|
+
padding: 4px 8px;
|
|
725
|
+
}
|
|
726
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__backstage .str-video__livestream-layout__early-viewers-count {
|
|
727
|
+
padding: 4px 8px;
|
|
728
|
+
}
|
|
729
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__backstage .str-video__livestream-layout__early-viewers-count::before {
|
|
730
|
+
content: var(--str-video__icon--livestream-viewers);
|
|
731
|
+
margin-right: 3px;
|
|
732
|
+
vertical-align: middle;
|
|
733
|
+
}
|
|
718
734
|
|
|
719
735
|
.str-video__paginated-grid-layout__wrapper {
|
|
720
736
|
flex-grow: 1;
|