@stream-io/video-react-native-sdk 0.0.1-alpha.141

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 (360) hide show
  1. package/CHANGELOG.md +739 -0
  2. package/LICENSE +219 -0
  3. package/README.md +19 -0
  4. package/dist/__tests__/components/ActiveCall.test.d.ts +1 -0
  5. package/dist/__tests__/components/ActiveCall.test.js +89 -0
  6. package/dist/__tests__/components/ActiveCall.test.js.map +1 -0
  7. package/dist/__tests__/components/Avatar.test.d.ts +1 -0
  8. package/dist/__tests__/components/Avatar.test.js +34 -0
  9. package/dist/__tests__/components/Avatar.test.js.map +1 -0
  10. package/dist/__tests__/components/ParticipantView.test.d.ts +1 -0
  11. package/dist/__tests__/components/ParticipantView.test.js +66 -0
  12. package/dist/__tests__/components/ParticipantView.test.js.map +1 -0
  13. package/dist/__tests__/mocks/call.d.ts +2 -0
  14. package/dist/__tests__/mocks/call.js +21 -0
  15. package/dist/__tests__/mocks/call.js.map +1 -0
  16. package/dist/__tests__/mocks/client.d.ts +2 -0
  17. package/dist/__tests__/mocks/client.js +31 -0
  18. package/dist/__tests__/mocks/client.js.map +1 -0
  19. package/dist/__tests__/mocks/participant.d.ts +3 -0
  20. package/dist/__tests__/mocks/participant.js +25 -0
  21. package/dist/__tests__/mocks/participant.js.map +1 -0
  22. package/dist/__tests__/utils/RNTLTools.d.ts +15 -0
  23. package/dist/__tests__/utils/RNTLTools.js +54 -0
  24. package/dist/__tests__/utils/RNTLTools.js.map +1 -0
  25. package/dist/index.d.ts +9 -0
  26. package/dist/index.js +39 -0
  27. package/dist/index.js.map +1 -0
  28. package/dist/jest-setup.d.ts +1 -0
  29. package/dist/jest-setup.js +34 -0
  30. package/dist/jest-setup.js.map +1 -0
  31. package/dist/src/components/ActiveCall.d.ts +18 -0
  32. package/dist/src/components/ActiveCall.js +117 -0
  33. package/dist/src/components/ActiveCall.js.map +1 -0
  34. package/dist/src/components/Avatar.d.ts +25 -0
  35. package/dist/src/components/Avatar.js +55 -0
  36. package/dist/src/components/Avatar.js.map +1 -0
  37. package/dist/src/components/CallControlsButton.d.ts +22 -0
  38. package/dist/src/components/CallControlsButton.js +43 -0
  39. package/dist/src/components/CallControlsButton.js.map +1 -0
  40. package/dist/src/components/CallControlsView.d.ts +9 -0
  41. package/dist/src/components/CallControlsView.js +95 -0
  42. package/dist/src/components/CallControlsView.js.map +1 -0
  43. package/dist/src/components/CallParticipantsBadge.d.ts +1 -0
  44. package/dist/src/components/CallParticipantsBadge.js +48 -0
  45. package/dist/src/components/CallParticipantsBadge.js.map +1 -0
  46. package/dist/src/components/CallParticipantsInfoView.d.ts +21 -0
  47. package/dist/src/components/CallParticipantsInfoView.js +213 -0
  48. package/dist/src/components/CallParticipantsInfoView.js.map +1 -0
  49. package/dist/src/components/CallParticipantsList.d.ts +25 -0
  50. package/dist/src/components/CallParticipantsList.js +124 -0
  51. package/dist/src/components/CallParticipantsList.js.map +1 -0
  52. package/dist/src/components/CallParticipantsOptions.d.ts +8 -0
  53. package/dist/src/components/CallParticipantsOptions.js +189 -0
  54. package/dist/src/components/CallParticipantsOptions.js.map +1 -0
  55. package/dist/src/components/CallParticipantsSpotlightView.d.ts +1 -0
  56. package/dist/src/components/CallParticipantsSpotlightView.js +40 -0
  57. package/dist/src/components/CallParticipantsSpotlightView.js.map +1 -0
  58. package/dist/src/components/CallParticipantsView.d.ts +1 -0
  59. package/dist/src/components/CallParticipantsView.js +31 -0
  60. package/dist/src/components/CallParticipantsView.js.map +1 -0
  61. package/dist/src/components/IncomingCallView.d.ts +1 -0
  62. package/dist/src/components/IncomingCallView.js +98 -0
  63. package/dist/src/components/IncomingCallView.js.map +1 -0
  64. package/dist/src/components/LobbyView.d.ts +1 -0
  65. package/dist/src/components/LobbyView.js +215 -0
  66. package/dist/src/components/LobbyView.js.map +1 -0
  67. package/dist/src/components/LocalVideoView.d.ts +34 -0
  68. package/dist/src/components/LocalVideoView.js +100 -0
  69. package/dist/src/components/LocalVideoView.js.map +1 -0
  70. package/dist/src/components/NetworkQualityIndicator.d.ts +8 -0
  71. package/dist/src/components/NetworkQualityIndicator.js +36 -0
  72. package/dist/src/components/NetworkQualityIndicator.js.map +1 -0
  73. package/dist/src/components/OutgoingCallView.d.ts +1 -0
  74. package/dist/src/components/OutgoingCallView.js +103 -0
  75. package/dist/src/components/OutgoingCallView.js.map +1 -0
  76. package/dist/src/components/ParticipantReaction.d.ts +7 -0
  77. package/dist/src/components/ParticipantReaction.js +45 -0
  78. package/dist/src/components/ParticipantReaction.js.map +1 -0
  79. package/dist/src/components/ParticipantView.d.ts +42 -0
  80. package/dist/src/components/ParticipantView.js +256 -0
  81. package/dist/src/components/ParticipantView.js.map +1 -0
  82. package/dist/src/components/ReactionsModal.d.ts +7 -0
  83. package/dist/src/components/ReactionsModal.js +65 -0
  84. package/dist/src/components/ReactionsModal.js.map +1 -0
  85. package/dist/src/components/ToggleAudioButton.d.ts +1 -0
  86. package/dist/src/components/ToggleAudioButton.js +78 -0
  87. package/dist/src/components/ToggleAudioButton.js.map +1 -0
  88. package/dist/src/components/ToggleVideoButton.d.ts +1 -0
  89. package/dist/src/components/ToggleVideoButton.js +78 -0
  90. package/dist/src/components/ToggleVideoButton.js.map +1 -0
  91. package/dist/src/components/UserInfoView.d.ts +13 -0
  92. package/dist/src/components/UserInfoView.js +82 -0
  93. package/dist/src/components/UserInfoView.js.map +1 -0
  94. package/dist/src/components/VideoRenderer.d.ts +65 -0
  95. package/dist/src/components/VideoRenderer.js +18 -0
  96. package/dist/src/components/VideoRenderer.js.map +1 -0
  97. package/dist/src/components/index.d.ts +12 -0
  98. package/dist/src/components/index.js +29 -0
  99. package/dist/src/components/index.js.map +1 -0
  100. package/dist/src/constants/A11yLabels.d.ts +20 -0
  101. package/dist/src/constants/A11yLabels.js +29 -0
  102. package/dist/src/constants/A11yLabels.js.map +1 -0
  103. package/dist/src/constants/index.d.ts +11 -0
  104. package/dist/src/constants/index.js +30 -0
  105. package/dist/src/constants/index.js.map +1 -0
  106. package/dist/src/contexts/StreamVideoContext/createStoreContext.d.ts +14 -0
  107. package/dist/src/contexts/StreamVideoContext/createStoreContext.js +100 -0
  108. package/dist/src/contexts/StreamVideoContext/createStoreContext.js.map +1 -0
  109. package/dist/src/contexts/StreamVideoContext/index.d.ts +30 -0
  110. package/dist/src/contexts/StreamVideoContext/index.js +18 -0
  111. package/dist/src/contexts/StreamVideoContext/index.js.map +1 -0
  112. package/dist/src/contexts/index.d.ts +1 -0
  113. package/dist/src/contexts/index.js +18 -0
  114. package/dist/src/contexts/index.js.map +1 -0
  115. package/dist/src/hooks/index.d.ts +10 -0
  116. package/dist/src/hooks/index.js +27 -0
  117. package/dist/src/hooks/index.js.map +1 -0
  118. package/dist/src/hooks/useCallControls.d.ts +14 -0
  119. package/dist/src/hooks/useCallControls.js +148 -0
  120. package/dist/src/hooks/useCallControls.js.map +1 -0
  121. package/dist/src/hooks/useCallCycleEffect.d.ts +8 -0
  122. package/dist/src/hooks/useCallCycleEffect.js +62 -0
  123. package/dist/src/hooks/useCallCycleEffect.js.map +1 -0
  124. package/dist/src/hooks/useCallKeep.d.ts +11 -0
  125. package/dist/src/hooks/useCallKeep.js +41 -0
  126. package/dist/src/hooks/useCallKeep.js.map +1 -0
  127. package/dist/src/hooks/useCreateStreamVideoClient.d.ts +33 -0
  128. package/dist/src/hooks/useCreateStreamVideoClient.js +40 -0
  129. package/dist/src/hooks/useCreateStreamVideoClient.js.map +1 -0
  130. package/dist/src/hooks/useIncallManager.d.ts +13 -0
  131. package/dist/src/hooks/useIncallManager.js +24 -0
  132. package/dist/src/hooks/useIncallManager.js.map +1 -0
  133. package/dist/src/hooks/useLocalVideoStream.d.ts +7 -0
  134. package/dist/src/hooks/useLocalVideoStream.js +34 -0
  135. package/dist/src/hooks/useLocalVideoStream.js.map +1 -0
  136. package/dist/src/hooks/useMutingState.d.ts +12 -0
  137. package/dist/src/hooks/useMutingState.js +25 -0
  138. package/dist/src/hooks/useMutingState.js.map +1 -0
  139. package/dist/src/hooks/usePermissionNotification.d.ts +18 -0
  140. package/dist/src/hooks/usePermissionNotification.js +33 -0
  141. package/dist/src/hooks/usePermissionNotification.js.map +1 -0
  142. package/dist/src/hooks/usePermissionRequest.d.ts +1 -0
  143. package/dist/src/hooks/usePermissionRequest.js +62 -0
  144. package/dist/src/hooks/usePermissionRequest.js.map +1 -0
  145. package/dist/src/hooks/usePublishMediaStreams.d.ts +6 -0
  146. package/dist/src/hooks/usePublishMediaStreams.js +49 -0
  147. package/dist/src/hooks/usePublishMediaStreams.js.map +1 -0
  148. package/dist/src/icons/ArrowRight.d.ts +5 -0
  149. package/dist/src/icons/ArrowRight.js +9 -0
  150. package/dist/src/icons/ArrowRight.js.map +1 -0
  151. package/dist/src/icons/CameraSwitch.d.ts +5 -0
  152. package/dist/src/icons/CameraSwitch.js +9 -0
  153. package/dist/src/icons/CameraSwitch.js.map +1 -0
  154. package/dist/src/icons/Chat.d.ts +5 -0
  155. package/dist/src/icons/Chat.js +9 -0
  156. package/dist/src/icons/Chat.js.map +1 -0
  157. package/dist/src/icons/Cross.d.ts +5 -0
  158. package/dist/src/icons/Cross.js +9 -0
  159. package/dist/src/icons/Cross.js.map +1 -0
  160. package/dist/src/icons/Mic.d.ts +5 -0
  161. package/dist/src/icons/Mic.js +10 -0
  162. package/dist/src/icons/Mic.js.map +1 -0
  163. package/dist/src/icons/MicOff.d.ts +5 -0
  164. package/dist/src/icons/MicOff.js +9 -0
  165. package/dist/src/icons/MicOff.js.map +1 -0
  166. package/dist/src/icons/Participants.d.ts +5 -0
  167. package/dist/src/icons/Participants.js +9 -0
  168. package/dist/src/icons/Participants.js.map +1 -0
  169. package/dist/src/icons/Phone.d.ts +5 -0
  170. package/dist/src/icons/Phone.js +9 -0
  171. package/dist/src/icons/Phone.js.map +1 -0
  172. package/dist/src/icons/PhoneDown.d.ts +5 -0
  173. package/dist/src/icons/PhoneDown.js +10 -0
  174. package/dist/src/icons/PhoneDown.js.map +1 -0
  175. package/dist/src/icons/Pin.d.ts +5 -0
  176. package/dist/src/icons/Pin.js +9 -0
  177. package/dist/src/icons/Pin.js.map +1 -0
  178. package/dist/src/icons/Reaction.d.ts +5 -0
  179. package/dist/src/icons/Reaction.js +9 -0
  180. package/dist/src/icons/Reaction.js.map +1 -0
  181. package/dist/src/icons/ScreenShare.d.ts +5 -0
  182. package/dist/src/icons/ScreenShare.js +40 -0
  183. package/dist/src/icons/ScreenShare.js.map +1 -0
  184. package/dist/src/icons/Settings.d.ts +5 -0
  185. package/dist/src/icons/Settings.js +34 -0
  186. package/dist/src/icons/Settings.js.map +1 -0
  187. package/dist/src/icons/Spotlight.d.ts +5 -0
  188. package/dist/src/icons/Spotlight.js +9 -0
  189. package/dist/src/icons/Spotlight.js.map +1 -0
  190. package/dist/src/icons/ThreeDots.d.ts +5 -0
  191. package/dist/src/icons/ThreeDots.js +11 -0
  192. package/dist/src/icons/ThreeDots.js.map +1 -0
  193. package/dist/src/icons/Video.d.ts +5 -0
  194. package/dist/src/icons/Video.js +9 -0
  195. package/dist/src/icons/Video.js.map +1 -0
  196. package/dist/src/icons/VideoDisabled.d.ts +5 -0
  197. package/dist/src/icons/VideoDisabled.js +10 -0
  198. package/dist/src/icons/VideoDisabled.js.map +1 -0
  199. package/dist/src/icons/VideoOff.d.ts +5 -0
  200. package/dist/src/icons/VideoOff.js +10 -0
  201. package/dist/src/icons/VideoOff.js.map +1 -0
  202. package/dist/src/icons/VideoSlash.d.ts +5 -0
  203. package/dist/src/icons/VideoSlash.js +10 -0
  204. package/dist/src/icons/VideoSlash.js.map +1 -0
  205. package/dist/src/icons/index.d.ts +19 -0
  206. package/dist/src/icons/index.js +36 -0
  207. package/dist/src/icons/index.js.map +1 -0
  208. package/dist/src/providers/MediaDevices.d.ts +9 -0
  209. package/dist/src/providers/MediaDevices.js +43 -0
  210. package/dist/src/providers/MediaDevices.js.map +1 -0
  211. package/dist/src/providers/StreamCall.d.ts +81 -0
  212. package/dist/src/providers/StreamCall.js +74 -0
  213. package/dist/src/providers/StreamCall.js.map +1 -0
  214. package/dist/src/providers/StreamVideo.d.ts +10 -0
  215. package/dist/src/providers/StreamVideo.js +66 -0
  216. package/dist/src/providers/StreamVideo.js.map +1 -0
  217. package/dist/src/providers/index.d.ts +2 -0
  218. package/dist/src/providers/index.js +19 -0
  219. package/dist/src/providers/index.js.map +1 -0
  220. package/dist/src/theme/avatar.d.ts +2 -0
  221. package/dist/src/theme/avatar.js +11 -0
  222. package/dist/src/theme/avatar.js.map +1 -0
  223. package/dist/src/theme/button.d.ts +2 -0
  224. package/dist/src/theme/button.js +11 -0
  225. package/dist/src/theme/button.js.map +1 -0
  226. package/dist/src/theme/colors.d.ts +3 -0
  227. package/dist/src/theme/colors.js +49 -0
  228. package/dist/src/theme/colors.js.map +1 -0
  229. package/dist/src/theme/constants.d.ts +47 -0
  230. package/dist/src/theme/constants.js +54 -0
  231. package/dist/src/theme/constants.js.map +1 -0
  232. package/dist/src/theme/fonts.d.ts +2 -0
  233. package/dist/src/theme/fonts.js +67 -0
  234. package/dist/src/theme/fonts.js.map +1 -0
  235. package/dist/src/theme/icon.d.ts +2 -0
  236. package/dist/src/theme/icon.js +11 -0
  237. package/dist/src/theme/icon.js.map +1 -0
  238. package/dist/src/theme/index.d.ts +2 -0
  239. package/dist/src/theme/index.js +26 -0
  240. package/dist/src/theme/index.js.map +1 -0
  241. package/dist/src/theme/margin.d.ts +2 -0
  242. package/dist/src/theme/margin.js +11 -0
  243. package/dist/src/theme/margin.js.map +1 -0
  244. package/dist/src/theme/padding.d.ts +2 -0
  245. package/dist/src/theme/padding.js +11 -0
  246. package/dist/src/theme/padding.js.map +1 -0
  247. package/dist/src/theme/rounded.d.ts +2 -0
  248. package/dist/src/theme/rounded.js +11 -0
  249. package/dist/src/theme/rounded.js.map +1 -0
  250. package/dist/src/theme/spacing.d.ts +2 -0
  251. package/dist/src/theme/spacing.js +11 -0
  252. package/dist/src/theme/spacing.js.map +1 -0
  253. package/dist/src/theme/types.d.ts +45 -0
  254. package/dist/src/theme/types.js +3 -0
  255. package/dist/src/theme/types.js.map +1 -0
  256. package/dist/src/utils/StreamVideoRN.d.ts +25 -0
  257. package/dist/src/utils/StreamVideoRN.js +23 -0
  258. package/dist/src/utils/StreamVideoRN.js.map +1 -0
  259. package/dist/src/utils/hooks/index.d.ts +3 -0
  260. package/dist/src/utils/hooks/index.js +20 -0
  261. package/dist/src/utils/hooks/index.js.map +1 -0
  262. package/dist/src/utils/hooks/useAppStateListener.d.ts +1 -0
  263. package/dist/src/utils/hooks/useAppStateListener.js +41 -0
  264. package/dist/src/utils/hooks/useAppStateListener.js.map +1 -0
  265. package/dist/src/utils/hooks/useDebouncedValue.d.ts +7 -0
  266. package/dist/src/utils/hooks/useDebouncedValue.js +22 -0
  267. package/dist/src/utils/hooks/useDebouncedValue.js.map +1 -0
  268. package/dist/src/utils/hooks/usePrevious.d.ts +1 -0
  269. package/dist/src/utils/hooks/usePrevious.js +13 -0
  270. package/dist/src/utils/hooks/usePrevious.js.map +1 -0
  271. package/dist/src/utils/index.d.ts +5 -0
  272. package/dist/src/utils/index.js +53 -0
  273. package/dist/src/utils/index.js.map +1 -0
  274. package/dist/src/utils/verifyAndroidBluetoothPermissions.d.ts +1 -0
  275. package/dist/src/utils/verifyAndroidBluetoothPermissions.js +30 -0
  276. package/dist/src/utils/verifyAndroidBluetoothPermissions.js.map +1 -0
  277. package/index.ts +22 -0
  278. package/package.json +70 -0
  279. package/src/components/ActiveCall.tsx +122 -0
  280. package/src/components/Avatar.tsx +88 -0
  281. package/src/components/CallControlsButton.tsx +72 -0
  282. package/src/components/CallControlsView.tsx +128 -0
  283. package/src/components/CallParticipantsBadge.tsx +57 -0
  284. package/src/components/CallParticipantsInfoView.tsx +287 -0
  285. package/src/components/CallParticipantsList.tsx +172 -0
  286. package/src/components/CallParticipantsOptions.tsx +248 -0
  287. package/src/components/CallParticipantsSpotlightView.tsx +53 -0
  288. package/src/components/CallParticipantsView.tsx +30 -0
  289. package/src/components/IncomingCallView.tsx +133 -0
  290. package/src/components/LobbyView.tsx +236 -0
  291. package/src/components/LocalVideoView.tsx +141 -0
  292. package/src/components/NetworkQualityIndicator.tsx +72 -0
  293. package/src/components/OutgoingCallView.tsx +133 -0
  294. package/src/components/ParticipantReaction.tsx +59 -0
  295. package/src/components/ParticipantView.tsx +315 -0
  296. package/src/components/ReactionsModal.tsx +90 -0
  297. package/src/components/ToggleAudioButton.tsx +103 -0
  298. package/src/components/ToggleVideoButton.tsx +103 -0
  299. package/src/components/UserInfoView.tsx +118 -0
  300. package/src/components/VideoRenderer.tsx +85 -0
  301. package/src/components/index.ts +12 -0
  302. package/src/constants/A11yLabels.ts +24 -0
  303. package/src/constants/index.ts +28 -0
  304. package/src/contexts/StreamVideoContext/createStoreContext.tsx +117 -0
  305. package/src/contexts/StreamVideoContext/index.tsx +37 -0
  306. package/src/contexts/index.ts +1 -0
  307. package/src/hooks/index.ts +10 -0
  308. package/src/hooks/useCallControls.tsx +186 -0
  309. package/src/hooks/useCallCycleEffect.tsx +68 -0
  310. package/src/hooks/useCallKeep.tsx +51 -0
  311. package/src/hooks/useCreateStreamVideoClient.tsx +77 -0
  312. package/src/hooks/useIncallManager.tsx +23 -0
  313. package/src/hooks/useLocalVideoStream.ts +36 -0
  314. package/src/hooks/useMutingState.ts +24 -0
  315. package/src/hooks/usePermissionNotification.tsx +53 -0
  316. package/src/hooks/usePermissionRequest.tsx +67 -0
  317. package/src/hooks/usePublishMediaStreams.ts +59 -0
  318. package/src/icons/ArrowRight.tsx +16 -0
  319. package/src/icons/CameraSwitch.tsx +14 -0
  320. package/src/icons/Chat.tsx +14 -0
  321. package/src/icons/Cross.tsx +14 -0
  322. package/src/icons/Mic.tsx +18 -0
  323. package/src/icons/MicOff.tsx +14 -0
  324. package/src/icons/Participants.tsx +16 -0
  325. package/src/icons/Phone.tsx +14 -0
  326. package/src/icons/PhoneDown.tsx +15 -0
  327. package/src/icons/Pin.tsx +16 -0
  328. package/src/icons/Reaction.tsx +14 -0
  329. package/src/icons/ScreenShare.tsx +32 -0
  330. package/src/icons/Settings.tsx +13 -0
  331. package/src/icons/Spotlight.tsx +16 -0
  332. package/src/icons/ThreeDots.tsx +13 -0
  333. package/src/icons/Video.tsx +14 -0
  334. package/src/icons/VideoDisabled.tsx +22 -0
  335. package/src/icons/VideoOff.tsx +20 -0
  336. package/src/icons/VideoSlash.tsx +15 -0
  337. package/src/icons/index.tsx +19 -0
  338. package/src/providers/MediaDevices.tsx +45 -0
  339. package/src/providers/StreamCall.tsx +136 -0
  340. package/src/providers/StreamVideo.tsx +50 -0
  341. package/src/providers/index.ts +2 -0
  342. package/src/theme/avatar.ts +9 -0
  343. package/src/theme/button.ts +9 -0
  344. package/src/theme/colors.ts +49 -0
  345. package/src/theme/constants.ts +51 -0
  346. package/src/theme/fonts.ts +65 -0
  347. package/src/theme/icon.ts +9 -0
  348. package/src/theme/index.ts +25 -0
  349. package/src/theme/margin.ts +9 -0
  350. package/src/theme/padding.ts +9 -0
  351. package/src/theme/rounded.ts +9 -0
  352. package/src/theme/spacing.ts +9 -0
  353. package/src/theme/types.ts +64 -0
  354. package/src/utils/StreamVideoRN.ts +35 -0
  355. package/src/utils/hooks/index.ts +3 -0
  356. package/src/utils/hooks/useAppStateListener.ts +48 -0
  357. package/src/utils/hooks/useDebouncedValue.ts +21 -0
  358. package/src/utils/hooks/usePrevious.ts +11 -0
  359. package/src/utils/index.ts +45 -0
  360. package/src/utils/verifyAndroidBluetoothPermissions.ts +31 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,739 @@
1
+ # Changelog
2
+
3
+ This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
+
5
+ ## [0.0.1-alpha.141](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.140...@stream-io/video-react-native-sdk-0.0.1-alpha.141) (2023-06-09)
6
+
7
+
8
+ ### Features
9
+
10
+ * upgrade to latest rn webrtc (111) ([#545](https://github.com/GetStream/stream-video-js/issues/545)) ([f7b89c1](https://github.com/GetStream/stream-video-js/commit/f7b89c1b22bdac3b42233ecc703be65a129b43f0))
11
+ * **react-native:** support reconnection flow ([#458](https://github.com/GetStream/stream-video-js/issues/458)) ([89f2dda](https://github.com/GetStream/stream-video-js/commit/89f2ddafd1397d91f8ddea5a3c69dd62ae027313))
12
+
13
+
14
+
15
+ ## [0.0.1-alpha.140](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.139...@stream-io/video-react-native-sdk-0.0.1-alpha.140) (2023-06-09)
16
+
17
+
18
+
19
+ ## [0.0.1-alpha.139](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.138...@stream-io/video-react-native-sdk-0.0.1-alpha.139) (2023-06-08)
20
+
21
+
22
+
23
+ ## [0.0.1-alpha.138](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.137...@stream-io/video-react-native-sdk-0.0.1-alpha.138) (2023-06-08)
24
+
25
+
26
+
27
+ ## [0.0.1-alpha.137](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.136...@stream-io/video-react-native-sdk-0.0.1-alpha.137) (2023-06-08)
28
+
29
+
30
+
31
+ ## [0.0.1-alpha.136](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.135...@stream-io/video-react-native-sdk-0.0.1-alpha.136) (2023-06-08)
32
+
33
+
34
+
35
+ ## [0.0.1-alpha.135](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.134...@stream-io/video-react-native-sdk-0.0.1-alpha.135) (2023-06-08)
36
+
37
+
38
+
39
+ ## [0.0.1-alpha.134](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.133...@stream-io/video-react-native-sdk-0.0.1-alpha.134) (2023-06-08)
40
+
41
+
42
+ ### Features
43
+
44
+ * StreamCall signature, video client creation ([#596](https://github.com/GetStream/stream-video-js/issues/596)) ([5c3000c](https://github.com/GetStream/stream-video-js/commit/5c3000cc6fc3f8b7904609d7b11fa025b7458cad))
45
+
46
+
47
+
48
+ ## [0.0.1-alpha.133](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.132...@stream-io/video-react-native-sdk-0.0.1-alpha.133) (2023-06-07)
49
+
50
+
51
+
52
+ ## [0.0.1-alpha.132](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.131...@stream-io/video-react-native-sdk-0.0.1-alpha.132) (2023-06-07)
53
+
54
+
55
+
56
+ ## [0.0.1-alpha.131](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.130...@stream-io/video-react-native-sdk-0.0.1-alpha.131) (2023-06-07)
57
+
58
+
59
+ ### Bug Fixes
60
+
61
+ * **react-native:** revive call flow in dogfood app ([#604](https://github.com/GetStream/stream-video-js/issues/604)) ([83b1c7e](https://github.com/GetStream/stream-video-js/commit/83b1c7e63f9746ca23f1d17f61495726dd5a7ffb))
62
+
63
+
64
+
65
+ ## [0.0.1-alpha.130](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.129...@stream-io/video-react-native-sdk-0.0.1-alpha.130) (2023-06-07)
66
+
67
+
68
+
69
+ ## [0.0.1-alpha.129](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.128...@stream-io/video-react-native-sdk-0.0.1-alpha.129) (2023-06-07)
70
+
71
+
72
+ ### Features
73
+
74
+ * **react-native:** revive call flow in react native call starter kit ([#599](https://github.com/GetStream/stream-video-js/issues/599)) ([8b769d3](https://github.com/GetStream/stream-video-js/commit/8b769d36f7fb5806d50dca0be9880a246f69a0df))
75
+
76
+
77
+
78
+ ## [0.0.1-alpha.128](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.127...@stream-io/video-react-native-sdk-0.0.1-alpha.128) (2023-06-06)
79
+
80
+
81
+
82
+ ## [0.0.1-alpha.127](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.126...@stream-io/video-react-native-sdk-0.0.1-alpha.127) (2023-06-06)
83
+
84
+
85
+ ### Bug Fixes
86
+
87
+ * **react-native:** Don't get video if device id is undefined ([#602](https://github.com/GetStream/stream-video-js/issues/602)) ([a15540e](https://github.com/GetStream/stream-video-js/commit/a15540edc52a364d6dbd92f85e3382c084cc72e1))
88
+
89
+
90
+
91
+ ## [0.0.1-alpha.126](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.125...@stream-io/video-react-native-sdk-0.0.1-alpha.126) (2023-06-06)
92
+
93
+
94
+ ### Bug Fixes
95
+
96
+ * **react-native:** anr in lobby view due to constantly leaving the call ([#601](https://github.com/GetStream/stream-video-js/issues/601)) ([4a6d87b](https://github.com/GetStream/stream-video-js/commit/4a6d87b2df03595d3c0ed74fc0206efead32daa3))
97
+
98
+
99
+ ### Features
100
+
101
+ * test harness rn ([#555](https://github.com/GetStream/stream-video-js/issues/555)) ([0de2255](https://github.com/GetStream/stream-video-js/commit/0de2255f9cb0e3475421f4d5093e2d77b31a825e))
102
+
103
+
104
+
105
+ ## [0.0.1-alpha.125](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.124...@stream-io/video-react-native-sdk-0.0.1-alpha.125) (2023-06-06)
106
+
107
+
108
+
109
+ ## [0.0.1-alpha.124](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.123...@stream-io/video-react-native-sdk-0.0.1-alpha.124) (2023-06-06)
110
+
111
+
112
+
113
+ ## [0.0.1-alpha.123](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.122...@stream-io/video-react-native-sdk-0.0.1-alpha.123) (2023-06-06)
114
+
115
+
116
+ ### Features
117
+
118
+ * **react-native:** introduce connectionQuality indicator and participant label truncation improvement ([#573](https://github.com/GetStream/stream-video-js/issues/573)) ([c0d8829](https://github.com/GetStream/stream-video-js/commit/c0d88295e51365309c756f36cc4ac5278b7f4799))
119
+
120
+
121
+
122
+ ## [0.0.1-alpha.122](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.121...@stream-io/video-react-native-sdk-0.0.1-alpha.122) (2023-06-06)
123
+
124
+
125
+
126
+ ## [0.0.1-alpha.121](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.120...@stream-io/video-react-native-sdk-0.0.1-alpha.121) (2023-06-06)
127
+
128
+
129
+ ### Bug Fixes
130
+
131
+ * **react-native:** ui issues in participant info view and options modal ([#593](https://github.com/GetStream/stream-video-js/issues/593)) ([c2b7c91](https://github.com/GetStream/stream-video-js/commit/c2b7c91059fa2ff79b5f3308f4f6d5696bc4841a))
132
+
133
+
134
+
135
+ ## [0.0.1-alpha.120](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.119...@stream-io/video-react-native-sdk-0.0.1-alpha.120) (2023-06-06)
136
+
137
+
138
+
139
+ ## [0.0.1-alpha.119](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.118...@stream-io/video-react-native-sdk-0.0.1-alpha.119) (2023-06-05)
140
+
141
+
142
+
143
+ ## [0.0.1-alpha.118](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.117...@stream-io/video-react-native-sdk-0.0.1-alpha.118) (2023-06-05)
144
+
145
+
146
+
147
+ ## [0.0.1-alpha.117](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.116...@stream-io/video-react-native-sdk-0.0.1-alpha.117) (2023-06-02)
148
+
149
+
150
+
151
+ ## [0.0.1-alpha.116](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.115...@stream-io/video-react-native-sdk-0.0.1-alpha.116) (2023-06-02)
152
+
153
+
154
+
155
+ ## [0.0.1-alpha.115](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.114...@stream-io/video-react-native-sdk-0.0.1-alpha.115) (2023-06-02)
156
+
157
+
158
+
159
+ ## [0.0.1-alpha.114](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.113...@stream-io/video-react-native-sdk-0.0.1-alpha.114) (2023-06-02)
160
+
161
+
162
+
163
+ ## [0.0.1-alpha.113](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.112...@stream-io/video-react-native-sdk-0.0.1-alpha.113) (2023-06-02)
164
+
165
+
166
+
167
+ ## [0.0.1-alpha.112](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.111...@stream-io/video-react-native-sdk-0.0.1-alpha.112) (2023-06-02)
168
+
169
+
170
+
171
+ ## [0.0.1-alpha.111](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.110...@stream-io/video-react-native-sdk-0.0.1-alpha.111) (2023-06-02)
172
+
173
+
174
+
175
+ ## [0.0.1-alpha.110](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.109...@stream-io/video-react-native-sdk-0.0.1-alpha.110) (2023-06-02)
176
+
177
+
178
+
179
+ ## [0.0.1-alpha.109](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.108...@stream-io/video-react-native-sdk-0.0.1-alpha.109) (2023-06-02)
180
+
181
+
182
+
183
+ ## [0.0.1-alpha.108](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.107...@stream-io/video-react-native-sdk-0.0.1-alpha.108) (2023-06-02)
184
+
185
+
186
+
187
+ ## [0.0.1-alpha.107](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.106...@stream-io/video-react-native-sdk-0.0.1-alpha.107) (2023-06-01)
188
+
189
+
190
+
191
+ ## [0.0.1-alpha.106](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.105...@stream-io/video-react-native-sdk-0.0.1-alpha.106) (2023-06-01)
192
+
193
+
194
+
195
+ ## [0.0.1-alpha.105](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.104...@stream-io/video-react-native-sdk-0.0.1-alpha.105) (2023-06-01)
196
+
197
+
198
+
199
+ ## [0.0.1-alpha.104](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.103...@stream-io/video-react-native-sdk-0.0.1-alpha.104) (2023-06-01)
200
+
201
+
202
+
203
+ ## [0.0.1-alpha.103](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.102...@stream-io/video-react-native-sdk-0.0.1-alpha.103) (2023-05-31)
204
+
205
+
206
+
207
+ ## [0.0.1-alpha.102](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.101...@stream-io/video-react-native-sdk-0.0.1-alpha.102) (2023-05-31)
208
+
209
+
210
+
211
+ ## [0.0.1-alpha.101](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.100...@stream-io/video-react-native-sdk-0.0.1-alpha.101) (2023-05-31)
212
+
213
+
214
+
215
+ ## [0.0.1-alpha.100](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.99...@stream-io/video-react-native-sdk-0.0.1-alpha.100) (2023-05-31)
216
+
217
+
218
+
219
+ ## [0.0.1-alpha.99](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.98...@stream-io/video-react-native-sdk-0.0.1-alpha.99) (2023-05-31)
220
+
221
+
222
+
223
+ ## [0.0.1-alpha.98](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.97...@stream-io/video-react-native-sdk-0.0.1-alpha.98) (2023-05-31)
224
+
225
+
226
+
227
+ ## [0.0.1-alpha.97](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.96...@stream-io/video-react-native-sdk-0.0.1-alpha.97) (2023-05-31)
228
+
229
+
230
+
231
+ ## [0.0.1-alpha.96](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.95...@stream-io/video-react-native-sdk-0.0.1-alpha.96) (2023-05-30)
232
+
233
+
234
+
235
+ ## [0.0.1-alpha.95](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.94...@stream-io/video-react-native-sdk-0.0.1-alpha.95) (2023-05-30)
236
+
237
+
238
+
239
+ ## [0.0.1-alpha.94](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.93...@stream-io/video-react-native-sdk-0.0.1-alpha.94) (2023-05-30)
240
+
241
+
242
+
243
+ ## [0.0.1-alpha.93](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.92...@stream-io/video-react-native-sdk-0.0.1-alpha.93) (2023-05-30)
244
+
245
+
246
+
247
+ ## [0.0.1-alpha.92](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.91...@stream-io/video-react-native-sdk-0.0.1-alpha.92) (2023-05-30)
248
+
249
+
250
+
251
+ ## [0.0.1-alpha.91](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.90...@stream-io/video-react-native-sdk-0.0.1-alpha.91) (2023-05-30)
252
+
253
+
254
+
255
+ ## [0.0.1-alpha.90](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.89...@stream-io/video-react-native-sdk-0.0.1-alpha.90) (2023-05-30)
256
+
257
+
258
+
259
+ ## [0.0.1-alpha.89](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.88...@stream-io/video-react-native-sdk-0.0.1-alpha.89) (2023-05-27)
260
+
261
+
262
+
263
+ ## [0.0.1-alpha.88](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.87...@stream-io/video-react-native-sdk-0.0.1-alpha.88) (2023-05-27)
264
+
265
+
266
+
267
+ ## [0.0.1-alpha.87](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.86...@stream-io/video-react-native-sdk-0.0.1-alpha.87) (2023-05-27)
268
+
269
+
270
+
271
+ ## [0.0.1-alpha.86](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.85...@stream-io/video-react-native-sdk-0.0.1-alpha.86) (2023-05-26)
272
+
273
+
274
+
275
+ ## [0.0.1-alpha.85](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.84...@stream-io/video-react-native-sdk-0.0.1-alpha.85) (2023-05-26)
276
+
277
+
278
+
279
+ ## [0.0.1-alpha.84](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.83...@stream-io/video-react-native-sdk-0.0.1-alpha.84) (2023-05-26)
280
+
281
+
282
+
283
+ ## [0.0.1-alpha.83](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.82...@stream-io/video-react-native-sdk-0.0.1-alpha.83) (2023-05-26)
284
+
285
+
286
+
287
+ ## [0.0.1-alpha.82](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.81...@stream-io/video-react-native-sdk-0.0.1-alpha.82) (2023-05-26)
288
+
289
+
290
+ ### Features
291
+
292
+ * **react-native:** guest and anonymous login and refactoring of the dogfooding app ([#530](https://github.com/GetStream/stream-video-js/issues/530)) ([55d45c7](https://github.com/GetStream/stream-video-js/commit/55d45c7be86693f19c1017cfa116c6250f99b134))
293
+
294
+
295
+
296
+ ## [0.0.1-alpha.81](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.80...@stream-io/video-react-native-sdk-0.0.1-alpha.81) (2023-05-26)
297
+
298
+
299
+
300
+ ## [0.0.1-alpha.80](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.79...@stream-io/video-react-native-sdk-0.0.1-alpha.80) (2023-05-26)
301
+
302
+
303
+
304
+ ## [0.0.1-alpha.79](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.78...@stream-io/video-react-native-sdk-0.0.1-alpha.79) (2023-05-26)
305
+
306
+
307
+
308
+ ## [0.0.1-alpha.78](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.77...@stream-io/video-react-native-sdk-0.0.1-alpha.78) (2023-05-25)
309
+
310
+
311
+
312
+ ## [0.0.1-alpha.77](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.76...@stream-io/video-react-native-sdk-0.0.1-alpha.77) (2023-05-25)
313
+
314
+
315
+
316
+ ## [0.0.1-alpha.76](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.75...@stream-io/video-react-native-sdk-0.0.1-alpha.76) (2023-05-25)
317
+
318
+
319
+
320
+ ## [0.0.1-alpha.75](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.74...@stream-io/video-react-native-sdk-0.0.1-alpha.75) (2023-05-25)
321
+
322
+
323
+
324
+ ## [0.0.1-alpha.74](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.73...@stream-io/video-react-native-sdk-0.0.1-alpha.74) (2023-05-25)
325
+
326
+
327
+
328
+ ## [0.0.1-alpha.73](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.72...@stream-io/video-react-native-sdk-0.0.1-alpha.73) (2023-05-25)
329
+
330
+
331
+
332
+ ## [0.0.1-alpha.72](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.71...@stream-io/video-react-native-sdk-0.0.1-alpha.72) (2023-05-25)
333
+
334
+
335
+
336
+ ## [0.0.1-alpha.71](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.70...@stream-io/video-react-native-sdk-0.0.1-alpha.71) (2023-05-25)
337
+
338
+
339
+ ### Bug Fixes
340
+
341
+ * remove media devices context to fix unnecessary rerenders ([#547](https://github.com/GetStream/stream-video-js/issues/547)) ([fa81417](https://github.com/GetStream/stream-video-js/commit/fa81417df742ed2798a210d0243dd1bf5e6d5afa))
342
+
343
+
344
+
345
+ ## [0.0.1-alpha.70](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.69...@stream-io/video-react-native-sdk-0.0.1-alpha.70) (2023-05-25)
346
+
347
+
348
+
349
+ ## [0.0.1-alpha.69](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.68...@stream-io/video-react-native-sdk-0.0.1-alpha.69) (2023-05-24)
350
+
351
+
352
+
353
+ ## [0.0.1-alpha.68](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.67...@stream-io/video-react-native-sdk-0.0.1-alpha.68) (2023-05-24)
354
+
355
+
356
+
357
+ ## [0.0.1-alpha.67](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.66...@stream-io/video-react-native-sdk-0.0.1-alpha.67) (2023-05-24)
358
+
359
+
360
+
361
+ ## [0.0.1-alpha.66](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.65...@stream-io/video-react-native-sdk-0.0.1-alpha.66) (2023-05-23)
362
+
363
+
364
+
365
+ ## [0.0.1-alpha.65](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.64...@stream-io/video-react-native-sdk-0.0.1-alpha.65) (2023-05-23)
366
+
367
+
368
+
369
+ ## [0.0.1-alpha.64](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.63...@stream-io/video-react-native-sdk-0.0.1-alpha.64) (2023-05-23)
370
+
371
+
372
+
373
+ ## [0.0.1-alpha.63](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.62...@stream-io/video-react-native-sdk-0.0.1-alpha.63) (2023-05-23)
374
+
375
+
376
+
377
+ ## [0.0.1-alpha.62](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.61...@stream-io/video-react-native-sdk-0.0.1-alpha.62) (2023-05-23)
378
+
379
+
380
+
381
+ ## [0.0.1-alpha.61](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.60...@stream-io/video-react-native-sdk-0.0.1-alpha.61) (2023-05-23)
382
+
383
+
384
+ ### Features
385
+
386
+ * floating local video view is draggable ([#525](https://github.com/GetStream/stream-video-js/issues/525)) ([7823220](https://github.com/GetStream/stream-video-js/commit/78232203c7fcec1ddd5770fc66f05fb5ce17338f))
387
+
388
+
389
+
390
+ ## [0.0.1-alpha.60](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.59...@stream-io/video-react-native-sdk-0.0.1-alpha.60) (2023-05-22)
391
+
392
+
393
+
394
+ ## [0.0.1-alpha.59](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.58...@stream-io/video-react-native-sdk-0.0.1-alpha.59) (2023-05-22)
395
+
396
+
397
+
398
+ ## [0.0.1-alpha.58](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.57...@stream-io/video-react-native-sdk-0.0.1-alpha.58) (2023-05-22)
399
+
400
+
401
+
402
+ ## [0.0.1-alpha.57](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.56...@stream-io/video-react-native-sdk-0.0.1-alpha.57) (2023-05-22)
403
+
404
+
405
+
406
+ ## [0.0.1-alpha.56](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.55...@stream-io/video-react-native-sdk-0.0.1-alpha.56) (2023-05-22)
407
+
408
+
409
+
410
+ ## [0.0.1-alpha.55](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.54...@stream-io/video-react-native-sdk-0.0.1-alpha.55) (2023-05-22)
411
+
412
+
413
+ ### Features
414
+
415
+ * **react-native:** add permissions support ([#445](https://github.com/GetStream/stream-video-js/issues/445)) ([e077aeb](https://github.com/GetStream/stream-video-js/commit/e077aeba95e42abaf0e5e3c1d58b344507ec52e2))
416
+
417
+
418
+
419
+ ## [0.0.1-alpha.54](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.53...@stream-io/video-react-native-sdk-0.0.1-alpha.54) (2023-05-19)
420
+
421
+
422
+
423
+ ## [0.0.1-alpha.53](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.52...@stream-io/video-react-native-sdk-0.0.1-alpha.53) (2023-05-19)
424
+
425
+
426
+
427
+ ## [0.0.1-alpha.52](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.51...@stream-io/video-react-native-sdk-0.0.1-alpha.52) (2023-05-19)
428
+
429
+
430
+
431
+ ## [0.0.1-alpha.51](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.50...@stream-io/video-react-native-sdk-0.0.1-alpha.51) (2023-05-19)
432
+
433
+
434
+
435
+ ## [0.0.1-alpha.50](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.49...@stream-io/video-react-native-sdk-0.0.1-alpha.50) (2023-05-19)
436
+
437
+
438
+
439
+ ## [0.0.1-alpha.49](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.48...@stream-io/video-react-native-sdk-0.0.1-alpha.49) (2023-05-19)
440
+
441
+
442
+
443
+ ## [0.0.1-alpha.48](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.47...@stream-io/video-react-native-sdk-0.0.1-alpha.48) (2023-05-18)
444
+
445
+
446
+
447
+ ## [0.0.1-alpha.47](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.46...@stream-io/video-react-native-sdk-0.0.1-alpha.47) (2023-05-18)
448
+
449
+
450
+
451
+ ## [0.0.1-alpha.46](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.45...@stream-io/video-react-native-sdk-0.0.1-alpha.46) (2023-05-18)
452
+
453
+
454
+
455
+ ## [0.0.1-alpha.45](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.44...@stream-io/video-react-native-sdk-0.0.1-alpha.45) (2023-05-17)
456
+
457
+
458
+
459
+ ## [0.0.1-alpha.44](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.43...@stream-io/video-react-native-sdk-0.0.1-alpha.44) (2023-05-17)
460
+
461
+
462
+
463
+ ## [0.0.1-alpha.43](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.42...@stream-io/video-react-native-sdk-0.0.1-alpha.43) (2023-05-17)
464
+
465
+
466
+
467
+ ## [0.0.1-alpha.42](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.41...@stream-io/video-react-native-sdk-0.0.1-alpha.42) (2023-05-17)
468
+
469
+
470
+
471
+ ## [0.0.1-alpha.41](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.40...@stream-io/video-react-native-sdk-0.0.1-alpha.41) (2023-05-17)
472
+
473
+
474
+ ### Features
475
+
476
+ * **react-native:** add reactions support ([#440](https://github.com/GetStream/stream-video-js/issues/440)) ([353a9c9](https://github.com/GetStream/stream-video-js/commit/353a9c99d8b954267191f44168cb21a6490a3eeb))
477
+
478
+
479
+
480
+ ## [0.0.1-alpha.40](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.39...@stream-io/video-react-native-sdk-0.0.1-alpha.40) (2023-05-17)
481
+
482
+
483
+
484
+ ## [0.0.1-alpha.39](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.38...@stream-io/video-react-native-sdk-0.0.1-alpha.39) (2023-05-16)
485
+
486
+
487
+
488
+ ## [0.0.1-alpha.38](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.37...@stream-io/video-react-native-sdk-0.0.1-alpha.38) (2023-05-16)
489
+
490
+
491
+
492
+ ## [0.0.1-alpha.37](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.36...@stream-io/video-react-native-sdk-0.0.1-alpha.37) (2023-05-16)
493
+
494
+
495
+
496
+ ## [0.0.1-alpha.36](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.35...@stream-io/video-react-native-sdk-0.0.1-alpha.36) (2023-05-16)
497
+
498
+
499
+
500
+ ## [0.0.1-alpha.35](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.34...@stream-io/video-react-native-sdk-0.0.1-alpha.35) (2023-05-16)
501
+
502
+
503
+
504
+ ## [0.0.1-alpha.34](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.33...@stream-io/video-react-native-sdk-0.0.1-alpha.34) (2023-05-16)
505
+
506
+
507
+
508
+ ## [0.0.1-alpha.33](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.32...@stream-io/video-react-native-sdk-0.0.1-alpha.33) (2023-05-16)
509
+
510
+
511
+
512
+ ## [0.0.1-alpha.32](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.31...@stream-io/video-react-native-sdk-0.0.1-alpha.32) (2023-05-16)
513
+
514
+
515
+
516
+ ## [0.0.1-alpha.31](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.30...@stream-io/video-react-native-sdk-0.0.1-alpha.31) (2023-05-16)
517
+
518
+
519
+
520
+ ## [0.0.1-alpha.30](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.29...@stream-io/video-react-native-sdk-0.0.1-alpha.30) (2023-05-15)
521
+
522
+
523
+
524
+ ## [0.0.1-alpha.29](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.28...@stream-io/video-react-native-sdk-0.0.1-alpha.29) (2023-05-15)
525
+
526
+
527
+
528
+ ## [0.0.1-alpha.28](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.27...@stream-io/video-react-native-sdk-0.0.1-alpha.28) (2023-05-15)
529
+
530
+
531
+
532
+ ## [0.0.1-alpha.27](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.26...@stream-io/video-react-native-sdk-0.0.1-alpha.27) (2023-05-15)
533
+
534
+
535
+
536
+ ## [0.0.1-alpha.26](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.25...@stream-io/video-react-native-sdk-0.0.1-alpha.26) (2023-05-15)
537
+
538
+
539
+
540
+ ## [0.0.1-alpha.25](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.24...@stream-io/video-react-native-sdk-0.0.1-alpha.25) (2023-05-12)
541
+
542
+
543
+
544
+ ## [0.0.1-alpha.24](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.23...@stream-io/video-react-native-sdk-0.0.1-alpha.24) (2023-05-12)
545
+
546
+
547
+ ### Features
548
+
549
+ * Livestream sample app ([#489](https://github.com/GetStream/stream-video-js/issues/489)) ([bf6e6e5](https://github.com/GetStream/stream-video-js/commit/bf6e6e54dab884828ca08208f25b1285cf3f1944))
550
+
551
+
552
+
553
+ ## [0.0.1-alpha.23](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.22...@stream-io/video-react-native-sdk-0.0.1-alpha.23) (2023-05-12)
554
+
555
+
556
+ ### Bug Fixes
557
+
558
+ * in call manager bluetooth state patch for android ([#474](https://github.com/GetStream/stream-video-js/issues/474)) ([9b1d4bb](https://github.com/GetStream/stream-video-js/commit/9b1d4bbf740e172b2bbfc22e8cb95f4db29436b1))
559
+
560
+
561
+ ### Features
562
+
563
+ * enable codec preferring through sdp munging ([#395](https://github.com/GetStream/stream-video-js/issues/395)) ([a5db5a8](https://github.com/GetStream/stream-video-js/commit/a5db5a831ccfc833ecfc29e22540be0f0121287d))
564
+
565
+
566
+
567
+ ## [0.0.1-alpha.22](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.21...@stream-io/video-react-native-sdk-0.0.1-alpha.22) (2023-05-11)
568
+
569
+
570
+
571
+ ## [0.0.1-alpha.21](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.20...@stream-io/video-react-native-sdk-0.0.1-alpha.21) (2023-05-11)
572
+
573
+
574
+
575
+ ## [0.0.1-alpha.20](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.19...@stream-io/video-react-native-sdk-0.0.1-alpha.20) (2023-05-11)
576
+
577
+
578
+
579
+ ## [0.0.1-alpha.19](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.18...@stream-io/video-react-native-sdk-0.0.1-alpha.19) (2023-05-10)
580
+
581
+
582
+
583
+ ## [0.0.1-alpha.18](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.17...@stream-io/video-react-native-sdk-0.0.1-alpha.18) (2023-05-10)
584
+
585
+
586
+
587
+ ## [0.0.1-alpha.17](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.16...@stream-io/video-react-native-sdk-0.0.1-alpha.17) (2023-05-09)
588
+
589
+
590
+ ### Reverts
591
+
592
+ * Revert "chore: Avoid non-atomic pushes resulting in invalid version tags" ([24be283](https://github.com/GetStream/stream-video-js/commit/24be28300a5f5d452338457d60b1e34682027be6))
593
+
594
+
595
+
596
+ ## [0.0.1-alpha.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.15...@stream-io/video-react-native-sdk-0.0.1-alpha.16) (2023-05-09)
597
+
598
+
599
+
600
+ ## [0.0.1-alpha.16](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.15...@stream-io/video-react-native-sdk-0.0.1-alpha.16) (2023-05-08)
601
+
602
+
603
+
604
+ ## [0.0.1-alpha.15](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.14...@stream-io/video-react-native-sdk-0.0.1-alpha.15) (2023-05-08)
605
+
606
+
607
+
608
+ ## [0.0.1-alpha.14](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.13...@stream-io/video-react-native-sdk-0.0.1-alpha.14) (2023-05-08)
609
+
610
+
611
+
612
+ ## [0.0.1-alpha.13](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.12...@stream-io/video-react-native-sdk-0.0.1-alpha.13) (2023-05-07)
613
+
614
+
615
+
616
+ ## [0.0.1-alpha.12](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.11...@stream-io/video-react-native-sdk-0.0.1-alpha.12) (2023-05-07)
617
+
618
+
619
+
620
+ ## [0.0.1-alpha.11](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.10...@stream-io/video-react-native-sdk-0.0.1-alpha.11) (2023-05-07)
621
+
622
+
623
+
624
+ ## [0.0.1-alpha.10](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.9...@stream-io/video-react-native-sdk-0.0.1-alpha.10) (2023-05-07)
625
+
626
+
627
+
628
+ ## [0.0.1-alpha.9](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.8...@stream-io/video-react-native-sdk-0.0.1-alpha.9) (2023-05-07)
629
+
630
+
631
+
632
+ ## [0.0.1-alpha.8](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.7...@stream-io/video-react-native-sdk-0.0.1-alpha.8) (2023-05-07)
633
+
634
+
635
+
636
+ ## [0.0.1-alpha.7](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.6...@stream-io/video-react-native-sdk-0.0.1-alpha.7) (2023-05-05)
637
+
638
+
639
+
640
+ ## [0.0.1-alpha.6](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.5...@stream-io/video-react-native-sdk-0.0.1-alpha.6) (2023-05-05)
641
+
642
+
643
+
644
+ ## [0.0.1-alpha.5](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.4...@stream-io/video-react-native-sdk-0.0.1-alpha.5) (2023-05-05)
645
+
646
+
647
+
648
+ ## [0.0.1-alpha.4](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.3...@stream-io/video-react-native-sdk-0.0.1-alpha.4) (2023-05-05)
649
+
650
+
651
+ ### Features
652
+
653
+ * **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))
654
+
655
+
656
+
657
+ ## [0.0.1-alpha.3](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.2...@stream-io/video-react-native-sdk-0.0.1-alpha.3) (2023-05-04)
658
+
659
+
660
+
661
+ ## [0.0.1-alpha.2](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.1...@stream-io/video-react-native-sdk-0.0.1-alpha.2) (2023-05-04)
662
+
663
+
664
+
665
+ ## [0.0.1-alpha.1](https://github.com/GetStream/stream-video-js/compare/@stream-io/video-react-native-sdk-0.0.1-alpha.0...@stream-io/video-react-native-sdk-0.0.1-alpha.1) (2023-05-04)
666
+
667
+
668
+
669
+ ## 0.0.1-alpha.0 (2023-05-04)
670
+
671
+
672
+ ### Bug Fixes
673
+
674
+ * 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))
675
+ * blank screen bug due to "jsx": "react-jsxdev" (changed to "react-native") in tsconfig.json ([ba42d17](https://github.com/GetStream/stream-video-js/commit/ba42d17e0b380240f8b9cca7864d5452bb6c6591))
676
+ * broken docusaurus push ([#120](https://github.com/GetStream/stream-video-js/issues/120)) ([898328c](https://github.com/GetStream/stream-video-js/commit/898328c79a3433f8e7bbae8235abf2fbf749c530))
677
+ * call controls flow for meeting post new SFU changes ([#131](https://github.com/GetStream/stream-video-js/issues/131)) ([8bc47c0](https://github.com/GetStream/stream-video-js/commit/8bc47c08deda34f751b5c5b5136ba7f839eee133))
678
+ * 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))
679
+ * initial and unneeded onHangupCall ([#265](https://github.com/GetStream/stream-video-js/issues/265)) ([fa2592e](https://github.com/GetStream/stream-video-js/commit/fa2592e4514206fcf4e7b2b9ed37ed488d440f29))
680
+ * initial lazy loading and viewable item changes quirks were fixed ([91e33e9](https://github.com/GetStream/stream-video-js/commit/91e33e90f8848627f73578774752bd672b11fd60))
681
+ * only use container width to simplify the layout state ([ad70012](https://github.com/GetStream/stream-video-js/commit/ad70012ddfa30f62fa54bbe66025b967fae3cf70))
682
+ * **react-native-sdk:** useDebouncedValue import ([#439](https://github.com/GetStream/stream-video-js/issues/439)) ([5169b25](https://github.com/GetStream/stream-video-js/commit/5169b2518fa02b0246502f994ce257a893d9e49e))
683
+ * **react-native:** camera switch issue on certain android devices which used Camera1Enumerator ([#169](https://github.com/GetStream/stream-video-js/issues/169)) ([66ff202](https://github.com/GetStream/stream-video-js/commit/66ff2029f6ee9b538eb7404723d86ef38d26239d))
684
+ * **react-native:** copy call keep options type for exporting ([1b0426b](https://github.com/GetStream/stream-video-js/commit/1b0426b8ea900a6112a802197de6b3d27ba71b29))
685
+ * **react-native:** import of callkeep types was still present on context ([6ff84c1](https://github.com/GetStream/stream-video-js/commit/6ff84c1b7aa3ca4f065047d6cadd09f42bee20cf))
686
+ * **react-native:** improve incallmanager usage and fix no audio through bluetooth when connected ([#360](https://github.com/GetStream/stream-video-js/issues/360)) ([5afba0c](https://github.com/GetStream/stream-video-js/commit/5afba0cbef96b8e2a0d4f9192a163817059637ce))
687
+ * **react-native:** missing import in callscreen ([0646e79](https://github.com/GetStream/stream-video-js/commit/0646e790851010836e509a4325d143c543d11354))
688
+ * **react-native:** remove callkeep setup in hooks ([253db28](https://github.com/GetStream/stream-video-js/commit/253db2841938aba3ba75ec446895095f09da726e))
689
+ * **react-native:** remove isSpeaking blue border from ParticipantView while screen sharing ([#284](https://github.com/GetStream/stream-video-js/issues/284)) ([bda7b32](https://github.com/GetStream/stream-video-js/commit/bda7b32106e5b60f2dd483ff8db872cf03e622a6))
690
+ * set front camera only on initial device ([705782d](https://github.com/GetStream/stream-video-js/commit/705782d6599b1c393bee2b8085bfd52db673e443))
691
+ * Sonar reported bugs ([#184](https://github.com/GetStream/stream-video-js/issues/184)) ([5befd2f](https://github.com/GetStream/stream-video-js/commit/5befd2f2f946c18791360d6b32278370ac061093))
692
+ * storing members of call in pendingcalls and usage in RN SDK ([#294](https://github.com/GetStream/stream-video-js/issues/294)) ([424f109](https://github.com/GetStream/stream-video-js/commit/424f109844429f1a74b904ea6441e04492821486))
693
+ * styling quirks ([e296f78](https://github.com/GetStream/stream-video-js/commit/e296f7804dbdc155f8dfc77817e41b3626ceaf9f))
694
+ * 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))
695
+ * wrong status of audio and video muted on CallParticipantsInfoView ([54bd869](https://github.com/GetStream/stream-video-js/commit/54bd8698dc052d05798781ed70d94af7e52f9e14))
696
+
697
+
698
+ ### Features
699
+
700
+ * add i18n ([#434](https://github.com/GetStream/stream-video-js/issues/434)) ([f3e2f2a](https://github.com/GetStream/stream-video-js/commit/f3e2f2a7d591287d88ac99728b480127401fa50b))
701
+ * add ParticipantsInfoView component to RN SDK ([#151](https://github.com/GetStream/stream-video-js/issues/151)) ([2d5eb6c](https://github.com/GetStream/stream-video-js/commit/2d5eb6ce950ad32a14c484c27425ecbdac2f7156))
702
+ * add react bindings to react native SDK ([#93](https://github.com/GetStream/stream-video-js/issues/93)) ([56881ae](https://github.com/GetStream/stream-video-js/commit/56881ae1b2061e271d05aec3fc69100e94ff3368))
703
+ * added ActiveCall view to the React Native SDK ([#125](https://github.com/GetStream/stream-video-js/issues/125)) ([5c9931a](https://github.com/GetStream/stream-video-js/commit/5c9931aed4d937bca80311f88ec530eabf32ae64))
704
+ * added CallControlsView for React Native SDK ([#111](https://github.com/GetStream/stream-video-js/issues/111)) ([376f4da](https://github.com/GetStream/stream-video-js/commit/376f4da3c17f1c29f075942e4e2fce4b9bc24b29))
705
+ * added Incoming and Outgoing Call View to React Native SDK ([#104](https://github.com/GetStream/stream-video-js/issues/104)) ([7aba5dc](https://github.com/GetStream/stream-video-js/commit/7aba5dcdae24f8e64d79def1fc865fce579c0e9f))
706
+ * added react native call starter kit ([#154](https://github.com/GetStream/stream-video-js/issues/154)) ([f2868c8](https://github.com/GetStream/stream-video-js/commit/f2868c89eed4acbfcc4708feb3decd19946a193f))
707
+ * **client:** remove client config ([#353](https://github.com/GetStream/stream-video-js/issues/353)) ([2105922](https://github.com/GetStream/stream-video-js/commit/21059226809511bdb278c61631b9fd90f806a6c0))
708
+ * Direct State Access API ([#369](https://github.com/GetStream/stream-video-js/issues/369)) ([2a0e172](https://github.com/GetStream/stream-video-js/commit/2a0e17218de9a7f397e46897f2359c4a18e1d8f2))
709
+ * improve react native docs ([#130](https://github.com/GetStream/stream-video-js/issues/130)) ([f42c9db](https://github.com/GetStream/stream-video-js/commit/f42c9db27853bf512621340a814b04e31e940baf))
710
+ * 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))
711
+ * makes call-keep dep. optional ([#175](https://github.com/GetStream/stream-video-js/issues/175)) ([63163ec](https://github.com/GetStream/stream-video-js/commit/63163ec511bcc5318db29c6d7f09504688e43c8f))
712
+ * 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))
713
+ * react native dogfood app addition ([#26](https://github.com/GetStream/stream-video-js/issues/26)) ([b4daa12](https://github.com/GetStream/stream-video-js/commit/b4daa12af7568151ab1c966586d09bfe0fdd5f36))
714
+ * **react-native:** add call lobby UI component in the RN SDK ([#224](https://github.com/GetStream/stream-video-js/issues/224)) ([e55140b](https://github.com/GetStream/stream-video-js/commit/e55140b653d28bc1226f9f09964d70276a393488))
715
+ * **react-native:** add default sorting mechanism ([#403](https://github.com/GetStream/stream-video-js/issues/403)) ([5a8a948](https://github.com/GetStream/stream-video-js/commit/5a8a94804eb7052d79dc3296884911a450ce209c))
716
+ * **react-native:** add docusaurus support ([#116](https://github.com/GetStream/stream-video-js/issues/116)) ([47d9718](https://github.com/GetStream/stream-video-js/commit/47d971833ecd9f16f803d23cf7135824548e380e))
717
+ * **react-native:** add new call config changes to React Native SDK ([#252](https://github.com/GetStream/stream-video-js/issues/252)) ([94d5dc6](https://github.com/GetStream/stream-video-js/commit/94d5dc6d0e4e90aab2d1738f4d861a5dad53c279)), closes [#259](https://github.com/GetStream/stream-video-js/issues/259)
718
+ * **react-native:** add participants view to SDK ([#89](https://github.com/GetStream/stream-video-js/issues/89)) ([865d7b3](https://github.com/GetStream/stream-video-js/commit/865d7b35b5497a3285e164b6744eff2696aa296a)), closes [/github.com/GetStream/stream-video-js/pull/89#discussion_r1032940856](https://github.com//github.com/GetStream/stream-video-js/pull/89/issues/discussion_r1032940856)
719
+ * **react-native:** add portrait screen sharing track ([#176](https://github.com/GetStream/stream-video-js/issues/176)) ([f9a5143](https://github.com/GetStream/stream-video-js/commit/f9a5143acebcbfafb4f7bb99b20e3c7dba2a947f))
720
+ * **react-native:** added meeting starter kit application and tutorial ([#243](https://github.com/GetStream/stream-video-js/issues/243)) ([9226daa](https://github.com/GetStream/stream-video-js/commit/9226daaba28202f6b14e850f6251029ccb83fe8e))
721
+ * **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)
722
+ * **react-native:** font, avatar, icon, margin, padding, button, spacing globalization ([#289](https://github.com/GetStream/stream-video-js/issues/289)) ([4b4c179](https://github.com/GetStream/stream-video-js/commit/4b4c179646f38f21650877de540578862cd6e946)), closes [#279](https://github.com/GetStream/stream-video-js/issues/279)
723
+ * **react-native:** init push notification documentation ([#295](https://github.com/GetStream/stream-video-js/issues/295)) ([8bcc360](https://github.com/GetStream/stream-video-js/commit/8bcc3607fd2f397c26f6320c2d3cc644ea66fc91))
724
+ * **react-native:** keep call alive in the background ([#386](https://github.com/GetStream/stream-video-js/issues/386)) ([606fe12](https://github.com/GetStream/stream-video-js/commit/606fe124461973f69c62921aa2ccab7d445f67d4))
725
+ * **react-native:** switch off video for participants outside of the viewport ([#324](https://github.com/GetStream/stream-video-js/issues/324)) ([f2f936c](https://github.com/GetStream/stream-video-js/commit/f2f936ce49ab3599a5803347622c864b0f42df0d))
726
+ * **react-native:** upgrade webrtc lib to 106.0.1 ([6ddc94c](https://github.com/GetStream/stream-video-js/commit/6ddc94c3c4202f05d2f9ee0ba28e5efc2c93f888))
727
+ * **react-native:** use color from theme ([#279](https://github.com/GetStream/stream-video-js/issues/279)) ([8caa7ba](https://github.com/GetStream/stream-video-js/commit/8caa7ba851424bc1bad1529bffc8b9142797d230))
728
+ * 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))
729
+ * RN sdk and RN sample app initial config ([#81](https://github.com/GetStream/stream-video-js/issues/81)) ([401e32a](https://github.com/GetStream/stream-video-js/commit/401e32a8aefb52ae579ff12a94ce4097900ee0b5))
730
+ * 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))
731
+ * show local participant in the first position in the ParticipantView ([#183](https://github.com/GetStream/stream-video-js/issues/183)) ([2a372ce](https://github.com/GetStream/stream-video-js/commit/2a372cee07fdd9bd9e8b1996b82d09840cd39eff))
732
+ * 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))
733
+ * 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))
734
+ * switch off video for participants outside of the viewport ([33801c4](https://github.com/GetStream/stream-video-js/commit/33801c468dc77a244abbbd4963f93d66abd7bc49))
735
+ * 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))
736
+ * updating par. sub. when video is disabled ([b8d242d](https://github.com/GetStream/stream-video-js/commit/b8d242ddd9209d053ee1613b03265657a1b1b4e0))
737
+ * user data (image, name...) ([#253](https://github.com/GetStream/stream-video-js/issues/253)) ([37078ec](https://github.com/GetStream/stream-video-js/commit/37078ec4323cac06cc62ae0e37bcc49bc0148d0b))
738
+ * user data enriching ([#150](https://github.com/GetStream/stream-video-js/issues/150)) ([1bd1796](https://github.com/GetStream/stream-video-js/commit/1bd17960dadc241bc749a66745e821812c7fdd56))
739
+ * Video Coordinator API transition ([#221](https://github.com/GetStream/stream-video-js/issues/221)) ([535f3c5](https://github.com/GetStream/stream-video-js/commit/535f3c57c57c7e43bf7fa59323598782a4a563ad))