@stream-io/video-react-sdk 1.23.1 → 1.24.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 +16 -0
- package/dist/css/styles.css +10 -8
- package/dist/css/styles.css.map +1 -1
- package/dist/index.cjs.js +5 -16
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +6 -17
- package/dist/index.es.js.map +1 -1
- package/dist/latency-chart-Bj5OSYzg.es.js.map +1 -1
- package/dist/latency-chart-CpL1M_s0.cjs.js.map +1 -1
- package/package.json +13 -13
- package/src/wrappers/LivestreamPlayer/LivestreamPlayer.tsx +5 -5
- package/dist/src/hooks/useEffectEvent.d.ts +0 -1
- package/src/hooks/useEffectEvent.ts +0 -16
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.24.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.23.1...@stream-io/video-react-sdk-1.24.0) (2025-10-14)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
- `@stream-io/audio-filters-web` updated to version `0.6.0`
|
|
10
|
+
- `@stream-io/video-styling` updated to version `1.6.0`
|
|
11
|
+
- `@stream-io/video-client` updated to version `1.34.0`
|
|
12
|
+
- `@stream-io/video-filters-web` updated to version `0.3.0`
|
|
13
|
+
- `@stream-io/video-react-bindings` updated to version `1.10.0`
|
|
14
|
+
|
|
15
|
+
- add useEffectEvent shim to bindings with react 19.2 dev dep ([#1944](https://github.com/GetStream/stream-video-js/issues/1944)) ([26ca6bd](https://github.com/GetStream/stream-video-js/commit/26ca6bd7702d4960c098104e12db18f7d8afc7ce))
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
- **deps:** React 19.1, React Native 0.81, NextJS 15.5, Expo 54 ([#1940](https://github.com/GetStream/stream-video-js/issues/1940)) ([30f8ce2](https://github.com/GetStream/stream-video-js/commit/30f8ce2b335189e1f77160236839bc6c6a02f634))
|
|
20
|
+
|
|
5
21
|
## [1.23.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.23.0...@stream-io/video-react-sdk-1.23.1) (2025-10-02)
|
|
6
22
|
|
|
7
23
|
### Dependency Updates
|
package/dist/css/styles.css
CHANGED
|
@@ -659,14 +659,14 @@
|
|
|
659
659
|
background-color: var(--str-video__primary-color);
|
|
660
660
|
color: var(--str-video__text-color1);
|
|
661
661
|
}
|
|
662
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__viewers-count {
|
|
663
|
-
padding: 4px 8px;
|
|
664
|
-
}
|
|
665
662
|
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__viewers-count::before {
|
|
666
663
|
content: var(--str-video__icon--livestream-viewers);
|
|
667
664
|
margin-right: 3px;
|
|
668
665
|
vertical-align: middle;
|
|
669
666
|
}
|
|
667
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__viewers-count {
|
|
668
|
+
padding: 4px 8px;
|
|
669
|
+
}
|
|
670
670
|
.str-video__livestream-layout__wrapper .str-video__livestream-layout__overlay .str-video__livestream-layout__speaker-name {
|
|
671
671
|
flex: 1;
|
|
672
672
|
font-size: 13px;
|
|
@@ -696,14 +696,14 @@
|
|
|
696
696
|
.str-video__livestream-layout__wrapper .str-video__livestream-layout__backstage .str-video__livestream-layout__starts-at {
|
|
697
697
|
padding: 4px 8px;
|
|
698
698
|
}
|
|
699
|
-
.str-video__livestream-layout__wrapper .str-video__livestream-layout__backstage .str-video__livestream-layout__early-viewers-count {
|
|
700
|
-
padding: 4px 8px;
|
|
701
|
-
}
|
|
702
699
|
.str-video__livestream-layout__wrapper .str-video__livestream-layout__backstage .str-video__livestream-layout__early-viewers-count::before {
|
|
703
700
|
content: var(--str-video__icon--livestream-viewers);
|
|
704
701
|
margin-right: 3px;
|
|
705
702
|
vertical-align: middle;
|
|
706
703
|
}
|
|
704
|
+
.str-video__livestream-layout__wrapper .str-video__livestream-layout__backstage .str-video__livestream-layout__early-viewers-count {
|
|
705
|
+
padding: 4px 8px;
|
|
706
|
+
}
|
|
707
707
|
|
|
708
708
|
.str-video__paginated-grid-layout__wrapper {
|
|
709
709
|
flex-grow: 1;
|
|
@@ -1694,12 +1694,14 @@
|
|
|
1694
1694
|
.str-video__menu-container {
|
|
1695
1695
|
z-index: 2;
|
|
1696
1696
|
width: max-content;
|
|
1697
|
-
-ms-overflow-style: none;
|
|
1698
|
-
scrollbar-width: none;
|
|
1699
1697
|
}
|
|
1700
1698
|
.str-video__menu-container::-webkit-scrollbar {
|
|
1701
1699
|
display: none;
|
|
1702
1700
|
}
|
|
1701
|
+
.str-video__menu-container {
|
|
1702
|
+
-ms-overflow-style: none;
|
|
1703
|
+
scrollbar-width: none;
|
|
1704
|
+
}
|
|
1703
1705
|
|
|
1704
1706
|
.str-video__portal {
|
|
1705
1707
|
position: fixed;
|