@sendbird/uikit-react 3.14.14 → 3.15.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.
- package/App.js +83 -82
- package/App.js.map +1 -1
- package/CHANGELOG.md +74 -0
- package/Channel/components/ChannelHeader.js +43 -33
- package/Channel/components/ChannelHeader.js.map +1 -1
- package/Channel/components/ChannelUI.js +78 -77
- package/Channel/components/ChannelUI.js.map +1 -1
- package/Channel/components/FileViewer.js +32 -32
- package/Channel/components/FrozenNotification.js +6 -6
- package/Channel/components/Message.js +67 -66
- package/Channel/components/Message.js.map +1 -1
- package/Channel/components/MessageInput.js +45 -45
- package/Channel/components/MessageInputWrapper.js +44 -44
- package/Channel/components/MessageList.js +70 -69
- package/Channel/components/MessageList.js.map +1 -1
- package/Channel/components/RemoveMessageModal.js +31 -31
- package/Channel/components/SuggestedMentionList.js +42 -30
- package/Channel/components/SuggestedMentionList.js.map +1 -1
- package/Channel/components/TypingIndicator.js +6 -6
- package/Channel/components/UnreadCount.js +8 -8
- package/Channel/context.js +50 -33
- package/Channel/context.js.map +1 -1
- package/Channel/hooks/useHandleUploadFiles.js +17 -17
- package/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/Channel/utils/compareMessagesForGrouping.js +6 -6
- package/Channel/utils/getMessagePartsInfo.js +7 -7
- package/Channel.js +78 -77
- package/Channel.js.map +1 -1
- package/ChannelList/components/AddChannel.js +31 -31
- package/ChannelList/components/ChannelListHeader.js +10 -10
- package/ChannelList/components/ChannelListUI.js +38 -37
- package/ChannelList/components/ChannelListUI.js.map +1 -1
- package/ChannelList/components/ChannelPreview.js +39 -38
- package/ChannelList/components/ChannelPreview.js.map +1 -1
- package/ChannelList/components/ChannelPreviewAction.js +15 -15
- package/ChannelList/context.js +28 -11
- package/ChannelList/context.js.map +1 -1
- package/ChannelList.js +48 -47
- package/ChannelList.js.map +1 -1
- package/ChannelSettings/components/ChannelProfile.js +24 -24
- package/ChannelSettings/components/ChannelSettingMenuList.js +27 -8
- package/ChannelSettings/components/ChannelSettingMenuList.js.map +1 -1
- package/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
- package/ChannelSettings/components/ChannelSettingsMenuItem.js +2 -2
- package/ChannelSettings/components/ChannelSettingsUI.js +36 -36
- package/ChannelSettings/components/EditDetailsModal.js +26 -26
- package/ChannelSettings/components/LeaveChannel.js +23 -23
- package/ChannelSettings/components/ModerationPanel.js +26 -26
- package/ChannelSettings/components/UserListItem.js +19 -19
- package/ChannelSettings/components/UserPanel.js +25 -25
- package/ChannelSettings/context.js +36 -13
- package/ChannelSettings/context.js.map +1 -1
- package/ChannelSettings/hooks/useMenuList.js +26 -26
- package/ChannelSettings.js +28 -28
- package/CreateChannel/components/CreateChannelUI.js +20 -20
- package/CreateChannel/components/InviteUsers.js +20 -20
- package/CreateChannel/components/SelectChannelType.js +17 -17
- package/CreateChannel/context.js +4 -4
- package/CreateChannel.js +20 -20
- package/CreateOpenChannel/components/CreateOpenChannelUI.js +18 -18
- package/CreateOpenChannel/context.js +1 -1
- package/CreateOpenChannel.js +18 -18
- package/EditUserProfile/components/EditUserProfileUI.js +19 -19
- package/EditUserProfile/context.js +1 -1
- package/EditUserProfile.js +19 -19
- package/GroupChannel/components/FileViewer.js +27 -26
- package/GroupChannel/components/FileViewer.js.map +1 -1
- package/GroupChannel/components/FrozenNotification.js +6 -6
- package/GroupChannel/components/GroupChannelHeader.js +37 -22
- package/GroupChannel/components/GroupChannelHeader.js.map +1 -1
- package/GroupChannel/components/GroupChannelUI.js +70 -69
- package/GroupChannel/components/GroupChannelUI.js.map +1 -1
- package/GroupChannel/components/Message.js +62 -61
- package/GroupChannel/components/Message.js.map +1 -1
- package/GroupChannel/components/MessageInputWrapper.js +39 -39
- package/GroupChannel/components/MessageList.js +53 -52
- package/GroupChannel/components/MessageList.js.map +1 -1
- package/GroupChannel/components/RemoveMessageModal.js +27 -26
- package/GroupChannel/components/RemoveMessageModal.js.map +1 -1
- 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 +47 -21
- package/GroupChannel/context.js.map +1 -1
- package/GroupChannel.js +70 -69
- package/GroupChannel.js.map +1 -1
- package/GroupChannelList/components/AddGroupChannel.js +22 -22
- package/GroupChannelList/components/GroupChannelListHeader.js +10 -10
- package/GroupChannelList/components/GroupChannelListItem.js +35 -34
- package/GroupChannelList/components/GroupChannelListItem.js.map +1 -1
- package/GroupChannelList/components/GroupChannelListUI.js +46 -45
- package/GroupChannelList/components/GroupChannelListUI.js.map +1 -1
- package/GroupChannelList/components/GroupChannelPreviewAction.js +15 -15
- package/GroupChannelList/context.js +27 -7
- package/GroupChannelList/context.js.map +1 -1
- package/GroupChannelList.js +45 -44
- package/GroupChannelList.js.map +1 -1
- package/MessageSearch/components/MessageSearchUI.js +15 -15
- package/MessageSearch/context.js +1 -1
- package/MessageSearch.js +17 -17
- package/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/OpenChannel/components/OpenChannelHeader.js +26 -26
- package/OpenChannel/components/OpenChannelInput.js +31 -31
- package/OpenChannel/components/OpenChannelMessage.js +40 -40
- package/OpenChannel/components/OpenChannelMessageList.js +45 -45
- package/OpenChannel/components/OpenChannelUI.js +45 -45
- package/OpenChannel/context.js +21 -21
- package/OpenChannel.js +43 -43
- package/OpenChannelList/components/OpenChannelListUI.js +20 -20
- package/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/OpenChannelList/context.js +3 -3
- package/OpenChannelList.js +20 -20
- package/OpenChannelSettings/components/EditDetailsModal.js +21 -21
- package/OpenChannelSettings/components/OpenChannelProfile.js +21 -21
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js +29 -29
- package/OpenChannelSettings/components/OperatorUI.js +29 -29
- package/OpenChannelSettings/components/ParticipantUI.js +22 -22
- package/OpenChannelSettings/context.js +26 -3
- package/OpenChannelSettings/context.js.map +1 -1
- package/OpenChannelSettings.js +22 -22
- package/SendbirdProvider.js +35 -31
- package/SendbirdProvider.js.map +1 -1
- package/Thread/components/ParentMessageInfo.js +50 -49
- package/Thread/components/ParentMessageInfo.js.map +1 -1
- package/Thread/components/ParentMessageInfoItem.js +33 -33
- package/Thread/components/ThreadHeader.js +8 -8
- package/Thread/components/ThreadList.js +65 -58
- package/Thread/components/ThreadList.js.map +1 -1
- package/Thread/components/ThreadListItem.js +159 -125
- package/Thread/components/ThreadListItem.js.map +1 -1
- package/Thread/components/ThreadMessageInput.js +53 -53
- package/Thread/components/ThreadUI.js +68 -62
- package/Thread/components/ThreadUI.js.map +1 -1
- package/Thread/context.js +37 -18
- package/Thread/context.js.map +1 -1
- package/Thread.js +69 -63
- package/Thread.js.map +1 -1
- package/VoicePlayer/context.js +4 -4
- package/VoicePlayer/useVoicePlayer.js +15 -15
- package/VoiceRecorder/context.js +15 -15
- package/VoiceRecorder/useVoiceRecorder.js +15 -15
- package/chunks/{bundle-Cn1EBKt6.js → bundle-0Gx8RJPb.js} +4 -4
- package/chunks/bundle-0Gx8RJPb.js.map +1 -0
- package/chunks/{bundle-B6Uh5m2a.js → bundle-1OQSuRhE.js} +6 -6
- package/chunks/{bundle-B6Uh5m2a.js.map → bundle-1OQSuRhE.js.map} +1 -1
- package/chunks/{bundle-DTOg7Xzt.js → bundle-3Cx2Ebdg.js} +1 -1
- package/chunks/bundle-3Cx2Ebdg.js.map +1 -0
- package/chunks/{bundle-CAKfDkwC.js → bundle-9_AvcpzC.js} +2 -2
- package/chunks/{bundle-CAKfDkwC.js.map → bundle-9_AvcpzC.js.map} +1 -1
- package/chunks/{bundle-DO8nji3n.js → bundle-AMVN7cK_.js} +4 -4
- package/chunks/bundle-AMVN7cK_.js.map +1 -0
- package/chunks/{bundle-DM6QiOiG.js → bundle-AWRDhHEB.js} +3 -3
- package/chunks/bundle-AWRDhHEB.js.map +1 -0
- package/chunks/{bundle-CBwCMBt0.js → bundle-B0ZoTIxO.js} +2 -2
- package/chunks/bundle-B0ZoTIxO.js.map +1 -0
- package/chunks/{bundle-egkx7NWB.js → bundle-B0xqOjWD.js} +1 -1
- package/chunks/bundle-B0xqOjWD.js.map +1 -0
- package/chunks/{bundle-BKe5KBuS.js → bundle-B2urOslr.js} +1 -1
- package/chunks/bundle-B2urOslr.js.map +1 -0
- package/chunks/bundle-B4S_3ODJ.js +45 -0
- package/chunks/bundle-B4S_3ODJ.js.map +1 -0
- package/chunks/{bundle-MlowEcAQ.js → bundle-B6lm5wRV.js} +1 -1
- package/chunks/bundle-B6lm5wRV.js.map +1 -0
- package/chunks/{bundle-CmAUKSnK.js → bundle-B97Pr4zD.js} +3 -3
- package/chunks/bundle-B97Pr4zD.js.map +1 -0
- package/chunks/{bundle-nv2ffewN.js → bundle-B9H_wGpv.js} +8 -8
- package/chunks/bundle-B9H_wGpv.js.map +1 -0
- package/chunks/{bundle-CEZ0D4qz.js → bundle-BC3_mS0I.js} +5 -3
- package/chunks/bundle-BC3_mS0I.js.map +1 -0
- package/chunks/{bundle-CSRcmLyk.js → bundle-BF3eZTrw.js} +5 -5
- package/chunks/{bundle-CSRcmLyk.js.map → bundle-BF3eZTrw.js.map} +1 -1
- package/chunks/{bundle-Bh6KfMRl.js → bundle-BPXxR5Uf.js} +12 -12
- package/chunks/{bundle-Bh6KfMRl.js.map → bundle-BPXxR5Uf.js.map} +1 -1
- package/chunks/{bundle-CbTjJHLv.js → bundle-BUfLVFOU.js} +4 -2
- package/chunks/bundle-BUfLVFOU.js.map +1 -0
- package/chunks/{bundle-q_YvxT21.js → bundle-BX3QBurJ.js} +2 -2
- package/chunks/{bundle-q_YvxT21.js.map → bundle-BX3QBurJ.js.map} +1 -1
- package/chunks/{bundle-BxrZduJE.js → bundle-BXRo7Ms-.js} +4 -4
- package/chunks/{bundle-BxrZduJE.js.map → bundle-BXRo7Ms-.js.map} +1 -1
- package/chunks/{bundle-5R9f3ZZp.js → bundle-BYzdqvuF.js} +1 -1
- package/chunks/bundle-BYzdqvuF.js.map +1 -0
- package/chunks/{bundle-BvAzWVA5.js → bundle-BdnV2Y4z.js} +5 -5
- package/chunks/bundle-BdnV2Y4z.js.map +1 -0
- package/chunks/{bundle-DWQyLuYT.js → bundle-BhNg8_4t.js} +8 -8
- package/chunks/{bundle-DWQyLuYT.js.map → bundle-BhNg8_4t.js.map} +1 -1
- package/chunks/{bundle-DYIdeEpd.js → bundle-BjLUCiRW.js} +1 -1
- package/chunks/bundle-BjLUCiRW.js.map +1 -0
- package/chunks/{bundle-CQgNYKRd.js → bundle-BnSYk8X8.js} +11 -13
- package/chunks/{bundle-CQgNYKRd.js.map → bundle-BnSYk8X8.js.map} +1 -1
- package/chunks/{bundle-Bt68jirZ.js → bundle-Bq9zpmTr.js} +3 -3
- package/chunks/{bundle-Bt68jirZ.js.map → bundle-Bq9zpmTr.js.map} +1 -1
- package/chunks/{bundle-fSuFm2tD.js → bundle-BqzJev_y.js} +1 -1
- package/chunks/bundle-BqzJev_y.js.map +1 -0
- package/chunks/{bundle-DZhG3Z6D.js → bundle-Bt2dBxqH.js} +1 -1
- package/chunks/bundle-Bt2dBxqH.js.map +1 -0
- package/chunks/{bundle-DHJZgVZH.js → bundle-Bu7Z-kDX.js} +3 -2
- package/chunks/bundle-Bu7Z-kDX.js.map +1 -0
- package/chunks/{bundle-v7PcSk1i.js → bundle-Bz7xrPuU.js} +11 -11
- package/chunks/{bundle-v7PcSk1i.js.map → bundle-Bz7xrPuU.js.map} +1 -1
- package/chunks/{bundle-CU9ItXV_.js → bundle-C1kDsrxV.js} +6 -6
- package/chunks/bundle-C1kDsrxV.js.map +1 -0
- package/chunks/{bundle-R159x0xi.js → bundle-C3p0xHh1.js} +16 -11
- package/chunks/bundle-C3p0xHh1.js.map +1 -0
- package/chunks/{bundle-B1SLZ0HT.js → bundle-C6zCSlOy.js} +4 -4
- package/chunks/{bundle-B1SLZ0HT.js.map → bundle-C6zCSlOy.js.map} +1 -1
- package/chunks/{bundle-CqCMcS8B.js → bundle-C7kp2g85.js} +13 -13
- package/chunks/bundle-C7kp2g85.js.map +1 -0
- package/chunks/{bundle-DxDVBm6N.js → bundle-CB44TzHJ.js} +3 -3
- package/chunks/bundle-CB44TzHJ.js.map +1 -0
- package/chunks/{bundle-j0SR3DhQ.js → bundle-CDCgNPAb.js} +10 -10
- package/chunks/bundle-CDCgNPAb.js.map +1 -0
- package/chunks/{bundle-uSSYB2TA.js → bundle-CD_Tf8Tg.js} +1 -1
- package/chunks/bundle-CD_Tf8Tg.js.map +1 -0
- package/chunks/{bundle-9-9DQjCI.js → bundle-CDrz1gXb.js} +3 -3
- package/chunks/bundle-CDrz1gXb.js.map +1 -0
- package/chunks/{bundle-BOC6Vh1w.js → bundle-CFDsqaKZ.js} +3 -3
- package/chunks/{bundle-BOC6Vh1w.js.map → bundle-CFDsqaKZ.js.map} +1 -1
- package/chunks/{bundle-DBzinRyn.js → bundle-CGStfx_a.js} +1 -1
- package/chunks/bundle-CGStfx_a.js.map +1 -0
- package/chunks/{bundle-C76-LA1E.js → bundle-CIEFjxmJ.js} +4 -4
- package/chunks/bundle-CIEFjxmJ.js.map +1 -0
- package/chunks/{bundle-CwpgCadZ.js → bundle-CJhIws_H.js} +1 -1
- package/chunks/bundle-CJhIws_H.js.map +1 -0
- package/chunks/{bundle-DgQjrhyW.js → bundle-CLnuIYIr.js} +1 -1
- package/chunks/bundle-CLnuIYIr.js.map +1 -0
- package/chunks/{bundle-Dg8Q1yIF.js → bundle-CS7Uj50F.js} +6 -6
- package/chunks/bundle-CS7Uj50F.js.map +1 -0
- package/chunks/{bundle-ke1HVuUa.js → bundle-CVelwvs9.js} +2 -2
- package/chunks/bundle-CVelwvs9.js.map +1 -0
- package/chunks/{bundle-CbMF1uDu.js → bundle-CX3lApC4.js} +1 -1
- package/chunks/bundle-CX3lApC4.js.map +1 -0
- package/chunks/{bundle-ChKVOZMC.js → bundle-CZjqrf6l.js} +23 -15
- package/chunks/{bundle-ChKVOZMC.js.map → bundle-CZjqrf6l.js.map} +1 -1
- package/chunks/bundle-Cbww_z2e.js +55 -0
- package/chunks/bundle-Cbww_z2e.js.map +1 -0
- package/chunks/{bundle-RC1OoWx9.js → bundle-Ch2e7Qt7.js} +6 -6
- package/chunks/bundle-Ch2e7Qt7.js.map +1 -0
- package/chunks/{bundle-FBWhhyW3.js → bundle-Cie8EoA6.js} +2 -2
- package/chunks/bundle-Cie8EoA6.js.map +1 -0
- package/chunks/{bundle-D2bCW01X.js → bundle-ClrkkF1s.js} +4 -4
- package/chunks/bundle-ClrkkF1s.js.map +1 -0
- package/chunks/{bundle-B7FJxg4D.js → bundle-CmzLUYaH.js} +5 -5
- package/chunks/{bundle-B7FJxg4D.js.map → bundle-CmzLUYaH.js.map} +1 -1
- package/chunks/{bundle-B5vIoHSd.js → bundle-CrHuWGHO.js} +1 -1
- package/chunks/bundle-CrHuWGHO.js.map +1 -0
- package/chunks/{bundle-BVBoUWl2.js → bundle-CsFxfKB9.js} +1 -1
- package/chunks/bundle-CsFxfKB9.js.map +1 -0
- package/chunks/{bundle-D2Fmzffb.js → bundle-CtQaDl-3.js} +8 -1
- package/chunks/{bundle-CAXTSiql.js.map → bundle-CtQaDl-3.js.map} +1 -1
- package/chunks/{bundle-FtNvi0ib.js → bundle-CuaMFXVq.js} +1 -1
- package/chunks/bundle-CuaMFXVq.js.map +1 -0
- package/chunks/{bundle-CM1oxZtw.js → bundle-Cwegt-nm.js} +1 -1
- package/chunks/bundle-Cwegt-nm.js.map +1 -0
- package/chunks/{bundle-C_WYFRJt.js → bundle-CxDSqHBZ.js} +9 -9
- package/chunks/{bundle-C_WYFRJt.js.map → bundle-CxDSqHBZ.js.map} +1 -1
- package/chunks/bundle-D126pKFC.js +371 -0
- package/{cjs/chunks/bundle-BDv_id6L.js.map → chunks/bundle-D126pKFC.js.map} +1 -1
- package/chunks/{bundle-NWVriOUB.js → bundle-D2UEFXos.js} +4 -4
- package/chunks/bundle-D2UEFXos.js.map +1 -0
- package/chunks/{bundle-C6F1gIgq.js → bundle-D5ebWfg_.js} +18 -19
- package/chunks/{bundle-C6F1gIgq.js.map → bundle-D5ebWfg_.js.map} +1 -1
- package/chunks/{bundle-DW8Sq-WK.js → bundle-DA-IzZD8.js} +1 -1
- package/chunks/{bundle-DW8Sq-WK.js.map → bundle-DA-IzZD8.js.map} +1 -1
- package/chunks/{bundle-Cvt9FZvn.js → bundle-DHWrOTdE.js} +1 -1
- package/chunks/bundle-DHWrOTdE.js.map +1 -0
- package/chunks/{bundle-D8esR1WH.js → bundle-DLq9CBff.js} +4 -4
- package/chunks/{bundle-D8esR1WH.js.map → bundle-DLq9CBff.js.map} +1 -1
- package/chunks/{bundle-CQbpvGWw.js → bundle-DMkUp2Zj.js} +3 -3
- package/chunks/{bundle-CQbpvGWw.js.map → bundle-DMkUp2Zj.js.map} +1 -1
- package/chunks/{bundle-c4e24Qt4.js → bundle-DN5GIyKa.js} +1 -1
- package/chunks/bundle-DN5GIyKa.js.map +1 -0
- package/chunks/{bundle-CRKkgI5q.js → bundle-DPEfWAww.js} +1 -1
- package/chunks/bundle-DPEfWAww.js.map +1 -0
- package/chunks/{bundle-CtBgdgkK.js → bundle-DQcY2W86.js} +1 -1
- package/chunks/bundle-DQcY2W86.js.map +1 -0
- package/chunks/{bundle-D-cVbGxk.js → bundle-DeJupTzy.js} +13 -6
- package/chunks/{bundle-D-cVbGxk.js.map → bundle-DeJupTzy.js.map} +1 -1
- package/chunks/{bundle-DcNHBjGp.js → bundle-DqlAZTU_.js} +1 -1
- package/chunks/bundle-DqlAZTU_.js.map +1 -0
- package/chunks/{bundle-DJDeBhDz.js → bundle-DxDfRH2o.js} +1 -1
- package/chunks/bundle-DxDfRH2o.js.map +1 -0
- package/chunks/{bundle-Ck65vtgI.js → bundle-GFeWGIxR.js} +8 -7
- package/chunks/bundle-GFeWGIxR.js.map +1 -0
- package/chunks/{bundle-CTaD4y3Q.js → bundle-Ikai7bsA.js} +1 -1
- package/chunks/bundle-Ikai7bsA.js.map +1 -0
- package/chunks/{bundle-C7VSBUKJ.js → bundle-MvZdDAaZ.js} +6 -6
- package/chunks/{bundle-C7VSBUKJ.js.map → bundle-MvZdDAaZ.js.map} +1 -1
- package/chunks/{bundle-CcvIdULa.js → bundle-SKLVfsFZ.js} +1 -1
- package/chunks/bundle-SKLVfsFZ.js.map +1 -0
- package/chunks/{bundle-CAXTSiql.js → bundle-S_NxC8XW.js} +14 -13
- package/chunks/{bundle-DtlqJEe7.js.map → bundle-S_NxC8XW.js.map} +1 -1
- package/chunks/{bundle-Dt4PQi4u.js → bundle-WrPH9h4-.js} +2 -2
- package/chunks/bundle-WrPH9h4-.js.map +1 -0
- package/chunks/{bundle-CwQYOWqR.js → bundle-ZFQVFwgt.js} +1 -1
- package/chunks/bundle-ZFQVFwgt.js.map +1 -0
- package/chunks/{bundle-BGQ77Eco.js → bundle-caWcyjAI.js} +9 -9
- package/chunks/{bundle-BGQ77Eco.js.map → bundle-caWcyjAI.js.map} +1 -1
- package/chunks/{bundle-DtlqJEe7.js → bundle-fUFWSJV3.js} +20 -3
- package/chunks/{bundle-D2Fmzffb.js.map → bundle-fUFWSJV3.js.map} +1 -1
- package/chunks/{bundle-B2Vy0FIf.js → bundle-h9S7gGIf.js} +2 -2
- package/chunks/bundle-h9S7gGIf.js.map +1 -0
- package/chunks/{bundle-DPf4rz9k.js → bundle-mOV5MvC_.js} +1 -1
- package/chunks/bundle-mOV5MvC_.js.map +1 -0
- package/chunks/{bundle-8Y67Y4IK.js → bundle-nWablW_z.js} +3 -3
- package/chunks/{bundle-8Y67Y4IK.js.map → bundle-nWablW_z.js.map} +1 -1
- package/chunks/{bundle-kNaMXwgI.js → bundle-pAwXUsP3.js} +7 -13
- package/chunks/{bundle-kNaMXwgI.js.map → bundle-pAwXUsP3.js.map} +1 -1
- package/chunks/{bundle-CfsHVenu.js → bundle-pLnnSYTq.js} +2 -2
- package/chunks/bundle-pLnnSYTq.js.map +1 -0
- package/chunks/{bundle-i2i0G-ml.js → bundle-pZApGXOy.js} +1 -1
- package/chunks/bundle-pZApGXOy.js.map +1 -0
- package/chunks/{bundle-C8mqUun8.js → bundle-sT16b-_c.js} +6 -6
- package/chunks/{bundle-C8mqUun8.js.map → bundle-sT16b-_c.js.map} +1 -1
- package/cjs/App.js +83 -82
- package/cjs/App.js.map +1 -1
- package/cjs/Channel/components/ChannelHeader.js +43 -33
- package/cjs/Channel/components/ChannelHeader.js.map +1 -1
- package/cjs/Channel/components/ChannelUI.js +78 -77
- package/cjs/Channel/components/ChannelUI.js.map +1 -1
- package/cjs/Channel/components/FileViewer.js +32 -32
- package/cjs/Channel/components/FrozenNotification.js +6 -6
- package/cjs/Channel/components/Message.js +67 -66
- package/cjs/Channel/components/Message.js.map +1 -1
- package/cjs/Channel/components/MessageInput.js +45 -45
- package/cjs/Channel/components/MessageInputWrapper.js +44 -44
- package/cjs/Channel/components/MessageList.js +70 -69
- package/cjs/Channel/components/MessageList.js.map +1 -1
- package/cjs/Channel/components/RemoveMessageModal.js +31 -31
- package/cjs/Channel/components/SuggestedMentionList.js +42 -30
- package/cjs/Channel/components/SuggestedMentionList.js.map +1 -1
- package/cjs/Channel/components/TypingIndicator.js +6 -6
- package/cjs/Channel/components/UnreadCount.js +8 -8
- package/cjs/Channel/context.js +50 -33
- package/cjs/Channel/context.js.map +1 -1
- package/cjs/Channel/hooks/useHandleUploadFiles.js +17 -17
- package/cjs/Channel/hooks/useInitialMessagesFetch.js +6 -6
- package/cjs/Channel/utils/compareMessagesForGrouping.js +6 -6
- package/cjs/Channel/utils/getMessagePartsInfo.js +7 -7
- package/cjs/Channel.js +78 -77
- package/cjs/Channel.js.map +1 -1
- package/cjs/ChannelList/components/AddChannel.js +31 -31
- package/cjs/ChannelList/components/ChannelListHeader.js +10 -10
- package/cjs/ChannelList/components/ChannelListUI.js +38 -37
- package/cjs/ChannelList/components/ChannelListUI.js.map +1 -1
- package/cjs/ChannelList/components/ChannelPreview.js +39 -38
- package/cjs/ChannelList/components/ChannelPreview.js.map +1 -1
- package/cjs/ChannelList/components/ChannelPreviewAction.js +15 -15
- package/cjs/ChannelList/context.js +28 -11
- package/cjs/ChannelList/context.js.map +1 -1
- package/cjs/ChannelList.js +48 -47
- package/cjs/ChannelList.js.map +1 -1
- package/cjs/ChannelSettings/components/ChannelProfile.js +24 -24
- package/cjs/ChannelSettings/components/ChannelSettingMenuList.js +27 -8
- package/cjs/ChannelSettings/components/ChannelSettingMenuList.js.map +1 -1
- package/cjs/ChannelSettings/components/ChannelSettingsHeader.js +8 -8
- package/cjs/ChannelSettings/components/ChannelSettingsMenuItem.js +2 -2
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js +36 -36
- package/cjs/ChannelSettings/components/EditDetailsModal.js +26 -26
- package/cjs/ChannelSettings/components/LeaveChannel.js +23 -23
- package/cjs/ChannelSettings/components/ModerationPanel.js +26 -26
- package/cjs/ChannelSettings/components/UserListItem.js +19 -19
- package/cjs/ChannelSettings/components/UserPanel.js +25 -25
- package/cjs/ChannelSettings/context.js +36 -13
- package/cjs/ChannelSettings/context.js.map +1 -1
- package/cjs/ChannelSettings/hooks/useMenuList.js +26 -26
- package/cjs/ChannelSettings.js +28 -28
- package/cjs/CreateChannel/components/CreateChannelUI.js +20 -20
- package/cjs/CreateChannel/components/InviteUsers.js +20 -20
- package/cjs/CreateChannel/components/SelectChannelType.js +17 -17
- package/cjs/CreateChannel/context.js +4 -4
- package/cjs/CreateChannel.js +20 -20
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +18 -18
- package/cjs/CreateOpenChannel/context.js +1 -1
- package/cjs/CreateOpenChannel.js +18 -18
- package/cjs/EditUserProfile/components/EditUserProfileUI.js +19 -19
- package/cjs/EditUserProfile/context.js +1 -1
- package/cjs/EditUserProfile.js +19 -19
- package/cjs/GroupChannel/components/FileViewer.js +27 -26
- package/cjs/GroupChannel/components/FileViewer.js.map +1 -1
- package/cjs/GroupChannel/components/FrozenNotification.js +6 -6
- package/cjs/GroupChannel/components/GroupChannelHeader.js +37 -22
- package/cjs/GroupChannel/components/GroupChannelHeader.js.map +1 -1
- package/cjs/GroupChannel/components/GroupChannelUI.js +70 -69
- package/cjs/GroupChannel/components/GroupChannelUI.js.map +1 -1
- package/cjs/GroupChannel/components/Message.js +62 -61
- package/cjs/GroupChannel/components/Message.js.map +1 -1
- package/cjs/GroupChannel/components/MessageInputWrapper.js +38 -38
- package/cjs/GroupChannel/components/MessageList.js +53 -52
- package/cjs/GroupChannel/components/MessageList.js.map +1 -1
- package/cjs/GroupChannel/components/RemoveMessageModal.js +27 -26
- package/cjs/GroupChannel/components/RemoveMessageModal.js.map +1 -1
- 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 +47 -21
- package/cjs/GroupChannel/context.js.map +1 -1
- package/cjs/GroupChannel.js +70 -69
- package/cjs/GroupChannel.js.map +1 -1
- package/cjs/GroupChannelList/components/AddGroupChannel.js +22 -22
- package/cjs/GroupChannelList/components/GroupChannelListHeader.js +10 -10
- package/cjs/GroupChannelList/components/GroupChannelListItem.js +35 -34
- package/cjs/GroupChannelList/components/GroupChannelListItem.js.map +1 -1
- package/cjs/GroupChannelList/components/GroupChannelListUI.js +46 -45
- package/cjs/GroupChannelList/components/GroupChannelListUI.js.map +1 -1
- package/cjs/GroupChannelList/components/GroupChannelPreviewAction.js +15 -15
- package/cjs/GroupChannelList/context.js +27 -7
- package/cjs/GroupChannelList/context.js.map +1 -1
- package/cjs/GroupChannelList.js +45 -44
- package/cjs/GroupChannelList.js.map +1 -1
- package/cjs/MessageSearch/components/MessageSearchUI.js +15 -15
- package/cjs/MessageSearch/context.js +1 -1
- package/cjs/MessageSearch.js +17 -17
- package/cjs/OpenChannel/components/FrozenChannelNotification.js +5 -5
- package/cjs/OpenChannel/components/OpenChannelHeader.js +26 -26
- package/cjs/OpenChannel/components/OpenChannelInput.js +31 -31
- package/cjs/OpenChannel/components/OpenChannelMessage.js +40 -40
- package/cjs/OpenChannel/components/OpenChannelMessageList.js +45 -45
- package/cjs/OpenChannel/components/OpenChannelUI.js +45 -45
- package/cjs/OpenChannel/context.js +21 -21
- package/cjs/OpenChannel.js +43 -43
- package/cjs/OpenChannelList/components/OpenChannelListUI.js +20 -20
- package/cjs/OpenChannelList/components/OpenChannelPreview.js +6 -6
- package/cjs/OpenChannelList/context.js +3 -3
- package/cjs/OpenChannelList.js +20 -20
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js +21 -21
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +21 -21
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +29 -29
- package/cjs/OpenChannelSettings/components/OperatorUI.js +29 -29
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +22 -22
- package/cjs/OpenChannelSettings/context.js +26 -3
- package/cjs/OpenChannelSettings/context.js.map +1 -1
- package/cjs/OpenChannelSettings.js +22 -22
- package/cjs/SendbirdProvider.js +35 -31
- package/cjs/SendbirdProvider.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfo.js +49 -48
- package/cjs/Thread/components/ParentMessageInfo.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfoItem.js +33 -33
- package/cjs/Thread/components/ThreadHeader.js +8 -8
- package/cjs/Thread/components/ThreadList.js +65 -58
- package/cjs/Thread/components/ThreadList.js.map +1 -1
- package/cjs/Thread/components/ThreadListItem.js +158 -124
- package/cjs/Thread/components/ThreadListItem.js.map +1 -1
- package/cjs/Thread/components/ThreadMessageInput.js +53 -53
- package/cjs/Thread/components/ThreadUI.js +68 -62
- package/cjs/Thread/components/ThreadUI.js.map +1 -1
- package/cjs/Thread/context.js +37 -18
- package/cjs/Thread/context.js.map +1 -1
- package/cjs/Thread.js +69 -63
- package/cjs/Thread.js.map +1 -1
- package/cjs/VoicePlayer/context.js +4 -4
- package/cjs/VoicePlayer/useVoicePlayer.js +15 -15
- package/cjs/VoiceRecorder/context.js +15 -15
- package/cjs/VoiceRecorder/useVoiceRecorder.js +15 -15
- package/cjs/chunks/{bundle-IOTgMjOG.js → bundle--Zk0yldu.js} +6 -6
- package/cjs/chunks/{bundle-IOTgMjOG.js.map → bundle--Zk0yldu.js.map} +1 -1
- package/cjs/chunks/{bundle-Bx6GgprJ.js → bundle-28nEChz7.js} +6 -6
- package/cjs/chunks/{bundle-Bx6GgprJ.js.map → bundle-28nEChz7.js.map} +1 -1
- package/cjs/chunks/{bundle-BUUc-Q9Z.js → bundle-3EldXmJH.js} +22 -3
- package/cjs/chunks/bundle-3EldXmJH.js.map +1 -0
- package/cjs/chunks/{bundle-CbsLlCEx.js → bundle-3WL4zWhZ.js} +6 -6
- package/cjs/chunks/bundle-3WL4zWhZ.js.map +1 -0
- package/cjs/chunks/{bundle-DBQIzqeh.js → bundle-4rb5E8TZ.js} +3 -3
- package/cjs/chunks/bundle-4rb5E8TZ.js.map +1 -0
- package/cjs/chunks/{bundle-7qQ_Gcke.js → bundle-6g9okweI.js} +2 -2
- package/cjs/chunks/bundle-6g9okweI.js.map +1 -0
- package/cjs/chunks/{bundle-o89mB4oG.js → bundle-6u2qJ3mY.js} +3 -3
- package/cjs/chunks/bundle-6u2qJ3mY.js.map +1 -0
- package/cjs/chunks/{bundle-DMzUOBjy.js → bundle-B4RW5nKM.js} +9 -9
- package/cjs/chunks/bundle-B4RW5nKM.js.map +1 -0
- package/cjs/chunks/{bundle-BG2TJKN7.js → bundle-B7eeXNH_.js} +3 -1
- package/cjs/chunks/bundle-B7eeXNH_.js.map +1 -0
- package/cjs/chunks/{bundle-DPBDeBk_.js → bundle-BBhf6nJ7.js} +1 -1
- package/cjs/chunks/bundle-BBhf6nJ7.js.map +1 -0
- package/cjs/chunks/{bundle-DgDbXNwZ.js → bundle-BEkAi09X.js} +2 -2
- package/cjs/chunks/{bundle-DgDbXNwZ.js.map → bundle-BEkAi09X.js.map} +1 -1
- package/cjs/chunks/{bundle-DuU5B5-_.js → bundle-BF4c8fbo.js} +5 -5
- package/cjs/chunks/bundle-BF4c8fbo.js.map +1 -0
- package/cjs/chunks/{bundle-Cn9zbty_.js → bundle-BFvWCa7e.js} +9 -9
- package/cjs/chunks/{bundle-Cn9zbty_.js.map → bundle-BFvWCa7e.js.map} +1 -1
- package/cjs/chunks/{bundle-DYB6uKmy.js → bundle-BHsoN10h.js} +13 -14
- package/cjs/chunks/{bundle-DYB6uKmy.js.map → bundle-BHsoN10h.js.map} +1 -1
- package/cjs/chunks/{bundle-D6fxhLHd.js → bundle-BIO8345U.js} +11 -13
- package/cjs/chunks/{bundle-D6fxhLHd.js.map → bundle-BIO8345U.js.map} +1 -1
- package/cjs/chunks/{bundle-DbDWGaYr.js → bundle-BIcGuop9.js} +1 -1
- package/cjs/chunks/bundle-BIcGuop9.js.map +1 -0
- package/cjs/chunks/{bundle-uDha8F3k.js → bundle-BK-k4GCO.js} +1 -1
- package/cjs/chunks/bundle-BK-k4GCO.js.map +1 -0
- package/cjs/chunks/{bundle-DEVJn_Ma.js → bundle-BKcIWZjY.js} +4 -4
- package/cjs/chunks/bundle-BKcIWZjY.js.map +1 -0
- package/cjs/chunks/{bundle-CJN-3bAB.js → bundle-BSfTWi6-.js} +5 -5
- package/cjs/chunks/{bundle-CJN-3bAB.js.map → bundle-BSfTWi6-.js.map} +1 -1
- package/cjs/chunks/{bundle-0R_EzdU1.js → bundle-BXcP3420.js} +1 -1
- package/cjs/chunks/bundle-BXcP3420.js.map +1 -0
- package/cjs/chunks/{bundle-CYDXrfgn.js → bundle-BZsDNwQP.js} +1 -1
- package/cjs/chunks/bundle-BZsDNwQP.js.map +1 -0
- package/cjs/chunks/{bundle-9sHOJFhF.js → bundle-BbqSbmfL.js} +5 -3
- package/cjs/chunks/{bundle-CbHfmh_r.js.map → bundle-BbqSbmfL.js.map} +1 -1
- package/cjs/chunks/{bundle-CVEM1wuY.js → bundle-BcDNTcnb.js} +8 -7
- package/cjs/chunks/bundle-BcDNTcnb.js.map +1 -0
- package/cjs/chunks/{bundle-DEaDEknP.js → bundle-Bd2CfAu4.js} +8 -8
- package/cjs/chunks/{bundle-DEaDEknP.js.map → bundle-Bd2CfAu4.js.map} +1 -1
- package/cjs/chunks/{bundle-Bwc8o1C8.js → bundle-BdWzA-7r.js} +1 -1
- package/cjs/chunks/bundle-BdWzA-7r.js.map +1 -0
- package/cjs/chunks/{bundle-Ci7n7_a7.js → bundle-BitLUCB9.js} +1 -1
- package/cjs/chunks/bundle-BitLUCB9.js.map +1 -0
- package/cjs/chunks/bundle-Br7K8gnB.js +52 -0
- package/cjs/chunks/bundle-Br7K8gnB.js.map +1 -0
- package/cjs/chunks/{bundle-CoCkmhLF.js → bundle-BwEUY5os.js} +16 -11
- package/cjs/chunks/bundle-BwEUY5os.js.map +1 -0
- package/cjs/chunks/{bundle-COOqgoBu.js → bundle-C58xUPfN.js} +8 -8
- package/cjs/chunks/bundle-C58xUPfN.js.map +1 -0
- package/cjs/chunks/{bundle-DZAa-Eux.js → bundle-CB045Nuo.js} +1 -1
- package/cjs/chunks/bundle-CB045Nuo.js.map +1 -0
- package/cjs/chunks/{bundle-LPFcZlPs.js → bundle-CBKc82WZ.js} +3 -3
- package/cjs/chunks/bundle-CBKc82WZ.js.map +1 -0
- package/cjs/chunks/{bundle-tb5ZQqGF.js → bundle-CG0iiNPb.js} +4 -4
- package/cjs/chunks/bundle-CG0iiNPb.js.map +1 -0
- package/cjs/chunks/{bundle-Bcia1ZjE.js → bundle-CGFsndyY.js} +1 -1
- package/cjs/chunks/bundle-CGFsndyY.js.map +1 -0
- package/cjs/chunks/{bundle-D7T59omO.js → bundle-CGMxhied.js} +8 -1
- package/cjs/chunks/bundle-CGMxhied.js.map +1 -0
- package/cjs/chunks/{bundle-C1sSg8J5.js → bundle-CGZW4jpi.js} +1 -1
- package/cjs/chunks/bundle-CGZW4jpi.js.map +1 -0
- package/cjs/chunks/{bundle-Bd8wa_YD.js → bundle-CGd7wrVy.js} +1 -1
- package/cjs/chunks/bundle-CGd7wrVy.js.map +1 -0
- package/cjs/chunks/{bundle-BNIYWaKd.js → bundle-CJ8Prs3A.js} +2 -2
- package/cjs/chunks/bundle-CJ8Prs3A.js.map +1 -0
- package/cjs/chunks/{bundle-Ckd1BD0l.js → bundle-CJP_T71E.js} +1 -1
- package/cjs/chunks/bundle-CJP_T71E.js.map +1 -0
- package/cjs/chunks/{bundle-C-8JkV5q.js → bundle-CJeGZVb-.js} +2 -2
- package/cjs/chunks/bundle-CJeGZVb-.js.map +1 -0
- package/cjs/chunks/{bundle-sPjQ2Pux.js → bundle-CLuwJZa0.js} +1 -1
- package/cjs/chunks/bundle-CLuwJZa0.js.map +1 -0
- package/cjs/chunks/bundle-CMUWjEfD.js +379 -0
- package/cjs/chunks/bundle-CMUWjEfD.js.map +1 -0
- package/cjs/chunks/{bundle-CM3V3Pp2.js → bundle-CNzeT2IO.js} +2 -2
- package/cjs/chunks/bundle-CNzeT2IO.js.map +1 -0
- package/cjs/chunks/{bundle-DdlhyKeM.js → bundle-CUfjpjxH.js} +4 -4
- package/cjs/chunks/{bundle-DdlhyKeM.js.map → bundle-CUfjpjxH.js.map} +1 -1
- package/cjs/chunks/{bundle-DmEOZijP.js → bundle-CW3LpHGq.js} +2 -2
- package/cjs/chunks/bundle-CW3LpHGq.js.map +1 -0
- package/cjs/chunks/{bundle-BDv_id6L.js → bundle-CWvufVBn.js} +12 -12
- package/cjs/chunks/bundle-CWvufVBn.js.map +1 -0
- package/cjs/chunks/{bundle-DWcUSvLK.js → bundle-CZfupcfw.js} +1 -1
- package/cjs/chunks/bundle-CZfupcfw.js.map +1 -0
- package/cjs/chunks/{bundle-BHfJKc_N.js → bundle-CeOu0usQ.js} +13 -12
- package/cjs/chunks/{bundle-BHfJKc_N.js.map → bundle-CeOu0usQ.js.map} +1 -1
- package/cjs/chunks/{bundle-3UY57nvm.js → bundle-CfvB3Kxi.js} +4 -4
- package/cjs/chunks/bundle-CfvB3Kxi.js.map +1 -0
- package/cjs/chunks/{bundle-BzpO-b1Z.js → bundle-CjXKt0wD.js} +4 -4
- package/cjs/chunks/bundle-CjXKt0wD.js.map +1 -0
- package/cjs/chunks/{bundle-Q-UG7cwq.js → bundle-Ck3i7iYA.js} +1 -1
- package/cjs/chunks/bundle-Ck3i7iYA.js.map +1 -0
- package/cjs/chunks/{bundle-euC8pSuz.js → bundle-CkJXlAHZ.js} +1 -1
- package/cjs/chunks/bundle-CkJXlAHZ.js.map +1 -0
- package/cjs/chunks/{bundle-9Cstqdab.js → bundle-CljE7hFH.js} +3 -3
- package/cjs/chunks/bundle-CljE7hFH.js.map +1 -0
- package/cjs/chunks/{bundle-C2wy3rcJ.js → bundle-Cp-ehIB7.js} +13 -13
- package/cjs/chunks/{bundle-C2wy3rcJ.js.map → bundle-Cp-ehIB7.js.map} +1 -1
- package/cjs/chunks/{bundle-B7Zg-Tkz.js → bundle-Cs8pPzsO.js} +4 -4
- package/cjs/chunks/{bundle-B7Zg-Tkz.js.map → bundle-Cs8pPzsO.js.map} +1 -1
- package/cjs/chunks/{bundle-DyxpS7wT.js → bundle-D-gTHhxN.js} +4 -4
- package/cjs/chunks/{bundle-DyxpS7wT.js.map → bundle-D-gTHhxN.js.map} +1 -1
- package/cjs/chunks/{bundle-D44WlUuQ.js → bundle-D2t1feVx.js} +1 -1
- package/cjs/chunks/bundle-D2t1feVx.js.map +1 -0
- package/cjs/chunks/{bundle-Cxjomv9D.js → bundle-D5OeOuGr.js} +1 -1
- package/cjs/chunks/bundle-D5OeOuGr.js.map +1 -0
- package/cjs/chunks/{bundle-Bo0Tbl9k.js → bundle-D6r5AhIG.js} +6 -6
- package/cjs/chunks/bundle-D6r5AhIG.js.map +1 -0
- package/cjs/chunks/{bundle-wbUo2tVB.js → bundle-D7Z6jlhn.js} +1 -1
- package/cjs/chunks/bundle-D7Z6jlhn.js.map +1 -0
- package/cjs/chunks/{bundle-B241wmWH.js → bundle-DF8Xdsv0.js} +1 -1
- package/cjs/chunks/bundle-DF8Xdsv0.js.map +1 -0
- package/cjs/chunks/{bundle-BaqV92aI.js → bundle-DJGqpwaN.js} +2 -2
- package/cjs/chunks/bundle-DJGqpwaN.js.map +1 -0
- package/cjs/chunks/{bundle-DXrsEC9G.js → bundle-DL_JJVfl.js} +1 -1
- package/cjs/chunks/bundle-DL_JJVfl.js.map +1 -0
- package/cjs/chunks/{bundle-DA1KoGNz.js → bundle-DW2uI_yk.js} +2 -2
- package/cjs/chunks/bundle-DW2uI_yk.js.map +1 -0
- package/cjs/chunks/{bundle-B8c2Wou9.js → bundle-DdTLIZl_.js} +3 -3
- package/cjs/chunks/bundle-DdTLIZl_.js.map +1 -0
- package/cjs/chunks/{bundle-vary6LA9.js → bundle-DkPO2tCQ.js} +6 -6
- package/cjs/chunks/bundle-DkPO2tCQ.js.map +1 -0
- package/cjs/chunks/{bundle-JIWumkkO.js → bundle-DnCTq-wS.js} +1 -1
- package/cjs/chunks/bundle-DnCTq-wS.js.map +1 -0
- package/cjs/chunks/{bundle-oluXnecE.js → bundle-DpuLDKUp.js} +1 -1
- package/cjs/chunks/bundle-DpuLDKUp.js.map +1 -0
- package/cjs/chunks/{bundle-BrQCTN2E.js → bundle-DrZRl1QV.js} +7 -13
- package/cjs/chunks/{bundle-BrQCTN2E.js.map → bundle-DrZRl1QV.js.map} +1 -1
- package/cjs/chunks/{bundle-CWtuu9g_.js → bundle-Dz9Mfb3J.js} +10 -10
- package/cjs/chunks/bundle-Dz9Mfb3J.js.map +1 -0
- package/cjs/chunks/{bundle-qaP5GJsM.js → bundle-EMecEM9W.js} +20 -2
- package/cjs/chunks/bundle-EMecEM9W.js.map +1 -0
- package/cjs/chunks/{bundle-Y04yRR5V.js → bundle-HS4AiSIx.js} +23 -15
- package/cjs/chunks/bundle-HS4AiSIx.js.map +1 -0
- package/cjs/chunks/{bundle-BPNJiHcO.js → bundle-KO2rkYYZ.js} +4 -2
- package/cjs/chunks/bundle-KO2rkYYZ.js.map +1 -0
- package/cjs/chunks/{bundle-C9ANrCh1.js → bundle-O9V8K9bF.js} +11 -11
- package/cjs/chunks/{bundle-C9ANrCh1.js.map → bundle-O9V8K9bF.js.map} +1 -1
- package/cjs/chunks/{bundle-zlHcIQSu.js → bundle-OA_02RkB.js} +4 -4
- package/cjs/chunks/bundle-OA_02RkB.js.map +1 -0
- package/cjs/chunks/{bundle-Cru9LFqc.js → bundle-OYuKPaGg.js} +1 -1
- package/cjs/chunks/bundle-OYuKPaGg.js.map +1 -0
- package/cjs/chunks/{bundle-CbHfmh_r.js → bundle-RIm06QKX.js} +5 -5
- package/cjs/chunks/bundle-RIm06QKX.js.map +1 -0
- package/cjs/chunks/{bundle-BA6o2UkA.js → bundle-TuOW3oY9.js} +3 -3
- package/cjs/chunks/bundle-TuOW3oY9.js.map +1 -0
- package/cjs/chunks/{bundle-FRTtuHVK.js → bundle-VE3gKTVh.js} +3 -3
- package/cjs/chunks/{bundle-FRTtuHVK.js.map → bundle-VE3gKTVh.js.map} +1 -1
- package/cjs/chunks/{bundle-DsQnVud7.js → bundle-W5xH9nry.js} +1 -1
- package/cjs/chunks/bundle-W5xH9nry.js.map +1 -0
- package/cjs/chunks/{bundle-D6pcLavL.js → bundle-WD84KbuC.js} +14 -5
- package/cjs/chunks/{bundle-D6pcLavL.js.map → bundle-WD84KbuC.js.map} +1 -1
- package/cjs/chunks/{bundle-BanlmTip.js → bundle-XzNiXnxy.js} +1 -1
- package/cjs/chunks/bundle-XzNiXnxy.js.map +1 -0
- package/cjs/chunks/{bundle-CS3WPoOW.js → bundle-aUuw1Quf.js} +1 -1
- package/cjs/chunks/bundle-aUuw1Quf.js.map +1 -0
- package/cjs/chunks/{bundle-G08Qqz-z.js → bundle-nknsRSk4.js} +1 -1
- package/cjs/chunks/bundle-nknsRSk4.js.map +1 -0
- package/cjs/chunks/{bundle-C0PJCoX9.js → bundle-oJ65xs4u.js} +1 -1
- package/cjs/chunks/bundle-oJ65xs4u.js.map +1 -0
- package/cjs/chunks/{bundle-_aqTj6vH.js → bundle-rZ3oQPkt.js} +6 -6
- package/cjs/chunks/bundle-rZ3oQPkt.js.map +1 -0
- package/cjs/chunks/{bundle-BIYSunHg.js → bundle-s8nmIanb.js} +3 -3
- package/cjs/chunks/bundle-s8nmIanb.js.map +1 -0
- package/cjs/hooks/useModal.js +15 -15
- package/cjs/index.js +85 -84
- package/cjs/index.js.map +1 -1
- package/cjs/lame.all.js +1 -1
- package/cjs/lame.all.js.map +1 -1
- package/cjs/pubSub/topics.js +1 -1
- package/cjs/sendbirdSelectors.js +2 -2
- package/cjs/ui/Accordion.js +2 -2
- 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 +15 -15
- package/cjs/ui/Button.js +3 -3
- package/cjs/ui/ChannelAvatar.js +5 -5
- package/cjs/ui/ConnectionStatus.js +6 -6
- package/cjs/ui/ContextMenu.js +11 -11
- package/cjs/ui/DateSeparator.js +4 -4
- package/cjs/ui/EmojiReactions.js +62 -39
- package/cjs/ui/EmojiReactions.js.map +1 -1
- package/cjs/ui/FallbackTemplateMessageItemBody.tsx.js +8 -8
- package/cjs/ui/FileMessageItemBody.js +9 -9
- package/cjs/ui/FileViewer.js +21 -20
- package/cjs/ui/FileViewer.js.map +1 -1
- package/cjs/ui/Header.js +6 -6
- package/cjs/ui/Icon.js +64 -62
- package/cjs/ui/Icon.js.map +1 -1
- package/cjs/ui/IconButton.js +1 -1
- package/cjs/ui/ImageRenderer.js +2 -2
- 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 +2 -2
- package/cjs/ui/MentionLabel.js +23 -17
- package/cjs/ui/MentionLabel.js.map +1 -1
- package/cjs/ui/MentionUserLabel.js +2 -2
- package/cjs/ui/MessageContent.js +77 -149
- package/cjs/ui/MessageContent.js.map +1 -1
- package/cjs/ui/MessageFeedbackFailedModal.js +16 -16
- package/cjs/ui/MessageFeedbackModal.js +16 -16
- package/cjs/ui/MessageInput/hooks/usePaste.js +7 -7
- package/cjs/ui/MessageInput.js +16 -16
- package/cjs/ui/MessageItemMenu.js +12 -12
- package/cjs/ui/MessageItemReactionMenu.js +20 -15
- package/cjs/ui/MessageItemReactionMenu.js.map +1 -1
- package/cjs/ui/MessageMenu.js +12 -12
- package/cjs/ui/MessageSearchFileItem.js +15 -15
- package/cjs/ui/MessageSearchItem.js +12 -12
- package/cjs/ui/MessageStatus.js +13 -13
- package/cjs/ui/MessageTemplate.js +1 -1
- package/cjs/ui/MobileFeedbackMenu.js +15 -15
- package/cjs/ui/MobileMenu.js +16 -16
- package/cjs/ui/Modal.js +15 -15
- package/cjs/ui/MutedAvatarOverlay.js +2 -2
- package/cjs/ui/OGMessageItemBody.js +25 -20
- 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 +26 -21
- package/cjs/ui/OpenchannelFileMessage.js.map +1 -1
- package/cjs/ui/OpenchannelOGMessage.js +29 -24
- package/cjs/ui/OpenchannelOGMessage.js.map +1 -1
- package/cjs/ui/OpenchannelThumbnailMessage.js +25 -20
- package/cjs/ui/OpenchannelThumbnailMessage.js.map +1 -1
- package/cjs/ui/OpenchannelUserMessage.js +26 -21
- package/cjs/ui/OpenchannelUserMessage.js.map +1 -1
- package/cjs/ui/PlaceHolder.js +6 -6
- package/cjs/ui/PlaybackTime.js +3 -3
- package/cjs/ui/ProgressBar.js +1 -1
- package/cjs/ui/QuoteMessage.js +10 -10
- package/cjs/ui/QuoteMessageInput.js +10 -10
- package/cjs/ui/ReactionBadge.js +3 -3
- package/cjs/ui/ReactionButton.js +4 -4
- package/cjs/ui/SortByRow.js +2 -2
- package/cjs/ui/TemplateMessageItemBody.js +10 -10
- package/cjs/ui/TextButton.js +2 -2
- package/cjs/ui/TextMessageItemBody.js +27 -21
- package/cjs/ui/TextMessageItemBody.js.map +1 -1
- package/cjs/ui/ThreadReplies.js +8 -8
- package/cjs/ui/ThumbnailMessageItemBody.js +8 -8
- package/cjs/ui/Toggle.js +1 -1
- package/cjs/ui/Tooltip.js +3 -3
- package/cjs/ui/TooltipWrapper.js +1 -1
- package/cjs/ui/TypingIndicatorBubble.js +4 -4
- package/cjs/ui/UnknownMessageItemBody.js +8 -8
- package/cjs/ui/UserListItem.js +20 -20
- package/cjs/ui/UserListItemMenu.js +12 -12
- package/cjs/ui/UserProfile.js +32 -16
- package/cjs/ui/UserProfile.js.map +1 -1
- package/cjs/ui/VoiceMessageInput.js +9 -9
- package/cjs/ui/VoiceMessageItemBody.js +15 -15
- package/cjs/ui/Word.js +24 -18
- package/cjs/ui/Word.js.map +1 -1
- package/cjs/useSendbirdStateContext.js +1 -1
- package/cjs/utils/message/isVoiceMessage.js +4 -4
- package/cjs/withSendbird.js +1 -1
- package/dist/index.css +589 -90
- package/hooks/useModal.js +15 -15
- package/index.js +85 -84
- package/index.js.map +1 -1
- package/lame.all.js +1 -1
- package/lame.all.js.map +1 -1
- package/package.json +4 -4
- package/pubSub/topics.js +1 -1
- package/sendbirdSelectors.js +2 -2
- package/types/hooks/VoiceRecorder/index.d.ts +1 -1
- package/types/hooks/useKeyDown/useKeyDown.d.ts +0 -1
- package/types/lib/Sendbird.d.ts +6 -2
- package/types/lib/UserProfileContext.d.ts +12 -7
- package/types/lib/hooks/useConnect/__test__/data.mocks.d.ts +5 -5
- package/types/lib/hooks/useConnect/setupConnection.d.ts +1 -1
- package/types/lib/hooks/useConnect/types.d.ts +0 -1
- package/types/lib/pubSub/index.d.ts +1 -1
- package/types/lib/types.d.ts +18 -9
- package/types/modules/App/types.d.ts +0 -1
- package/types/modules/Channel/context/ChannelProvider.d.ts +4 -5
- package/types/modules/Channel/context/hooks/useSendMultipleFilesMessage.d.ts +0 -1
- package/types/modules/ChannelList/context/ChannelListProvider.d.ts +2 -4
- package/types/modules/ChannelList/context/hooks/useActiveChannelUrl.d.ts +0 -1
- package/types/modules/ChannelList/utils.d.ts +1 -3
- package/types/modules/ChannelSettings/context/ChannelSettingsProvider.d.ts +3 -5
- package/types/modules/CreateChannel/utils.d.ts +2 -2
- package/types/modules/GroupChannel/components/Message/MessageView.d.ts +2 -1
- package/types/modules/GroupChannel/components/MessageInputWrapper/MessageInputWrapperView.d.ts +2 -1
- package/types/modules/GroupChannel/context/GroupChannelProvider.d.ts +5 -6
- package/types/modules/GroupChannel/context/const.d.ts +1 -0
- package/types/modules/GroupChannel/context/utils.d.ts +2 -0
- package/types/modules/GroupChannelList/components/GroupChannelListItem/utils.d.ts +1 -1
- package/types/modules/GroupChannelList/context/GroupChannelListProvider.d.ts +1 -1
- package/types/modules/Message/hooks/useDirtyGetMentions.d.ts +0 -1
- package/types/modules/Message/utils/tokens/tokenize.d.ts +2 -0
- package/types/modules/MessageSearch/index.d.ts +0 -1
- package/types/modules/OpenChannel/components/FrozenChannelNotification/index.d.ts +0 -1
- package/types/modules/OpenChannel/components/OpenChannelHeader/index.d.ts +0 -1
- package/types/modules/OpenChannel/components/OpenChannelMessage/RemoveMessageModal.d.ts +0 -1
- package/types/modules/OpenChannel/context/hooks/useCheckScrollBottom.d.ts +0 -1
- package/types/modules/OpenChannel/context/hooks/useHandleChannelEvents.d.ts +0 -1
- package/types/modules/OpenChannelApp/components/CommunityChannelList.d.ts +0 -1
- package/types/modules/OpenChannelApp/components/StreamingChannelList.d.ts +0 -1
- package/types/modules/Thread/components/ThreadList/ThreadListItem.d.ts +4 -7
- package/types/modules/Thread/components/ThreadList/ThreadListItemContent.d.ts +8 -10
- package/types/modules/Thread/context/ThreadProvider.d.ts +7 -10
- package/types/ui/Accordion/index.d.ts +0 -1
- package/types/ui/ChannelAvatar/OpenChannelAvatar.d.ts +0 -1
- package/types/ui/ChannelAvatar/index.d.ts +0 -1
- package/types/ui/ContextMenu/index.d.ts +1 -1
- package/types/ui/Docs/Introduction.d.ts +0 -1
- package/types/ui/EmojiReactions/ReactionItem.d.ts +2 -1
- package/types/ui/EmojiReactions/index.d.ts +3 -2
- package/types/ui/FormMessageItemBody/FormInput.d.ts +23 -0
- package/types/ui/FormMessageItemBody/index.d.ts +10 -0
- package/types/ui/Icon/colors.d.ts +2 -0
- package/types/ui/Icon/index.d.ts +1 -0
- package/types/ui/Label/index.d.ts +1 -0
- package/types/ui/Label/stringSet.d.ts +6 -0
- package/types/ui/Label/types.d.ts +1 -0
- package/types/ui/Label/utils.d.ts +1 -1
- package/types/ui/LinkLabel/index.d.ts +1 -0
- package/types/ui/MentionLabel/index.d.ts +0 -1
- package/types/ui/MentionUserLabel/index.d.ts +0 -1
- package/types/ui/MessageContent/MessageBody/index.d.ts +5 -2
- package/types/ui/MessageContent/MessageHeader/index.d.ts +3 -2
- package/types/ui/MessageContent/MessageProfile/index.d.ts +4 -2
- package/types/ui/MessageContent/index.d.ts +10 -3
- package/types/ui/MessageInput/hooks/usePaste/types.d.ts +0 -1
- package/types/ui/MessageInput/utils.d.ts +1 -1
- package/types/ui/MessageItemReactionMenu/index.d.ts +3 -2
- package/types/ui/MessageSearchItem/index.d.ts +0 -1
- package/types/ui/OpenchannelConversationHeader/index.d.ts +0 -1
- package/types/ui/OpenchannelFileMessage/index.d.ts +0 -1
- package/types/ui/OpenchannelOGMessage/index.d.ts +0 -1
- package/types/ui/OpenchannelThumbnailMessage/index.d.ts +0 -1
- package/types/ui/Word/index.d.ts +0 -1
- package/types/utils/index.d.ts +2 -0
- package/types/utils/isVoiceMessage.d.ts +1 -1
- package/types/utils/messages.d.ts +1 -1
- package/ui/Accordion.js +2 -2
- 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 +15 -15
- package/ui/Button.js +3 -3
- package/ui/ChannelAvatar.js +5 -5
- package/ui/ConnectionStatus.js +6 -6
- package/ui/ContextMenu.js +11 -11
- package/ui/DateSeparator.js +4 -4
- package/ui/EmojiReactions.js +62 -39
- package/ui/EmojiReactions.js.map +1 -1
- package/ui/FallbackTemplateMessageItemBody.tsx.js +8 -8
- package/ui/FileMessageItemBody.js +9 -9
- package/ui/FileViewer.js +21 -20
- package/ui/FileViewer.js.map +1 -1
- package/ui/Header.js +6 -6
- package/ui/Icon.js +64 -62
- package/ui/Icon.js.map +1 -1
- package/ui/IconButton.js +1 -1
- package/ui/ImageRenderer.js +2 -2
- 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 +2 -2
- package/ui/MentionLabel.js +23 -17
- package/ui/MentionLabel.js.map +1 -1
- package/ui/MentionUserLabel.js +2 -2
- package/ui/MessageContent.js +60 -138
- package/ui/MessageContent.js.map +1 -1
- package/ui/MessageFeedbackFailedModal.js +16 -16
- package/ui/MessageFeedbackModal.js +16 -16
- package/ui/MessageInput/hooks/usePaste.js +7 -7
- package/ui/MessageInput.js +16 -16
- package/ui/MessageItemMenu.js +12 -12
- package/ui/MessageItemReactionMenu.js +21 -16
- package/ui/MessageItemReactionMenu.js.map +1 -1
- package/ui/MessageMenu.js +12 -12
- package/ui/MessageSearchFileItem.js +15 -15
- package/ui/MessageSearchItem.js +12 -12
- package/ui/MessageStatus.js +13 -13
- package/ui/MessageTemplate.js +1 -1
- package/ui/MobileFeedbackMenu.js +15 -15
- package/ui/MobileMenu.js +16 -16
- package/ui/Modal.js +15 -15
- package/ui/MutedAvatarOverlay.js +2 -2
- package/ui/OGMessageItemBody.js +25 -20
- 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 +27 -22
- package/ui/OpenchannelFileMessage.js.map +1 -1
- package/ui/OpenchannelOGMessage.js +30 -25
- package/ui/OpenchannelOGMessage.js.map +1 -1
- package/ui/OpenchannelThumbnailMessage.js +26 -21
- package/ui/OpenchannelThumbnailMessage.js.map +1 -1
- package/ui/OpenchannelUserMessage.js +27 -22
- package/ui/OpenchannelUserMessage.js.map +1 -1
- package/ui/PlaceHolder.js +6 -6
- package/ui/PlaybackTime.js +3 -3
- package/ui/ProgressBar.js +1 -1
- package/ui/QuoteMessage.js +10 -10
- package/ui/QuoteMessageInput.js +10 -10
- package/ui/ReactionBadge.js +3 -3
- package/ui/ReactionButton.js +4 -4
- package/ui/SortByRow.js +2 -2
- package/ui/TemplateMessageItemBody.js +10 -10
- package/ui/TextButton.js +2 -2
- package/ui/TextMessageItemBody.js +27 -21
- package/ui/TextMessageItemBody.js.map +1 -1
- package/ui/ThreadReplies.js +8 -8
- package/ui/ThumbnailMessageItemBody.js +8 -8
- package/ui/Toggle.js +1 -1
- package/ui/Tooltip.js +3 -3
- package/ui/TooltipWrapper.js +1 -1
- package/ui/TypingIndicatorBubble.js +4 -4
- package/ui/UnknownMessageItemBody.js +8 -8
- package/ui/UserListItem.js +21 -21
- package/ui/UserListItemMenu.js +13 -13
- package/ui/UserProfile.js +32 -16
- package/ui/UserProfile.js.map +1 -1
- package/ui/VoiceMessageInput.js +9 -9
- package/ui/VoiceMessageItemBody.js +15 -15
- package/ui/Word.js +24 -18
- package/ui/Word.js.map +1 -1
- package/useSendbirdStateContext.js +1 -1
- package/utils/message/isVoiceMessage.js +4 -4
- package/withSendbird.js +1 -1
- package/chunks/bundle-5R9f3ZZp.js.map +0 -1
- package/chunks/bundle-9-9DQjCI.js.map +0 -1
- package/chunks/bundle-B2Vy0FIf.js.map +0 -1
- package/chunks/bundle-B5vIoHSd.js.map +0 -1
- package/chunks/bundle-BKe5KBuS.js.map +0 -1
- package/chunks/bundle-BKxPk2t0.js +0 -22
- package/chunks/bundle-BKxPk2t0.js.map +0 -1
- package/chunks/bundle-BVBoUWl2.js.map +0 -1
- package/chunks/bundle-BvAzWVA5.js.map +0 -1
- package/chunks/bundle-C76-LA1E.js.map +0 -1
- package/chunks/bundle-CBwCMBt0.js.map +0 -1
- package/chunks/bundle-CEZ0D4qz.js.map +0 -1
- package/chunks/bundle-CM1oxZtw.js.map +0 -1
- package/chunks/bundle-CRKkgI5q.js.map +0 -1
- package/chunks/bundle-CTaD4y3Q.js.map +0 -1
- package/chunks/bundle-CU9ItXV_.js.map +0 -1
- package/chunks/bundle-CbMF1uDu.js.map +0 -1
- package/chunks/bundle-CbTjJHLv.js.map +0 -1
- package/chunks/bundle-CcvIdULa.js.map +0 -1
- package/chunks/bundle-CfsHVenu.js.map +0 -1
- package/chunks/bundle-Ck65vtgI.js.map +0 -1
- package/chunks/bundle-CmAUKSnK.js.map +0 -1
- package/chunks/bundle-Cn1EBKt6.js.map +0 -1
- package/chunks/bundle-CqCMcS8B.js.map +0 -1
- package/chunks/bundle-CtBgdgkK.js.map +0 -1
- package/chunks/bundle-Cvt9FZvn.js.map +0 -1
- package/chunks/bundle-CwQYOWqR.js.map +0 -1
- package/chunks/bundle-CwpgCadZ.js.map +0 -1
- package/chunks/bundle-D2bCW01X.js.map +0 -1
- package/chunks/bundle-DBzinRyn.js.map +0 -1
- package/chunks/bundle-DHJZgVZH.js.map +0 -1
- package/chunks/bundle-DJDeBhDz.js.map +0 -1
- package/chunks/bundle-DM6QiOiG.js.map +0 -1
- package/chunks/bundle-DO8nji3n.js.map +0 -1
- package/chunks/bundle-DPf4rz9k.js.map +0 -1
- package/chunks/bundle-DTOg7Xzt.js.map +0 -1
- package/chunks/bundle-DYIdeEpd.js.map +0 -1
- package/chunks/bundle-DZhG3Z6D.js.map +0 -1
- package/chunks/bundle-DcNHBjGp.js.map +0 -1
- package/chunks/bundle-Dg8Q1yIF.js.map +0 -1
- package/chunks/bundle-DgQjrhyW.js.map +0 -1
- package/chunks/bundle-Dt4PQi4u.js.map +0 -1
- package/chunks/bundle-DxDVBm6N.js.map +0 -1
- package/chunks/bundle-FBWhhyW3.js.map +0 -1
- package/chunks/bundle-FtNvi0ib.js.map +0 -1
- package/chunks/bundle-MlowEcAQ.js.map +0 -1
- package/chunks/bundle-NWVriOUB.js.map +0 -1
- package/chunks/bundle-R159x0xi.js.map +0 -1
- package/chunks/bundle-RC1OoWx9.js.map +0 -1
- package/chunks/bundle-c4e24Qt4.js.map +0 -1
- package/chunks/bundle-egkx7NWB.js.map +0 -1
- package/chunks/bundle-fSuFm2tD.js.map +0 -1
- package/chunks/bundle-h1wbrjk9.js +0 -38
- package/chunks/bundle-h1wbrjk9.js.map +0 -1
- package/chunks/bundle-i2i0G-ml.js.map +0 -1
- package/chunks/bundle-j0SR3DhQ.js.map +0 -1
- package/chunks/bundle-ke1HVuUa.js.map +0 -1
- package/chunks/bundle-nv2ffewN.js.map +0 -1
- package/chunks/bundle-uSSYB2TA.js.map +0 -1
- package/cjs/chunks/bundle-0R_EzdU1.js.map +0 -1
- package/cjs/chunks/bundle-3UY57nvm.js.map +0 -1
- package/cjs/chunks/bundle-7qQ_Gcke.js.map +0 -1
- package/cjs/chunks/bundle-9Cstqdab.js.map +0 -1
- package/cjs/chunks/bundle-9sHOJFhF.js.map +0 -1
- package/cjs/chunks/bundle-B241wmWH.js.map +0 -1
- package/cjs/chunks/bundle-B8c2Wou9.js.map +0 -1
- package/cjs/chunks/bundle-BA6o2UkA.js.map +0 -1
- package/cjs/chunks/bundle-BG2TJKN7.js.map +0 -1
- package/cjs/chunks/bundle-BIYSunHg.js.map +0 -1
- package/cjs/chunks/bundle-BNIYWaKd.js.map +0 -1
- package/cjs/chunks/bundle-BPNJiHcO.js.map +0 -1
- package/cjs/chunks/bundle-BUUc-Q9Z.js.map +0 -1
- package/cjs/chunks/bundle-BanlmTip.js.map +0 -1
- package/cjs/chunks/bundle-BaqV92aI.js.map +0 -1
- package/cjs/chunks/bundle-Bcia1ZjE.js.map +0 -1
- package/cjs/chunks/bundle-Bd8wa_YD.js.map +0 -1
- package/cjs/chunks/bundle-Bo0Tbl9k.js.map +0 -1
- package/cjs/chunks/bundle-Bwc8o1C8.js.map +0 -1
- package/cjs/chunks/bundle-BzpO-b1Z.js.map +0 -1
- package/cjs/chunks/bundle-C-8JkV5q.js.map +0 -1
- package/cjs/chunks/bundle-C0PJCoX9.js.map +0 -1
- package/cjs/chunks/bundle-C1sSg8J5.js.map +0 -1
- package/cjs/chunks/bundle-CM3V3Pp2.js.map +0 -1
- package/cjs/chunks/bundle-COOqgoBu.js.map +0 -1
- package/cjs/chunks/bundle-CS3WPoOW.js.map +0 -1
- package/cjs/chunks/bundle-CVEM1wuY.js.map +0 -1
- package/cjs/chunks/bundle-CWtuu9g_.js.map +0 -1
- package/cjs/chunks/bundle-CYDXrfgn.js.map +0 -1
- package/cjs/chunks/bundle-CbsLlCEx.js.map +0 -1
- package/cjs/chunks/bundle-Ci7n7_a7.js.map +0 -1
- package/cjs/chunks/bundle-Ckd1BD0l.js.map +0 -1
- package/cjs/chunks/bundle-CoCkmhLF.js.map +0 -1
- package/cjs/chunks/bundle-Cru9LFqc.js.map +0 -1
- package/cjs/chunks/bundle-CuSZh9iB.js +0 -29
- package/cjs/chunks/bundle-CuSZh9iB.js.map +0 -1
- package/cjs/chunks/bundle-Cxjomv9D.js.map +0 -1
- package/cjs/chunks/bundle-D44WlUuQ.js.map +0 -1
- package/cjs/chunks/bundle-D7T59omO.js.map +0 -1
- package/cjs/chunks/bundle-DA1KoGNz.js.map +0 -1
- package/cjs/chunks/bundle-DBQIzqeh.js.map +0 -1
- package/cjs/chunks/bundle-DEVJn_Ma.js.map +0 -1
- package/cjs/chunks/bundle-DMzUOBjy.js.map +0 -1
- package/cjs/chunks/bundle-DPBDeBk_.js.map +0 -1
- package/cjs/chunks/bundle-DWcUSvLK.js.map +0 -1
- package/cjs/chunks/bundle-DXrsEC9G.js.map +0 -1
- package/cjs/chunks/bundle-DZAa-Eux.js.map +0 -1
- package/cjs/chunks/bundle-DbDWGaYr.js.map +0 -1
- package/cjs/chunks/bundle-DmEOZijP.js.map +0 -1
- package/cjs/chunks/bundle-DsQnVud7.js.map +0 -1
- package/cjs/chunks/bundle-DuU5B5-_.js.map +0 -1
- package/cjs/chunks/bundle-G08Qqz-z.js.map +0 -1
- package/cjs/chunks/bundle-JIWumkkO.js.map +0 -1
- package/cjs/chunks/bundle-LPFcZlPs.js.map +0 -1
- package/cjs/chunks/bundle-Q-UG7cwq.js.map +0 -1
- package/cjs/chunks/bundle-Y04yRR5V.js.map +0 -1
- package/cjs/chunks/bundle-_aqTj6vH.js.map +0 -1
- package/cjs/chunks/bundle-euC8pSuz.js.map +0 -1
- package/cjs/chunks/bundle-o89mB4oG.js.map +0 -1
- package/cjs/chunks/bundle-oluXnecE.js.map +0 -1
- package/cjs/chunks/bundle-qaP5GJsM.js.map +0 -1
- package/cjs/chunks/bundle-sPjQ2Pux.js.map +0 -1
- package/cjs/chunks/bundle-tb5ZQqGF.js.map +0 -1
- package/cjs/chunks/bundle-uDha8F3k.js.map +0 -1
- package/cjs/chunks/bundle-vary6LA9.js.map +0 -1
- package/cjs/chunks/bundle-wbUo2tVB.js.map +0 -1
- package/cjs/chunks/bundle-zlHcIQSu.js.map +0 -1
package/dist/index.css
CHANGED
|
@@ -241,14 +241,14 @@
|
|
|
241
241
|
word-break: keep-all;
|
|
242
242
|
}
|
|
243
243
|
|
|
244
|
-
.sendbird-open-channel-preview .sendbird-open-channel-preview__context .sendbird-open-channel-preview__context__title .sendbird-open-channel-preview__context__title__channel-name.frozen {
|
|
245
|
-
max-width: calc(100% - 20px);
|
|
246
|
-
}
|
|
247
|
-
|
|
248
244
|
.sendbird--mobile-mode .sendbird-open-channel-preview .sendbird-open-channel-preview__context .sendbird-open-channel-preview__context__title .sendbird-open-channel-preview__context__title__channel-name {
|
|
249
245
|
overflow-y: hidden;
|
|
250
246
|
}
|
|
251
247
|
|
|
248
|
+
.sendbird-open-channel-preview .sendbird-open-channel-preview__context .sendbird-open-channel-preview__context__title .sendbird-open-channel-preview__context__title__channel-name.frozen {
|
|
249
|
+
max-width: calc(100% - 20px);
|
|
250
|
+
}
|
|
251
|
+
|
|
252
252
|
.sendbird-open-channel-preview .sendbird-open-channel-preview__context .sendbird-open-channel-preview__context__title .sendbird-open-channel-preview__context__title__frozen {
|
|
253
253
|
position: relative;
|
|
254
254
|
display: inline-flex;
|
|
@@ -927,6 +927,7 @@
|
|
|
927
927
|
|
|
928
928
|
.sendbird-modal__content .sendbird-modal__body {
|
|
929
929
|
height: calc(100% - 116px);
|
|
930
|
+
overflow: auto;
|
|
930
931
|
}
|
|
931
932
|
|
|
932
933
|
.sendbird-modal__content .sendbird-modal__footer {
|
|
@@ -1627,6 +1628,14 @@
|
|
|
1627
1628
|
color: var(--sendbird-dark-onlight-02);
|
|
1628
1629
|
}
|
|
1629
1630
|
|
|
1631
|
+
.sendbird-theme--light .sendbird-label--color-oncontent-3 {
|
|
1632
|
+
color: var(--sendbird-light-ondark-03);
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
.sendbird-theme--dark .sendbird-label--color-oncontent-3 {
|
|
1636
|
+
color: var(--sendbird-dark-onlight-03);
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1630
1639
|
.sendbird-theme--light .sendbird-label--color-oncontent-inverse-1 {
|
|
1631
1640
|
color: var(--sendbird-light-onlight-01);
|
|
1632
1641
|
}
|
|
@@ -1710,6 +1719,14 @@
|
|
|
1710
1719
|
fill: var(--sendbird-dark-secondary-200);
|
|
1711
1720
|
}
|
|
1712
1721
|
|
|
1722
|
+
.sendbird-theme--light .sendbird-icon-color--secondary-2 [class*=fill] {
|
|
1723
|
+
fill: var(--sendbird-light-secondary-200);
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
.sendbird-theme--dark .sendbird-icon-color--secondary-2 [class*=fill] {
|
|
1727
|
+
fill: var(--sendbird-dark-secondary-200);
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1713
1730
|
.sendbird-theme--light .sendbird-icon-color--content [class*=fill] {
|
|
1714
1731
|
fill: var(--sendbird-light-ondark-01);
|
|
1715
1732
|
}
|
|
@@ -1903,6 +1920,11 @@
|
|
|
1903
1920
|
margin: 4px;
|
|
1904
1921
|
}
|
|
1905
1922
|
|
|
1923
|
+
.sendbird-dropdown__reaction-bar .sendbird-dropdown__reaction-bar__emptyLabel {
|
|
1924
|
+
width: -moz-fit-content;
|
|
1925
|
+
width: fit-content;
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1906
1928
|
.sendbird-dropdown__menu-backdrop {
|
|
1907
1929
|
background-color: transparent;
|
|
1908
1930
|
position: fixed;
|
|
@@ -3115,6 +3137,10 @@
|
|
|
3115
3137
|
position: relative;
|
|
3116
3138
|
}
|
|
3117
3139
|
|
|
3140
|
+
.sendbird-message-content.incoming .sendbird-message-content__middle .sendbird-message-content__middle__body-container {
|
|
3141
|
+
max-width: 100%;
|
|
3142
|
+
}
|
|
3143
|
+
|
|
3118
3144
|
.sendbird-message-content.incoming .sendbird-message-content__middle .sendbird-message-content__middle__body-container .sendbird-message-content__middle__body-container__created-at {
|
|
3119
3145
|
bottom: 6px;
|
|
3120
3146
|
display: flex;
|
|
@@ -3398,6 +3424,14 @@
|
|
|
3398
3424
|
box-sizing: border-box;
|
|
3399
3425
|
}
|
|
3400
3426
|
|
|
3427
|
+
.sendbird-message-content__middle__body-container .sendbird-message-content__middle__message-item-body.reactions {
|
|
3428
|
+
width: 100%;
|
|
3429
|
+
}
|
|
3430
|
+
|
|
3431
|
+
.sendbird-message-content__middle__body-container:has(.sendbird-message-content__middle__message-item-body.reactions) {
|
|
3432
|
+
align-items: unset;
|
|
3433
|
+
}
|
|
3434
|
+
|
|
3401
3435
|
.sendbird-message-content-reactions {
|
|
3402
3436
|
border-radius: 0 0 16px 16px;
|
|
3403
3437
|
max-width: 400px;
|
|
@@ -4934,7 +4968,6 @@
|
|
|
4934
4968
|
display: inline-block;
|
|
4935
4969
|
width: 320px;
|
|
4936
4970
|
min-width: 320px;
|
|
4937
|
-
max-width: 320px;
|
|
4938
4971
|
}
|
|
4939
4972
|
|
|
4940
4973
|
.sendbird--mobile-mode .sendbird-og-message-item-body {
|
|
@@ -5231,6 +5264,22 @@ div.sendbird-og-message-item-body__text-bubble {
|
|
|
5231
5264
|
background-color: var(--sendbird-dark-primary-300);
|
|
5232
5265
|
}
|
|
5233
5266
|
|
|
5267
|
+
.sendbird-theme--light .sendbird-text-message-item-body.disable-hover.mouse-hover.incoming, .sendbird-theme--light .sendbird-text-message-item-body.disable-hover:hover.incoming {
|
|
5268
|
+
background-color: var(--sendbird-light-background-100);
|
|
5269
|
+
}
|
|
5270
|
+
|
|
5271
|
+
.sendbird-theme--dark .sendbird-text-message-item-body.disable-hover.mouse-hover.incoming, .sendbird-theme--dark .sendbird-text-message-item-body.disable-hover:hover.incoming {
|
|
5272
|
+
background-color: var(--sendbird-dark-background-500);
|
|
5273
|
+
}
|
|
5274
|
+
|
|
5275
|
+
.sendbird-theme--light .sendbird-text-message-item-body.disable-hover.mouse-hover.outgoing, .sendbird-theme--light .sendbird-text-message-item-body.disable-hover:hover.outgoing {
|
|
5276
|
+
background-color: var(--sendbird-light-primary-300);
|
|
5277
|
+
}
|
|
5278
|
+
|
|
5279
|
+
.sendbird-theme--dark .sendbird-text-message-item-body.disable-hover.mouse-hover.outgoing, .sendbird-theme--dark .sendbird-text-message-item-body.disable-hover:hover.outgoing {
|
|
5280
|
+
background-color: var(--sendbird-dark-primary-200);
|
|
5281
|
+
}
|
|
5282
|
+
|
|
5234
5283
|
.sendbird-text-message-item-body .sendbird-text-message-item-body__text-bubble__message {
|
|
5235
5284
|
display: inline;
|
|
5236
5285
|
margin: 0px 2px;
|
|
@@ -5402,37 +5451,49 @@ div.sendbird-text-message-item-body {
|
|
|
5402
5451
|
display: flex;
|
|
5403
5452
|
flex-direction: row;
|
|
5404
5453
|
align-items: center;
|
|
5405
|
-
|
|
5406
|
-
|
|
5454
|
+
padding: 0 20px;
|
|
5455
|
+
overflow: hidden;
|
|
5407
5456
|
}
|
|
5408
5457
|
|
|
5409
|
-
|
|
5410
|
-
|
|
5458
|
+
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__avatar {
|
|
5459
|
+
display: flex;
|
|
5460
|
+
margin-inline-end: 8px;
|
|
5411
5461
|
}
|
|
5412
5462
|
|
|
5413
|
-
|
|
5414
|
-
margin-
|
|
5463
|
+
.sendbird--mobile-mode .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__avatar {
|
|
5464
|
+
margin-inline-end: 12px;
|
|
5415
5465
|
}
|
|
5416
5466
|
|
|
5417
|
-
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-
|
|
5467
|
+
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__text-container {
|
|
5468
|
+
display: flex;
|
|
5469
|
+
flex-direction: row;
|
|
5470
|
+
align-items: flex-end;
|
|
5471
|
+
}
|
|
5472
|
+
|
|
5473
|
+
.sendbird--mobile-mode .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__text-container {
|
|
5474
|
+
flex-direction: column;
|
|
5475
|
+
align-items: unset;
|
|
5476
|
+
}
|
|
5477
|
+
|
|
5478
|
+
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__text-container .sendbird-fileviewer__header__left__filename {
|
|
5418
5479
|
max-width: 500px;
|
|
5419
5480
|
white-space: nowrap;
|
|
5420
5481
|
overflow: hidden;
|
|
5421
5482
|
text-overflow: ellipsis;
|
|
5422
5483
|
display: inline-block;
|
|
5484
|
+
margin-inline-end: 8px;
|
|
5485
|
+
padding-top: 3px;
|
|
5423
5486
|
}
|
|
5424
5487
|
|
|
5425
|
-
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-
|
|
5426
|
-
display:
|
|
5427
|
-
|
|
5428
|
-
|
|
5429
|
-
|
|
5430
|
-
[dir="ltr"] .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__sender-name {
|
|
5431
|
-
margin-left: 8px;
|
|
5488
|
+
.sendbird--mobile-mode .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__text-container .sendbird-fileviewer__header__left__filename {
|
|
5489
|
+
display: block;
|
|
5490
|
+
max-width: calc(100vw - 240px);
|
|
5491
|
+
padding-top: 0;
|
|
5492
|
+
margin-inline-end: 0;
|
|
5432
5493
|
}
|
|
5433
5494
|
|
|
5434
|
-
|
|
5435
|
-
|
|
5495
|
+
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__text-container .sendbird-fileviewer__header__left__sender-name {
|
|
5496
|
+
line-height: 1.1;
|
|
5436
5497
|
}
|
|
5437
5498
|
|
|
5438
5499
|
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__right {
|
|
@@ -6050,6 +6111,359 @@ div.sendbird-text-message-item-body {
|
|
|
6050
6111
|
border-radius: 0;
|
|
6051
6112
|
font-family: var(--sendbird-font-family-default);
|
|
6052
6113
|
}
|
|
6114
|
+
.sendbird-theme--light {
|
|
6115
|
+
--form__chip__color__selected-focus: var(--sendbird-light-primary-300);
|
|
6116
|
+
--form__chip__color__submitted-default: var(--sendbird-light-onlight-02);
|
|
6117
|
+
--form__chip__bg-color__default: var(--sendbird-light-background-50);
|
|
6118
|
+
--form__chip__bg-color__selected: var(--sendbird-light-primary-100);
|
|
6119
|
+
--form__chip__bg-color__selected-hover: var(--sendbird-light-background-50);
|
|
6120
|
+
--form__chip__bg-color__selected-focus: var(--sendbird-light-background-50);
|
|
6121
|
+
--form__chip__bg-color__submitted-default: var(--sendbird-dark-ondark-02);
|
|
6122
|
+
--form__chip__bg-color__submitted-selected: var(--sendbird-dark-ondark-02);
|
|
6123
|
+
--form__chip__bd-color__default-focus: var(--sendbird-light-primary-300);
|
|
6124
|
+
--form__chip__bd-color__selected-focus: var(--sendbird-light-primary-300);
|
|
6125
|
+
--form__submitted-input-box__color: var(--sendbird-dark-onlight-01);
|
|
6126
|
+
--form__submitted-input-box__bg-color: var(--sendbird-dark-ondark-02);
|
|
6127
|
+
--form__submit-button__color__disabled: var(--sendbird-light-background-50);
|
|
6128
|
+
--form__submit-button__bg-color__disabled: var(--sendbird-light-onlight-04);
|
|
6129
|
+
}
|
|
6130
|
+
|
|
6131
|
+
.sendbird-theme--dark {
|
|
6132
|
+
--form__chip__color__selected-focus: var(--sendbird-dark-ondark-02);
|
|
6133
|
+
--form__chip__color__submitted-default: var(--sendbird-dark-ondark-04);
|
|
6134
|
+
--form__chip__bg-color__default: var(--sendbird-light-onlight-03);
|
|
6135
|
+
--form__chip__bg-color__selected: var(--sendbird-dark-background-600);
|
|
6136
|
+
--form__chip__bg-color__selected-hover: var(--sendbird-light-onlight-03);
|
|
6137
|
+
--form__chip__bg-color__selected-focus: var(--sendbird-light-onlight-03);
|
|
6138
|
+
--form__chip__bg-color__submitted-default: var(--sendbird-light-onlight-04);
|
|
6139
|
+
--form__chip__bg-color__submitted-selected: var(--sendbird-light-onlight-04);
|
|
6140
|
+
--form__chip__bd-color__default-focus: var(--sendbird-dark-ondark-02);
|
|
6141
|
+
--form__chip__bd-color__selected-focus: var(--sendbird-dark-ondark-02);
|
|
6142
|
+
--form__submitted-input-box__color: var(--sendbird-dark-ondark-01);
|
|
6143
|
+
--form__submitted-input-box__bg-color: var(--sendbird-light-onlight-04);
|
|
6144
|
+
--form__submit-button__color__disabled: var(--sendbird-light-onlight-01);
|
|
6145
|
+
--form__submit-button__bg-color__disabled: var(--sendbird-dark-ondark-04);
|
|
6146
|
+
}
|
|
6147
|
+
|
|
6148
|
+
.sendbird-form-message__submit-button {
|
|
6149
|
+
width: 100%;
|
|
6150
|
+
}
|
|
6151
|
+
|
|
6152
|
+
.sendbird-form-message__submit-button.sendbird-button__disabled {
|
|
6153
|
+
cursor: not-allowed;
|
|
6154
|
+
}
|
|
6155
|
+
|
|
6156
|
+
.sendbird-form-message__submit-button.sendbird-button__disabled.sendbird-button--primary .sendbird-button__text {
|
|
6157
|
+
color: var(--form__submit-button__color__disabled);
|
|
6158
|
+
}
|
|
6159
|
+
|
|
6160
|
+
.sendbird-theme--light .sendbird-form-message__submit-button.sendbird-button__disabled {
|
|
6161
|
+
background-color: var(--form__submit-button__bg-color__disabled);
|
|
6162
|
+
border: none;
|
|
6163
|
+
}
|
|
6164
|
+
|
|
6165
|
+
.sendbird-theme--light .sendbird-form-message__submit-button.sendbird-button__disabled:hover {
|
|
6166
|
+
background-color: var(--form__submit-button__bg-color__disabled);
|
|
6167
|
+
}
|
|
6168
|
+
|
|
6169
|
+
.sendbird-theme--dark .sendbird-form-message__submit-button.sendbird-button__disabled {
|
|
6170
|
+
background-color: var(--form__submit-button__bg-color__disabled);
|
|
6171
|
+
border: none;
|
|
6172
|
+
}
|
|
6173
|
+
|
|
6174
|
+
.sendbird-theme--dark .sendbird-form-message__submit-button.sendbird-button__disabled:hover {
|
|
6175
|
+
background-color: var(--form__submit-button__bg-color__disabled);
|
|
6176
|
+
}
|
|
6177
|
+
|
|
6178
|
+
.sendbird-form-message__input__label {
|
|
6179
|
+
line-height: 14px;
|
|
6180
|
+
display: block;
|
|
6181
|
+
font-weight: 500;
|
|
6182
|
+
margin-bottom: 6px;
|
|
6183
|
+
}
|
|
6184
|
+
|
|
6185
|
+
.sendbird-form-message__input__title-container {
|
|
6186
|
+
display: inline-block;
|
|
6187
|
+
}
|
|
6188
|
+
|
|
6189
|
+
.sendbird-form-message__input__container {
|
|
6190
|
+
width: 100%;
|
|
6191
|
+
position: relative;
|
|
6192
|
+
}
|
|
6193
|
+
|
|
6194
|
+
.sendbird-theme--light .sendbird-form-message__input__title-optional {
|
|
6195
|
+
color: var(--sendbird-light-onlight-03);
|
|
6196
|
+
}
|
|
6197
|
+
|
|
6198
|
+
.sendbird-theme--dark .sendbird-form-message__input__title-optional {
|
|
6199
|
+
color: var(--sendbird-dark-ondark-03);
|
|
6200
|
+
}
|
|
6201
|
+
|
|
6202
|
+
.sendbird-form-message__input__root {
|
|
6203
|
+
padding-bottom: 12px;
|
|
6204
|
+
width: 100%;
|
|
6205
|
+
font-family: var(--sendbird-font-family-default);
|
|
6206
|
+
}
|
|
6207
|
+
|
|
6208
|
+
.sendbird-form-message__input__textarea {
|
|
6209
|
+
display: block;
|
|
6210
|
+
resize: none;
|
|
6211
|
+
height: 96px !important;
|
|
6212
|
+
padding: 7px 12px !important;
|
|
6213
|
+
}
|
|
6214
|
+
|
|
6215
|
+
.sendbird-theme--light .sendbird-form-message__input__textarea ::-moz-placeholder {
|
|
6216
|
+
color: var(--sendbird-light-onlight-03);
|
|
6217
|
+
}
|
|
6218
|
+
|
|
6219
|
+
.sendbird-theme--light .sendbird-form-message__input__textarea ::placeholder {
|
|
6220
|
+
color: var(--sendbird-light-onlight-03);
|
|
6221
|
+
}
|
|
6222
|
+
|
|
6223
|
+
.sendbird-theme--dark .sendbird-form-message__input__textarea ::-moz-placeholder {
|
|
6224
|
+
color: var(--sendbird-dark-ondark-03);
|
|
6225
|
+
}
|
|
6226
|
+
|
|
6227
|
+
.sendbird-theme--dark .sendbird-form-message__input__textarea ::placeholder {
|
|
6228
|
+
color: var(--sendbird-dark-ondark-03);
|
|
6229
|
+
}
|
|
6230
|
+
|
|
6231
|
+
.sendbird-form-message__error-label {
|
|
6232
|
+
margin-top: 4px;
|
|
6233
|
+
color: var(--sendbird-light-error-300);
|
|
6234
|
+
}
|
|
6235
|
+
|
|
6236
|
+
.sendbird-form-message__submitted-input-box-text {
|
|
6237
|
+
width: calc(100% - 24px);
|
|
6238
|
+
line-height: 20px;
|
|
6239
|
+
}
|
|
6240
|
+
|
|
6241
|
+
.sendbird-form-message__root {
|
|
6242
|
+
display: flex;
|
|
6243
|
+
flex-direction: column;
|
|
6244
|
+
align-items: flex-start;
|
|
6245
|
+
padding: 16px 12px;
|
|
6246
|
+
max-width: 100%;
|
|
6247
|
+
box-sizing: border-box;
|
|
6248
|
+
min-width: 220px;
|
|
6249
|
+
border-radius: 16px;
|
|
6250
|
+
overflow: hidden;
|
|
6251
|
+
}
|
|
6252
|
+
|
|
6253
|
+
.sendbird--mobile-mode .sendbird-form-message__root {
|
|
6254
|
+
max-width: calc(100vw - 164px);
|
|
6255
|
+
}
|
|
6256
|
+
|
|
6257
|
+
.sendbird-form-message__input__chip-container {
|
|
6258
|
+
display: flex;
|
|
6259
|
+
width: 100%;
|
|
6260
|
+
align-items: flex-start;
|
|
6261
|
+
gap: 4px;
|
|
6262
|
+
flex-wrap: wrap;
|
|
6263
|
+
}
|
|
6264
|
+
|
|
6265
|
+
[dir="ltr"] .sendbird-form-message__submitted-check-icon-chip {
|
|
6266
|
+
margin-left: 4px;
|
|
6267
|
+
}
|
|
6268
|
+
|
|
6269
|
+
[dir="rtl"] .sendbird-form-message__submitted-check-icon-chip {
|
|
6270
|
+
margin-right: 4px;
|
|
6271
|
+
}
|
|
6272
|
+
|
|
6273
|
+
.sendbird-form-message__submitted-check-icon-container {
|
|
6274
|
+
display: flex;
|
|
6275
|
+
height: auto;
|
|
6276
|
+
align-items: flex-end;
|
|
6277
|
+
}
|
|
6278
|
+
|
|
6279
|
+
.sendbird-form-message__submitted-input-box {
|
|
6280
|
+
font-size: 14px;
|
|
6281
|
+
font-weight: normal;
|
|
6282
|
+
font-stretch: normal;
|
|
6283
|
+
font-style: normal;
|
|
6284
|
+
line-height: 1.43;
|
|
6285
|
+
letter-spacing: normal;
|
|
6286
|
+
display: flex;
|
|
6287
|
+
word-wrap: break-word;
|
|
6288
|
+
width: calc(100% - 24px);
|
|
6289
|
+
color: var(--form__submitted-input-box__color);
|
|
6290
|
+
background-color: var(--form__submitted-input-box__bg-color);
|
|
6291
|
+
border: none;
|
|
6292
|
+
pointer-events: none;
|
|
6293
|
+
border-radius: 4px;
|
|
6294
|
+
overflow-wrap: break-word;
|
|
6295
|
+
white-space: pre-wrap;
|
|
6296
|
+
padding: 8px 12px;
|
|
6297
|
+
min-height: 20px;
|
|
6298
|
+
}
|
|
6299
|
+
|
|
6300
|
+
.sendbird-form-message__submitted-input-box.textarea {
|
|
6301
|
+
padding: 9px 12px;
|
|
6302
|
+
min-height: 78px;
|
|
6303
|
+
}
|
|
6304
|
+
|
|
6305
|
+
.sendbird-form-message__input__chip-text {
|
|
6306
|
+
overflow: hidden;
|
|
6307
|
+
text-overflow: ellipsis;
|
|
6308
|
+
white-space: nowrap;
|
|
6309
|
+
font-size: 12px;
|
|
6310
|
+
font-weight: 500;
|
|
6311
|
+
font-style: normal;
|
|
6312
|
+
line-height: 20px;
|
|
6313
|
+
letter-spacing: normal;
|
|
6314
|
+
}
|
|
6315
|
+
|
|
6316
|
+
.sendbird-form-message__input__chip {
|
|
6317
|
+
border-radius: 100px;
|
|
6318
|
+
padding: 5px 11px;
|
|
6319
|
+
display: flex;
|
|
6320
|
+
justify-content: center;
|
|
6321
|
+
align-items: center;
|
|
6322
|
+
max-width: calc(100% - 32px);
|
|
6323
|
+
}
|
|
6324
|
+
|
|
6325
|
+
.sendbird-theme--light .sendbird-form-message__input__chip.default {
|
|
6326
|
+
color: var(--sendbird-light-onlight-02);
|
|
6327
|
+
border: 1px solid var(--sendbird-light-onlight-04);
|
|
6328
|
+
cursor: pointer;
|
|
6329
|
+
background-color: var(--form__chip__bg-color__default);
|
|
6330
|
+
}
|
|
6331
|
+
|
|
6332
|
+
.sendbird-theme--light .sendbird-form-message__input__chip.default:hover {
|
|
6333
|
+
color: var(--sendbird-light-primary-300);
|
|
6334
|
+
border: 1px solid var(--sendbird-light-primary-300);
|
|
6335
|
+
}
|
|
6336
|
+
|
|
6337
|
+
.sendbird-theme--light .sendbird-form-message__input__chip.default:focus {
|
|
6338
|
+
color: var(--sendbird-light-onlight-02);
|
|
6339
|
+
border: 1px solid var(--form__chip__bd-color__default-focus);
|
|
6340
|
+
outline: none;
|
|
6341
|
+
box-shadow: 0 0 0 1px var(--form__chip__bd-color__default-focus);
|
|
6342
|
+
}
|
|
6343
|
+
|
|
6344
|
+
.sendbird-theme--dark .sendbird-form-message__input__chip.default {
|
|
6345
|
+
color: var(--sendbird-dark-ondark-02);
|
|
6346
|
+
border: 1px solid var(--sendbird-dark-ondark-04);
|
|
6347
|
+
cursor: pointer;
|
|
6348
|
+
background-color: var(--form__chip__bg-color__default);
|
|
6349
|
+
}
|
|
6350
|
+
|
|
6351
|
+
.sendbird-theme--dark .sendbird-form-message__input__chip.default:hover {
|
|
6352
|
+
color: var(--sendbird-dark-primary-200);
|
|
6353
|
+
border: 1px solid var(--sendbird-dark-primary-200);
|
|
6354
|
+
}
|
|
6355
|
+
|
|
6356
|
+
.sendbird-theme--dark .sendbird-form-message__input__chip.default:focus {
|
|
6357
|
+
color: var(--sendbird-dark-ondark-02);
|
|
6358
|
+
border: 1px solid var(--form__chip__bd-color__default-focus);
|
|
6359
|
+
outline: none;
|
|
6360
|
+
box-shadow: 0 0 0 1px var(--form__chip__bd-color__default-focus);
|
|
6361
|
+
}
|
|
6362
|
+
|
|
6363
|
+
.sendbird-theme--light .sendbird-form-message__input__chip.selected {
|
|
6364
|
+
color: var(--sendbird-light-primary-300);
|
|
6365
|
+
background-color: var(--form__chip__bg-color__selected);
|
|
6366
|
+
border: 1px solid var(--sendbird-light-primary-300);
|
|
6367
|
+
cursor: pointer;
|
|
6368
|
+
}
|
|
6369
|
+
|
|
6370
|
+
.sendbird-theme--light .sendbird-form-message__input__chip.selected:hover {
|
|
6371
|
+
color: var(--sendbird-light-primary-300);
|
|
6372
|
+
background-color: var(--form__chip__bg-color__selected-hover);
|
|
6373
|
+
border: 1px solid var(--sendbird-light-primary-300);
|
|
6374
|
+
}
|
|
6375
|
+
|
|
6376
|
+
.sendbird-theme--light .sendbird-form-message__input__chip.selected:focus {
|
|
6377
|
+
color: var(--form__chip__color__selected-focus);
|
|
6378
|
+
background-color: var(--form__chip__bg-color__selected-focus);
|
|
6379
|
+
border: 1px solid var(--form__chip__bd-color__selected-focus);
|
|
6380
|
+
outline: none;
|
|
6381
|
+
box-shadow: 0 0 0 1px var(--form__chip__bd-color__selected-focus);
|
|
6382
|
+
}
|
|
6383
|
+
|
|
6384
|
+
.sendbird-theme--dark .sendbird-form-message__input__chip.selected {
|
|
6385
|
+
color: var(--sendbird-dark-primary-200);
|
|
6386
|
+
background-color: var(--form__chip__bg-color__selected);
|
|
6387
|
+
border: 1px solid var(--sendbird-dark-primary-200);
|
|
6388
|
+
cursor: pointer;
|
|
6389
|
+
}
|
|
6390
|
+
|
|
6391
|
+
.sendbird-theme--dark .sendbird-form-message__input__chip.selected:hover {
|
|
6392
|
+
color: var(--sendbird-dark-primary-200);
|
|
6393
|
+
background-color: var(--form__chip__bg-color__selected-hover);
|
|
6394
|
+
border: 1px solid var(--sendbird-dark-primary-200);
|
|
6395
|
+
}
|
|
6396
|
+
|
|
6397
|
+
.sendbird-theme--dark .sendbird-form-message__input__chip.selected:focus {
|
|
6398
|
+
color: var(--form__chip__color__selected-focus);
|
|
6399
|
+
background-color: var(--form__chip__bg-color__selected-focus);
|
|
6400
|
+
border: 1px solid var(--form__chip__bd-color__selected-focus);
|
|
6401
|
+
outline: none;
|
|
6402
|
+
box-shadow: 0 0 0 1px var(--form__chip__bd-color__selected-focus);
|
|
6403
|
+
}
|
|
6404
|
+
|
|
6405
|
+
.sendbird-form-message__input__chip.submittedDefault {
|
|
6406
|
+
border: none;
|
|
6407
|
+
cursor: default;
|
|
6408
|
+
padding: 6px 12px;
|
|
6409
|
+
}
|
|
6410
|
+
|
|
6411
|
+
.sendbird-theme--light .sendbird-form-message__input__chip.submittedDefault {
|
|
6412
|
+
color: var(--form__chip__color__submitted-default);
|
|
6413
|
+
background-color: var(--form__chip__bg-color__submitted-default);
|
|
6414
|
+
}
|
|
6415
|
+
|
|
6416
|
+
.sendbird-theme--dark .sendbird-form-message__input__chip.submittedDefault {
|
|
6417
|
+
color: var(--form__chip__color__submitted-default);
|
|
6418
|
+
background-color: var(--form__chip__bg-color__submitted-default);
|
|
6419
|
+
}
|
|
6420
|
+
|
|
6421
|
+
.sendbird-form-message__input__chip.submittedSelected {
|
|
6422
|
+
border: none;
|
|
6423
|
+
cursor: default;
|
|
6424
|
+
padding: 6px 12px;
|
|
6425
|
+
}
|
|
6426
|
+
|
|
6427
|
+
.sendbird-theme--light .sendbird-form-message__input__chip.submittedSelected {
|
|
6428
|
+
color: var(--sendbird-light-onlight-01);
|
|
6429
|
+
background-color: var(--form__chip__bg-color__submitted-selected);
|
|
6430
|
+
}
|
|
6431
|
+
|
|
6432
|
+
.sendbird-theme--dark .sendbird-form-message__input__chip.submittedSelected {
|
|
6433
|
+
color: var(--sendbird-dark-ondark-01);
|
|
6434
|
+
background-color: var(--form__chip__bg-color__submitted-selected);
|
|
6435
|
+
}
|
|
6436
|
+
.sendbird--mobile-mode .sendbird-message-feedback-modal-content__mobile {
|
|
6437
|
+
max-width: 280px;
|
|
6438
|
+
padding: 16px;
|
|
6439
|
+
}
|
|
6440
|
+
|
|
6441
|
+
.sendbird-message-feedback-modal-footer__root {
|
|
6442
|
+
display: flex;
|
|
6443
|
+
justify-content: space-between;
|
|
6444
|
+
align-items: center;
|
|
6445
|
+
}
|
|
6446
|
+
|
|
6447
|
+
.sendbird-message-feedback-modal-footer__root_failed {
|
|
6448
|
+
display: flex;
|
|
6449
|
+
justify-content: flex-end;
|
|
6450
|
+
align-items: center;
|
|
6451
|
+
margin-top: 48px;
|
|
6452
|
+
}
|
|
6453
|
+
|
|
6454
|
+
.sendbird-message-feedback-modal-footer__right-content {
|
|
6455
|
+
display: flex;
|
|
6456
|
+
gap: 8px;
|
|
6457
|
+
}
|
|
6458
|
+
|
|
6459
|
+
.sendbird-message-feedback-modal-body__root {
|
|
6460
|
+
margin: 21px 0;
|
|
6461
|
+
}
|
|
6462
|
+
|
|
6463
|
+
.sendbird--mobile-mode .sendbird-message-feedback-modal-header {
|
|
6464
|
+
font-size: 18px;
|
|
6465
|
+
line-height: 1.33;
|
|
6466
|
+
}
|
|
6053
6467
|
.sendbird-iconbutton__feedback {
|
|
6054
6468
|
display: flex;
|
|
6055
6469
|
justify-content: center;
|
|
@@ -6254,39 +6668,139 @@ div.sendbird-text-message-item-body {
|
|
|
6254
6668
|
color: var(--sendbird-dark-ondark-03);
|
|
6255
6669
|
}
|
|
6256
6670
|
|
|
6257
|
-
.sendbird-
|
|
6258
|
-
|
|
6671
|
+
.sendbird-theme--light {
|
|
6672
|
+
--form__input__bg-color_default: var(--sendbird-light-background-50);
|
|
6673
|
+
--form__input__bg-color_disabled: var(--sendbird-dark-ondark-02);
|
|
6674
|
+
--form__input__bd-color_error: var(--sendbird-light-error-300);
|
|
6259
6675
|
}
|
|
6260
|
-
|
|
6261
|
-
|
|
6262
|
-
|
|
6676
|
+
|
|
6677
|
+
.sendbird-theme--dark {
|
|
6678
|
+
--form__input__bg-color_default: var(--sendbird-light-onlight-03);
|
|
6679
|
+
--form__input__bg-color_disabled: var(--sendbird-light-onlight-04);
|
|
6680
|
+
--form__input__bd-color_error: var(--sendbird-dark-error-200);
|
|
6263
6681
|
}
|
|
6264
6682
|
|
|
6265
|
-
.sendbird-
|
|
6266
|
-
display:
|
|
6267
|
-
|
|
6268
|
-
|
|
6683
|
+
.sendbird-input_for_form {
|
|
6684
|
+
display: inline-block;
|
|
6685
|
+
width: 100%;
|
|
6686
|
+
height: unset;
|
|
6687
|
+
position: relative;
|
|
6269
6688
|
}
|
|
6270
6689
|
|
|
6271
|
-
.sendbird-
|
|
6272
|
-
|
|
6273
|
-
|
|
6274
|
-
|
|
6275
|
-
|
|
6690
|
+
.sendbird-input_for_form .sendbird-input__input {
|
|
6691
|
+
width: 100%;
|
|
6692
|
+
height: -moz-fit-content;
|
|
6693
|
+
height: fit-content;
|
|
6694
|
+
border-radius: 4px;
|
|
6695
|
+
font-family: var(--sendbird-font-family-default);
|
|
6696
|
+
font-size: 14px;
|
|
6697
|
+
font-weight: normal;
|
|
6698
|
+
font-stretch: normal;
|
|
6699
|
+
font-style: normal;
|
|
6700
|
+
line-height: 1.43;
|
|
6701
|
+
letter-spacing: normal;
|
|
6702
|
+
padding: 7px 12px;
|
|
6703
|
+
box-sizing: border-box;
|
|
6704
|
+
background-color: inherit;
|
|
6276
6705
|
}
|
|
6277
6706
|
|
|
6278
|
-
.sendbird-
|
|
6279
|
-
|
|
6280
|
-
|
|
6707
|
+
.sendbird-theme--light .sendbird-input_for_form .sendbird-input__input {
|
|
6708
|
+
caret-color: var(--sendbird-light-primary-300);
|
|
6709
|
+
color: var(--sendbird-light-onlight-01);
|
|
6710
|
+
background-color: var(--form__input__bg-color_default);
|
|
6711
|
+
border: solid 1px var(--sendbird-light-onlight-04);
|
|
6281
6712
|
}
|
|
6282
6713
|
|
|
6283
|
-
.sendbird-
|
|
6284
|
-
|
|
6714
|
+
.sendbird-theme--light .sendbird-input_for_form .sendbird-input__input:disabled {
|
|
6715
|
+
pointer-events: none;
|
|
6716
|
+
border: none;
|
|
6717
|
+
cursor: not-allowed;
|
|
6718
|
+
background-color: var(--form__input__bg-color_disabled);
|
|
6719
|
+
color: var(--sendbird-light-onlight-03);
|
|
6285
6720
|
}
|
|
6286
6721
|
|
|
6287
|
-
.sendbird--
|
|
6288
|
-
|
|
6289
|
-
|
|
6722
|
+
.sendbird-theme--light .sendbird-input_for_form .sendbird-input__input:focus {
|
|
6723
|
+
border: solid 1px var(--sendbird-light-primary-300) !important;
|
|
6724
|
+
outline: none;
|
|
6725
|
+
box-shadow: 0 0 0 1px var(--sendbird-light-primary-300);
|
|
6726
|
+
}
|
|
6727
|
+
|
|
6728
|
+
.sendbird-theme--light .sendbird-input_for_form .sendbird-input__input:active {
|
|
6729
|
+
box-shadow: none;
|
|
6730
|
+
border: solid 1px var(--sendbird-light-primary-300);
|
|
6731
|
+
}
|
|
6732
|
+
|
|
6733
|
+
.sendbird-theme--light .sendbird-input_for_form .sendbird-input__input.error {
|
|
6734
|
+
border: solid 1px var(--form__input__bd-color_error);
|
|
6735
|
+
}
|
|
6736
|
+
|
|
6737
|
+
.sendbird-theme--dark .sendbird-input_for_form .sendbird-input__input {
|
|
6738
|
+
caret-color: var(--sendbird-dark-primary-200);
|
|
6739
|
+
color: var(--sendbird-dark-ondark-01);
|
|
6740
|
+
background-color: var(--form__input__bg-color_default);
|
|
6741
|
+
border: solid 1px var(--sendbird-dark-ondark-04);
|
|
6742
|
+
}
|
|
6743
|
+
|
|
6744
|
+
.sendbird-theme--dark .sendbird-input_for_form .sendbird-input__input:disabled {
|
|
6745
|
+
pointer-events: none;
|
|
6746
|
+
border: none;
|
|
6747
|
+
cursor: not-allowed;
|
|
6748
|
+
background-color: var(--form__input__bg-color_disabled);
|
|
6749
|
+
color: var(--sendbird-dark-ondark-03);
|
|
6750
|
+
}
|
|
6751
|
+
|
|
6752
|
+
.sendbird-theme--dark .sendbird-input_for_form .sendbird-input__input:focus {
|
|
6753
|
+
border: solid 1px var(--sendbird-dark-primary-200) !important;
|
|
6754
|
+
outline: none;
|
|
6755
|
+
box-shadow: 0 0 0 1px var(--sendbird-dark-primary-200);
|
|
6756
|
+
}
|
|
6757
|
+
|
|
6758
|
+
.sendbird-theme--dark .sendbird-input_for_form .sendbird-input__input:active {
|
|
6759
|
+
box-shadow: none;
|
|
6760
|
+
border: solid 1px var(--sendbird-dark-primary-200);
|
|
6761
|
+
}
|
|
6762
|
+
|
|
6763
|
+
.sendbird-theme--dark .sendbird-input_for_form .sendbird-input__input.error {
|
|
6764
|
+
border: solid 1px var(--form__input__bd-color_error);
|
|
6765
|
+
}
|
|
6766
|
+
|
|
6767
|
+
.sendbird-input_for_form .sendbird-input__placeholder {
|
|
6768
|
+
width: calc(100% - 26px);
|
|
6769
|
+
height: calc(100% - 16px);
|
|
6770
|
+
overflow: hidden;
|
|
6771
|
+
display: -webkit-box;
|
|
6772
|
+
-webkit-line-clamp: 1;
|
|
6773
|
+
-webkit-box-orient: vertical;
|
|
6774
|
+
position: absolute;
|
|
6775
|
+
pointer-events: none;
|
|
6776
|
+
top: 8px;
|
|
6777
|
+
font-family: var(--sendbird-font-family-default);
|
|
6778
|
+
font-size: 14px;
|
|
6779
|
+
line-height: 1.43;
|
|
6780
|
+
}
|
|
6781
|
+
|
|
6782
|
+
[dir="ltr"] .sendbird-input_for_form .sendbird-input__placeholder {
|
|
6783
|
+
left: 13px;
|
|
6784
|
+
}
|
|
6785
|
+
|
|
6786
|
+
[dir="rtl"] .sendbird-input_for_form .sendbird-input__placeholder {
|
|
6787
|
+
right: 13px;
|
|
6788
|
+
}
|
|
6789
|
+
|
|
6790
|
+
.sendbird-theme--light .sendbird-input_for_form .sendbird-input__placeholder {
|
|
6791
|
+
color: var(--sendbird-light-onlight-03);
|
|
6792
|
+
}
|
|
6793
|
+
|
|
6794
|
+
.sendbird-theme--dark .sendbird-input_for_form .sendbird-input__placeholder {
|
|
6795
|
+
color: var(--sendbird-dark-ondark-03);
|
|
6796
|
+
}
|
|
6797
|
+
|
|
6798
|
+
.sendbird-input_for_form .sendbird-input__placeholder.textarea {
|
|
6799
|
+
-webkit-line-clamp: 4;
|
|
6800
|
+
}
|
|
6801
|
+
|
|
6802
|
+
.sendbird-input-label {
|
|
6803
|
+
margin: 4px 0;
|
|
6290
6804
|
}
|
|
6291
6805
|
/**
|
|
6292
6806
|
* We operate the CSS files for Channel&GroupChannel modules in the GroupChannel.
|
|
@@ -6587,66 +7101,49 @@ div.sendbird-text-message-item-body {
|
|
|
6587
7101
|
display: flex;
|
|
6588
7102
|
flex-direction: row;
|
|
6589
7103
|
align-items: center;
|
|
6590
|
-
|
|
6591
|
-
padding: 16px 20px;
|
|
7104
|
+
padding: 0 20px;
|
|
6592
7105
|
overflow: hidden;
|
|
6593
7106
|
}
|
|
6594
7107
|
|
|
6595
|
-
|
|
6596
|
-
|
|
7108
|
+
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__avatar {
|
|
7109
|
+
display: flex;
|
|
7110
|
+
margin-inline-end: 8px;
|
|
6597
7111
|
}
|
|
6598
7112
|
|
|
6599
|
-
|
|
6600
|
-
margin-
|
|
7113
|
+
.sendbird--mobile-mode .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__avatar {
|
|
7114
|
+
margin-inline-end: 12px;
|
|
6601
7115
|
}
|
|
6602
7116
|
|
|
6603
|
-
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-
|
|
7117
|
+
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__text-container {
|
|
7118
|
+
display: flex;
|
|
7119
|
+
flex-direction: row;
|
|
7120
|
+
align-items: flex-end;
|
|
7121
|
+
}
|
|
7122
|
+
|
|
7123
|
+
.sendbird--mobile-mode .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__text-container {
|
|
7124
|
+
flex-direction: column;
|
|
7125
|
+
align-items: unset;
|
|
7126
|
+
}
|
|
7127
|
+
|
|
7128
|
+
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__text-container .sendbird-fileviewer__header__left__filename {
|
|
6604
7129
|
max-width: 500px;
|
|
6605
7130
|
white-space: nowrap;
|
|
6606
7131
|
overflow: hidden;
|
|
6607
7132
|
text-overflow: ellipsis;
|
|
6608
7133
|
display: inline-block;
|
|
7134
|
+
margin-inline-end: 8px;
|
|
7135
|
+
padding-top: 3px;
|
|
6609
7136
|
}
|
|
6610
7137
|
|
|
6611
|
-
.sendbird--mobile-mode .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__filename {
|
|
6612
|
-
position: absolute;
|
|
6613
|
-
top: 10px;
|
|
7138
|
+
.sendbird--mobile-mode .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__text-container .sendbird-fileviewer__header__left__filename {
|
|
6614
7139
|
display: block;
|
|
6615
7140
|
max-width: calc(100vw - 240px);
|
|
7141
|
+
padding-top: 0;
|
|
7142
|
+
margin-inline-end: 0;
|
|
6616
7143
|
}
|
|
6617
7144
|
|
|
6618
|
-
|
|
6619
|
-
|
|
6620
|
-
}
|
|
6621
|
-
|
|
6622
|
-
[dir="rtl"] .sendbird--mobile-mode .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__filename {
|
|
6623
|
-
right: 64px;
|
|
6624
|
-
}
|
|
6625
|
-
|
|
6626
|
-
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__sender-name {
|
|
6627
|
-
display: inline-block;
|
|
6628
|
-
padding-top: 5px;
|
|
6629
|
-
}
|
|
6630
|
-
|
|
6631
|
-
[dir="ltr"] .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__sender-name {
|
|
6632
|
-
margin-left: 8px;
|
|
6633
|
-
}
|
|
6634
|
-
|
|
6635
|
-
[dir="rtl"] .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__sender-name {
|
|
6636
|
-
margin-right: 8px;
|
|
6637
|
-
}
|
|
6638
|
-
|
|
6639
|
-
.sendbird--mobile-mode .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__sender-name {
|
|
6640
|
-
position: absolute;
|
|
6641
|
-
top: 24px;
|
|
6642
|
-
}
|
|
6643
|
-
|
|
6644
|
-
[dir="ltr"] .sendbird--mobile-mode .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__sender-name {
|
|
6645
|
-
left: 56px;
|
|
6646
|
-
}
|
|
6647
|
-
|
|
6648
|
-
[dir="rtl"] .sendbird--mobile-mode .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__sender-name {
|
|
6649
|
-
right: 56px;
|
|
7145
|
+
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__text-container .sendbird-fileviewer__header__left__sender-name {
|
|
7146
|
+
line-height: 1.1;
|
|
6650
7147
|
}
|
|
6651
7148
|
|
|
6652
7149
|
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__right {
|
|
@@ -7636,7 +8133,9 @@ div.sendbird-text-message-item-body {
|
|
|
7636
8133
|
|
|
7637
8134
|
.sendbird-channel-preview .sendbird-channel-preview__content .sendbird-channel-preview__content__lower .sendbird-channel-preview__content__lower__last-message {
|
|
7638
8135
|
overflow: hidden;
|
|
7639
|
-
|
|
8136
|
+
display: -webkit-box;
|
|
8137
|
+
-webkit-line-clamp: 2;
|
|
8138
|
+
-webkit-box-orient: vertical;
|
|
7640
8139
|
}
|
|
7641
8140
|
|
|
7642
8141
|
.sendbird-channel-preview .sendbird-channel-preview__content .sendbird-channel-preview__content__lower .sendbird-channel-preview__content__lower__unread-message-count {
|
|
@@ -7793,10 +8292,6 @@ div.sendbird-text-message-item-body {
|
|
|
7793
8292
|
height: 16px;
|
|
7794
8293
|
}
|
|
7795
8294
|
|
|
7796
|
-
.sendbird-mention-user-label:hover {
|
|
7797
|
-
cursor: pointer;
|
|
7798
|
-
}
|
|
7799
|
-
|
|
7800
8295
|
.sendbird-theme--light .sendbird-mention-user-label {
|
|
7801
8296
|
color: var(--sendbird-light-onlight-01);
|
|
7802
8297
|
}
|
|
@@ -7805,6 +8300,10 @@ div.sendbird-text-message-item-body {
|
|
|
7805
8300
|
color: var(--sendbird-dark-ondark-01);
|
|
7806
8301
|
}
|
|
7807
8302
|
|
|
8303
|
+
.sendbird-mention-user-label:hover {
|
|
8304
|
+
cursor: pointer;
|
|
8305
|
+
}
|
|
8306
|
+
|
|
7808
8307
|
.sendbird-theme--light .sendbird-mention-user-label.reverse {
|
|
7809
8308
|
color: var(--sendbird-light-ondark-01);
|
|
7810
8309
|
}
|