@stream-io/video-react-sdk 0.0.1-alpha.9 → 0.0.1-alpha.91

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 (249) hide show
  1. package/CHANGELOG.md +22 -150
  2. package/README.md +1 -1
  3. package/dist/css/styles.css +273 -407
  4. package/dist/css/styles.css.map +1 -1
  5. package/dist/src/components/Button/CompositeButton.js +2 -4
  6. package/dist/src/components/Button/CompositeButton.js.map +1 -1
  7. package/dist/src/components/CallControls/AcceptCallButton.d.ts +7 -0
  8. package/dist/src/components/CallControls/AcceptCallButton.js +27 -0
  9. package/dist/src/components/CallControls/AcceptCallButton.js.map +1 -0
  10. package/dist/src/components/CallControls/CallControls.d.ts +1 -3
  11. package/dist/src/components/CallControls/CallControls.js +2 -5
  12. package/dist/src/components/CallControls/CallControls.js.map +1 -1
  13. package/dist/src/components/CallControls/CallStatsButton.d.ts +1 -5
  14. package/dist/src/components/CallControls/CallStatsButton.js +2 -4
  15. package/dist/src/components/CallControls/CallStatsButton.js.map +1 -1
  16. package/dist/src/components/CallControls/CancelCallButton.d.ts +2 -3
  17. package/dist/src/components/CallControls/CancelCallButton.js +4 -2
  18. package/dist/src/components/CallControls/CancelCallButton.js.map +1 -1
  19. package/dist/src/components/CallControls/ReactionsButton.js +1 -2
  20. package/dist/src/components/CallControls/ReactionsButton.js.map +1 -1
  21. package/dist/src/components/CallControls/RecordCallButton.d.ts +1 -3
  22. package/dist/src/components/CallControls/RecordCallButton.js +10 -6
  23. package/dist/src/components/CallControls/RecordCallButton.js.map +1 -1
  24. package/dist/src/components/CallControls/ScreenShareButton.d.ts +1 -3
  25. package/dist/src/components/CallControls/ScreenShareButton.js +7 -7
  26. package/dist/src/components/CallControls/ScreenShareButton.js.map +1 -1
  27. package/dist/src/components/CallControls/ToggleAudioButton.d.ts +1 -1
  28. package/dist/src/components/CallControls/ToggleAudioButton.js +17 -10
  29. package/dist/src/components/CallControls/ToggleAudioButton.js.map +1 -1
  30. package/dist/src/components/CallControls/ToggleVideoButton.d.ts +10 -0
  31. package/dist/src/components/CallControls/{ToggleCameraButton.js → ToggleVideoButton.js} +17 -11
  32. package/dist/src/components/CallControls/ToggleVideoButton.js.map +1 -0
  33. package/dist/src/components/CallControls/index.d.ts +2 -2
  34. package/dist/src/components/CallControls/index.js +2 -2
  35. package/dist/src/components/CallControls/index.js.map +1 -1
  36. package/dist/src/components/CallParticipantsList/BlockedUserListing.js +1 -2
  37. package/dist/src/components/CallParticipantsList/BlockedUserListing.js.map +1 -1
  38. package/dist/src/components/CallParticipantsList/CallParticipantListingItem.d.ts +2 -1
  39. package/dist/src/components/CallParticipantsList/CallParticipantListingItem.js +13 -5
  40. package/dist/src/components/CallParticipantsList/CallParticipantListingItem.js.map +1 -1
  41. package/dist/src/components/CallParticipantsList/CallParticipantsList.js +1 -2
  42. package/dist/src/components/CallParticipantsList/CallParticipantsList.js.map +1 -1
  43. package/dist/src/components/CallStats/CallStats.d.ts +6 -0
  44. package/dist/src/components/{StreamCall → CallStats}/CallStats.js +3 -3
  45. package/dist/src/components/CallStats/CallStats.js.map +1 -0
  46. package/dist/src/components/CallStats/CallStatsLatencyChart.js.map +1 -0
  47. package/dist/src/components/CallStats/index.d.ts +2 -0
  48. package/dist/src/components/CallStats/index.js +3 -0
  49. package/dist/src/components/CallStats/index.js.map +1 -0
  50. package/dist/src/components/Debug/DebugStatsView.d.ts +1 -1
  51. package/dist/src/components/Debug/DebugStatsView.js +32 -7
  52. package/dist/src/components/Debug/DebugStatsView.js.map +1 -1
  53. package/dist/src/components/DeviceSettings/DeviceSelectorAudio.js +5 -3
  54. package/dist/src/components/DeviceSettings/DeviceSelectorAudio.js.map +1 -1
  55. package/dist/src/components/DeviceSettings/DeviceSelectorVideo.js +3 -2
  56. package/dist/src/components/DeviceSettings/DeviceSelectorVideo.js.map +1 -1
  57. package/dist/src/components/Notification/SpeakingWhileMutedNotification.js +4 -2
  58. package/dist/src/components/Notification/SpeakingWhileMutedNotification.js.map +1 -1
  59. package/dist/src/components/PendingCallPanel/PendingCallControls.d.ts +2 -0
  60. package/dist/src/components/PendingCallPanel/PendingCallControls.js +13 -0
  61. package/dist/src/components/PendingCallPanel/PendingCallControls.js.map +1 -0
  62. package/dist/src/components/PendingCallPanel/PendingCallPanel.d.ts +2 -0
  63. package/dist/src/components/PendingCallPanel/PendingCallPanel.js +34 -0
  64. package/dist/src/components/PendingCallPanel/PendingCallPanel.js.map +1 -0
  65. package/dist/src/components/PendingCallPanel/index.d.ts +2 -0
  66. package/dist/src/components/PendingCallPanel/index.js +3 -0
  67. package/dist/src/components/PendingCallPanel/index.js.map +1 -0
  68. package/dist/src/components/Permissions/PermissionRequests.js +2 -8
  69. package/dist/src/components/Permissions/PermissionRequests.js.map +1 -1
  70. package/dist/src/components/StreamCall/CallParticipantsScreenView.js +3 -3
  71. package/dist/src/components/StreamCall/CallParticipantsScreenView.js.map +1 -1
  72. package/dist/src/components/StreamCall/CallParticipantsView.js +2 -3
  73. package/dist/src/components/StreamCall/CallParticipantsView.js.map +1 -1
  74. package/dist/src/components/StreamTheme/StreamTheme.d.ts +5 -0
  75. package/dist/src/components/StreamTheme/StreamTheme.js +18 -0
  76. package/dist/src/components/StreamTheme/StreamTheme.js.map +1 -0
  77. package/dist/src/components/StreamTheme/index.d.ts +1 -0
  78. package/dist/src/components/StreamTheme/index.js +2 -0
  79. package/dist/src/components/StreamTheme/index.js.map +1 -0
  80. package/dist/src/components/Video/VideoPreview.js +10 -5
  81. package/dist/src/components/Video/VideoPreview.js.map +1 -1
  82. package/dist/src/components/Video/index.d.ts +1 -1
  83. package/dist/src/components/Video/index.js +1 -1
  84. package/dist/src/components/Video/index.js.map +1 -1
  85. package/dist/src/components/index.d.ts +2 -2
  86. package/dist/src/components/index.js +2 -2
  87. package/dist/src/components/index.js.map +1 -1
  88. package/dist/src/core/components/CallLayout/PaginatedGridLayout.d.ts +3 -7
  89. package/dist/src/core/components/CallLayout/PaginatedGridLayout.js +13 -14
  90. package/dist/src/core/components/CallLayout/PaginatedGridLayout.js.map +1 -1
  91. package/dist/src/core/components/CallLayout/SpeakerLayout.d.ts +6 -1
  92. package/dist/src/core/components/CallLayout/SpeakerLayout.js +13 -7
  93. package/dist/src/core/components/CallLayout/SpeakerLayout.js.map +1 -1
  94. package/dist/src/core/components/ParticipantView/DefaultParticipantViewUI.d.ts +18 -0
  95. package/dist/src/core/components/ParticipantView/DefaultParticipantViewUI.js +36 -0
  96. package/dist/src/core/components/ParticipantView/DefaultParticipantViewUI.js.map +1 -0
  97. package/dist/src/core/components/ParticipantView/ParticipantView.d.ts +79 -0
  98. package/dist/src/core/components/ParticipantView/ParticipantView.js +33 -0
  99. package/dist/src/core/components/ParticipantView/ParticipantView.js.map +1 -0
  100. package/dist/src/core/components/ParticipantView/index.d.ts +2 -0
  101. package/dist/src/core/components/ParticipantView/index.js +3 -0
  102. package/dist/src/core/components/ParticipantView/index.js.map +1 -0
  103. package/dist/src/core/components/StreamCall/StreamCall.d.ts +73 -0
  104. package/dist/src/core/components/StreamCall/StreamCall.js +60 -0
  105. package/dist/src/core/components/StreamCall/StreamCall.js.map +1 -0
  106. package/dist/src/core/components/StreamCall/index.d.ts +1 -0
  107. package/dist/src/core/components/StreamCall/index.js +2 -0
  108. package/dist/src/core/components/StreamCall/index.js.map +1 -0
  109. package/dist/src/core/components/Video/BaseVideo.d.ts +3 -3
  110. package/dist/src/core/components/Video/BaseVideo.js +6 -12
  111. package/dist/src/core/components/Video/BaseVideo.js.map +1 -1
  112. package/dist/src/core/components/Video/DefaultVideoPlaceholder.d.ts +6 -0
  113. package/dist/src/core/components/Video/DefaultVideoPlaceholder.js +9 -0
  114. package/dist/src/core/components/Video/DefaultVideoPlaceholder.js.map +1 -0
  115. package/dist/src/core/components/Video/Video.d.ts +11 -6
  116. package/dist/src/core/components/Video/Video.js +31 -28
  117. package/dist/src/core/components/Video/Video.js.map +1 -1
  118. package/dist/src/core/components/index.d.ts +3 -2
  119. package/dist/src/core/components/index.js +2 -1
  120. package/dist/src/core/components/index.js.map +1 -1
  121. package/dist/src/core/contexts/MediaDevicesContext.d.ts +117 -19
  122. package/dist/src/core/contexts/MediaDevicesContext.js +52 -90
  123. package/dist/src/core/contexts/MediaDevicesContext.js.map +1 -1
  124. package/dist/src/core/hooks/index.d.ts +2 -0
  125. package/dist/src/core/hooks/index.js +2 -0
  126. package/dist/src/core/hooks/index.js.map +1 -1
  127. package/dist/src/core/hooks/useAudioPublisher.js +9 -3
  128. package/dist/src/core/hooks/useAudioPublisher.js.map +1 -1
  129. package/dist/src/core/hooks/useDevices.d.ts +80 -0
  130. package/dist/src/core/hooks/useDevices.js +113 -0
  131. package/dist/src/core/hooks/useDevices.js.map +1 -0
  132. package/dist/src/core/hooks/useTrackElementVisibility.d.ts +6 -0
  133. package/dist/src/core/hooks/useTrackElementVisibility.js +27 -0
  134. package/dist/src/core/hooks/useTrackElementVisibility.js.map +1 -0
  135. package/dist/src/core/hooks/useVideoPublisher.js +35 -6
  136. package/dist/src/core/hooks/useVideoPublisher.js.map +1 -1
  137. package/dist/src/hooks/index.d.ts +0 -1
  138. package/dist/src/hooks/index.js +0 -1
  139. package/dist/src/hooks/index.js.map +1 -1
  140. package/dist/src/utilities/applyElementToRef.d.ts +2 -0
  141. package/dist/src/utilities/applyElementToRef.js +8 -0
  142. package/dist/src/utilities/applyElementToRef.js.map +1 -0
  143. package/dist/src/utilities/chunk.d.ts +1 -0
  144. package/dist/src/utilities/chunk.js +5 -0
  145. package/dist/src/utilities/chunk.js.map +1 -0
  146. package/dist/src/utilities/index.d.ts +3 -0
  147. package/dist/src/utilities/index.js +4 -0
  148. package/dist/src/utilities/index.js.map +1 -0
  149. package/dist/src/utilities/isComponentType.d.ts +2 -0
  150. package/dist/src/utilities/isComponentType.js +7 -0
  151. package/dist/src/utilities/isComponentType.js.map +1 -0
  152. package/package.json +12 -10
  153. package/src/components/Button/CompositeButton.tsx +4 -13
  154. package/src/components/CallControls/AcceptCallButton.tsx +36 -0
  155. package/src/components/CallControls/CallControls.tsx +13 -19
  156. package/src/components/CallControls/CallStatsButton.tsx +6 -14
  157. package/src/components/CallControls/CancelCallButton.tsx +12 -4
  158. package/src/components/CallControls/ReactionsButton.tsx +1 -2
  159. package/src/components/CallControls/RecordCallButton.tsx +12 -7
  160. package/src/components/CallControls/ScreenShareButton.tsx +7 -8
  161. package/src/components/CallControls/ToggleAudioButton.tsx +23 -12
  162. package/src/components/CallControls/{ToggleCameraButton.tsx → ToggleVideoButton.tsx} +20 -13
  163. package/src/components/CallControls/index.ts +2 -2
  164. package/src/components/CallParticipantsList/BlockedUserListing.tsx +1 -2
  165. package/src/components/CallParticipantsList/CallParticipantListingItem.tsx +27 -3
  166. package/src/components/CallParticipantsList/CallParticipantsList.tsx +1 -1
  167. package/src/components/{StreamCall → CallStats}/CallStats.tsx +3 -3
  168. package/src/components/CallStats/index.ts +2 -0
  169. package/src/components/Debug/DebugStatsView.tsx +60 -7
  170. package/src/components/DeviceSettings/DeviceSelectorAudio.tsx +9 -4
  171. package/src/components/DeviceSettings/DeviceSelectorVideo.tsx +3 -3
  172. package/src/components/Notification/SpeakingWhileMutedNotification.tsx +9 -8
  173. package/src/components/PendingCallPanel/PendingCallControls.tsx +27 -0
  174. package/src/components/PendingCallPanel/PendingCallPanel.tsx +71 -0
  175. package/src/components/PendingCallPanel/index.ts +2 -0
  176. package/src/components/Permissions/PermissionRequests.tsx +2 -8
  177. package/src/components/StreamCall/CallParticipantsScreenView.tsx +3 -4
  178. package/src/components/StreamCall/CallParticipantsView.tsx +3 -4
  179. package/src/components/StreamTheme/StreamTheme.tsx +19 -0
  180. package/src/components/StreamTheme/index.ts +1 -0
  181. package/src/components/Video/VideoPreview.tsx +16 -6
  182. package/src/components/Video/index.ts +1 -1
  183. package/src/components/index.ts +2 -2
  184. package/src/core/components/CallLayout/PaginatedGridLayout.tsx +32 -36
  185. package/src/core/components/CallLayout/SpeakerLayout.tsx +48 -25
  186. package/src/core/components/ParticipantView/DefaultParticipantViewUI.tsx +160 -0
  187. package/src/core/components/ParticipantView/ParticipantView.tsx +156 -0
  188. package/src/core/components/ParticipantView/index.ts +2 -0
  189. package/src/core/components/StreamCall/StreamCall.tsx +157 -0
  190. package/src/core/components/StreamCall/index.ts +1 -0
  191. package/src/core/components/Video/BaseVideo.tsx +9 -24
  192. package/src/core/components/Video/DefaultVideoPlaceholder.tsx +36 -0
  193. package/src/core/components/Video/Video.tsx +62 -48
  194. package/src/core/components/index.ts +3 -2
  195. package/src/core/contexts/MediaDevicesContext.tsx +179 -136
  196. package/src/core/hooks/index.ts +2 -0
  197. package/src/core/hooks/useAudioPublisher.ts +9 -3
  198. package/src/core/hooks/useDevices.ts +161 -0
  199. package/src/core/hooks/useTrackElementVisibility.ts +44 -0
  200. package/src/core/hooks/useVideoPublisher.ts +36 -4
  201. package/src/hooks/index.ts +0 -1
  202. package/src/utilities/applyElementToRef.ts +12 -0
  203. package/src/utilities/chunk.ts +8 -0
  204. package/src/utilities/index.ts +3 -0
  205. package/src/utilities/isComponentType.ts +9 -0
  206. package/dist/src/components/CallControls/ToggleCameraButton.d.ts +0 -10
  207. package/dist/src/components/CallControls/ToggleCameraButton.js.map +0 -1
  208. package/dist/src/components/CallControls/ToggleParticipantListButton.d.ts +0 -6
  209. package/dist/src/components/CallControls/ToggleParticipantListButton.js +0 -7
  210. package/dist/src/components/CallControls/ToggleParticipantListButton.js.map +0 -1
  211. package/dist/src/components/Moderation/Restricted.d.ts +0 -19
  212. package/dist/src/components/Moderation/Restricted.js +0 -13
  213. package/dist/src/components/Moderation/Restricted.js.map +0 -1
  214. package/dist/src/components/Moderation/index.d.ts +0 -1
  215. package/dist/src/components/Moderation/index.js +0 -2
  216. package/dist/src/components/Moderation/index.js.map +0 -1
  217. package/dist/src/components/StreamCall/CallStats.d.ts +0 -2
  218. package/dist/src/components/StreamCall/CallStats.js.map +0 -1
  219. package/dist/src/components/StreamCall/CallStatsLatencyChart.js.map +0 -1
  220. package/dist/src/components/StreamMeeting/StreamMeeting.d.ts +0 -34
  221. package/dist/src/components/StreamMeeting/StreamMeeting.js +0 -26
  222. package/dist/src/components/StreamMeeting/StreamMeeting.js.map +0 -1
  223. package/dist/src/components/StreamMeeting/index.d.ts +0 -1
  224. package/dist/src/components/StreamMeeting/index.js +0 -2
  225. package/dist/src/components/StreamMeeting/index.js.map +0 -1
  226. package/dist/src/core/components/ParticipantBox/ParticipantBox.d.ts +0 -48
  227. package/dist/src/core/components/ParticipantBox/ParticipantBox.js +0 -58
  228. package/dist/src/core/components/ParticipantBox/ParticipantBox.js.map +0 -1
  229. package/dist/src/core/components/ParticipantBox/index.d.ts +0 -1
  230. package/dist/src/core/components/ParticipantBox/index.js +0 -2
  231. package/dist/src/core/components/ParticipantBox/index.js.map +0 -1
  232. package/dist/src/core/components/Video/VideoPlaceholder.d.ts +0 -6
  233. package/dist/src/core/components/Video/VideoPlaceholder.js +0 -12
  234. package/dist/src/core/components/Video/VideoPlaceholder.js.map +0 -1
  235. package/dist/src/hooks/useRtcStats.d.ts +0 -11
  236. package/dist/src/hooks/useRtcStats.js +0 -39
  237. package/dist/src/hooks/useRtcStats.js.map +0 -1
  238. package/src/components/CallControls/ToggleParticipantListButton.tsx +0 -17
  239. package/src/components/Moderation/Restricted.tsx +0 -38
  240. package/src/components/Moderation/index.ts +0 -1
  241. package/src/components/StreamMeeting/StreamMeeting.tsx +0 -80
  242. package/src/components/StreamMeeting/index.ts +0 -1
  243. package/src/core/components/ParticipantBox/ParticipantBox.tsx +0 -248
  244. package/src/core/components/ParticipantBox/index.ts +0 -1
  245. package/src/core/components/Video/VideoPlaceholder.tsx +0 -40
  246. package/src/hooks/useRtcStats.ts +0 -36
  247. /package/dist/src/components/{StreamCall → CallStats}/CallStatsLatencyChart.d.ts +0 -0
  248. /package/dist/src/components/{StreamCall → CallStats}/CallStatsLatencyChart.js +0 -0
  249. /package/src/components/{StreamCall → CallStats}/CallStatsLatencyChart.tsx +0 -0
package/CHANGELOG.md CHANGED
@@ -2,182 +2,54 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
- ## [0.0.1-alpha.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.8...@stream-io/video-react-sdk-0.0.1-alpha.9) (2023-05-07)
5
+ ## [0.0.1-alpha.91](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.90...@stream-io/video-react-sdk-0.0.1-alpha.91) (2023-05-27)
6
6
 
7
7
 
8
8
 
9
- ## [0.0.1-alpha.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.7...@stream-io/video-react-sdk-0.0.1-alpha.8) (2023-05-05)
9
+ ## [0.0.1-alpha.90](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.89...@stream-io/video-react-sdk-0.0.1-alpha.90) (2023-05-27)
10
10
 
11
11
 
12
12
 
13
- ## [0.0.1-alpha.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.6...@stream-io/video-react-sdk-0.0.1-alpha.7) (2023-05-05)
13
+ ## [0.0.1-alpha.89](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.88...@stream-io/video-react-sdk-0.0.1-alpha.89) (2023-05-27)
14
14
 
15
15
 
16
+ ### Bug Fixes
16
17
 
17
- ## [0.0.1-alpha.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.5...@stream-io/video-react-sdk-0.0.1-alpha.6) (2023-05-05)
18
-
19
-
20
-
21
- ## [0.0.1-alpha.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.4...@stream-io/video-react-sdk-0.0.1-alpha.5) (2023-05-05)
22
-
18
+ * Dummy fix commit to react SDK ([b652aa1](https://github.com/GetStream/stream-video-js/commit/b652aa1112988fa5ce16b0375e1781d99b3891d4))
23
19
 
24
20
 
25
- ## [0.0.1-alpha.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.3...@stream-io/video-react-sdk-0.0.1-alpha.4) (2023-05-05)
26
21
 
22
+ ## [0.0.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.3...@stream-io/video-react-sdk-0.0.4) (2023-05-26)
27
23
 
28
- ### Features
24
+ ### Dependency Updates
29
25
 
30
- * **core:** replace useActiveCall() with useCall() ([#450](https://github.com/GetStream/stream-video-js/issues/450)) ([f3b169b](https://github.com/GetStream/stream-video-js/commit/f3b169b2971a95b47cda6956f009d38cc068a793))
26
+ * `@stream-io/video-styling` updated to version `1.0.0`
31
27
 
32
28
 
29
+ ## [0.0.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.2...@stream-io/video-react-sdk-0.0.3) (2023-05-26)
33
30
 
34
- ## [0.0.1-alpha.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.2...@stream-io/video-react-sdk-0.0.1-alpha.3) (2023-05-04)
31
+ ### Dependency Updates
35
32
 
33
+ * `@stream-io/video-styling` updated to version `0.1.0`
36
34
 
37
35
 
38
- ## [0.0.1-alpha.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.1...@stream-io/video-react-sdk-0.0.1-alpha.2) (2023-05-04)
36
+ ## [0.0.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1...@stream-io/video-react-sdk-0.0.2) (2023-05-26)
39
37
 
38
+ ### Dependency Updates
40
39
 
40
+ * `@stream-io/video-styling` updated to version `0.1.0`
41
41
 
42
- ## [0.0.1-alpha.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.0...@stream-io/video-react-sdk-0.0.1-alpha.1) (2023-05-04)
42
+ ### Bug Fixes
43
43
 
44
+ * Dummy fix commit to react SDK ([b652aa1](https://github.com/GetStream/stream-video-js/commit/b652aa1112988fa5ce16b0375e1781d99b3891d4))
44
45
 
45
46
 
46
- ## 0.0.1-alpha.0 (2023-05-04)
47
47
 
48
+ ## [0.0.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-sdk-0.0.1-alpha.88...@stream-io/video-react-sdk-0.0.1) (2023-05-26)
48
49
 
49
- ### Bug Fixes
50
+ ### Dependency Updates
50
51
 
51
- * add create param to join calls ([#352](https://github.com/GetStream/stream-video-js/issues/352)) ([37b0caa](https://github.com/GetStream/stream-video-js/commit/37b0caade683ed82a296aa3086e46f476f87ff46))
52
- * add dark background on participant's name ([4f935df](https://github.com/GetStream/stream-video-js/commit/4f935df480816b66d2f23dbdc1ca633fbc9e9adb))
53
- * add missing join call ([a3ba125](https://github.com/GetStream/stream-video-js/commit/a3ba125f01dffd694ab375db91e26aa5e57296a8))
54
- * add more debug info ([74e678e](https://github.com/GetStream/stream-video-js/commit/74e678ed25484bf6d926937b037414d20a9a5b98))
55
- * align all rxjs versions ([aba30bd](https://github.com/GetStream/stream-video-js/commit/aba30bd8986e5b53683a12e33885b4e01cfd146a))
56
- * compile error ([1df7c6a](https://github.com/GetStream/stream-video-js/commit/1df7c6a403f0b305422f49276e01f23e3c0f7448))
57
- * datacenterId is optional on the backend ([#64](https://github.com/GetStream/stream-video-js/issues/64)) ([a6ebca9](https://github.com/GetStream/stream-video-js/commit/a6ebca94f360d3d31a52ab444f0fe8f88206e9fc))
58
- * disable screen share button when other participant shares their screen ([#287](https://github.com/GetStream/stream-video-js/issues/287)) ([42ebc05](https://github.com/GetStream/stream-video-js/commit/42ebc053e434c8a53500df1aaafe6295ea49bca6))
59
- * don't subscribe to partic. before a video track is published ([#316](https://github.com/GetStream/stream-video-js/issues/316)) ([a08d3ed](https://github.com/GetStream/stream-video-js/commit/a08d3ed7445f7ec7443f5736f74f23686a0d2fc8))
60
- * fallback to user's ID in case username is missing ([55b7651](https://github.com/GetStream/stream-video-js/commit/55b7651dfb36c04cffc9f822aeb60ff4a7497aa9))
61
- * hardcoded userId ([7abdf2c](https://github.com/GetStream/stream-video-js/commit/7abdf2c9253bcfeb0bc6afcb43526e6d3418ba38))
62
- * improve keep-alive mechanism towards the coordinator ([b6e3a78](https://github.com/GetStream/stream-video-js/commit/b6e3a78ca60896953406fe6057479b5c0d34d0f4))
63
- * lint errors ([199aa15](https://github.com/GetStream/stream-video-js/commit/199aa15ae4e820edfa4e1ea745fd472047076b8e))
64
- * make reportCallStats compatible with proto 0.11.0 ([b31abbc](https://github.com/GetStream/stream-video-js/commit/b31abbc0f4c5086bc9de42c4568826eec4be5aed))
65
- * MenuToggle overflows ([#321](https://github.com/GetStream/stream-video-js/issues/321)) ([76120b5](https://github.com/GetStream/stream-video-js/commit/76120b5b90b76d3c1ca783ac5a8244ce1542ab6f))
66
- * missing dependency in stats component ([faaf45f](https://github.com/GetStream/stream-video-js/commit/faaf45f7dae4e8b947e3776d0c0cdbff46fa8341))
67
- * more clear variable names, remove unnecessary `distinctUntilChanged` operator ([b037bf2](https://github.com/GetStream/stream-video-js/commit/b037bf2e5de95895780e625310b8a92a6958845d))
68
- * mute local participant ([0c542b4](https://github.com/GetStream/stream-video-js/commit/0c542b40e598992d67c5efe2585541c509a46213))
69
- * mute local participant ([13bfec9](https://github.com/GetStream/stream-video-js/commit/13bfec98872f7d7b5c2ae147061f9724fb1dfbd5))
70
- * participant list cookbook article ([#356](https://github.com/GetStream/stream-video-js/issues/356)) ([9e17a0d](https://github.com/GetStream/stream-video-js/commit/9e17a0d548aa8e5a8943f6cc364d28a16928ff2d))
71
- * participant menu positioning in SpeakerLayout ([#421](https://github.com/GetStream/stream-video-js/issues/421)) ([e495494](https://github.com/GetStream/stream-video-js/commit/e495494f6a160d0d95498c7b7efe8b3181a11799))
72
- * participant's video not playing in Safari ([#152](https://github.com/GetStream/stream-video-js/issues/152)) ([b97ca12](https://github.com/GetStream/stream-video-js/commit/b97ca12feffbcb1f9e8c7b26f98a96cf8d1a5924))
73
- * permission-based rendering of call control buttons ([#426](https://github.com/GetStream/stream-video-js/issues/426)) ([c8056d3](https://github.com/GetStream/stream-video-js/commit/c8056d34d30f6835ce3809cbb09027214547328e))
74
- * properly memoize debounce method ([6fb7159](https://github.com/GetStream/stream-video-js/commit/6fb7159ea976b60ef300c4cba280a763ca6f07c6))
75
- * **react-dogfood:** do not end active call on leave ([#380](https://github.com/GetStream/stream-video-js/issues/380)) ([677d059](https://github.com/GetStream/stream-video-js/commit/677d059a696e34d27fdfd9f8dfda8011ab0ea67d))
76
- * **react-sdk:** await client disconnect before connecting again ([#339](https://github.com/GetStream/stream-video-js/issues/339)) ([8071282](https://github.com/GetStream/stream-video-js/commit/8071282a6e84d3255cc2879b1faae7be8cfdaa24))
77
- * **react-sdk:** forward menu placement ([#323](https://github.com/GetStream/stream-video-js/issues/323)) ([0fb6e77](https://github.com/GetStream/stream-video-js/commit/0fb6e77c322368ec5c6e9d65516c1ea223f48d38)), closes [#321](https://github.com/GetStream/stream-video-js/issues/321)
78
- * **react-sdk:** handle scroll element resize ([#313](https://github.com/GetStream/stream-video-js/issues/313)) ([216b42e](https://github.com/GetStream/stream-video-js/commit/216b42e49c53d848c84467fde6302b75526b909e))
79
- * **react-sdk:** lift enumeration trigger to props ([#217](https://github.com/GetStream/stream-video-js/issues/217)) ([5e12e33](https://github.com/GetStream/stream-video-js/commit/5e12e331fe820846ca92ea18026980ef42ec531c))
80
- * **react-sdk:** minor SpeakerLayout adjustments ([#373](https://github.com/GetStream/stream-video-js/issues/373)) ([4d97008](https://github.com/GetStream/stream-video-js/commit/4d97008a99bead7c6d756c2ae4b637695da6b1a7))
81
- * **react-sdk:** move reaction icons to the bottom right corner ([#438](https://github.com/GetStream/stream-video-js/issues/438)) ([fc3c34a](https://github.com/GetStream/stream-video-js/commit/fc3c34acf55370e2b4d7ced0e9df741ebf0c3757))
82
- * **react-sdk:** reflect device switch in device settings ([#290](https://github.com/GetStream/stream-video-js/issues/290)) ([bf1d6be](https://github.com/GetStream/stream-video-js/commit/bf1d6beed5f93c67bccb34f7ff17026c2a29be6d))
83
- * **react-sdk:** remove unknown state check, switch hook call order ([#451](https://github.com/GetStream/stream-video-js/issues/451)) ([f74128c](https://github.com/GetStream/stream-video-js/commit/f74128c662257949087f67692fc2c8fa9d1614d5))
84
- * **react-sdk:** revert changes to publishers ([#220](https://github.com/GetStream/stream-video-js/issues/220)) ([d8553ec](https://github.com/GetStream/stream-video-js/commit/d8553ec34b4aa6e27131f4c063dee00e591f726a))
85
- * **react-sdk:** show loading indicator for the first call recording preparation ([#346](https://github.com/GetStream/stream-video-js/issues/346)) ([1551fa0](https://github.com/GetStream/stream-video-js/commit/1551fa03097878019b83d0b2c1f65a12a6ec22a9))
86
- * **react-sdk:** SpeakerLayout adjustments ([#442](https://github.com/GetStream/stream-video-js/issues/442)) ([d5d46f8](https://github.com/GetStream/stream-video-js/commit/d5d46f8819a7c1a7bdbcd327f12500b05db349a4))
87
- * **react-sdk:** styling refactor and SpeakerLayout styling adjustments ([#382](https://github.com/GetStream/stream-video-js/issues/382)) ([11eff59](https://github.com/GetStream/stream-video-js/commit/11eff59bb57ad39affe37480bb26060e3cdc874b))
88
- * **recording:** toggle loading state indicator on WS events ([#263](https://github.com/GetStream/stream-video-js/issues/263)) ([9564736](https://github.com/GetStream/stream-video-js/commit/95647362db7eaa364b7b39f1ce84778d0604564c))
89
- * Remove duplicated joinCall ([94a6a51](https://github.com/GetStream/stream-video-js/commit/94a6a5190ac92657dc6b7e3ab0545cee4af68570))
90
- * remove unused props, better naming ([8dbdff2](https://github.com/GetStream/stream-video-js/commit/8dbdff2cdceafc70190d7b7df9725e08672eaf68))
91
- * reset reaction state ([#286](https://github.com/GetStream/stream-video-js/issues/286)) ([773c500](https://github.com/GetStream/stream-video-js/commit/773c5000db815fa80f21d21702b5d4b81b6ad36f))
92
- * restore video track upon remote participant unmute ([4995a5b](https://github.com/GetStream/stream-video-js/commit/4995a5b73787e22ee00ca0d69f0ae6a9a40cc7e8))
93
- * simulcast tracks need to be ordered from low to high ([#129](https://github.com/GetStream/stream-video-js/issues/129)) ([fd61c55](https://github.com/GetStream/stream-video-js/commit/fd61c55ed65c544ed2d7f7d627009881d2b050fd))
94
- * **styling:** handle large number of active participants ([#303](https://github.com/GetStream/stream-video-js/issues/303)) ([cdd8998](https://github.com/GetStream/stream-video-js/commit/cdd8998f6d3f879f51b5295a4ba9c7d01a981205))
95
- * subscribe to everyone's audio track ([#342](https://github.com/GetStream/stream-video-js/issues/342)) ([36edba7](https://github.com/GetStream/stream-video-js/commit/36edba7cd800d4172b029a407bcaf5ae34177a2c))
96
- * switch to WebRTC based latency measurement ([#121](https://github.com/GetStream/stream-video-js/issues/121)) ([7df50b5](https://github.com/GetStream/stream-video-js/commit/7df50b59be33326e74056d48c0faac4f60b9f3d8))
97
- * track ParticipantBox instead of Video ([#336](https://github.com/GetStream/stream-video-js/issues/336)) ([9f8f96d](https://github.com/GetStream/stream-video-js/commit/9f8f96de0f19bf931bf61b6f078293c44aab7371))
98
- * typo ([58eeabb](https://github.com/GetStream/stream-video-js/commit/58eeabb74119f2ffe6a3ca06363d3fd7ee0a5c46))
99
- * unsubscribe in useObservable value ([#76](https://github.com/GetStream/stream-video-js/issues/76)) ([0d1e17c](https://github.com/GetStream/stream-video-js/commit/0d1e17cf75c6d5b8fb3b0f33a03b4a13de3d6269))
100
- * update Reactions handling according to the newest OpenAPI spec ([#453](https://github.com/GetStream/stream-video-js/issues/453)) ([fad871c](https://github.com/GetStream/stream-video-js/commit/fad871cb5525c9d3a151ab48999658bcc2271963))
101
- * Update subscriptions not always called ([202ceac](https://github.com/GetStream/stream-video-js/commit/202ceacc88652865d13f9b3e7c48924f1efc3161))
102
- * use sessionId as a React key ([e6bf9f1](https://github.com/GetStream/stream-video-js/commit/e6bf9f16de7306400198ae09eccad00c173c3bb7))
103
- * vale errors that were breaking build ([#179](https://github.com/GetStream/stream-video-js/issues/179)) ([602c16e](https://github.com/GetStream/stream-video-js/commit/602c16e262d00845ac0ccac67352c3e6e827425f))
104
-
105
-
106
- ### Features
107
-
108
- * [WIP] iceTrickle ([2e2179b](https://github.com/GetStream/stream-video-js/commit/2e2179bd08b52f96202ded3b965de910319f8d0a))
109
- * Add audio output device change to client and angular ([#113](https://github.com/GetStream/stream-video-js/issues/113)) ([c5b66d7](https://github.com/GetStream/stream-video-js/commit/c5b66d75dda203ae710ff605d80ee1f274c84939))
110
- * add call recording listing ([#337](https://github.com/GetStream/stream-video-js/issues/337)) ([95102e5](https://github.com/GetStream/stream-video-js/commit/95102e59f38d3c822beabd3db5b027e664b56cb5))
111
- * add handlers for speech detection and dominantSpeaker ([c28596a](https://github.com/GetStream/stream-video-js/commit/c28596a732c1763fbaee1193ebd2aa1624b46a2f))
112
- * add handlers for speech detection and dominantSpeaker ([7b6be60](https://github.com/GetStream/stream-video-js/commit/7b6be60ebd1aba56fb1c0523503d840befe93aa3))
113
- * add horizontal scroll buttons to screen-share view ([#305](https://github.com/GetStream/stream-video-js/issues/305)) ([b85ff78](https://github.com/GetStream/stream-video-js/commit/b85ff78b1d6f7f7db072a9415af0605d32cb7184))
114
- * add i18n ([#434](https://github.com/GetStream/stream-video-js/issues/434)) ([f3e2f2a](https://github.com/GetStream/stream-video-js/commit/f3e2f2a7d591287d88ac99728b480127401fa50b))
115
- * add participant resize observer to stage component in react sdk ([79de974](https://github.com/GetStream/stream-video-js/commit/79de9741adc31da897dd6404a4d199791a7c1b5b))
116
- * Batch update subscriptions - in progress ([6c5876e](https://github.com/GetStream/stream-video-js/commit/6c5876eee182710b61658c25f40e4e72c724c90c))
117
- * Call permissions and capabilities ([#383](https://github.com/GetStream/stream-video-js/issues/383)) ([8bcdd72](https://github.com/GetStream/stream-video-js/commit/8bcdd7228e622b6dca1dfef700fb121c48a30256))
118
- * Call Recording ([#87](https://github.com/GetStream/stream-video-js/issues/87)) ([db7aca3](https://github.com/GetStream/stream-video-js/commit/db7aca363f35ac837134c83f2cb945bac3f4d600))
119
- * **client/react-sdk:** pin participant ([#418](https://github.com/GetStream/stream-video-js/issues/418)) ([57a5d4d](https://github.com/GetStream/stream-video-js/commit/57a5d4deca4b3b8cb9423f52e75a2b88d3baab48))
120
- * **client:** remove client config ([#353](https://github.com/GetStream/stream-video-js/issues/353)) ([2105922](https://github.com/GetStream/stream-video-js/commit/21059226809511bdb278c61631b9fd90f806a6c0))
121
- * connection quality indicators ([#143](https://github.com/GetStream/stream-video-js/issues/143)) ([61df4a8](https://github.com/GetStream/stream-video-js/commit/61df4a82464b3841af07555e64776041f7f300e4))
122
- * **debug-mode:** video track quality selectors ([#36](https://github.com/GetStream/stream-video-js/issues/36)) ([a1c3770](https://github.com/GetStream/stream-video-js/commit/a1c37709f4737491e7f49ce5fee724515422649f))
123
- * Guest and Anonymous access ([#416](https://github.com/GetStream/stream-video-js/issues/416)) ([4fbfed1](https://github.com/GetStream/stream-video-js/commit/4fbfed11898f0b1fa223100ecdf2a01363694f25))
124
- * Handle Call Recording events ([#262](https://github.com/GetStream/stream-video-js/issues/262)) ([1ab1624](https://github.com/GetStream/stream-video-js/commit/1ab1624de47b8c4292a25dbf4cd52da349a26842))
125
- * handle mute events in client ([4c31fb0](https://github.com/GetStream/stream-video-js/commit/4c31fb0fdf9ac0b51edb16706052ee35ac717b01))
126
- * initial react-sdk docs setup ([#171](https://github.com/GetStream/stream-video-js/issues/171)) ([a7ba993](https://github.com/GetStream/stream-video-js/commit/a7ba9937179a9d00b0012731632ad291f1ab0e6d))
127
- * introduce call configuration object to StreamVideoClient ([#182](https://github.com/GetStream/stream-video-js/issues/182)) ([addc7b9](https://github.com/GetStream/stream-video-js/commit/addc7b987f38481ebb3dc9a45789f37429e7b896))
128
- * introduce helper hooks around rxjs store ([01d8a80](https://github.com/GetStream/stream-video-js/commit/01d8a802a8718f361a6f5b477019c7864942067b))
129
- * introduce localParticipant and remoteParticipant computed observables ([cef9ba3](https://github.com/GetStream/stream-video-js/commit/cef9ba3e572f665280f276203f2ce025d03b167d))
130
- * lower the initial video stream resolution ([0089bfb](https://github.com/GetStream/stream-video-js/commit/0089bfb0ef107f22e1d3fa4778b63fbd6e2261ca))
131
- * make it possible to clear selected audio/video device ([#177](https://github.com/GetStream/stream-video-js/issues/177)) ([8ffac6a](https://github.com/GetStream/stream-video-js/commit/8ffac6af4d07ada6657a64909f2ef71d46da980d))
132
- * move basic call events to video client ([373ba81](https://github.com/GetStream/stream-video-js/commit/373ba813dc5e118ee6ffa2614475bb9b43f96bca))
133
- * Move call creation to JS client ([e206d72](https://github.com/GetStream/stream-video-js/commit/e206d72c4efe1230be5fac36525f76411e735261))
134
- * move hooks out of react-sdk ([#86](https://github.com/GetStream/stream-video-js/issues/86)) ([d33ec33](https://github.com/GetStream/stream-video-js/commit/d33ec33e3e6fc0fca99923015c0f420de7bc8a32))
135
- * New Egress Composite App ([#249](https://github.com/GetStream/stream-video-js/issues/249)) ([a410de8](https://github.com/GetStream/stream-video-js/commit/a410de80162bb41aab09f4d7400e53727e76a240))
136
- * Participant Sorting API ([#320](https://github.com/GetStream/stream-video-js/issues/320)) ([75a2b0a](https://github.com/GetStream/stream-video-js/commit/75a2b0ab47a3ea84b498bcda3137788285311da5))
137
- * Provide device info for web SDKs ([#433](https://github.com/GetStream/stream-video-js/issues/433)) ([c4c7de1](https://github.com/GetStream/stream-video-js/commit/c4c7de1cedd66fd2ee37ca630d15ca17825b7d67))
138
- * **react-dogfood:** Chat integration ([#244](https://github.com/GetStream/stream-video-js/issues/244)) ([770582f](https://github.com/GetStream/stream-video-js/commit/770582f3a52407489afd11860e50187dbd079ff1))
139
- * **react-dogfood:** NewMessageNotification ([#248](https://github.com/GetStream/stream-video-js/issues/248)) ([41c892d](https://github.com/GetStream/stream-video-js/commit/41c892deed192ed3d9f4d751d8019e543d7db2ac))
140
- * **react-native:** bring hidden participants to view if isSpeaking and dominant speaker true ([#191](https://github.com/GetStream/stream-video-js/issues/191)) ([e747770](https://github.com/GetStream/stream-video-js/commit/e7477707fd62889505ed1f806d00cd442b3025f3)), closes [#183](https://github.com/GetStream/stream-video-js/issues/183)
141
- * **react-sdk/react-bindings:** moderation UI updates ([#429](https://github.com/GetStream/stream-video-js/issues/429)) ([10edba3](https://github.com/GetStream/stream-video-js/commit/10edba36b2d41e0e7a1b9cdb5155d3d899787770))
142
- * **react-sdk:** add CallParticipantList component ([#210](https://github.com/GetStream/stream-video-js/issues/210)) ([d4651b1](https://github.com/GetStream/stream-video-js/commit/d4651b13709f621b86cd9f191387d3802fb07dfe))
143
- * **react-sdk:** add media preview components ([#255](https://github.com/GetStream/stream-video-js/issues/255)) ([1dcf11e](https://github.com/GetStream/stream-video-js/commit/1dcf11e730f54ace57b5dab9155da8a6412961c5))
144
- * **react-sdk:** add unpin functionality to status icon ([#423](https://github.com/GetStream/stream-video-js/issues/423)) ([ebe0e0c](https://github.com/GetStream/stream-video-js/commit/ebe0e0cfb1c88bf3f5ff95c051df1ad8dd7d5db5))
145
- * **react-sdk:** paginated grid layout ([#315](https://github.com/GetStream/stream-video-js/issues/315)) ([bfd0312](https://github.com/GetStream/stream-video-js/commit/bfd03120df1fcfc398f0845205cfed7a1c093dea))
146
- * **react-sdk:** republish newly added default device ([#304](https://github.com/GetStream/stream-video-js/issues/304)) ([67ee63f](https://github.com/GetStream/stream-video-js/commit/67ee63f217df7fb2da78476d89a682cc77ae0a2e))
147
- * Reactions ([#274](https://github.com/GetStream/stream-video-js/issues/274)) ([6c08b84](https://github.com/GetStream/stream-video-js/commit/6c08b84204cbc4e9eda80e7cc3a8e3b3f7a1d00b))
148
- * reflect coordinator events in state store ([#124](https://github.com/GetStream/stream-video-js/issues/124)) ([7eba321](https://github.com/GetStream/stream-video-js/commit/7eba321eb8d1e6b6f9e43254a3a0cd4493aaec61))
149
- * Remove coordinator healthcheck payload setting ([#105](https://github.com/GetStream/stream-video-js/issues/105)) ([3f71892](https://github.com/GetStream/stream-video-js/commit/3f71892c876ddcaf85ec749f5c91b5fea001b274))
150
- * **sample-app:** React Zoom clone ([#225](https://github.com/GetStream/stream-video-js/issues/225)) ([00d644a](https://github.com/GetStream/stream-video-js/commit/00d644ab5a037d0b67cdbc91877120f9ef14fc90))
151
- * screen sharing improvements ([#148](https://github.com/GetStream/stream-video-js/issues/148)) ([2188961](https://github.com/GetStream/stream-video-js/commit/2188961a679cadd6995d48b5086bd93ff7fa4ec2))
152
- * Screen Sharing tweaks ([#122](https://github.com/GetStream/stream-video-js/issues/122)) ([ee13489](https://github.com/GetStream/stream-video-js/commit/ee1348973bb65a5353b50951db2bb0d0004aeacf))
153
- * Screen-sharing, handling of TrackPublished/Unpublished events ([#79](https://github.com/GetStream/stream-video-js/issues/79)) ([82ce63a](https://github.com/GetStream/stream-video-js/commit/82ce63ad19c4ad905fb03fc2de9d802e87ff85ea))
154
- * set preferred video codec via a query param ([318154a](https://github.com/GetStream/stream-video-js/commit/318154a895e2f94786625a2cb29a046b3b509fbe))
155
- * set preferred video codec via a query param [#62](https://github.com/GetStream/stream-video-js/issues/62) ([c1509bf](https://github.com/GetStream/stream-video-js/commit/c1509bf20b6f08f67c2bd99979a4081623c53377))
156
- * SFU reconnect flow ([#363](https://github.com/GetStream/stream-video-js/issues/363)) ([54777b1](https://github.com/GetStream/stream-video-js/commit/54777b150ffe584b4a95886647735baf20d65549))
157
- * show more client-side stats ([#126](https://github.com/GetStream/stream-video-js/issues/126)) ([0704abb](https://github.com/GetStream/stream-video-js/commit/0704abb14d0d062bad2aa39c0386e81ac2e143b4))
158
- * show notification for poor network quality ([#147](https://github.com/GetStream/stream-video-js/issues/147)) ([4e8582c](https://github.com/GetStream/stream-video-js/commit/4e8582c3c69102b8b8a9e0ef9a1caa9ef2b9410e))
159
- * show RTC stats overlay in debug mode ([79705d1](https://github.com/GetStream/stream-video-js/commit/79705d11e599aea6f879a341c29ba1a9bb1d4452))
160
- * show speaking while muted notification, audio events ([#149](https://github.com/GetStream/stream-video-js/issues/149)) ([8dd5c90](https://github.com/GetStream/stream-video-js/commit/8dd5c9053ae5245e749e134a6cb0ef35e5de9c2f))
161
- * show track info as a tooltip ([d83fc6d](https://github.com/GetStream/stream-video-js/commit/d83fc6d38933e7caf6d357c3dac6b9e0760b8688))
162
- * **sorting:** visible participants should keep their screen position ([#340](https://github.com/GetStream/stream-video-js/issues/340)) ([4ad510e](https://github.com/GetStream/stream-video-js/commit/4ad510ebe193beb46dc59dd0df0a8a0bcff676bc))
163
- * split call state from global state ([#293](https://github.com/GetStream/stream-video-js/issues/293)) ([05f499b](https://github.com/GetStream/stream-video-js/commit/05f499b231c71bebfc3f60cbaa01e84b28a27118))
164
- * **stats:** client-side collector for WebRTC stats ([#82](https://github.com/GetStream/stream-video-js/issues/82)) ([72b195a](https://github.com/GetStream/stream-video-js/commit/72b195a942d9ec6b1566114de152e58784e9154b))
165
- * **styling:** init the styling package ([#23](https://github.com/GetStream/stream-video-js/issues/23)) ([8246bec](https://github.com/GetStream/stream-video-js/commit/8246bec18cc658a33b2c74b079892292d53f401c))
166
- * switch to the SDK provided Grid implementation ([#391](https://github.com/GetStream/stream-video-js/issues/391)) ([4d5f7c4](https://github.com/GetStream/stream-video-js/commit/4d5f7c4aac5b74d01a9b215b71974ee9348fb309))
167
- * Update Angular SDK to have better partity with React SDK ([4b46587](https://github.com/GetStream/stream-video-js/commit/4b46587ca1d128971868e74317ca89bbf0b1cde9))
168
- * update-subscriptions for screen share ([#138](https://github.com/GetStream/stream-video-js/issues/138)) ([a81ba20](https://github.com/GetStream/stream-video-js/commit/a81ba201b0ced8c504f89a14b12f67c023a447ea))
169
- * Use sessionId as the id for participants ([ac9cdb4](https://github.com/GetStream/stream-video-js/commit/ac9cdb4a302e1aeb1caed25d1c53af0c6b5514c4))
170
- * use SFU models from video-proto ([#18](https://github.com/GetStream/stream-video-js/issues/18)) ([58fff21](https://github.com/GetStream/stream-video-js/commit/58fff21f6a252fbb27cf01b1c85059f69d812ecc))
171
- * Use trackLookupPrefix to identify tracks sent by participant ([56563b4](https://github.com/GetStream/stream-video-js/commit/56563b482713da305e2c98453c963440ea1f90f0))
172
- * user data (image, name...) ([#253](https://github.com/GetStream/stream-video-js/issues/253)) ([37078ec](https://github.com/GetStream/stream-video-js/commit/37078ec4323cac06cc62ae0e37bcc49bc0148d0b))
173
- * user data enriching ([#150](https://github.com/GetStream/stream-video-js/issues/150)) ([1bd1796](https://github.com/GetStream/stream-video-js/commit/1bd17960dadc241bc749a66745e821812c7fdd56))
174
- * user moderation (block/mute...) ([#300](https://github.com/GetStream/stream-video-js/issues/300)) ([42a05df](https://github.com/GetStream/stream-video-js/commit/42a05dfcfc0aa3833a78bfd91fb0d5f307a5f41b))
175
- * variable debounce (updateSubscriptions) ([#333](https://github.com/GetStream/stream-video-js/issues/333)) ([8dc6352](https://github.com/GetStream/stream-video-js/commit/8dc635219ec03c0a72805906b58f7bbacf0a4d3a))
176
- * Video Coordinator API transition ([#221](https://github.com/GetStream/stream-video-js/issues/221)) ([535f3c5](https://github.com/GetStream/stream-video-js/commit/535f3c57c57c7e43bf7fa59323598782a4a563ad))
177
- * viewport tracker ([#330](https://github.com/GetStream/stream-video-js/issues/330)) ([14e3f2e](https://github.com/GetStream/stream-video-js/commit/14e3f2e47b4677d89e7b3c353df98e3f3a38413e)), closes [/github.com/GetStream/stream-video-js/blob/9eae876cc139163b6b53fda6d1fc88c19fe84a07/packages/client/src/StreamVideoClient.ts#L354](https://github.com//github.com/GetStream/stream-video-js/blob/9eae876cc139163b6b53fda6d1fc88c19fe84a07/packages/client/src/StreamVideoClient.ts/issues/L354) [#167](https://github.com/GetStream/stream-video-js/issues/167)
178
- * Wait for conneciton ID before join call ([#257](https://github.com/GetStream/stream-video-js/issues/257)) ([53554e7](https://github.com/GetStream/stream-video-js/commit/53554e7e34ae306adc16a43c87069f0ffafeaf5c))
179
-
180
-
181
- ### Reverts
182
-
183
- * Revert "temp: render all available streams" ([6977c0f](https://github.com/GetStream/stream-video-js/commit/6977c0fa43d0ec2c9597764efe50c2ddc5f18257))
52
+ * `@stream-io/i18n` updated to version `0.0.1`
53
+ * `@stream-io/video-client` updated to version `0.1.0`
54
+ * `@stream-io/video-react-bindings` updated to version `0.0.1`
55
+ * `@stream-io/video-styling` updated to version `0.0.1`
package/README.md CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  🚧 **WARNING** This package is not yet stable, it is for internal use only. For more information check out our [video product page](https://getstream.io/video/).
4
4
 
5
- TODO
5
+ TO DO