@stream-io/video-react-sdk 1.20.1 → 1.21.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 +22 -0
- package/dist/css/styles.css +3 -3
- package/dist/css/styles.css.map +1 -1
- package/dist/index.cjs.js +47 -31
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +47 -31
- package/dist/index.es.js.map +1 -1
- package/dist/src/components/CallControls/ScreenShareButton.d.ts +2 -1
- package/dist/src/components/CallControls/ToggleAudioButton.d.ts +3 -2
- package/dist/src/components/CallControls/ToggleVideoButton.d.ts +3 -2
- package/package.json +4 -4
- package/src/components/CallControls/ScreenShareButton.tsx +15 -8
- package/src/components/CallControls/ToggleAudioButton.tsx +29 -14
- package/src/components/CallControls/ToggleVideoButton.tsx +24 -14
- package/src/components/Notification/PermissionNotification.tsx +4 -2
- package/src/core/components/CallLayout/LivestreamLayout.tsx +14 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,28 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.21.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.20.2...@stream-io/video-react-sdk-1.21.0) (2025-09-09)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
- `@stream-io/video-client` updated to version `1.29.0`
|
|
10
|
+
- `@stream-io/video-react-bindings` updated to version `1.8.0`
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
- opt-out from optimistic updates ([#1904](https://github.com/GetStream/stream-video-js/issues/1904)) ([45dba34](https://github.com/GetStream/stream-video-js/commit/45dba34d38dc64f456e37b593e38e420426529f5))
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
- capabilities and call grants ([#1899](https://github.com/GetStream/stream-video-js/issues/1899)) ([5725dfa](https://github.com/GetStream/stream-video-js/commit/5725dfa29b1e5fdb6fe4e26825ce7b268664d2fa))
|
|
19
|
+
- **LivestreamLayout:** handle enter/exit fullscreen gracefully ([#1916](https://github.com/GetStream/stream-video-js/issues/1916)) ([7dd2a0b](https://github.com/GetStream/stream-video-js/commit/7dd2a0b74d9767aae8463fb665a14b944e6cb204)), closes [#1915](https://github.com/GetStream/stream-video-js/issues/1915)
|
|
20
|
+
|
|
21
|
+
## [1.20.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.20.1...@stream-io/video-react-sdk-1.20.2) (2025-09-02)
|
|
22
|
+
|
|
23
|
+
### Dependency Updates
|
|
24
|
+
|
|
25
|
+
- `@stream-io/video-styling` updated to version `1.5.1`
|
|
26
|
+
|
|
5
27
|
## [1.20.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.20.0...@stream-io/video-react-sdk-1.20.1) (2025-08-22)
|
|
6
28
|
|
|
7
29
|
### Dependency Updates
|
package/dist/css/styles.css
CHANGED
|
@@ -234,8 +234,8 @@
|
|
|
234
234
|
margin-inline-end: 8px;
|
|
235
235
|
}
|
|
236
236
|
.str-video__composite-button .str-video__composite-button__button-group .str-video__loading-indicator__icon {
|
|
237
|
-
width: 1.
|
|
238
|
-
height: 1.
|
|
237
|
+
width: 1.25rem;
|
|
238
|
+
height: 1.25rem;
|
|
239
239
|
-webkit-mask-size: 1.25rem;
|
|
240
240
|
mask-size: 1.25rem;
|
|
241
241
|
}
|
|
@@ -903,7 +903,7 @@
|
|
|
903
903
|
margin-top: var(--str-video__spacing-md);
|
|
904
904
|
}
|
|
905
905
|
.str-video__participant-list .str-video__participant-list__content-header {
|
|
906
|
-
display:
|
|
906
|
+
display: flex;
|
|
907
907
|
align-items: center;
|
|
908
908
|
gap: 0.5rem;
|
|
909
909
|
margin-top: var(--str-video__spacing-md);
|