@stream-io/video-react-sdk 1.6.6 → 1.7.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 +23 -0
- package/README.md +1 -1
- package/dist/css/styles.css +1 -1
- package/dist/css/styles.css.map +1 -1
- package/dist/index.cjs.js +45 -30
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +45 -30
- package/dist/index.es.js.map +1 -1
- package/dist/src/core/components/CallLayout/SpeakerLayout.d.ts +2 -2
- package/dist/src/core/components/ParticipantView/ParticipantView.d.ts +2 -2
- package/dist/src/core/components/Video/BaseVideoPlaceholder.d.ts +6 -0
- package/dist/src/core/components/Video/DefaultPictureInPicturePlaceholder.d.ts +3 -0
- package/dist/src/core/components/Video/DefaultVideoPlaceholder.d.ts +3 -6
- package/dist/src/core/components/Video/Video.d.ts +12 -1
- package/dist/src/core/hooks/usePictureInPictureState.d.ts +1 -0
- package/package.json +4 -4
- package/src/core/components/CallLayout/PaginatedGridLayout.tsx +6 -1
- package/src/core/components/CallLayout/SpeakerLayout.tsx +8 -1
- package/src/core/components/ParticipantView/ParticipantActionsContextMenu.tsx +4 -24
- package/src/core/components/ParticipantView/ParticipantView.tsx +3 -1
- package/src/core/components/Video/BaseVideoPlaceholder.tsx +49 -0
- package/src/core/components/Video/DefaultPictureInPicturePlaceholder.tsx +20 -0
- package/src/core/components/Video/DefaultVideoPlaceholder.tsx +10 -41
- package/src/core/components/Video/Video.tsx +25 -0
- package/src/core/hooks/usePictureInPictureState.ts +27 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,29 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [1.7.0](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.6.7...@stream-io/video-react-sdk-1.7.0) (2024-10-16)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `@stream-io/video-client` updated to version `1.9.0`
|
|
10
|
+
* `@stream-io/video-react-bindings` updated to version `1.1.5`
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* **svc-codec:** VP9 and AV1 support ([#1434](https://github.com/GetStream/stream-video-js/issues/1434)) ([c9c8530](https://github.com/GetStream/stream-video-js/commit/c9c8530d48c9206dc3803e6aa6cc1859fd433920))
|
|
15
|
+
|
|
16
|
+
## [1.6.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.6.6...@stream-io/video-react-sdk-1.6.7) (2024-10-16)
|
|
17
|
+
|
|
18
|
+
### Dependency Updates
|
|
19
|
+
|
|
20
|
+
* `@stream-io/video-client` updated to version `1.8.4`
|
|
21
|
+
* `@stream-io/video-react-bindings` updated to version `1.1.4`
|
|
22
|
+
* `@stream-io/video-styling` updated to version `1.1.1`
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
* PiP video placeholder ([#1509](https://github.com/GetStream/stream-video-js/issues/1509)) ([9eb2936](https://github.com/GetStream/stream-video-js/commit/9eb2936379726923ee43491ce965003e0e7f2c37))
|
|
27
|
+
|
|
5
28
|
## [1.6.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-1.6.5...@stream-io/video-react-sdk-1.6.6) (2024-10-14)
|
|
6
29
|
|
|
7
30
|
|
package/README.md
CHANGED
|
@@ -89,7 +89,7 @@ Here are some of the features we support:
|
|
|
89
89
|
- [ ] Closed captions
|
|
90
90
|
- [ ] Query call session endpoint
|
|
91
91
|
- [ ] Logging 2.0
|
|
92
|
-
- [
|
|
92
|
+
- [x] Hardware-accelerated video encoding on supported platforms
|
|
93
93
|
- [ ] Dynascale 2.0 (codec switching)
|
|
94
94
|
- [ ] E2E testing platform
|
|
95
95
|
- [ ] Dynascale: turn off incoming video when the browser is in the background
|