@sendbird/uikit-react 3.14.9 → 3.14.10-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (809) hide show
  1. package/App.js +75 -75
  2. package/CHANGELOG.md +5 -0
  3. package/Channel/components/ChannelHeader.js +31 -31
  4. package/Channel/components/ChannelUI.js +64 -64
  5. package/Channel/components/FileViewer.js +31 -31
  6. package/Channel/components/FrozenNotification.js +6 -6
  7. package/Channel/components/Message.js +54 -54
  8. package/Channel/components/MessageInput.js +43 -43
  9. package/Channel/components/MessageInputWrapper.js +43 -43
  10. package/Channel/components/MessageList.js +57 -57
  11. package/Channel/components/RemoveMessageModal.js +30 -30
  12. package/Channel/components/SuggestedMentionList.js +28 -28
  13. package/Channel/components/TypingIndicator.js +6 -6
  14. package/Channel/components/UnreadCount.js +8 -8
  15. package/Channel/context.js +20 -20
  16. package/Channel/hooks/useHandleUploadFiles.js +17 -17
  17. package/Channel/hooks/useInitialMessagesFetch.js +6 -6
  18. package/Channel/utils/compareMessagesForGrouping.js +6 -6
  19. package/Channel/utils/getMessagePartsInfo.js +7 -7
  20. package/Channel.js +64 -64
  21. package/ChannelList/components/AddChannel.js +23 -23
  22. package/ChannelList/components/ChannelListHeader.js +10 -10
  23. package/ChannelList/components/ChannelListUI.js +37 -37
  24. package/ChannelList/components/ChannelPreview.js +30 -30
  25. package/ChannelList/components/ChannelPreviewAction.js +15 -15
  26. package/ChannelList/context.js +11 -11
  27. package/ChannelList.js +37 -37
  28. package/ChannelSettings/components/ChannelProfile.js +20 -20
  29. package/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
  30. package/ChannelSettings/components/ChannelSettingsUI.js +25 -25
  31. package/ChannelSettings/components/EditDetailsModal.js +20 -20
  32. package/ChannelSettings/components/LeaveChannel.js +17 -17
  33. package/ChannelSettings/components/ModerationPanel.js +23 -23
  34. package/ChannelSettings/components/UserListItem.js +15 -15
  35. package/ChannelSettings/components/UserPanel.js +23 -23
  36. package/ChannelSettings/context.js +3 -3
  37. package/ChannelSettings.js +25 -25
  38. package/CreateChannel/components/CreateChannelUI.js +20 -20
  39. package/CreateChannel/components/InviteUsers.js +20 -20
  40. package/CreateChannel/components/SelectChannelType.js +17 -17
  41. package/CreateChannel/context.js +4 -4
  42. package/CreateChannel.js +20 -20
  43. package/CreateOpenChannel/components/CreateOpenChannelUI.js +18 -18
  44. package/CreateOpenChannel/context.js +1 -1
  45. package/CreateOpenChannel.js +18 -18
  46. package/EditUserProfile/components/EditUserProfileUI.js +19 -19
  47. package/EditUserProfile/context.js +1 -1
  48. package/EditUserProfile.js +19 -19
  49. package/GroupChannel/components/FileViewer.js +25 -25
  50. package/GroupChannel/components/FrozenNotification.js +6 -6
  51. package/GroupChannel/components/GroupChannelHeader.js +21 -21
  52. package/GroupChannel/components/GroupChannelUI.js +57 -57
  53. package/GroupChannel/components/Message.js +49 -49
  54. package/GroupChannel/components/MessageInputWrapper.js +38 -38
  55. package/GroupChannel/components/MessageList.js +50 -50
  56. package/GroupChannel/components/RemoveMessageModal.js +24 -24
  57. package/GroupChannel/components/SuggestedMentionList.js +12 -12
  58. package/GroupChannel/components/TypingIndicator.js +6 -6
  59. package/GroupChannel/components/UnreadCount.js +8 -8
  60. package/GroupChannel/context.js +9 -9
  61. package/GroupChannel.js +57 -57
  62. package/GroupChannelList/components/AddGroupChannel.js +22 -22
  63. package/GroupChannelList/components/GroupChannelListHeader.js +10 -10
  64. package/GroupChannelList/components/GroupChannelListItem.js +28 -28
  65. package/GroupChannelList/components/GroupChannelListUI.js +36 -36
  66. package/GroupChannelList/components/GroupChannelPreviewAction.js +15 -15
  67. package/GroupChannelList/context.js +5 -5
  68. package/GroupChannelList.js +36 -36
  69. package/MessageSearch/components/MessageSearchUI.js +15 -15
  70. package/MessageSearch/context.js +1 -1
  71. package/MessageSearch.js +17 -17
  72. package/OpenChannel/components/FrozenChannelNotification.js +5 -5
  73. package/OpenChannel/components/OpenChannelHeader.js +22 -22
  74. package/OpenChannel/components/OpenChannelInput.js +28 -28
  75. package/OpenChannel/components/OpenChannelMessage.js +37 -37
  76. package/OpenChannel/components/OpenChannelMessageList.js +41 -41
  77. package/OpenChannel/components/OpenChannelUI.js +41 -41
  78. package/OpenChannel/context.js +21 -21
  79. package/OpenChannel.js +41 -41
  80. package/OpenChannelList/components/OpenChannelListUI.js +20 -20
  81. package/OpenChannelList/components/OpenChannelPreview.js +6 -6
  82. package/OpenChannelList/context.js +3 -3
  83. package/OpenChannelList.js +20 -20
  84. package/OpenChannelSettings/components/EditDetailsModal.js +21 -21
  85. package/OpenChannelSettings/components/OpenChannelProfile.js +21 -21
  86. package/OpenChannelSettings/components/OpenChannelSettingsUI.js +22 -22
  87. package/OpenChannelSettings/components/OperatorUI.js +22 -22
  88. package/OpenChannelSettings/components/ParticipantUI.js +20 -20
  89. package/OpenChannelSettings/context.js +3 -3
  90. package/OpenChannelSettings.js +22 -22
  91. package/SendbirdProvider.js +20 -22
  92. package/SendbirdProvider.js.map +1 -1
  93. package/Thread/components/ParentMessageInfo.js +44 -44
  94. package/Thread/components/ParentMessageInfoItem.js +30 -30
  95. package/Thread/components/ThreadHeader.js +8 -8
  96. package/Thread/components/ThreadList.js +48 -48
  97. package/Thread/components/ThreadListItem.js +48 -48
  98. package/Thread/components/ThreadMessageInput.js +43 -43
  99. package/Thread/components/ThreadUI.js +55 -55
  100. package/Thread/context.js +9 -9
  101. package/Thread.js +55 -55
  102. package/VoicePlayer/context.js +4 -4
  103. package/VoicePlayer/useVoicePlayer.js +15 -15
  104. package/VoiceRecorder/context.js +15 -15
  105. package/VoiceRecorder/useVoiceRecorder.js +15 -15
  106. package/chunks/{bundle-DpUmO1Mq.js → bundle-3rbgyUFf.js} +1 -1
  107. package/chunks/bundle-3rbgyUFf.js.map +1 -0
  108. package/chunks/{bundle-Bmg_SNU1.js → bundle-6c1kf582.js} +1 -1
  109. package/chunks/bundle-6c1kf582.js.map +1 -0
  110. package/chunks/{bundle-ChgFZ-AQ.js → bundle-7aYnlE9g.js} +2 -2
  111. package/chunks/{bundle-ChgFZ-AQ.js.map → bundle-7aYnlE9g.js.map} +1 -1
  112. package/chunks/{bundle-BOBvShj7.js → bundle-B2jN9S8f.js} +1 -1
  113. package/chunks/bundle-B2jN9S8f.js.map +1 -0
  114. package/chunks/{bundle-PcZf3aTk.js → bundle-B8TpflN6.js} +6 -6
  115. package/chunks/bundle-B8TpflN6.js.map +1 -0
  116. package/chunks/{bundle-DuJ-B-ZT.js → bundle-B8xX1Uqv.js} +1 -1
  117. package/chunks/bundle-B8xX1Uqv.js.map +1 -0
  118. package/chunks/{bundle-CvQV9eyL.js → bundle-B9jaULeT.js} +1 -1
  119. package/chunks/bundle-B9jaULeT.js.map +1 -0
  120. package/chunks/{bundle-DwMfxOmy.js → bundle-BDRmRmBl.js} +1 -1
  121. package/chunks/bundle-BDRmRmBl.js.map +1 -0
  122. package/chunks/{bundle-D9jGjVt-.js → bundle-BEj59fUG.js} +4 -4
  123. package/chunks/{bundle-D9jGjVt-.js.map → bundle-BEj59fUG.js.map} +1 -1
  124. package/chunks/{bundle-CT69B1kW.js → bundle-BJ4QFKK7.js} +2 -2
  125. package/chunks/{bundle-CT69B1kW.js.map → bundle-BJ4QFKK7.js.map} +1 -1
  126. package/chunks/{bundle-Bb9hzsLY.js → bundle-BJuiDRhf.js} +1 -1
  127. package/chunks/bundle-BJuiDRhf.js.map +1 -0
  128. package/chunks/{bundle-C3Su8pbw.js → bundle-BJw3IA-I.js} +3 -3
  129. package/chunks/{bundle-C3Su8pbw.js.map → bundle-BJw3IA-I.js.map} +1 -1
  130. package/chunks/{bundle-Cz8H5Op_.js → bundle-BJytW_4B.js} +13 -13
  131. package/chunks/{bundle-Cz8H5Op_.js.map → bundle-BJytW_4B.js.map} +1 -1
  132. package/chunks/{bundle-D8uYbr-P.js → bundle-BMIlxeLF.js} +1 -1
  133. package/chunks/bundle-BMIlxeLF.js.map +1 -0
  134. package/chunks/{bundle-B5sad6LQ.js → bundle-BN9hrgMv.js} +2 -2
  135. package/chunks/bundle-BN9hrgMv.js.map +1 -0
  136. package/chunks/{bundle-atvPYPBf.js → bundle-BNSIBEFq.js} +11 -11
  137. package/chunks/{bundle-atvPYPBf.js.map → bundle-BNSIBEFq.js.map} +1 -1
  138. package/chunks/{bundle-DFeu3PLu.js → bundle-BOBvB-6E.js} +1 -1
  139. package/chunks/{bundle-DFeu3PLu.js.map → bundle-BOBvB-6E.js.map} +1 -1
  140. package/chunks/{bundle-hrN1SZ_Z.js → bundle-BPHZWcCv.js} +1 -1
  141. package/chunks/bundle-BPHZWcCv.js.map +1 -0
  142. package/chunks/{bundle-9PpKWOoL.js → bundle-BU88BWC9.js} +1 -1
  143. package/chunks/bundle-BU88BWC9.js.map +1 -0
  144. package/chunks/{bundle-HheIudro.js → bundle-BdSPinDs.js} +11 -11
  145. package/chunks/{bundle-HheIudro.js.map → bundle-BdSPinDs.js.map} +1 -1
  146. package/chunks/{bundle-bVEG7YOP.js → bundle-Bg_q4-JM.js} +2 -2
  147. package/chunks/bundle-Bg_q4-JM.js.map +1 -0
  148. package/chunks/{bundle-CHbs8B1_.js → bundle-BkXs4vmC.js} +1 -1
  149. package/chunks/bundle-BkXs4vmC.js.map +1 -0
  150. package/chunks/{bundle-BCDYwF2y.js → bundle-BnTQqt6n.js} +2 -2
  151. package/chunks/{bundle-BCDYwF2y.js.map → bundle-BnTQqt6n.js.map} +1 -1
  152. package/chunks/{bundle-BBpoyOJS.js → bundle-BpOEDk4N.js} +1 -1
  153. package/chunks/bundle-BpOEDk4N.js.map +1 -0
  154. package/chunks/{bundle-dRVFykvq.js → bundle-Bt0C-BFZ.js} +4 -4
  155. package/chunks/{bundle-dRVFykvq.js.map → bundle-Bt0C-BFZ.js.map} +1 -1
  156. package/chunks/{bundle-D2GBxmuh.js → bundle-BxHNvmlk.js} +8 -8
  157. package/chunks/{bundle-D2GBxmuh.js.map → bundle-BxHNvmlk.js.map} +1 -1
  158. package/chunks/{bundle-BHKxRZez.js → bundle-ByOz6UaI.js} +1 -1
  159. package/chunks/bundle-ByOz6UaI.js.map +1 -0
  160. package/chunks/{bundle-DNSTH1vf.js → bundle-C0OqoVhE.js} +6 -6
  161. package/chunks/bundle-C0OqoVhE.js.map +1 -0
  162. package/chunks/{bundle-C6Uejzft.js → bundle-C5TWIrbF.js} +1 -1
  163. package/chunks/bundle-C5TWIrbF.js.map +1 -0
  164. package/chunks/{bundle-BFCOE4_P.js → bundle-C7vkuHMJ.js} +12 -12
  165. package/chunks/{bundle-BFCOE4_P.js.map → bundle-C7vkuHMJ.js.map} +1 -1
  166. package/chunks/{bundle-CRRsbsT6.js → bundle-CCLbyHL5.js} +1 -1
  167. package/chunks/bundle-CCLbyHL5.js.map +1 -0
  168. package/chunks/{bundle-DMqUFkSM.js → bundle-CEQrkcG2.js} +10 -10
  169. package/chunks/bundle-CEQrkcG2.js.map +1 -0
  170. package/chunks/{bundle-j-10ix2k.js → bundle-CFVWrfBk.js} +1 -1
  171. package/chunks/bundle-CFVWrfBk.js.map +1 -0
  172. package/chunks/{bundle-C6yJQcQ5.js → bundle-CKHDZj3X.js} +4 -4
  173. package/chunks/bundle-CKHDZj3X.js.map +1 -0
  174. package/chunks/{bundle-B_7ai8FD.js → bundle-COi-bE-H.js} +1 -1
  175. package/chunks/{bundle-B_7ai8FD.js.map → bundle-COi-bE-H.js.map} +1 -1
  176. package/chunks/{bundle-BIlm8Es9.js → bundle-CVozsUjP.js} +5 -5
  177. package/chunks/{bundle-BIlm8Es9.js.map → bundle-CVozsUjP.js.map} +1 -1
  178. package/chunks/{bundle-lrWED2TX.js → bundle-CjpdKqHs.js} +2 -2
  179. package/chunks/bundle-CjpdKqHs.js.map +1 -0
  180. package/chunks/{bundle-DJs88q7W.js → bundle-CmkJzmJF.js} +1 -1
  181. package/chunks/{bundle-DJs88q7W.js.map → bundle-CmkJzmJF.js.map} +1 -1
  182. package/chunks/{bundle-DayugpLd.js → bundle-CoKBNINX.js} +2 -2
  183. package/chunks/bundle-CoKBNINX.js.map +1 -0
  184. package/chunks/{bundle-_3WGrX6M.js → bundle-CopNic9v.js} +1 -1
  185. package/chunks/bundle-CopNic9v.js.map +1 -0
  186. package/chunks/{bundle-NrxTT-RP.js → bundle-CorHVuoo.js} +3 -3
  187. package/chunks/{bundle-NrxTT-RP.js.map → bundle-CorHVuoo.js.map} +1 -1
  188. package/chunks/{bundle-IjPHxh5M.js → bundle-CpcYL8Ew.js} +3 -3
  189. package/chunks/bundle-CpcYL8Ew.js.map +1 -0
  190. package/chunks/{bundle-CXIUF-j1.js → bundle-Cyq2ZaJb.js} +1 -1
  191. package/chunks/bundle-Cyq2ZaJb.js.map +1 -0
  192. package/chunks/{bundle-CSFmhfxF.js → bundle-Cz3-2Iht.js} +5 -5
  193. package/{cjs/chunks/bundle-BVUM1pVl.js.map → chunks/bundle-Cz3-2Iht.js.map} +1 -1
  194. package/chunks/{bundle-0_H9lvpf.js → bundle-CzPQUoBY.js} +1 -1
  195. package/chunks/bundle-CzPQUoBY.js.map +1 -0
  196. package/chunks/{bundle-Cm5lAbEo.js → bundle-D62t4-mN.js} +9 -9
  197. package/chunks/{bundle-Cm5lAbEo.js.map → bundle-D62t4-mN.js.map} +1 -1
  198. package/chunks/{bundle-gMXiQdRH.js → bundle-D66A0jl2.js} +1 -1
  199. package/chunks/{bundle-gMXiQdRH.js.map → bundle-D66A0jl2.js.map} +1 -1
  200. package/chunks/{bundle-C0Ye9Nr7.js → bundle-D8ed5Px8.js} +1 -1
  201. package/chunks/bundle-D8ed5Px8.js.map +1 -0
  202. package/chunks/{bundle-SkrZLWkc.js → bundle-D97UcpIe.js} +1 -1
  203. package/chunks/bundle-D97UcpIe.js.map +1 -0
  204. package/chunks/{bundle-DpacE0FD.js → bundle-D9c1bxJQ.js} +11 -11
  205. package/chunks/{bundle-DpacE0FD.js.map → bundle-D9c1bxJQ.js.map} +1 -1
  206. package/chunks/{bundle-bydFJnVe.js → bundle-DDmvUZXC.js} +1 -1
  207. package/chunks/{bundle-bydFJnVe.js.map → bundle-DDmvUZXC.js.map} +1 -1
  208. package/chunks/{bundle-DeixUZhs.js → bundle-DEc9jVCz.js} +4 -4
  209. package/chunks/{bundle-DeixUZhs.js.map → bundle-DEc9jVCz.js.map} +1 -1
  210. package/chunks/{bundle-_Bh5w9NL.js → bundle-DEtCTxPD.js} +5 -5
  211. package/chunks/bundle-DEtCTxPD.js.map +1 -0
  212. package/chunks/{bundle-DAlnp9lF.js → bundle-DHttsGgb.js} +4 -4
  213. package/chunks/bundle-DHttsGgb.js.map +1 -0
  214. package/chunks/{bundle-D1RWUo4o.js → bundle-DI7rfz5k.js} +1 -1
  215. package/chunks/bundle-DI7rfz5k.js.map +1 -0
  216. package/chunks/{bundle-BW1heH8r.js → bundle-DJ5w4Eoe.js} +6 -6
  217. package/chunks/bundle-DJ5w4Eoe.js.map +1 -0
  218. package/chunks/{bundle-CWX597tJ.js → bundle-DOrP_yMR.js} +6 -6
  219. package/chunks/bundle-DOrP_yMR.js.map +1 -0
  220. package/chunks/{bundle-QA2AznoN.js → bundle-DT4DSBZo.js} +4 -4
  221. package/chunks/bundle-DT4DSBZo.js.map +1 -0
  222. package/chunks/{bundle-BukeovFR.js → bundle-DXfHdLu7.js} +1 -1
  223. package/chunks/bundle-DXfHdLu7.js.map +1 -0
  224. package/chunks/{bundle-CRs0ZyYd.js → bundle-DZdtzdKh.js} +1 -1
  225. package/chunks/bundle-DZdtzdKh.js.map +1 -0
  226. package/chunks/{bundle-0CUx7mAi.js → bundle-DZj625VH.js} +2 -2
  227. package/chunks/{bundle-0CUx7mAi.js.map → bundle-DZj625VH.js.map} +1 -1
  228. package/chunks/{bundle-DAhJtn85.js → bundle-DdIo_zFs.js} +1 -1
  229. package/chunks/bundle-DdIo_zFs.js.map +1 -0
  230. package/chunks/{bundle-NQPHGdv2.js → bundle-DhI4QWLh.js} +3 -3
  231. package/chunks/bundle-DhI4QWLh.js.map +1 -0
  232. package/chunks/{bundle-ChoBoUg2.js → bundle-DhiRvnEl.js} +3 -3
  233. package/chunks/bundle-DhiRvnEl.js.map +1 -0
  234. package/chunks/{bundle-Cll6FpAY.js → bundle-Dnuvu_jv.js} +5 -5
  235. package/{cjs/chunks/bundle-B_XQ1oTC.js.map → chunks/bundle-Dnuvu_jv.js.map} +1 -1
  236. package/chunks/{bundle-D6eHgF5n.js → bundle-DpdytzS4.js} +3 -3
  237. package/chunks/{bundle-D6eHgF5n.js.map → bundle-DpdytzS4.js.map} +1 -1
  238. package/chunks/{bundle-BZaNthXQ.js → bundle-DqRO_GUT.js} +2 -2
  239. package/chunks/bundle-DqRO_GUT.js.map +1 -0
  240. package/chunks/{bundle-Bu71sAcm.js → bundle-DtJdiuLe.js} +4 -4
  241. package/chunks/bundle-DtJdiuLe.js.map +1 -0
  242. package/chunks/{bundle-CGpUZMGo.js → bundle-LTG1RsSu.js} +1 -1
  243. package/chunks/bundle-LTG1RsSu.js.map +1 -0
  244. package/chunks/{bundle-DvK0GCH4.js → bundle-VXXJZkam.js} +4 -4
  245. package/chunks/{bundle-DvK0GCH4.js.map → bundle-VXXJZkam.js.map} +1 -1
  246. package/chunks/{bundle-Cyu8Xfnh.js → bundle-VnrHQwUf.js} +1 -1
  247. package/chunks/bundle-VnrHQwUf.js.map +1 -0
  248. package/chunks/{bundle-CMr-IO14.js → bundle-YkcGOzNM.js} +1 -1
  249. package/chunks/bundle-YkcGOzNM.js.map +1 -0
  250. package/chunks/{bundle-DLuyvuQm.js → bundle-daosOR23.js} +9 -9
  251. package/chunks/{bundle-DLuyvuQm.js.map → bundle-daosOR23.js.map} +1 -1
  252. package/chunks/{bundle-BqZPj8WV.js → bundle-p7o7XIwK.js} +2 -2
  253. package/chunks/{bundle-BqZPj8WV.js.map → bundle-p7o7XIwK.js.map} +1 -1
  254. package/chunks/{bundle-Q-tobrIb.js → bundle-pgzH1a0T.js} +3 -3
  255. package/chunks/bundle-pgzH1a0T.js.map +1 -0
  256. package/chunks/{bundle-C83jcIQ3.js → bundle-qeI43E3_.js} +1 -1
  257. package/chunks/bundle-qeI43E3_.js.map +1 -0
  258. package/chunks/{bundle-BYCZrlDX.js → bundle-uQmOP01H.js} +8 -8
  259. package/chunks/{bundle-BYCZrlDX.js.map → bundle-uQmOP01H.js.map} +1 -1
  260. package/chunks/{bundle-DQovOEGD.js → bundle-vrHvkBOt.js} +4 -4
  261. package/chunks/bundle-vrHvkBOt.js.map +1 -0
  262. package/chunks/{bundle-CQIK0GTo.js → bundle-wRih48eh.js} +7 -7
  263. package/chunks/{bundle-CQIK0GTo.js.map → bundle-wRih48eh.js.map} +1 -1
  264. package/chunks/{bundle-38h6y3Hb.js → bundle-wnzL460e.js} +1 -1
  265. package/chunks/bundle-wnzL460e.js.map +1 -0
  266. package/chunks/{bundle-fNoXpdvs.js → bundle-ySoO0NFU.js} +3 -3
  267. package/chunks/{bundle-fNoXpdvs.js.map → bundle-ySoO0NFU.js.map} +1 -1
  268. package/cjs/App.js +75 -75
  269. package/cjs/Channel/components/ChannelHeader.js +31 -31
  270. package/cjs/Channel/components/ChannelUI.js +64 -64
  271. package/cjs/Channel/components/FileViewer.js +31 -31
  272. package/cjs/Channel/components/FrozenNotification.js +6 -6
  273. package/cjs/Channel/components/Message.js +54 -54
  274. package/cjs/Channel/components/MessageInput.js +43 -43
  275. package/cjs/Channel/components/MessageInputWrapper.js +43 -43
  276. package/cjs/Channel/components/MessageList.js +57 -57
  277. package/cjs/Channel/components/RemoveMessageModal.js +30 -30
  278. package/cjs/Channel/components/SuggestedMentionList.js +28 -28
  279. package/cjs/Channel/components/TypingIndicator.js +6 -6
  280. package/cjs/Channel/components/UnreadCount.js +8 -8
  281. package/cjs/Channel/context.js +20 -20
  282. package/cjs/Channel/hooks/useHandleUploadFiles.js +17 -17
  283. package/cjs/Channel/hooks/useInitialMessagesFetch.js +6 -6
  284. package/cjs/Channel/utils/compareMessagesForGrouping.js +6 -6
  285. package/cjs/Channel/utils/getMessagePartsInfo.js +7 -7
  286. package/cjs/Channel.js +64 -64
  287. package/cjs/ChannelList/components/AddChannel.js +23 -23
  288. package/cjs/ChannelList/components/ChannelListHeader.js +10 -10
  289. package/cjs/ChannelList/components/ChannelListUI.js +37 -37
  290. package/cjs/ChannelList/components/ChannelPreview.js +30 -30
  291. package/cjs/ChannelList/components/ChannelPreviewAction.js +15 -15
  292. package/cjs/ChannelList/context.js +11 -11
  293. package/cjs/ChannelList.js +37 -37
  294. package/cjs/ChannelSettings/components/ChannelProfile.js +20 -20
  295. package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
  296. package/cjs/ChannelSettings/components/ChannelSettingsUI.js +25 -25
  297. package/cjs/ChannelSettings/components/EditDetailsModal.js +20 -20
  298. package/cjs/ChannelSettings/components/LeaveChannel.js +17 -17
  299. package/cjs/ChannelSettings/components/ModerationPanel.js +23 -23
  300. package/cjs/ChannelSettings/components/UserListItem.js +15 -15
  301. package/cjs/ChannelSettings/components/UserPanel.js +23 -23
  302. package/cjs/ChannelSettings/context.js +3 -3
  303. package/cjs/ChannelSettings.js +25 -25
  304. package/cjs/CreateChannel/components/CreateChannelUI.js +20 -20
  305. package/cjs/CreateChannel/components/InviteUsers.js +20 -20
  306. package/cjs/CreateChannel/components/SelectChannelType.js +17 -17
  307. package/cjs/CreateChannel/context.js +4 -4
  308. package/cjs/CreateChannel.js +20 -20
  309. package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +18 -18
  310. package/cjs/CreateOpenChannel/context.js +1 -1
  311. package/cjs/CreateOpenChannel.js +18 -18
  312. package/cjs/EditUserProfile/components/EditUserProfileUI.js +19 -19
  313. package/cjs/EditUserProfile/context.js +1 -1
  314. package/cjs/EditUserProfile.js +19 -19
  315. package/cjs/GroupChannel/components/FileViewer.js +25 -25
  316. package/cjs/GroupChannel/components/FrozenNotification.js +6 -6
  317. package/cjs/GroupChannel/components/GroupChannelHeader.js +21 -21
  318. package/cjs/GroupChannel/components/GroupChannelUI.js +57 -57
  319. package/cjs/GroupChannel/components/Message.js +49 -49
  320. package/cjs/GroupChannel/components/MessageInputWrapper.js +37 -37
  321. package/cjs/GroupChannel/components/MessageList.js +50 -50
  322. package/cjs/GroupChannel/components/RemoveMessageModal.js +24 -24
  323. package/cjs/GroupChannel/components/SuggestedMentionList.js +12 -12
  324. package/cjs/GroupChannel/components/TypingIndicator.js +6 -6
  325. package/cjs/GroupChannel/components/UnreadCount.js +8 -8
  326. package/cjs/GroupChannel/context.js +9 -9
  327. package/cjs/GroupChannel.js +57 -57
  328. package/cjs/GroupChannelList/components/AddGroupChannel.js +22 -22
  329. package/cjs/GroupChannelList/components/GroupChannelListHeader.js +10 -10
  330. package/cjs/GroupChannelList/components/GroupChannelListItem.js +28 -28
  331. package/cjs/GroupChannelList/components/GroupChannelListUI.js +36 -36
  332. package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +15 -15
  333. package/cjs/GroupChannelList/context.js +5 -5
  334. package/cjs/GroupChannelList.js +36 -36
  335. package/cjs/MessageSearch/components/MessageSearchUI.js +15 -15
  336. package/cjs/MessageSearch/context.js +1 -1
  337. package/cjs/MessageSearch.js +17 -17
  338. package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
  339. package/cjs/OpenChannel/components/OpenChannelHeader.js +22 -22
  340. package/cjs/OpenChannel/components/OpenChannelInput.js +28 -28
  341. package/cjs/OpenChannel/components/OpenChannelMessage.js +37 -37
  342. package/cjs/OpenChannel/components/OpenChannelMessageList.js +41 -41
  343. package/cjs/OpenChannel/components/OpenChannelUI.js +41 -41
  344. package/cjs/OpenChannel/context.js +21 -21
  345. package/cjs/OpenChannel.js +41 -41
  346. package/cjs/OpenChannelList/components/OpenChannelListUI.js +20 -20
  347. package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
  348. package/cjs/OpenChannelList/context.js +3 -3
  349. package/cjs/OpenChannelList.js +20 -20
  350. package/cjs/OpenChannelSettings/components/EditDetailsModal.js +21 -21
  351. package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +21 -21
  352. package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +22 -22
  353. package/cjs/OpenChannelSettings/components/OperatorUI.js +22 -22
  354. package/cjs/OpenChannelSettings/components/ParticipantUI.js +20 -20
  355. package/cjs/OpenChannelSettings/context.js +3 -3
  356. package/cjs/OpenChannelSettings.js +22 -22
  357. package/cjs/SendbirdProvider.js +20 -22
  358. package/cjs/SendbirdProvider.js.map +1 -1
  359. package/cjs/Thread/components/ParentMessageInfo.js +44 -44
  360. package/cjs/Thread/components/ParentMessageInfoItem.js +30 -30
  361. package/cjs/Thread/components/ThreadHeader.js +8 -8
  362. package/cjs/Thread/components/ThreadList.js +48 -48
  363. package/cjs/Thread/components/ThreadListItem.js +48 -48
  364. package/cjs/Thread/components/ThreadMessageInput.js +43 -43
  365. package/cjs/Thread/components/ThreadUI.js +55 -55
  366. package/cjs/Thread/context.js +9 -9
  367. package/cjs/Thread.js +55 -55
  368. package/cjs/VoicePlayer/context.js +4 -4
  369. package/cjs/VoicePlayer/useVoicePlayer.js +15 -15
  370. package/cjs/VoiceRecorder/context.js +15 -15
  371. package/cjs/VoiceRecorder/useVoiceRecorder.js +15 -15
  372. package/cjs/chunks/{bundle-CGKRIO3E.js → bundle-3hsE4l1Y.js} +9 -9
  373. package/cjs/chunks/{bundle-CGKRIO3E.js.map → bundle-3hsE4l1Y.js.map} +1 -1
  374. package/cjs/chunks/{bundle-CQUbTSJz.js → bundle-61s5Z4d7.js} +4 -4
  375. package/cjs/chunks/{bundle-CQUbTSJz.js.map → bundle-61s5Z4d7.js.map} +1 -1
  376. package/cjs/chunks/{bundle-xm5DS5Lz.js → bundle-8AeXVjXK.js} +1 -1
  377. package/cjs/chunks/bundle-8AeXVjXK.js.map +1 -0
  378. package/cjs/chunks/{bundle-DIv9aJRh.js → bundle-9xV-yjpP.js} +2 -2
  379. package/cjs/chunks/bundle-9xV-yjpP.js.map +1 -0
  380. package/cjs/chunks/{bundle-DmHD41pR.js → bundle-B1-PvXu0.js} +11 -11
  381. package/cjs/chunks/{bundle-DmHD41pR.js.map → bundle-B1-PvXu0.js.map} +1 -1
  382. package/cjs/chunks/{bundle-DFprgn2Q.js → bundle-B1C0IbXD.js} +2 -2
  383. package/cjs/chunks/bundle-B1C0IbXD.js.map +1 -0
  384. package/cjs/chunks/{bundle-ClDJ3S5P.js → bundle-B4ERFxve.js} +4 -4
  385. package/cjs/chunks/bundle-B4ERFxve.js.map +1 -0
  386. package/cjs/chunks/{bundle-BOSlF-PZ.js → bundle-B9Ws-dQ9.js} +3 -3
  387. package/cjs/chunks/bundle-B9Ws-dQ9.js.map +1 -0
  388. package/cjs/chunks/{bundle-Bf2oyXSB.js → bundle-BDK2QCjs.js} +1 -1
  389. package/cjs/chunks/bundle-BDK2QCjs.js.map +1 -0
  390. package/cjs/chunks/{bundle-B0Glft9d.js → bundle-BLMQTUu9.js} +3 -3
  391. package/cjs/chunks/bundle-BLMQTUu9.js.map +1 -0
  392. package/cjs/chunks/{bundle-C6i19O7d.js → bundle-BO6yBZb4.js} +1 -1
  393. package/cjs/chunks/bundle-BO6yBZb4.js.map +1 -0
  394. package/cjs/chunks/{bundle-F2zWPLQS.js → bundle-BW3lKCl2.js} +7 -7
  395. package/cjs/chunks/bundle-BW3lKCl2.js.map +1 -0
  396. package/cjs/chunks/{bundle-D3cOq1dq.js → bundle-BWgaoz_w.js} +1 -1
  397. package/cjs/chunks/bundle-BWgaoz_w.js.map +1 -0
  398. package/cjs/chunks/{bundle-BDXCaYsH.js → bundle-BZ_eywy9.js} +11 -11
  399. package/cjs/chunks/bundle-BZ_eywy9.js.map +1 -0
  400. package/cjs/chunks/{bundle-BViYuB4_.js → bundle-B_TBDUIo.js} +1 -1
  401. package/cjs/chunks/bundle-B_TBDUIo.js.map +1 -0
  402. package/cjs/chunks/{bundle-DL_1wm_B.js → bundle-Bd0RdeK2.js} +1 -1
  403. package/cjs/chunks/bundle-Bd0RdeK2.js.map +1 -0
  404. package/cjs/chunks/{bundle-D0PO_ruY.js → bundle-BdYPdaVo.js} +1 -1
  405. package/cjs/chunks/bundle-BdYPdaVo.js.map +1 -0
  406. package/cjs/chunks/{bundle-TvvKEQW4.js → bundle-Be48lLMX.js} +4 -4
  407. package/cjs/chunks/bundle-Be48lLMX.js.map +1 -0
  408. package/cjs/chunks/{bundle-BcP5dHcV.js → bundle-BfJXjRdq.js} +1 -1
  409. package/cjs/chunks/bundle-BfJXjRdq.js.map +1 -0
  410. package/cjs/chunks/{bundle-BO6YDwoz.js → bundle-BiLIbWF-.js} +6 -6
  411. package/cjs/chunks/bundle-BiLIbWF-.js.map +1 -0
  412. package/cjs/chunks/{bundle-V8KCClRo.js → bundle-BoW1OyHH.js} +1 -1
  413. package/cjs/chunks/bundle-BoW1OyHH.js.map +1 -0
  414. package/cjs/chunks/{bundle-C36iTYAj.js → bundle-BoiQCySB.js} +4 -4
  415. package/cjs/chunks/{bundle-C36iTYAj.js.map → bundle-BoiQCySB.js.map} +1 -1
  416. package/cjs/chunks/{bundle-C_2JLhCE.js → bundle-BrwM1NMi.js} +1 -1
  417. package/cjs/chunks/bundle-BrwM1NMi.js.map +1 -0
  418. package/cjs/chunks/{bundle-DQmSLtm5.js → bundle-Bt0wKNUe.js} +9 -9
  419. package/cjs/chunks/{bundle-DQmSLtm5.js.map → bundle-Bt0wKNUe.js.map} +1 -1
  420. package/cjs/chunks/{bundle-_LlcM4bL.js → bundle-Bwspr896.js} +1 -1
  421. package/cjs/chunks/bundle-Bwspr896.js.map +1 -0
  422. package/cjs/chunks/{bundle-DqxP8px7.js → bundle-By5uXdBg.js} +1 -1
  423. package/cjs/chunks/bundle-By5uXdBg.js.map +1 -0
  424. package/cjs/chunks/{bundle-BDQgAppO.js → bundle-BygoI0yo.js} +1 -1
  425. package/cjs/chunks/bundle-BygoI0yo.js.map +1 -0
  426. package/cjs/chunks/{bundle-DepUnCxt.js → bundle-C9XFSTYf.js} +1 -1
  427. package/cjs/chunks/bundle-C9XFSTYf.js.map +1 -0
  428. package/cjs/chunks/{bundle-BSVTay0K.js → bundle-CBRLDy3Y.js} +1 -1
  429. package/cjs/chunks/bundle-CBRLDy3Y.js.map +1 -0
  430. package/cjs/chunks/{bundle-ChCdSKNb.js → bundle-CD36CC-P.js} +5 -5
  431. package/cjs/chunks/{bundle-ChCdSKNb.js.map → bundle-CD36CC-P.js.map} +1 -1
  432. package/cjs/chunks/{bundle-kf6nqGaS.js → bundle-CLRPURXv.js} +1 -1
  433. package/cjs/chunks/bundle-CLRPURXv.js.map +1 -0
  434. package/cjs/chunks/{bundle-BqHow3gS.js → bundle-CMAUG_fU.js} +1 -1
  435. package/cjs/chunks/bundle-CMAUG_fU.js.map +1 -0
  436. package/cjs/chunks/{bundle-BVUM1pVl.js → bundle-CNLhvQ5S.js} +2 -2
  437. package/{chunks/bundle-CSFmhfxF.js.map → cjs/chunks/bundle-CNLhvQ5S.js.map} +1 -1
  438. package/cjs/chunks/{bundle-D4wKr-Pc.js → bundle-CPVkXy9s.js} +1 -1
  439. package/cjs/chunks/bundle-CPVkXy9s.js.map +1 -0
  440. package/cjs/chunks/{bundle-IcHoDMIo.js → bundle-CQYaB08i.js} +4 -4
  441. package/cjs/chunks/{bundle-IcHoDMIo.js.map → bundle-CQYaB08i.js.map} +1 -1
  442. package/cjs/chunks/{bundle-Bb9LqSHU.js → bundle-CTWNooAA.js} +2 -2
  443. package/cjs/chunks/bundle-CTWNooAA.js.map +1 -0
  444. package/cjs/chunks/{bundle-CYK5sjUD.js → bundle-CXlUscvX.js} +2 -2
  445. package/cjs/chunks/bundle-CXlUscvX.js.map +1 -0
  446. package/cjs/chunks/{bundle-CBw-w3Lx.js → bundle-Cbv_awE2.js} +1 -1
  447. package/cjs/chunks/{bundle-CBw-w3Lx.js.map → bundle-Cbv_awE2.js.map} +1 -1
  448. package/cjs/chunks/{bundle-DxII-H6S.js → bundle-ChVQ484N.js} +1 -1
  449. package/cjs/chunks/bundle-ChVQ484N.js.map +1 -0
  450. package/cjs/chunks/{bundle-DQcxvpWg.js → bundle-ClGYZFGc.js} +1 -1
  451. package/cjs/chunks/bundle-ClGYZFGc.js.map +1 -0
  452. package/cjs/chunks/{bundle-D0q5dAFj.js → bundle-CpVQAeGa.js} +2 -2
  453. package/cjs/chunks/bundle-CpVQAeGa.js.map +1 -0
  454. package/cjs/chunks/{bundle-3TlzRrfD.js → bundle-CvRdW9yw.js} +1 -1
  455. package/cjs/chunks/bundle-CvRdW9yw.js.map +1 -0
  456. package/cjs/chunks/{bundle-BxVcIlWI.js → bundle-CwrQm55R.js} +8 -8
  457. package/cjs/chunks/bundle-CwrQm55R.js.map +1 -0
  458. package/cjs/chunks/{bundle-C3kKDP3g.js → bundle-CyTIW0JZ.js} +1 -1
  459. package/cjs/chunks/bundle-CyTIW0JZ.js.map +1 -0
  460. package/cjs/chunks/{bundle-C7hLRvbU.js → bundle-D-0kNmde.js} +5 -5
  461. package/cjs/chunks/bundle-D-0kNmde.js.map +1 -0
  462. package/cjs/chunks/{bundle-B4-ARdO4.js → bundle-D-9WWmQ7.js} +4 -4
  463. package/cjs/chunks/bundle-D-9WWmQ7.js.map +1 -0
  464. package/cjs/chunks/{bundle-Bk7mbCoA.js → bundle-D45aVa7h.js} +6 -6
  465. package/cjs/chunks/bundle-D45aVa7h.js.map +1 -0
  466. package/cjs/chunks/{bundle-j9mK_OvN.js → bundle-D4LXRhUD.js} +2 -2
  467. package/cjs/chunks/{bundle-j9mK_OvN.js.map → bundle-D4LXRhUD.js.map} +1 -1
  468. package/cjs/chunks/{bundle-D4Pew2rQ.js → bundle-DDEP4rF3.js} +10 -10
  469. package/cjs/chunks/bundle-DDEP4rF3.js.map +1 -0
  470. package/cjs/chunks/{bundle-DAIvuBM5.js → bundle-DOqEHJ-4.js} +1 -1
  471. package/cjs/chunks/{bundle-DAIvuBM5.js.map → bundle-DOqEHJ-4.js.map} +1 -1
  472. package/cjs/chunks/{bundle-C0fpOgFd.js → bundle-DRlkodVP.js} +2 -2
  473. package/cjs/chunks/bundle-DRlkodVP.js.map +1 -0
  474. package/cjs/chunks/{bundle-D5h00Oig.js → bundle-DYfOAYVw.js} +4 -4
  475. package/cjs/chunks/bundle-DYfOAYVw.js.map +1 -0
  476. package/cjs/chunks/{bundle-CT3hIjDy.js → bundle-DaMfuE8O.js} +3 -3
  477. package/cjs/chunks/bundle-DaMfuE8O.js.map +1 -0
  478. package/cjs/chunks/{bundle-B9dZDOI5.js → bundle-DbH3qyAG.js} +1 -1
  479. package/cjs/chunks/{bundle-B9dZDOI5.js.map → bundle-DbH3qyAG.js.map} +1 -1
  480. package/cjs/chunks/{bundle-QeghHNoV.js → bundle-DeWZBEt-.js} +4 -4
  481. package/cjs/chunks/bundle-DeWZBEt-.js.map +1 -0
  482. package/cjs/chunks/{bundle-dHncVwtW.js → bundle-DjpWffuA.js} +1 -1
  483. package/cjs/chunks/bundle-DjpWffuA.js.map +1 -0
  484. package/cjs/chunks/{bundle-CPCYaxLI.js → bundle-DlOVETdD.js} +1 -1
  485. package/cjs/chunks/bundle-DlOVETdD.js.map +1 -0
  486. package/cjs/chunks/{bundle-hLGNL7z0.js → bundle-DnGEUKrZ.js} +5 -5
  487. package/cjs/chunks/bundle-DnGEUKrZ.js.map +1 -0
  488. package/cjs/chunks/{bundle-B_XQ1oTC.js → bundle-DpLeoU5M.js} +11 -11
  489. package/{chunks/bundle-Cll6FpAY.js.map → cjs/chunks/bundle-DpLeoU5M.js.map} +1 -1
  490. package/cjs/chunks/{bundle-Drlvp_B2.js → bundle-DrzXaO_W.js} +1 -1
  491. package/cjs/chunks/bundle-DrzXaO_W.js.map +1 -0
  492. package/cjs/chunks/{bundle-CtVzU2mF.js → bundle-DsFiTdM1.js} +1 -1
  493. package/cjs/chunks/bundle-DsFiTdM1.js.map +1 -0
  494. package/cjs/chunks/{bundle-B_42YrCV.js → bundle-Du-tPfed.js} +3 -3
  495. package/cjs/chunks/{bundle-B_42YrCV.js.map → bundle-Du-tPfed.js.map} +1 -1
  496. package/cjs/chunks/{bundle-CiX39uyp.js → bundle-DxUgagG2.js} +12 -12
  497. package/cjs/chunks/{bundle-CiX39uyp.js.map → bundle-DxUgagG2.js.map} +1 -1
  498. package/cjs/chunks/{bundle-CqRMMX3E.js → bundle-NVCMyfbx.js} +1 -1
  499. package/cjs/chunks/bundle-NVCMyfbx.js.map +1 -0
  500. package/cjs/chunks/{bundle-BJDQUar6.js → bundle-O3NwtEP9.js} +1 -1
  501. package/cjs/chunks/bundle-O3NwtEP9.js.map +1 -0
  502. package/cjs/chunks/{bundle-2kdn70Rj.js → bundle-QiL8aTMC.js} +3 -3
  503. package/cjs/chunks/{bundle-2kdn70Rj.js.map → bundle-QiL8aTMC.js.map} +1 -1
  504. package/cjs/chunks/{bundle-DF9N1Yw5.js → bundle-UPXtcgsM.js} +5 -5
  505. package/cjs/chunks/bundle-UPXtcgsM.js.map +1 -0
  506. package/cjs/chunks/{bundle-Cqk7T4-n.js → bundle-YjsUgjJP.js} +13 -13
  507. package/cjs/chunks/{bundle-Cqk7T4-n.js.map → bundle-YjsUgjJP.js.map} +1 -1
  508. package/cjs/chunks/{bundle-CFydLFa7.js → bundle-Z0hf3KQq.js} +6 -6
  509. package/cjs/chunks/bundle-Z0hf3KQq.js.map +1 -0
  510. package/cjs/chunks/{bundle-BjSsneBK.js → bundle-eDh1f0yH.js} +1 -1
  511. package/cjs/chunks/bundle-eDh1f0yH.js.map +1 -0
  512. package/cjs/chunks/{bundle-CFLbLwQA.js → bundle-frFSZ6pE.js} +8 -8
  513. package/cjs/chunks/{bundle-CFLbLwQA.js.map → bundle-frFSZ6pE.js.map} +1 -1
  514. package/cjs/chunks/{bundle-BewazTEh.js → bundle-j2NTrunF.js} +4 -4
  515. package/cjs/chunks/{bundle-BewazTEh.js.map → bundle-j2NTrunF.js.map} +1 -1
  516. package/cjs/chunks/{bundle-C-ncKvGW.js → bundle-khkLB6lz.js} +1 -1
  517. package/cjs/chunks/bundle-khkLB6lz.js.map +1 -0
  518. package/cjs/chunks/{bundle-B44RKs1i.js → bundle-oQe6hXee.js} +1 -1
  519. package/cjs/chunks/bundle-oQe6hXee.js.map +1 -0
  520. package/cjs/chunks/{bundle-BJc0JcL-.js → bundle-qyYR3zev.js} +1 -1
  521. package/cjs/chunks/bundle-qyYR3zev.js.map +1 -0
  522. package/cjs/chunks/{bundle-dwrgnCZ8.js → bundle-reY2nEU9.js} +3 -3
  523. package/cjs/chunks/bundle-reY2nEU9.js.map +1 -0
  524. package/cjs/chunks/{bundle-hf7uRYVX.js → bundle-uizj_uI6.js} +3 -3
  525. package/cjs/chunks/bundle-uizj_uI6.js.map +1 -0
  526. package/cjs/chunks/{bundle-4PNRR5W3.js → bundle-vdG6AI-_.js} +6 -6
  527. package/cjs/chunks/bundle-vdG6AI-_.js.map +1 -0
  528. package/cjs/chunks/{bundle-BfiBzzkB.js → bundle-wQzIFZ_d.js} +3 -3
  529. package/cjs/chunks/{bundle-BfiBzzkB.js.map → bundle-wQzIFZ_d.js.map} +1 -1
  530. package/cjs/chunks/{bundle-iEmMwq3m.js → bundle-y6VzViQL.js} +2 -2
  531. package/cjs/chunks/bundle-y6VzViQL.js.map +1 -0
  532. package/cjs/chunks/{bundle-BIVSA0UA.js → bundle-zmFINave.js} +2 -2
  533. package/cjs/chunks/bundle-zmFINave.js.map +1 -0
  534. package/cjs/hooks/useModal.js +15 -15
  535. package/cjs/index.js +79 -79
  536. package/cjs/pubSub/topics.js +1 -1
  537. package/cjs/sendbirdSelectors.js +2 -2
  538. package/cjs/ui/Accordion.js +2 -2
  539. package/cjs/ui/AccordionGroup.js +1 -1
  540. package/cjs/ui/AdminMessage.js +3 -3
  541. package/cjs/ui/Avatar.js +4 -4
  542. package/cjs/ui/Badge.js +5 -5
  543. package/cjs/ui/BottomSheet.js +15 -15
  544. package/cjs/ui/Button.js +3 -3
  545. package/cjs/ui/ChannelAvatar.js +5 -5
  546. package/cjs/ui/ConnectionStatus.js +6 -6
  547. package/cjs/ui/ContextMenu.js +8 -8
  548. package/cjs/ui/DateSeparator.js +4 -4
  549. package/cjs/ui/EmojiReactions.js +21 -21
  550. package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +9 -9
  551. package/cjs/ui/FileMessageItemBody.js +9 -9
  552. package/cjs/ui/FileViewer.js +19 -19
  553. package/cjs/ui/Header.js +6 -6
  554. package/cjs/ui/Icon.js +4 -4
  555. package/cjs/ui/IconButton.js +1 -1
  556. package/cjs/ui/ImageRenderer.js +2 -2
  557. package/cjs/ui/Input.js +3 -3
  558. package/cjs/ui/Label.js +3 -3
  559. package/cjs/ui/LinkLabel.js +4 -4
  560. package/cjs/ui/Loader.js +2 -2
  561. package/cjs/ui/LoadingTemplateMessageItemBody.tsx.js +3 -3
  562. package/cjs/ui/MentionLabel.js +15 -15
  563. package/cjs/ui/MentionUserLabel.js +2 -2
  564. package/cjs/ui/MessageContent.js +37 -37
  565. package/cjs/ui/MessageFeedbackFailedModal.js +16 -16
  566. package/cjs/ui/MessageFeedbackModal.js +16 -16
  567. package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
  568. package/cjs/ui/MessageInput.js +16 -16
  569. package/cjs/ui/MessageItemMenu.js +12 -12
  570. package/cjs/ui/MessageItemReactionMenu.js +11 -11
  571. package/cjs/ui/MessageSearchFileItem.js +15 -15
  572. package/cjs/ui/MessageSearchItem.js +12 -12
  573. package/cjs/ui/MessageStatus.js +13 -13
  574. package/cjs/ui/MessageTemplate.js +1 -1
  575. package/cjs/ui/MobileFeedbackMenu.js +15 -15
  576. package/cjs/ui/Modal.js +15 -15
  577. package/cjs/ui/MutedAvatarOverlay.js +2 -2
  578. package/cjs/ui/OGMessageItemBody.js +19 -19
  579. package/cjs/ui/OpenChannelAdminMessage.js +3 -3
  580. package/cjs/ui/OpenChannelAvatar.js +8 -8
  581. package/cjs/ui/OpenchannelConversationHeader.js +8 -8
  582. package/cjs/ui/OpenchannelFileMessage.js +20 -20
  583. package/cjs/ui/OpenchannelOGMessage.js +22 -22
  584. package/cjs/ui/OpenchannelThumbnailMessage.js +19 -19
  585. package/cjs/ui/OpenchannelUserMessage.js +20 -20
  586. package/cjs/ui/PlaceHolder.js +6 -6
  587. package/cjs/ui/PlaybackTime.js +3 -3
  588. package/cjs/ui/ProgressBar.js +1 -1
  589. package/cjs/ui/QuoteMessage.js +10 -10
  590. package/cjs/ui/QuoteMessageInput.js +10 -10
  591. package/cjs/ui/ReactionBadge.js +3 -3
  592. package/cjs/ui/ReactionButton.js +4 -4
  593. package/cjs/ui/SortByRow.js +2 -2
  594. package/cjs/ui/TemplateMessageItemBody.js +10 -10
  595. package/cjs/ui/TextButton.js +2 -2
  596. package/cjs/ui/TextMessageItemBody.js +18 -18
  597. package/cjs/ui/ThreadReplies.js +8 -8
  598. package/cjs/ui/ThumbnailMessageItemBody.js +8 -8
  599. package/cjs/ui/Toggle.js +1 -1
  600. package/cjs/ui/Tooltip.js +3 -3
  601. package/cjs/ui/TooltipWrapper.js +1 -1
  602. package/cjs/ui/TypingIndicatorBubble.js +4 -4
  603. package/cjs/ui/UnknownMessageItemBody.js +8 -8
  604. package/cjs/ui/UserListItem.js +15 -15
  605. package/cjs/ui/UserProfile.js +10 -10
  606. package/cjs/ui/VoiceMessageInput.js +9 -9
  607. package/cjs/ui/VoiceMessageItemBody.js +15 -15
  608. package/cjs/ui/Word.js +15 -15
  609. package/cjs/useSendbirdStateContext.js +1 -1
  610. package/cjs/utils/message/isVoiceMessage.js +4 -4
  611. package/cjs/withSendbird.js +1 -1
  612. package/dist/index.css +8 -10
  613. package/hooks/useModal.js +15 -15
  614. package/index.js +79 -79
  615. package/package.json +1 -1
  616. package/pubSub/topics.js +1 -1
  617. package/sendbirdSelectors.js +2 -2
  618. package/types/ui/Icon/colors.d.ts +2 -2
  619. package/types/ui/Icon/index.d.ts +1 -1
  620. package/types/ui/Label/index.d.ts +1 -1
  621. package/types/ui/Label/types.d.ts +1 -1
  622. package/types/ui/Label/utils.d.ts +1 -1
  623. package/types/ui/LinkLabel/index.d.ts +1 -1
  624. package/types/ui/Modal/index.d.ts +2 -2
  625. package/ui/Accordion.js +2 -2
  626. package/ui/AccordionGroup.js +1 -1
  627. package/ui/AdminMessage.js +3 -3
  628. package/ui/Avatar.js +4 -4
  629. package/ui/Badge.js +5 -5
  630. package/ui/BottomSheet.js +15 -15
  631. package/ui/Button.js +3 -3
  632. package/ui/ChannelAvatar.js +5 -5
  633. package/ui/ConnectionStatus.js +6 -6
  634. package/ui/ContextMenu.js +8 -8
  635. package/ui/DateSeparator.js +4 -4
  636. package/ui/EmojiReactions.js +21 -21
  637. package/ui/FallbackTemplateMessageItemBody.tsx.js +9 -9
  638. package/ui/FileMessageItemBody.js +9 -9
  639. package/ui/FileViewer.js +19 -19
  640. package/ui/Header.js +6 -6
  641. package/ui/Icon.js +4 -4
  642. package/ui/IconButton.js +1 -1
  643. package/ui/ImageRenderer.js +2 -2
  644. package/ui/Input.js +3 -3
  645. package/ui/Label.js +3 -3
  646. package/ui/LinkLabel.js +4 -4
  647. package/ui/Loader.js +2 -2
  648. package/ui/LoadingTemplateMessageItemBody.tsx.js +3 -3
  649. package/ui/MentionLabel.js +15 -15
  650. package/ui/MentionUserLabel.js +2 -2
  651. package/ui/MessageContent.js +37 -37
  652. package/ui/MessageFeedbackFailedModal.js +16 -16
  653. package/ui/MessageFeedbackModal.js +16 -16
  654. package/ui/MessageInput/hooks/usePaste.js +7 -7
  655. package/ui/MessageInput.js +16 -16
  656. package/ui/MessageItemMenu.js +12 -12
  657. package/ui/MessageItemReactionMenu.js +11 -11
  658. package/ui/MessageSearchFileItem.js +15 -15
  659. package/ui/MessageSearchItem.js +12 -12
  660. package/ui/MessageStatus.js +13 -13
  661. package/ui/MessageTemplate.js +1 -1
  662. package/ui/MobileFeedbackMenu.js +15 -15
  663. package/ui/Modal.js +15 -15
  664. package/ui/MutedAvatarOverlay.js +2 -2
  665. package/ui/OGMessageItemBody.js +19 -19
  666. package/ui/OpenChannelAdminMessage.js +3 -3
  667. package/ui/OpenChannelAvatar.js +8 -8
  668. package/ui/OpenchannelConversationHeader.js +8 -8
  669. package/ui/OpenchannelFileMessage.js +20 -20
  670. package/ui/OpenchannelOGMessage.js +22 -22
  671. package/ui/OpenchannelThumbnailMessage.js +19 -19
  672. package/ui/OpenchannelUserMessage.js +20 -20
  673. package/ui/PlaceHolder.js +6 -6
  674. package/ui/PlaybackTime.js +3 -3
  675. package/ui/ProgressBar.js +1 -1
  676. package/ui/QuoteMessage.js +10 -10
  677. package/ui/QuoteMessageInput.js +10 -10
  678. package/ui/ReactionBadge.js +3 -3
  679. package/ui/ReactionButton.js +4 -4
  680. package/ui/SortByRow.js +2 -2
  681. package/ui/TemplateMessageItemBody.js +10 -10
  682. package/ui/TextButton.js +2 -2
  683. package/ui/TextMessageItemBody.js +18 -18
  684. package/ui/ThreadReplies.js +8 -8
  685. package/ui/ThumbnailMessageItemBody.js +8 -8
  686. package/ui/Toggle.js +1 -1
  687. package/ui/Tooltip.js +3 -3
  688. package/ui/TooltipWrapper.js +1 -1
  689. package/ui/TypingIndicatorBubble.js +4 -4
  690. package/ui/UnknownMessageItemBody.js +8 -8
  691. package/ui/UserListItem.js +15 -15
  692. package/ui/UserProfile.js +10 -10
  693. package/ui/VoiceMessageInput.js +9 -9
  694. package/ui/VoiceMessageItemBody.js +15 -15
  695. package/ui/Word.js +15 -15
  696. package/useSendbirdStateContext.js +1 -1
  697. package/utils/message/isVoiceMessage.js +4 -4
  698. package/withSendbird.js +1 -1
  699. package/chunks/bundle-0_H9lvpf.js.map +0 -1
  700. package/chunks/bundle-38h6y3Hb.js.map +0 -1
  701. package/chunks/bundle-9PpKWOoL.js.map +0 -1
  702. package/chunks/bundle-B5sad6LQ.js.map +0 -1
  703. package/chunks/bundle-BBpoyOJS.js.map +0 -1
  704. package/chunks/bundle-BHKxRZez.js.map +0 -1
  705. package/chunks/bundle-BOBvShj7.js.map +0 -1
  706. package/chunks/bundle-BW1heH8r.js.map +0 -1
  707. package/chunks/bundle-BZaNthXQ.js.map +0 -1
  708. package/chunks/bundle-Bb9hzsLY.js.map +0 -1
  709. package/chunks/bundle-Bmg_SNU1.js.map +0 -1
  710. package/chunks/bundle-Bu71sAcm.js.map +0 -1
  711. package/chunks/bundle-BukeovFR.js.map +0 -1
  712. package/chunks/bundle-C0Ye9Nr7.js.map +0 -1
  713. package/chunks/bundle-C6Uejzft.js.map +0 -1
  714. package/chunks/bundle-C6yJQcQ5.js.map +0 -1
  715. package/chunks/bundle-C83jcIQ3.js.map +0 -1
  716. package/chunks/bundle-CGpUZMGo.js.map +0 -1
  717. package/chunks/bundle-CHbs8B1_.js.map +0 -1
  718. package/chunks/bundle-CMr-IO14.js.map +0 -1
  719. package/chunks/bundle-CRRsbsT6.js.map +0 -1
  720. package/chunks/bundle-CRs0ZyYd.js.map +0 -1
  721. package/chunks/bundle-CWX597tJ.js.map +0 -1
  722. package/chunks/bundle-CXIUF-j1.js.map +0 -1
  723. package/chunks/bundle-ChoBoUg2.js.map +0 -1
  724. package/chunks/bundle-CvQV9eyL.js.map +0 -1
  725. package/chunks/bundle-Cyu8Xfnh.js.map +0 -1
  726. package/chunks/bundle-D1RWUo4o.js.map +0 -1
  727. package/chunks/bundle-D8uYbr-P.js.map +0 -1
  728. package/chunks/bundle-DAhJtn85.js.map +0 -1
  729. package/chunks/bundle-DAlnp9lF.js.map +0 -1
  730. package/chunks/bundle-DMqUFkSM.js.map +0 -1
  731. package/chunks/bundle-DNSTH1vf.js.map +0 -1
  732. package/chunks/bundle-DQovOEGD.js.map +0 -1
  733. package/chunks/bundle-DayugpLd.js.map +0 -1
  734. package/chunks/bundle-DpUmO1Mq.js.map +0 -1
  735. package/chunks/bundle-DuJ-B-ZT.js.map +0 -1
  736. package/chunks/bundle-DwMfxOmy.js.map +0 -1
  737. package/chunks/bundle-IjPHxh5M.js.map +0 -1
  738. package/chunks/bundle-NQPHGdv2.js.map +0 -1
  739. package/chunks/bundle-PcZf3aTk.js.map +0 -1
  740. package/chunks/bundle-Q-tobrIb.js.map +0 -1
  741. package/chunks/bundle-QA2AznoN.js.map +0 -1
  742. package/chunks/bundle-SkrZLWkc.js.map +0 -1
  743. package/chunks/bundle-_3WGrX6M.js.map +0 -1
  744. package/chunks/bundle-_Bh5w9NL.js.map +0 -1
  745. package/chunks/bundle-bVEG7YOP.js.map +0 -1
  746. package/chunks/bundle-hrN1SZ_Z.js.map +0 -1
  747. package/chunks/bundle-j-10ix2k.js.map +0 -1
  748. package/chunks/bundle-lrWED2TX.js.map +0 -1
  749. package/cjs/chunks/bundle-3TlzRrfD.js.map +0 -1
  750. package/cjs/chunks/bundle-4PNRR5W3.js.map +0 -1
  751. package/cjs/chunks/bundle-B0Glft9d.js.map +0 -1
  752. package/cjs/chunks/bundle-B4-ARdO4.js.map +0 -1
  753. package/cjs/chunks/bundle-B44RKs1i.js.map +0 -1
  754. package/cjs/chunks/bundle-BDQgAppO.js.map +0 -1
  755. package/cjs/chunks/bundle-BDXCaYsH.js.map +0 -1
  756. package/cjs/chunks/bundle-BIVSA0UA.js.map +0 -1
  757. package/cjs/chunks/bundle-BJDQUar6.js.map +0 -1
  758. package/cjs/chunks/bundle-BJc0JcL-.js.map +0 -1
  759. package/cjs/chunks/bundle-BO6YDwoz.js.map +0 -1
  760. package/cjs/chunks/bundle-BOSlF-PZ.js.map +0 -1
  761. package/cjs/chunks/bundle-BSVTay0K.js.map +0 -1
  762. package/cjs/chunks/bundle-BViYuB4_.js.map +0 -1
  763. package/cjs/chunks/bundle-Bb9LqSHU.js.map +0 -1
  764. package/cjs/chunks/bundle-BcP5dHcV.js.map +0 -1
  765. package/cjs/chunks/bundle-Bf2oyXSB.js.map +0 -1
  766. package/cjs/chunks/bundle-BjSsneBK.js.map +0 -1
  767. package/cjs/chunks/bundle-Bk7mbCoA.js.map +0 -1
  768. package/cjs/chunks/bundle-BqHow3gS.js.map +0 -1
  769. package/cjs/chunks/bundle-BxVcIlWI.js.map +0 -1
  770. package/cjs/chunks/bundle-C-ncKvGW.js.map +0 -1
  771. package/cjs/chunks/bundle-C0fpOgFd.js.map +0 -1
  772. package/cjs/chunks/bundle-C3kKDP3g.js.map +0 -1
  773. package/cjs/chunks/bundle-C6i19O7d.js.map +0 -1
  774. package/cjs/chunks/bundle-C7hLRvbU.js.map +0 -1
  775. package/cjs/chunks/bundle-CFydLFa7.js.map +0 -1
  776. package/cjs/chunks/bundle-CPCYaxLI.js.map +0 -1
  777. package/cjs/chunks/bundle-CT3hIjDy.js.map +0 -1
  778. package/cjs/chunks/bundle-CYK5sjUD.js.map +0 -1
  779. package/cjs/chunks/bundle-C_2JLhCE.js.map +0 -1
  780. package/cjs/chunks/bundle-ClDJ3S5P.js.map +0 -1
  781. package/cjs/chunks/bundle-CqRMMX3E.js.map +0 -1
  782. package/cjs/chunks/bundle-CtVzU2mF.js.map +0 -1
  783. package/cjs/chunks/bundle-D0PO_ruY.js.map +0 -1
  784. package/cjs/chunks/bundle-D0q5dAFj.js.map +0 -1
  785. package/cjs/chunks/bundle-D3cOq1dq.js.map +0 -1
  786. package/cjs/chunks/bundle-D4Pew2rQ.js.map +0 -1
  787. package/cjs/chunks/bundle-D4wKr-Pc.js.map +0 -1
  788. package/cjs/chunks/bundle-D5h00Oig.js.map +0 -1
  789. package/cjs/chunks/bundle-DF9N1Yw5.js.map +0 -1
  790. package/cjs/chunks/bundle-DFprgn2Q.js.map +0 -1
  791. package/cjs/chunks/bundle-DIv9aJRh.js.map +0 -1
  792. package/cjs/chunks/bundle-DL_1wm_B.js.map +0 -1
  793. package/cjs/chunks/bundle-DQcxvpWg.js.map +0 -1
  794. package/cjs/chunks/bundle-DepUnCxt.js.map +0 -1
  795. package/cjs/chunks/bundle-DqxP8px7.js.map +0 -1
  796. package/cjs/chunks/bundle-Drlvp_B2.js.map +0 -1
  797. package/cjs/chunks/bundle-DxII-H6S.js.map +0 -1
  798. package/cjs/chunks/bundle-F2zWPLQS.js.map +0 -1
  799. package/cjs/chunks/bundle-QeghHNoV.js.map +0 -1
  800. package/cjs/chunks/bundle-TvvKEQW4.js.map +0 -1
  801. package/cjs/chunks/bundle-V8KCClRo.js.map +0 -1
  802. package/cjs/chunks/bundle-_LlcM4bL.js.map +0 -1
  803. package/cjs/chunks/bundle-dHncVwtW.js.map +0 -1
  804. package/cjs/chunks/bundle-dwrgnCZ8.js.map +0 -1
  805. package/cjs/chunks/bundle-hLGNL7z0.js.map +0 -1
  806. package/cjs/chunks/bundle-hf7uRYVX.js.map +0 -1
  807. package/cjs/chunks/bundle-iEmMwq3m.js.map +0 -1
  808. package/cjs/chunks/bundle-kf6nqGaS.js.map +0 -1
  809. package/cjs/chunks/bundle-xm5DS5Lz.js.map +0 -1
@@ -1,4 +1,4 @@
1
- import { K, b as isFileMessage, c as isMultipleFilesMessage } from './bundle-DvK0GCH4.js';
1
+ import { K, b as isFileMessage, c as isMultipleFilesMessage } from './bundle-VXXJZkam.js';
2
2
 
3
3
  function getMessageFirstFileType(message) {
4
4
  return K(message)
@@ -65,4 +65,4 @@ function getMessageFirstFileThumbnailUrl(message) {
65
65
  }
66
66
 
67
67
  export { getMessageFirstFileType as a, getMessageFirstFileName as b, getMessageFirstFileThumbnailUrl as c, getMessageFirstFileUrl as g };
68
- //# sourceMappingURL=bundle-B5sad6LQ.js.map
68
+ //# sourceMappingURL=bundle-BN9hrgMv.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-BN9hrgMv.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,17 +1,17 @@
1
1
  import React__default, { useEffect, useCallback, useState, useReducer, useRef, useMemo } from 'react';
2
- import { U as UserProfileProvider } from './bundle-j-10ix2k.js';
3
- import { _ as __assign, c as __spreadArray, a as __awaiter, b as __generator } from './bundle-DAhJtn85.js';
4
- import { c as compareIds } from './bundle-0_H9lvpf.js';
5
- import { p as pubSubTopics } from './bundle-Bmg_SNU1.js';
2
+ import { U as UserProfileProvider } from './bundle-CFVWrfBk.js';
3
+ import { _ as __assign, c as __spreadArray, a as __awaiter, b as __generator } from './bundle-DdIo_zFs.js';
4
+ import { c as compareIds } from './bundle-CzPQUoBY.js';
5
+ import { p as pubSubTopics } from './bundle-6c1kf582.js';
6
6
  import { ChannelType } from '@sendbird/chat';
7
7
  import { OpenChannelHandler } from '@sendbird/chat/openChannel';
8
- import { u as uuidv4 } from './bundle-Bb9hzsLY.js';
9
- import { c as compressImages } from './bundle-IjPHxh5M.js';
8
+ import { u as uuidv4 } from './bundle-BJuiDRhf.js';
9
+ import { c as compressImages } from './bundle-CpcYL8Ew.js';
10
10
  import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
11
- import { b as useGlobalModalContext, c as ModalFooter } from './bundle-BFCOE4_P.js';
12
- import { u as useLocalization } from './bundle-QA2AznoN.js';
13
- import { O as ONE_MiB } from './bundle-CvQV9eyL.js';
14
- import './bundle-_Bh5w9NL.js';
11
+ import { b as useGlobalModalContext, c as ModalFooter } from './bundle-C7vkuHMJ.js';
12
+ import { u as useLocalization } from './bundle-DT4DSBZo.js';
13
+ import { O as ONE_MiB } from './bundle-B9jaULeT.js';
14
+ import './bundle-DEtCTxPD.js';
15
15
  import { ButtonTypes } from '../ui/Button.js';
16
16
 
17
17
  var shouldFetchMore = function (messageLength, maxMessages) {
@@ -1355,4 +1355,4 @@ var useOpenChannelContext = function () {
1355
1355
  };
1356
1356
 
1357
1357
  export { OpenChannelProvider as O, kFormatter as k, useOpenChannelContext as u };
1358
- //# sourceMappingURL=bundle-atvPYPBf.js.map
1358
+ //# sourceMappingURL=bundle-BNSIBEFq.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-atvPYPBf.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-BNSIBEFq.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -66,4 +66,4 @@ function toDate(argument) {
66
66
  }
67
67
 
68
68
  export { _typeof as _, requiredArgs as r, toDate as t };
69
- //# sourceMappingURL=bundle-DFeu3PLu.js.map
69
+ //# sourceMappingURL=bundle-BOBvB-6E.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-DFeu3PLu.js","sources":["../../node_modules/@babel/runtime/helpers/esm/typeof.js","../../node_modules/date-fns/esm/_lib/requiredArgs/index.js","../../node_modules/date-fns/esm/toDate/index.js"],"sourcesContent":["export default function _typeof(o) {\n \"@babel/helpers - typeof\";\n\n return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) {\n return typeof o;\n } : function (o) {\n return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o;\n }, _typeof(o);\n}","export default function requiredArgs(required, args) {\n if (args.length < required) {\n throw new TypeError(required + ' argument' + (required > 1 ? 's' : '') + ' required, but only ' + args.length + ' present');\n }\n}","import _typeof from \"@babel/runtime/helpers/esm/typeof\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name toDate\n * @category Common Helpers\n * @summary Convert the given argument to an instance of Date.\n *\n * @description\n * Convert the given argument to an instance of Date.\n *\n * If the argument is an instance of Date, the function returns its clone.\n *\n * If the argument is a number, it is treated as a timestamp.\n *\n * If the argument is none of the above, the function returns Invalid Date.\n *\n * **Note**: *all* Date arguments passed to any *date-fns* function is processed by `toDate`.\n *\n * @param {Date|Number} argument - the value to convert\n * @returns {Date} the parsed date in the local time zone\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // Clone the date:\n * const result = toDate(new Date(2014, 1, 11, 11, 30, 30))\n * //=> Tue Feb 11 2014 11:30:30\n *\n * @example\n * // Convert the timestamp to date:\n * const result = toDate(1392098430000)\n * //=> Tue Feb 11 2014 11:30:30\n */\nexport default function toDate(argument) {\n requiredArgs(1, arguments);\n var argStr = Object.prototype.toString.call(argument);\n\n // Clone the date\n if (argument instanceof Date || _typeof(argument) === 'object' && argStr === '[object Date]') {\n // Prevent the date to lose the milliseconds when passed to new Date() in IE10\n return new Date(argument.getTime());\n } else if (typeof argument === 'number' || argStr === '[object Number]') {\n return new Date(argument);\n } else {\n if ((typeof argument === 'string' || argStr === '[object String]') && typeof console !== 'undefined') {\n // eslint-disable-next-line no-console\n console.warn(\"Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments\");\n // eslint-disable-next-line no-console\n console.warn(new Error().stack);\n }\n return new Date(NaN);\n }\n}"],"names":[],"mappings":"AAAe,SAAS,OAAO,CAAC,CAAC,EAAE;AACnC,EAAE,yBAAyB,CAAC;AAC5B;AACA,EAAE,OAAO,OAAO,GAAG,UAAU,IAAI,OAAO,MAAM,IAAI,QAAQ,IAAI,OAAO,MAAM,CAAC,QAAQ,GAAG,UAAU,CAAC,EAAE;AACpG,IAAI,OAAO,OAAO,CAAC,CAAC;AACpB,GAAG,GAAG,UAAU,CAAC,EAAE;AACnB,IAAI,OAAO,CAAC,IAAI,UAAU,IAAI,OAAO,MAAM,IAAI,CAAC,CAAC,WAAW,KAAK,MAAM,IAAI,CAAC,KAAK,MAAM,CAAC,SAAS,GAAG,QAAQ,GAAG,OAAO,CAAC,CAAC;AACxH,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;AAChB;;ACRe,SAAS,YAAY,CAAC,QAAQ,EAAE,IAAI,EAAE;AACrD,EAAE,IAAI,IAAI,CAAC,MAAM,GAAG,QAAQ,EAAE;AAC9B,IAAI,MAAM,IAAI,SAAS,CAAC,QAAQ,GAAG,WAAW,IAAI,QAAQ,GAAG,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC,GAAG,sBAAsB,GAAG,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC,CAAC;AAChI,GAAG;AACH;;ACFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,MAAM,CAAC,QAAQ,EAAE;AACzC,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,MAAM,GAAG,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;AACxD;AACA;AACA,EAAE,IAAI,QAAQ,YAAY,IAAI,IAAI,OAAO,CAAC,QAAQ,CAAC,KAAK,QAAQ,IAAI,MAAM,KAAK,eAAe,EAAE;AAChG;AACA,IAAI,OAAO,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC;AACxC,GAAG,MAAM,IAAI,OAAO,QAAQ,KAAK,QAAQ,IAAI,MAAM,KAAK,iBAAiB,EAAE;AAC3E,IAAI,OAAO,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC;AAC9B,GAAG,MAAM;AACT,IAAI,IAAI,CAAC,OAAO,QAAQ,KAAK,QAAQ,IAAI,MAAM,KAAK,iBAAiB,KAAK,OAAO,OAAO,KAAK,WAAW,EAAE;AAC1G;AACA,MAAM,OAAO,CAAC,IAAI,CAAC,oNAAoN,CAAC,CAAC;AACzO;AACA,MAAM,OAAO,CAAC,IAAI,CAAC,IAAI,KAAK,EAAE,CAAC,KAAK,CAAC,CAAC;AACtC,KAAK;AACL,IAAI,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;AACzB,GAAG;AACH;;;;","x_google_ignoreList":[0,1,2]}
1
+ {"version":3,"file":"bundle-BOBvB-6E.js","sources":["../../node_modules/@babel/runtime/helpers/esm/typeof.js","../../node_modules/date-fns/esm/_lib/requiredArgs/index.js","../../node_modules/date-fns/esm/toDate/index.js"],"sourcesContent":["export default function _typeof(o) {\n \"@babel/helpers - typeof\";\n\n return _typeof = \"function\" == typeof Symbol && \"symbol\" == typeof Symbol.iterator ? function (o) {\n return typeof o;\n } : function (o) {\n return o && \"function\" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? \"symbol\" : typeof o;\n }, _typeof(o);\n}","export default function requiredArgs(required, args) {\n if (args.length < required) {\n throw new TypeError(required + ' argument' + (required > 1 ? 's' : '') + ' required, but only ' + args.length + ' present');\n }\n}","import _typeof from \"@babel/runtime/helpers/esm/typeof\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name toDate\n * @category Common Helpers\n * @summary Convert the given argument to an instance of Date.\n *\n * @description\n * Convert the given argument to an instance of Date.\n *\n * If the argument is an instance of Date, the function returns its clone.\n *\n * If the argument is a number, it is treated as a timestamp.\n *\n * If the argument is none of the above, the function returns Invalid Date.\n *\n * **Note**: *all* Date arguments passed to any *date-fns* function is processed by `toDate`.\n *\n * @param {Date|Number} argument - the value to convert\n * @returns {Date} the parsed date in the local time zone\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // Clone the date:\n * const result = toDate(new Date(2014, 1, 11, 11, 30, 30))\n * //=> Tue Feb 11 2014 11:30:30\n *\n * @example\n * // Convert the timestamp to date:\n * const result = toDate(1392098430000)\n * //=> Tue Feb 11 2014 11:30:30\n */\nexport default function toDate(argument) {\n requiredArgs(1, arguments);\n var argStr = Object.prototype.toString.call(argument);\n\n // Clone the date\n if (argument instanceof Date || _typeof(argument) === 'object' && argStr === '[object Date]') {\n // Prevent the date to lose the milliseconds when passed to new Date() in IE10\n return new Date(argument.getTime());\n } else if (typeof argument === 'number' || argStr === '[object Number]') {\n return new Date(argument);\n } else {\n if ((typeof argument === 'string' || argStr === '[object String]') && typeof console !== 'undefined') {\n // eslint-disable-next-line no-console\n console.warn(\"Starting with v2.0.0-beta.1 date-fns doesn't accept strings as date arguments. Please use `parseISO` to parse strings. See: https://github.com/date-fns/date-fns/blob/master/docs/upgradeGuide.md#string-arguments\");\n // eslint-disable-next-line no-console\n console.warn(new Error().stack);\n }\n return new Date(NaN);\n }\n}"],"names":[],"mappings":"AAAe,SAAS,OAAO,CAAC,CAAC,EAAE;AACnC,EAAE,yBAAyB,CAAC;AAC5B;AACA,EAAE,OAAO,OAAO,GAAG,UAAU,IAAI,OAAO,MAAM,IAAI,QAAQ,IAAI,OAAO,MAAM,CAAC,QAAQ,GAAG,UAAU,CAAC,EAAE;AACpG,IAAI,OAAO,OAAO,CAAC,CAAC;AACpB,GAAG,GAAG,UAAU,CAAC,EAAE;AACnB,IAAI,OAAO,CAAC,IAAI,UAAU,IAAI,OAAO,MAAM,IAAI,CAAC,CAAC,WAAW,KAAK,MAAM,IAAI,CAAC,KAAK,MAAM,CAAC,SAAS,GAAG,QAAQ,GAAG,OAAO,CAAC,CAAC;AACxH,GAAG,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC;AAChB;;ACRe,SAAS,YAAY,CAAC,QAAQ,EAAE,IAAI,EAAE;AACrD,EAAE,IAAI,IAAI,CAAC,MAAM,GAAG,QAAQ,EAAE;AAC9B,IAAI,MAAM,IAAI,SAAS,CAAC,QAAQ,GAAG,WAAW,IAAI,QAAQ,GAAG,CAAC,GAAG,GAAG,GAAG,EAAE,CAAC,GAAG,sBAAsB,GAAG,IAAI,CAAC,MAAM,GAAG,UAAU,CAAC,CAAC;AAChI,GAAG;AACH;;ACFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,MAAM,CAAC,QAAQ,EAAE;AACzC,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,MAAM,GAAG,MAAM,CAAC,SAAS,CAAC,QAAQ,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;AACxD;AACA;AACA,EAAE,IAAI,QAAQ,YAAY,IAAI,IAAI,OAAO,CAAC,QAAQ,CAAC,KAAK,QAAQ,IAAI,MAAM,KAAK,eAAe,EAAE;AAChG;AACA,IAAI,OAAO,IAAI,IAAI,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC;AACxC,GAAG,MAAM,IAAI,OAAO,QAAQ,KAAK,QAAQ,IAAI,MAAM,KAAK,iBAAiB,EAAE;AAC3E,IAAI,OAAO,IAAI,IAAI,CAAC,QAAQ,CAAC,CAAC;AAC9B,GAAG,MAAM;AACT,IAAI,IAAI,CAAC,OAAO,QAAQ,KAAK,QAAQ,IAAI,MAAM,KAAK,iBAAiB,KAAK,OAAO,OAAO,KAAK,WAAW,EAAE;AAC1G;AACA,MAAM,OAAO,CAAC,IAAI,CAAC,oNAAoN,CAAC,CAAC;AACzO;AACA,MAAM,OAAO,CAAC,IAAI,CAAC,IAAI,KAAK,EAAE,CAAC,KAAK,CAAC,CAAC;AACtC,KAAK;AACL,IAAI,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;AACzB,GAAG;AACH;;;;","x_google_ignoreList":[0,1,2]}
@@ -29,4 +29,4 @@ function classnames() {
29
29
  }
30
30
 
31
31
  export { classnames as c, deleteNullish as d, noop as n, openURL as o };
32
- //# sourceMappingURL=bundle-hrN1SZ_Z.js.map
32
+ //# sourceMappingURL=bundle-BPHZWcCv.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-BPHZWcCv.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -12,4 +12,4 @@ var pxToNumber = function (px) {
12
12
  };
13
13
 
14
14
  export { pxToNumber as p };
15
- //# sourceMappingURL=bundle-9PpKWOoL.js.map
15
+ //# sourceMappingURL=bundle-BU88BWC9.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-BU88BWC9.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
@@ -1,30 +1,30 @@
1
- import { c as __spreadArray } from './bundle-DAhJtn85.js';
1
+ import { c as __spreadArray } from './bundle-DdIo_zFs.js';
2
2
  import React__default, { useContext, useState, useEffect, useRef, useCallback } from 'react';
3
3
  import Button, { ButtonTypes, ButtonSizes } from '../ui/Button.js';
4
4
  import ContextMenu, { MenuItems, OperatorMenuItem, MuteMenuItem, MenuItem } from '../ui/ContextMenu.js';
5
5
  import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
6
6
  import IconButton from '../ui/IconButton.js';
7
- import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-_Bh5w9NL.js';
7
+ import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-DEtCTxPD.js';
8
8
  import { Participant } from '@sendbird/chat';
9
- import { L as LocalizationContext } from './bundle-QA2AznoN.js';
10
- import { a as UserProfileContext } from './bundle-j-10ix2k.js';
9
+ import { L as LocalizationContext } from './bundle-DT4DSBZo.js';
10
+ import { a as UserProfileContext } from './bundle-CFVWrfBk.js';
11
11
  import '../ui/AccordionGroup.js';
12
- import { A as Avatar } from './bundle-C6yJQcQ5.js';
12
+ import { A as Avatar } from './bundle-CKHDZj3X.js';
13
13
  import 'react-dom';
14
- import './bundle-BHKxRZez.js';
14
+ import './bundle-ByOz6UaI.js';
15
15
  import '@sendbird/uikit-tools';
16
16
  import '../withSendbird.js';
17
17
  import 'css-vars-ponyfill';
18
- import './bundle-DvK0GCH4.js';
18
+ import './bundle-VXXJZkam.js';
19
19
  import '@sendbird/chat/openChannel';
20
20
  import '@sendbird/chat/groupChannel';
21
- import './bundle-DeixUZhs.js';
22
- import { M as Modal } from './bundle-BFCOE4_P.js';
21
+ import './bundle-DEc9jVCz.js';
22
+ import { M as Modal } from './bundle-C7vkuHMJ.js';
23
23
  import MutedAvatarOverlay from '../ui/MutedAvatarOverlay.js';
24
24
  import UserProfile from '../ui/UserProfile.js';
25
25
  import { useOpenChannelSettingsContext } from '../OpenChannelSettings/context.js';
26
26
  import UserListItem$1 from '../ui/UserListItem.js';
27
- import { n as noop } from './bundle-hrN1SZ_Z.js';
27
+ import { n as noop } from './bundle-BPHZWcCv.js';
28
28
  import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
29
29
 
30
30
  function ParticipantsModal(_a) {
@@ -213,4 +213,4 @@ function ParticipantList(_a) {
213
213
  }
214
214
 
215
215
  export { ParticipantList as P, UserListItem as U };
216
- //# sourceMappingURL=bundle-HheIudro.js.map
216
+ //# sourceMappingURL=bundle-BdSPinDs.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-HheIudro.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-BdSPinDs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -3,7 +3,7 @@ import { GroupChannelListHeader } from '../GroupChannelList/components/GroupChan
3
3
  import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
4
4
  import EditUserProfile from '../EditUserProfile.js';
5
5
  import PlaceHolder, { PlaceHolderTypes } from '../ui/PlaceHolder.js';
6
- import { u as useOnScrollPositionChangeDetector } from './bundle-DQovOEGD.js';
6
+ import { u as useOnScrollPositionChangeDetector } from './bundle-vrHvkBOt.js';
7
7
 
8
8
  var GroupChannelListUIView = function (_a) {
9
9
  var renderHeader = _a.renderHeader, renderPlaceHolderError = _a.renderPlaceHolderError, renderPlaceHolderLoading = _a.renderPlaceHolderLoading, renderPlaceHolderEmptyList = _a.renderPlaceHolderEmptyList, onChangeTheme = _a.onChangeTheme, onUserProfileUpdated = _a.onUserProfileUpdated, allowProfileEdit = _a.allowProfileEdit, channels = _a.channels, onLoadMore = _a.onLoadMore, initialized = _a.initialized, renderChannel = _a.renderChannel, renderAddChannel = _a.renderAddChannel;
@@ -64,4 +64,4 @@ var ChannelListComponent = function (props) {
64
64
  };
65
65
 
66
66
  export { GroupChannelListUIView as G };
67
- //# sourceMappingURL=bundle-bVEG7YOP.js.map
67
+ //# sourceMappingURL=bundle-Bg_q4-JM.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-Bg_q4-JM.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,4 +1,4 @@
1
1
  var MENTION_USER_LABEL_CLASSNAME = 'sendbird-mention-user-label';
2
2
 
3
3
  export { MENTION_USER_LABEL_CLASSNAME as M };
4
- //# sourceMappingURL=bundle-CHbs8B1_.js.map
4
+ //# sourceMappingURL=bundle-BkXs4vmC.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-BkXs4vmC.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
@@ -1,4 +1,4 @@
1
- import { b as VOICE_RECORDER_AUDIO_SAMPLE_RATE } from './bundle-CvQV9eyL.js';
1
+ import { b as VOICE_RECORDER_AUDIO_SAMPLE_RATE } from './bundle-B9jaULeT.js';
2
2
  import { WavHeader as ut, Mp3Encoder as ht } from '../lame.all.js';
3
3
 
4
4
  // Thanks to https://codesandbox.io/s/media-recorder-api-downsampling-16k-mp3-encode-using-lame-js-forked-n1pblw
@@ -126,4 +126,4 @@ function bufferToWav(abuffer, len) {
126
126
  }
127
127
 
128
128
  export { downsampleToWav, encodeMp3 };
129
- //# sourceMappingURL=bundle-BCDYwF2y.js.map
129
+ //# sourceMappingURL=bundle-BnTQqt6n.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-BCDYwF2y.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-BnTQqt6n.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -23,4 +23,4 @@ var changeColorToClassName = function (color) {
23
23
  };
24
24
 
25
25
  export { Colors as C, changeColorToClassName as c };
26
- //# sourceMappingURL=bundle-BBpoyOJS.js.map
26
+ //# sourceMappingURL=bundle-BpOEDk4N.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-BpOEDk4N.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,6 +1,6 @@
1
- import { i as isSameDay } from './bundle-ChgFZ-AQ.js';
2
- import { r as requiredArgs, t as toDate } from './bundle-DFeu3PLu.js';
3
- import { t as toInteger } from './bundle-fNoXpdvs.js';
1
+ import { i as isSameDay } from './bundle-7aYnlE9g.js';
2
+ import { r as requiredArgs, t as toDate } from './bundle-BOBvB-6E.js';
3
+ import { t as toInteger } from './bundle-ySoO0NFU.js';
4
4
 
5
5
  /**
6
6
  * @name isToday
@@ -163,4 +163,4 @@ function isYesterday(dirtyDate) {
163
163
  }
164
164
 
165
165
  export { isYesterday as a, isThisYear as b, isToday as i };
166
- //# sourceMappingURL=bundle-dRVFykvq.js.map
166
+ //# sourceMappingURL=bundle-Bt0C-BFZ.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-dRVFykvq.js","sources":["../../node_modules/date-fns/esm/isToday/index.js","../../node_modules/date-fns/esm/isSameYear/index.js","../../node_modules/date-fns/esm/isThisYear/index.js","../../node_modules/date-fns/esm/addDays/index.js","../../node_modules/date-fns/esm/subDays/index.js","../../node_modules/date-fns/esm/isYesterday/index.js"],"sourcesContent":["import isSameDay from \"../isSameDay/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isToday\n * @category Day Helpers\n * @summary Is the given date today?\n * @pure false\n *\n * @description\n * Is the given date today?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is today\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 6 October 14:00:00 today?\n * const result = isToday(new Date(2014, 9, 6, 14, 0))\n * //=> true\n */\nexport default function isToday(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameDay(dirtyDate, Date.now());\n}","import toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isSameYear\n * @category Year Helpers\n * @summary Are the given dates in the same year?\n *\n * @description\n * Are the given dates in the same year?\n *\n * @param {Date|Number} dateLeft - the first date to check\n * @param {Date|Number} dateRight - the second date to check\n * @returns {Boolean} the dates are in the same year\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Are 2 September 2014 and 25 September 2014 in the same year?\n * const result = isSameYear(new Date(2014, 8, 2), new Date(2014, 8, 25))\n * //=> true\n */\nexport default function isSameYear(dirtyDateLeft, dirtyDateRight) {\n requiredArgs(2, arguments);\n var dateLeft = toDate(dirtyDateLeft);\n var dateRight = toDate(dirtyDateRight);\n return dateLeft.getFullYear() === dateRight.getFullYear();\n}","import isSameYear from \"../isSameYear/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isThisYear\n * @category Year Helpers\n * @summary Is the given date in the same year as the current date?\n * @pure false\n *\n * @description\n * Is the given date in the same year as the current date?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is in this year\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 25 September 2014, is 2 July 2014 in this year?\n * const result = isThisYear(new Date(2014, 6, 2))\n * //=> true\n */\nexport default function isThisYear(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameYear(dirtyDate, Date.now());\n}","import toInteger from \"../_lib/toInteger/index.js\";\nimport toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name addDays\n * @category Day Helpers\n * @summary Add the specified number of days to the given date.\n *\n * @description\n * Add the specified number of days to the given date.\n *\n * @param {Date|Number} date - the date to be changed\n * @param {Number} amount - the amount of days to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`.\n * @returns {Date} - the new date with the days added\n * @throws {TypeError} - 2 arguments required\n *\n * @example\n * // Add 10 days to 1 September 2014:\n * const result = addDays(new Date(2014, 8, 1), 10)\n * //=> Thu Sep 11 2014 00:00:00\n */\nexport default function addDays(dirtyDate, dirtyAmount) {\n requiredArgs(2, arguments);\n var date = toDate(dirtyDate);\n var amount = toInteger(dirtyAmount);\n if (isNaN(amount)) {\n return new Date(NaN);\n }\n if (!amount) {\n // If 0 days, no-op to avoid changing times in the hour before end of DST\n return date;\n }\n date.setDate(date.getDate() + amount);\n return date;\n}","import addDays from \"../addDays/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\nimport toInteger from \"../_lib/toInteger/index.js\";\n/**\n * @name subDays\n * @category Day Helpers\n * @summary Subtract the specified number of days from the given date.\n *\n * @description\n * Subtract the specified number of days from the given date.\n *\n * @param {Date|Number} date - the date to be changed\n * @param {Number} amount - the amount of days to be subtracted. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`.\n * @returns {Date} the new date with the days subtracted\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Subtract 10 days from 1 September 2014:\n * const result = subDays(new Date(2014, 8, 1), 10)\n * //=> Fri Aug 22 2014 00:00:00\n */\nexport default function subDays(dirtyDate, dirtyAmount) {\n requiredArgs(2, arguments);\n var amount = toInteger(dirtyAmount);\n return addDays(dirtyDate, -amount);\n}","import isSameDay from \"../isSameDay/index.js\";\nimport subDays from \"../subDays/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isYesterday\n * @category Day Helpers\n * @summary Is the given date yesterday?\n * @pure false\n *\n * @description\n * Is the given date yesterday?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is yesterday\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 5 October 14:00:00 yesterday?\n * const result = isYesterday(new Date(2014, 9, 5, 14, 0))\n * //=> true\n */\nexport default function isYesterday(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameDay(dirtyDate, subDays(Date.now(), 1));\n}"],"names":[],"mappings":";;;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE;AAC3C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,SAAS,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;AAC1C;;ACxBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,aAAa,EAAE,cAAc,EAAE;AAClE,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,QAAQ,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC;AACvC,EAAE,IAAI,SAAS,GAAG,MAAM,CAAC,cAAc,CAAC,CAAC;AACzC,EAAE,OAAO,QAAQ,CAAC,WAAW,EAAE,KAAK,SAAS,CAAC,WAAW,EAAE,CAAC;AAC5D;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,SAAS,EAAE;AAC9C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,UAAU,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;AAC3C;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE;AACxD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AAC/B,EAAE,IAAI,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC,CAAC;AACtC,EAAE,IAAI,KAAK,CAAC,MAAM,CAAC,EAAE;AACrB,IAAI,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;AACzB,GAAG;AACH,EAAE,IAAI,CAAC,MAAM,EAAE;AACf;AACA,IAAI,OAAO,IAAI,CAAC;AAChB,GAAG;AACH,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,MAAM,CAAC,CAAC;AACxC,EAAE,OAAO,IAAI,CAAC;AACd;;AC/BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE;AACxD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC,CAAC;AACtC,EAAE,OAAO,OAAO,CAAC,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;AACrC;;ACtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,WAAW,CAAC,SAAS,EAAE;AAC/C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,SAAS,CAAC,SAAS,EAAE,OAAO,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC;AACtD;;;;","x_google_ignoreList":[0,1,2,3,4,5]}
1
+ {"version":3,"file":"bundle-Bt0C-BFZ.js","sources":["../../node_modules/date-fns/esm/isToday/index.js","../../node_modules/date-fns/esm/isSameYear/index.js","../../node_modules/date-fns/esm/isThisYear/index.js","../../node_modules/date-fns/esm/addDays/index.js","../../node_modules/date-fns/esm/subDays/index.js","../../node_modules/date-fns/esm/isYesterday/index.js"],"sourcesContent":["import isSameDay from \"../isSameDay/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isToday\n * @category Day Helpers\n * @summary Is the given date today?\n * @pure false\n *\n * @description\n * Is the given date today?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is today\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 6 October 14:00:00 today?\n * const result = isToday(new Date(2014, 9, 6, 14, 0))\n * //=> true\n */\nexport default function isToday(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameDay(dirtyDate, Date.now());\n}","import toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isSameYear\n * @category Year Helpers\n * @summary Are the given dates in the same year?\n *\n * @description\n * Are the given dates in the same year?\n *\n * @param {Date|Number} dateLeft - the first date to check\n * @param {Date|Number} dateRight - the second date to check\n * @returns {Boolean} the dates are in the same year\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Are 2 September 2014 and 25 September 2014 in the same year?\n * const result = isSameYear(new Date(2014, 8, 2), new Date(2014, 8, 25))\n * //=> true\n */\nexport default function isSameYear(dirtyDateLeft, dirtyDateRight) {\n requiredArgs(2, arguments);\n var dateLeft = toDate(dirtyDateLeft);\n var dateRight = toDate(dirtyDateRight);\n return dateLeft.getFullYear() === dateRight.getFullYear();\n}","import isSameYear from \"../isSameYear/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isThisYear\n * @category Year Helpers\n * @summary Is the given date in the same year as the current date?\n * @pure false\n *\n * @description\n * Is the given date in the same year as the current date?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is in this year\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 25 September 2014, is 2 July 2014 in this year?\n * const result = isThisYear(new Date(2014, 6, 2))\n * //=> true\n */\nexport default function isThisYear(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameYear(dirtyDate, Date.now());\n}","import toInteger from \"../_lib/toInteger/index.js\";\nimport toDate from \"../toDate/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name addDays\n * @category Day Helpers\n * @summary Add the specified number of days to the given date.\n *\n * @description\n * Add the specified number of days to the given date.\n *\n * @param {Date|Number} date - the date to be changed\n * @param {Number} amount - the amount of days to be added. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`.\n * @returns {Date} - the new date with the days added\n * @throws {TypeError} - 2 arguments required\n *\n * @example\n * // Add 10 days to 1 September 2014:\n * const result = addDays(new Date(2014, 8, 1), 10)\n * //=> Thu Sep 11 2014 00:00:00\n */\nexport default function addDays(dirtyDate, dirtyAmount) {\n requiredArgs(2, arguments);\n var date = toDate(dirtyDate);\n var amount = toInteger(dirtyAmount);\n if (isNaN(amount)) {\n return new Date(NaN);\n }\n if (!amount) {\n // If 0 days, no-op to avoid changing times in the hour before end of DST\n return date;\n }\n date.setDate(date.getDate() + amount);\n return date;\n}","import addDays from \"../addDays/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\nimport toInteger from \"../_lib/toInteger/index.js\";\n/**\n * @name subDays\n * @category Day Helpers\n * @summary Subtract the specified number of days from the given date.\n *\n * @description\n * Subtract the specified number of days from the given date.\n *\n * @param {Date|Number} date - the date to be changed\n * @param {Number} amount - the amount of days to be subtracted. Positive decimals will be rounded using `Math.floor`, decimals less than zero will be rounded using `Math.ceil`.\n * @returns {Date} the new date with the days subtracted\n * @throws {TypeError} 2 arguments required\n *\n * @example\n * // Subtract 10 days from 1 September 2014:\n * const result = subDays(new Date(2014, 8, 1), 10)\n * //=> Fri Aug 22 2014 00:00:00\n */\nexport default function subDays(dirtyDate, dirtyAmount) {\n requiredArgs(2, arguments);\n var amount = toInteger(dirtyAmount);\n return addDays(dirtyDate, -amount);\n}","import isSameDay from \"../isSameDay/index.js\";\nimport subDays from \"../subDays/index.js\";\nimport requiredArgs from \"../_lib/requiredArgs/index.js\";\n/**\n * @name isYesterday\n * @category Day Helpers\n * @summary Is the given date yesterday?\n * @pure false\n *\n * @description\n * Is the given date yesterday?\n *\n * > ⚠️ Please note that this function is not present in the FP submodule as\n * > it uses `Date.now()` internally hence impure and can't be safely curried.\n *\n * @param {Date|Number} date - the date to check\n * @returns {Boolean} the date is yesterday\n * @throws {TypeError} 1 argument required\n *\n * @example\n * // If today is 6 October 2014, is 5 October 14:00:00 yesterday?\n * const result = isYesterday(new Date(2014, 9, 5, 14, 0))\n * //=> true\n */\nexport default function isYesterday(dirtyDate) {\n requiredArgs(1, arguments);\n return isSameDay(dirtyDate, subDays(Date.now(), 1));\n}"],"names":[],"mappings":";;;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE;AAC3C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,SAAS,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;AAC1C;;ACxBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,aAAa,EAAE,cAAc,EAAE;AAClE,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,QAAQ,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC;AACvC,EAAE,IAAI,SAAS,GAAG,MAAM,CAAC,cAAc,CAAC,CAAC;AACzC,EAAE,OAAO,QAAQ,CAAC,WAAW,EAAE,KAAK,SAAS,CAAC,WAAW,EAAE,CAAC;AAC5D;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,UAAU,CAAC,SAAS,EAAE;AAC9C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,UAAU,CAAC,SAAS,EAAE,IAAI,CAAC,GAAG,EAAE,CAAC,CAAC;AAC3C;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE;AACxD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,IAAI,GAAG,MAAM,CAAC,SAAS,CAAC,CAAC;AAC/B,EAAE,IAAI,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC,CAAC;AACtC,EAAE,IAAI,KAAK,CAAC,MAAM,CAAC,EAAE;AACrB,IAAI,OAAO,IAAI,IAAI,CAAC,GAAG,CAAC,CAAC;AACzB,GAAG;AACH,EAAE,IAAI,CAAC,MAAM,EAAE;AACf;AACA,IAAI,OAAO,IAAI,CAAC;AAChB,GAAG;AACH,EAAE,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,MAAM,CAAC,CAAC;AACxC,EAAE,OAAO,IAAI,CAAC;AACd;;AC/BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,OAAO,CAAC,SAAS,EAAE,WAAW,EAAE;AACxD,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,IAAI,MAAM,GAAG,SAAS,CAAC,WAAW,CAAC,CAAC;AACtC,EAAE,OAAO,OAAO,CAAC,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;AACrC;;ACtBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACe,SAAS,WAAW,CAAC,SAAS,EAAE;AAC/C,EAAE,YAAY,CAAC,CAAC,EAAE,SAAS,CAAC,CAAC;AAC7B,EAAE,OAAO,SAAS,CAAC,SAAS,EAAE,OAAO,CAAC,IAAI,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC;AACtD;;;;","x_google_ignoreList":[0,1,2,3,4,5]}
@@ -4,17 +4,17 @@ import IconButton from '../ui/IconButton.js';
4
4
  import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
5
5
  import ContextMenu, { MenuItems, OperatorMenuItem, MuteMenuItem, MenuItem } from '../ui/ContextMenu.js';
6
6
  import UserListItem$1 from '../ChannelSettings/components/UserListItem.js';
7
- import { c as __spreadArray, a as __awaiter, b as __generator, e as __rest } from './bundle-DAhJtn85.js';
7
+ import { c as __spreadArray, a as __awaiter, b as __generator, e as __rest } from './bundle-DdIo_zFs.js';
8
8
  import { Role } from '@sendbird/chat';
9
- import { M as Modal } from './bundle-BFCOE4_P.js';
9
+ import { M as Modal } from './bundle-C7vkuHMJ.js';
10
10
  import UserListItem from '../ui/UserListItem.js';
11
- import { n as noop } from './bundle-hrN1SZ_Z.js';
11
+ import { n as noop } from './bundle-BPHZWcCv.js';
12
12
  import { useChannelSettingsContext } from '../ChannelSettings/context.js';
13
13
  import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
14
- import { L as LocalizationContext, u as useLocalization } from './bundle-QA2AznoN.js';
15
- import { u as useOnScrollPositionChangeDetector } from './bundle-DQovOEGD.js';
16
- import './bundle-_Bh5w9NL.js';
17
- import { u as uuidv4 } from './bundle-Bb9hzsLY.js';
14
+ import { L as LocalizationContext, u as useLocalization } from './bundle-DT4DSBZo.js';
15
+ import { u as useOnScrollPositionChangeDetector } from './bundle-vrHvkBOt.js';
16
+ import './bundle-DEtCTxPD.js';
17
+ import { u as uuidv4 } from './bundle-BJuiDRhf.js';
18
18
 
19
19
  function MembersModal(_a) {
20
20
  var _this = this;
@@ -281,4 +281,4 @@ var MemberList = function () {
281
281
  };
282
282
 
283
283
  export { MemberList as M };
284
- //# sourceMappingURL=bundle-D2GBxmuh.js.map
284
+ //# sourceMappingURL=bundle-BxHNvmlk.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-D2GBxmuh.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-BxHNvmlk.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -69,4 +69,4 @@ var MediaQueryProvider = function (props) {
69
69
  var useMediaQueryContext = function () { return React__default.useContext(MediaQueryContext); };
70
70
 
71
71
  export { MediaQueryProvider as M, useMediaQueryContext as u };
72
- //# sourceMappingURL=bundle-BHKxRZez.js.map
72
+ //# sourceMappingURL=bundle-ByOz6UaI.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-ByOz6UaI.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,11 +1,11 @@
1
1
  import React__default, { useContext } from 'react';
2
- import { M as Modal } from './bundle-BFCOE4_P.js';
3
- import './bundle-DAhJtn85.js';
4
- import './bundle-_Bh5w9NL.js';
2
+ import { M as Modal } from './bundle-C7vkuHMJ.js';
3
+ import './bundle-DdIo_zFs.js';
4
+ import './bundle-DEtCTxPD.js';
5
5
  import { ButtonTypes } from '../ui/Button.js';
6
- import { L as LocalizationContext } from './bundle-QA2AznoN.js';
6
+ import { L as LocalizationContext } from './bundle-DT4DSBZo.js';
7
7
  import { useThreadContext } from '../Thread/context.js';
8
- import { g as getModalDeleteMessageTitle } from './bundle-DayugpLd.js';
8
+ import { g as getModalDeleteMessageTitle } from './bundle-CoKBNINX.js';
9
9
 
10
10
  var RemoveMessage = function (props) {
11
11
  var _a, _b;
@@ -21,4 +21,4 @@ var RemoveMessage = function (props) {
21
21
  };
22
22
 
23
23
  export { RemoveMessage as R };
24
- //# sourceMappingURL=bundle-DNSTH1vf.js.map
24
+ //# sourceMappingURL=bundle-C0OqoVhE.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-C0OqoVhE.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -17,4 +17,4 @@ var AddGroupChannelView = function (_a) {
17
17
  };
18
18
 
19
19
  export { AddGroupChannelView as A };
20
- //# sourceMappingURL=bundle-C6Uejzft.js.map
20
+ //# sourceMappingURL=bundle-C5TWIrbF.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-C5TWIrbF.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;"}
@@ -1,25 +1,25 @@
1
- import { c as __spreadArray, _ as __assign } from './bundle-DAhJtn85.js';
1
+ import { c as __spreadArray, _ as __assign } from './bundle-DdIo_zFs.js';
2
2
  import React__default, { useContext, useState, useEffect, createContext, useCallback, useMemo } from 'react';
3
- import { K } from './bundle-DvK0GCH4.js';
4
- import { c as classnames, n as noop } from './bundle-hrN1SZ_Z.js';
3
+ import { K } from './bundle-VXXJZkam.js';
4
+ import { c as classnames, n as noop } from './bundle-BPHZWcCv.js';
5
5
  import { createPortal } from 'react-dom';
6
- import { L as LocalizationContext, u as useLocalization } from './bundle-QA2AznoN.js';
7
- import { u as useMediaQueryContext } from './bundle-BHKxRZez.js';
6
+ import { L as LocalizationContext, u as useLocalization } from './bundle-DT4DSBZo.js';
7
+ import { u as useMediaQueryContext } from './bundle-ByOz6UaI.js';
8
8
  import IconButton from '../ui/IconButton.js';
9
9
  import Button, { ButtonTypes } from '../ui/Button.js';
10
10
  import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
11
- import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-_Bh5w9NL.js';
11
+ import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-DEtCTxPD.js';
12
12
  import '@sendbird/uikit-tools';
13
13
  import '../withSendbird.js';
14
14
  import 'css-vars-ponyfill';
15
15
  import '@sendbird/chat';
16
- import { u as uuidv4 } from './bundle-Bb9hzsLY.js';
16
+ import { u as uuidv4 } from './bundle-BJuiDRhf.js';
17
17
  import '@sendbird/chat/openChannel';
18
18
  import '@sendbird/chat/groupChannel';
19
- import './bundle-DeixUZhs.js';
20
- import { B as BROWSER_SUPPORT_MIME_TYPE_LIST, j as VOICE_RECORDER_AUDIO_BIT_RATE, e as VOICE_MESSAGE_FILE_NAME, a as VOICE_MESSAGE_MIME_TYPE } from './bundle-CvQV9eyL.js';
19
+ import './bundle-DEc9jVCz.js';
20
+ import { B as BROWSER_SUPPORT_MIME_TYPE_LIST, j as VOICE_RECORDER_AUDIO_BIT_RATE, e as VOICE_MESSAGE_FILE_NAME, a as VOICE_MESSAGE_MIME_TYPE } from './bundle-B9jaULeT.js';
21
21
  import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
22
- import './bundle-BqZPj8WV.js';
22
+ import './bundle-p7o7XIwK.js';
23
23
 
24
24
  // simple component to be used as modal root
25
25
  var MODAL_ROOT = 'sendbird-modal-root';
@@ -93,7 +93,7 @@ var VoiceRecorderProvider = function (props) {
93
93
  }
94
94
  useEffect(function () {
95
95
  if (isVoiceMessageEnabled && !webAudioUtils) {
96
- import('./bundle-BCDYwF2y.js').then(function (module) { return setWebAudioUtils(module); });
96
+ import('./bundle-BnTQqt6n.js').then(function (module) { return setWebAudioUtils(module); });
97
97
  }
98
98
  }, [isVoiceMessageEnabled, webAudioUtils]);
99
99
  var start = useCallback(function (eventHandler) {
@@ -271,4 +271,4 @@ var EmojiManager = /** @class */ (function () {
271
271
  }());
272
272
 
273
273
  export { EmojiManager as E, GlobalModalProvider as G, Modal as M, VoiceRecorderProvider as V, MODAL_ROOT as a, useGlobalModalContext as b, ModalFooter as c, ModalRoot as d, ModalHeader as e, ModalBody as f, index as i, useVoiceRecorderContext as u };
274
- //# sourceMappingURL=bundle-BFCOE4_P.js.map
274
+ //# sourceMappingURL=bundle-C7vkuHMJ.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-BFCOE4_P.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-C7vkuHMJ.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -32,4 +32,4 @@ var pubSubFactory = function (opts) {
32
32
  };
33
33
 
34
34
  export { pubSubFactory as p };
35
- //# sourceMappingURL=bundle-CRRsbsT6.js.map
35
+ //# sourceMappingURL=bundle-CCLbyHL5.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-CCLbyHL5.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,19 +1,19 @@
1
- import { _ as __assign } from './bundle-DAhJtn85.js';
1
+ import { _ as __assign } from './bundle-DdIo_zFs.js';
2
2
  import React__default, { useState } from 'react';
3
3
  import { useSendbirdStateContext } from '../useSendbirdStateContext.js';
4
- import { u as useLongPress } from './bundle-NQPHGdv2.js';
5
- import { u as useLocalization } from './bundle-QA2AznoN.js';
6
- import { u as useMediaQueryContext } from './bundle-BHKxRZez.js';
7
- import { n as noop } from './bundle-hrN1SZ_Z.js';
8
- import { i as isVoiceMessage } from './bundle-DvK0GCH4.js';
9
- import { a as getTotalMembers, M as MessageStatus, b as getLastMessageCreatedAt, c as getLastMessage, d as getChannelUnreadMessageCount } from './bundle-BYCZrlDX.js';
4
+ import { u as useLongPress } from './bundle-DhI4QWLh.js';
5
+ import { u as useLocalization } from './bundle-DT4DSBZo.js';
6
+ import { u as useMediaQueryContext } from './bundle-ByOz6UaI.js';
7
+ import { n as noop } from './bundle-BPHZWcCv.js';
8
+ import { i as isVoiceMessage } from './bundle-VXXJZkam.js';
9
+ import { a as getTotalMembers, M as MessageStatus, b as getLastMessageCreatedAt, c as getLastMessage, d as getChannelUnreadMessageCount } from './bundle-uQmOP01H.js';
10
10
  import { TypingIndicatorText } from '../GroupChannel/components/TypingIndicator.js';
11
11
  import Badge from '../ui/Badge.js';
12
12
  import ChannelAvatar from '../ui/ChannelAvatar.js';
13
13
  import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
14
- import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-_Bh5w9NL.js';
14
+ import { L as Label, a as LabelTypography, b as LabelColors } from './bundle-DEtCTxPD.js';
15
15
  import MentionUserLabel from '../ui/MentionUserLabel.js';
16
- import { M as Modal } from './bundle-BFCOE4_P.js';
16
+ import { M as Modal } from './bundle-C7vkuHMJ.js';
17
17
  import TextButton from '../ui/TextButton.js';
18
18
 
19
19
  var GroupChannelListItemView = function (_a) {
@@ -84,4 +84,4 @@ var GroupChannelListItemView = function (_a) {
84
84
  };
85
85
 
86
86
  export { GroupChannelListItemView as G };
87
- //# sourceMappingURL=bundle-DMqUFkSM.js.map
87
+ //# sourceMappingURL=bundle-CEQrkcG2.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-CEQrkcG2.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -19,4 +19,4 @@ var UserProfileProvider = function (_a) {
19
19
  };
20
20
 
21
21
  export { UserProfileProvider as U, UserProfileContext as a };
22
- //# sourceMappingURL=bundle-j-10ix2k.js.map
22
+ //# sourceMappingURL=bundle-CFVWrfBk.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-CFVWrfBk.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,9 +1,9 @@
1
- import { c as __spreadArray } from './bundle-DAhJtn85.js';
1
+ import { c as __spreadArray } from './bundle-DdIo_zFs.js';
2
2
  import React__default from 'react';
3
3
  import ImageRenderer from '../ui/ImageRenderer.js';
4
- import { p as pxToNumber } from './bundle-9PpKWOoL.js';
4
+ import { p as pxToNumber } from './bundle-BU88BWC9.js';
5
5
  import Icon, { IconTypes, IconColors } from '../ui/Icon.js';
6
- import { c as classnames } from './bundle-hrN1SZ_Z.js';
6
+ import { c as classnames } from './bundle-BPHZWcCv.js';
7
7
 
8
8
  var AvatarDefault = function (props) {
9
9
  var width = props.width, height = props.height, text = props.text;
@@ -68,4 +68,4 @@ function Avatar(_a, ref) {
68
68
  var Avatar$1 = React__default.forwardRef(Avatar);
69
69
 
70
70
  export { Avatar$1 as A, AvatarDefault as a, AvatarInner as b };
71
- //# sourceMappingURL=bundle-C6yJQcQ5.js.map
71
+ //# sourceMappingURL=bundle-CKHDZj3X.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-CKHDZj3X.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -26,4 +26,4 @@ function getCaseResolvedThreadReplySelectType(threadReplySelectType) {
26
26
  }
27
27
 
28
28
  export { getCaseResolvedThreadReplySelectType as a, getCaseResolvedReplyType as g };
29
- //# sourceMappingURL=bundle-B_7ai8FD.js.map
29
+ //# sourceMappingURL=bundle-COi-bE-H.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-B_7ai8FD.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-COi-bE-H.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,9 +1,9 @@
1
1
  import { useCallback, useEffect } from 'react';
2
2
  import { ReplyType } from '@sendbird/chat/message';
3
- import { s as scrollIntoLast, c as scrollToRenderedMessage } from './bundle-0CUx7mAi.js';
4
- import { R as RESET_MESSAGES, M as MESSAGE_LIST_PARAMS_CHANGED, F as FETCH_INITIAL_MESSAGES_START, a as FETCH_INITIAL_MESSAGES_SUCCESS, b as FETCH_INITIAL_MESSAGES_FAILURE } from './bundle-D8uYbr-P.js';
5
- import './bundle-CMr-IO14.js';
6
- import { c as SCROLL_BOTTOM_DELAY_FOR_FETCH } from './bundle-CvQV9eyL.js';
3
+ import { s as scrollIntoLast, c as scrollToRenderedMessage } from './bundle-DZj625VH.js';
4
+ import { R as RESET_MESSAGES, M as MESSAGE_LIST_PARAMS_CHANGED, F as FETCH_INITIAL_MESSAGES_START, a as FETCH_INITIAL_MESSAGES_SUCCESS, b as FETCH_INITIAL_MESSAGES_FAILURE } from './bundle-BMIlxeLF.js';
5
+ import './bundle-YkcGOzNM.js';
6
+ import { c as SCROLL_BOTTOM_DELAY_FOR_FETCH } from './bundle-B9jaULeT.js';
7
7
 
8
8
  // For legacy
9
9
  // These are not used for collections(GroupChannel)
@@ -100,4 +100,4 @@ function useInitialMessagesFetch(_a, _b) {
100
100
  }
101
101
 
102
102
  export { NEXT_RESULT_SIZE as N, PREV_RESULT_SIZE as P, useInitialMessagesFetch as u };
103
- //# sourceMappingURL=bundle-BIlm8Es9.js.map
103
+ //# sourceMappingURL=bundle-CVozsUjP.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"bundle-BIlm8Es9.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"bundle-CVozsUjP.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -1,4 +1,4 @@
1
- import { c as __spreadArray } from './bundle-DAhJtn85.js';
1
+ import { c as __spreadArray } from './bundle-DdIo_zFs.js';
2
2
 
3
3
  var USER_MENTION_PREFIX = '@';
4
4
 
@@ -143,4 +143,4 @@ function getWhiteSpacePreservedText(text) {
143
143
  }
144
144
 
145
145
  export { TOKEN_TYPES as T, USER_MENTION_PREFIX as U, getWhiteSpacePreservedText as g, tokenizeMessage as t };
146
- //# sourceMappingURL=bundle-lrWED2TX.js.map
146
+ //# sourceMappingURL=bundle-CjpdKqHs.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"bundle-CjpdKqHs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -2006,4 +2006,4 @@ function MessageTemplate(_a) {
2006
2006
  }
2007
2007
 
2008
2008
  export { CompositeComponentType as C, MessageProvider as M, MessageTemplate as a };
2009
- //# sourceMappingURL=bundle-DJs88q7W.js.map
2009
+ //# sourceMappingURL=bundle-CmkJzmJF.js.map