@stream-io/video-react-sdk 0.3.29 → 0.3.31

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.
Files changed (52) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/README.md +8 -5
  3. package/dist/css/styles.css +680 -573
  4. package/dist/css/styles.css.map +1 -1
  5. package/dist/src/components/CallParticipantsList/CallParticipantListingItem.js +2 -1
  6. package/dist/src/components/CallParticipantsList/CallParticipantListingItem.js.map +1 -1
  7. package/dist/src/components/CallPreview/CallPreview.d.ts +12 -0
  8. package/dist/src/components/CallPreview/CallPreview.js +21 -0
  9. package/dist/src/components/CallPreview/CallPreview.js.map +1 -0
  10. package/dist/src/components/CallPreview/index.d.ts +1 -0
  11. package/dist/src/components/CallPreview/index.js +2 -0
  12. package/dist/src/components/CallPreview/index.js.map +1 -0
  13. package/dist/src/components/index.d.ts +1 -0
  14. package/dist/src/components/index.js +1 -0
  15. package/dist/src/components/index.js.map +1 -1
  16. package/dist/src/core/components/Audio/ParticipantsAudio.d.ts +14 -0
  17. package/dist/src/core/components/Audio/ParticipantsAudio.js +11 -0
  18. package/dist/src/core/components/Audio/ParticipantsAudio.js.map +1 -0
  19. package/dist/src/core/components/Audio/index.d.ts +1 -0
  20. package/dist/src/core/components/Audio/index.js +1 -0
  21. package/dist/src/core/components/Audio/index.js.map +1 -1
  22. package/dist/src/core/components/CallLayout/LivestreamLayout.d.ts +39 -0
  23. package/dist/src/core/components/CallLayout/LivestreamLayout.js +91 -0
  24. package/dist/src/core/components/CallLayout/LivestreamLayout.js.map +1 -0
  25. package/dist/src/core/components/CallLayout/PaginatedGridLayout.js +4 -2
  26. package/dist/src/core/components/CallLayout/PaginatedGridLayout.js.map +1 -1
  27. package/dist/src/core/components/CallLayout/SpeakerLayout.d.ts +1 -1
  28. package/dist/src/core/components/CallLayout/SpeakerLayout.js +7 -28
  29. package/dist/src/core/components/CallLayout/SpeakerLayout.js.map +1 -1
  30. package/dist/src/core/components/CallLayout/hooks.d.ts +3 -0
  31. package/dist/src/core/components/CallLayout/hooks.js +41 -0
  32. package/dist/src/core/components/CallLayout/hooks.js.map +1 -0
  33. package/dist/src/core/components/CallLayout/index.d.ts +1 -0
  34. package/dist/src/core/components/CallLayout/index.js +1 -0
  35. package/dist/src/core/components/CallLayout/index.js.map +1 -1
  36. package/dist/src/translations/en.json +1 -0
  37. package/dist/src/translations/index.d.ts +1 -0
  38. package/dist/version.d.ts +1 -1
  39. package/dist/version.js +1 -1
  40. package/package.json +4 -4
  41. package/src/components/CallParticipantsList/CallParticipantListingItem.tsx +2 -1
  42. package/src/components/CallPreview/CallPreview.tsx +40 -0
  43. package/src/components/CallPreview/index.ts +1 -0
  44. package/src/components/index.ts +1 -0
  45. package/src/core/components/Audio/ParticipantsAudio.tsx +35 -0
  46. package/src/core/components/Audio/index.ts +1 -0
  47. package/src/core/components/CallLayout/LivestreamLayout.tsx +231 -0
  48. package/src/core/components/CallLayout/PaginatedGridLayout.tsx +5 -4
  49. package/src/core/components/CallLayout/SpeakerLayout.tsx +8 -40
  50. package/src/core/components/CallLayout/hooks.ts +54 -0
  51. package/src/core/components/CallLayout/index.ts +1 -0
  52. package/src/translations/en.json +2 -0
package/CHANGELOG.md CHANGED
@@ -2,6 +2,30 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ### [0.3.31](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.30...@stream-io/video-react-sdk-0.3.31) (2023-09-27)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `@stream-io/video-client` updated to version `0.1.0`
10
+ * `@stream-io/video-react-bindings` updated to version `0.2.27`
11
+ * `@stream-io/video-styling` updated to version `0.1.11`
12
+
13
+ ### Features
14
+
15
+ * **Call Preview:** Support for call thumbnails ([#1099](https://github.com/GetStream/stream-video-js/issues/1099)) ([9274f76](https://github.com/GetStream/stream-video-js/commit/9274f760ed264ee0ee6ac97c6fe679288e067fd8))
16
+
17
+ ### [0.3.30](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.29...@stream-io/video-react-sdk-0.3.30) (2023-09-27)
18
+
19
+ ### Dependency Updates
20
+
21
+ * `@stream-io/video-client` updated to version `0.1.0`
22
+ * `@stream-io/video-react-bindings` updated to version `0.2.26`
23
+ * `@stream-io/video-styling` updated to version `0.1.10`
24
+
25
+ ### Features
26
+
27
+ * **react-sdk:** LivestreamLayout ([#1103](https://github.com/GetStream/stream-video-js/issues/1103)) ([6636699](https://github.com/GetStream/stream-video-js/commit/6636699701dfd5eb5886c50781dd5f16a8470da5))
28
+
5
29
  ### [0.3.29](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.3.28...@stream-io/video-react-sdk-0.3.29) (2023-09-27)
6
30
 
7
31
 
package/README.md CHANGED
@@ -54,17 +54,20 @@ Here are some of the features we support:
54
54
  ## Roadmap
55
55
 
56
56
  ### 0.4 milestone
57
- - [X] Enhanced device management API
58
- - [X] Composite layout for streaming and recording
59
- - [ ] Livestream Player
57
+
58
+ - [x] Enhanced device management API
59
+ - [x] Composite layout for streaming and recording
60
+ - [x] Livestream Player
60
61
  - [ ] Screenshare Audio
61
62
  - [ ] Screen-sharing resolution and FPS control
62
63
  - [ ] Fast-reconnects
63
64
  - [ ] New Device Management API
64
- - [X] SFU retries
65
+ - [x] SFU retries
66
+ - [x] Call Thumbnails
65
67
  - [ ] Query call session endpoint
66
68
 
67
69
  ### 0.5 milestone
70
+
68
71
  - [ ] Enhanced UI components and theming
69
72
  - [ ] Enhanced SDK build system
70
73
  - [ ] Typescript generics enhancements
@@ -76,6 +79,7 @@ Here are some of the features we support:
76
79
  - [ ] E2E testing platform
77
80
 
78
81
  ### 0.6 milestone
82
+
79
83
  - [ ] Break-out rooms
80
84
  - [ ] Waiting rooms
81
85
  - [ ] Transcriptions
@@ -83,7 +87,6 @@ Here are some of the features we support:
83
87
  - [ ] Video and audio filters
84
88
  - [ ] Dynascale: turn off incoming video when the browser is in the background
85
89
 
86
-
87
90
  ## Contributing
88
91
 
89
92
  - How can I submit a sample app?