@sendbird/uikit-react 3.14.5 → 3.14.6
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.
- package/.env +3 -0
- package/App.js +83 -83
- package/CHANGELOG.md +4 -0
- package/Channel/components/ChannelHeader.js +29 -29
- package/Channel/components/ChannelUI.js +63 -63
- package/Channel/components/FileViewer.js +29 -29
- package/Channel/components/FrozenNotification.js +6 -5
- package/Channel/components/FrozenNotification.js.map +1 -1
- package/Channel/components/Message.js +57 -54
- package/Channel/components/Message.js.map +1 -1
- package/Channel/components/MessageInput.js +46 -46
- package/Channel/components/MessageInputWrapper.js +41 -41
- package/Channel/components/MessageList.js +59 -59
- package/Channel/components/RemoveMessageModal.js +28 -28
- package/Channel/components/SuggestedMentionList.js +26 -26
- package/Channel/components/TypingIndicator.js +6 -6
- package/Channel/components/UnreadCount.js +7 -7
- package/Channel/context.js +107 -133
- package/Channel/context.js.map +1 -1
- package/Channel/hooks/useHandleUploadFiles.js +15 -15
- package/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/Channel/utils/compareMessagesForGrouping.js +4 -4
- package/Channel/utils/getMessagePartsInfo.js +8 -8
- package/Channel.js +63 -63
- package/ChannelList/components/AddChannel.js +22 -22
- package/ChannelList/components/ChannelListHeader.js +10 -10
- package/ChannelList/components/ChannelListUI.js +36 -36
- package/ChannelList/components/ChannelPreview.js +28 -28
- package/ChannelList/components/ChannelPreviewAction.js +13 -13
- package/ChannelList/context.js +9 -9
- package/ChannelList.js +35 -35
- package/ChannelSettings/components/ChannelProfile.js +20 -20
- package/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
- package/ChannelSettings/components/ChannelSettingsUI.js +26 -26
- package/ChannelSettings/components/EditDetailsModal.js +32 -27
- package/ChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/ChannelSettings/components/LeaveChannel.js +16 -16
- package/ChannelSettings/components/ModerationPanel.js +39 -36
- package/ChannelSettings/components/ModerationPanel.js.map +1 -1
- package/ChannelSettings/components/UserListItem.js +19 -19
- package/ChannelSettings/components/UserPanel.js +22 -22
- package/ChannelSettings/context.js +10 -5
- package/ChannelSettings/context.js.map +1 -1
- package/ChannelSettings.js +23 -23
- package/CreateChannel/components/CreateChannelUI.js +19 -19
- package/CreateChannel/components/InviteUsers.js +28 -31
- package/CreateChannel/components/InviteUsers.js.map +1 -1
- package/CreateChannel/components/SelectChannelType.js +16 -16
- package/CreateChannel/context.js +4 -4
- package/CreateChannel.js +18 -18
- package/CreateOpenChannel/components/CreateOpenChannelUI.js +26 -22
- package/CreateOpenChannel/components/CreateOpenChannelUI.js.map +1 -1
- package/CreateOpenChannel/context.js +10 -10
- package/CreateOpenChannel.js +16 -16
- package/EditUserProfile/components/EditUserProfileUI.js +26 -22
- package/EditUserProfile/components/EditUserProfileUI.js.map +1 -1
- package/EditUserProfile/context.js +12 -13
- package/EditUserProfile/context.js.map +1 -1
- package/EditUserProfile.js +17 -17
- package/GroupChannel/components/FileViewer.js +28 -29
- package/GroupChannel/components/FileViewer.js.map +1 -1
- package/GroupChannel/components/FrozenNotification.js +7 -6
- package/GroupChannel/components/FrozenNotification.js.map +1 -1
- package/GroupChannel/components/GroupChannelHeader.js +24 -24
- package/GroupChannel/components/GroupChannelUI.js +58 -58
- package/GroupChannel/components/Message.js +55 -52
- package/GroupChannel/components/Message.js.map +1 -1
- package/GroupChannel/components/MessageInputWrapper.js +41 -41
- package/GroupChannel/components/MessageList.js +53 -53
- package/GroupChannel/components/RemoveMessageModal.js +25 -25
- package/GroupChannel/components/SuggestedMentionList.js +12 -12
- package/GroupChannel/components/TypingIndicator.js +6 -6
- package/GroupChannel/components/UnreadCount.js +8 -8
- package/GroupChannel/context.js +39 -31
- package/GroupChannel/context.js.map +1 -1
- package/GroupChannel.js +58 -58
- package/GroupChannelList/components/AddGroupChannel.js +20 -20
- package/GroupChannelList/components/GroupChannelListHeader.js +11 -11
- package/GroupChannelList/components/GroupChannelListItem.js +26 -26
- package/GroupChannelList/components/GroupChannelListUI.js +35 -35
- package/GroupChannelList/components/GroupChannelPreviewAction.js +14 -14
- package/GroupChannelList/context.js +5 -5
- package/GroupChannelList.js +34 -34
- package/MessageSearch/components/MessageSearchUI.js +21 -22
- package/MessageSearch/components/MessageSearchUI.js.map +1 -1
- package/MessageSearch/context.js +18 -10
- package/MessageSearch/context.js.map +1 -1
- package/MessageSearch.js +24 -25
- package/MessageSearch.js.map +1 -1
- package/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/OpenChannel/components/OpenChannelHeader.js +20 -20
- package/OpenChannel/components/OpenChannelInput.js +26 -26
- package/OpenChannel/components/OpenChannelMessage.js +37 -37
- package/OpenChannel/components/OpenChannelMessageList.js +43 -42
- package/OpenChannel/components/OpenChannelMessageList.js.map +1 -1
- package/OpenChannel/components/OpenChannelUI.js +40 -40
- package/OpenChannel/context.js +19 -19
- package/OpenChannel.js +40 -40
- package/OpenChannelList/components/OpenChannelListUI.js +18 -18
- package/OpenChannelList/components/OpenChannelPreview.js +8 -8
- package/OpenChannelList/context.js +3 -3
- package/OpenChannelList.js +18 -18
- package/OpenChannelSettings/components/EditDetailsModal.js +34 -30
- package/OpenChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/OpenChannelSettings/components/OpenChannelProfile.js +19 -19
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js +22 -22
- package/OpenChannelSettings/components/OperatorUI.js +56 -49
- package/OpenChannelSettings/components/OperatorUI.js.map +1 -1
- package/OpenChannelSettings/components/ParticipantUI.js +18 -18
- package/OpenChannelSettings/context.js +10 -5
- package/OpenChannelSettings/context.js.map +1 -1
- package/OpenChannelSettings.js +20 -20
- package/SendbirdProvider.js +37 -43
- package/SendbirdProvider.js.map +1 -1
- package/Thread/components/ParentMessageInfo.js +52 -51
- package/Thread/components/ParentMessageInfo.js.map +1 -1
- package/Thread/components/ParentMessageInfoItem.js +43 -41
- package/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/Thread/components/ThreadHeader.js +9 -9
- package/Thread/components/ThreadList.js +48 -48
- package/Thread/components/ThreadListItem.js +56 -58
- package/Thread/components/ThreadListItem.js.map +1 -1
- package/Thread/components/ThreadMessageInput.js +46 -46
- package/Thread/components/ThreadUI.js +60 -58
- package/Thread/components/ThreadUI.js.map +1 -1
- package/Thread/context.js +28 -38
- package/Thread/context.js.map +1 -1
- package/Thread.js +56 -56
- package/VoicePlayer/context.js +3 -3
- package/VoicePlayer/useVoicePlayer.js +17 -17
- package/VoiceRecorder/context.js +13 -13
- package/VoiceRecorder/useVoiceRecorder.js +20 -20
- package/chunks/{bundle-Cj-w5I5i.js → bundle-3Mubyujl.js} +1 -1
- package/chunks/bundle-3Mubyujl.js.map +1 -0
- package/chunks/{bundle-DEFOjZw9.js → bundle-B-DnYw4p.js} +4 -4
- package/chunks/bundle-B-DnYw4p.js.map +1 -0
- package/chunks/{bundle-YveljAuC.js → bundle-B3nNazhn.js} +1 -1
- package/chunks/bundle-B3nNazhn.js.map +1 -0
- package/chunks/{bundle-BI0n-T1b.js → bundle-B3sFrr1p.js} +4 -4
- package/chunks/bundle-B3sFrr1p.js.map +1 -0
- package/chunks/{bundle-DG8DFRNL.js → bundle-B3xB7_P4.js} +6 -5
- package/chunks/{bundle-DG8DFRNL.js.map → bundle-B3xB7_P4.js.map} +1 -1
- package/chunks/{bundle-Cw_yF4Vi.js → bundle-B4izwMfD.js} +1 -1
- package/chunks/bundle-B4izwMfD.js.map +1 -0
- package/chunks/{bundle-E4462uBn.js → bundle-B65gr4tC.js} +1 -1
- package/chunks/bundle-B65gr4tC.js.map +1 -0
- package/chunks/{bundle-CDMcNani.js → bundle-B9ue8vfn.js} +6 -5
- package/chunks/{bundle-CDMcNani.js.map → bundle-B9ue8vfn.js.map} +1 -1
- package/chunks/{bundle-BxaysvGU.js → bundle-BFa8UJ8b.js} +2 -2
- package/chunks/bundle-BFa8UJ8b.js.map +1 -0
- package/chunks/{bundle-Br_sURBN.js → bundle-BKVuhi2w.js} +1 -1
- package/chunks/bundle-BKVuhi2w.js.map +1 -0
- package/chunks/{bundle-D2MpL8t0.js → bundle-BMQLJ23N.js} +16 -11
- package/chunks/{bundle-D2MpL8t0.js.map → bundle-BMQLJ23N.js.map} +1 -1
- package/chunks/{bundle-Cdx5L_Jm.js → bundle-BRZDoZIQ.js} +3 -3
- package/chunks/bundle-BRZDoZIQ.js.map +1 -0
- package/chunks/{bundle-SI5OarjR.js → bundle-BWiA6-mB.js} +3 -3
- package/chunks/{bundle-SI5OarjR.js.map → bundle-BWiA6-mB.js.map} +1 -1
- package/chunks/{bundle-cgNuve_E.js → bundle-BYyMnx0z.js} +2 -2
- package/chunks/bundle-BYyMnx0z.js.map +1 -0
- package/chunks/{bundle-Y_WIAHds.js → bundle-BaXke8XU.js} +3 -3
- package/chunks/bundle-BaXke8XU.js.map +1 -0
- package/chunks/{bundle-HFOQJZAX.js → bundle-Bd6fN8eX.js} +1 -1
- package/chunks/bundle-Bd6fN8eX.js.map +1 -0
- package/chunks/{bundle-C1XVT5qc.js → bundle-BgL9QnGd.js} +5 -4
- package/chunks/bundle-BgL9QnGd.js.map +1 -0
- package/chunks/{bundle-B26G55qN.js → bundle-BiK_ngKm.js} +1 -1
- package/chunks/{bundle-B26G55qN.js.map → bundle-BiK_ngKm.js.map} +1 -1
- package/chunks/{bundle-CUOi3VHK.js → bundle-BjTYwue9.js} +5 -5
- package/chunks/{bundle-CUOi3VHK.js.map → bundle-BjTYwue9.js.map} +1 -1
- package/chunks/{bundle-BQPvwBK8.js → bundle-Bmk2FVdj.js} +1 -1
- package/chunks/bundle-Bmk2FVdj.js.map +1 -0
- package/chunks/{bundle-hF8Gurf8.js → bundle-Boh0Ffwo.js} +1 -1
- package/chunks/bundle-Boh0Ffwo.js.map +1 -0
- package/chunks/{bundle-C8hyJJ4a.js → bundle-C093wLqR.js} +10 -9
- package/chunks/{bundle-C8hyJJ4a.js.map → bundle-C093wLqR.js.map} +1 -1
- package/chunks/{bundle-B4q4jk6S.js → bundle-C3gISq8S.js} +31 -26
- package/chunks/bundle-C3gISq8S.js.map +1 -0
- package/chunks/{bundle-CTqXLoJ-.js → bundle-C7Vw36CA.js} +1 -1
- package/chunks/{bundle-CTqXLoJ-.js.map → bundle-C7Vw36CA.js.map} +1 -1
- package/chunks/{bundle-C2B-jwQF.js → bundle-C8jE79mn.js} +1 -1
- package/chunks/bundle-C8jE79mn.js.map +1 -0
- package/chunks/{bundle-u9Zl-7Je.js → bundle-CFgnDIJC.js} +1 -1
- package/chunks/bundle-CFgnDIJC.js.map +1 -0
- package/chunks/{bundle-DiVyB2HD.js → bundle-CGmq3qGM.js} +25 -30
- package/chunks/bundle-CGmq3qGM.js.map +1 -0
- package/chunks/{bundle-DudTIr4X.js → bundle-COYqO05C.js} +1 -1
- package/chunks/bundle-COYqO05C.js.map +1 -0
- package/chunks/{bundle-B8F-tpmW.js → bundle-COd0N3nE.js} +34 -30
- package/chunks/{bundle-B8F-tpmW.js.map → bundle-COd0N3nE.js.map} +1 -1
- package/chunks/{bundle-DHrYAkRt.js → bundle-COoyrRF6.js} +2 -1
- package/chunks/bundle-COoyrRF6.js.map +1 -0
- package/chunks/{bundle-C5i4dn9q.js → bundle-CWXSCBTE.js} +1 -1
- package/chunks/bundle-CWXSCBTE.js.map +1 -0
- package/chunks/{bundle-BD-1uffr.js → bundle-CYknZObK.js} +6 -6
- package/chunks/{bundle-BD-1uffr.js.map → bundle-CYknZObK.js.map} +1 -1
- package/chunks/{bundle-60et0yds.js → bundle-C_dNvBEo.js} +2 -4
- package/chunks/bundle-C_dNvBEo.js.map +1 -0
- package/chunks/{bundle-DElB1Hqa.js → bundle-CbFt9rKR.js} +6 -6
- package/chunks/bundle-CbFt9rKR.js.map +1 -0
- package/chunks/{bundle-B621kS6J.js → bundle-Ce-B4ROs.js} +1 -1
- package/chunks/{bundle-B621kS6J.js.map → bundle-Ce-B4ROs.js.map} +1 -1
- package/chunks/{bundle-BGTq2aZA.js → bundle-Ck_ke5Gq.js} +4 -4
- package/chunks/bundle-Ck_ke5Gq.js.map +1 -0
- package/chunks/{bundle-DYmy2oK3.js → bundle-Cn6S1UKt.js} +11 -11
- package/chunks/bundle-Cn6S1UKt.js.map +1 -0
- package/chunks/{bundle-C6yCDg1g.js → bundle-Cp2PKGXI.js} +18 -17
- package/chunks/{bundle-C6yCDg1g.js.map → bundle-Cp2PKGXI.js.map} +1 -1
- package/chunks/{bundle-CtgXJZJt.js → bundle-CriEArZn.js} +1 -1
- package/chunks/bundle-CriEArZn.js.map +1 -0
- package/chunks/{bundle-2jZ-0hKC.js → bundle-Ct6xKrI3.js} +35 -38
- package/{cjs/chunks/bundle-BEtlTF8Q.js.map → chunks/bundle-Ct6xKrI3.js.map} +1 -1
- package/chunks/{bundle-D-cEFrBM.js → bundle-CttExrDx.js} +19 -35
- package/chunks/{bundle-D-cEFrBM.js.map → bundle-CttExrDx.js.map} +1 -1
- package/chunks/{bundle-DZl5IVWc.js → bundle-D1rcEkoi.js} +2 -2
- package/chunks/{bundle-DZl5IVWc.js.map → bundle-D1rcEkoi.js.map} +1 -1
- package/chunks/{bundle-BXXtOrta.js → bundle-D5P54ZJi.js} +58 -50
- package/chunks/{bundle-BXXtOrta.js.map → bundle-D5P54ZJi.js.map} +1 -1
- package/chunks/{bundle-BfjOoJk6.js → bundle-D9dyuFq0.js} +8 -8
- package/chunks/bundle-D9dyuFq0.js.map +1 -0
- package/chunks/{bundle-CDy_GVNR.js → bundle-DKkCwVCs.js} +1 -1
- package/chunks/{bundle-CDy_GVNR.js.map → bundle-DKkCwVCs.js.map} +1 -1
- package/chunks/{bundle-BA5xmpyI.js → bundle-DKs8lowG.js} +40 -62
- package/chunks/{bundle-BA5xmpyI.js.map → bundle-DKs8lowG.js.map} +1 -1
- package/chunks/{bundle-C8XqVZD9.js → bundle-DQZG-uS3.js} +6 -6
- package/chunks/bundle-DQZG-uS3.js.map +1 -0
- package/chunks/{bundle-D5DtB0L7.js → bundle-DQdztuN4.js} +62 -69
- package/chunks/{bundle-D5DtB0L7.js.map → bundle-DQdztuN4.js.map} +1 -1
- package/chunks/{bundle-ARb5Lm9T.js → bundle-DYErcqMl.js} +2 -2
- package/chunks/bundle-DYErcqMl.js.map +1 -0
- package/chunks/{bundle-DwvN2wPi.js → bundle-DYtgOX1c.js} +6 -6
- package/chunks/bundle-DYtgOX1c.js.map +1 -0
- package/chunks/{bundle-thdxvFU8.js → bundle-DhBuJR0w.js} +3 -2
- package/chunks/bundle-DhBuJR0w.js.map +1 -0
- package/chunks/{bundle-DwPw_RW5.js → bundle-Dk5y6RzJ.js} +1 -1
- package/chunks/bundle-Dk5y6RzJ.js.map +1 -0
- package/chunks/{bundle-9Pg6kODx.js → bundle-DprHnWfH.js} +1 -1
- package/chunks/{bundle-9Pg6kODx.js.map → bundle-DprHnWfH.js.map} +1 -1
- package/chunks/{bundle-uI-GOX6U.js → bundle-DuBg9tG9.js} +2 -2
- package/chunks/bundle-DuBg9tG9.js.map +1 -0
- package/chunks/{bundle-WdeDKCD0.js → bundle-DuRujwfr.js} +10 -10
- package/chunks/bundle-DuRujwfr.js.map +1 -0
- package/chunks/{bundle-e3NlFYfX.js → bundle-Dv6nIlPZ.js} +7 -7
- package/chunks/bundle-Dv6nIlPZ.js.map +1 -0
- package/chunks/{bundle-Chn4Xw78.js → bundle-DvNDJy8Z.js} +2 -2
- package/chunks/bundle-DvNDJy8Z.js.map +1 -0
- package/chunks/{bundle-DhJuLwLJ.js → bundle-Dw9nwO7e.js} +1 -1
- package/chunks/bundle-Dw9nwO7e.js.map +1 -0
- package/chunks/{bundle-2vhBVWLQ.js → bundle-DwJ8HgZK.js} +7 -4
- package/{cjs/chunks/bundle-Bpy7IQta.js.map → chunks/bundle-DwJ8HgZK.js.map} +1 -1
- package/chunks/{bundle-DVc25Jb7.js → bundle-EYdnditu.js} +5 -5
- package/chunks/bundle-EYdnditu.js.map +1 -0
- package/chunks/{bundle-klvZ-YE5.js → bundle-EgWLYRXK.js} +1 -1
- package/chunks/bundle-EgWLYRXK.js.map +1 -0
- package/chunks/{bundle-DoXeGvHN.js → bundle-FfoT30Gt.js} +1 -1
- package/chunks/bundle-FfoT30Gt.js.map +1 -0
- package/chunks/{bundle-Pw31xKtZ.js → bundle-GMapp_Tb.js} +9 -5
- package/chunks/bundle-GMapp_Tb.js.map +1 -0
- package/chunks/{bundle-iA2l_iD3.js → bundle-Ps1Qc3cX.js} +9 -3
- package/chunks/bundle-Ps1Qc3cX.js.map +1 -0
- package/chunks/{bundle-DUVa5cu6.js → bundle-QPuxH0uW.js} +1 -1
- package/chunks/bundle-QPuxH0uW.js.map +1 -0
- package/chunks/{bundle-xHRJMo_A.js → bundle-RoB3xpYU.js} +3 -3
- package/chunks/bundle-RoB3xpYU.js.map +1 -0
- package/chunks/{bundle-DVMiIa_8.js → bundle-RuTR5KRM.js} +13 -13
- package/chunks/{bundle-DVMiIa_8.js.map → bundle-RuTR5KRM.js.map} +1 -1
- package/chunks/{bundle-CLQfFjkS.js → bundle-U_oIvkG2.js} +3 -3
- package/chunks/bundle-U_oIvkG2.js.map +1 -0
- package/chunks/{bundle-Dpj_mOs8.js → bundle-YUF6WfTL.js} +30 -33
- package/chunks/bundle-YUF6WfTL.js.map +1 -0
- package/chunks/{bundle-HhDUyQa4.js → bundle-ZBhGb8Lc.js} +2 -2
- package/chunks/bundle-ZBhGb8Lc.js.map +1 -0
- package/chunks/{bundle-BUMKThPh.js → bundle-gH-X0MYD.js} +17 -16
- package/chunks/{bundle-BEbribQZ.js.map → bundle-gH-X0MYD.js.map} +1 -1
- package/chunks/{bundle-KmtzKHnJ.js → bundle-gNs_MAJh.js} +1 -1
- package/chunks/bundle-gNs_MAJh.js.map +1 -0
- package/chunks/{bundle-BCuW6lS8.js → bundle-h8I0AuUK.js} +2 -2
- package/chunks/bundle-h8I0AuUK.js.map +1 -0
- package/chunks/{bundle-BH5EGLxi.js → bundle-janisM9b.js} +7 -7
- package/chunks/{bundle-BH5EGLxi.js.map → bundle-janisM9b.js.map} +1 -1
- package/chunks/bundle-nfJ9J5Md.js +18 -0
- package/chunks/bundle-nfJ9J5Md.js.map +1 -0
- package/chunks/{bundle-q3jyuKU7.js → bundle-prXB4t_m.js} +3 -3
- package/chunks/bundle-prXB4t_m.js.map +1 -0
- package/chunks/{bundle-BEbribQZ.js → bundle-sX9kxwmI.js} +11 -13
- package/chunks/{bundle-BUMKThPh.js.map → bundle-sX9kxwmI.js.map} +1 -1
- package/chunks/{bundle-DQ3tLeW9.js → bundle-t4qeDosj.js} +2 -2
- package/chunks/{bundle-DQ3tLeW9.js.map → bundle-t4qeDosj.js.map} +1 -1
- package/chunks/{bundle-8J9SSfIS.js → bundle-uIqOEfCa.js} +1 -1
- package/chunks/bundle-uIqOEfCa.js.map +1 -0
- package/chunks/{bundle-CclWZYVY.js → bundle-zwvszN0Y.js} +19 -16
- package/{cjs/chunks/bundle-Cc89qdjT.js.map → chunks/bundle-zwvszN0Y.js.map} +1 -1
- package/cjs/App.js +83 -83
- package/cjs/Channel/components/ChannelHeader.js +29 -29
- package/cjs/Channel/components/ChannelUI.js +63 -63
- package/cjs/Channel/components/FileViewer.js +29 -29
- package/cjs/Channel/components/FrozenNotification.js +6 -5
- package/cjs/Channel/components/FrozenNotification.js.map +1 -1
- package/cjs/Channel/components/Message.js +57 -54
- package/cjs/Channel/components/Message.js.map +1 -1
- package/cjs/Channel/components/MessageInput.js +46 -46
- package/cjs/Channel/components/MessageInputWrapper.js +41 -41
- package/cjs/Channel/components/MessageList.js +59 -59
- package/cjs/Channel/components/RemoveMessageModal.js +28 -28
- package/cjs/Channel/components/SuggestedMentionList.js +26 -26
- package/cjs/Channel/components/TypingIndicator.js +6 -6
- package/cjs/Channel/components/UnreadCount.js +7 -7
- package/cjs/Channel/context.js +107 -133
- package/cjs/Channel/context.js.map +1 -1
- package/cjs/Channel/hooks/useHandleUploadFiles.js +15 -15
- package/cjs/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/cjs/Channel/utils/compareMessagesForGrouping.js +4 -4
- package/cjs/Channel/utils/getMessagePartsInfo.js +8 -8
- package/cjs/Channel.js +63 -63
- package/cjs/ChannelList/components/AddChannel.js +22 -22
- package/cjs/ChannelList/components/ChannelListHeader.js +10 -10
- package/cjs/ChannelList/components/ChannelListUI.js +36 -36
- package/cjs/ChannelList/components/ChannelPreview.js +28 -28
- package/cjs/ChannelList/components/ChannelPreviewAction.js +13 -13
- package/cjs/ChannelList/context.js +9 -9
- package/cjs/ChannelList.js +35 -35
- package/cjs/ChannelSettings/components/ChannelProfile.js +20 -20
- package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js +25 -25
- package/cjs/ChannelSettings/components/EditDetailsModal.js +32 -27
- package/cjs/ChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/cjs/ChannelSettings/components/LeaveChannel.js +16 -16
- package/cjs/ChannelSettings/components/ModerationPanel.js +39 -36
- package/cjs/ChannelSettings/components/ModerationPanel.js.map +1 -1
- package/cjs/ChannelSettings/components/UserListItem.js +19 -19
- package/cjs/ChannelSettings/components/UserPanel.js +22 -22
- package/cjs/ChannelSettings/context.js +10 -5
- package/cjs/ChannelSettings/context.js.map +1 -1
- package/cjs/ChannelSettings.js +23 -23
- package/cjs/CreateChannel/components/CreateChannelUI.js +19 -19
- package/cjs/CreateChannel/components/InviteUsers.js +28 -31
- package/cjs/CreateChannel/components/InviteUsers.js.map +1 -1
- package/cjs/CreateChannel/components/SelectChannelType.js +16 -16
- package/cjs/CreateChannel/context.js +4 -4
- package/cjs/CreateChannel.js +18 -18
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +26 -22
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js.map +1 -1
- package/cjs/CreateOpenChannel/context.js +10 -10
- package/cjs/CreateOpenChannel.js +16 -16
- package/cjs/EditUserProfile/components/EditUserProfileUI.js +26 -22
- package/cjs/EditUserProfile/components/EditUserProfileUI.js.map +1 -1
- package/cjs/EditUserProfile/context.js +11 -12
- package/cjs/EditUserProfile/context.js.map +1 -1
- package/cjs/EditUserProfile.js +17 -17
- package/cjs/GroupChannel/components/FileViewer.js +28 -29
- package/cjs/GroupChannel/components/FileViewer.js.map +1 -1
- package/cjs/GroupChannel/components/FrozenNotification.js +7 -6
- package/cjs/GroupChannel/components/FrozenNotification.js.map +1 -1
- package/cjs/GroupChannel/components/GroupChannelHeader.js +24 -24
- package/cjs/GroupChannel/components/GroupChannelUI.js +58 -58
- package/cjs/GroupChannel/components/Message.js +55 -52
- package/cjs/GroupChannel/components/Message.js.map +1 -1
- package/cjs/GroupChannel/components/MessageInputWrapper.js +40 -40
- package/cjs/GroupChannel/components/MessageList.js +53 -53
- package/cjs/GroupChannel/components/RemoveMessageModal.js +25 -25
- package/cjs/GroupChannel/components/SuggestedMentionList.js +12 -12
- package/cjs/GroupChannel/components/TypingIndicator.js +6 -6
- package/cjs/GroupChannel/components/UnreadCount.js +8 -8
- package/cjs/GroupChannel/context.js +39 -31
- package/cjs/GroupChannel/context.js.map +1 -1
- package/cjs/GroupChannel.js +58 -58
- package/cjs/GroupChannelList/components/AddGroupChannel.js +20 -20
- package/cjs/GroupChannelList/components/GroupChannelListHeader.js +11 -11
- package/cjs/GroupChannelList/components/GroupChannelListItem.js +26 -26
- package/cjs/GroupChannelList/components/GroupChannelListUI.js +35 -35
- package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +14 -14
- package/cjs/GroupChannelList/context.js +5 -5
- package/cjs/GroupChannelList.js +34 -34
- package/cjs/MessageSearch/components/MessageSearchUI.js +21 -22
- package/cjs/MessageSearch/components/MessageSearchUI.js.map +1 -1
- package/cjs/MessageSearch/context.js +18 -10
- package/cjs/MessageSearch/context.js.map +1 -1
- package/cjs/MessageSearch.js +24 -25
- package/cjs/MessageSearch.js.map +1 -1
- package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/cjs/OpenChannel/components/OpenChannelHeader.js +20 -20
- package/cjs/OpenChannel/components/OpenChannelInput.js +26 -26
- package/cjs/OpenChannel/components/OpenChannelMessage.js +37 -37
- package/cjs/OpenChannel/components/OpenChannelMessageList.js +43 -42
- package/cjs/OpenChannel/components/OpenChannelMessageList.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelUI.js +40 -40
- package/cjs/OpenChannel/context.js +19 -19
- package/cjs/OpenChannel.js +40 -40
- package/cjs/OpenChannelList/components/OpenChannelListUI.js +18 -18
- package/cjs/OpenChannelList/components/OpenChannelPreview.js +8 -8
- package/cjs/OpenChannelList/context.js +3 -3
- package/cjs/OpenChannelList.js +18 -18
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js +34 -30
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +19 -19
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +22 -22
- package/cjs/OpenChannelSettings/components/OperatorUI.js +56 -49
- package/cjs/OpenChannelSettings/components/OperatorUI.js.map +1 -1
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +18 -18
- package/cjs/OpenChannelSettings/context.js +10 -5
- package/cjs/OpenChannelSettings/context.js.map +1 -1
- package/cjs/OpenChannelSettings.js +20 -20
- package/cjs/SendbirdProvider.js +37 -43
- package/cjs/SendbirdProvider.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfo.js +52 -51
- package/cjs/Thread/components/ParentMessageInfo.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfoItem.js +43 -41
- package/cjs/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/cjs/Thread/components/ThreadHeader.js +9 -9
- package/cjs/Thread/components/ThreadList.js +48 -48
- package/cjs/Thread/components/ThreadListItem.js +56 -58
- package/cjs/Thread/components/ThreadListItem.js.map +1 -1
- package/cjs/Thread/components/ThreadMessageInput.js +46 -46
- package/cjs/Thread/components/ThreadUI.js +60 -58
- package/cjs/Thread/components/ThreadUI.js.map +1 -1
- package/cjs/Thread/context.js +28 -38
- package/cjs/Thread/context.js.map +1 -1
- package/cjs/Thread.js +56 -56
- package/cjs/VoicePlayer/context.js +3 -3
- package/cjs/VoicePlayer/useVoicePlayer.js +16 -16
- package/cjs/VoiceRecorder/context.js +13 -13
- package/cjs/VoiceRecorder/useVoiceRecorder.js +20 -20
- package/cjs/chunks/{bundle-DvkiHRsE.js → bundle-0t_JDxef.js} +6 -5
- package/cjs/chunks/bundle-0t_JDxef.js.map +1 -0
- package/cjs/chunks/{bundle-ZItyfz7r.js → bundle-133JUAh1.js} +4 -4
- package/cjs/chunks/bundle-133JUAh1.js.map +1 -0
- package/cjs/chunks/{bundle-CpIdIHld.js → bundle-13qq2yWM.js} +10 -10
- package/cjs/chunks/bundle-13qq2yWM.js.map +1 -0
- package/cjs/chunks/{bundle-CDJXrIVC.js → bundle-1A4pOyri.js} +1 -1
- package/cjs/chunks/{bundle-CDJXrIVC.js.map → bundle-1A4pOyri.js.map} +1 -1
- package/cjs/chunks/{bundle-BG8qs_3y.js → bundle-6_B00yYz.js} +1 -1
- package/cjs/chunks/bundle-6_B00yYz.js.map +1 -0
- package/cjs/chunks/{bundle-BvhC4El1.js → bundle-6aemRbmn.js} +18 -17
- package/cjs/chunks/{bundle-BvhC4El1.js.map → bundle-6aemRbmn.js.map} +1 -1
- package/cjs/chunks/{bundle-DpK1fr1j.js → bundle-7CEyuoln.js} +1 -1
- package/cjs/chunks/bundle-7CEyuoln.js.map +1 -0
- package/cjs/chunks/{bundle-B-0_xv9u.js → bundle-86A5Bf9J.js} +9 -3
- package/cjs/chunks/bundle-86A5Bf9J.js.map +1 -0
- package/cjs/chunks/{bundle-BOrMDMdN.js → bundle-A_xDyoq6.js} +30 -33
- package/cjs/chunks/bundle-A_xDyoq6.js.map +1 -0
- package/cjs/chunks/{bundle-DFVUnSWq.js → bundle-B1Ql7yM0.js} +2 -2
- package/cjs/chunks/bundle-B1Ql7yM0.js.map +1 -0
- package/cjs/chunks/{bundle-B2h5VMZ6.js → bundle-B2WuxwoH.js} +2 -2
- package/cjs/chunks/bundle-B2WuxwoH.js.map +1 -0
- package/cjs/chunks/{bundle-D1X4MKLh.js → bundle-BBsKv3Vz.js} +6 -5
- package/{chunks/bundle-B4q4jk6S.js.map → cjs/chunks/bundle-BBsKv3Vz.js.map} +1 -1
- package/cjs/chunks/{bundle-B1uXZFKP.js → bundle-BE-L5873.js} +19 -16
- package/cjs/chunks/{bundle-B1uXZFKP.js.map → bundle-BE-L5873.js.map} +1 -1
- package/cjs/chunks/{bundle-DZMn5ScB.js → bundle-BE1dAigY.js} +6 -6
- package/cjs/chunks/bundle-BE1dAigY.js.map +1 -0
- package/cjs/chunks/{bundle-Ci6F_UQc.js → bundle-BFy8_d3W.js} +1 -1
- package/cjs/chunks/bundle-BFy8_d3W.js.map +1 -0
- package/cjs/chunks/{bundle-CcmMvK6l.js → bundle-BK_SqbHE.js} +1 -1
- package/cjs/chunks/bundle-BK_SqbHE.js.map +1 -0
- package/cjs/chunks/{bundle-8IuV93EV.js → bundle-BLs0JcXs.js} +62 -69
- package/cjs/chunks/{bundle-8IuV93EV.js.map → bundle-BLs0JcXs.js.map} +1 -1
- package/cjs/chunks/{bundle-DWBc-Yv7.js → bundle-BNMoxGCr.js} +1 -1
- package/cjs/chunks/bundle-BNMoxGCr.js.map +1 -0
- package/cjs/chunks/{bundle-Ca7xeBTO.js → bundle-BNzVVkzd.js} +3 -1
- package/cjs/chunks/bundle-BNzVVkzd.js.map +1 -0
- package/cjs/chunks/{bundle-DsrfvJYA.js → bundle-BPV3CKzS.js} +30 -25
- package/cjs/chunks/bundle-BPV3CKzS.js.map +1 -0
- package/cjs/chunks/{bundle-Pfx0MBr4.js → bundle-Bgeq75IH.js} +3 -3
- package/cjs/chunks/bundle-Bgeq75IH.js.map +1 -0
- package/cjs/chunks/{bundle-B4EdciCR.js → bundle-BimsU_nb.js} +2 -1
- package/cjs/chunks/bundle-BimsU_nb.js.map +1 -0
- package/cjs/chunks/{bundle-OCHWYrfg.js → bundle-BtsHzLKX.js} +2 -2
- package/cjs/chunks/bundle-BtsHzLKX.js.map +1 -0
- package/cjs/chunks/{bundle-BMN1aDia.js → bundle-Bvsx1m1J.js} +1 -1
- package/cjs/chunks/bundle-Bvsx1m1J.js.map +1 -0
- package/cjs/chunks/{bundle-DOUm656A.js → bundle-Bw1ttM89.js} +3 -3
- package/cjs/chunks/bundle-Bw1ttM89.js.map +1 -0
- package/cjs/chunks/{bundle-IE4yQ0qq.js → bundle-BzyQ6Vof.js} +1 -1
- package/cjs/chunks/bundle-BzyQ6Vof.js.map +1 -0
- package/cjs/chunks/{bundle-cl2q8NwQ.js → bundle-C1YuUjH3.js} +6 -6
- package/cjs/chunks/bundle-C1YuUjH3.js.map +1 -0
- package/cjs/chunks/{bundle-DFsKxEv-.js → bundle-C4Gs08vJ.js} +34 -30
- package/cjs/chunks/bundle-C4Gs08vJ.js.map +1 -0
- package/cjs/chunks/{bundle-DWGp201o.js → bundle-CA69fSDI.js} +2 -2
- package/cjs/chunks/bundle-CA69fSDI.js.map +1 -0
- package/cjs/chunks/{bundle-ClBBhzU-.js → bundle-CBNBRNN0.js} +1 -1
- package/cjs/chunks/bundle-CBNBRNN0.js.map +1 -0
- package/cjs/chunks/{bundle-hVU-fzqu.js → bundle-CCYpnzRf.js} +58 -50
- package/cjs/chunks/bundle-CCYpnzRf.js.map +1 -0
- package/cjs/chunks/{bundle-DvpCzVKY.js → bundle-CHvJg3bD.js} +1 -1
- package/cjs/chunks/bundle-CHvJg3bD.js.map +1 -0
- package/cjs/chunks/{bundle-D4e0UT-6.js → bundle-CI1zoEKe.js} +1 -1
- package/cjs/chunks/bundle-CI1zoEKe.js.map +1 -0
- package/cjs/chunks/{bundle-Cvu5DOpl.js → bundle-CJk1q-XX.js} +13 -13
- package/cjs/chunks/{bundle-Cvu5DOpl.js.map → bundle-CJk1q-XX.js.map} +1 -1
- package/cjs/chunks/{bundle-DLTCoQzD.js → bundle-CL4Kklzg.js} +1 -1
- package/cjs/chunks/bundle-CL4Kklzg.js.map +1 -0
- package/cjs/chunks/{bundle-IZLtKe6R.js → bundle-CTraI7aM.js} +11 -11
- package/cjs/chunks/bundle-CTraI7aM.js.map +1 -0
- package/cjs/chunks/{bundle-BAqFIbKr.js → bundle-CW2oMonb.js} +16 -11
- package/cjs/chunks/bundle-CW2oMonb.js.map +1 -0
- package/cjs/chunks/{bundle-C0ZNrrcl.js → bundle-C_8UQBXr.js} +5 -4
- package/cjs/chunks/bundle-C_8UQBXr.js.map +1 -0
- package/cjs/chunks/{bundle-CjYhSLRD.js → bundle-Cd-3W3UM.js} +2 -2
- package/cjs/chunks/{bundle-CjYhSLRD.js.map → bundle-Cd-3W3UM.js.map} +1 -1
- package/cjs/chunks/{bundle-WETElB-o.js → bundle-Cd0cyqgA.js} +7 -7
- package/cjs/chunks/bundle-Cd0cyqgA.js.map +1 -0
- package/cjs/chunks/{bundle-BEtlTF8Q.js → bundle-CliI7H5v.js} +39 -61
- package/cjs/chunks/bundle-CliI7H5v.js.map +1 -0
- package/cjs/chunks/{bundle-BCt-Rzil.js → bundle-CoJbL3ob.js} +4 -4
- package/cjs/chunks/bundle-CoJbL3ob.js.map +1 -0
- package/cjs/chunks/{bundle-B2KKkvdj.js → bundle-CuOOXDK0.js} +1 -1
- package/cjs/chunks/bundle-CuOOXDK0.js.map +1 -0
- package/cjs/chunks/{bundle-LLV3t4--.js → bundle-D1Ka8I9e.js} +5 -5
- package/cjs/chunks/bundle-D1Ka8I9e.js.map +1 -0
- package/cjs/chunks/{bundle-DGJX80zy.js → bundle-D1mguvwi.js} +10 -9
- package/cjs/chunks/bundle-D1mguvwi.js.map +1 -0
- package/cjs/chunks/{bundle-SfusZfMJ.js → bundle-D3BhVTZt.js} +1 -1
- package/cjs/chunks/bundle-D3BhVTZt.js.map +1 -0
- package/cjs/chunks/{bundle-DPrTZ-1L.js → bundle-D7rSRN-8.js} +5 -5
- package/cjs/chunks/bundle-D7rSRN-8.js.map +1 -0
- package/cjs/chunks/{bundle-BNVygboA.js → bundle-DAEHB1AV.js} +3 -3
- package/cjs/chunks/bundle-DAEHB1AV.js.map +1 -0
- package/cjs/chunks/{bundle-dr9zoU1D.js → bundle-DMUz-Xui.js} +17 -16
- package/cjs/chunks/{bundle-dr9zoU1D.js.map → bundle-DMUz-Xui.js.map} +1 -1
- package/cjs/chunks/{bundle-CLte647H.js → bundle-DOoshvnj.js} +1 -1
- package/cjs/chunks/bundle-DOoshvnj.js.map +1 -0
- package/cjs/chunks/{bundle-hXD0NDZt.js → bundle-DQu5RJ2y.js} +4 -4
- package/cjs/chunks/bundle-DQu5RJ2y.js.map +1 -0
- package/cjs/chunks/{bundle-Cc89qdjT.js → bundle-DSLFcE0C.js} +11 -13
- package/{chunks/bundle-CclWZYVY.js.map → cjs/chunks/bundle-DSLFcE0C.js.map} +1 -1
- package/cjs/chunks/{bundle-CgOafeY_.js → bundle-DTJnlh7y.js} +3 -3
- package/cjs/chunks/{bundle-CgOafeY_.js.map → bundle-DTJnlh7y.js.map} +1 -1
- package/cjs/chunks/{bundle-D7v4i_Ae.js → bundle-DTzydpqA.js} +2 -4
- package/cjs/chunks/bundle-DTzydpqA.js.map +1 -0
- package/cjs/chunks/{bundle-jLW3AG2G.js → bundle-DUzcm-3u.js} +1 -1
- package/cjs/chunks/{bundle-jLW3AG2G.js.map → bundle-DUzcm-3u.js.map} +1 -1
- package/cjs/chunks/{bundle-DJ9gapN2.js → bundle-DW8u-n3u.js} +25 -30
- package/cjs/chunks/{bundle-DJ9gapN2.js.map → bundle-DW8u-n3u.js.map} +1 -1
- package/cjs/chunks/{bundle-Deao1Upp.js → bundle-DY5rfl6W.js} +3 -3
- package/cjs/chunks/bundle-DY5rfl6W.js.map +1 -0
- package/cjs/chunks/{bundle-CxNGVWIy.js → bundle-DcQeRT4T.js} +1 -1
- package/cjs/chunks/bundle-DcQeRT4T.js.map +1 -0
- package/cjs/chunks/{bundle-BCQxFX-W.js → bundle-Dd1DS9KT.js} +1 -1
- package/cjs/chunks/bundle-Dd1DS9KT.js.map +1 -0
- package/cjs/chunks/{bundle-CPIzT1cf.js → bundle-DikFXMAd.js} +1 -1
- package/cjs/chunks/bundle-DikFXMAd.js.map +1 -0
- package/cjs/chunks/{bundle-CHXLIlQ1.js → bundle-DohVekRv.js} +19 -35
- package/cjs/chunks/{bundle-CHXLIlQ1.js.map → bundle-DohVekRv.js.map} +1 -1
- package/cjs/chunks/{bundle-Cw7xe6J1.js → bundle-DrYI_bNa.js} +7 -7
- package/cjs/chunks/{bundle-Cw7xe6J1.js.map → bundle-DrYI_bNa.js.map} +1 -1
- package/cjs/chunks/{bundle-Bpy7IQta.js → bundle-Dymg5zVO.js} +7 -4
- package/cjs/chunks/{bundle-DGJX80zy.js.map → bundle-Dymg5zVO.js.map} +1 -1
- package/cjs/chunks/{bundle-30fh5iPx.js → bundle-H13ErLKW.js} +2 -2
- package/cjs/chunks/bundle-H13ErLKW.js.map +1 -0
- package/cjs/chunks/{bundle-Cnyr9_mq.js → bundle-KUj3wjEl.js} +3 -3
- package/cjs/chunks/bundle-KUj3wjEl.js.map +1 -0
- package/cjs/chunks/{bundle-GFjnAifB.js → bundle-Kf3idGio.js} +9 -5
- package/cjs/chunks/bundle-Kf3idGio.js.map +1 -0
- package/cjs/chunks/{bundle-Bw_LvbLk.js → bundle-LO6QlzTz.js} +2 -2
- package/cjs/chunks/bundle-LO6QlzTz.js.map +1 -0
- package/cjs/chunks/{bundle-CLNUkVC8.js → bundle-OIKGVRus.js} +1 -1
- package/cjs/chunks/bundle-OIKGVRus.js.map +1 -0
- package/cjs/chunks/bundle-OWb8eJt-.js +22 -0
- package/cjs/chunks/bundle-OWb8eJt-.js.map +1 -0
- package/cjs/chunks/{bundle-glVs_8wY.js → bundle-RUFiV4i0.js} +1 -1
- package/cjs/chunks/bundle-RUFiV4i0.js.map +1 -0
- package/cjs/chunks/{bundle-CL-vjR4o.js → bundle-TEjGhclf.js} +2 -2
- package/cjs/chunks/{bundle-CL-vjR4o.js.map → bundle-TEjGhclf.js.map} +1 -1
- package/cjs/chunks/{bundle-Ub33KGva.js → bundle-YRiE_c63.js} +1 -1
- package/cjs/chunks/bundle-YRiE_c63.js.map +1 -0
- package/cjs/chunks/{bundle-BiTKgXrx.js → bundle-ZjYFUjTH.js} +35 -38
- package/{chunks/bundle-2jZ-0hKC.js.map → cjs/chunks/bundle-ZjYFUjTH.js.map} +1 -1
- package/cjs/chunks/{bundle-DmVeFWB4.js → bundle-cqwHj7Dj.js} +2 -2
- package/cjs/chunks/bundle-cqwHj7Dj.js.map +1 -0
- package/cjs/chunks/{bundle-C-r9vRgc.js → bundle-eTYC1RPT.js} +1 -1
- package/cjs/chunks/bundle-eTYC1RPT.js.map +1 -0
- package/cjs/chunks/{bundle-D9UFa9yx.js → bundle-jHjvHr01.js} +1 -1
- package/cjs/chunks/bundle-jHjvHr01.js.map +1 -0
- package/cjs/chunks/{bundle-xADAFEo0.js → bundle-kbRkyLdH.js} +6 -6
- package/cjs/chunks/bundle-kbRkyLdH.js.map +1 -0
- package/cjs/chunks/{bundle-Bv_QMEk2.js → bundle-lYouUxag.js} +6 -6
- package/cjs/chunks/bundle-lYouUxag.js.map +1 -0
- package/cjs/chunks/{bundle-Bc92JuA7.js → bundle-ozey_V94.js} +8 -8
- package/cjs/chunks/bundle-ozey_V94.js.map +1 -0
- package/cjs/chunks/{bundle-C4UzGGy_.js → bundle-wz_O1vyk.js} +1 -1
- package/cjs/chunks/bundle-wz_O1vyk.js.map +1 -0
- package/cjs/hooks/useModal.js +13 -13
- package/cjs/index.js +78 -78
- package/cjs/pubSub/topics.js +1 -1
- package/cjs/sendbirdSelectors.js +3 -3
- package/cjs/ui/Accordion.js +3 -3
- package/cjs/ui/AccordionGroup.js +1 -1
- package/cjs/ui/AdminMessage.js +3 -3
- package/cjs/ui/Avatar.js +4 -4
- package/cjs/ui/Badge.js +5 -5
- package/cjs/ui/BottomSheet.js +16 -16
- package/cjs/ui/Button.js +5 -5
- package/cjs/ui/ChannelAvatar.js +5 -5
- package/cjs/ui/ConnectionStatus.js +6 -6
- package/cjs/ui/ContextMenu.js +6 -6
- package/cjs/ui/DateSeparator.js +5 -5
- package/cjs/ui/EmojiReactions.js +22 -22
- package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +7 -7
- package/cjs/ui/FileMessageItemBody.js +9 -9
- package/cjs/ui/FileViewer.js +17 -17
- package/cjs/ui/Header.js +8 -8
- package/cjs/ui/Icon.js +2 -2
- package/cjs/ui/IconButton.js +1 -1
- package/cjs/ui/ImageRenderer.js +4 -2
- package/cjs/ui/ImageRenderer.js.map +1 -1
- package/cjs/ui/Input.js +3 -3
- package/cjs/ui/Label.js +3 -3
- package/cjs/ui/LinkLabel.js +4 -4
- package/cjs/ui/Loader.js +2 -2
- package/cjs/ui/LoadingTemplateMessageItemBody.tsx.js +4 -4
- package/cjs/ui/MentionLabel.js +14 -14
- package/cjs/ui/MentionUserLabel.js +3 -2
- package/cjs/ui/MentionUserLabel.js.map +1 -1
- package/cjs/ui/MessageContent.js +76 -69
- package/cjs/ui/MessageContent.js.map +1 -1
- package/cjs/ui/MessageFeedbackFailedModal.js +14 -14
- package/cjs/ui/MessageFeedbackModal.js +19 -19
- package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
- package/cjs/ui/MessageInput.js +103 -82
- package/cjs/ui/MessageInput.js.map +1 -1
- package/cjs/ui/MessageItemMenu.js +20 -20
- package/cjs/ui/MessageItemReactionMenu.js +15 -15
- package/cjs/ui/MessageSearchFileItem.js +15 -15
- package/cjs/ui/MessageSearchItem.js +13 -13
- package/cjs/ui/MessageStatus.js +11 -11
- package/cjs/ui/MessageTemplate.js +1 -1
- package/cjs/ui/MobileFeedbackMenu.js +13 -13
- package/cjs/ui/Modal.js +13 -13
- package/cjs/ui/MutedAvatarOverlay.js +2 -2
- package/cjs/ui/OGMessageItemBody.js +23 -22
- package/cjs/ui/OGMessageItemBody.js.map +1 -1
- package/cjs/ui/OpenChannelAdminMessage.js +3 -3
- package/cjs/ui/OpenChannelAvatar.js +8 -8
- package/cjs/ui/OpenchannelConversationHeader.js +8 -8
- package/cjs/ui/OpenchannelFileMessage.js +18 -18
- package/cjs/ui/OpenchannelOGMessage.js +36 -36
- package/cjs/ui/OpenchannelThumbnailMessage.js +18 -18
- package/cjs/ui/OpenchannelUserMessage.js +23 -23
- package/cjs/ui/PlaceHolder.js +7 -7
- package/cjs/ui/PlaybackTime.js +3 -3
- package/cjs/ui/ProgressBar.js +2 -1
- package/cjs/ui/ProgressBar.js.map +1 -1
- package/cjs/ui/QuoteMessage.js +8 -8
- package/cjs/ui/QuoteMessageInput.js +11 -11
- package/cjs/ui/ReactionBadge.js +4 -4
- package/cjs/ui/ReactionButton.js +4 -4
- package/cjs/ui/SortByRow.js +2 -2
- package/cjs/ui/TemplateMessageItemBody.js +22 -20
- package/cjs/ui/TemplateMessageItemBody.js.map +1 -1
- package/cjs/ui/TextButton.js +2 -2
- package/cjs/ui/TextMessageItemBody.js +25 -22
- package/cjs/ui/TextMessageItemBody.js.map +1 -1
- package/cjs/ui/ThreadReplies.js +10 -10
- package/cjs/ui/ThumbnailMessageItemBody.js +6 -6
- package/cjs/ui/Toggle.js +3 -3
- package/cjs/ui/Tooltip.js +3 -3
- package/cjs/ui/TooltipWrapper.js +3 -3
- package/cjs/ui/TypingIndicatorBubble.js +4 -4
- package/cjs/ui/UnknownMessageItemBody.js +7 -7
- package/cjs/ui/UserListItem.js +15 -15
- package/cjs/ui/UserProfile.js +12 -12
- package/cjs/ui/VoiceMessageInput.js +9 -9
- package/cjs/ui/VoiceMessageItemBody.js +20 -19
- package/cjs/ui/VoiceMessageItemBody.js.map +1 -1
- package/cjs/ui/Word.js +14 -14
- package/cjs/useSendbirdStateContext.js +1 -1
- package/cjs/utils/message/isVoiceMessage.js +2 -2
- package/cjs/withSendbird.js +4 -3
- package/cjs/withSendbird.js.map +1 -1
- package/dist/index.css +3 -4
- package/hooks/useModal.js +13 -13
- package/index.js +78 -78
- package/package.json +1 -1
- package/pubSub/topics.js +1 -1
- package/sendbirdSelectors.js +3 -3
- package/types/hooks/VoicePlayer/useVoicePlayer.d.ts +2 -2
- package/types/hooks/VoiceRecorder/WebAudioUtils.d.ts +5 -2
- package/types/hooks/VoiceRecorder/useVoiceRecorder.d.ts +1 -1
- package/types/lib/LocalizationContext.d.ts +3 -4
- package/types/lib/Logger/index.d.ts +1 -1
- package/types/lib/Sendbird.d.ts +2 -8
- package/types/lib/SendbirdSdkContext.d.ts +3 -0
- package/types/lib/hooks/useTheme.d.ts +1 -1
- package/types/lib/pubSub/topics.d.ts +2 -2
- package/types/lib/selectors.d.ts +4 -4
- package/types/lib/types.d.ts +5 -5
- package/types/modules/App/AppLayout.d.ts +1 -1
- package/types/modules/App/types.d.ts +1 -1
- package/types/modules/Channel/components/Message/index.d.ts +1 -1
- package/types/modules/Channel/context/ChannelProvider.d.ts +11 -12
- package/types/modules/Channel/context/hooks/useHandleChannelEvents.d.ts +2 -2
- package/types/modules/Channel/context/hooks/useHandleReconnect.d.ts +1 -1
- package/types/modules/Channel/context/hooks/useHandleReconnectForChannelList.d.ts +4 -4
- package/types/modules/Channel/context/hooks/useInitialMessagesFetch.d.ts +3 -3
- package/types/modules/Channel/context/hooks/useReconnectOnIdle.d.ts +1 -1
- package/types/modules/Channel/context/hooks/useScrollCallback.d.ts +2 -2
- package/types/modules/Channel/context/hooks/useScrollDownCallback.d.ts +1 -1
- package/types/modules/Channel/context/hooks/useScrollToMessage.d.ts +3 -3
- package/types/modules/Channel/context/hooks/useSendFileMessageCallback.d.ts +2 -2
- package/types/modules/Channel/context/hooks/useSendVoiceMessageCallback.d.ts +1 -1
- package/types/modules/Channel/context/utils.d.ts +4 -4
- package/types/modules/ChannelList/components/ChannelListUI/index.d.ts +1 -1
- package/types/modules/ChannelList/context/ChannelListProvider.d.ts +7 -7
- package/types/modules/ChannelList/index.d.ts +1 -1
- package/types/modules/ChannelList/utils.d.ts +2 -2
- package/types/modules/ChannelSettings/components/UserListItem/index.d.ts +4 -7
- package/types/modules/ChannelSettings/context/ChannelSettingsProvider.d.ts +1 -1
- package/types/modules/CreateChannel/context/CreateChannelProvider.d.ts +3 -2
- package/types/modules/EditUserProfile/components/EditUserProfileUI/EditUserProfileUIView.d.ts +1 -1
- package/types/modules/EditUserProfile/components/EditUserProfileUI/index.d.ts +1 -1
- package/types/modules/EditUserProfile/context/EditUserProfileProvider.d.ts +1 -1
- package/types/modules/GroupChannel/components/Message/MessageView.d.ts +9 -9
- package/types/modules/GroupChannel/components/MessageInputWrapper/MessageInputWrapperView.d.ts +2 -2
- package/types/modules/GroupChannel/components/MessageList/getMessagePartsInfo.d.ts +3 -3
- package/types/modules/GroupChannel/context/GroupChannelProvider.d.ts +4 -4
- package/types/modules/GroupChannel/context/hooks/useMessageActions.d.ts +1 -1
- package/types/modules/GroupChannel/context/utils.d.ts +2 -2
- package/types/modules/MessageSearch/context/MessageSearchProvider.d.ts +4 -4
- package/types/modules/MessageSearch/context/hooks/useGetSearchedMessages.d.ts +1 -1
- package/types/modules/MessageSearch/context/hooks/useScrollCallback.d.ts +4 -4
- package/types/modules/MessageSearch/index.d.ts +0 -1
- package/types/modules/OpenChannel/context/OpenChannelProvider.d.ts +1 -2
- package/types/modules/OpenChannel/context/hooks/useDeleteMessageCallback.d.ts +1 -1
- package/types/modules/OpenChannel/context/hooks/useFileUploadCallback.d.ts +3 -3
- package/types/modules/OpenChannel/context/hooks/useHandleChannelEvents.d.ts +1 -1
- package/types/modules/OpenChannel/context/hooks/useInitialMessagesFetch.d.ts +1 -1
- package/types/modules/OpenChannel/context/hooks/useResendMessageCallback.d.ts +1 -1
- package/types/modules/OpenChannel/context/hooks/useScrollCallback.d.ts +1 -1
- package/types/modules/OpenChannel/context/hooks/useSendMessageCallback.d.ts +2 -2
- package/types/modules/OpenChannel/context/hooks/useSetChannel.d.ts +1 -1
- package/types/modules/OpenChannel/context/hooks/useTrimMessageList.d.ts +1 -1
- package/types/modules/OpenChannel/context/hooks/useUpdateMessageCallback.d.ts +3 -3
- package/types/modules/OpenChannel/context/utils.d.ts +2 -3
- package/types/modules/OpenChannelList/context/hooks/createChannelListQuery.d.ts +1 -1
- package/types/modules/OpenChannelList/context/hooks/useRefreshOpenChannelList.d.ts +1 -1
- package/types/modules/OpenChannelList/context/hooks/useSetupOpenChannelList.d.ts +1 -1
- package/types/modules/OpenChannelSettings/components/ParticipantUI/ParticipantItem.d.ts +2 -2
- package/types/modules/OpenChannelSettings/context/OpenChannelSettingsProvider.d.ts +3 -4
- package/types/modules/Thread/context/ThreadProvider.d.ts +7 -5
- package/types/modules/Thread/context/hooks/useDeleteMessageCallback.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useGetChannel.d.ts +2 -2
- package/types/modules/Thread/context/hooks/useGetParentMessage.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useHandleChannelEvents.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useHandleThreadPubsubEvents.d.ts +2 -2
- package/types/modules/Thread/context/hooks/useResendMessageCallback.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useSendFileMessage.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useSendUserMessageCallback.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useSendVoiceMessageCallback.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useThreadFetchers.d.ts +1 -1
- package/types/modules/Thread/context/hooks/useToggleReactionsCallback.d.ts +3 -2
- package/types/modules/Thread/context/hooks/useUpdateMessageCallback.d.ts +9 -2
- package/types/modules/Thread/context/utils.d.ts +3 -4
- package/types/ui/AdminMessage/index.d.ts +1 -1
- package/types/ui/ChannelAvatar/utils.d.ts +3 -3
- package/types/ui/ContextMenu/MenuItems.d.ts +3 -3
- package/types/ui/ImageRenderer/index.d.ts +7 -7
- package/types/ui/ImageRenderer/useDynamicSideLength.d.ts +2 -2
- package/types/ui/ImageRenderer/utils.d.ts +1 -1
- package/types/ui/LegacyEditUserProfile/index.d.ts +1 -1
- package/types/ui/MessageContent/MessageProfile/index.d.ts +1 -1
- package/types/ui/MessageInput/hooks/usePaste/types.d.ts +1 -1
- package/types/ui/MessageItemMenu/index.d.ts +5 -7
- package/types/ui/MessageItemReactionMenu/index.d.ts +1 -1
- package/types/ui/ThreadReplies/index.d.ts +1 -1
- package/types/ui/UserProfile/index.d.ts +1 -1
- package/types/ui/Word/index.d.ts +1 -1
- package/types/utils/consts.d.ts +1 -0
- package/types/utils/exports/getOutgoingMessageState.d.ts +1 -1
- package/types/utils/getIsReactionEnabled.d.ts +1 -1
- package/types/utils/index.d.ts +2 -2
- package/types/utils/messages.d.ts +1 -1
- package/types/utils/numberToPx.d.ts +1 -1
- package/ui/Accordion.js +3 -3
- package/ui/AccordionGroup.js +1 -1
- package/ui/AdminMessage.js +3 -3
- package/ui/Avatar.js +4 -4
- package/ui/Badge.js +5 -5
- package/ui/BottomSheet.js +16 -16
- package/ui/Button.js +5 -5
- package/ui/ChannelAvatar.js +5 -5
- package/ui/ConnectionStatus.js +6 -6
- package/ui/ContextMenu.js +6 -6
- package/ui/DateSeparator.js +5 -5
- package/ui/EmojiReactions.js +22 -22
- package/ui/FallbackTemplateMessageItemBody.tsx.js +7 -7
- package/ui/FileMessageItemBody.js +9 -9
- package/ui/FileViewer.js +17 -17
- package/ui/Header.js +8 -8
- package/ui/Icon.js +2 -2
- package/ui/IconButton.js +1 -1
- package/ui/ImageRenderer.js +4 -2
- package/ui/ImageRenderer.js.map +1 -1
- package/ui/Input.js +3 -3
- package/ui/Label.js +3 -3
- package/ui/LinkLabel.js +4 -4
- package/ui/Loader.js +2 -2
- package/ui/LoadingTemplateMessageItemBody.tsx.js +4 -4
- package/ui/MentionLabel.js +14 -14
- package/ui/MentionUserLabel.js +3 -2
- package/ui/MentionUserLabel.js.map +1 -1
- package/ui/MessageContent.js +76 -69
- package/ui/MessageContent.js.map +1 -1
- package/ui/MessageFeedbackFailedModal.js +14 -14
- package/ui/MessageFeedbackModal.js +19 -19
- package/ui/MessageInput/hooks/usePaste.js +7 -7
- package/ui/MessageInput.js +103 -82
- package/ui/MessageInput.js.map +1 -1
- package/ui/MessageItemMenu.js +20 -20
- package/ui/MessageItemReactionMenu.js +15 -15
- package/ui/MessageSearchFileItem.js +15 -15
- package/ui/MessageSearchItem.js +13 -13
- package/ui/MessageStatus.js +11 -11
- package/ui/MessageTemplate.js +1 -1
- package/ui/MobileFeedbackMenu.js +13 -13
- package/ui/Modal.js +13 -13
- package/ui/MutedAvatarOverlay.js +2 -2
- package/ui/OGMessageItemBody.js +23 -22
- package/ui/OGMessageItemBody.js.map +1 -1
- package/ui/OpenChannelAdminMessage.js +3 -3
- package/ui/OpenChannelAvatar.js +8 -8
- package/ui/OpenchannelConversationHeader.js +8 -8
- package/ui/OpenchannelFileMessage.js +18 -18
- package/ui/OpenchannelOGMessage.js +36 -36
- package/ui/OpenchannelThumbnailMessage.js +18 -18
- package/ui/OpenchannelUserMessage.js +23 -23
- package/ui/PlaceHolder.js +7 -7
- package/ui/PlaybackTime.js +3 -3
- package/ui/ProgressBar.js +2 -1
- package/ui/ProgressBar.js.map +1 -1
- package/ui/QuoteMessage.js +8 -8
- package/ui/QuoteMessageInput.js +11 -11
- package/ui/ReactionBadge.js +4 -4
- package/ui/ReactionButton.js +4 -4
- package/ui/SortByRow.js +2 -2
- package/ui/TemplateMessageItemBody.js +22 -20
- package/ui/TemplateMessageItemBody.js.map +1 -1
- package/ui/TextButton.js +2 -2
- package/ui/TextMessageItemBody.js +25 -22
- package/ui/TextMessageItemBody.js.map +1 -1
- package/ui/ThreadReplies.js +10 -10
- package/ui/ThumbnailMessageItemBody.js +6 -6
- package/ui/Toggle.js +3 -3
- package/ui/Tooltip.js +3 -3
- package/ui/TooltipWrapper.js +3 -3
- package/ui/TypingIndicatorBubble.js +4 -4
- package/ui/UnknownMessageItemBody.js +7 -7
- package/ui/UserListItem.js +15 -15
- package/ui/UserProfile.js +12 -12
- package/ui/VoiceMessageInput.js +9 -9
- package/ui/VoiceMessageItemBody.js +20 -19
- package/ui/VoiceMessageItemBody.js.map +1 -1
- package/ui/Word.js +14 -14
- package/useSendbirdStateContext.js +1 -1
- package/utils/message/isVoiceMessage.js +2 -2
- package/withSendbird.js +4 -3
- package/withSendbird.js.map +1 -1
- package/chunks/bundle-2vhBVWLQ.js.map +0 -1
- package/chunks/bundle-60et0yds.js.map +0 -1
- package/chunks/bundle-8J9SSfIS.js.map +0 -1
- package/chunks/bundle-ARb5Lm9T.js.map +0 -1
- package/chunks/bundle-BCuW6lS8.js.map +0 -1
- package/chunks/bundle-BGTq2aZA.js.map +0 -1
- package/chunks/bundle-BI0n-T1b.js.map +0 -1
- package/chunks/bundle-BQPvwBK8.js.map +0 -1
- package/chunks/bundle-BfjOoJk6.js.map +0 -1
- package/chunks/bundle-Br_sURBN.js.map +0 -1
- package/chunks/bundle-BxaysvGU.js.map +0 -1
- package/chunks/bundle-C1XVT5qc.js.map +0 -1
- package/chunks/bundle-C2B-jwQF.js.map +0 -1
- package/chunks/bundle-C5i4dn9q.js.map +0 -1
- package/chunks/bundle-C8XqVZD9.js.map +0 -1
- package/chunks/bundle-CAdxJnio.js +0 -16
- package/chunks/bundle-CAdxJnio.js.map +0 -1
- package/chunks/bundle-CLQfFjkS.js.map +0 -1
- package/chunks/bundle-Cdx5L_Jm.js.map +0 -1
- package/chunks/bundle-Chn4Xw78.js.map +0 -1
- package/chunks/bundle-Cj-w5I5i.js.map +0 -1
- package/chunks/bundle-CtgXJZJt.js.map +0 -1
- package/chunks/bundle-Cw_yF4Vi.js.map +0 -1
- package/chunks/bundle-DEFOjZw9.js.map +0 -1
- package/chunks/bundle-DElB1Hqa.js.map +0 -1
- package/chunks/bundle-DHrYAkRt.js.map +0 -1
- package/chunks/bundle-DUVa5cu6.js.map +0 -1
- package/chunks/bundle-DVc25Jb7.js.map +0 -1
- package/chunks/bundle-DYmy2oK3.js.map +0 -1
- package/chunks/bundle-DhJuLwLJ.js.map +0 -1
- package/chunks/bundle-DiVyB2HD.js.map +0 -1
- package/chunks/bundle-DoXeGvHN.js.map +0 -1
- package/chunks/bundle-Dpj_mOs8.js.map +0 -1
- package/chunks/bundle-DudTIr4X.js.map +0 -1
- package/chunks/bundle-DwPw_RW5.js.map +0 -1
- package/chunks/bundle-DwvN2wPi.js.map +0 -1
- package/chunks/bundle-E4462uBn.js.map +0 -1
- package/chunks/bundle-HFOQJZAX.js.map +0 -1
- package/chunks/bundle-HhDUyQa4.js.map +0 -1
- package/chunks/bundle-KmtzKHnJ.js.map +0 -1
- package/chunks/bundle-Pw31xKtZ.js.map +0 -1
- package/chunks/bundle-WdeDKCD0.js.map +0 -1
- package/chunks/bundle-Y_WIAHds.js.map +0 -1
- package/chunks/bundle-YveljAuC.js.map +0 -1
- package/chunks/bundle-cgNuve_E.js.map +0 -1
- package/chunks/bundle-e3NlFYfX.js.map +0 -1
- package/chunks/bundle-hF8Gurf8.js.map +0 -1
- package/chunks/bundle-iA2l_iD3.js.map +0 -1
- package/chunks/bundle-klvZ-YE5.js.map +0 -1
- package/chunks/bundle-q3jyuKU7.js.map +0 -1
- package/chunks/bundle-thdxvFU8.js.map +0 -1
- package/chunks/bundle-u9Zl-7Je.js.map +0 -1
- package/chunks/bundle-uI-GOX6U.js.map +0 -1
- package/chunks/bundle-xHRJMo_A.js.map +0 -1
- package/cjs/chunks/bundle-30fh5iPx.js.map +0 -1
- package/cjs/chunks/bundle-B-0_xv9u.js.map +0 -1
- package/cjs/chunks/bundle-B2KKkvdj.js.map +0 -1
- package/cjs/chunks/bundle-B2h5VMZ6.js.map +0 -1
- package/cjs/chunks/bundle-B4EdciCR.js.map +0 -1
- package/cjs/chunks/bundle-B7wJ4Hqk.js +0 -20
- package/cjs/chunks/bundle-B7wJ4Hqk.js.map +0 -1
- package/cjs/chunks/bundle-BAqFIbKr.js.map +0 -1
- package/cjs/chunks/bundle-BCQxFX-W.js.map +0 -1
- package/cjs/chunks/bundle-BCt-Rzil.js.map +0 -1
- package/cjs/chunks/bundle-BG8qs_3y.js.map +0 -1
- package/cjs/chunks/bundle-BMN1aDia.js.map +0 -1
- package/cjs/chunks/bundle-BNVygboA.js.map +0 -1
- package/cjs/chunks/bundle-BOrMDMdN.js.map +0 -1
- package/cjs/chunks/bundle-Bc92JuA7.js.map +0 -1
- package/cjs/chunks/bundle-BiTKgXrx.js.map +0 -1
- package/cjs/chunks/bundle-Bv_QMEk2.js.map +0 -1
- package/cjs/chunks/bundle-Bw_LvbLk.js.map +0 -1
- package/cjs/chunks/bundle-C-r9vRgc.js.map +0 -1
- package/cjs/chunks/bundle-C0ZNrrcl.js.map +0 -1
- package/cjs/chunks/bundle-C4UzGGy_.js.map +0 -1
- package/cjs/chunks/bundle-CLNUkVC8.js.map +0 -1
- package/cjs/chunks/bundle-CLte647H.js.map +0 -1
- package/cjs/chunks/bundle-CPIzT1cf.js.map +0 -1
- package/cjs/chunks/bundle-Ca7xeBTO.js.map +0 -1
- package/cjs/chunks/bundle-CcmMvK6l.js.map +0 -1
- package/cjs/chunks/bundle-Ci6F_UQc.js.map +0 -1
- package/cjs/chunks/bundle-ClBBhzU-.js.map +0 -1
- package/cjs/chunks/bundle-Cnyr9_mq.js.map +0 -1
- package/cjs/chunks/bundle-CpIdIHld.js.map +0 -1
- package/cjs/chunks/bundle-CxNGVWIy.js.map +0 -1
- package/cjs/chunks/bundle-D1X4MKLh.js.map +0 -1
- package/cjs/chunks/bundle-D4e0UT-6.js.map +0 -1
- package/cjs/chunks/bundle-D7v4i_Ae.js.map +0 -1
- package/cjs/chunks/bundle-D9UFa9yx.js.map +0 -1
- package/cjs/chunks/bundle-DFVUnSWq.js.map +0 -1
- package/cjs/chunks/bundle-DFsKxEv-.js.map +0 -1
- package/cjs/chunks/bundle-DLTCoQzD.js.map +0 -1
- package/cjs/chunks/bundle-DOUm656A.js.map +0 -1
- package/cjs/chunks/bundle-DPrTZ-1L.js.map +0 -1
- package/cjs/chunks/bundle-DWBc-Yv7.js.map +0 -1
- package/cjs/chunks/bundle-DWGp201o.js.map +0 -1
- package/cjs/chunks/bundle-DZMn5ScB.js.map +0 -1
- package/cjs/chunks/bundle-Deao1Upp.js.map +0 -1
- package/cjs/chunks/bundle-DmVeFWB4.js.map +0 -1
- package/cjs/chunks/bundle-DpK1fr1j.js.map +0 -1
- package/cjs/chunks/bundle-DsrfvJYA.js.map +0 -1
- package/cjs/chunks/bundle-DvkiHRsE.js.map +0 -1
- package/cjs/chunks/bundle-DvpCzVKY.js.map +0 -1
- package/cjs/chunks/bundle-GFjnAifB.js.map +0 -1
- package/cjs/chunks/bundle-IE4yQ0qq.js.map +0 -1
- package/cjs/chunks/bundle-IZLtKe6R.js.map +0 -1
- package/cjs/chunks/bundle-LLV3t4--.js.map +0 -1
- package/cjs/chunks/bundle-OCHWYrfg.js.map +0 -1
- package/cjs/chunks/bundle-Pfx0MBr4.js.map +0 -1
- package/cjs/chunks/bundle-SfusZfMJ.js.map +0 -1
- package/cjs/chunks/bundle-Ub33KGva.js.map +0 -1
- package/cjs/chunks/bundle-WETElB-o.js.map +0 -1
- package/cjs/chunks/bundle-ZItyfz7r.js.map +0 -1
- package/cjs/chunks/bundle-cl2q8NwQ.js.map +0 -1
- package/cjs/chunks/bundle-glVs_8wY.js.map +0 -1
- package/cjs/chunks/bundle-hVU-fzqu.js.map +0 -1
- package/cjs/chunks/bundle-hXD0NDZt.js.map +0 -1
- package/cjs/chunks/bundle-xADAFEo0.js.map +0 -1
- package/dist/index.css.map +0 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var React = require('react');
|
|
4
|
-
var ui_Modal = require('./bundle-
|
|
5
|
-
require('./bundle-
|
|
6
|
-
require('./bundle-
|
|
4
|
+
var ui_Modal = require('./bundle-DW8u-n3u.js');
|
|
5
|
+
require('./bundle-eTYC1RPT.js');
|
|
6
|
+
require('./bundle-DY5rfl6W.js');
|
|
7
7
|
var ui_Button = require('../ui/Button.js');
|
|
8
|
-
var LocalizationContext = require('./bundle-
|
|
9
|
-
var stringFormatterUtils = require('./bundle-
|
|
8
|
+
var LocalizationContext = require('./bundle-OWb8eJt-.js');
|
|
9
|
+
var stringFormatterUtils = require('./bundle-LO6QlzTz.js');
|
|
10
10
|
|
|
11
11
|
var RemoveMessageModalView = function (props) {
|
|
12
12
|
var _a;
|
|
@@ -14,7 +14,7 @@ var RemoveMessageModalView = function (props) {
|
|
|
14
14
|
/* noop */
|
|
15
15
|
} : _b, onCancel = props.onCancel, message = props.message, deleteMessage = props.deleteMessage;
|
|
16
16
|
var stringSet = React.useContext(LocalizationContext.LocalizationContext).stringSet;
|
|
17
|
-
return (React.createElement(ui_Modal.Modal, { type: ui_Button.ButtonTypes.DANGER, disabled: ((_a = message === null || message === void 0 ? void 0 : message.threadInfo) === null || _a === void 0 ? void 0 : _a.replyCount) > 0, onCancel: onCancel, onSubmit: function () {
|
|
17
|
+
return (React.createElement(ui_Modal.Modal, { type: ui_Button.ButtonTypes.DANGER, disabled: ((_a = message === null || message === void 0 ? void 0 : message.threadInfo) === null || _a === void 0 ? void 0 : _a.replyCount) ? message.threadInfo.replyCount > 0 : undefined, onCancel: onCancel, onSubmit: function () {
|
|
18
18
|
if (message.isUserMessage() || message.isFileMessage() || message.isMultipleFilesMessage()) {
|
|
19
19
|
deleteMessage(message).then(function () {
|
|
20
20
|
// For other status such as PENDING, SCHEDULED, and CANCELED,
|
|
@@ -27,4 +27,4 @@ var RemoveMessageModalView = function (props) {
|
|
|
27
27
|
};
|
|
28
28
|
|
|
29
29
|
exports.RemoveMessageModalView = RemoveMessageModalView;
|
|
30
|
-
//# sourceMappingURL=bundle-
|
|
30
|
+
//# sourceMappingURL=bundle-Cd0cyqgA.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-Cd0cyqgA.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var React = require('react');
|
|
4
|
-
var pubSub_topics = require('./bundle-
|
|
4
|
+
var pubSub_topics = require('./bundle-7CEyuoln.js');
|
|
5
5
|
var useSendbirdStateContext = require('../useSendbirdStateContext.js');
|
|
6
|
-
var _tslib = require('./bundle-
|
|
6
|
+
var _tslib = require('./bundle-eTYC1RPT.js');
|
|
7
7
|
|
|
8
8
|
exports.OpenChannelListFetchingStatus = void 0;
|
|
9
9
|
(function (OpenChannelListFetchingStatus) {
|
|
@@ -99,7 +99,7 @@ function useFetchNextCallback(_a, _b) {
|
|
|
99
99
|
});
|
|
100
100
|
openChannelListQuery.next()
|
|
101
101
|
.then(function (channelList) {
|
|
102
|
-
callback(channelList,
|
|
102
|
+
callback(channelList, undefined);
|
|
103
103
|
logger.info('OpenChannelList|useFetchNextCallback: Succeeded fetching channels', channelList);
|
|
104
104
|
openChannelListDispatcher({
|
|
105
105
|
type: OpenChannelListActionTypes$1.FETCH_OPEN_CHANNEL_LIST_SUCCESS,
|
|
@@ -107,7 +107,7 @@ function useFetchNextCallback(_a, _b) {
|
|
|
107
107
|
});
|
|
108
108
|
})
|
|
109
109
|
.catch(function (err) {
|
|
110
|
-
callback(
|
|
110
|
+
callback(undefined, err);
|
|
111
111
|
logger.error('OpenChannelList|useFetchNextCallback: Failed fetching channels', err);
|
|
112
112
|
openChannelListDispatcher({
|
|
113
113
|
type: OpenChannelListActionTypes$1.FETCH_OPEN_CHANNEL_LIST_FAILURE,
|
|
@@ -129,6 +129,7 @@ function createChannelListQuery(_a) {
|
|
|
129
129
|
params.includeFrozen = true;
|
|
130
130
|
if (openChannelListQuery) {
|
|
131
131
|
Object.keys(openChannelListQuery).forEach(function (key) {
|
|
132
|
+
// @ts-ignore
|
|
132
133
|
params[key] = openChannelListQuery[key];
|
|
133
134
|
});
|
|
134
135
|
}
|
|
@@ -145,46 +146,40 @@ function useSetupOpenChannelList(_a, _b) {
|
|
|
145
146
|
var sdk = _a.sdk, sdkInitialized = _a.sdkInitialized, openChannelListQuery = _a.openChannelListQuery;
|
|
146
147
|
var logger = _b.logger, openChannelListDispatcher = _b.openChannelListDispatcher;
|
|
147
148
|
React.useEffect(function () {
|
|
148
|
-
var _a;
|
|
149
149
|
if (sdkInitialized) {
|
|
150
150
|
if (sdk === null || sdk === void 0 ? void 0 : sdk.openChannel) {
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
151
|
+
logger.info('OpenChannelList|useSetupOpenChannelList: Setup OpenChannelList', { sdkInitialized: sdkInitialized });
|
|
152
|
+
var channelListQuery = createChannelListQuery({
|
|
153
|
+
sdk: sdk,
|
|
154
|
+
logger: logger,
|
|
155
|
+
openChannelListQuery: openChannelListQuery,
|
|
156
|
+
openChannelListDispatcher: openChannelListDispatcher,
|
|
157
|
+
logMessage: 'OpenChannelList|useSetupOpenChannelList: Succeeded create channelListQuery',
|
|
158
|
+
});
|
|
159
|
+
if (channelListQuery === null || channelListQuery === void 0 ? void 0 : channelListQuery.hasNext) {
|
|
160
|
+
logger.info('OpenChannelList|useSetupOpenChannelList: Fetch channels');
|
|
161
|
+
openChannelListDispatcher({
|
|
162
|
+
type: OpenChannelListActionTypes$1.INIT_OPEN_CHANNEL_LIST_START,
|
|
163
|
+
payload: null,
|
|
159
164
|
});
|
|
160
|
-
|
|
161
|
-
|
|
165
|
+
channelListQuery.next()
|
|
166
|
+
.then(function (channelList) {
|
|
167
|
+
logger.info('OpenChannelList|useSetupOpenChannelList: Succeeded fetching channels', channelList);
|
|
162
168
|
openChannelListDispatcher({
|
|
163
|
-
type: OpenChannelListActionTypes$1.
|
|
164
|
-
payload:
|
|
169
|
+
type: OpenChannelListActionTypes$1.INIT_OPEN_CHANNEL_LIST_SUCCESS,
|
|
170
|
+
payload: channelList,
|
|
165
171
|
});
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
});
|
|
173
|
-
})
|
|
174
|
-
.catch(function (err) {
|
|
175
|
-
logger.error('OpenChannelList|useSetupOpenChannelList: Failed fetching channels', err);
|
|
176
|
-
openChannelListDispatcher({
|
|
177
|
-
type: OpenChannelListActionTypes$1.INIT_OPEN_CHANNEL_LIST_FAILURE,
|
|
178
|
-
payload: null,
|
|
179
|
-
});
|
|
172
|
+
})
|
|
173
|
+
.catch(function (err) {
|
|
174
|
+
logger.error('OpenChannelList|useSetupOpenChannelList: Failed fetching channels', err);
|
|
175
|
+
openChannelListDispatcher({
|
|
176
|
+
type: OpenChannelListActionTypes$1.INIT_OPEN_CHANNEL_LIST_FAILURE,
|
|
177
|
+
payload: null,
|
|
180
178
|
});
|
|
181
|
-
}
|
|
182
|
-
else {
|
|
183
|
-
logger.info('OpenChannelList|useSetupOpenChannelList: There is no more channels');
|
|
184
|
-
}
|
|
179
|
+
});
|
|
185
180
|
}
|
|
186
181
|
else {
|
|
187
|
-
logger.
|
|
182
|
+
logger.info('OpenChannelList|useSetupOpenChannelList: There is no more channels');
|
|
188
183
|
}
|
|
189
184
|
}
|
|
190
185
|
else {
|
|
@@ -258,19 +253,11 @@ function useRefreshOpenChannelList(_a, _b) {
|
|
|
258
253
|
}, [sdkInitialized, openChannelListQuery]);
|
|
259
254
|
}
|
|
260
255
|
|
|
261
|
-
var OpenChannelListContext = React.createContext(
|
|
262
|
-
onChannelSelected: null,
|
|
263
|
-
currentChannel: null,
|
|
264
|
-
allChannels: [],
|
|
265
|
-
fetchingStatus: exports.OpenChannelListFetchingStatus.EMPTY,
|
|
266
|
-
customOpenChannelListQuery: {},
|
|
267
|
-
fetchNextChannels: null,
|
|
268
|
-
refreshOpenChannelList: null,
|
|
269
|
-
openChannelListDispatcher: null,
|
|
270
|
-
logger: null,
|
|
271
|
-
});
|
|
256
|
+
var OpenChannelListContext = React.createContext(null);
|
|
272
257
|
function useOpenChannelListContext() {
|
|
273
258
|
var context = React.useContext(OpenChannelListContext);
|
|
259
|
+
if (!context)
|
|
260
|
+
throw new Error('OpenChannelListContext not found. Use within the OpenChannelList module.');
|
|
274
261
|
return context;
|
|
275
262
|
}
|
|
276
263
|
var OpenChannelListProvider = function (_a) {
|
|
@@ -281,9 +268,7 @@ var OpenChannelListProvider = function (_a) {
|
|
|
281
268
|
var logger = config.logger, pubSub = config.pubSub;
|
|
282
269
|
var sdk = ((_b = stores === null || stores === void 0 ? void 0 : stores.sdkStore) === null || _b === void 0 ? void 0 : _b.sdk) || null;
|
|
283
270
|
var sdkInitialized = ((_c = stores === null || stores === void 0 ? void 0 : stores.sdkStore) === null || _c === void 0 ? void 0 : _c.initialized) || false;
|
|
284
|
-
var customOpenChannelListQuery =
|
|
285
|
-
return (queries === null || queries === void 0 ? void 0 : queries.openChannelListQuery) || null;
|
|
286
|
-
}, [queries === null || queries === void 0 ? void 0 : queries.openChannelListQuery]);
|
|
271
|
+
var customOpenChannelListQuery = queries === null || queries === void 0 ? void 0 : queries.openChannelListQuery;
|
|
287
272
|
// dux
|
|
288
273
|
var _e = React.useReducer(reducer, openChannelListInitialState), openChannelListStore = _e[0], openChannelListDispatcher = _e[1];
|
|
289
274
|
var allChannels = openChannelListStore.allChannels, currentChannel = openChannelListStore.currentChannel, fetchingStatus = openChannelListStore.fetchingStatus, channelListQuery = openChannelListStore.channelListQuery;
|
|
@@ -298,22 +283,15 @@ var OpenChannelListProvider = function (_a) {
|
|
|
298
283
|
});
|
|
299
284
|
// Events & PubSub
|
|
300
285
|
React.useEffect(function () {
|
|
301
|
-
var subscriber =
|
|
302
|
-
subscriber
|
|
286
|
+
var subscriber = new Map();
|
|
287
|
+
subscriber.set(pubSub_topics.pubSubTopics.UPDATE_OPEN_CHANNEL, pubSub.subscribe(pubSub_topics.pubSubTopics.UPDATE_OPEN_CHANNEL, function (channel) {
|
|
303
288
|
openChannelListDispatcher({
|
|
304
289
|
type: OpenChannelListActionTypes$1.UPDATE_OPEN_CHANNEL,
|
|
305
290
|
payload: channel,
|
|
306
291
|
});
|
|
307
292
|
}));
|
|
308
293
|
return function () {
|
|
309
|
-
subscriber
|
|
310
|
-
try {
|
|
311
|
-
s.remove();
|
|
312
|
-
}
|
|
313
|
-
catch (_a) {
|
|
314
|
-
//
|
|
315
|
-
}
|
|
316
|
-
});
|
|
294
|
+
subscriber.forEach(function (it) { return it.remove(); });
|
|
317
295
|
};
|
|
318
296
|
}, [sdkInitialized, pubSub]);
|
|
319
297
|
// Fetch next channels by scroll event
|
|
@@ -357,4 +335,4 @@ exports.OpenChannelListActionTypes = OpenChannelListActionTypes$1;
|
|
|
357
335
|
exports.OpenChannelListProvider = OpenChannelListProvider;
|
|
358
336
|
exports.OpenChannelListProvider$1 = OpenChannelListProvider$1;
|
|
359
337
|
exports.useOpenChannelListContext = useOpenChannelListContext;
|
|
360
|
-
//# sourceMappingURL=bundle-
|
|
338
|
+
//# sourceMappingURL=bundle-CliI7H5v.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CliI7H5v.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var React = require('react');
|
|
4
|
-
var index = require('./bundle-
|
|
5
|
-
var tokenize = require('./bundle-
|
|
4
|
+
var index = require('./bundle-DrYI_bNa.js');
|
|
5
|
+
var tokenize = require('./bundle-B1Ql7yM0.js');
|
|
6
6
|
var Message_context = require('../Message/context.js');
|
|
7
7
|
var ui_MentionLabel = require('../ui/MentionLabel.js');
|
|
8
8
|
var ui_LinkLabel = require('../ui/LinkLabel.js');
|
|
9
|
-
var ui_Label = require('./bundle-
|
|
9
|
+
var ui_Label = require('./bundle-DY5rfl6W.js');
|
|
10
10
|
|
|
11
11
|
// this function is used to generate a unique key for token in message
|
|
12
12
|
// it changes with updated time and index
|
|
@@ -35,4 +35,4 @@ function TextFragment(_a) {
|
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
exports.TextFragment = TextFragment;
|
|
38
|
-
//# sourceMappingURL=bundle-
|
|
38
|
+
//# sourceMappingURL=bundle-CoJbL3ob.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CoJbL3ob.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -12,4 +12,4 @@ exports.ThreadReplySelectType = void 0;
|
|
|
12
12
|
exports.MAX_USER_MENTION_COUNT = MAX_USER_MENTION_COUNT;
|
|
13
13
|
exports.MAX_USER_SUGGESTION_COUNT = MAX_USER_SUGGESTION_COUNT;
|
|
14
14
|
exports.USER_MENTION_TEMP_CHAR = USER_MENTION_TEMP_CHAR;
|
|
15
|
-
//# sourceMappingURL=bundle-
|
|
15
|
+
//# sourceMappingURL=bundle-CuOOXDK0.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-CuOOXDK0.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;"}
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
var SendbirdChat = require('@sendbird/chat');
|
|
4
4
|
var React = require('react');
|
|
5
|
-
var uuid = require('./bundle-
|
|
6
|
-
var _tslib = require('./bundle-
|
|
5
|
+
var uuid = require('./bundle-YRiE_c63.js');
|
|
6
|
+
var _tslib = require('./bundle-eTYC1RPT.js');
|
|
7
7
|
|
|
8
8
|
function useOnlineStatus(sdk, logger) {
|
|
9
9
|
var _a, _b;
|
|
@@ -77,7 +77,7 @@ function useOnlineStatus(sdk, logger) {
|
|
|
77
77
|
var body = document.querySelector('body');
|
|
78
78
|
if (!isOnline && !(sdk === null || sdk === void 0 ? void 0 : sdk.isCacheEnabled)) {
|
|
79
79
|
try {
|
|
80
|
-
body.classList.add('sendbird__offline');
|
|
80
|
+
body === null || body === void 0 ? void 0 : body.classList.add('sendbird__offline');
|
|
81
81
|
logger.info('Added class sendbird__offline to body');
|
|
82
82
|
}
|
|
83
83
|
catch (e) {
|
|
@@ -86,7 +86,7 @@ function useOnlineStatus(sdk, logger) {
|
|
|
86
86
|
}
|
|
87
87
|
else {
|
|
88
88
|
try {
|
|
89
|
-
body.classList.remove('sendbird__offline');
|
|
89
|
+
body === null || body === void 0 ? void 0 : body.classList.remove('sendbird__offline');
|
|
90
90
|
logger.info('Removed class sendbird__offline from body');
|
|
91
91
|
}
|
|
92
92
|
catch (e) {
|
|
@@ -199,4 +199,4 @@ exports.schedulerFactory = schedulerFactory;
|
|
|
199
199
|
exports.useMarkAsDeliveredScheduler = useMarkAsDeliveredScheduler;
|
|
200
200
|
exports.useOnlineStatus = useOnlineStatus;
|
|
201
201
|
exports.useUnmount = useUnmount;
|
|
202
|
-
//# sourceMappingURL=bundle-
|
|
202
|
+
//# sourceMappingURL=bundle-D1Ka8I9e.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D1Ka8I9e.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -5,9 +5,10 @@ var ui_PlaybackTime = require('../ui/PlaybackTime.js');
|
|
|
5
5
|
var ui_ProgressBar = require('../ui/ProgressBar.js');
|
|
6
6
|
var ui_TextButton = require('../ui/TextButton.js');
|
|
7
7
|
var ui_Icon = require('../ui/Icon.js');
|
|
8
|
-
var ui_Label = require('./bundle-
|
|
9
|
-
var LocalizationContext = require('./bundle-
|
|
10
|
-
var consts = require('./bundle-
|
|
8
|
+
var ui_Label = require('./bundle-DY5rfl6W.js');
|
|
9
|
+
var LocalizationContext = require('./bundle-OWb8eJt-.js');
|
|
10
|
+
var consts = require('./bundle-BNzVVkzd.js');
|
|
11
|
+
var utils = require('./bundle-DOoshvnj.js');
|
|
11
12
|
|
|
12
13
|
/* eslint-disable no-redeclare */
|
|
13
14
|
var VoiceMessageInputStatus = {
|
|
@@ -35,7 +36,7 @@ var ControlerIcon = function (_a) {
|
|
|
35
36
|
React.createElement("div", { className: "sendbird-controler-icon pause-icon-inner" })));
|
|
36
37
|
}
|
|
37
38
|
default:
|
|
38
|
-
return null;
|
|
39
|
+
return React.createElement(React.Fragment, null);
|
|
39
40
|
}
|
|
40
41
|
};
|
|
41
42
|
|
|
@@ -59,14 +60,14 @@ var VoiceMessageInput = function (_a) {
|
|
|
59
60
|
var handleOnCancelClick = function () {
|
|
60
61
|
var currentTime = Date.now();
|
|
61
62
|
if (currentTime - lastClickTime > consts.VOICE_RECORDER_CLICK_BUFFER_TIME) {
|
|
62
|
-
onCancelClick();
|
|
63
|
+
onCancelClick === null || onCancelClick === void 0 ? void 0 : onCancelClick();
|
|
63
64
|
setLastClickTime(currentTime);
|
|
64
65
|
}
|
|
65
66
|
};
|
|
66
67
|
var handleOnControlClick = React.useCallback(function () {
|
|
67
68
|
var currentTime = Date.now();
|
|
68
69
|
if (currentTime - lastClickTime > consts.VOICE_RECORDER_CLICK_BUFFER_TIME) {
|
|
69
|
-
onControlClick(currentType);
|
|
70
|
+
onControlClick === null || onControlClick === void 0 ? void 0 : onControlClick(currentType);
|
|
70
71
|
setLastClickTime(currentTime);
|
|
71
72
|
}
|
|
72
73
|
}, [currentType]);
|
|
@@ -74,7 +75,7 @@ var VoiceMessageInput = function (_a) {
|
|
|
74
75
|
var currentTime = Date.now();
|
|
75
76
|
if (currentTime - lastClickTime > consts.VOICE_RECORDER_CLICK_BUFFER_TIME) {
|
|
76
77
|
if (!isSendButtonDisabled) {
|
|
77
|
-
onSubmitClick();
|
|
78
|
+
onSubmitClick === null || onSubmitClick === void 0 ? void 0 : onSubmitClick();
|
|
78
79
|
}
|
|
79
80
|
setLastClickTime(currentTime);
|
|
80
81
|
}
|
|
@@ -90,10 +91,10 @@ var VoiceMessageInput = function (_a) {
|
|
|
90
91
|
React.createElement(ui_Label.Label, { type: ui_Label.LabelTypography.BUTTON_1, color: ui_Label.LabelColors.PRIMARY }, stringSet.BUTTON__CANCEL))),
|
|
91
92
|
(renderControlButton === null || renderControlButton === void 0 ? void 0 : renderControlButton(currentType)) || (React.createElement("div", { className: "sendbird-voice-message-input__controler__main", onClick: handleOnControlClick },
|
|
92
93
|
React.createElement(ControlerIcon, { inputState: currentType }))),
|
|
93
|
-
(renderSubmitButton === null || renderSubmitButton === void 0 ? void 0 : renderSubmitButton()) || (React.createElement("div", { className:
|
|
94
|
+
(renderSubmitButton === null || renderSubmitButton === void 0 ? void 0 : renderSubmitButton()) || (React.createElement("div", { className: utils.classnames('sendbird-voice-message-input__controler__submit', isSendButtonDisabled && 'voice-message--disabled'), onClick: handleOnSubmitClick },
|
|
94
95
|
React.createElement(ui_Icon.default, { width: "19px", height: "19px", type: ui_Icon.IconTypes.SEND, fillColor: isSendButtonDisabled ? ui_Icon.IconColors.ON_BACKGROUND_4 : ui_Icon.IconColors.CONTENT }))))));
|
|
95
96
|
};
|
|
96
97
|
|
|
97
98
|
exports.VoiceMessageInput = VoiceMessageInput;
|
|
98
99
|
exports.VoiceMessageInputStatus = VoiceMessageInputStatus;
|
|
99
|
-
//# sourceMappingURL=bundle-
|
|
100
|
+
//# sourceMappingURL=bundle-D1mguvwi.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D1mguvwi.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D3BhVTZt.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var _tslib = require('./bundle-
|
|
3
|
+
var _tslib = require('./bundle-eTYC1RPT.js');
|
|
4
4
|
var React = require('react');
|
|
5
5
|
var ui_Icon = require('../ui/Icon.js');
|
|
6
6
|
var ui_ChannelAvatar = require('../ui/ChannelAvatar.js');
|
|
7
|
-
var utils = require('./bundle-
|
|
8
|
-
var MediaQueryContext = require('./bundle-
|
|
7
|
+
var utils = require('./bundle-B2WuxwoH.js');
|
|
8
|
+
var MediaQueryContext = require('./bundle-OIKGVRus.js');
|
|
9
9
|
var useSendbirdStateContext = require('../useSendbirdStateContext.js');
|
|
10
|
-
var LocalizationContext = require('./bundle-
|
|
10
|
+
var LocalizationContext = require('./bundle-OWb8eJt-.js');
|
|
11
11
|
var ui_Header = require('../ui/Header.js');
|
|
12
12
|
|
|
13
13
|
var GroupChannelHeaderView = function (_a) {
|
|
@@ -29,4 +29,4 @@ var GroupChannelHeaderView = function (_a) {
|
|
|
29
29
|
};
|
|
30
30
|
|
|
31
31
|
exports.GroupChannelHeaderView = GroupChannelHeaderView;
|
|
32
|
-
//# sourceMappingURL=bundle-
|
|
32
|
+
//# sourceMappingURL=bundle-D7rSRN-8.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-D7rSRN-8.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -5,7 +5,7 @@ var GroupChannelList_components_GroupChannelListHeader = require('../GroupChanne
|
|
|
5
5
|
var useSendbirdStateContext = require('../useSendbirdStateContext.js');
|
|
6
6
|
var EditUserProfile = require('../EditUserProfile.js');
|
|
7
7
|
var ui_PlaceHolder = require('../ui/PlaceHolder.js');
|
|
8
|
-
var index = require('./bundle-
|
|
8
|
+
var index = require('./bundle-DQu5RJ2y.js');
|
|
9
9
|
|
|
10
10
|
var GroupChannelListUIView = function (_a) {
|
|
11
11
|
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;
|
|
@@ -56,7 +56,7 @@ var GroupChannelListUIView = function (_a) {
|
|
|
56
56
|
var ChannelListComponent = function (props) {
|
|
57
57
|
var data = props.data, renderItem = props.renderItem, onLoadMore = props.onLoadMore, placeholderLoading = props.placeholderLoading, placeholderError = props.placeholderError, placeholderEmpty = props.placeholderEmpty;
|
|
58
58
|
var onScroll = index.useOnScrollPositionChangeDetector({
|
|
59
|
-
onReachedBottom: function () { return onLoadMore(); },
|
|
59
|
+
onReachedBottom: function () { return onLoadMore === null || onLoadMore === void 0 ? void 0 : onLoadMore(); },
|
|
60
60
|
});
|
|
61
61
|
return (React.createElement("div", { className: 'sendbird-channel-list__body', onScroll: onScroll },
|
|
62
62
|
placeholderError,
|
|
@@ -66,4 +66,4 @@ var ChannelListComponent = function (props) {
|
|
|
66
66
|
};
|
|
67
67
|
|
|
68
68
|
exports.GroupChannelListUIView = GroupChannelListUIView;
|
|
69
|
-
//# sourceMappingURL=bundle-
|
|
69
|
+
//# sourceMappingURL=bundle-DAEHB1AV.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DAEHB1AV.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var React = require('react');
|
|
4
|
-
var ui_Label = require('./bundle-
|
|
4
|
+
var ui_Label = require('./bundle-DY5rfl6W.js');
|
|
5
5
|
var ui_Icon = require('../ui/Icon.js');
|
|
6
|
-
var ui_Avatar = require('./bundle-
|
|
7
|
-
var LocalizationContext = require('./bundle-
|
|
8
|
-
var uuid = require('./bundle-
|
|
6
|
+
var ui_Avatar = require('./bundle-C_8UQBXr.js');
|
|
7
|
+
var LocalizationContext = require('./bundle-OWb8eJt-.js');
|
|
8
|
+
var uuid = require('./bundle-YRiE_c63.js');
|
|
9
|
+
var utils = require('./bundle-DOoshvnj.js');
|
|
9
10
|
var useSendbirdStateContext = require('../useSendbirdStateContext.js');
|
|
10
|
-
var _const$1 = require('./bundle-
|
|
11
|
-
var _const = require('./bundle-
|
|
12
|
-
var _tslib = require('./bundle-
|
|
11
|
+
var _const$1 = require('./bundle-CuOOXDK0.js');
|
|
12
|
+
var _const = require('./bundle-wz_O1vyk.js');
|
|
13
|
+
var _tslib = require('./bundle-eTYC1RPT.js');
|
|
13
14
|
|
|
14
15
|
function SuggestedUserMentionItem(props) {
|
|
15
16
|
var member = props.member, _a = props.isFocused, isFocused = _a === void 0 ? false : _a, parentScrollRef = props.parentScrollRef, onClick = props.onClick, onMouseOver = props.onMouseOver, onMouseMove = props.onMouseMove, renderUserMentionItem = props.renderUserMentionItem;
|
|
@@ -30,7 +31,7 @@ function SuggestedUserMentionItem(props) {
|
|
|
30
31
|
if (customMentionItem) {
|
|
31
32
|
return customMentionItem;
|
|
32
33
|
}
|
|
33
|
-
return (React.createElement("div", { className:
|
|
34
|
+
return (React.createElement("div", { className: utils.classnames('sendbird-mention-suggest-list__user-item', isFocused && 'focused'), onClick: function (event) { return onClick === null || onClick === void 0 ? void 0 : onClick({ event: event, member: member, itemRef: scrollRef }); }, onMouseOver: function (event) { return onMouseOver === null || onMouseOver === void 0 ? void 0 : onMouseOver({ event: event, member: member, itemRef: scrollRef }); }, onMouseMove: function (event) { return onMouseMove === null || onMouseMove === void 0 ? void 0 : onMouseMove({ event: event, member: member, itemRef: scrollRef }); }, key: (member === null || member === void 0 ? void 0 : member.userId) || uuid.uuidv4(), ref: scrollRef },
|
|
34
35
|
React.createElement(ui_Avatar.Avatar, { className: "sendbird-mention-suggest-list__user-item__avatar", src: member === null || member === void 0 ? void 0 : member.profileUrl, alt: "user-profile", width: "24px", height: "24px" }),
|
|
35
36
|
React.createElement(ui_Label.Label, { className: "sendbird-mention-suggest-list__user-item__nickname", type: ui_Label.LabelTypography.SUBTITLE_2, color: (member === null || member === void 0 ? void 0 : member.nickname) ? ui_Label.LabelColors.ONBACKGROUND_1 : ui_Label.LabelColors.ONBACKGROUND_3 }, (member === null || member === void 0 ? void 0 : member.nickname) || (stringSet === null || stringSet === void 0 ? void 0 : stringSet.MENTION_NAME__NO_NAME)),
|
|
36
37
|
React.createElement(ui_Label.Label, { className: "sendbird-mention-suggest-list__user-item__user-id", type: ui_Label.LabelTypography.SUBTITLE_2, color: ui_Label.LabelColors.ONBACKGROUND_2 }, member === null || member === void 0 ? void 0 : member.userId)));
|
|
@@ -85,29 +86,29 @@ var SuggestedMentionListView = function (props) {
|
|
|
85
86
|
var _m = React.useState(null), currentFocusedMember = _m[0], setCurrentFocusedMember = _m[1];
|
|
86
87
|
var _o = React.useState([]), currentMemberList = _o[0], setCurrentMemberList = _o[1];
|
|
87
88
|
React.useEffect(function () {
|
|
88
|
-
clearTimeout(timer);
|
|
89
|
+
clearTimeout(timer !== null && timer !== void 0 ? timer : undefined);
|
|
89
90
|
setTimer(setTimeout(function () {
|
|
90
91
|
setSearchString(targetNickname);
|
|
91
92
|
}, DEBOUNCING_TIME));
|
|
92
93
|
}, [targetNickname]);
|
|
93
94
|
React.useEffect(function () {
|
|
94
95
|
if ((inputEvent === null || inputEvent === void 0 ? void 0 : inputEvent.key) === _const.MessageInputKeys.Enter) {
|
|
95
|
-
if (currentMemberList.length > 0) {
|
|
96
|
-
onUserItemClick(currentFocusedMember);
|
|
96
|
+
if (currentFocusedMember && currentMemberList.length > 0) {
|
|
97
|
+
onUserItemClick === null || onUserItemClick === void 0 ? void 0 : onUserItemClick(currentFocusedMember);
|
|
97
98
|
}
|
|
98
99
|
}
|
|
99
100
|
if ((inputEvent === null || inputEvent === void 0 ? void 0 : inputEvent.key) === _const.MessageInputKeys.ArrowUp) {
|
|
100
101
|
var currentUserIndex = currentMemberList.findIndex(function (member) { return (member === null || member === void 0 ? void 0 : member.userId) === (currentFocusedMember === null || currentFocusedMember === void 0 ? void 0 : currentFocusedMember.userId); });
|
|
101
102
|
if (0 < currentUserIndex) {
|
|
102
103
|
setCurrentFocusedMember(currentMemberList[currentUserIndex - 1]);
|
|
103
|
-
onFocusItemChange(currentMemberList[currentUserIndex - 1]);
|
|
104
|
+
onFocusItemChange === null || onFocusItemChange === void 0 ? void 0 : onFocusItemChange(currentMemberList[currentUserIndex - 1]);
|
|
104
105
|
}
|
|
105
106
|
}
|
|
106
107
|
if ((inputEvent === null || inputEvent === void 0 ? void 0 : inputEvent.key) === _const.MessageInputKeys.ArrowDown) {
|
|
107
108
|
var currentUserIndex = currentMemberList.findIndex(function (member) { return (member === null || member === void 0 ? void 0 : member.userId) === (currentFocusedMember === null || currentFocusedMember === void 0 ? void 0 : currentFocusedMember.userId); });
|
|
108
109
|
if (currentUserIndex < currentMemberList.length - 1) {
|
|
109
110
|
setCurrentFocusedMember(currentMemberList[currentUserIndex + 1]);
|
|
110
|
-
onFocusItemChange(currentMemberList[currentUserIndex + 1]);
|
|
111
|
+
onFocusItemChange === null || onFocusItemChange === void 0 ? void 0 : onFocusItemChange(currentMemberList[currentUserIndex + 1]);
|
|
111
112
|
}
|
|
112
113
|
}
|
|
113
114
|
}, [inputEvent]);
|
|
@@ -133,7 +134,7 @@ var SuggestedMentionListView = function (props) {
|
|
|
133
134
|
setCurrentFocusedMember(suggestingMembers[0]);
|
|
134
135
|
}
|
|
135
136
|
setLastSearchString(searchString);
|
|
136
|
-
onFetchUsers(suggestingMembers);
|
|
137
|
+
onFetchUsers === null || onFetchUsers === void 0 ? void 0 : onFetchUsers(suggestingMembers);
|
|
137
138
|
setCurrentMemberList(suggestingMembers);
|
|
138
139
|
})
|
|
139
140
|
.catch(function (error) {
|
|
@@ -159,7 +160,7 @@ var SuggestedMentionListView = function (props) {
|
|
|
159
160
|
ableAddMention
|
|
160
161
|
&& (currentMemberList === null || currentMemberList === void 0 ? void 0 : currentMemberList.map(function (member) { return (React.createElement(SuggestedUserMentionItem, { key: (member === null || member === void 0 ? void 0 : member.userId) || uuid.uuidv4(), member: member, isFocused: (member === null || member === void 0 ? void 0 : member.userId) === (currentFocusedMember === null || currentFocusedMember === void 0 ? void 0 : currentFocusedMember.userId), parentScrollRef: scrollRef, onClick: function (_a) {
|
|
161
162
|
var member = _a.member;
|
|
162
|
-
onUserItemClick(member);
|
|
163
|
+
onUserItemClick === null || onUserItemClick === void 0 ? void 0 : onUserItemClick(member);
|
|
163
164
|
}, onMouseOver: function (_a) {
|
|
164
165
|
var member = _a.member;
|
|
165
166
|
setCurrentFocusedMember(member);
|
|
@@ -170,4 +171,4 @@ var SuggestedMentionListView = function (props) {
|
|
|
170
171
|
};
|
|
171
172
|
|
|
172
173
|
exports.SuggestedMentionListView = SuggestedMentionListView;
|
|
173
|
-
//# sourceMappingURL=bundle-
|
|
174
|
+
//# sourceMappingURL=bundle-DMUz-Xui.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bundle-
|
|
1
|
+
{"version":3,"file":"bundle-DMUz-Xui.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DOoshvnj.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var React = require('react');
|
|
4
|
-
var consts = require('./bundle-
|
|
5
|
-
var utils = require('./bundle-
|
|
4
|
+
var consts = require('./bundle-BNzVVkzd.js');
|
|
5
|
+
var utils = require('./bundle-BBsKv3Vz.js');
|
|
6
6
|
var uikitTools = require('@sendbird/uikit-tools');
|
|
7
|
-
var useThrottleCallback = require('./bundle-
|
|
7
|
+
var useThrottleCallback = require('./bundle-Bvsx1m1J.js');
|
|
8
8
|
|
|
9
9
|
var BUFFER_DELAY = 100;
|
|
10
10
|
function useOnScrollPositionChangeDetector(params) {
|
|
@@ -57,4 +57,4 @@ function useOnScrollPositionChangeDetectorWithRef(scrollRef, params) {
|
|
|
57
57
|
|
|
58
58
|
exports.useOnScrollPositionChangeDetector = useOnScrollPositionChangeDetector;
|
|
59
59
|
exports.useOnScrollPositionChangeDetectorWithRef = useOnScrollPositionChangeDetectorWithRef;
|
|
60
|
-
//# sourceMappingURL=bundle-
|
|
60
|
+
//# sourceMappingURL=bundle-DQu5RJ2y.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bundle-DQu5RJ2y.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var React = require('react');
|
|
4
|
-
var pubSub_topics = require('./bundle-
|
|
5
|
-
var utils = require('./bundle-
|
|
4
|
+
var pubSub_topics = require('./bundle-7CEyuoln.js');
|
|
5
|
+
var utils = require('./bundle-BBsKv3Vz.js');
|
|
6
6
|
require('../utils/message/getOutgoingMessageState.js');
|
|
7
|
-
var consts = require('./bundle-
|
|
7
|
+
var consts = require('./bundle-BNzVVkzd.js');
|
|
8
8
|
|
|
9
9
|
var getNicknamesMapFromMembers = function (members) {
|
|
10
10
|
if (members === void 0) { members = []; }
|
|
@@ -60,7 +60,9 @@ var scrollIntoLast = function (intialTry) {
|
|
|
60
60
|
try {
|
|
61
61
|
var scrollDOM = document.querySelector('.sendbird-thread-ui--scroll');
|
|
62
62
|
// eslint-disable-next-line no-multi-assign
|
|
63
|
-
scrollDOM
|
|
63
|
+
if (scrollDOM) {
|
|
64
|
+
scrollDOM.scrollTop = scrollDOM.scrollHeight;
|
|
65
|
+
}
|
|
64
66
|
}
|
|
65
67
|
catch (error) {
|
|
66
68
|
setTimeout(function () {
|
|
@@ -103,8 +105,7 @@ var useSendMultipleFilesMessage = function (_a, _b) {
|
|
|
103
105
|
}
|
|
104
106
|
logger.info('Channel: Start sending MFM', { messageParams: messageParams });
|
|
105
107
|
try {
|
|
106
|
-
currentChannel.sendMultipleFilesMessage(messageParams)
|
|
107
|
-
.onFileUploaded(function (requestId, index, uploadableFileInfo, error) {
|
|
108
|
+
currentChannel === null || currentChannel === void 0 ? void 0 : currentChannel.sendMultipleFilesMessage(messageParams).onFileUploaded(function (requestId, index, uploadableFileInfo, error) {
|
|
108
109
|
logger.info('Channel: onFileUploaded during sending MFM', {
|
|
109
110
|
requestId: requestId,
|
|
110
111
|
index: index,
|
|
@@ -121,8 +122,7 @@ var useSendMultipleFilesMessage = function (_a, _b) {
|
|
|
121
122
|
},
|
|
122
123
|
publishingModules: publishingModules,
|
|
123
124
|
});
|
|
124
|
-
})
|
|
125
|
-
.onPending(function (pendingMessage) {
|
|
125
|
+
}).onPending(function (pendingMessage) {
|
|
126
126
|
logger.info('Channel: in progress of sending MFM', { pendingMessage: pendingMessage, fileInfoList: messageParams.fileInfoList });
|
|
127
127
|
pubSub.publish(pubSub_topics.pubSubTopics.SEND_MESSAGE_START, {
|
|
128
128
|
message: pendingMessage,
|
|
@@ -137,8 +137,7 @@ var useSendMultipleFilesMessage = function (_a, _b) {
|
|
|
137
137
|
scrollIntoLast(0);
|
|
138
138
|
}
|
|
139
139
|
}, consts.SCROLL_BOTTOM_DELAY_FOR_SEND);
|
|
140
|
-
})
|
|
141
|
-
.onFailed(function (error, failedMessage) {
|
|
140
|
+
}).onFailed(function (error, failedMessage) {
|
|
142
141
|
logger.error('Channel: Sending MFM failed.', { error: error, failedMessage: failedMessage });
|
|
143
142
|
pubSub.publish(pubSub_topics.pubSubTopics.SEND_MESSAGE_FAILED, {
|
|
144
143
|
channel: currentChannel,
|
|
@@ -146,8 +145,7 @@ var useSendMultipleFilesMessage = function (_a, _b) {
|
|
|
146
145
|
publishingModules: publishingModules,
|
|
147
146
|
});
|
|
148
147
|
reject(error);
|
|
149
|
-
})
|
|
150
|
-
.onSucceeded(function (succeededMessage) {
|
|
148
|
+
}).onSucceeded(function (succeededMessage) {
|
|
151
149
|
logger.info('Channel: Sending voice message success!', { succeededMessage: succeededMessage });
|
|
152
150
|
pubSub.publish(pubSub_topics.pubSubTopics.SEND_FILE_MESSAGE, {
|
|
153
151
|
channel: currentChannel,
|
|
@@ -176,4 +174,4 @@ exports.getParentMessageFrom = getParentMessageFrom;
|
|
|
176
174
|
exports.isAboutSame = isAboutSame;
|
|
177
175
|
exports.scrollIntoLast = scrollIntoLast;
|
|
178
176
|
exports.useSendMultipleFilesMessage = useSendMultipleFilesMessage;
|
|
179
|
-
//# sourceMappingURL=bundle-
|
|
177
|
+
//# sourceMappingURL=bundle-DSLFcE0C.js.map
|