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

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 (418) hide show
  1. package/CHANGELOG.md +183 -0
  2. package/LICENSE +219 -0
  3. package/README.md +5 -0
  4. package/dist/css/styles.css +2351 -0
  5. package/dist/css/styles.css.map +1 -0
  6. package/dist/index.d.ts +6 -0
  7. package/dist/index.js +15 -0
  8. package/dist/index.js.map +1 -0
  9. package/dist/src/components/Avatar/Avatar.d.ts +14 -0
  10. package/dist/src/components/Avatar/Avatar.js +11 -0
  11. package/dist/src/components/Avatar/Avatar.js.map +1 -0
  12. package/dist/src/components/Avatar/index.d.ts +1 -0
  13. package/dist/src/components/Avatar/index.js +2 -0
  14. package/dist/src/components/Avatar/index.js.map +1 -0
  15. package/dist/src/components/Button/CompositeButton.d.ts +16 -0
  16. package/dist/src/components/Button/CompositeButton.js +15 -0
  17. package/dist/src/components/Button/CompositeButton.js.map +1 -0
  18. package/dist/src/components/Button/CopyToClipboardButton.d.ts +27 -0
  19. package/dist/src/components/Button/CopyToClipboardButton.js +54 -0
  20. package/dist/src/components/Button/CopyToClipboardButton.js.map +1 -0
  21. package/dist/src/components/Button/IconButton.d.ts +7 -0
  22. package/dist/src/components/Button/IconButton.js +26 -0
  23. package/dist/src/components/Button/IconButton.js.map +1 -0
  24. package/dist/src/components/Button/TextButton.d.ts +2 -0
  25. package/dist/src/components/Button/TextButton.js +17 -0
  26. package/dist/src/components/Button/TextButton.js.map +1 -0
  27. package/dist/src/components/Button/index.d.ts +4 -0
  28. package/dist/src/components/Button/index.js +5 -0
  29. package/dist/src/components/Button/index.js.map +1 -0
  30. package/dist/src/components/CallControls/CallControls.d.ts +7 -0
  31. package/dist/src/components/CallControls/CallControls.js +8 -0
  32. package/dist/src/components/CallControls/CallControls.js.map +1 -0
  33. package/dist/src/components/CallControls/CallStatsButton.d.ts +6 -0
  34. package/dist/src/components/CallControls/CallStatsButton.js +10 -0
  35. package/dist/src/components/CallControls/CallStatsButton.js.map +1 -0
  36. package/dist/src/components/CallControls/CancelCallButton.d.ts +8 -0
  37. package/dist/src/components/CallControls/CancelCallButton.js +25 -0
  38. package/dist/src/components/CallControls/CancelCallButton.js.map +1 -0
  39. package/dist/src/components/CallControls/ReactionsButton.d.ts +11 -0
  40. package/dist/src/components/CallControls/ReactionsButton.js +33 -0
  41. package/dist/src/components/CallControls/ReactionsButton.js.map +1 -0
  42. package/dist/src/components/CallControls/RecordCallButton.d.ts +7 -0
  43. package/dist/src/components/CallControls/RecordCallButton.js +51 -0
  44. package/dist/src/components/CallControls/RecordCallButton.js.map +1 -0
  45. package/dist/src/components/CallControls/ScreenShareButton.d.ts +7 -0
  46. package/dist/src/components/CallControls/ScreenShareButton.js +54 -0
  47. package/dist/src/components/CallControls/ScreenShareButton.js.map +1 -0
  48. package/dist/src/components/CallControls/ToggleAudioButton.d.ts +9 -0
  49. package/dist/src/components/CallControls/ToggleAudioButton.js +66 -0
  50. package/dist/src/components/CallControls/ToggleAudioButton.js.map +1 -0
  51. package/dist/src/components/CallControls/ToggleAudioOutputButton.d.ts +5 -0
  52. package/dist/src/components/CallControls/ToggleAudioOutputButton.js +9 -0
  53. package/dist/src/components/CallControls/ToggleAudioOutputButton.js.map +1 -0
  54. package/dist/src/components/CallControls/ToggleCameraButton.d.ts +10 -0
  55. package/dist/src/components/CallControls/ToggleCameraButton.js +64 -0
  56. package/dist/src/components/CallControls/ToggleCameraButton.js.map +1 -0
  57. package/dist/src/components/CallControls/ToggleParticipantListButton.d.ts +6 -0
  58. package/dist/src/components/CallControls/ToggleParticipantListButton.js +7 -0
  59. package/dist/src/components/CallControls/ToggleParticipantListButton.js.map +1 -0
  60. package/dist/src/components/CallControls/index.d.ts +10 -0
  61. package/dist/src/components/CallControls/index.js +11 -0
  62. package/dist/src/components/CallControls/index.js.map +1 -0
  63. package/dist/src/components/CallParticipantsList/BlockedUserListing.d.ts +4 -0
  64. package/dist/src/components/CallParticipantsList/BlockedUserListing.js +19 -0
  65. package/dist/src/components/CallParticipantsList/BlockedUserListing.js.map +1 -0
  66. package/dist/src/components/CallParticipantsList/CallParticipantListHeader.d.ts +6 -0
  67. package/dist/src/components/CallParticipantsList/CallParticipantListHeader.js +7 -0
  68. package/dist/src/components/CallParticipantsList/CallParticipantListHeader.js.map +1 -0
  69. package/dist/src/components/CallParticipantsList/CallParticipantListing.d.ts +8 -0
  70. package/dist/src/components/CallParticipantsList/CallParticipantListing.js +4 -0
  71. package/dist/src/components/CallParticipantsList/CallParticipantListing.js.map +1 -0
  72. package/dist/src/components/CallParticipantsList/CallParticipantListingItem.d.ts +15 -0
  73. package/dist/src/components/CallParticipantsList/CallParticipantListingItem.js +77 -0
  74. package/dist/src/components/CallParticipantsList/CallParticipantListingItem.js.map +1 -0
  75. package/dist/src/components/CallParticipantsList/CallParticipantsList.d.ts +15 -0
  76. package/dist/src/components/CallParticipantsList/CallParticipantsList.js +82 -0
  77. package/dist/src/components/CallParticipantsList/CallParticipantsList.js.map +1 -0
  78. package/dist/src/components/CallParticipantsList/EmptyParticipantSearchList.d.ts +2 -0
  79. package/dist/src/components/CallParticipantsList/EmptyParticipantSearchList.js +5 -0
  80. package/dist/src/components/CallParticipantsList/EmptyParticipantSearchList.js.map +1 -0
  81. package/dist/src/components/CallParticipantsList/index.d.ts +3 -0
  82. package/dist/src/components/CallParticipantsList/index.js +4 -0
  83. package/dist/src/components/CallParticipantsList/index.js.map +1 -0
  84. package/dist/src/components/CallRecordingList/CallRecordingList.d.ts +20 -0
  85. package/dist/src/components/CallRecordingList/CallRecordingList.js +9 -0
  86. package/dist/src/components/CallRecordingList/CallRecordingList.js.map +1 -0
  87. package/dist/src/components/CallRecordingList/CallRecordingListHeader.d.ts +7 -0
  88. package/dist/src/components/CallRecordingList/CallRecordingListHeader.js +8 -0
  89. package/dist/src/components/CallRecordingList/CallRecordingListHeader.js.map +1 -0
  90. package/dist/src/components/CallRecordingList/CallRecordingListItem.d.ts +7 -0
  91. package/dist/src/components/CallRecordingList/CallRecordingListItem.js +11 -0
  92. package/dist/src/components/CallRecordingList/CallRecordingListItem.js.map +1 -0
  93. package/dist/src/components/CallRecordingList/EmptyCallRecordingListing.d.ts +2 -0
  94. package/dist/src/components/CallRecordingList/EmptyCallRecordingListing.js +5 -0
  95. package/dist/src/components/CallRecordingList/EmptyCallRecordingListing.js.map +1 -0
  96. package/dist/src/components/CallRecordingList/LoadingCallRecordingListing.d.ts +7 -0
  97. package/dist/src/components/CallRecordingList/LoadingCallRecordingListing.js +7 -0
  98. package/dist/src/components/CallRecordingList/LoadingCallRecordingListing.js.map +1 -0
  99. package/dist/src/components/CallRecordingList/index.d.ts +5 -0
  100. package/dist/src/components/CallRecordingList/index.js +6 -0
  101. package/dist/src/components/CallRecordingList/index.js.map +1 -0
  102. package/dist/src/components/Debug/DebugParticipantPublishQuality.d.ts +6 -0
  103. package/dist/src/components/Debug/DebugParticipantPublishQuality.js +46 -0
  104. package/dist/src/components/Debug/DebugParticipantPublishQuality.js.map +1 -0
  105. package/dist/src/components/Debug/DebugStatsView.d.ts +7 -0
  106. package/dist/src/components/Debug/DebugStatsView.js +26 -0
  107. package/dist/src/components/Debug/DebugStatsView.js.map +1 -0
  108. package/dist/src/components/Debug/useIsDebugMode.d.ts +5 -0
  109. package/dist/src/components/Debug/useIsDebugMode.js +18 -0
  110. package/dist/src/components/Debug/useIsDebugMode.js.map +1 -0
  111. package/dist/src/components/DeviceSettings/DeviceSelector.d.ts +7 -0
  112. package/dist/src/components/DeviceSettings/DeviceSelector.js +26 -0
  113. package/dist/src/components/DeviceSettings/DeviceSelector.js.map +1 -0
  114. package/dist/src/components/DeviceSettings/DeviceSelectorAudio.d.ts +9 -0
  115. package/dist/src/components/DeviceSettings/DeviceSelectorAudio.js +18 -0
  116. package/dist/src/components/DeviceSettings/DeviceSelectorAudio.js.map +1 -0
  117. package/dist/src/components/DeviceSettings/DeviceSelectorVideo.d.ts +5 -0
  118. package/dist/src/components/DeviceSettings/DeviceSelectorVideo.js +10 -0
  119. package/dist/src/components/DeviceSettings/DeviceSelectorVideo.js.map +1 -0
  120. package/dist/src/components/DeviceSettings/DeviceSettings.d.ts +2 -0
  121. package/dist/src/components/DeviceSettings/DeviceSettings.js +15 -0
  122. package/dist/src/components/DeviceSettings/DeviceSettings.js.map +1 -0
  123. package/dist/src/components/DeviceSettings/index.d.ts +4 -0
  124. package/dist/src/components/DeviceSettings/index.js +5 -0
  125. package/dist/src/components/DeviceSettings/index.js.map +1 -0
  126. package/dist/src/components/Icon/Icon.d.ts +5 -0
  127. package/dist/src/components/Icon/Icon.js +4 -0
  128. package/dist/src/components/Icon/Icon.js.map +1 -0
  129. package/dist/src/components/Icon/index.d.ts +1 -0
  130. package/dist/src/components/Icon/index.js +2 -0
  131. package/dist/src/components/Icon/index.js.map +1 -0
  132. package/dist/src/components/LoadingIndicator/LoadingIndicator.d.ts +11 -0
  133. package/dist/src/components/LoadingIndicator/LoadingIndicator.js +6 -0
  134. package/dist/src/components/LoadingIndicator/LoadingIndicator.js.map +1 -0
  135. package/dist/src/components/LoadingIndicator/index.d.ts +1 -0
  136. package/dist/src/components/LoadingIndicator/index.js +2 -0
  137. package/dist/src/components/LoadingIndicator/index.js.map +1 -0
  138. package/dist/src/components/Menu/GenericMenu.d.ts +3 -0
  139. package/dist/src/components/Menu/GenericMenu.js +20 -0
  140. package/dist/src/components/Menu/GenericMenu.js.map +1 -0
  141. package/dist/src/components/Menu/MenuToggle.d.ts +12 -0
  142. package/dist/src/components/Menu/MenuToggle.js +40 -0
  143. package/dist/src/components/Menu/MenuToggle.js.map +1 -0
  144. package/dist/src/components/Menu/index.d.ts +2 -0
  145. package/dist/src/components/Menu/index.js +3 -0
  146. package/dist/src/components/Menu/index.js.map +1 -0
  147. package/dist/src/components/Moderation/Restricted.d.ts +19 -0
  148. package/dist/src/components/Moderation/Restricted.js +13 -0
  149. package/dist/src/components/Moderation/Restricted.js.map +1 -0
  150. package/dist/src/components/Moderation/index.d.ts +1 -0
  151. package/dist/src/components/Moderation/index.js +2 -0
  152. package/dist/src/components/Moderation/index.js.map +1 -0
  153. package/dist/src/components/Notification/Notification.d.ts +11 -0
  154. package/dist/src/components/Notification/Notification.js +25 -0
  155. package/dist/src/components/Notification/Notification.js.map +1 -0
  156. package/dist/src/components/Notification/PermissionNotification.d.ts +33 -0
  157. package/dist/src/components/Notification/PermissionNotification.js +26 -0
  158. package/dist/src/components/Notification/PermissionNotification.js.map +1 -0
  159. package/dist/src/components/Notification/SpeakingWhileMutedNotification.d.ts +3 -0
  160. package/dist/src/components/Notification/SpeakingWhileMutedNotification.js +45 -0
  161. package/dist/src/components/Notification/SpeakingWhileMutedNotification.js.map +1 -0
  162. package/dist/src/components/Notification/index.d.ts +3 -0
  163. package/dist/src/components/Notification/index.js +4 -0
  164. package/dist/src/components/Notification/index.js.map +1 -0
  165. package/dist/src/components/Permissions/PermissionRequests.d.ts +8 -0
  166. package/dist/src/components/Permissions/PermissionRequests.js +109 -0
  167. package/dist/src/components/Permissions/PermissionRequests.js.map +1 -0
  168. package/dist/src/components/Permissions/index.d.ts +1 -0
  169. package/dist/src/components/Permissions/index.js +2 -0
  170. package/dist/src/components/Permissions/index.js.map +1 -0
  171. package/dist/src/components/Reaction/Reaction.d.ts +10 -0
  172. package/dist/src/components/Reaction/Reaction.js +28 -0
  173. package/dist/src/components/Reaction/Reaction.js.map +1 -0
  174. package/dist/src/components/Reaction/index.d.ts +1 -0
  175. package/dist/src/components/Reaction/index.js +2 -0
  176. package/dist/src/components/Reaction/index.js.map +1 -0
  177. package/dist/src/components/Search/SearchInput.d.ts +14 -0
  178. package/dist/src/components/Search/SearchInput.js +34 -0
  179. package/dist/src/components/Search/SearchInput.js.map +1 -0
  180. package/dist/src/components/Search/SearchResults.d.ts +14 -0
  181. package/dist/src/components/Search/SearchResults.js +12 -0
  182. package/dist/src/components/Search/SearchResults.js.map +1 -0
  183. package/dist/src/components/Search/hooks/index.d.ts +1 -0
  184. package/dist/src/components/Search/hooks/index.js +2 -0
  185. package/dist/src/components/Search/hooks/index.js.map +1 -0
  186. package/dist/src/components/Search/hooks/useSearch.d.ts +15 -0
  187. package/dist/src/components/Search/hooks/useSearch.js +39 -0
  188. package/dist/src/components/Search/hooks/useSearch.js.map +1 -0
  189. package/dist/src/components/Search/index.d.ts +2 -0
  190. package/dist/src/components/Search/index.js +3 -0
  191. package/dist/src/components/Search/index.js.map +1 -0
  192. package/dist/src/components/StreamCall/CallParticipantsScreenView.d.ts +5 -0
  193. package/dist/src/components/StreamCall/CallParticipantsScreenView.js +34 -0
  194. package/dist/src/components/StreamCall/CallParticipantsScreenView.js.map +1 -0
  195. package/dist/src/components/StreamCall/CallParticipantsView.d.ts +5 -0
  196. package/dist/src/components/StreamCall/CallParticipantsView.js +11 -0
  197. package/dist/src/components/StreamCall/CallParticipantsView.js.map +1 -0
  198. package/dist/src/components/StreamCall/CallStats.d.ts +2 -0
  199. package/dist/src/components/StreamCall/CallStats.js +69 -0
  200. package/dist/src/components/StreamCall/CallStats.js.map +1 -0
  201. package/dist/src/components/StreamCall/CallStatsLatencyChart.d.ts +7 -0
  202. package/dist/src/components/StreamCall/CallStatsLatencyChart.js +39 -0
  203. package/dist/src/components/StreamCall/CallStatsLatencyChart.js.map +1 -0
  204. package/dist/src/components/StreamCall/Stage.d.ts +8 -0
  205. package/dist/src/components/StreamCall/Stage.js +13 -0
  206. package/dist/src/components/StreamCall/Stage.js.map +1 -0
  207. package/dist/src/components/StreamCall/hooks/index.d.ts +1 -0
  208. package/dist/src/components/StreamCall/hooks/index.js +2 -0
  209. package/dist/src/components/StreamCall/hooks/index.js.map +1 -0
  210. package/dist/src/components/StreamCall/hooks/useScrollPosition.d.ts +6 -0
  211. package/dist/src/components/StreamCall/hooks/useScrollPosition.js +63 -0
  212. package/dist/src/components/StreamCall/hooks/useScrollPosition.js.map +1 -0
  213. package/dist/src/components/StreamCall/index.d.ts +3 -0
  214. package/dist/src/components/StreamCall/index.js +4 -0
  215. package/dist/src/components/StreamCall/index.js.map +1 -0
  216. package/dist/src/components/StreamMeeting/StreamMeeting.d.ts +34 -0
  217. package/dist/src/components/StreamMeeting/StreamMeeting.js +26 -0
  218. package/dist/src/components/StreamMeeting/StreamMeeting.js.map +1 -0
  219. package/dist/src/components/StreamMeeting/index.d.ts +1 -0
  220. package/dist/src/components/StreamMeeting/index.js +2 -0
  221. package/dist/src/components/StreamMeeting/index.js.map +1 -0
  222. package/dist/src/components/Tooltip/Tooltip.d.ts +15 -0
  223. package/dist/src/components/Tooltip/Tooltip.js +22 -0
  224. package/dist/src/components/Tooltip/Tooltip.js.map +1 -0
  225. package/dist/src/components/Tooltip/WithTooltip.d.ts +5 -0
  226. package/dist/src/components/Tooltip/WithTooltip.js +23 -0
  227. package/dist/src/components/Tooltip/WithTooltip.js.map +1 -0
  228. package/dist/src/components/Tooltip/hooks/index.d.ts +1 -0
  229. package/dist/src/components/Tooltip/hooks/index.js +2 -0
  230. package/dist/src/components/Tooltip/hooks/index.js.map +1 -0
  231. package/dist/src/components/Tooltip/hooks/useEnterLeaveHandlers.d.ts +6 -0
  232. package/dist/src/components/Tooltip/hooks/useEnterLeaveHandlers.js +14 -0
  233. package/dist/src/components/Tooltip/hooks/useEnterLeaveHandlers.js.map +1 -0
  234. package/dist/src/components/Tooltip/index.d.ts +2 -0
  235. package/dist/src/components/Tooltip/index.js +3 -0
  236. package/dist/src/components/Tooltip/index.js.map +1 -0
  237. package/dist/src/components/Video/VideoPreview.d.ts +13 -0
  238. package/dist/src/components/Video/VideoPreview.js +70 -0
  239. package/dist/src/components/Video/VideoPreview.js.map +1 -0
  240. package/dist/src/components/Video/index.d.ts +4 -0
  241. package/dist/src/components/Video/index.js +5 -0
  242. package/dist/src/components/Video/index.js.map +1 -0
  243. package/dist/src/components/index.d.ts +16 -0
  244. package/dist/src/components/index.js +17 -0
  245. package/dist/src/components/index.js.map +1 -0
  246. package/dist/src/core/components/Audio/Audio.d.ts +6 -0
  247. package/dist/src/core/components/Audio/Audio.js +39 -0
  248. package/dist/src/core/components/Audio/Audio.js.map +1 -0
  249. package/dist/src/core/components/Audio/index.d.ts +1 -0
  250. package/dist/src/core/components/Audio/index.js +2 -0
  251. package/dist/src/core/components/Audio/index.js.map +1 -0
  252. package/dist/src/core/components/CallLayout/PaginatedGridLayout.d.ts +21 -0
  253. package/dist/src/core/components/CallLayout/PaginatedGridLayout.js +39 -0
  254. package/dist/src/core/components/CallLayout/PaginatedGridLayout.js.map +1 -0
  255. package/dist/src/core/components/CallLayout/SpeakerLayout.d.ts +2 -0
  256. package/dist/src/core/components/CallLayout/SpeakerLayout.js +52 -0
  257. package/dist/src/core/components/CallLayout/SpeakerLayout.js.map +1 -0
  258. package/dist/src/core/components/CallLayout/index.d.ts +2 -0
  259. package/dist/src/core/components/CallLayout/index.js +3 -0
  260. package/dist/src/core/components/CallLayout/index.js.map +1 -0
  261. package/dist/src/core/components/ParticipantBox/ParticipantBox.d.ts +48 -0
  262. package/dist/src/core/components/ParticipantBox/ParticipantBox.js +58 -0
  263. package/dist/src/core/components/ParticipantBox/ParticipantBox.js.map +1 -0
  264. package/dist/src/core/components/ParticipantBox/index.d.ts +1 -0
  265. package/dist/src/core/components/ParticipantBox/index.js +2 -0
  266. package/dist/src/core/components/ParticipantBox/index.js.map +1 -0
  267. package/dist/src/core/components/Video/BaseVideo.d.ts +9 -0
  268. package/dist/src/core/components/Video/BaseVideo.js +54 -0
  269. package/dist/src/core/components/Video/BaseVideo.js.map +1 -0
  270. package/dist/src/core/components/Video/Video.d.ts +8 -0
  271. package/dist/src/core/components/Video/Video.js +151 -0
  272. package/dist/src/core/components/Video/Video.js.map +1 -0
  273. package/dist/src/core/components/Video/VideoPlaceholder.d.ts +6 -0
  274. package/dist/src/core/components/Video/VideoPlaceholder.js +12 -0
  275. package/dist/src/core/components/Video/VideoPlaceholder.js.map +1 -0
  276. package/dist/src/core/components/Video/index.d.ts +2 -0
  277. package/dist/src/core/components/Video/index.js +3 -0
  278. package/dist/src/core/components/Video/index.js.map +1 -0
  279. package/dist/src/core/components/index.d.ts +5 -0
  280. package/dist/src/core/components/index.js +5 -0
  281. package/dist/src/core/components/index.js.map +1 -0
  282. package/dist/src/core/contexts/MediaDevicesContext.d.ts +82 -0
  283. package/dist/src/core/contexts/MediaDevicesContext.js +215 -0
  284. package/dist/src/core/contexts/MediaDevicesContext.js.map +1 -0
  285. package/dist/src/core/contexts/index.d.ts +1 -0
  286. package/dist/src/core/contexts/index.js +2 -0
  287. package/dist/src/core/contexts/index.js.map +1 -0
  288. package/dist/src/core/hooks/index.d.ts +2 -0
  289. package/dist/src/core/hooks/index.js +3 -0
  290. package/dist/src/core/hooks/index.js.map +1 -0
  291. package/dist/src/core/hooks/useAudioPublisher.d.ts +12 -0
  292. package/dist/src/core/hooks/useAudioPublisher.js +89 -0
  293. package/dist/src/core/hooks/useAudioPublisher.js.map +1 -0
  294. package/dist/src/core/hooks/useVideoPublisher.d.ts +12 -0
  295. package/dist/src/core/hooks/useVideoPublisher.js +91 -0
  296. package/dist/src/core/hooks/useVideoPublisher.js.map +1 -0
  297. package/dist/src/core/index.d.ts +3 -0
  298. package/dist/src/core/index.js +4 -0
  299. package/dist/src/core/index.js.map +1 -0
  300. package/dist/src/hooks/index.d.ts +2 -0
  301. package/dist/src/hooks/index.js +3 -0
  302. package/dist/src/hooks/index.js.map +1 -0
  303. package/dist/src/hooks/useFloatingUIPreset.d.ts +9 -0
  304. package/dist/src/hooks/useFloatingUIPreset.js +29 -0
  305. package/dist/src/hooks/useFloatingUIPreset.js.map +1 -0
  306. package/dist/src/hooks/useRtcStats.d.ts +11 -0
  307. package/dist/src/hooks/useRtcStats.js +39 -0
  308. package/dist/src/hooks/useRtcStats.js.map +1 -0
  309. package/dist/src/types/components.d.ts +7 -0
  310. package/dist/src/types/components.js +2 -0
  311. package/dist/src/types/components.js.map +1 -0
  312. package/dist/src/types/index.d.ts +1 -0
  313. package/dist/src/types/index.js +2 -0
  314. package/dist/src/types/index.js.map +1 -0
  315. package/index.ts +18 -0
  316. package/package.json +49 -0
  317. package/src/components/Avatar/Avatar.tsx +45 -0
  318. package/src/components/Avatar/index.ts +1 -0
  319. package/src/components/Button/CompositeButton.tsx +59 -0
  320. package/src/components/Button/CopyToClipboardButton.tsx +129 -0
  321. package/src/components/Button/IconButton.tsx +32 -0
  322. package/src/components/Button/TextButton.tsx +12 -0
  323. package/src/components/Button/index.ts +4 -0
  324. package/src/components/CallControls/CallControls.tsx +32 -0
  325. package/src/components/CallControls/CallStatsButton.tsx +28 -0
  326. package/src/components/CallControls/CancelCallButton.tsx +28 -0
  327. package/src/components/CallControls/ReactionsButton.tsx +75 -0
  328. package/src/components/CallControls/RecordCallButton.tsx +68 -0
  329. package/src/components/CallControls/ScreenShareButton.tsx +85 -0
  330. package/src/components/CallControls/ToggleAudioButton.tsx +112 -0
  331. package/src/components/CallControls/ToggleAudioOutputButton.tsx +21 -0
  332. package/src/components/CallControls/ToggleCameraButton.tsx +109 -0
  333. package/src/components/CallControls/ToggleParticipantListButton.tsx +17 -0
  334. package/src/components/CallControls/index.ts +10 -0
  335. package/src/components/CallParticipantsList/BlockedUserListing.tsx +38 -0
  336. package/src/components/CallParticipantsList/CallParticipantListHeader.tsx +29 -0
  337. package/src/components/CallParticipantsList/CallParticipantListing.tsx +22 -0
  338. package/src/components/CallParticipantsList/CallParticipantListingItem.tsx +249 -0
  339. package/src/components/CallParticipantsList/CallParticipantsList.tsx +255 -0
  340. package/src/components/CallParticipantsList/EmptyParticipantSearchList.tsx +7 -0
  341. package/src/components/CallParticipantsList/index.ts +3 -0
  342. package/src/components/CallRecordingList/CallRecordingList.tsx +60 -0
  343. package/src/components/CallRecordingList/CallRecordingListHeader.tsx +29 -0
  344. package/src/components/CallRecordingList/CallRecordingListItem.tsx +67 -0
  345. package/src/components/CallRecordingList/EmptyCallRecordingListing.tsx +11 -0
  346. package/src/components/CallRecordingList/LoadingCallRecordingListing.tsx +21 -0
  347. package/src/components/CallRecordingList/index.ts +5 -0
  348. package/src/components/Debug/DebugParticipantPublishQuality.tsx +62 -0
  349. package/src/components/Debug/DebugStatsView.tsx +55 -0
  350. package/src/components/Debug/useIsDebugMode.ts +24 -0
  351. package/src/components/DeviceSettings/DeviceSelector.tsx +106 -0
  352. package/src/components/DeviceSettings/DeviceSelectorAudio.tsx +52 -0
  353. package/src/components/DeviceSettings/DeviceSelectorVideo.tsx +22 -0
  354. package/src/components/DeviceSettings/DeviceSettings.tsx +39 -0
  355. package/src/components/DeviceSettings/index.ts +4 -0
  356. package/src/components/Icon/Icon.tsx +11 -0
  357. package/src/components/Icon/index.ts +1 -0
  358. package/src/components/LoadingIndicator/LoadingIndicator.tsx +28 -0
  359. package/src/components/LoadingIndicator/index.ts +1 -0
  360. package/src/components/Menu/GenericMenu.tsx +16 -0
  361. package/src/components/Menu/MenuToggle.tsx +81 -0
  362. package/src/components/Menu/index.ts +2 -0
  363. package/src/components/Moderation/Restricted.tsx +38 -0
  364. package/src/components/Moderation/index.ts +1 -0
  365. package/src/components/Notification/Notification.tsx +61 -0
  366. package/src/components/Notification/PermissionNotification.tsx +97 -0
  367. package/src/components/Notification/SpeakingWhileMutedNotification.tsx +60 -0
  368. package/src/components/Notification/index.ts +3 -0
  369. package/src/components/Permissions/PermissionRequests.tsx +182 -0
  370. package/src/components/Permissions/index.ts +1 -0
  371. package/src/components/Reaction/Reaction.tsx +48 -0
  372. package/src/components/Reaction/index.ts +1 -0
  373. package/src/components/Search/SearchInput.tsx +56 -0
  374. package/src/components/Search/SearchResults.tsx +40 -0
  375. package/src/components/Search/hooks/index.ts +1 -0
  376. package/src/components/Search/hooks/useSearch.ts +52 -0
  377. package/src/components/Search/index.ts +2 -0
  378. package/src/components/StreamCall/CallParticipantsScreenView.tsx +126 -0
  379. package/src/components/StreamCall/CallParticipantsView.tsx +25 -0
  380. package/src/components/StreamCall/CallStats.tsx +162 -0
  381. package/src/components/StreamCall/CallStatsLatencyChart.tsx +58 -0
  382. package/src/components/StreamCall/Stage.tsx +22 -0
  383. package/src/components/StreamCall/hooks/index.ts +1 -0
  384. package/src/components/StreamCall/hooks/useScrollPosition.ts +95 -0
  385. package/src/components/StreamCall/index.ts +4 -0
  386. package/src/components/StreamMeeting/StreamMeeting.tsx +80 -0
  387. package/src/components/StreamMeeting/index.ts +1 -0
  388. package/src/components/Tooltip/Tooltip.tsx +51 -0
  389. package/src/components/Tooltip/WithTooltip.tsx +39 -0
  390. package/src/components/Tooltip/hooks/index.ts +1 -0
  391. package/src/components/Tooltip/hooks/useEnterLeaveHandlers.ts +28 -0
  392. package/src/components/Tooltip/index.ts +2 -0
  393. package/src/components/Video/VideoPreview.tsx +127 -0
  394. package/src/components/Video/index.ts +4 -0
  395. package/src/components/index.ts +16 -0
  396. package/src/core/components/Audio/Audio.tsx +42 -0
  397. package/src/core/components/Audio/index.ts +1 -0
  398. package/src/core/components/CallLayout/PaginatedGridLayout.tsx +163 -0
  399. package/src/core/components/CallLayout/SpeakerLayout.tsx +145 -0
  400. package/src/core/components/CallLayout/index.ts +2 -0
  401. package/src/core/components/ParticipantBox/ParticipantBox.tsx +248 -0
  402. package/src/core/components/ParticipantBox/index.ts +1 -0
  403. package/src/core/components/Video/BaseVideo.tsx +68 -0
  404. package/src/core/components/Video/Video.tsx +238 -0
  405. package/src/core/components/Video/VideoPlaceholder.tsx +40 -0
  406. package/src/core/components/Video/index.ts +2 -0
  407. package/src/core/components/index.ts +7 -0
  408. package/src/core/contexts/MediaDevicesContext.tsx +373 -0
  409. package/src/core/contexts/index.ts +1 -0
  410. package/src/core/hooks/index.ts +2 -0
  411. package/src/core/hooks/useAudioPublisher.ts +118 -0
  412. package/src/core/hooks/useVideoPublisher.ts +120 -0
  413. package/src/core/index.ts +3 -0
  414. package/src/hooks/index.ts +2 -0
  415. package/src/hooks/useFloatingUIPreset.ts +48 -0
  416. package/src/hooks/useRtcStats.ts +36 -0
  417. package/src/types/components.ts +7 -0
  418. package/src/types/index.ts +1 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,183 @@
1
+ # Changelog
2
+
3
+ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
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)
6
+
7
+
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)
10
+
11
+
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)
14
+
15
+
16
+
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
+
23
+
24
+
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
+
27
+
28
+ ### Features
29
+
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))
31
+
32
+
33
+
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)
35
+
36
+
37
+
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)
39
+
40
+
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)
43
+
44
+
45
+
46
+ ## 0.0.1-alpha.0 (2023-05-04)
47
+
48
+
49
+ ### Bug Fixes
50
+
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))
package/LICENSE ADDED
@@ -0,0 +1,219 @@
1
+ SOURCE CODE LICENSE AGREEMENT
2
+
3
+ IMPORTANT - READ THIS CAREFULLY BEFORE DOWNLOADING, INSTALLING, USING OR
4
+ ELECTRONICALLY ACCESSING THIS PROPRIETARY PRODUCT.
5
+
6
+ THIS IS A LEGAL AGREEMENT BETWEEN STREAM.IO, INC. (“STREAM.IO”) AND THE
7
+ BUSINESS ENTITY OR PERSON FOR WHOM YOU (“YOU”) ARE ACTING (“CUSTOMER”) AS THE
8
+ LICENSEE OF THE PROPRIETARY SOFTWARE INTO WHICH THIS AGREEMENT HAS BEEN
9
+ INCLUDED (THE “AGREEMENT”). YOU AGREE THAT YOU ARE THE CUSTOMER, OR YOU ARE AN
10
+ EMPLOYEE OR AGENT OF CUSTOMER AND ARE ENTERING INTO THIS AGREEMENT FOR LICENSE
11
+ OF THE SOFTWARE BY CUSTOMER FOR CUSTOMER’S BUSINESS PURPOSES AS DESCRIBED IN
12
+ AND IN ACCORDANCE WITH THIS AGREEMENT. YOU HEREBY AGREE THAT YOU ENTER INTO
13
+ THIS AGREEMENT ON BEHALF OF CUSTOMER AND THAT YOU HAVE THE AUTHORITY TO BIND
14
+ CUSTOMER TO THIS AGREEMENT.
15
+
16
+ STREAM.IO IS WILLING TO LICENSE THE SOFTWARE TO CUSTOMER ONLY ON THE FOLLOWING
17
+ CONDITIONS: (1) YOU ARE A CURRENT CUSTOMER OF STREAM.IO; (2) YOU ARE NOT A
18
+ COMPETITOR OF STREAM.IO; AND (3) THAT YOU ACCEPT ALL THE TERMS IN THIS
19
+ AGREEMENT. BY DOWNLOADING, INSTALLING, CONFIGURING, ACCESSING OR OTHERWISE
20
+ USING THE SOFTWARE, INCLUDING ANY UPDATES, UPGRADES, OR NEWER VERSIONS, YOU
21
+ REPRESENT, WARRANT AND ACKNOWLEDGE THAT (A) CUSTOMER IS A CURRENT CUSTOMER OF
22
+ STREAM.IO; (B) CUSTOMER IS NOT A COMPETITOR OF STREAM.IO; AND THAT (C) YOU HAVE
23
+ READ THIS AGREEMENT, UNDERSTAND THIS AGREEMENT, AND THAT CUSTOMER AGREES TO BE
24
+ BOUND BY ALL THE TERMS OF THIS AGREEMENT.
25
+
26
+ IF YOU DO NOT AGREE TO ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT,
27
+ STREAM.IO IS UNWILLING TO LICENSE THE SOFTWARE TO CUSTOMER, AND THEREFORE, DO
28
+ NOT COMPLETE THE DOWNLOAD PROCESS, ACCESS OR OTHERWISE USE THE SOFTWARE, AND
29
+ CUSTOMER SHOULD IMMEDIATELY RETURN THE SOFTWARE AND CEASE ANY USE OF THE
30
+ SOFTWARE.
31
+
32
+ 1. SOFTWARE. The Stream.io software accompanying this Agreement, may include
33
+ Source Code, Executable Object Code, associated media, printed materials and
34
+ documentation (collectively, the “Software”). The Software also includes any
35
+ updates or upgrades to or new versions of the original Software, if and when
36
+ made available to you by Stream.io. “Source Code” means computer programming
37
+ code in human readable form that is not suitable for machine execution without
38
+ the intervening steps of interpretation or compilation. “Executable Object
39
+ Code" means the computer programming code in any other form than Source Code
40
+ that is not readily perceivable by humans and suitable for machine execution
41
+ without the intervening steps of interpretation or compilation. “Site” means a
42
+ Customer location controlled by Customer. “Authorized User” means any employee
43
+ or contractor of Customer working at the Site, who has signed a written
44
+ confidentiality agreement with Customer or is otherwise bound in writing by
45
+ confidentiality and use obligations at least as restrictive as those imposed
46
+ under this Agreement.
47
+
48
+ 2. LICENSE GRANT. Subject to the terms and conditions of this Agreement, in
49
+ consideration for the representations, warranties, and covenants made by
50
+ Customer in this Agreement, Stream.io grants to Customer, during the term of
51
+ this Agreement, a personal, non-exclusive, non-transferable, non-sublicensable
52
+ license to:
53
+
54
+ a. install and use Software Source Code on password protected computers at a Site,
55
+ restricted to Authorized Users;
56
+
57
+ b. create derivative works, improvements (whether or not patentable), extensions
58
+ and other modifications to the Software Source Code (“Modifications”) to build
59
+ unique scalable newsfeeds, activity streams, and in-app messaging via Stream’s
60
+ application program interface (“API”);
61
+
62
+ c. compile the Software Source Code to create Executable Object Code versions of
63
+ the Software Source Code and Modifications to build such newsfeeds, activity
64
+ streams, and in-app messaging via the API;
65
+
66
+ d. install, execute and use such Executable Object Code versions solely for
67
+ Customer’s internal business use (including development of websites through
68
+ which data generated by Stream services will be streamed (“Apps”));
69
+
70
+ e. use and distribute such Executable Object Code as part of Customer’s Apps; and
71
+
72
+ f. make electronic copies of the Software and Modifications as required for backup
73
+ or archival purposes.
74
+
75
+ 3. RESTRICTIONS. Customer is responsible for all activities that occur in
76
+ connection with the Software. Customer will not, and will not attempt to: (a)
77
+ sublicense or transfer the Software or any Source Code related to the Software
78
+ or any of Customer’s rights under this Agreement, except as otherwise provided
79
+ in this Agreement, (b) use the Software Source Code for the benefit of a third
80
+ party or to operate a service; (c) allow any third party to access or use the
81
+ Software Source Code; (d) sublicense or distribute the Software Source Code or
82
+ any Modifications in Source Code or other derivative works based on any part of
83
+ the Software Source Code; (e) use the Software in any manner that competes with
84
+ Stream.io or its business; or (e) otherwise use the Software in any manner that
85
+ exceeds the scope of use permitted in this Agreement. Customer shall use the
86
+ Software in compliance with any accompanying documentation any laws applicable
87
+ to Customer.
88
+
89
+ 4. OPEN SOURCE. Customer and its Authorized Users shall not use any software or
90
+ software components that are open source in conjunction with the Software
91
+ Source Code or any Modifications in Source Code or in any way that could
92
+ subject the Software to any open source licenses.
93
+
94
+ 5. CONTRACTORS. Under the rights granted to Customer under this Agreement,
95
+ Customer may permit its employees, contractors, and agencies of Customer to
96
+ become Authorized Users to exercise the rights to the Software granted to
97
+ Customer in accordance with this Agreement solely on behalf of Customer to
98
+ provide services to Customer; provided that Customer shall be liable for the
99
+ acts and omissions of all Authorized Users to the extent any of such acts or
100
+ omissions, if performed by Customer, would constitute a breach of, or otherwise
101
+ give rise to liability to Customer under, this Agreement. Customer shall not
102
+ and shall not permit any Authorized User to use the Software except as
103
+ expressly permitted in this Agreement.
104
+
105
+ 6. COMPETITIVE PRODUCT DEVELOPMENT. Customer shall not use the Software in any way
106
+ to engage in the development of products or services which could be reasonably
107
+ construed to provide a complete or partial functional or commercial alternative
108
+ to Stream.io’s products or services (a “Competitive Product”). Customer shall
109
+ ensure that there is no direct or indirect use of, or sharing of, Software
110
+ source code, or other information based upon or derived from the Software to
111
+ develop such products or services. Without derogating from the generality of
112
+ the foregoing, development of Competitive Products shall include having direct
113
+ or indirect access to, supervising, consulting or assisting in the development
114
+ of, or producing any specifications, documentation, object code or source code
115
+ for, all or part of a Competitive Product.
116
+
117
+ 7. LIMITATION ON MODIFICATIONS. Notwithstanding any provision in this Agreement,
118
+ Modifications may only be created and used by Customer as permitted by this
119
+ Agreement and Modification Source Code may not be distributed to third parties.
120
+ Customer will not assert against Stream.io, its affiliates, or their customers,
121
+ direct or indirect, agents and contractors, in any way, any patent rights that
122
+ Customer may obtain relating to any Modifications for Stream.io, its
123
+ affiliates’, or their customers’, direct or indirect, agents’ and contractors’
124
+ manufacture, use, import, offer for sale or sale of any Stream.io products or
125
+ services.
126
+
127
+ 8. DELIVERY AND ACCEPTANCE. The Software will be delivered electronically pursuant
128
+ to Stream.io standard download procedures. The Software is deemed accepted upon
129
+ delivery.
130
+
131
+ 9. IMPLEMENTATION AND SUPPORT. Stream.io has no obligation under this Agreement to
132
+ provide any support or consultation concerning the Software.
133
+
134
+ 10. TERM AND TERMINATION. The term of this Agreement begins when the Software is
135
+ downloaded or accessed and shall continue until terminated. Either party may
136
+ terminate this Agreement upon written notice. This Agreement shall
137
+ automatically terminate if Customer is or becomes a competitor of Stream.io or
138
+ makes or sells any Competitive Products. Upon termination of this Agreement for
139
+ any reason, (a) all rights granted to Customer in this Agreement immediately
140
+ cease to exist, (b) Customer must promptly discontinue all use of the Software
141
+ and return to Stream.io or destroy all copies of the Software in Customer’s
142
+ possession or control. Any continued use of the Software by Customer or attempt
143
+ by Customer to exercise any rights under this Agreement after this Agreement
144
+ has terminated shall be considered copyright infringement and subject Customer
145
+ to applicable remedies for copyright infringement. Sections 2, 5, 6, 8 and 9
146
+ shall survive expiration or termination of this Agreement for any reason.
147
+
148
+ 11. OWNERSHIP. As between the parties, the Software and all worldwide intellectual
149
+ property rights and proprietary rights relating thereto or embodied therein,
150
+ are the exclusive property of Stream.io and its suppliers. Stream.io and its
151
+ suppliers reserve all rights in and to the Software not expressly granted to
152
+ Customer in this Agreement, and no other licenses or rights are granted by
153
+ implication, estoppel or otherwise.
154
+
155
+ 12. WARRANTY DISCLAIMER. USE OF THIS SOFTWARE IS ENTIRELY AT YOURS AND CUSTOMER’S
156
+ OWN RISK. THE SOFTWARE IS PROVIDED “AS IS” WITHOUT ANY WARRANTY OF ANY KIND
157
+ WHATSOEVER. STREAM.IO DOES NOT MAKE, AND HEREBY DISCLAIMS, ANY WARRANTY OF ANY
158
+ KIND, WHETHER EXPRESS, IMPLIED, STATUTORY OR OTHERWISE, INCLUDING WITHOUT
159
+ LIMITATION, THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
160
+ PURPOSE, TITLE, NON-INFRINGEMENT OF THIRD-PARTY RIGHTS, RESULTS, EFFORTS,
161
+ QUALITY OR QUIET ENJOYMENT. STREAM.IO DOES NOT WARRANT THAT THE SOFTWARE IS
162
+ ERROR-FREE, WILL FUNCTION WITHOUT INTERRUPTION, WILL MEET ANY SPECIFIC NEED
163
+ THAT CUSTOMER HAS, THAT ALL DEFECTS WILL BE CORRECTED OR THAT IT IS
164
+ SUFFICIENTLY DOCUMENTED TO BE USABLE BY CUSTOMER. TO THE EXTENT THAT STREAM.IO
165
+ MAY NOT DISCLAIM ANY WARRANTY AS A MATTER OF APPLICABLE LAW, THE SCOPE AND
166
+ DURATION OF SUCH WARRANTY WILL BE THE MINIMUM PERMITTED UNDER SUCH LAW.
167
+ CUSTOMER ACKNOWLEDGES THAT IT HAS RELIED ON NO WARRANTIES OTHER THAN THE
168
+ EXPRESS WARRANTIES IN THIS AGREEMENT.
169
+
170
+ 13. LIMITATION OF LIABILITY. TO THE FULLEST EXTENT PERMISSIBLE BY LAW, STREAM.IO’S
171
+ TOTAL LIABILITY FOR ALL DAMAGES ARISING OUT OF OR RELATED TO THE SOFTWARE OR
172
+ THIS AGREEMENT, WHETHER IN CONTRACT, TORT (INCLUDING NEGLIGENCE) OR OTHERWISE,
173
+ SHALL NOT EXCEED $100. IN NO EVENT WILL STREAM.IO BE LIABLE FOR ANY INDIRECT,
174
+ CONSEQUENTIAL, EXEMPLARY, PUNITIVE, SPECIAL OR INCIDENTAL DAMAGES OF ANY KIND
175
+ WHATSOEVER, INCLUDING ANY LOST DATA AND LOST PROFITS, ARISING FROM OR RELATING
176
+ TO THE SOFTWARE EVEN IF STREAM.IO HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
177
+ DAMAGES. CUSTOMER ACKNOWLEDGES THAT THIS PROVISION REFLECTS THE AGREED UPON
178
+ ALLOCATION OF RISK FOR THIS AGREEMENT AND THAT STREAM.IO WOULD NOT ENTER INTO
179
+ THIS AGREEMENT WITHOUT THESE LIMITATIONS ON ITS LIABILITY.
180
+
181
+ 14. General. Customer may not assign or transfer this Agreement, by operation of
182
+ law or otherwise, or any of its rights under this Agreement (including the
183
+ license rights granted to Customer) to any third party without Stream.io’s
184
+ prior written consent, which consent will not be unreasonably withheld or
185
+ delayed. Stream.io may assign this Agreement, without consent, including, but
186
+ limited to, affiliate or any successor to all or substantially all its business
187
+ or assets to which this Agreement relates, whether by merger, sale of assets,
188
+ sale of stock, reorganization or otherwise. Any attempted assignment or
189
+ transfer in violation of the foregoing will be null and void. Stream.io shall
190
+ not be liable hereunder by reason of any failure or delay in the performance of
191
+ its obligations hereunder for any cause which is beyond the reasonable control.
192
+ All notices, consents, and approvals under this Agreement must be delivered in
193
+ writing by courier, by electronic mail, or by certified or registered mail,
194
+ (postage prepaid and return receipt requested) to the other party at the
195
+ address set forth in the customer agreement between Stream.io and Customer and
196
+ will be effective upon receipt or when delivery is refused. This Agreement will
197
+ be governed by and interpreted in accordance with the laws of the State of
198
+ Colorado, without reference to its choice of laws rules. The United Nations
199
+ Convention on Contracts for the International Sale of Goods does not apply to
200
+ this Agreement. Any action or proceeding arising from or relating to this
201
+ Agreement shall be brought in a federal or state court in Denver, Colorado, and
202
+ each party irrevocably submits to the jurisdiction and venue of any such court
203
+ in any such action or proceeding. All waivers must be in writing. Any waiver or
204
+ failure to enforce any provision of this Agreement on one occasion will not be
205
+ deemed a waiver of any other provision or of such provision on any other
206
+ occasion. If any provision of this Agreement is unenforceable, such provision
207
+ will be changed and interpreted to accomplish the objectives of such provision
208
+ to the greatest extent possible under applicable law and the remaining
209
+ provisions will continue in full force and effect. Customer shall not violate
210
+ any applicable law, rule or regulation, including those regarding the export of
211
+ technical data. The headings of Sections of this Agreement are for convenience
212
+ and are not to be used in interpreting this Agreement. As used in this
213
+ Agreement, the word “including” means “including but not limited to.” This
214
+ Agreement (including all exhibits and attachments) constitutes the entire
215
+ agreement between the parties regarding the subject hereof and supersedes all
216
+ prior or contemporaneous agreements, understandings and communication, whether
217
+ written or oral. This Agreement may be amended only by a written document
218
+ signed by both parties. The terms of any purchase order or similar document
219
+ submitted by Customer to Stream.io will have no effect.
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @stream-io/video-react-sdk
2
+
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
+
5
+ TODO