@sendbird/uikit-react 3.7.0 → 3.8.1
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 +295 -563
- package/App.js.map +1 -1
- package/CHANGELOG.md +79 -0
- package/Channel/components/ChannelHeader.js +51 -97
- package/Channel/components/ChannelHeader.js.map +1 -1
- package/Channel/components/ChannelUI.js +89 -132
- package/Channel/components/ChannelUI.js.map +1 -1
- package/Channel/components/FileViewer.js +73 -142
- package/Channel/components/FileViewer.js.map +1 -1
- package/Channel/components/FrozenNotification.js +10 -15
- package/Channel/components/FrozenNotification.js.map +1 -1
- package/Channel/components/Message.js +287 -388
- package/Channel/components/Message.js.map +1 -1
- package/Channel/components/MessageInput.js +172 -238
- package/Channel/components/MessageInput.js.map +1 -1
- package/Channel/components/MessageList.js +263 -323
- package/Channel/components/MessageList.js.map +1 -1
- package/Channel/components/RemoveMessageModal.js +38 -50
- package/Channel/components/RemoveMessageModal.js.map +1 -1
- package/Channel/components/SuggestedMentionList.js +179 -264
- package/Channel/components/SuggestedMentionList.js.map +1 -1
- package/Channel/components/TypingIndicator.js +74 -80
- package/Channel/components/TypingIndicator.js.map +1 -1
- package/Channel/components/UnreadCount.js +27 -31
- package/Channel/components/UnreadCount.js.map +1 -1
- package/Channel/context.js +17 -16
- package/Channel/context.js.map +1 -1
- package/Channel/hooks/useInitialMessagesFetch.js +109 -0
- package/Channel/hooks/useInitialMessagesFetch.js.map +1 -0
- package/Channel/utils/compareMessagesForGrouping.js +19 -16
- package/Channel/utils/compareMessagesForGrouping.js.map +1 -1
- package/Channel/utils/getMessagePartsInfo.js +26 -37
- package/Channel/utils/getMessagePartsInfo.js.map +1 -1
- package/Channel.js +60 -104
- package/Channel.js.map +1 -1
- package/ChannelList/components/AddChannel.js +34 -53
- package/ChannelList/components/AddChannel.js.map +1 -1
- package/ChannelList/components/ChannelListHeader.js +30 -57
- package/ChannelList/components/ChannelListHeader.js.map +1 -1
- package/ChannelList/components/ChannelListUI.js +103 -160
- package/ChannelList/components/ChannelListUI.js.map +1 -1
- package/ChannelList/components/ChannelPreview.js +103 -168
- package/ChannelList/components/ChannelPreview.js.map +1 -1
- package/ChannelList/components/ChannelPreviewAction.js +53 -111
- package/ChannelList/components/ChannelPreviewAction.js.map +1 -1
- package/ChannelList/context.js +9 -9
- package/ChannelList.js +37 -60
- package/ChannelList.js.map +1 -1
- package/ChannelSettings/components/ChannelProfile.js +46 -78
- package/ChannelSettings/components/ChannelProfile.js.map +1 -1
- package/ChannelSettings/components/ChannelSettingsUI.js +80 -112
- package/ChannelSettings/components/ChannelSettingsUI.js.map +1 -1
- package/ChannelSettings/components/EditDetailsModal.js +80 -134
- package/ChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/ChannelSettings/components/LeaveChannel.js +53 -80
- package/ChannelSettings/components/LeaveChannel.js.map +1 -1
- package/ChannelSettings/components/ModerationPanel.js +414 -792
- package/ChannelSettings/components/ModerationPanel.js.map +1 -1
- package/ChannelSettings/components/UserListItem.js +46 -90
- package/ChannelSettings/components/UserListItem.js.map +1 -1
- package/ChannelSettings/components/UserPanel.js +39 -58
- package/ChannelSettings/components/UserPanel.js.map +1 -1
- package/ChannelSettings/context.js +62 -84
- package/ChannelSettings/context.js.map +1 -1
- package/ChannelSettings.js +21 -39
- package/ChannelSettings.js.map +1 -1
- package/CreateChannel/components/CreateChannelUI.js +24 -34
- package/CreateChannel/components/CreateChannelUI.js.map +1 -1
- package/CreateChannel/components/InviteUsers.js +144 -181
- package/CreateChannel/components/InviteUsers.js.map +1 -1
- package/CreateChannel/components/SelectChannelType.js +65 -114
- package/CreateChannel/components/SelectChannelType.js.map +1 -1
- package/CreateChannel/context.js +4 -4
- package/CreateChannel.js +19 -34
- package/CreateChannel.js.map +1 -1
- package/CreateOpenChannel/components/CreateOpenChannelUI.js +52 -109
- package/CreateOpenChannel/components/CreateOpenChannelUI.js.map +1 -1
- package/CreateOpenChannel/context.js +42 -51
- package/CreateOpenChannel/context.js.map +1 -1
- package/CreateOpenChannel.js +16 -32
- package/CreateOpenChannel.js.map +1 -1
- package/EditUserProfile/components/EditUserProfileUI.js +82 -143
- package/EditUserProfile/components/EditUserProfileUI.js.map +1 -1
- package/EditUserProfile/context.js +13 -20
- package/EditUserProfile/context.js.map +1 -1
- package/EditUserProfile.js +16 -25
- package/EditUserProfile.js.map +1 -1
- package/Message/context.js +21 -24
- package/Message/context.js.map +1 -1
- package/Message/hooks/useDirtyGetMentions.js +52 -63
- package/Message/hooks/useDirtyGetMentions.js.map +1 -1
- package/MessageSearch/components/MessageSearchUI.js +72 -124
- package/MessageSearch/components/MessageSearchUI.js.map +1 -1
- package/MessageSearch/context.js +237 -339
- package/MessageSearch/context.js.map +1 -1
- package/MessageSearch.js +58 -121
- package/MessageSearch.js.map +1 -1
- package/OpenChannel/components/FrozenChannelNotification.js +9 -13
- package/OpenChannel/components/FrozenChannelNotification.js.map +1 -1
- package/OpenChannel/components/OpenChannelHeader.js +33 -74
- package/OpenChannel/components/OpenChannelHeader.js.map +1 -1
- package/OpenChannel/components/OpenChannelInput.js +41 -59
- package/OpenChannel/components/OpenChannelInput.js.map +1 -1
- package/OpenChannel/components/OpenChannelMessage.js +159 -247
- package/OpenChannel/components/OpenChannelMessage.js.map +1 -1
- package/OpenChannel/components/OpenChannelMessageList.js +86 -121
- package/OpenChannel/components/OpenChannelMessageList.js.map +1 -1
- package/OpenChannel/components/OpenChannelUI.js +61 -83
- package/OpenChannel/components/OpenChannelUI.js.map +1 -1
- package/OpenChannel/context.js +8 -8
- package/OpenChannel.js +38 -58
- package/OpenChannel.js.map +1 -1
- package/OpenChannelList/components/OpenChannelListUI.js +93 -166
- package/OpenChannelList/components/OpenChannelListUI.js.map +1 -1
- package/OpenChannelList/components/OpenChannelPreview.js +20 -59
- package/OpenChannelList/components/OpenChannelPreview.js.map +1 -1
- package/OpenChannelList/context.js +3 -3
- package/OpenChannelList.js +23 -42
- package/OpenChannelList.js.map +1 -1
- package/OpenChannelSettings/components/EditDetailsModal.js +71 -125
- package/OpenChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/OpenChannelSettings/components/OpenChannelProfile.js +36 -62
- package/OpenChannelSettings/components/OpenChannelProfile.js.map +1 -1
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js +54 -86
- package/OpenChannelSettings/components/OpenChannelSettingsUI.js.map +1 -1
- package/OpenChannelSettings/components/OperatorUI.js +456 -830
- package/OpenChannelSettings/components/OperatorUI.js.map +1 -1
- package/OpenChannelSettings/components/ParticipantUI.js +17 -20
- package/OpenChannelSettings/components/ParticipantUI.js.map +1 -1
- package/OpenChannelSettings/context.js +115 -125
- package/OpenChannelSettings/context.js.map +1 -1
- package/OpenChannelSettings.js +22 -35
- package/OpenChannelSettings.js.map +1 -1
- package/README.md +0 -10
- package/SendbirdProvider.js +991 -1235
- package/SendbirdProvider.js.map +1 -1
- package/Thread/components/ParentMessageInfo.js +196 -350
- package/Thread/components/ParentMessageInfo.js.map +1 -1
- package/Thread/components/ParentMessageInfoItem.js +107 -197
- package/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/Thread/components/ThreadHeader.js +23 -51
- package/Thread/components/ThreadHeader.js.map +1 -1
- package/Thread/components/ThreadList.js +116 -152
- package/Thread/components/ThreadList.js.map +1 -1
- package/Thread/components/ThreadListItem.js +271 -531
- package/Thread/components/ThreadListItem.js.map +1 -1
- package/Thread/components/ThreadMessageInput.js +155 -213
- package/Thread/components/ThreadMessageInput.js.map +1 -1
- package/Thread/components/ThreadUI.js +195 -271
- package/Thread/components/ThreadUI.js.map +1 -1
- package/Thread/context/types.js +21 -21
- package/Thread/context/types.js.map +1 -1
- package/Thread/context.js +1223 -1634
- package/Thread/context.js.map +1 -1
- package/Thread.js +61 -100
- package/Thread.js.map +1 -1
- package/VoicePlayer/context.js +3 -3
- package/VoicePlayer/useVoicePlayer.js +56 -77
- package/VoicePlayer/useVoicePlayer.js.map +1 -1
- package/VoiceRecorder/context.js +121 -151
- package/VoiceRecorder/context.js.map +1 -1
- package/VoiceRecorder/useVoiceRecorder.js +95 -108
- package/VoiceRecorder/useVoiceRecorder.js.map +1 -1
- package/chunks/bundle--Hrow3p-.js +42 -0
- package/chunks/bundle--Hrow3p-.js.map +1 -0
- package/chunks/bundle-06CfHADE.js +26 -0
- package/chunks/bundle-06CfHADE.js.map +1 -0
- package/{index-09847c0f.js → chunks/bundle-0BwB1B7t.js} +1 -1
- package/chunks/bundle-0BwB1B7t.js.map +1 -0
- package/{consts-57c888b9.js → chunks/bundle-0plqkdfC.js} +1 -1
- package/chunks/bundle-0plqkdfC.js.map +1 -0
- package/{types-781e0bab.js → chunks/bundle-1uIyPhfL.js} +6 -6
- package/chunks/bundle-1uIyPhfL.js.map +1 -0
- package/chunks/bundle-2oi09sb6.js +277 -0
- package/chunks/bundle-2oi09sb6.js.map +1 -0
- package/chunks/bundle-3KS1YB09.js +25 -0
- package/chunks/bundle-3KS1YB09.js.map +1 -0
- package/chunks/bundle-3oeQjqp5.js +14 -0
- package/chunks/bundle-3oeQjqp5.js.map +1 -0
- package/chunks/bundle-4zdVdGkr.js +213 -0
- package/chunks/bundle-4zdVdGkr.js.map +1 -0
- package/chunks/bundle-5Z7nY-qa.js +355 -0
- package/chunks/bundle-5Z7nY-qa.js.map +1 -0
- package/chunks/bundle-62G-DTVs.js +211 -0
- package/chunks/bundle-62G-DTVs.js.map +1 -0
- package/chunks/bundle-6G8kMIS1.js +1455 -0
- package/chunks/bundle-6G8kMIS1.js.map +1 -0
- package/chunks/bundle-7-9WA7QK.js +222 -0
- package/chunks/bundle-7-9WA7QK.js.map +1 -0
- package/chunks/bundle-7DHTLnV3.js +98 -0
- package/chunks/bundle-7DHTLnV3.js.map +1 -0
- package/chunks/bundle-9uR-6efo.js +77 -0
- package/chunks/bundle-9uR-6efo.js.map +1 -0
- package/{tslib.es6-c2fb729e.js → chunks/bundle-AVOWwEQ4.js} +2 -2
- package/chunks/bundle-AVOWwEQ4.js.map +1 -0
- package/chunks/bundle-DwZzB6nL.js +16 -0
- package/chunks/bundle-DwZzB6nL.js.map +1 -0
- package/chunks/bundle-EZnDY3Tc.js +131 -0
- package/chunks/bundle-EZnDY3Tc.js.map +1 -0
- package/chunks/bundle-F63fi8fP.js +24 -0
- package/chunks/bundle-F63fi8fP.js.map +1 -0
- package/chunks/bundle-FQAabli1.js +5 -0
- package/chunks/bundle-FQAabli1.js.map +1 -0
- package/chunks/bundle-G3cS-S1W.js +24 -0
- package/chunks/bundle-G3cS-S1W.js.map +1 -0
- package/chunks/bundle-GqUhOzeC.js +16 -0
- package/chunks/bundle-GqUhOzeC.js.map +1 -0
- package/chunks/bundle-J7RD0FpU.js +96 -0
- package/chunks/bundle-J7RD0FpU.js.map +1 -0
- package/{index-f8a9cb51.js → chunks/bundle-J7om32yx.js} +12 -3
- package/chunks/bundle-J7om32yx.js.map +1 -0
- package/{const-73db0277.js → chunks/bundle-JGFwpJZJ.js} +10 -10
- package/chunks/bundle-JGFwpJZJ.js.map +1 -0
- package/chunks/bundle-KaSW5xxP.js +176 -0
- package/chunks/bundle-KaSW5xxP.js.map +1 -0
- package/{index-2d27aeef.js → chunks/bundle-LPkaaUo4.js} +202 -64
- package/chunks/bundle-LPkaaUo4.js.map +1 -0
- package/chunks/bundle-Lh7-eKPZ.js +125 -0
- package/chunks/bundle-Lh7-eKPZ.js.map +1 -0
- package/chunks/bundle-NcHt88Fs.js +8 -0
- package/chunks/bundle-NcHt88Fs.js.map +1 -0
- package/chunks/bundle-OoXqnc0l.js +657 -0
- package/chunks/bundle-OoXqnc0l.js.map +1 -0
- package/chunks/bundle-PK1dgVwp.js +57 -0
- package/chunks/bundle-PK1dgVwp.js.map +1 -0
- package/chunks/bundle-QKq7b-WA.js +76 -0
- package/chunks/bundle-QKq7b-WA.js.map +1 -0
- package/chunks/bundle-QeQV8Aqe.js +28 -0
- package/chunks/bundle-QeQV8Aqe.js.map +1 -0
- package/chunks/bundle-TWJd6cza.js +826 -0
- package/chunks/bundle-TWJd6cza.js.map +1 -0
- package/{consts-d9c5f25a.js → chunks/bundle-UjngV2Kp.js} +28 -28
- package/chunks/bundle-UjngV2Kp.js.map +1 -0
- package/chunks/bundle-VSkY75XQ.js +72 -0
- package/chunks/bundle-VSkY75XQ.js.map +1 -0
- package/chunks/bundle-YwxAxKwQ.js +1519 -0
- package/chunks/bundle-YwxAxKwQ.js.map +1 -0
- package/{index-682a192c.js → chunks/bundle-ZZuBYhV1.js} +4 -2
- package/chunks/bundle-ZZuBYhV1.js.map +1 -0
- package/chunks/bundle-_2iSz8ke.js +353 -0
- package/chunks/bundle-_2iSz8ke.js.map +1 -0
- package/{consts-be37687e.js → chunks/bundle-_nlJSeuz.js} +1 -1
- package/chunks/bundle-_nlJSeuz.js.map +1 -0
- package/chunks/bundle-fQ2M7pMu.js +151 -0
- package/chunks/bundle-fQ2M7pMu.js.map +1 -0
- package/chunks/bundle-fbmUkwMs.js +173 -0
- package/chunks/bundle-fbmUkwMs.js.map +1 -0
- package/chunks/bundle-gYyMZyCn.js +62 -0
- package/chunks/bundle-gYyMZyCn.js.map +1 -0
- package/{uuid-c15b8b3b.js → chunks/bundle-iPDlyZXo.js} +11 -13
- package/chunks/bundle-iPDlyZXo.js.map +1 -0
- package/chunks/bundle-jUubN32Z.js +36 -0
- package/chunks/bundle-jUubN32Z.js.map +1 -0
- package/chunks/bundle-kBtT3HBi.js +230 -0
- package/chunks/bundle-kBtT3HBi.js.map +1 -0
- package/chunks/bundle-kPOY92Qs.js +132 -0
- package/chunks/bundle-kPOY92Qs.js.map +1 -0
- package/{consts-4ec7d640.js → chunks/bundle-kaJaYGwQ.js} +1 -1
- package/chunks/bundle-kaJaYGwQ.js.map +1 -0
- package/chunks/bundle-lDOyfwhb.js +78 -0
- package/chunks/bundle-lDOyfwhb.js.map +1 -0
- package/{index-e4277f9c.js → chunks/bundle-ltzZCtkR.js} +42 -15
- package/chunks/bundle-ltzZCtkR.js.map +1 -0
- package/chunks/bundle-ndy1oWfZ.js +12 -0
- package/chunks/bundle-ndy1oWfZ.js.map +1 -0
- package/chunks/bundle-r7_GdraW.js +233 -0
- package/chunks/bundle-r7_GdraW.js.map +1 -0
- package/{resolvedReplyType-fb987595.js → chunks/bundle-rX7vrYxX.js} +27 -27
- package/chunks/bundle-rX7vrYxX.js.map +1 -0
- package/chunks/bundle-tK1qgIcU.js +18 -0
- package/chunks/bundle-tK1qgIcU.js.map +1 -0
- package/chunks/bundle-um2Azmnd.js +31 -0
- package/chunks/bundle-um2Azmnd.js.map +1 -0
- package/chunks/bundle-w-pB0qJ8.js +36 -0
- package/chunks/bundle-w-pB0qJ8.js.map +1 -0
- package/chunks/bundle-x3udz03j.js +77 -0
- package/chunks/bundle-x3udz03j.js.map +1 -0
- package/chunks/bundle-zch8NdOh.js +220 -0
- package/chunks/bundle-zch8NdOh.js.map +1 -0
- package/chunks/bundle-zqQY3xFx.js +69 -0
- package/chunks/bundle-zqQY3xFx.js.map +1 -0
- package/cjs/App.js +295 -567
- package/cjs/App.js.map +1 -1
- package/cjs/Channel/components/ChannelHeader.js +51 -101
- package/cjs/Channel/components/ChannelHeader.js.map +1 -1
- package/cjs/Channel/components/ChannelUI.js +89 -136
- package/cjs/Channel/components/ChannelUI.js.map +1 -1
- package/cjs/Channel/components/FileViewer.js +74 -147
- package/cjs/Channel/components/FileViewer.js.map +1 -1
- package/cjs/Channel/components/FrozenNotification.js +10 -19
- package/cjs/Channel/components/FrozenNotification.js.map +1 -1
- package/cjs/Channel/components/Message.js +286 -391
- package/cjs/Channel/components/Message.js.map +1 -1
- package/cjs/Channel/components/MessageInput.js +172 -242
- package/cjs/Channel/components/MessageInput.js.map +1 -1
- package/cjs/Channel/components/MessageList.js +261 -325
- package/cjs/Channel/components/MessageList.js.map +1 -1
- package/cjs/Channel/components/RemoveMessageModal.js +38 -54
- package/cjs/Channel/components/RemoveMessageModal.js.map +1 -1
- package/cjs/Channel/components/SuggestedMentionList.js +178 -267
- package/cjs/Channel/components/SuggestedMentionList.js.map +1 -1
- package/cjs/Channel/components/TypingIndicator.js +74 -84
- package/cjs/Channel/components/TypingIndicator.js.map +1 -1
- package/cjs/Channel/components/UnreadCount.js +26 -34
- package/cjs/Channel/components/UnreadCount.js.map +1 -1
- package/cjs/Channel/context.js +17 -18
- package/cjs/Channel/context.js.map +1 -1
- package/cjs/Channel/hooks/useInitialMessagesFetch.js +111 -0
- package/cjs/Channel/hooks/useInitialMessagesFetch.js.map +1 -0
- package/cjs/Channel/utils/compareMessagesForGrouping.js +19 -18
- package/cjs/Channel/utils/compareMessagesForGrouping.js.map +1 -1
- package/cjs/Channel/utils/getMessagePartsInfo.js +26 -39
- package/cjs/Channel/utils/getMessagePartsInfo.js.map +1 -1
- package/cjs/Channel.js +60 -108
- package/cjs/Channel.js.map +1 -1
- package/cjs/ChannelList/components/AddChannel.js +35 -58
- package/cjs/ChannelList/components/AddChannel.js.map +1 -1
- package/cjs/ChannelList/components/ChannelListHeader.js +30 -61
- package/cjs/ChannelList/components/ChannelListHeader.js.map +1 -1
- package/cjs/ChannelList/components/ChannelListUI.js +103 -164
- package/cjs/ChannelList/components/ChannelListUI.js.map +1 -1
- package/cjs/ChannelList/components/ChannelPreview.js +103 -172
- package/cjs/ChannelList/components/ChannelPreview.js.map +1 -1
- package/cjs/ChannelList/components/ChannelPreviewAction.js +53 -115
- package/cjs/ChannelList/components/ChannelPreviewAction.js.map +1 -1
- package/cjs/ChannelList/context.js +9 -11
- package/cjs/ChannelList/context.js.map +1 -1
- package/cjs/ChannelList.js +37 -64
- package/cjs/ChannelList.js.map +1 -1
- package/cjs/ChannelSettings/components/ChannelProfile.js +46 -82
- package/cjs/ChannelSettings/components/ChannelProfile.js.map +1 -1
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js +80 -116
- package/cjs/ChannelSettings/components/ChannelSettingsUI.js.map +1 -1
- package/cjs/ChannelSettings/components/EditDetailsModal.js +80 -138
- package/cjs/ChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/cjs/ChannelSettings/components/LeaveChannel.js +53 -84
- package/cjs/ChannelSettings/components/LeaveChannel.js.map +1 -1
- package/cjs/ChannelSettings/components/ModerationPanel.js +413 -795
- package/cjs/ChannelSettings/components/ModerationPanel.js.map +1 -1
- package/cjs/ChannelSettings/components/UserListItem.js +46 -94
- package/cjs/ChannelSettings/components/UserListItem.js.map +1 -1
- package/cjs/ChannelSettings/components/UserPanel.js +39 -62
- package/cjs/ChannelSettings/components/UserPanel.js.map +1 -1
- package/cjs/ChannelSettings/context.js +62 -90
- package/cjs/ChannelSettings/context.js.map +1 -1
- package/cjs/ChannelSettings.js +21 -43
- package/cjs/ChannelSettings.js.map +1 -1
- package/cjs/CreateChannel/components/CreateChannelUI.js +24 -38
- package/cjs/CreateChannel/components/CreateChannelUI.js.map +1 -1
- package/cjs/CreateChannel/components/InviteUsers.js +144 -185
- package/cjs/CreateChannel/components/InviteUsers.js.map +1 -1
- package/cjs/CreateChannel/components/SelectChannelType.js +65 -118
- package/cjs/CreateChannel/components/SelectChannelType.js.map +1 -1
- package/cjs/CreateChannel/context.js +4 -6
- package/cjs/CreateChannel/context.js.map +1 -1
- package/cjs/CreateChannel.js +19 -38
- package/cjs/CreateChannel.js.map +1 -1
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js +52 -113
- package/cjs/CreateOpenChannel/components/CreateOpenChannelUI.js.map +1 -1
- package/cjs/CreateOpenChannel/context.js +42 -57
- package/cjs/CreateOpenChannel/context.js.map +1 -1
- package/cjs/CreateOpenChannel.js +16 -36
- package/cjs/CreateOpenChannel.js.map +1 -1
- package/cjs/EditUserProfile/components/EditUserProfileUI.js +82 -147
- package/cjs/EditUserProfile/components/EditUserProfileUI.js.map +1 -1
- package/cjs/EditUserProfile/context.js +13 -26
- package/cjs/EditUserProfile/context.js.map +1 -1
- package/cjs/EditUserProfile.js +16 -29
- package/cjs/EditUserProfile.js.map +1 -1
- package/cjs/Message/context.js +21 -30
- package/cjs/Message/context.js.map +1 -1
- package/cjs/Message/hooks/useDirtyGetMentions.js +52 -65
- package/cjs/Message/hooks/useDirtyGetMentions.js.map +1 -1
- package/cjs/MessageSearch/components/MessageSearchUI.js +73 -129
- package/cjs/MessageSearch/components/MessageSearchUI.js.map +1 -1
- package/cjs/MessageSearch/context.js +237 -345
- package/cjs/MessageSearch/context.js.map +1 -1
- package/cjs/MessageSearch.js +58 -125
- package/cjs/MessageSearch.js.map +1 -1
- package/cjs/OpenChannel/components/FrozenChannelNotification.js +9 -17
- package/cjs/OpenChannel/components/FrozenChannelNotification.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelHeader.js +33 -78
- package/cjs/OpenChannel/components/OpenChannelHeader.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelInput.js +41 -63
- package/cjs/OpenChannel/components/OpenChannelInput.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelMessage.js +159 -251
- package/cjs/OpenChannel/components/OpenChannelMessage.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelMessageList.js +86 -125
- package/cjs/OpenChannel/components/OpenChannelMessageList.js.map +1 -1
- package/cjs/OpenChannel/components/OpenChannelUI.js +61 -87
- package/cjs/OpenChannel/components/OpenChannelUI.js.map +1 -1
- package/cjs/OpenChannel/context.js +8 -10
- package/cjs/OpenChannel/context.js.map +1 -1
- package/cjs/OpenChannel.js +38 -62
- package/cjs/OpenChannel.js.map +1 -1
- package/cjs/OpenChannelList/components/OpenChannelListUI.js +93 -170
- package/cjs/OpenChannelList/components/OpenChannelListUI.js.map +1 -1
- package/cjs/OpenChannelList/components/OpenChannelPreview.js +20 -63
- package/cjs/OpenChannelList/components/OpenChannelPreview.js.map +1 -1
- package/cjs/OpenChannelList/context.js +4 -4
- package/cjs/OpenChannelList.js +23 -46
- package/cjs/OpenChannelList.js.map +1 -1
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js +71 -129
- package/cjs/OpenChannelSettings/components/EditDetailsModal.js.map +1 -1
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js +36 -66
- package/cjs/OpenChannelSettings/components/OpenChannelProfile.js.map +1 -1
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js +54 -90
- package/cjs/OpenChannelSettings/components/OpenChannelSettingsUI.js.map +1 -1
- package/cjs/OpenChannelSettings/components/OperatorUI.js +456 -834
- package/cjs/OpenChannelSettings/components/OperatorUI.js.map +1 -1
- package/cjs/OpenChannelSettings/components/ParticipantUI.js +17 -20
- package/cjs/OpenChannelSettings/components/ParticipantUI.js.map +1 -1
- package/cjs/OpenChannelSettings/context.js +115 -131
- package/cjs/OpenChannelSettings/context.js.map +1 -1
- package/cjs/OpenChannelSettings.js +22 -39
- package/cjs/OpenChannelSettings.js.map +1 -1
- package/cjs/SendbirdProvider.js +992 -1242
- package/cjs/SendbirdProvider.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfo.js +196 -354
- package/cjs/Thread/components/ParentMessageInfo.js.map +1 -1
- package/cjs/Thread/components/ParentMessageInfoItem.js +107 -201
- package/cjs/Thread/components/ParentMessageInfoItem.js.map +1 -1
- package/cjs/Thread/components/ThreadHeader.js +23 -55
- package/cjs/Thread/components/ThreadHeader.js.map +1 -1
- package/cjs/Thread/components/ThreadList.js +116 -156
- package/cjs/Thread/components/ThreadList.js.map +1 -1
- package/cjs/Thread/components/ThreadListItem.js +271 -535
- package/cjs/Thread/components/ThreadListItem.js.map +1 -1
- package/cjs/Thread/components/ThreadMessageInput.js +155 -217
- package/cjs/Thread/components/ThreadMessageInput.js.map +1 -1
- package/cjs/Thread/components/ThreadUI.js +195 -275
- package/cjs/Thread/components/ThreadUI.js.map +1 -1
- package/cjs/Thread/context/types.js +21 -23
- package/cjs/Thread/context/types.js.map +1 -1
- package/cjs/Thread/context.js +1223 -1640
- package/cjs/Thread/context.js.map +1 -1
- package/cjs/Thread.js +61 -104
- package/cjs/Thread.js.map +1 -1
- package/cjs/VoicePlayer/context.js +3 -5
- package/cjs/VoicePlayer/context.js.map +1 -1
- package/cjs/VoicePlayer/useVoicePlayer.js +56 -79
- package/cjs/VoicePlayer/useVoicePlayer.js.map +1 -1
- package/cjs/VoiceRecorder/context.js +121 -155
- package/cjs/VoiceRecorder/context.js.map +1 -1
- package/cjs/VoiceRecorder/useVoiceRecorder.js +95 -110
- package/cjs/VoiceRecorder/useVoiceRecorder.js.map +1 -1
- package/cjs/chunks/bundle-2KPLdyEL.js +128 -0
- package/cjs/chunks/bundle-2KPLdyEL.js.map +1 -0
- package/cjs/chunks/bundle-3qeMVUne.js +38 -0
- package/cjs/chunks/bundle-3qeMVUne.js.map +1 -0
- package/cjs/{consts-f54b15c2.js → chunks/bundle-4iro9CUN.js} +27 -27
- package/cjs/chunks/bundle-4iro9CUN.js.map +1 -0
- package/cjs/chunks/bundle-5l7POen0.js +215 -0
- package/cjs/chunks/bundle-5l7POen0.js.map +1 -0
- package/cjs/chunks/bundle-6fWeHUzf.js +46 -0
- package/cjs/chunks/bundle-6fWeHUzf.js.map +1 -0
- package/cjs/chunks/bundle-80bw1Z-w.js +20 -0
- package/cjs/chunks/bundle-80bw1Z-w.js.map +1 -0
- package/cjs/chunks/bundle-8lUFYwiz.js +163 -0
- package/cjs/chunks/bundle-8lUFYwiz.js.map +1 -0
- package/cjs/chunks/bundle-A9-xoiFy.js +18 -0
- package/cjs/chunks/bundle-A9-xoiFy.js.map +1 -0
- package/cjs/chunks/bundle-ACXel153.js +27 -0
- package/cjs/chunks/bundle-ACXel153.js.map +1 -0
- package/cjs/chunks/bundle-BUF_nc4Q.js +707 -0
- package/cjs/chunks/bundle-BUF_nc4Q.js.map +1 -0
- package/cjs/chunks/bundle-Bekm94S6.js +137 -0
- package/cjs/chunks/bundle-Bekm94S6.js.map +1 -0
- package/cjs/chunks/bundle-Ch6xNfpK.js +1460 -0
- package/cjs/chunks/bundle-Ch6xNfpK.js.map +1 -0
- package/cjs/chunks/bundle-Co06yFqb.js +178 -0
- package/cjs/chunks/bundle-Co06yFqb.js.map +1 -0
- package/cjs/{consts-b711321c.js → chunks/bundle-DRPbz-J2.js} +1 -1
- package/cjs/chunks/bundle-DRPbz-J2.js.map +1 -0
- package/cjs/chunks/bundle-DTSMqW5p.js +39 -0
- package/cjs/chunks/bundle-DTSMqW5p.js.map +1 -0
- package/cjs/{index-e8928da6.js → chunks/bundle-EVv3xRW8.js} +42 -15
- package/cjs/chunks/bundle-EVv3xRW8.js.map +1 -0
- package/cjs/chunks/bundle-FCrfVx0P.js +79 -0
- package/cjs/chunks/bundle-FCrfVx0P.js.map +1 -0
- package/cjs/chunks/bundle-FI-ZNmbG.js +30 -0
- package/cjs/chunks/bundle-FI-ZNmbG.js.map +1 -0
- package/cjs/chunks/bundle-LoNtsKOJ.js +217 -0
- package/cjs/chunks/bundle-LoNtsKOJ.js.map +1 -0
- package/cjs/{types-feda9656.js → chunks/bundle-M6v8bdc6.js} +6 -6
- package/cjs/chunks/bundle-M6v8bdc6.js.map +1 -0
- package/cjs/{consts-61d83828.js → chunks/bundle-MB8QdyyQ.js} +1 -1
- package/cjs/chunks/bundle-MB8QdyyQ.js.map +1 -0
- package/cjs/chunks/bundle-MwYMtlCB.js +109 -0
- package/cjs/chunks/bundle-MwYMtlCB.js.map +1 -0
- package/cjs/chunks/bundle-NOQysszZ.js +10 -0
- package/cjs/chunks/bundle-NOQysszZ.js.map +1 -0
- package/cjs/chunks/bundle-OfmF0BBb.js +99 -0
- package/cjs/chunks/bundle-OfmF0BBb.js.map +1 -0
- package/cjs/{consts-b3c4f548.js → chunks/bundle-PoR4V_kd.js} +1 -1
- package/cjs/chunks/bundle-PoR4V_kd.js.map +1 -0
- package/cjs/{index-54279ec2.js → chunks/bundle-RG3ZDmvE.js} +1 -1
- package/cjs/chunks/bundle-RG3ZDmvE.js.map +1 -0
- package/cjs/chunks/bundle-RV4B0RCM.js +27 -0
- package/cjs/chunks/bundle-RV4B0RCM.js.map +1 -0
- package/cjs/chunks/bundle-TCdgqawd.js +75 -0
- package/cjs/chunks/bundle-TCdgqawd.js.map +1 -0
- package/cjs/{const-c9e7a340.js → chunks/bundle-VHUezYnn.js} +10 -10
- package/cjs/chunks/bundle-VHUezYnn.js.map +1 -0
- package/cjs/chunks/bundle-Y0ibVW_O.js +139 -0
- package/cjs/chunks/bundle-Y0ibVW_O.js.map +1 -0
- package/cjs/chunks/bundle-YRW87MiX.js +22 -0
- package/cjs/chunks/bundle-YRW87MiX.js.map +1 -0
- package/cjs/{uuid-9a117e16.js → chunks/bundle-Z8uBiYyS.js} +11 -13
- package/cjs/chunks/bundle-Z8uBiYyS.js.map +1 -0
- package/cjs/chunks/bundle-ZYvG_yE0.js +26 -0
- package/cjs/chunks/bundle-ZYvG_yE0.js.map +1 -0
- package/cjs/chunks/bundle-_R3HdLLP.js +831 -0
- package/cjs/chunks/bundle-_R3HdLLP.js.map +1 -0
- package/cjs/chunks/bundle-_yIYQoui.js +1523 -0
- package/cjs/chunks/bundle-_yIYQoui.js.map +1 -0
- package/cjs/chunks/bundle-a_NGo240.js +16 -0
- package/cjs/chunks/bundle-a_NGo240.js.map +1 -0
- package/cjs/chunks/bundle-bQffWPr0.js +84 -0
- package/cjs/chunks/bundle-bQffWPr0.js.map +1 -0
- package/cjs/{index-7627b546.js → chunks/bundle-cKt6NzI1.js} +12 -3
- package/cjs/chunks/bundle-cKt6NzI1.js.map +1 -0
- package/cjs/chunks/bundle-fTDV9UxX.js +84 -0
- package/cjs/chunks/bundle-fTDV9UxX.js.map +1 -0
- package/cjs/chunks/bundle-h48X_8mu.js +224 -0
- package/cjs/chunks/bundle-h48X_8mu.js.map +1 -0
- package/cjs/chunks/bundle-kkxTVcGD.js +79 -0
- package/cjs/chunks/bundle-kkxTVcGD.js.map +1 -0
- package/cjs/chunks/bundle-leALuaxJ.js +228 -0
- package/cjs/chunks/bundle-leALuaxJ.js.map +1 -0
- package/cjs/chunks/bundle-lj7KorhP.js +81 -0
- package/cjs/chunks/bundle-lj7KorhP.js.map +1 -0
- package/cjs/chunks/bundle-lkluBCYi.js +74 -0
- package/cjs/chunks/bundle-lkluBCYi.js.map +1 -0
- package/cjs/{tslib.es6-c74b513f.js → chunks/bundle-mc8PQfi_.js} +1 -1
- package/cjs/chunks/bundle-mc8PQfi_.js.map +1 -0
- package/cjs/chunks/bundle-n6O0NYfY.js +279 -0
- package/cjs/chunks/bundle-n6O0NYfY.js.map +1 -0
- package/cjs/chunks/bundle-o5pJIgS7.js +35 -0
- package/cjs/chunks/bundle-o5pJIgS7.js.map +1 -0
- package/cjs/chunks/bundle-o66lc7qg.js +69 -0
- package/cjs/chunks/bundle-o66lc7qg.js.map +1 -0
- package/cjs/chunks/bundle-oISd80pA.js +28 -0
- package/cjs/chunks/bundle-oISd80pA.js.map +1 -0
- package/cjs/chunks/bundle-oiMScSG6.js +236 -0
- package/cjs/chunks/bundle-oiMScSG6.js.map +1 -0
- package/cjs/{index-3448df64.js → chunks/bundle-pLajF9mf.js} +202 -64
- package/cjs/chunks/bundle-pLajF9mf.js.map +1 -0
- package/cjs/chunks/bundle-t70SIG3R.js +181 -0
- package/cjs/chunks/bundle-t70SIG3R.js.map +1 -0
- package/cjs/chunks/bundle-tooLK5gn.js +360 -0
- package/cjs/chunks/bundle-tooLK5gn.js.map +1 -0
- package/cjs/chunks/bundle-u4ZfKyD_.js +15 -0
- package/cjs/chunks/bundle-u4ZfKyD_.js.map +1 -0
- package/cjs/{index-134e9852.js → chunks/bundle-uE1K1eGs.js} +4 -2
- package/cjs/chunks/bundle-uE1K1eGs.js.map +1 -0
- package/cjs/chunks/bundle-vWOLHFBL.js +356 -0
- package/cjs/chunks/bundle-vWOLHFBL.js.map +1 -0
- package/cjs/chunks/bundle-viTxhrPr.js +8 -0
- package/cjs/chunks/bundle-viTxhrPr.js.map +1 -0
- package/cjs/{resolvedReplyType-c4564ebe.js → chunks/bundle-wPu8WyIh.js} +26 -26
- package/cjs/chunks/bundle-wPu8WyIh.js.map +1 -0
- package/cjs/chunks/bundle-xy995kna.js +236 -0
- package/cjs/chunks/bundle-xy995kna.js.map +1 -0
- package/cjs/handlers/OpenChannelHandler.js +2 -2
- package/cjs/handlers/OpenChannelHandler.js.map +1 -1
- package/cjs/handlers/SessionHandler.js +2 -2
- package/cjs/handlers/SessionHandler.js.map +1 -1
- package/cjs/hooks/useModal.js +47 -72
- package/cjs/hooks/useModal.js.map +1 -1
- package/cjs/index.js +61 -65
- package/cjs/index.js.map +1 -1
- package/cjs/lame.all.js +14799 -681
- package/cjs/lame.all.js.map +1 -1
- package/cjs/package.json +1 -3
- package/cjs/pubSub/topics.js +12 -17
- package/cjs/pubSub/topics.js.map +1 -1
- package/cjs/sendbirdSelectors.js +551 -619
- package/cjs/sendbirdSelectors.js.map +1 -1
- package/cjs/ui/Accordion.js +40 -57
- package/cjs/ui/Accordion.js.map +1 -1
- package/cjs/ui/AccordionGroup.js +9 -22
- package/cjs/ui/AccordionGroup.js.map +1 -1
- package/cjs/ui/AdminMessage.js +13 -23
- package/cjs/ui/AdminMessage.js.map +1 -1
- package/cjs/ui/Avatar.js +9 -199
- package/cjs/ui/Avatar.js.map +1 -1
- package/cjs/ui/Badge.js +18 -26
- package/cjs/ui/Badge.js.map +1 -1
- package/cjs/ui/BottomSheet.js +28 -38
- package/cjs/ui/BottomSheet.js.map +1 -1
- package/cjs/ui/Button.js +41 -63
- package/cjs/ui/Button.js.map +1 -1
- package/cjs/ui/ChannelAvatar.js +21 -48
- package/cjs/ui/ChannelAvatar.js.map +1 -1
- package/cjs/ui/Checkbox.js +15 -28
- package/cjs/ui/Checkbox.js.map +1 -1
- package/cjs/ui/ConnectionStatus.js +11 -22
- package/cjs/ui/ConnectionStatus.js.map +1 -1
- package/cjs/ui/ContextMenu.js +196 -285
- package/cjs/ui/ContextMenu.js.map +1 -1
- package/cjs/ui/DateSeparator.js +13 -28
- package/cjs/ui/DateSeparator.js.map +1 -1
- package/cjs/ui/EmojiReactions.js +144 -331
- package/cjs/ui/EmojiReactions.js.map +1 -1
- package/cjs/ui/FileMessageItemBody.js +30 -53
- package/cjs/ui/FileMessageItemBody.js.map +1 -1
- package/cjs/ui/FileViewer.js +18 -17
- package/cjs/ui/FileViewer.js.map +1 -1
- package/cjs/ui/Icon.js +558 -729
- package/cjs/ui/Icon.js.map +1 -1
- package/cjs/ui/IconButton.js +18 -49
- package/cjs/ui/IconButton.js.map +1 -1
- package/cjs/ui/ImageRenderer.js +103 -154
- package/cjs/ui/ImageRenderer.js.map +1 -1
- package/cjs/ui/Input.js +16 -42
- package/cjs/ui/Input.js.map +1 -1
- package/cjs/ui/Label.js +4 -4
- package/cjs/ui/LinkLabel.js +22 -51
- package/cjs/ui/LinkLabel.js.map +1 -1
- package/cjs/ui/Loader.js +11 -25
- package/cjs/ui/Loader.js.map +1 -1
- package/cjs/ui/MentionLabel.js +49 -83
- package/cjs/ui/MentionLabel.js.map +1 -1
- package/cjs/ui/MentionUserLabel.js +4 -19
- package/cjs/ui/MentionUserLabel.js.map +1 -1
- package/cjs/ui/MessageContent.js +245 -414
- package/cjs/ui/MessageContent.js.map +1 -1
- package/cjs/ui/MessageInput/hooks/usePaste.js +6 -6
- package/cjs/ui/MessageInput.js +447 -625
- package/cjs/ui/MessageInput.js.map +1 -1
- package/cjs/ui/MessageItemMenu.js +110 -166
- package/cjs/ui/MessageItemMenu.js.map +1 -1
- package/cjs/ui/MessageItemReactionMenu.js +39 -102
- package/cjs/ui/MessageItemReactionMenu.js.map +1 -1
- package/cjs/ui/MessageSearchFileItem.js +78 -115
- package/cjs/ui/MessageSearchFileItem.js.map +1 -1
- package/cjs/ui/MessageSearchItem.js +50 -84
- package/cjs/ui/MessageSearchItem.js.map +1 -1
- package/cjs/ui/MessageStatus.js +13 -13
- package/cjs/ui/Modal.js +18 -131
- package/cjs/ui/Modal.js.map +1 -1
- package/cjs/ui/MutedAvatarOverlay.js +14 -30
- package/cjs/ui/MutedAvatarOverlay.js.map +1 -1
- package/cjs/ui/OGMessageItemBody.js +66 -111
- package/cjs/ui/OGMessageItemBody.js.map +1 -1
- package/cjs/ui/OpenChannelAdminMessage.js +9 -18
- package/cjs/ui/OpenChannelAdminMessage.js.map +1 -1
- package/cjs/ui/OpenChannelAvatar.js +15 -30
- package/cjs/ui/OpenChannelAvatar.js.map +1 -1
- package/cjs/ui/OpenchannelConversationHeader.js +22 -61
- package/cjs/ui/OpenchannelConversationHeader.js.map +1 -1
- package/cjs/ui/OpenchannelFileMessage.js +114 -238
- package/cjs/ui/OpenchannelFileMessage.js.map +1 -1
- package/cjs/ui/OpenchannelOGMessage.js +157 -332
- package/cjs/ui/OpenchannelOGMessage.js.map +1 -1
- package/cjs/ui/OpenchannelThumbnailMessage.js +152 -317
- package/cjs/ui/OpenchannelThumbnailMessage.js.map +1 -1
- package/cjs/ui/OpenchannelUserMessage.js +126 -268
- package/cjs/ui/OpenchannelUserMessage.js.map +1 -1
- package/cjs/ui/PlaceHolder.js +46 -105
- package/cjs/ui/PlaceHolder.js.map +1 -1
- package/cjs/ui/PlaybackTime.js +12 -26
- package/cjs/ui/PlaybackTime.js.map +1 -1
- package/cjs/ui/ProgressBar.js +13 -31
- package/cjs/ui/ProgressBar.js.map +1 -1
- package/cjs/ui/QuoteMessage.js +70 -146
- package/cjs/ui/QuoteMessage.js.map +1 -1
- package/cjs/ui/QuoteMessageInput.js +71 -102
- package/cjs/ui/QuoteMessageInput.js.map +1 -1
- package/cjs/ui/ReactionBadge.js +20 -46
- package/cjs/ui/ReactionBadge.js.map +1 -1
- package/cjs/ui/ReactionButton.js +17 -39
- package/cjs/ui/ReactionButton.js.map +1 -1
- package/cjs/ui/SortByRow.js +23 -35
- package/cjs/ui/SortByRow.js.map +1 -1
- package/cjs/ui/TextButton.js +9 -29
- package/cjs/ui/TextButton.js.map +1 -1
- package/cjs/ui/TextMessageItemBody.js +43 -59
- package/cjs/ui/TextMessageItemBody.js.map +1 -1
- package/cjs/ui/ThreadReplies.js +33 -71
- package/cjs/ui/ThreadReplies.js.map +1 -1
- package/cjs/ui/ThumbnailMessageItemBody.js +34 -74
- package/cjs/ui/ThumbnailMessageItemBody.js.map +1 -1
- package/cjs/ui/Toggle.js +110 -189
- package/cjs/ui/Toggle.js.map +1 -1
- package/cjs/ui/Tooltip.js +9 -20
- package/cjs/ui/Tooltip.js.map +1 -1
- package/cjs/ui/TooltipWrapper.js +13 -45
- package/cjs/ui/TooltipWrapper.js.map +1 -1
- package/cjs/ui/UnknownMessageItemBody.js +20 -34
- package/cjs/ui/UnknownMessageItemBody.js.map +1 -1
- package/cjs/ui/UserListItem.js +51 -118
- package/cjs/ui/UserListItem.js.map +1 -1
- package/cjs/ui/UserProfile.js +45 -74
- package/cjs/ui/UserProfile.js.map +1 -1
- package/cjs/ui/VoiceMessageItemBody.js +53 -106
- package/cjs/ui/VoiceMessageItemBody.js.map +1 -1
- package/cjs/ui/VoiceMessgeInput.js +9 -11
- package/cjs/ui/VoiceMessgeInput.js.map +1 -1
- package/cjs/ui/Word.js +60 -89
- package/cjs/ui/Word.js.map +1 -1
- package/cjs/useSendbirdStateContext.js +16 -15
- package/cjs/useSendbirdStateContext.js.map +1 -1
- package/cjs/utils/message/getOutgoingMessageState.js +32 -31
- package/cjs/utils/message/getOutgoingMessageState.js.map +1 -1
- package/cjs/utils/message/isVoiceMessage.js +3 -5
- package/cjs/utils/message/isVoiceMessage.js.map +1 -1
- package/cjs/withSendbird.js +18 -23
- package/cjs/withSendbird.js.map +1 -1
- package/dist/index.css +1014 -903
- package/dist/index.css.map +1 -1
- package/handlers/OpenChannelHandler.js +2 -2
- package/handlers/OpenChannelHandler.js.map +1 -1
- package/handlers/SessionHandler.js +2 -2
- package/handlers/SessionHandler.js.map +1 -1
- package/hooks/useModal.js +47 -65
- package/hooks/useModal.js.map +1 -1
- package/index.js +58 -60
- package/index.js.map +1 -1
- package/lame.all.js +14797 -679
- package/lame.all.js.map +1 -1
- package/package.json +1454 -79
- package/pubSub/topics.js +1 -17
- package/pubSub/topics.js.map +1 -1
- package/sendbirdSelectors.js +550 -618
- package/sendbirdSelectors.js.map +1 -1
- package/types/hooks/VoicePlayer/dux/actionTypes.d.ts +14 -0
- package/types/hooks/VoicePlayer/dux/initialState.d.ts +30 -0
- package/types/hooks/VoicePlayer/dux/reducer.d.ts +25 -0
- package/types/hooks/VoicePlayer/index.d.ts +19 -0
- package/types/hooks/VoicePlayer/useVoicePlayer.d.ts +16 -0
- package/types/hooks/VoicePlayer/utils.d.ts +2 -0
- package/types/hooks/VoiceRecorder/WebAudioUtils.d.ts +4 -0
- package/types/hooks/VoiceRecorder/index.d.ts +20 -0
- package/types/hooks/VoiceRecorder/useVoiceRecorder.d.ts +18 -0
- package/types/hooks/useAppendDomNode.d.ts +2 -0
- package/types/hooks/useDebounce.d.ts +1 -0
- package/types/hooks/useHandleOnScrollCallback/index.d.ts +11 -0
- package/types/hooks/useLongPress.d.ts +21 -0
- package/types/hooks/useModal/ModalRoot/index.d.ts +4 -0
- package/types/hooks/useModal/index.d.ts +15 -0
- package/types/hooks/useMouseHover.d.ts +7 -0
- package/types/hooks/useOutsideAlerter.d.ts +7 -0
- package/types/hooks/useSendbirdStateContext.d.ts +3 -0
- package/types/hooks/useUnmount.d.ts +2 -0
- package/types/index.d.ts +13 -0
- package/types/lib/LocalizationContext.d.ts +19 -0
- package/types/lib/Logger/index.d.ts +24 -0
- package/types/lib/MediaQueryContext.d.ts +14 -0
- package/types/lib/Sendbird.d.ts +65 -0
- package/types/lib/SendbirdSdkContext.d.ts +9 -0
- package/types/lib/SendbirdState.d.ts +7 -0
- package/types/lib/UserProfileContext.d.ts +22 -0
- package/types/lib/VoiceMessageProvider.d.ts +7 -0
- package/types/lib/dux/sdk/actionTypes.d.ts +16 -0
- package/types/lib/dux/sdk/initialState.d.ts +9 -0
- package/types/lib/dux/sdk/reducers.d.ts +3 -0
- package/types/lib/dux/user/actionTypes.d.ts +14 -0
- package/types/lib/dux/user/initialState.d.ts +8 -0
- package/types/lib/dux/user/reducers.d.ts +3 -0
- package/types/lib/handlers/ConnectionHandler.d.ts +5 -0
- package/types/lib/handlers/GroupChannelHandler.d.ts +7 -0
- package/types/lib/handlers/OpenChannelHandler.d.ts +5 -0
- package/types/lib/handlers/SessionHandler.d.ts +5 -0
- package/types/lib/handlers/UserEventHandler.d.ts +5 -0
- package/types/lib/hooks/schedulerFactory.d.ts +11 -0
- package/types/lib/hooks/useConnect/__test__/data.mocks.d.ts +15 -0
- package/types/lib/hooks/useConnect/connect.d.ts +2 -0
- package/types/lib/hooks/useConnect/disconnectSdk.d.ts +2 -0
- package/types/lib/hooks/useConnect/index.d.ts +2 -0
- package/types/lib/hooks/useConnect/setupConnection.d.ts +18 -0
- package/types/lib/hooks/useConnect/types.d.ts +42 -0
- package/types/lib/hooks/useMarkAsDeliveredScheduler.d.ts +15 -0
- package/types/lib/hooks/useMarkAsReadScheduler.d.ts +15 -0
- package/types/lib/hooks/useOnlineStatus.d.ts +4 -0
- package/types/lib/hooks/useTheme.d.ts +2 -0
- package/types/lib/pubSub/index.d.ts +19 -0
- package/types/lib/pubSub/topics.d.ts +86 -0
- package/types/lib/selectors.d.ts +248 -0
- package/types/lib/types.d.ts +166 -0
- package/types/lib/utils/resolvedReplyType.d.ts +28 -0
- package/types/lib/utils/uikitConfigMapper.d.ts +5 -0
- package/types/modules/App/AppLayout.d.ts +3 -0
- package/types/modules/App/DesktopLayout.d.ts +3 -0
- package/types/modules/App/MobileLayout.d.ts +4 -0
- package/types/modules/App/index.d.ts +44 -0
- package/types/modules/App/types.d.ts +72 -0
- package/types/modules/Channel/components/ChannelHeader/index.d.ts +7 -0
- package/types/modules/Channel/components/ChannelHeader/utils.d.ts +4 -0
- package/types/modules/Channel/components/ChannelUI/index.d.ts +19 -0
- package/types/modules/Channel/components/FileViewer/index.d.ts +21 -0
- package/types/modules/Channel/components/FrozenNotification/index.d.ts +7 -0
- package/types/modules/Channel/components/Message/index.d.ts +15 -0
- package/types/modules/Channel/components/MessageInput/VoiceMessageInputWrapper.d.ts +10 -0
- package/types/modules/Channel/components/MessageInput/index.d.ts +11 -0
- package/types/modules/Channel/components/MessageInput/useHandleUploadFiles.d.ts +19 -0
- package/types/modules/Channel/components/MessageList/getMessagePartsInfo.d.ts +20 -0
- package/types/modules/Channel/components/MessageList/hooks/useScrollBehavior.d.ts +1 -0
- package/types/modules/Channel/components/MessageList/hooks/useSetScrollToBottom.d.ts +7 -0
- package/types/modules/Channel/components/MessageList/index.d.ts +12 -0
- package/types/modules/Channel/components/RemoveMessageModal.d.ts +9 -0
- package/types/modules/Channel/components/SuggestedMentionList/SuggestedUserMentionItem.d.ts +21 -0
- package/types/modules/Channel/components/SuggestedMentionList/index.d.ts +20 -0
- package/types/modules/Channel/components/SuggestedMentionList/utils.d.ts +3 -0
- package/types/modules/Channel/components/SuggestedReplies/index.d.ts +10 -0
- package/types/modules/Channel/components/TypingIndicator.d.ts +8 -0
- package/types/modules/Channel/components/UnreadCount/index.d.ts +12 -0
- package/types/modules/Channel/context/ChannelProvider.d.ts +131 -0
- package/types/modules/Channel/context/compareMessagesForGrouping.d.ts +10 -0
- package/types/modules/Channel/context/const.d.ts +9 -0
- package/types/modules/Channel/context/dux/actionTypes.d.ts +93 -0
- package/types/modules/Channel/context/dux/initialState.d.ts +25 -0
- package/types/modules/Channel/context/dux/reducers.d.ts +3 -0
- package/types/modules/Channel/context/hooks/useDeleteMessageCallback.d.ts +14 -0
- package/types/modules/Channel/context/hooks/useGetChannel.d.ts +18 -0
- package/types/modules/Channel/context/hooks/useHandleChannelEvents.d.ts +29 -0
- package/types/modules/Channel/context/hooks/useHandleChannelPubsubEvents.d.ts +11 -0
- package/types/modules/Channel/context/hooks/useHandleReconnect.d.ts +23 -0
- package/types/modules/Channel/context/hooks/useInitialMessagesFetch.d.ts +20 -0
- package/types/modules/Channel/context/hooks/useReconnectOnIdle.d.ts +5 -0
- package/types/modules/Channel/context/hooks/useResendMessageCallback.d.ts +14 -0
- package/types/modules/Channel/context/hooks/useScrollCallback.d.ts +21 -0
- package/types/modules/Channel/context/hooks/useScrollDownCallback.d.ts +23 -0
- package/types/modules/Channel/context/hooks/useScrollToMessage.d.ts +14 -0
- package/types/modules/Channel/context/hooks/useSendFileMessageCallback.d.ts +21 -0
- package/types/modules/Channel/context/hooks/useSendMessageCallback.d.ts +27 -0
- package/types/modules/Channel/context/hooks/useSendMultipleFilesMessage.d.ts +32 -0
- package/types/modules/Channel/context/hooks/useSendVoiceMessageCallback.d.ts +21 -0
- package/types/modules/Channel/context/hooks/useStatefulFileInfoList.d.ts +3 -0
- package/types/modules/Channel/context/hooks/useThreadMessageKindKeySelector.d.ts +7 -0
- package/types/modules/Channel/context/hooks/useToggleReactionCallback.d.ts +11 -0
- package/types/modules/Channel/context/hooks/useUpdateMessageCallback.d.ts +26 -0
- package/types/modules/Channel/context/utils.d.ts +18 -0
- package/types/modules/Channel/index.d.ts +7 -0
- package/types/modules/ChannelList/components/AddChannel/index.d.ts +3 -0
- package/types/modules/ChannelList/components/ChannelListHeader/index.d.ts +11 -0
- package/types/modules/ChannelList/components/ChannelListUI/index.d.ts +23 -0
- package/types/modules/ChannelList/components/ChannelPreview/index.d.ts +16 -0
- package/types/modules/ChannelList/components/ChannelPreview/utils.d.ts +10 -0
- package/types/modules/ChannelList/components/ChannelPreviewAction.d.ts +9 -0
- package/types/modules/ChannelList/components/LeaveChannel/index.d.ts +9 -0
- package/types/modules/ChannelList/components/Placeholder.d.ts +7 -0
- package/types/modules/ChannelList/context/ChannelListProvider.d.ts +75 -0
- package/types/modules/ChannelList/context/hooks/useActiveChannelUrl.d.ts +15 -0
- package/types/modules/ChannelList/context/hooks/useFetchChannelList.d.ts +17 -0
- package/types/modules/ChannelList/dux/actionTypes.d.ts +66 -0
- package/types/modules/ChannelList/dux/getNextChannel.d.ts +14 -0
- package/types/modules/ChannelList/dux/initialState.d.ts +12 -0
- package/types/modules/ChannelList/dux/reducers.d.ts +3 -0
- package/types/modules/ChannelList/index.d.ts +7 -0
- package/types/modules/ChannelList/utils.d.ts +35 -0
- package/types/modules/ChannelSettings/components/ChannelProfile/index.d.ts +4 -0
- package/types/modules/ChannelSettings/components/ChannelSettingsUI/index.d.ts +10 -0
- package/types/modules/ChannelSettings/components/EditDetailsModal/index.d.ts +7 -0
- package/types/modules/ChannelSettings/components/LeaveChannel/index.d.ts +8 -0
- package/types/modules/ChannelSettings/components/ModerationPanel/AddOperatorsModal.d.ts +7 -0
- package/types/modules/ChannelSettings/components/ModerationPanel/BannedUserList.d.ts +3 -0
- package/types/modules/ChannelSettings/components/ModerationPanel/BannedUsersModal.d.ts +6 -0
- package/types/modules/ChannelSettings/components/ModerationPanel/InviteUsersModal.d.ts +7 -0
- package/types/modules/ChannelSettings/components/ModerationPanel/MemberList.d.ts +3 -0
- package/types/modules/ChannelSettings/components/ModerationPanel/MembersModal.d.ts +6 -0
- package/types/modules/ChannelSettings/components/ModerationPanel/MutedMemberList.d.ts +3 -0
- package/types/modules/ChannelSettings/components/ModerationPanel/MutedMembersModal.d.ts +6 -0
- package/types/modules/ChannelSettings/components/ModerationPanel/OperatorList.d.ts +3 -0
- package/types/modules/ChannelSettings/components/ModerationPanel/OperatorsModal.d.ts +6 -0
- package/types/modules/ChannelSettings/components/ModerationPanel/index.d.ts +3 -0
- package/types/modules/ChannelSettings/components/UserListItem/index.d.ts +19 -0
- package/types/modules/ChannelSettings/components/UserPanel/index.d.ts +4 -0
- package/types/modules/ChannelSettings/context/ChannelSettingsProvider.d.ts +47 -0
- package/types/modules/ChannelSettings/index.d.ts +7 -0
- package/types/modules/CreateChannel/components/CreateChannelUI/index.d.ts +8 -0
- package/types/modules/CreateChannel/components/InviteUsers/index.d.ts +9 -0
- package/types/modules/CreateChannel/components/InviteUsers/utils.d.ts +12 -0
- package/types/modules/CreateChannel/components/SelectChannelType.d.ts +6 -0
- package/types/modules/CreateChannel/context/CreateChannelProvider.d.ts +37 -0
- package/types/modules/CreateChannel/index.d.ts +7 -0
- package/types/modules/CreateChannel/types.d.ts +5 -0
- package/types/modules/CreateChannel/utils.d.ts +3 -0
- package/types/modules/CreateOpenChannel/components/CreateOpenChannelUI/index.d.ts +9 -0
- package/types/modules/CreateOpenChannel/context/CreateOpenChannelProvider.d.ts +22 -0
- package/types/modules/CreateOpenChannel/index.d.ts +7 -0
- package/types/modules/EditUserProfile/components/EditUserProfileUI/index.d.ts +3 -0
- package/types/modules/EditUserProfile/context/EditUserProfileProvider.d.ts +16 -0
- package/types/modules/EditUserProfile/index.d.ts +4 -0
- package/types/modules/Message/components/TextFragment/index.d.ts +6 -0
- package/types/modules/Message/consts.d.ts +1 -0
- package/types/modules/Message/context/MessageProvider.d.ts +11 -0
- package/types/modules/Message/hooks/useDirtyGetMentions.d.ts +14 -0
- package/types/modules/Message/utils/getMentionNodes.d.ts +1 -0
- package/types/modules/Message/utils/tokens/keyGenerator.d.ts +1 -0
- package/types/modules/Message/utils/tokens/tokenize.d.ts +18 -0
- package/types/modules/Message/utils/tokens/types.d.ts +37 -0
- package/types/modules/MessageSearch/components/MessageSearchUI/index.d.ts +15 -0
- package/types/modules/MessageSearch/context/MessageSearchProvider.d.ts +41 -0
- package/types/modules/MessageSearch/context/dux/actionTypes.d.ts +8 -0
- package/types/modules/MessageSearch/context/dux/initialState.d.ts +14 -0
- package/types/modules/MessageSearch/context/dux/reducers.d.ts +7 -0
- package/types/modules/MessageSearch/context/hooks/useGetSearchedMessages.d.ts +24 -0
- package/types/modules/MessageSearch/context/hooks/useScrollCallback.d.ts +20 -0
- package/types/modules/MessageSearch/context/hooks/useSearchStringEffect.d.ts +11 -0
- package/types/modules/MessageSearch/context/hooks/useSetChannel.d.ts +16 -0
- package/types/modules/MessageSearch/index.d.ts +10 -0
- package/types/modules/OpenChannel/components/FrozenChannelNotification/index.d.ts +4 -0
- package/types/modules/OpenChannel/components/OpenChannelHeader/index.d.ts +3 -0
- package/types/modules/OpenChannel/components/OpenChannelInput/index.d.ts +6 -0
- package/types/modules/OpenChannel/components/OpenChannelMessage/RemoveMessageModal.d.ts +10 -0
- package/types/modules/OpenChannel/components/OpenChannelMessage/index.d.ts +12 -0
- package/types/modules/OpenChannel/components/OpenChannelMessage/utils.d.ts +37 -0
- package/types/modules/OpenChannel/components/OpenChannelMessageList/index.d.ts +9 -0
- package/types/modules/OpenChannel/components/OpenChannelUI/index.d.ts +13 -0
- package/types/modules/OpenChannel/context/OpenChannelProvider.d.ts +52 -0
- package/types/modules/OpenChannel/context/dux/actionTypes.d.ts +37 -0
- package/types/modules/OpenChannel/context/dux/initialState.d.ts +19 -0
- package/types/modules/OpenChannel/context/dux/reducers.d.ts +7 -0
- package/types/modules/OpenChannel/context/hooks/useCheckScrollBottom.d.ts +10 -0
- package/types/modules/OpenChannel/context/hooks/useDeleteMessageCallback.d.ts +17 -0
- package/types/modules/OpenChannel/context/hooks/useFileUploadCallback.d.ts +27 -0
- package/types/modules/OpenChannel/context/hooks/useHandleChannelEvents.d.ts +20 -0
- package/types/modules/OpenChannel/context/hooks/useInitialMessagesFetch.d.ts +14 -0
- package/types/modules/OpenChannel/context/hooks/useResendMessageCallback.d.ts +17 -0
- package/types/modules/OpenChannel/context/hooks/useScrollCallback.d.ts +18 -0
- package/types/modules/OpenChannel/context/hooks/useSendMessageCallback.d.ts +22 -0
- package/types/modules/OpenChannel/context/hooks/useSetChannel.d.ts +20 -0
- package/types/modules/OpenChannel/context/hooks/useTrimMessageList.d.ts +17 -0
- package/types/modules/OpenChannel/context/hooks/useUpdateMessageCallback.d.ts +17 -0
- package/types/modules/OpenChannel/context/utils.d.ts +16 -0
- package/types/modules/OpenChannel/index.d.ts +7 -0
- package/types/modules/OpenChannelApp/Community.d.ts +11 -0
- package/types/modules/OpenChannelApp/Streaming.d.ts +11 -0
- package/types/modules/OpenChannelApp/assets/Icons.d.ts +7 -0
- package/types/modules/OpenChannelApp/components/CommunityChannelList.d.ts +7 -0
- package/types/modules/OpenChannelApp/components/DummyStream.d.ts +20 -0
- package/types/modules/OpenChannelApp/components/Login.d.ts +12 -0
- package/types/modules/OpenChannelApp/components/OpenChannelPreview.d.ts +11 -0
- package/types/modules/OpenChannelApp/components/Profile.d.ts +8 -0
- package/types/modules/OpenChannelApp/components/StreamingChannelList.d.ts +7 -0
- package/types/modules/OpenChannelApp/index.d.ts +16 -0
- package/types/modules/OpenChannelApp/stories/utils.d.ts +6 -0
- package/types/modules/OpenChannelList/components/OpenChannelListUI/index.d.ts +18 -0
- package/types/modules/OpenChannelList/components/OpenChannelPreview/index.d.ts +11 -0
- package/types/modules/OpenChannelList/context/OpenChannelListInterfaces.d.ts +42 -0
- package/types/modules/OpenChannelList/context/OpenChannelListProvider.d.ts +9 -0
- package/types/modules/OpenChannelList/context/dux/actionTypes.d.ts +14 -0
- package/types/modules/OpenChannelList/context/dux/initialState.d.ts +10 -0
- package/types/modules/OpenChannelList/context/dux/reducer.d.ts +6 -0
- package/types/modules/OpenChannelList/context/hooks/createChannelListQuery.d.ts +13 -0
- package/types/modules/OpenChannelList/context/hooks/useFetchNextCallback.d.ts +15 -0
- package/types/modules/OpenChannelList/context/hooks/useRefreshOpenChannelList.d.ts +14 -0
- package/types/modules/OpenChannelList/context/hooks/useSetupOpenChannelList.d.ts +14 -0
- package/types/modules/OpenChannelList/index.d.ts +7 -0
- package/types/modules/OpenChannelSettings/components/EditDetailsModal.d.ts +6 -0
- package/types/modules/OpenChannelSettings/components/InvalidChannel.d.ts +6 -0
- package/types/modules/OpenChannelSettings/components/OpenChannelProfile/index.d.ts +3 -0
- package/types/modules/OpenChannelSettings/components/OpenChannelSettingsUI/index.d.ts +8 -0
- package/types/modules/OpenChannelSettings/components/OperatorUI/AddOperatorsModal.d.ts +7 -0
- package/types/modules/OpenChannelSettings/components/OperatorUI/BannedUserList.d.ts +3 -0
- package/types/modules/OpenChannelSettings/components/OperatorUI/BannedUsersModal.d.ts +6 -0
- package/types/modules/OpenChannelSettings/components/OperatorUI/DeleteOpenChannel.d.ts +2 -0
- package/types/modules/OpenChannelSettings/components/OperatorUI/MutedParticipantList.d.ts +3 -0
- package/types/modules/OpenChannelSettings/components/OperatorUI/MutedParticipantsModal.d.ts +6 -0
- package/types/modules/OpenChannelSettings/components/OperatorUI/OperatorList.d.ts +3 -0
- package/types/modules/OpenChannelSettings/components/OperatorUI/OperatorsModal.d.ts +6 -0
- package/types/modules/OpenChannelSettings/components/OperatorUI/index.d.ts +7 -0
- package/types/modules/OpenChannelSettings/components/ParticipantUI/ParticipantItem.d.ts +17 -0
- package/types/modules/OpenChannelSettings/components/ParticipantUI/ParticipantsModal.d.ts +6 -0
- package/types/modules/OpenChannelSettings/components/ParticipantUI/index.d.ts +6 -0
- package/types/modules/OpenChannelSettings/context/OpenChannelSettingsProvider.d.ts +27 -0
- package/types/modules/OpenChannelSettings/index.d.ts +7 -0
- package/types/modules/Thread/components/ParentMessageInfo/ParentMessageInfoItem.d.ts +9 -0
- package/types/modules/Thread/components/ParentMessageInfo/index.d.ts +6 -0
- package/types/modules/Thread/components/RemoveMessageModal.d.ts +9 -0
- package/types/modules/Thread/components/ThreadHeader/index.d.ts +14 -0
- package/types/modules/Thread/components/ThreadList/ThreadListItem.d.ts +14 -0
- package/types/modules/Thread/components/ThreadList/ThreadListItemContent.d.ts +30 -0
- package/types/modules/Thread/components/ThreadList/index.d.ts +18 -0
- package/types/modules/Thread/components/ThreadMessageInput/index.d.ts +11 -0
- package/types/modules/Thread/components/ThreadUI/index.d.ts +23 -0
- package/types/modules/Thread/components/ThreadUI/useMemorizedHeader.d.ts +6 -0
- package/types/modules/Thread/components/ThreadUI/useMemorizedParentMessageInfo.d.ts +11 -0
- package/types/modules/Thread/components/ThreadUI/useMemorizedThreadList.d.ts +8 -0
- package/types/modules/Thread/consts.d.ts +2 -0
- package/types/modules/Thread/context/ThreadProvider.d.ts +43 -0
- package/types/modules/Thread/context/dux/actionTypes.d.ts +38 -0
- package/types/modules/Thread/context/dux/initialState.d.ts +22 -0
- package/types/modules/Thread/context/dux/reducer.d.ts +8 -0
- package/types/modules/Thread/context/hooks/useDeleteMessageCallback.d.ts +12 -0
- package/types/modules/Thread/context/hooks/useGetAllEmoji.d.ts +11 -0
- package/types/modules/Thread/context/hooks/useGetChannel.d.ts +18 -0
- package/types/modules/Thread/context/hooks/useGetNextThreadsCallback.d.ts +17 -0
- package/types/modules/Thread/context/hooks/useGetParentMessage.d.ts +15 -0
- package/types/modules/Thread/context/hooks/useGetPrevThreadsCallback.d.ts +17 -0
- package/types/modules/Thread/context/hooks/useGetThreadList.d.ts +14 -0
- package/types/modules/Thread/context/hooks/useHandleChannelEvents.d.ts +13 -0
- package/types/modules/Thread/context/hooks/useHandleThreadPubsubEvents.d.ts +16 -0
- package/types/modules/Thread/context/hooks/useResendMessageCallback.d.ts +14 -0
- package/types/modules/Thread/context/hooks/useSendFileMessage.d.ts +17 -0
- package/types/modules/Thread/context/hooks/useSendMultipleFilesMessage.d.ts +8 -0
- package/types/modules/Thread/context/hooks/useSendUserMessageCallback.d.ts +25 -0
- package/types/modules/Thread/context/hooks/useSendVoiceMessageCallback.d.ts +17 -0
- package/types/modules/Thread/context/hooks/useToggleReactionsCallback.d.ts +10 -0
- package/types/modules/Thread/context/hooks/useUpdateMessageCallback.d.ts +14 -0
- package/types/modules/Thread/context/utils.d.ts +15 -0
- package/types/modules/Thread/index.d.ts +8 -0
- package/types/modules/Thread/types.d.ts +18 -0
- package/types/modules/internalInterfaces.d.ts +6 -0
- package/types/types.d.ts +55 -0
- package/types/ui/Accordion/AccordionGroup.d.ts +7 -0
- package/types/ui/Accordion/context.d.ts +8 -0
- package/types/ui/Accordion/index.d.ts +13 -0
- package/types/ui/AdminMessage/adminMessageDummyData.mock.d.ts +29 -0
- package/types/ui/AdminMessage/index.d.ts +9 -0
- package/types/ui/Avatar/MutedAvatarOverlay.d.ts +8 -0
- package/types/ui/Avatar/index.d.ts +27 -0
- package/types/ui/Badge/index.d.ts +8 -0
- package/types/ui/BottomSheet/index.d.ts +9 -0
- package/types/ui/Button/index.d.ts +13 -0
- package/types/ui/Button/types.d.ts +10 -0
- package/types/ui/Button/utils.d.ts +3 -0
- package/types/ui/ChannelAvatar/OpenChannelAvatar.d.ts +10 -0
- package/types/ui/ChannelAvatar/index.d.ts +12 -0
- package/types/ui/ChannelAvatar/utils.d.ts +6 -0
- package/types/ui/Checkbox/index.d.ts +9 -0
- package/types/ui/ConnectionStatus/index.d.ts +4 -0
- package/types/ui/ContextMenu/EmojiListItems.d.ts +15 -0
- package/types/ui/ContextMenu/MenuItems.d.ts +29 -0
- package/types/ui/ContextMenu/index.d.ts +24 -0
- package/types/ui/DateSeparator/index.d.ts +10 -0
- package/types/ui/Docs/Introduction.d.ts +2 -0
- package/types/ui/EmojiReactions/AddReactionBadgeItem.d.ts +5 -0
- package/types/ui/EmojiReactions/ReactionItem.d.ts +17 -0
- package/types/ui/EmojiReactions/index.d.ts +21 -0
- package/types/ui/FileMessageItemBody/index.d.ts +13 -0
- package/types/ui/FileViewer/DeleteButton.d.ts +5 -0
- package/types/ui/FileViewer/Slider.d.ts +3 -0
- package/types/ui/FileViewer/data.mock.d.ts +84 -0
- package/types/ui/FileViewer/hooks/useKeyDown.d.ts +8 -0
- package/types/ui/FileViewer/index.d.ts +17 -0
- package/types/ui/FileViewer/types.d.ts +44 -0
- package/types/ui/FileViewer/utils.d.ts +4 -0
- package/types/ui/Icon/colors.d.ts +42 -0
- package/types/ui/Icon/index.d.ts +96 -0
- package/types/ui/Icon/type.d.ts +61 -0
- package/types/ui/Icon/utils.d.ts +4 -0
- package/types/ui/IconButton/index.d.ts +17 -0
- package/types/ui/ImageGrid/index.d.ts +11 -0
- package/types/ui/ImageRenderer/index.d.ts +27 -0
- package/types/ui/ImageRenderer/useDynamicSideLength.d.ts +8 -0
- package/types/ui/ImageRenderer/utils.d.ts +1 -0
- package/types/ui/Input/index.d.ts +15 -0
- package/types/ui/Label/index.d.ts +37 -0
- package/types/ui/Label/stringFormatterUtils.d.ts +2 -0
- package/types/ui/Label/stringSet.d.ts +189 -0
- package/types/ui/Label/types.d.ts +24 -0
- package/types/ui/Label/utils.d.ts +4 -0
- package/types/ui/LegacyEditUserProfile/index.d.ts +20 -0
- package/types/ui/LinkLabel/index.d.ts +37 -0
- package/types/ui/Loader/index.d.ts +9 -0
- package/types/ui/MentionLabel/index.d.ts +10 -0
- package/types/ui/MentionUserLabel/consts.d.ts +1 -0
- package/types/ui/MentionUserLabel/index.d.ts +11 -0
- package/types/ui/MentionUserLabel/renderToString.d.ts +6 -0
- package/types/ui/MessageContent/MessageBody/index.d.ts +18 -0
- package/types/ui/MessageContent/MessageHeader/index.d.ts +10 -0
- package/types/ui/MessageContent/MessageProfile/index.d.ts +15 -0
- package/types/ui/MessageContent/index.d.ts +44 -0
- package/types/ui/MessageInput/const.d.ts +15 -0
- package/types/ui/MessageInput/hooks/usePaste/consts.d.ts +5 -0
- package/types/ui/MessageInput/hooks/usePaste/index.d.ts +4 -0
- package/types/ui/MessageInput/hooks/usePaste/insertTemplate.d.ts +2 -0
- package/types/ui/MessageInput/hooks/usePaste/types.d.ts +15 -0
- package/types/ui/MessageInput/hooks/usePaste/utils.d.ts +10 -0
- package/types/ui/MessageInput/index.d.ts +47 -0
- package/types/ui/MessageInput/messageInputUtils.d.ts +21 -0
- package/types/ui/MessageInput/utils.d.ts +9 -0
- package/types/ui/MessageItemMenu/index.d.ts +26 -0
- package/types/ui/MessageItemReactionMenu/index.d.ts +16 -0
- package/types/ui/MessageSearchFileItem/index.d.ts +12 -0
- package/types/ui/MessageSearchFileItem/mockFileMessage.d.ts +180 -0
- package/types/ui/MessageSearchFileItem/utils.d.ts +12 -0
- package/types/ui/MessageSearchItem/getCreatedAt.d.ts +8 -0
- package/types/ui/MessageSearchItem/index.d.ts +11 -0
- package/types/ui/MessageSearchItem/messageDummyDate.mock.d.ts +5 -0
- package/types/ui/MessageStatus/index.d.ts +15 -0
- package/types/ui/MessageStatus/messageDummyData.mock.d.ts +7 -0
- package/types/ui/MobileMenu/MobileBottomSheet.d.ts +4 -0
- package/types/ui/MobileMenu/MobileContextMenu.d.ts +4 -0
- package/types/ui/MobileMenu/MobileEmojisBottomSheet.d.ts +11 -0
- package/types/ui/MobileMenu/ReactedMembersBottomSheet.d.ts +14 -0
- package/types/ui/MobileMenu/index.d.ts +5 -0
- package/types/ui/MobileMenu/types.d.ts +32 -0
- package/types/ui/Modal/index.d.ts +40 -0
- package/types/ui/MultipleFilesMessageItemBody/const.d.ts +17 -0
- package/types/ui/MultipleFilesMessageItemBody/index.d.ts +21 -0
- package/types/ui/OGMessageItemBody/consts.d.ts +1 -0
- package/types/ui/OGMessageItemBody/index.d.ts +14 -0
- package/types/ui/OpenChannelAdminMessage/index.d.ts +9 -0
- package/types/ui/OpenChannelMobileMenu/index.d.ts +15 -0
- package/types/ui/OpenchannelConversationHeader/index.d.ts +11 -0
- package/types/ui/OpenchannelFileMessage/index.d.ts +17 -0
- package/types/ui/OpenchannelFileMessage/mockMessages.d.ts +75 -0
- package/types/ui/OpenchannelFileMessage/utils.d.ts +2 -0
- package/types/ui/OpenchannelOGMessage/index.d.ts +18 -0
- package/types/ui/OpenchannelOGMessage/utils.d.ts +4 -0
- package/types/ui/OpenchannelThumbnailMessage/index.d.ts +18 -0
- package/types/ui/OpenchannelThumbnailMessage/utils.d.ts +6 -0
- package/types/ui/OpenchannelUserMessage/index.d.ts +18 -0
- package/types/ui/OpenchannelUserMessage/utils.d.ts +5 -0
- package/types/ui/PlaceHolder/index.d.ts +19 -0
- package/types/ui/PlaybackTime/index.d.ts +11 -0
- package/types/ui/ProgressBar/index.d.ts +16 -0
- package/types/ui/QuoteMessage/index.d.ts +13 -0
- package/types/ui/QuoteMessage/utils.d.ts +7 -0
- package/types/ui/QuoteMessageInput/QuoteMessageThumbnail.d.ts +8 -0
- package/types/ui/QuoteMessageInput/index.d.ts +10 -0
- package/types/ui/QuoteMessageInput/mockMessage.d.ts +362 -0
- package/types/ui/ReactionBadge/index.d.ts +12 -0
- package/types/ui/ReactionButton/index.d.ts +13 -0
- package/types/ui/SortByRow/index.d.ts +10 -0
- package/types/ui/TextButton/index.d.ts +13 -0
- package/types/ui/TextMessageItemBody/consts.d.ts +1 -0
- package/types/ui/TextMessageItemBody/index.d.ts +13 -0
- package/types/ui/ThreadReplies/index.d.ts +9 -0
- package/types/ui/ThumbnailMessageItemBody/index.d.ts +15 -0
- package/types/ui/Toggle/ToggleContainer.d.ts +7 -0
- package/types/ui/Toggle/ToggleContext.d.ts +19 -0
- package/types/ui/Toggle/ToggleUI.d.ts +12 -0
- package/types/ui/Toggle/index.d.ts +11 -0
- package/types/ui/Toggle/utils.d.ts +1 -0
- package/types/ui/Tooltip/index.d.ts +7 -0
- package/types/ui/TooltipWrapper/index.d.ts +8 -0
- package/types/ui/TypingIndicatorMessage/TypingDots.d.ts +4 -0
- package/types/ui/TypingIndicatorMessage/index.d.ts +6 -0
- package/types/ui/UnknownMessageItemBody/index.d.ts +12 -0
- package/types/ui/UserListItem/index.d.ts +21 -0
- package/types/ui/UserProfile/index.d.ts +17 -0
- package/types/ui/VoiceMessageInput/controlerIcons.d.ts +7 -0
- package/types/ui/VoiceMessageInput/index.d.ts +16 -0
- package/types/ui/VoiceMessageInput/types.d.ts +7 -0
- package/types/ui/VoiceMessageItemBody/index.d.ts +12 -0
- package/types/ui/Word/index.d.ts +17 -0
- package/types/utils/cloneMessage.d.ts +2 -0
- package/types/utils/color.d.ts +12 -0
- package/types/utils/compareIds.d.ts +1 -0
- package/types/utils/compressImages.d.ts +11 -0
- package/types/utils/consts.d.ts +23 -0
- package/types/utils/createStatefulFileInfoList.d.ts +11 -0
- package/types/utils/exports/getOutgoingMessageState.d.ts +13 -0
- package/types/utils/getIsReactionEnabled.d.ts +11 -0
- package/types/utils/index.d.ts +142 -0
- package/types/utils/isVoiceMessage.d.ts +1 -0
- package/types/utils/numberToPx.d.ts +2 -0
- package/types/utils/openChannelUtils.d.ts +44 -0
- package/types/utils/pxToNumber.d.ts +2 -0
- package/types/utils/testMocks/error.d.ts +9 -0
- package/types/utils/testMocks/message.d.ts +23 -0
- package/types/utils/testMocks/messageRequestHandler.d.ts +15 -0
- package/types/utils/typeHelpers/objectValues.d.ts +16 -0
- package/types/utils/typeHelpers/partialDeep.d.ts +14 -0
- package/types/utils/typeHelpers/reducers/createAction.d.ts +17 -0
- package/types/utils/useDidMountEffect.d.ts +2 -0
- package/types/utils/utils.d.ts +10 -0
- package/types/utils/uuid.d.ts +2 -0
- package/ui/Accordion.js +39 -52
- package/ui/Accordion.js.map +1 -1
- package/ui/AccordionGroup.js +9 -18
- package/ui/AccordionGroup.js.map +1 -1
- package/ui/AdminMessage.js +13 -19
- package/ui/AdminMessage.js.map +1 -1
- package/ui/Avatar.js +7 -197
- package/ui/Avatar.js.map +1 -1
- package/ui/Badge.js +18 -22
- package/ui/Badge.js.map +1 -1
- package/ui/BottomSheet.js +28 -34
- package/ui/BottomSheet.js.map +1 -1
- package/ui/Button.js +42 -53
- package/ui/Button.js.map +1 -1
- package/ui/ChannelAvatar.js +21 -44
- package/ui/ChannelAvatar.js.map +1 -1
- package/ui/Checkbox.js +15 -24
- package/ui/Checkbox.js.map +1 -1
- package/ui/ConnectionStatus.js +11 -18
- package/ui/ConnectionStatus.js.map +1 -1
- package/ui/ContextMenu.js +195 -280
- package/ui/ContextMenu.js.map +1 -1
- package/ui/DateSeparator.js +13 -24
- package/ui/DateSeparator.js.map +1 -1
- package/ui/EmojiReactions.js +144 -327
- package/ui/EmojiReactions.js.map +1 -1
- package/ui/FileMessageItemBody.js +30 -49
- package/ui/FileMessageItemBody.js.map +1 -1
- package/ui/FileViewer.js +17 -16
- package/ui/FileViewer.js.map +1 -1
- package/ui/Icon.js +541 -707
- package/ui/Icon.js.map +1 -1
- package/ui/IconButton.js +18 -45
- package/ui/IconButton.js.map +1 -1
- package/ui/ImageRenderer.js +102 -149
- package/ui/ImageRenderer.js.map +1 -1
- package/ui/Input.js +15 -37
- package/ui/Input.js.map +1 -1
- package/ui/Label.js +3 -3
- package/ui/LinkLabel.js +21 -45
- package/ui/LinkLabel.js.map +1 -1
- package/ui/Loader.js +11 -21
- package/ui/Loader.js.map +1 -1
- package/ui/MentionLabel.js +49 -79
- package/ui/MentionLabel.js.map +1 -1
- package/ui/MentionUserLabel.js +4 -15
- package/ui/MentionUserLabel.js.map +1 -1
- package/ui/MessageContent.js +248 -413
- package/ui/MessageContent.js.map +1 -1
- package/ui/MessageInput/hooks/usePaste.js +5 -5
- package/ui/MessageInput.js +448 -621
- package/ui/MessageInput.js.map +1 -1
- package/ui/MessageItemMenu.js +110 -162
- package/ui/MessageItemMenu.js.map +1 -1
- package/ui/MessageItemReactionMenu.js +39 -98
- package/ui/MessageItemReactionMenu.js.map +1 -1
- package/ui/MessageSearchFileItem.js +78 -111
- package/ui/MessageSearchFileItem.js.map +1 -1
- package/ui/MessageSearchItem.js +50 -80
- package/ui/MessageSearchItem.js.map +1 -1
- package/ui/MessageStatus.js +12 -12
- package/ui/Modal.js +13 -126
- package/ui/Modal.js.map +1 -1
- package/ui/MutedAvatarOverlay.js +14 -26
- package/ui/MutedAvatarOverlay.js.map +1 -1
- package/ui/OGMessageItemBody.js +66 -107
- package/ui/OGMessageItemBody.js.map +1 -1
- package/ui/OpenChannelAdminMessage.js +9 -14
- package/ui/OpenChannelAdminMessage.js.map +1 -1
- package/ui/OpenChannelAvatar.js +15 -26
- package/ui/OpenChannelAvatar.js.map +1 -1
- package/ui/OpenchannelConversationHeader.js +22 -57
- package/ui/OpenchannelConversationHeader.js.map +1 -1
- package/ui/OpenchannelFileMessage.js +114 -234
- package/ui/OpenchannelFileMessage.js.map +1 -1
- package/ui/OpenchannelOGMessage.js +157 -328
- package/ui/OpenchannelOGMessage.js.map +1 -1
- package/ui/OpenchannelThumbnailMessage.js +152 -313
- package/ui/OpenchannelThumbnailMessage.js.map +1 -1
- package/ui/OpenchannelUserMessage.js +126 -264
- package/ui/OpenchannelUserMessage.js.map +1 -1
- package/ui/PlaceHolder.js +45 -100
- package/ui/PlaceHolder.js.map +1 -1
- package/ui/PlaybackTime.js +11 -21
- package/ui/PlaybackTime.js.map +1 -1
- package/ui/ProgressBar.js +12 -26
- package/ui/ProgressBar.js.map +1 -1
- package/ui/QuoteMessage.js +70 -142
- package/ui/QuoteMessage.js.map +1 -1
- package/ui/QuoteMessageInput.js +71 -98
- package/ui/QuoteMessageInput.js.map +1 -1
- package/ui/ReactionBadge.js +20 -42
- package/ui/ReactionBadge.js.map +1 -1
- package/ui/ReactionButton.js +17 -35
- package/ui/ReactionButton.js.map +1 -1
- package/ui/SortByRow.js +23 -31
- package/ui/SortByRow.js.map +1 -1
- package/ui/TextButton.js +9 -25
- package/ui/TextButton.js.map +1 -1
- package/ui/TextMessageItemBody.js +43 -55
- package/ui/TextMessageItemBody.js.map +1 -1
- package/ui/ThreadReplies.js +33 -67
- package/ui/ThreadReplies.js.map +1 -1
- package/ui/ThumbnailMessageItemBody.js +34 -70
- package/ui/ThumbnailMessageItemBody.js.map +1 -1
- package/ui/Toggle.js +110 -183
- package/ui/Toggle.js.map +1 -1
- package/ui/Tooltip.js +9 -16
- package/ui/Tooltip.js.map +1 -1
- package/ui/TooltipWrapper.js +13 -41
- package/ui/TooltipWrapper.js.map +1 -1
- package/ui/UnknownMessageItemBody.js +20 -30
- package/ui/UnknownMessageItemBody.js.map +1 -1
- package/ui/UserListItem.js +51 -114
- package/ui/UserListItem.js.map +1 -1
- package/ui/UserProfile.js +46 -71
- package/ui/UserProfile.js.map +1 -1
- package/ui/VoiceMessageItemBody.js +52 -101
- package/ui/VoiceMessageItemBody.js.map +1 -1
- package/ui/VoiceMessgeInput.js +9 -9
- package/ui/Word.js +60 -85
- package/ui/Word.js.map +1 -1
- package/useSendbirdStateContext.js +15 -14
- package/useSendbirdStateContext.js.map +1 -1
- package/utils/message/getOutgoingMessageState.js +32 -29
- package/utils/message/getOutgoingMessageState.js.map +1 -1
- package/utils/message/isVoiceMessage.js +3 -3
- package/utils/message/isVoiceMessage.js.map +1 -1
- package/withSendbird.js +17 -18
- package/withSendbird.js.map +1 -1
- package/ChannelListProvider-eccd99c6.js +0 -1051
- package/ChannelListProvider-eccd99c6.js.map +0 -1
- package/ChannelProvider-9ba5893a.js +0 -2079
- package/ChannelProvider-9ba5893a.js.map +0 -1
- package/CreateChannelProvider-a2885972.js +0 -48
- package/CreateChannelProvider-a2885972.js.map +0 -1
- package/LocalizationContext-287ee149.js +0 -20
- package/LocalizationContext-287ee149.js.map +0 -1
- package/MediaQueryContext-114ca049.js +0 -85
- package/MediaQueryContext-114ca049.js.map +0 -1
- package/MemberList-4e71a841.js +0 -422
- package/MemberList-4e71a841.js.map +0 -1
- package/OpenChannelListProvider-45d4ab54.js +0 -407
- package/OpenChannelListProvider-45d4ab54.js.map +0 -1
- package/OpenChannelProvider-9818f9ed.js +0 -1850
- package/OpenChannelProvider-9818f9ed.js.map +0 -1
- package/RemoveMessageModal-007c2f04.js +0 -33
- package/RemoveMessageModal-007c2f04.js.map +0 -1
- package/UserProfileContext-2001a468.js +0 -34
- package/UserProfileContext-2001a468.js.map +0 -1
- package/WebAudioUtils-31f7c8eb.js +0 -126
- package/WebAudioUtils-31f7c8eb.js.map +0 -1
- package/_rollupPluginBabelHelpers-e92eb032.js +0 -66
- package/_rollupPluginBabelHelpers-e92eb032.js.map +0 -1
- package/actionTypes-324495ed.js +0 -8
- package/actionTypes-324495ed.js.map +0 -1
- package/cjs/ChannelListProvider-d0ad5a84.js +0 -1060
- package/cjs/ChannelListProvider-d0ad5a84.js.map +0 -1
- package/cjs/ChannelProvider-fc111e5f.js +0 -2087
- package/cjs/ChannelProvider-fc111e5f.js.map +0 -1
- package/cjs/CreateChannelProvider-c3c843e4.js +0 -55
- package/cjs/CreateChannelProvider-c3c843e4.js.map +0 -1
- package/cjs/LocalizationContext-58b6ed7c.js +0 -28
- package/cjs/LocalizationContext-58b6ed7c.js.map +0 -1
- package/cjs/MediaQueryContext-6141d955.js +0 -92
- package/cjs/MediaQueryContext-6141d955.js.map +0 -1
- package/cjs/MemberList-2bd3db33.js +0 -428
- package/cjs/MemberList-2bd3db33.js.map +0 -1
- package/cjs/OpenChannelListProvider-a8560978.js +0 -416
- package/cjs/OpenChannelListProvider-a8560978.js.map +0 -1
- package/cjs/OpenChannelProvider-39f13647.js +0 -1859
- package/cjs/OpenChannelProvider-39f13647.js.map +0 -1
- package/cjs/RemoveMessageModal-afc3e268.js +0 -39
- package/cjs/RemoveMessageModal-afc3e268.js.map +0 -1
- package/cjs/UserProfileContext-c6d7abb7.js +0 -41
- package/cjs/UserProfileContext-c6d7abb7.js.map +0 -1
- package/cjs/WebAudioUtils-36803ab2.js +0 -129
- package/cjs/WebAudioUtils-36803ab2.js.map +0 -1
- package/cjs/_rollupPluginBabelHelpers-f5b0dfb9.js +0 -69
- package/cjs/_rollupPluginBabelHelpers-f5b0dfb9.js.map +0 -1
- package/cjs/actionTypes-327123b5.js +0 -10
- package/cjs/actionTypes-327123b5.js.map +0 -1
- package/cjs/color-5bf5a8f5.js +0 -36
- package/cjs/color-5bf5a8f5.js.map +0 -1
- package/cjs/compareIds-28c6af62.js +0 -18
- package/cjs/compareIds-28c6af62.js.map +0 -1
- package/cjs/const-876980e8.js +0 -22
- package/cjs/const-876980e8.js.map +0 -1
- package/cjs/const-c9e7a340.js.map +0 -1
- package/cjs/consts-61d83828.js.map +0 -1
- package/cjs/consts-b3c4f548.js.map +0 -1
- package/cjs/consts-b711321c.js.map +0 -1
- package/cjs/consts-f54b15c2.js.map +0 -1
- package/cjs/context-6684538e.js +0 -19
- package/cjs/context-6684538e.js.map +0 -1
- package/cjs/dist/index.css +0 -7702
- package/cjs/dist/index.css.map +0 -1
- package/cjs/index-134e9852.js.map +0 -1
- package/cjs/index-3448df64.js.map +0 -1
- package/cjs/index-45933be9.js +0 -197
- package/cjs/index-45933be9.js.map +0 -1
- package/cjs/index-4c378655.js +0 -163
- package/cjs/index-4c378655.js.map +0 -1
- package/cjs/index-4e939c26.js +0 -369
- package/cjs/index-4e939c26.js.map +0 -1
- package/cjs/index-520e12b8.js +0 -173
- package/cjs/index-520e12b8.js.map +0 -1
- package/cjs/index-54279ec2.js.map +0 -1
- package/cjs/index-692ea6aa.js +0 -76
- package/cjs/index-692ea6aa.js.map +0 -1
- package/cjs/index-7627b546.js.map +0 -1
- package/cjs/index-a95c4ab4.js +0 -308
- package/cjs/index-a95c4ab4.js.map +0 -1
- package/cjs/index-b5a9b4b7.js +0 -129
- package/cjs/index-b5a9b4b7.js.map +0 -1
- package/cjs/index-b8ba4548.js +0 -20
- package/cjs/index-b8ba4548.js.map +0 -1
- package/cjs/index-bc6623d7.js +0 -289
- package/cjs/index-bc6623d7.js.map +0 -1
- package/cjs/index-cc2e05a4.js +0 -227
- package/cjs/index-cc2e05a4.js.map +0 -1
- package/cjs/index-ce07a2a3.js +0 -59
- package/cjs/index-ce07a2a3.js.map +0 -1
- package/cjs/index-dbe8dd84.js +0 -741
- package/cjs/index-dbe8dd84.js.map +0 -1
- package/cjs/index-e5e6d9b0.js +0 -468
- package/cjs/index-e5e6d9b0.js.map +0 -1
- package/cjs/index-e8928da6.js.map +0 -1
- package/cjs/resolvedReplyType-c4564ebe.js.map +0 -1
- package/cjs/stringFormatterUtils-92dbef3c.js +0 -16
- package/cjs/stringFormatterUtils-92dbef3c.js.map +0 -1
- package/cjs/stringSet-1539ac47.js +0 -212
- package/cjs/stringSet-1539ac47.js.map +0 -1
- package/cjs/tokenize-d5286fa8.js +0 -159
- package/cjs/tokenize-d5286fa8.js.map +0 -1
- package/cjs/tslib.es6-c74b513f.js.map +0 -1
- package/cjs/types-d0d770c3.js +0 -15
- package/cjs/types-d0d770c3.js.map +0 -1
- package/cjs/types-feda9656.js.map +0 -1
- package/cjs/useHandleUploadFiles-39e8d107.js +0 -284
- package/cjs/useHandleUploadFiles-39e8d107.js.map +0 -1
- package/cjs/useLongPress-18b7af79.js +0 -105
- package/cjs/useLongPress-18b7af79.js.map +0 -1
- package/cjs/useSendMultipleFilesMessage-d6a3d5cf.js +0 -316
- package/cjs/useSendMultipleFilesMessage-d6a3d5cf.js.map +0 -1
- package/cjs/useStatefulFileInfoList-c510792f.js +0 -228
- package/cjs/useStatefulFileInfoList-c510792f.js.map +0 -1
- package/cjs/utils-1d0f1e0c.js +0 -28
- package/cjs/utils-1d0f1e0c.js.map +0 -1
- package/cjs/utils-9193a195.js +0 -170
- package/cjs/utils-9193a195.js.map +0 -1
- package/cjs/utils-93ca9d57.js +0 -62
- package/cjs/utils-93ca9d57.js.map +0 -1
- package/cjs/utils-98441ba6.js +0 -35
- package/cjs/utils-98441ba6.js.map +0 -1
- package/cjs/utils-e6c4b2b0.js +0 -27
- package/cjs/utils-e6c4b2b0.js.map +0 -1
- package/cjs/utils-eb6d90e0.js +0 -10
- package/cjs/utils-eb6d90e0.js.map +0 -1
- package/cjs/uuid-9a117e16.js.map +0 -1
- package/color-57373b4c.js +0 -34
- package/color-57373b4c.js.map +0 -1
- package/compareIds-7e517404.js +0 -16
- package/compareIds-7e517404.js.map +0 -1
- package/const-73db0277.js.map +0 -1
- package/const-93731a4c.js +0 -18
- package/const-93731a4c.js.map +0 -1
- package/consts-4ec7d640.js.map +0 -1
- package/consts-57c888b9.js.map +0 -1
- package/consts-be37687e.js.map +0 -1
- package/consts-d9c5f25a.js.map +0 -1
- package/context-729493c4.js +0 -12
- package/context-729493c4.js.map +0 -1
- package/index-04bd1a59.js +0 -13
- package/index-04bd1a59.js.map +0 -1
- package/index-09847c0f.js.map +0 -1
- package/index-0f017704.js +0 -280
- package/index-0f017704.js.map +0 -1
- package/index-2d27aeef.js.map +0 -1
- package/index-493689bd.js +0 -156
- package/index-493689bd.js.map +0 -1
- package/index-494f9e79.js +0 -73
- package/index-494f9e79.js.map +0 -1
- package/index-4b4e9682.js +0 -161
- package/index-4b4e9682.js.map +0 -1
- package/index-62d5f020.js +0 -362
- package/index-62d5f020.js.map +0 -1
- package/index-682a192c.js.map +0 -1
- package/index-686a551d.js +0 -182
- package/index-686a551d.js.map +0 -1
- package/index-6b3b1eca.js +0 -217
- package/index-6b3b1eca.js.map +0 -1
- package/index-776554c0.js +0 -692
- package/index-776554c0.js.map +0 -1
- package/index-92741c7e.js +0 -118
- package/index-92741c7e.js.map +0 -1
- package/index-a0638563.js +0 -53
- package/index-a0638563.js.map +0 -1
- package/index-c22e4772.js +0 -462
- package/index-c22e4772.js.map +0 -1
- package/index-e04159fe.js +0 -298
- package/index-e04159fe.js.map +0 -1
- package/index-e4277f9c.js.map +0 -1
- package/index-f8a9cb51.js.map +0 -1
- package/index.d.ts +0 -2963
- package/resolvedReplyType-fb987595.js.map +0 -1
- package/stringFormatterUtils-abbe70ba.js +0 -14
- package/stringFormatterUtils-abbe70ba.js.map +0 -1
- package/stringSet-6422c6b9.js +0 -210
- package/stringSet-6422c6b9.js.map +0 -1
- package/tokenize-eae44765.js +0 -154
- package/tokenize-eae44765.js.map +0 -1
- package/tslib.es6-c2fb729e.js.map +0 -1
- package/types-781e0bab.js.map +0 -1
- package/types-9d43ac6e.js +0 -15
- package/types-9d43ac6e.js.map +0 -1
- package/useHandleUploadFiles-5ede1bfe.js +0 -277
- package/useHandleUploadFiles-5ede1bfe.js.map +0 -1
- package/useLongPress-f8655a14.js +0 -103
- package/useLongPress-f8655a14.js.map +0 -1
- package/useSendMultipleFilesMessage-b8256698.js +0 -283
- package/useSendMultipleFilesMessage-b8256698.js.map +0 -1
- package/useStatefulFileInfoList-5e68b93f.js +0 -219
- package/useStatefulFileInfoList-5e68b93f.js.map +0 -1
- package/utils-2c1f072b.js +0 -31
- package/utils-2c1f072b.js.map +0 -1
- package/utils-6c50a6d1.js +0 -7
- package/utils-6c50a6d1.js.map +0 -1
- package/utils-aa4086dc.js +0 -157
- package/utils-aa4086dc.js.map +0 -1
- package/utils-bfc0ab3b.js +0 -57
- package/utils-bfc0ab3b.js.map +0 -1
- package/utils-fa321757.js +0 -26
- package/utils-fa321757.js.map +0 -1
- package/utils-fc1f5aa0.js +0 -25
- package/utils-fc1f5aa0.js.map +0 -1
- package/uuid-c15b8b3b.js.map +0 -1
package/dist/index.css
CHANGED
|
@@ -70,155 +70,6 @@
|
|
|
70
70
|
color: inherit;
|
|
71
71
|
word-break: break-all;
|
|
72
72
|
}
|
|
73
|
-
.sendbird-open-channel-list,
|
|
74
|
-
.sendbird-open-channel-list-ui {
|
|
75
|
-
position: relative;
|
|
76
|
-
display: inline-flex;
|
|
77
|
-
flex-direction: column;
|
|
78
|
-
width: 256px;
|
|
79
|
-
min-width: 256px;
|
|
80
|
-
height: 100%;
|
|
81
|
-
box-sizing: border-box;
|
|
82
|
-
}
|
|
83
|
-
.sendbird--mobile-mode .sendbird-open-channel-list,
|
|
84
|
-
.sendbird--mobile-mode .sendbird-open-channel-list-ui {
|
|
85
|
-
width: 100%;
|
|
86
|
-
}
|
|
87
|
-
.sendbird-theme--light .sendbird-open-channel-list,
|
|
88
|
-
.sendbird-theme--light .sendbird-open-channel-list-ui {
|
|
89
|
-
border-right: solid 1px var(--sendbird-light-onlight-04);
|
|
90
|
-
}
|
|
91
|
-
.sendbird-theme--dark .sendbird-open-channel-list,
|
|
92
|
-
.sendbird-theme--dark .sendbird-open-channel-list-ui {
|
|
93
|
-
border-right: solid 1px var(--sendbird-dark-ondark-04);
|
|
94
|
-
}
|
|
95
|
-
.sendbird-open-channel-list .sendbird-open-channel-list-ui__header,
|
|
96
|
-
.sendbird-open-channel-list-ui .sendbird-open-channel-list-ui__header {
|
|
97
|
-
position: relative;
|
|
98
|
-
display: inline-flex;
|
|
99
|
-
flex-direction: row;
|
|
100
|
-
align-items: center;
|
|
101
|
-
width: 100%;
|
|
102
|
-
height: 64px;
|
|
103
|
-
box-sizing: border-box;
|
|
104
|
-
}
|
|
105
|
-
.sendbird-theme--light .sendbird-open-channel-list .sendbird-open-channel-list-ui__header,
|
|
106
|
-
.sendbird-theme--light .sendbird-open-channel-list-ui .sendbird-open-channel-list-ui__header {
|
|
107
|
-
background-color: var(--sendbird-light-background-50);
|
|
108
|
-
border-bottom: solid 1px var(--sendbird-light-onlight-04);
|
|
109
|
-
}
|
|
110
|
-
.sendbird-theme--dark .sendbird-open-channel-list .sendbird-open-channel-list-ui__header,
|
|
111
|
-
.sendbird-theme--dark .sendbird-open-channel-list-ui .sendbird-open-channel-list-ui__header {
|
|
112
|
-
background-color: var(--sendbird-dark-background-600);
|
|
113
|
-
border-bottom: solid 1px var(--sendbird-dark-ondark-04);
|
|
114
|
-
}
|
|
115
|
-
.sendbird-open-channel-list .sendbird-open-channel-list-ui__header .sendbird-open-channel-list-ui__header__title,
|
|
116
|
-
.sendbird-open-channel-list-ui .sendbird-open-channel-list-ui__header .sendbird-open-channel-list-ui__header__title {
|
|
117
|
-
position: relative;
|
|
118
|
-
margin-left: 24px;
|
|
119
|
-
display: inline-flex;
|
|
120
|
-
align-items: center;
|
|
121
|
-
box-sizing: border-box;
|
|
122
|
-
}
|
|
123
|
-
.sendbird-open-channel-list .sendbird-open-channel-list-ui__header .sendbird-open-channel-list-ui__header__button-refresh,
|
|
124
|
-
.sendbird-open-channel-list-ui .sendbird-open-channel-list-ui__header .sendbird-open-channel-list-ui__header__button-refresh {
|
|
125
|
-
position: absolute;
|
|
126
|
-
top: 16px;
|
|
127
|
-
right: 56px;
|
|
128
|
-
display: inline-flex;
|
|
129
|
-
align-items: center;
|
|
130
|
-
justify-content: center;
|
|
131
|
-
box-sizing: border-box;
|
|
132
|
-
}
|
|
133
|
-
.sendbird-open-channel-list .sendbird-open-channel-list-ui__header .sendbird-open-channel-list-ui__header__button-create-channel,
|
|
134
|
-
.sendbird-open-channel-list-ui .sendbird-open-channel-list-ui__header .sendbird-open-channel-list-ui__header__button-create-channel {
|
|
135
|
-
position: absolute;
|
|
136
|
-
top: 16px;
|
|
137
|
-
right: 16px;
|
|
138
|
-
display: inline-flex;
|
|
139
|
-
align-items: center;
|
|
140
|
-
justify-content: center;
|
|
141
|
-
box-sizing: border-box;
|
|
142
|
-
}
|
|
143
|
-
.sendbird-open-channel-list .sendbird-open-channel-list-ui__channel-list,
|
|
144
|
-
.sendbird-open-channel-list-ui .sendbird-open-channel-list-ui__channel-list {
|
|
145
|
-
position: relative;
|
|
146
|
-
display: inline-flex;
|
|
147
|
-
flex-direction: column;
|
|
148
|
-
width: 100%;
|
|
149
|
-
height: calc(100% - 64px);
|
|
150
|
-
box-sizing: border-box;
|
|
151
|
-
overflow-y: scroll;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
.sendbird-open-channel-list-ui__channel-list--place-holder--loading {
|
|
155
|
-
position: relative;
|
|
156
|
-
min-height: 62px;
|
|
157
|
-
display: inline-flex;
|
|
158
|
-
align-items: center;
|
|
159
|
-
justify-content: center;
|
|
160
|
-
}
|
|
161
|
-
.sendbird-theme--light .sendbird-open-channel-list-ui__channel-list--place-holder--loading {
|
|
162
|
-
background-color: var(--sendbird-light-background-100);
|
|
163
|
-
}
|
|
164
|
-
.sendbird-theme--dark .sendbird-open-channel-list-ui__channel-list--place-holder--loading {
|
|
165
|
-
background-color: var(--sendbird-dark-background-500);
|
|
166
|
-
}
|
|
167
|
-
.sendbird-create-open-channel-ui {
|
|
168
|
-
position: relative;
|
|
169
|
-
display: inline-flex;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
.sendbird-create-open-channel-ui__profile-input {
|
|
173
|
-
position: relative;
|
|
174
|
-
display: inline-flex;
|
|
175
|
-
flex-direction: column;
|
|
176
|
-
justify-content: flex-start;
|
|
177
|
-
width: 100%;
|
|
178
|
-
height: 100%;
|
|
179
|
-
box-sizing: border-box;
|
|
180
|
-
}
|
|
181
|
-
.sendbird-create-open-channel-ui__profile-input .sendbird-create-open-channel-ui__profile-input__img-section {
|
|
182
|
-
position: relative;
|
|
183
|
-
margin-top: 16px;
|
|
184
|
-
display: inline-flex;
|
|
185
|
-
flex-direction: row;
|
|
186
|
-
align-items: center;
|
|
187
|
-
}
|
|
188
|
-
.sendbird-create-open-channel-ui__profile-input .sendbird-create-open-channel-ui__profile-input__img-section .sendbird-create-open-channel-ui__profile-input__img-section__avatar {
|
|
189
|
-
position: relative;
|
|
190
|
-
display: inline-flex;
|
|
191
|
-
align-items: center;
|
|
192
|
-
justify-content: center;
|
|
193
|
-
width: 80px;
|
|
194
|
-
height: 80px;
|
|
195
|
-
}
|
|
196
|
-
.sendbird-create-open-channel-ui__profile-input .sendbird-create-open-channel-ui__profile-input__img-section .sendbird-create-open-channel-ui__profile-input__img-section__avatar--default {
|
|
197
|
-
position: relative;
|
|
198
|
-
display: inline-flex;
|
|
199
|
-
align-items: center;
|
|
200
|
-
justify-content: center;
|
|
201
|
-
width: 80px;
|
|
202
|
-
height: 80px;
|
|
203
|
-
border-radius: 50%;
|
|
204
|
-
}
|
|
205
|
-
.sendbird-theme--light .sendbird-create-open-channel-ui__profile-input .sendbird-create-open-channel-ui__profile-input__img-section .sendbird-create-open-channel-ui__profile-input__img-section__avatar--default {
|
|
206
|
-
background-color: var(--sendbird-light-background-200);
|
|
207
|
-
}
|
|
208
|
-
.sendbird-theme--dark .sendbird-create-open-channel-ui__profile-input .sendbird-create-open-channel-ui__profile-input__img-section .sendbird-create-open-channel-ui__profile-input__img-section__avatar--default {
|
|
209
|
-
background-color: var(--sendbird-dark-background-400);
|
|
210
|
-
}
|
|
211
|
-
.sendbird-create-open-channel-ui__profile-input .sendbird-create-open-channel-ui__profile-input__img-section .sendbird-create-open-channel-ui__profile-input__img-section__button {
|
|
212
|
-
position: relative;
|
|
213
|
-
margin-left: 18px;
|
|
214
|
-
display: inline-flex;
|
|
215
|
-
}
|
|
216
|
-
.sendbird-create-open-channel-ui__profile-input .sendbird-create-open-channel-ui__profile-input__name-section {
|
|
217
|
-
position: relative;
|
|
218
|
-
margin-top: 8px;
|
|
219
|
-
display: inline-flex;
|
|
220
|
-
flex-direction: row;
|
|
221
|
-
}
|
|
222
73
|
.sendbird-open-channel-preview {
|
|
223
74
|
position: relative;
|
|
224
75
|
display: inline-flex;
|
|
@@ -346,105 +197,254 @@
|
|
|
346
197
|
.sendbird--mobile-mode .sendbird-open-channel-preview .sendbird-open-channel-preview__context .sendbird-open-channel-preview__context__participants .sendbird-open-channel-preview__context__participants__count {
|
|
347
198
|
overflow-y: hidden;
|
|
348
199
|
}
|
|
349
|
-
|
|
350
|
-
:
|
|
351
|
-
|
|
352
|
-
--sendbird-light-primary-400: #6211c8;
|
|
353
|
-
--sendbird-light-primary-300: #742ddd;
|
|
354
|
-
--sendbird-light-primary-200: #c2a9fa;
|
|
355
|
-
--sendbird-light-primary-100: #dbd1ff;
|
|
356
|
-
--sendbird-light-secondary-500: #066858;
|
|
357
|
-
--sendbird-light-secondary-400: #027d69;
|
|
358
|
-
--sendbird-light-secondary-300: #259c72;
|
|
359
|
-
--sendbird-light-secondary-200: #69c085;
|
|
360
|
-
--sendbird-light-secondary-100: #a8e2ab;
|
|
361
|
-
--sendbird-light-information-100: #adc9ff;
|
|
362
|
-
--sendbird-highlight-100: #fff2b6;
|
|
363
|
-
--sendbird-light-error-500: #9d091e;
|
|
364
|
-
--sendbird-light-error-400: #bf0711;
|
|
365
|
-
--sendbird-light-error-300: #de360b;
|
|
366
|
-
--sendbird-light-error-200: #f66161;
|
|
367
|
-
--sendbird-light-error-100: #fdaaaa;
|
|
368
|
-
--sendbird-light-background-700: #000000;
|
|
369
|
-
--sendbird-light-background-600: #161616;
|
|
370
|
-
--sendbird-light-background-500: #2C2C2C;
|
|
371
|
-
--sendbird-light-background-400: #393939;
|
|
372
|
-
--sendbird-light-background-300: #bdbdbd;
|
|
373
|
-
--sendbird-light-background-200: #e0e0e0;
|
|
374
|
-
--sendbird-light-background-100: #eeeeee;
|
|
375
|
-
--sendbird-light-background-50: #FFFFFF;
|
|
376
|
-
--sendbird-light-overlay-01: rgba(0, 0, 0, 0.55);
|
|
377
|
-
--sendbird-light-overlay-02: rgba(0, 0, 0, 0.32);
|
|
378
|
-
--sendbird-light-onlight-01: rgba(0, 0, 0, 0.88);
|
|
379
|
-
--sendbird-light-onlight-02: rgba(0, 0, 0, 0.50);
|
|
380
|
-
--sendbird-light-onlight-03: rgba(0, 0, 0, 0.38);
|
|
381
|
-
--sendbird-light-onlight-04: rgba(0, 0, 0, 0.12);
|
|
382
|
-
--sendbird-light-ondark-01: rgba(255, 255, 255, 0.88);
|
|
383
|
-
--sendbird-light-ondark-02: rgba(255, 255, 255, 0.50);
|
|
384
|
-
--sendbird-light-ondark-03: rgba(255, 255, 255, 0.38);
|
|
385
|
-
--sendbird-light-ondark-04: rgba(255, 255, 255, 0.12);
|
|
386
|
-
--sendbird-light-shadow-01: 0 1px 5px 0 rgba(33, 34, 66, 0.04), 0 0 3px 0 rgba(0, 0, 0, 0.08), 0 2px 1px 0 rgba(0, 0, 0, 0.12);
|
|
387
|
-
--sendbird-light-shadow-02: 0 3px 5px -3px rgba(33, 34, 66, 0.04), 0 3px 14px 2px rgba(0, 0, 0, 0.08), 0 8px 10px 1px rgba(0, 0, 0, 0.12);
|
|
388
|
-
--sendbird-light-shadow-03: 0 6px 10px -5px rgba(0, 0, 0, 0.04), 0 6px 30px 5px rgba(0, 0, 0, 0.08), 0 16px 24px 2px rgba(0, 0, 0, 0.12);
|
|
389
|
-
--sendbird-light-shadow-04: 0 9px 15px -7px rgba(0, 0, 0, 0.04), 0 9px 46px 8px rgba(0, 0, 0, 0.08), 0 24px 38px 3px rgba(0, 0, 0, 0.12);
|
|
390
|
-
--sendbird-light-shadow-05: 0 2px 8px 0 rgba(0, 0, 0, 0.08), 0 4px 6px 0 rgba(0, 0, 0, 0.12);
|
|
391
|
-
--sendbird-light-shadow-message-input: 0 1px 5px 0 rgba(33, 34, 66, 0.12), 0 0 1px 0 rgba(33, 34, 66, 0.16), 0 2px 1px 0 rgba(33, 34, 66, 0.08), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
200
|
+
.sendbird-create-open-channel-ui {
|
|
201
|
+
position: relative;
|
|
202
|
+
display: inline-flex;
|
|
392
203
|
}
|
|
393
204
|
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
--sendbird-dark-secondary-300: #259c72;
|
|
403
|
-
--sendbird-dark-secondary-200: #69c085;
|
|
404
|
-
--sendbird-dark-secondary-100: #a8e2ab;
|
|
405
|
-
--sendbird-dark-information-100: #adc9ff;
|
|
406
|
-
--sendbird-highlight-100: #fff2b6;
|
|
407
|
-
--sendbird-dark-error-500: #9d091e;
|
|
408
|
-
--sendbird-dark-error-400: #bf0711;
|
|
409
|
-
--sendbird-dark-error-300: #de360b;
|
|
410
|
-
--sendbird-dark-error-200: #f66161;
|
|
411
|
-
--sendbird-dark-error-100: #fdaaaa;
|
|
412
|
-
--sendbird-dark-background-700: #000000;
|
|
413
|
-
--sendbird-dark-background-600: #161616;
|
|
414
|
-
--sendbird-dark-background-500: #2C2C2C;
|
|
415
|
-
--sendbird-dark-background-400: #393939;
|
|
416
|
-
--sendbird-dark-background-300: #bdbdbd;
|
|
417
|
-
--sendbird-dark-background-200: #e0e0e0;
|
|
418
|
-
--sendbird-dark-background-100: #eeeeee;
|
|
419
|
-
--sendbird-dark-background-50: #FFFFFF;
|
|
420
|
-
--sendbird-dark-overlay-01: rgba(0, 0, 0, 0.55);
|
|
421
|
-
--sendbird-dark-overlay-02: rgba(0, 0, 0, 0.32);
|
|
422
|
-
--sendbird-dark-onlight-01: rgba(0, 0, 0, 0.88);
|
|
423
|
-
--sendbird-dark-onlight-02: rgba(0, 0, 0, 0.50);
|
|
424
|
-
--sendbird-dark-onlight-03: rgba(0, 0, 0, 0.38);
|
|
425
|
-
--sendbird-dark-onlight-04: rgba(0, 0, 0, 0.12);
|
|
426
|
-
--sendbird-dark-ondark-01: rgba(255, 255, 255, 0.88);
|
|
427
|
-
--sendbird-dark-ondark-02: rgba(255, 255, 255, 0.50);
|
|
428
|
-
--sendbird-dark-ondark-03: rgba(255, 255, 255, 0.38);
|
|
429
|
-
--sendbird-dark-ondark-04: rgba(255, 255, 255, 0.12);
|
|
430
|
-
--sendbird-dark-shadow-01: 0 1px 5px 0 rgba(33, 34, 66, 0.04), 0 0 3px 0 rgba(0, 0, 0, 0.08), 0 2px 1px 0 rgba(0, 0, 0, 0.12);
|
|
431
|
-
--sendbird-dark-shadow-02: 0 3px 5px -3px rgba(33, 34, 66, 0.04), 0 3px 14px 2px rgba(0, 0, 0, 0.08), 0 8px 10px 1px rgba(0, 0, 0, 0.12);
|
|
432
|
-
--sendbird-dark-shadow-03: 0 6px 10px -5px rgba(0, 0, 0, 0.04), 0 6px 30px 5px rgba(0, 0, 0, 0.08), 0 16px 24px 2px rgba(0, 0, 0, 0.12);
|
|
433
|
-
--sendbird-dark-shadow-04: 0 9px 15px -7px rgba(0, 0, 0, 0.04), 0 9px 46px 8px rgba(0, 0, 0, 0.08), 0 24px 38px 3px rgba(0, 0, 0, 0.12);
|
|
434
|
-
--sendbird-light-shadow-05: 0 2px 8px 0 rgba(0, 0, 0, 0.08), 0 4px 6px 0 rgba(0, 0, 0, 0.12);
|
|
435
|
-
--sendbird-dark-shadow-message-input: 0 1px 5px 0 rgba(33, 34, 66, 0.12), 0 0 1px 0 rgba(33, 34, 66, 0.16), 0 2px 1px 0 rgba(33, 34, 66, 0.08), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
205
|
+
.sendbird-create-open-channel-ui__profile-input {
|
|
206
|
+
position: relative;
|
|
207
|
+
display: inline-flex;
|
|
208
|
+
flex-direction: column;
|
|
209
|
+
justify-content: flex-start;
|
|
210
|
+
width: 100%;
|
|
211
|
+
height: 100%;
|
|
212
|
+
box-sizing: border-box;
|
|
436
213
|
}
|
|
437
|
-
|
|
438
|
-
:
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
214
|
+
.sendbird-create-open-channel-ui__profile-input .sendbird-create-open-channel-ui__profile-input__img-section {
|
|
215
|
+
position: relative;
|
|
216
|
+
margin-top: 16px;
|
|
217
|
+
display: inline-flex;
|
|
218
|
+
flex-direction: row;
|
|
219
|
+
align-items: center;
|
|
220
|
+
}
|
|
221
|
+
.sendbird-create-open-channel-ui__profile-input .sendbird-create-open-channel-ui__profile-input__img-section .sendbird-create-open-channel-ui__profile-input__img-section__avatar {
|
|
222
|
+
position: relative;
|
|
223
|
+
display: inline-flex;
|
|
224
|
+
align-items: center;
|
|
225
|
+
justify-content: center;
|
|
226
|
+
width: 80px;
|
|
227
|
+
height: 80px;
|
|
228
|
+
}
|
|
229
|
+
.sendbird-create-open-channel-ui__profile-input .sendbird-create-open-channel-ui__profile-input__img-section .sendbird-create-open-channel-ui__profile-input__img-section__avatar--default {
|
|
230
|
+
position: relative;
|
|
231
|
+
display: inline-flex;
|
|
232
|
+
align-items: center;
|
|
233
|
+
justify-content: center;
|
|
234
|
+
width: 80px;
|
|
235
|
+
height: 80px;
|
|
236
|
+
border-radius: 50%;
|
|
237
|
+
}
|
|
238
|
+
.sendbird-theme--light .sendbird-create-open-channel-ui__profile-input .sendbird-create-open-channel-ui__profile-input__img-section .sendbird-create-open-channel-ui__profile-input__img-section__avatar--default {
|
|
239
|
+
background-color: var(--sendbird-light-background-200);
|
|
240
|
+
}
|
|
241
|
+
.sendbird-theme--dark .sendbird-create-open-channel-ui__profile-input .sendbird-create-open-channel-ui__profile-input__img-section .sendbird-create-open-channel-ui__profile-input__img-section__avatar--default {
|
|
242
|
+
background-color: var(--sendbird-dark-background-400);
|
|
243
|
+
}
|
|
244
|
+
.sendbird-create-open-channel-ui__profile-input .sendbird-create-open-channel-ui__profile-input__img-section .sendbird-create-open-channel-ui__profile-input__img-section__button {
|
|
245
|
+
position: relative;
|
|
246
|
+
margin-left: 18px;
|
|
247
|
+
display: inline-flex;
|
|
248
|
+
}
|
|
249
|
+
.sendbird-create-open-channel-ui__profile-input .sendbird-create-open-channel-ui__profile-input__name-section {
|
|
250
|
+
position: relative;
|
|
251
|
+
margin-top: 8px;
|
|
252
|
+
display: inline-flex;
|
|
253
|
+
flex-direction: row;
|
|
254
|
+
}
|
|
255
|
+
.sendbird-open-channel-list,
|
|
256
|
+
.sendbird-open-channel-list-ui {
|
|
257
|
+
position: relative;
|
|
258
|
+
display: inline-flex;
|
|
259
|
+
flex-direction: column;
|
|
260
|
+
width: 256px;
|
|
261
|
+
min-width: 256px;
|
|
262
|
+
height: 100%;
|
|
263
|
+
box-sizing: border-box;
|
|
264
|
+
}
|
|
265
|
+
.sendbird--mobile-mode .sendbird-open-channel-list,
|
|
266
|
+
.sendbird--mobile-mode .sendbird-open-channel-list-ui {
|
|
267
|
+
width: 100%;
|
|
268
|
+
}
|
|
269
|
+
.sendbird-theme--light .sendbird-open-channel-list,
|
|
270
|
+
.sendbird-theme--light .sendbird-open-channel-list-ui {
|
|
271
|
+
border-right: solid 1px var(--sendbird-light-onlight-04);
|
|
272
|
+
}
|
|
273
|
+
.sendbird-theme--dark .sendbird-open-channel-list,
|
|
274
|
+
.sendbird-theme--dark .sendbird-open-channel-list-ui {
|
|
275
|
+
border-right: solid 1px var(--sendbird-dark-ondark-04);
|
|
276
|
+
}
|
|
277
|
+
.sendbird-open-channel-list .sendbird-open-channel-list-ui__header,
|
|
278
|
+
.sendbird-open-channel-list-ui .sendbird-open-channel-list-ui__header {
|
|
279
|
+
position: relative;
|
|
280
|
+
display: inline-flex;
|
|
281
|
+
flex-direction: row;
|
|
282
|
+
align-items: center;
|
|
283
|
+
width: 100%;
|
|
284
|
+
height: 64px;
|
|
285
|
+
box-sizing: border-box;
|
|
286
|
+
}
|
|
287
|
+
.sendbird-theme--light .sendbird-open-channel-list .sendbird-open-channel-list-ui__header,
|
|
288
|
+
.sendbird-theme--light .sendbird-open-channel-list-ui .sendbird-open-channel-list-ui__header {
|
|
289
|
+
background-color: var(--sendbird-light-background-50);
|
|
290
|
+
border-bottom: solid 1px var(--sendbird-light-onlight-04);
|
|
291
|
+
}
|
|
292
|
+
.sendbird-theme--dark .sendbird-open-channel-list .sendbird-open-channel-list-ui__header,
|
|
293
|
+
.sendbird-theme--dark .sendbird-open-channel-list-ui .sendbird-open-channel-list-ui__header {
|
|
294
|
+
background-color: var(--sendbird-dark-background-600);
|
|
295
|
+
border-bottom: solid 1px var(--sendbird-dark-ondark-04);
|
|
296
|
+
}
|
|
297
|
+
.sendbird-open-channel-list .sendbird-open-channel-list-ui__header .sendbird-open-channel-list-ui__header__title,
|
|
298
|
+
.sendbird-open-channel-list-ui .sendbird-open-channel-list-ui__header .sendbird-open-channel-list-ui__header__title {
|
|
299
|
+
position: relative;
|
|
300
|
+
margin-left: 24px;
|
|
301
|
+
display: inline-flex;
|
|
302
|
+
align-items: center;
|
|
303
|
+
box-sizing: border-box;
|
|
304
|
+
}
|
|
305
|
+
.sendbird-open-channel-list .sendbird-open-channel-list-ui__header .sendbird-open-channel-list-ui__header__button-refresh,
|
|
306
|
+
.sendbird-open-channel-list-ui .sendbird-open-channel-list-ui__header .sendbird-open-channel-list-ui__header__button-refresh {
|
|
307
|
+
position: absolute;
|
|
308
|
+
top: 16px;
|
|
309
|
+
right: 56px;
|
|
310
|
+
display: inline-flex;
|
|
311
|
+
align-items: center;
|
|
312
|
+
justify-content: center;
|
|
313
|
+
box-sizing: border-box;
|
|
314
|
+
}
|
|
315
|
+
.sendbird-open-channel-list .sendbird-open-channel-list-ui__header .sendbird-open-channel-list-ui__header__button-create-channel,
|
|
316
|
+
.sendbird-open-channel-list-ui .sendbird-open-channel-list-ui__header .sendbird-open-channel-list-ui__header__button-create-channel {
|
|
317
|
+
position: absolute;
|
|
318
|
+
top: 16px;
|
|
319
|
+
right: 16px;
|
|
320
|
+
display: inline-flex;
|
|
321
|
+
align-items: center;
|
|
322
|
+
justify-content: center;
|
|
323
|
+
box-sizing: border-box;
|
|
324
|
+
}
|
|
325
|
+
.sendbird-open-channel-list .sendbird-open-channel-list-ui__channel-list,
|
|
326
|
+
.sendbird-open-channel-list-ui .sendbird-open-channel-list-ui__channel-list {
|
|
327
|
+
position: relative;
|
|
328
|
+
display: inline-flex;
|
|
329
|
+
flex-direction: column;
|
|
330
|
+
width: 100%;
|
|
331
|
+
height: calc(100% - 64px);
|
|
332
|
+
box-sizing: border-box;
|
|
333
|
+
overflow-y: scroll;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.sendbird-open-channel-list-ui__channel-list--place-holder--loading {
|
|
337
|
+
position: relative;
|
|
338
|
+
min-height: 62px;
|
|
339
|
+
display: inline-flex;
|
|
340
|
+
align-items: center;
|
|
341
|
+
justify-content: center;
|
|
342
|
+
}
|
|
343
|
+
.sendbird-theme--light .sendbird-open-channel-list-ui__channel-list--place-holder--loading {
|
|
344
|
+
background-color: var(--sendbird-light-background-100);
|
|
345
|
+
}
|
|
346
|
+
.sendbird-theme--dark .sendbird-open-channel-list-ui__channel-list--place-holder--loading {
|
|
347
|
+
background-color: var(--sendbird-dark-background-500);
|
|
348
|
+
}
|
|
349
|
+
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap");
|
|
350
|
+
:root {
|
|
351
|
+
--sendbird-light-primary-500: #491389;
|
|
352
|
+
--sendbird-light-primary-400: #6211c8;
|
|
353
|
+
--sendbird-light-primary-300: #742ddd;
|
|
354
|
+
--sendbird-light-primary-200: #c2a9fa;
|
|
355
|
+
--sendbird-light-primary-100: #dbd1ff;
|
|
356
|
+
--sendbird-light-secondary-500: #066858;
|
|
357
|
+
--sendbird-light-secondary-400: #027d69;
|
|
358
|
+
--sendbird-light-secondary-300: #259c72;
|
|
359
|
+
--sendbird-light-secondary-200: #69c085;
|
|
360
|
+
--sendbird-light-secondary-100: #a8e2ab;
|
|
361
|
+
--sendbird-light-information-100: #adc9ff;
|
|
362
|
+
--sendbird-highlight-100: #fff2b6;
|
|
363
|
+
--sendbird-light-error-500: #9d091e;
|
|
364
|
+
--sendbird-light-error-400: #bf0711;
|
|
365
|
+
--sendbird-light-error-300: #de360b;
|
|
366
|
+
--sendbird-light-error-200: #f66161;
|
|
367
|
+
--sendbird-light-error-100: #fdaaaa;
|
|
368
|
+
--sendbird-light-background-700: #000000;
|
|
369
|
+
--sendbird-light-background-600: #161616;
|
|
370
|
+
--sendbird-light-background-500: #2C2C2C;
|
|
371
|
+
--sendbird-light-background-400: #393939;
|
|
372
|
+
--sendbird-light-background-300: #bdbdbd;
|
|
373
|
+
--sendbird-light-background-200: #e0e0e0;
|
|
374
|
+
--sendbird-light-background-100: #eeeeee;
|
|
375
|
+
--sendbird-light-background-50: #FFFFFF;
|
|
376
|
+
--sendbird-light-overlay-01: rgba(0, 0, 0, 0.55);
|
|
377
|
+
--sendbird-light-overlay-02: rgba(0, 0, 0, 0.32);
|
|
378
|
+
--sendbird-light-onlight-01: rgba(0, 0, 0, 0.88);
|
|
379
|
+
--sendbird-light-onlight-02: rgba(0, 0, 0, 0.50);
|
|
380
|
+
--sendbird-light-onlight-03: rgba(0, 0, 0, 0.38);
|
|
381
|
+
--sendbird-light-onlight-04: rgba(0, 0, 0, 0.12);
|
|
382
|
+
--sendbird-light-ondark-01: rgba(255, 255, 255, 0.88);
|
|
383
|
+
--sendbird-light-ondark-02: rgba(255, 255, 255, 0.50);
|
|
384
|
+
--sendbird-light-ondark-03: rgba(255, 255, 255, 0.38);
|
|
385
|
+
--sendbird-light-ondark-04: rgba(255, 255, 255, 0.12);
|
|
386
|
+
--sendbird-light-shadow-01: 0 1px 5px 0 rgba(33, 34, 66, 0.04), 0 0 3px 0 rgba(0, 0, 0, 0.08), 0 2px 1px 0 rgba(0, 0, 0, 0.12);
|
|
387
|
+
--sendbird-light-shadow-02: 0 3px 5px -3px rgba(33, 34, 66, 0.04), 0 3px 14px 2px rgba(0, 0, 0, 0.08), 0 8px 10px 1px rgba(0, 0, 0, 0.12);
|
|
388
|
+
--sendbird-light-shadow-03: 0 6px 10px -5px rgba(0, 0, 0, 0.04), 0 6px 30px 5px rgba(0, 0, 0, 0.08), 0 16px 24px 2px rgba(0, 0, 0, 0.12);
|
|
389
|
+
--sendbird-light-shadow-04: 0 9px 15px -7px rgba(0, 0, 0, 0.04), 0 9px 46px 8px rgba(0, 0, 0, 0.08), 0 24px 38px 3px rgba(0, 0, 0, 0.12);
|
|
390
|
+
--sendbird-light-shadow-05: 0 2px 8px 0 rgba(0, 0, 0, 0.08), 0 4px 6px 0 rgba(0, 0, 0, 0.12);
|
|
391
|
+
--sendbird-light-shadow-message-input: 0 1px 5px 0 rgba(33, 34, 66, 0.12), 0 0 1px 0 rgba(33, 34, 66, 0.16), 0 2px 1px 0 rgba(33, 34, 66, 0.08), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
:root {
|
|
395
|
+
--sendbird-dark-primary-500: #491389;
|
|
396
|
+
--sendbird-dark-primary-400: #6211c8;
|
|
397
|
+
--sendbird-dark-primary-300: #742ddd;
|
|
398
|
+
--sendbird-dark-primary-200: #c2a9fa;
|
|
399
|
+
--sendbird-dark-primary-100: #dbd1ff;
|
|
400
|
+
--sendbird-dark-secondary-500: #066858;
|
|
401
|
+
--sendbird-dark-secondary-400: #027d69;
|
|
402
|
+
--sendbird-dark-secondary-300: #259c72;
|
|
403
|
+
--sendbird-dark-secondary-200: #69c085;
|
|
404
|
+
--sendbird-dark-secondary-100: #a8e2ab;
|
|
405
|
+
--sendbird-dark-information-100: #adc9ff;
|
|
406
|
+
--sendbird-highlight-100: #fff2b6;
|
|
407
|
+
--sendbird-dark-error-500: #9d091e;
|
|
408
|
+
--sendbird-dark-error-400: #bf0711;
|
|
409
|
+
--sendbird-dark-error-300: #de360b;
|
|
410
|
+
--sendbird-dark-error-200: #f66161;
|
|
411
|
+
--sendbird-dark-error-100: #fdaaaa;
|
|
412
|
+
--sendbird-dark-background-700: #000000;
|
|
413
|
+
--sendbird-dark-background-600: #161616;
|
|
414
|
+
--sendbird-dark-background-500: #2C2C2C;
|
|
415
|
+
--sendbird-dark-background-400: #393939;
|
|
416
|
+
--sendbird-dark-background-300: #bdbdbd;
|
|
417
|
+
--sendbird-dark-background-200: #e0e0e0;
|
|
418
|
+
--sendbird-dark-background-100: #eeeeee;
|
|
419
|
+
--sendbird-dark-background-50: #FFFFFF;
|
|
420
|
+
--sendbird-dark-overlay-01: rgba(0, 0, 0, 0.55);
|
|
421
|
+
--sendbird-dark-overlay-02: rgba(0, 0, 0, 0.32);
|
|
422
|
+
--sendbird-dark-onlight-01: rgba(0, 0, 0, 0.88);
|
|
423
|
+
--sendbird-dark-onlight-02: rgba(0, 0, 0, 0.50);
|
|
424
|
+
--sendbird-dark-onlight-03: rgba(0, 0, 0, 0.38);
|
|
425
|
+
--sendbird-dark-onlight-04: rgba(0, 0, 0, 0.12);
|
|
426
|
+
--sendbird-dark-ondark-01: rgba(255, 255, 255, 0.88);
|
|
427
|
+
--sendbird-dark-ondark-02: rgba(255, 255, 255, 0.50);
|
|
428
|
+
--sendbird-dark-ondark-03: rgba(255, 255, 255, 0.38);
|
|
429
|
+
--sendbird-dark-ondark-04: rgba(255, 255, 255, 0.12);
|
|
430
|
+
--sendbird-dark-shadow-01: 0 1px 5px 0 rgba(33, 34, 66, 0.04), 0 0 3px 0 rgba(0, 0, 0, 0.08), 0 2px 1px 0 rgba(0, 0, 0, 0.12);
|
|
431
|
+
--sendbird-dark-shadow-02: 0 3px 5px -3px rgba(33, 34, 66, 0.04), 0 3px 14px 2px rgba(0, 0, 0, 0.08), 0 8px 10px 1px rgba(0, 0, 0, 0.12);
|
|
432
|
+
--sendbird-dark-shadow-03: 0 6px 10px -5px rgba(0, 0, 0, 0.04), 0 6px 30px 5px rgba(0, 0, 0, 0.08), 0 16px 24px 2px rgba(0, 0, 0, 0.12);
|
|
433
|
+
--sendbird-dark-shadow-04: 0 9px 15px -7px rgba(0, 0, 0, 0.04), 0 9px 46px 8px rgba(0, 0, 0, 0.08), 0 24px 38px 3px rgba(0, 0, 0, 0.12);
|
|
434
|
+
--sendbird-light-shadow-05: 0 2px 8px 0 rgba(0, 0, 0, 0.08), 0 4px 6px 0 rgba(0, 0, 0, 0.12);
|
|
435
|
+
--sendbird-dark-shadow-message-input: 0 1px 5px 0 rgba(33, 34, 66, 0.12), 0 0 1px 0 rgba(33, 34, 66, 0.16), 0 2px 1px 0 rgba(33, 34, 66, 0.08), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
:root {
|
|
439
|
+
--sendbird-iconbutton-color: #825eeb;
|
|
440
|
+
--sendbird-message-input-border-active: #7B53EF;
|
|
441
|
+
--sendbird-selected-reaction-button-border-hover: #9E8CF5;
|
|
442
|
+
--sendbird-add-reaction-button-border-hover: #9E8CF5;
|
|
443
|
+
--sendbird-tooltip-background: #000000;
|
|
444
|
+
--sendbird-tooltip-text-color: rgba(255, 255, 255, 0.88);
|
|
445
|
+
--sendbird-button-border-focus: #FFFFFF;
|
|
446
|
+
--sendbird-file-message-icon-background: #FFFFFF;
|
|
447
|
+
--sendbird-font-family-default: "Roboto", sans-serif;
|
|
448
448
|
--sendbird-message-balloon-width: 404px;
|
|
449
449
|
}
|
|
450
450
|
.sendbird-experimental__rem__units .sendbird-label--h-1 {
|
|
@@ -1722,7 +1722,7 @@
|
|
|
1722
1722
|
margin-bottom: 8px;
|
|
1723
1723
|
}
|
|
1724
1724
|
.sendbird-context-menu {
|
|
1725
|
-
display:
|
|
1725
|
+
display: inline;
|
|
1726
1726
|
}
|
|
1727
1727
|
|
|
1728
1728
|
.sendbird__offline .sendbird-dropdown__menu .sendbird-dropdown__menu-item {
|
|
@@ -2890,7 +2890,6 @@
|
|
|
2890
2890
|
display: inline-flex;
|
|
2891
2891
|
flex-direction: row;
|
|
2892
2892
|
width: 100%;
|
|
2893
|
-
height: 100%;
|
|
2894
2893
|
}
|
|
2895
2894
|
.sendbird-message-content.incoming {
|
|
2896
2895
|
justify-content: flex-start;
|
|
@@ -3444,283 +3443,367 @@
|
|
|
3444
3443
|
display: flex;
|
|
3445
3444
|
text-align: center;
|
|
3446
3445
|
}
|
|
3447
|
-
.sendbird-
|
|
3446
|
+
.sendbird-quote-message {
|
|
3448
3447
|
position: relative;
|
|
3449
|
-
display: inline-
|
|
3450
|
-
box-sizing:
|
|
3451
|
-
|
|
3452
|
-
|
|
3453
|
-
|
|
3454
|
-
word-break: break-word;
|
|
3455
|
-
}
|
|
3456
|
-
.sendbird-text-message-item-body.reactions {
|
|
3457
|
-
border-radius: 16px 16px 0px 0px;
|
|
3448
|
+
display: inline-flex;
|
|
3449
|
+
box-sizing: border-box;
|
|
3450
|
+
flex-direction: column;
|
|
3451
|
+
width: 100%;
|
|
3452
|
+
max-width: 400px;
|
|
3458
3453
|
}
|
|
3459
|
-
.sendbird-
|
|
3460
|
-
|
|
3454
|
+
.sendbird-quote-message.incoming {
|
|
3455
|
+
align-items: flex-start;
|
|
3461
3456
|
}
|
|
3462
|
-
.sendbird-
|
|
3463
|
-
|
|
3457
|
+
.sendbird-quote-message.outgoing {
|
|
3458
|
+
align-items: flex-end;
|
|
3464
3459
|
}
|
|
3465
|
-
.sendbird-
|
|
3466
|
-
|
|
3460
|
+
.sendbird-quote-message .sendbird-quote-message__replied-to {
|
|
3461
|
+
position: relative;
|
|
3462
|
+
display: inline-flex;
|
|
3463
|
+
flex-direction: row;
|
|
3464
|
+
align-items: center;
|
|
3465
|
+
height: 16px;
|
|
3466
|
+
padding: 0px 12px;
|
|
3467
|
+
width: 100%;
|
|
3467
3468
|
}
|
|
3468
|
-
.sendbird-
|
|
3469
|
-
|
|
3469
|
+
.sendbird-quote-message .sendbird-quote-message__replied-to .sendbird-quote-message__replied-to__icon {
|
|
3470
|
+
position: relative;
|
|
3471
|
+
margin-bottom: 4px;
|
|
3472
|
+
margin-right: 4px;
|
|
3470
3473
|
}
|
|
3471
|
-
.sendbird-
|
|
3472
|
-
|
|
3474
|
+
.sendbird-quote-message .sendbird-quote-message__replied-to .sendbird-quote-message__replied-to__text {
|
|
3475
|
+
position: relative;
|
|
3476
|
+
max-width: 360px;
|
|
3477
|
+
overflow: hidden;
|
|
3478
|
+
overflow-x: hidden;
|
|
3479
|
+
white-space: nowrap;
|
|
3480
|
+
word-break: keep-all;
|
|
3481
|
+
text-overflow: ellipsis;
|
|
3482
|
+
font-size: 12px;
|
|
3483
|
+
display: inline-flex;
|
|
3484
|
+
flex-direction: row;
|
|
3485
|
+
align-items: center;
|
|
3473
3486
|
}
|
|
3474
|
-
.sendbird-
|
|
3475
|
-
|
|
3487
|
+
.sendbird-quote-message .sendbird-quote-message__replied-to .sendbird-quote-message__replied-to__text .sendbird-quote-message__replied-to__text__nickname {
|
|
3488
|
+
display: inline-block;
|
|
3489
|
+
max-width: 148px;
|
|
3490
|
+
overflow: hidden;
|
|
3491
|
+
text-overflow: ellipsis;
|
|
3476
3492
|
}
|
|
3477
|
-
.sendbird-
|
|
3478
|
-
|
|
3493
|
+
.sendbird-quote-message .sendbird-quote-message__replied-to .sendbird-quote-message__replied-to__text .sendbird-quote-message__replied-to__text__text {
|
|
3494
|
+
margin: 0px 4px;
|
|
3479
3495
|
}
|
|
3480
|
-
.sendbird-
|
|
3481
|
-
|
|
3496
|
+
.sendbird-quote-message .sendbird-quote-message__replied-message {
|
|
3497
|
+
position: relative;
|
|
3498
|
+
display: inline-flex;
|
|
3482
3499
|
}
|
|
3483
|
-
.sendbird-
|
|
3484
|
-
|
|
3485
|
-
|
|
3500
|
+
.sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__text-message {
|
|
3501
|
+
position: relative;
|
|
3502
|
+
white-space: pre-wrap;
|
|
3503
|
+
word-break: break-all;
|
|
3504
|
+
font-size: 12px;
|
|
3505
|
+
padding: 8px 12px 16px 12px;
|
|
3506
|
+
border-radius: 16px;
|
|
3507
|
+
opacity: 0.5;
|
|
3486
3508
|
}
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
margin: 0px;
|
|
3509
|
+
.sendbird-theme--light .sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__text-message {
|
|
3510
|
+
background-color: var(--sendbird-light-background-100);
|
|
3490
3511
|
}
|
|
3491
|
-
.sendbird-
|
|
3492
|
-
|
|
3512
|
+
.sendbird-theme--dark .sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__text-message {
|
|
3513
|
+
background-color: var(--sendbird-dark-background-500);
|
|
3493
3514
|
}
|
|
3494
|
-
.sendbird-
|
|
3495
|
-
|
|
3515
|
+
.sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__text-message .sendbird-quote-message__replied-message__text-message__word {
|
|
3516
|
+
position: relative;
|
|
3517
|
+
display: inline-flex;
|
|
3518
|
+
max-height: 30px;
|
|
3519
|
+
overflow: hidden;
|
|
3520
|
+
text-overflow: ellipsis;
|
|
3496
3521
|
}
|
|
3497
|
-
.sendbird-
|
|
3498
|
-
|
|
3522
|
+
.sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__thumbnail-message {
|
|
3523
|
+
position: relative;
|
|
3524
|
+
width: 144px;
|
|
3525
|
+
height: 108px;
|
|
3526
|
+
border-radius: 6.4px;
|
|
3527
|
+
overflow: hidden;
|
|
3499
3528
|
}
|
|
3500
|
-
.sendbird-theme--light .sendbird-
|
|
3501
|
-
background-color: var(--sendbird-
|
|
3529
|
+
.sendbird-theme--light .sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__thumbnail-message {
|
|
3530
|
+
background-color: var(--sendbird-light-background-100);
|
|
3502
3531
|
}
|
|
3503
|
-
.sendbird-theme--dark .sendbird-
|
|
3504
|
-
background-color: var(--sendbird-
|
|
3532
|
+
.sendbird-theme--dark .sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__thumbnail-message {
|
|
3533
|
+
background-color: var(--sendbird-dark-background-500);
|
|
3505
3534
|
}
|
|
3506
|
-
.sendbird-
|
|
3507
|
-
|
|
3535
|
+
.sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__thumbnail-message .sendbird-quote-message__replied-message__thumbnail-message__video,
|
|
3536
|
+
.sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__thumbnail-message .sendbird-quote-message__replied-message__thumbnail-message__image {
|
|
3537
|
+
position: absolute;
|
|
3538
|
+
top: 0px;
|
|
3539
|
+
display: inline-flex;
|
|
3540
|
+
width: 100%;
|
|
3541
|
+
height: 100%;
|
|
3542
|
+
opacity: 0.5;
|
|
3508
3543
|
}
|
|
3509
|
-
.sendbird-
|
|
3510
|
-
|
|
3544
|
+
.sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__thumbnail-message .sendbird-quote-message__replied-message__thumbnail-message__placeholder {
|
|
3545
|
+
position: absolute;
|
|
3546
|
+
display: inline-flex;
|
|
3547
|
+
width: 100%;
|
|
3548
|
+
height: 100%;
|
|
3549
|
+
justify-content: center;
|
|
3550
|
+
align-items: center;
|
|
3511
3551
|
}
|
|
3512
|
-
.sendbird-
|
|
3513
|
-
|
|
3552
|
+
.sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__thumbnail-message .sendbird-quote-message__replied-message__thumbnail-message__placeholder .sendbird-quote-message__replied-message__thumbnail-message__placeholder__icon {
|
|
3553
|
+
display: inline-flex;
|
|
3554
|
+
justify-content: center;
|
|
3555
|
+
align-items: center;
|
|
3556
|
+
width: 22px;
|
|
3557
|
+
height: 22px;
|
|
3558
|
+
border-radius: 50%;
|
|
3514
3559
|
}
|
|
3515
|
-
.sendbird-
|
|
3516
|
-
|
|
3517
|
-
|
|
3560
|
+
.sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__thumbnail-message .sendbird-quote-message__replied-message__thumbnail-message__cover {
|
|
3561
|
+
position: absolute;
|
|
3562
|
+
display: inline-flex;
|
|
3563
|
+
width: 100%;
|
|
3564
|
+
height: 100%;
|
|
3565
|
+
justify-content: center;
|
|
3566
|
+
align-items: center;
|
|
3567
|
+
top: 0px;
|
|
3518
3568
|
}
|
|
3519
|
-
.sendbird-
|
|
3520
|
-
|
|
3569
|
+
.sendbird-theme--light .sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__thumbnail-message .sendbird-quote-message__replied-message__thumbnail-message__cover {
|
|
3570
|
+
background-color: rgba(255, 255, 255, 0.4);
|
|
3521
3571
|
}
|
|
3522
|
-
.sendbird-
|
|
3523
|
-
|
|
3572
|
+
.sendbird-theme--dark .sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__thumbnail-message .sendbird-quote-message__replied-message__thumbnail-message__cover {
|
|
3573
|
+
background-color: rgba(255, 255, 255, 0.4);
|
|
3524
3574
|
}
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3575
|
+
.sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__thumbnail-message .sendbird-quote-message__replied-message__thumbnail-message__cover .sendbird-quote-message__replied-message__thumbnail-message__cover__icon {
|
|
3576
|
+
position: relative;
|
|
3577
|
+
display: inline-flex;
|
|
3578
|
+
justify-content: center;
|
|
3579
|
+
align-items: center;
|
|
3580
|
+
width: 22px;
|
|
3581
|
+
height: 22px;
|
|
3582
|
+
border-radius: 50%;
|
|
3528
3583
|
}
|
|
3529
|
-
.sendbird-theme--
|
|
3530
|
-
color:
|
|
3584
|
+
.sendbird-theme--light .sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__thumbnail-message .sendbird-quote-message__replied-message__thumbnail-message__cover .sendbird-quote-message__replied-message__thumbnail-message__cover__icon {
|
|
3585
|
+
background-color: rgb(255, 255, 255);
|
|
3531
3586
|
}
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
color: var(--sendbird-light-onlight-02);
|
|
3587
|
+
.sendbird-theme--dark .sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__thumbnail-message .sendbird-quote-message__replied-message__thumbnail-message__cover .sendbird-quote-message__replied-message__thumbnail-message__cover__icon {
|
|
3588
|
+
background-color: rgb(255, 255, 255);
|
|
3535
3589
|
}
|
|
3536
|
-
.sendbird-
|
|
3537
|
-
|
|
3590
|
+
.sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__file-message {
|
|
3591
|
+
position: relative;
|
|
3592
|
+
display: inline-flex;
|
|
3593
|
+
flex-direction: row;
|
|
3594
|
+
font-size: 12px;
|
|
3595
|
+
padding: 8px 12px 16px 12px;
|
|
3596
|
+
border-radius: 16px;
|
|
3597
|
+
opacity: 0.5;
|
|
3538
3598
|
}
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
color: var(--sendbird-light-onlight-03);
|
|
3599
|
+
.sendbird-theme--light .sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__file-message {
|
|
3600
|
+
background-color: var(--sendbird-light-background-100);
|
|
3542
3601
|
}
|
|
3543
|
-
.sendbird-theme--dark .sendbird-
|
|
3544
|
-
color: var(--sendbird-dark-
|
|
3602
|
+
.sendbird-theme--dark .sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__file-message {
|
|
3603
|
+
background-color: var(--sendbird-dark-background-500);
|
|
3545
3604
|
}
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
color: var(--sendbird-light-ondark-01);
|
|
3605
|
+
.sendbird-quote-message .sendbird-quote-message__replied-message .sendbird-quote-message__replied-message__file-message .sendbird-quote-message__replied-message__file-message__type-icon {
|
|
3606
|
+
margin-right: 2px;
|
|
3549
3607
|
}
|
|
3550
|
-
.sendbird-
|
|
3551
|
-
|
|
3608
|
+
.sendbird-quote-message:hover {
|
|
3609
|
+
cursor: pointer;
|
|
3552
3610
|
}
|
|
3553
3611
|
|
|
3554
|
-
.sendbird-
|
|
3555
|
-
|
|
3612
|
+
.sendbird-quote-message.unavailable:hover {
|
|
3613
|
+
cursor: default;
|
|
3556
3614
|
}
|
|
3557
|
-
|
|
3558
|
-
|
|
3615
|
+
|
|
3616
|
+
.sendbird-message-content.outgoing .sendbird-quote-message__replied-to {
|
|
3617
|
+
flex-direction: row-reverse;
|
|
3618
|
+
padding-right: 0px;
|
|
3559
3619
|
}
|
|
3560
3620
|
|
|
3561
|
-
.sendbird-
|
|
3562
|
-
|
|
3621
|
+
.sendbird-message-content.incoming .sendbird-quote-message__replied-to {
|
|
3622
|
+
padding-left: 0px;
|
|
3563
3623
|
}
|
|
3564
|
-
.sendbird-
|
|
3565
|
-
|
|
3624
|
+
.sendbird-message__mobile-context-menu {
|
|
3625
|
+
border-radius: 8px;
|
|
3626
|
+
width: 180px;
|
|
3566
3627
|
}
|
|
3567
3628
|
|
|
3568
|
-
.sendbird-
|
|
3569
|
-
|
|
3629
|
+
.sendbird-message__contextmenu--hyperlink {
|
|
3630
|
+
display: flex;
|
|
3631
|
+
justify-content: space-between;
|
|
3570
3632
|
}
|
|
3571
|
-
|
|
3572
|
-
|
|
3633
|
+
|
|
3634
|
+
.sendbird-message__bottomsheet--hyperlink {
|
|
3635
|
+
display: block;
|
|
3573
3636
|
}
|
|
3574
3637
|
|
|
3575
|
-
.sendbird-
|
|
3576
|
-
|
|
3638
|
+
.sendbird-message__bottomsheet--hyperlink,
|
|
3639
|
+
.sendbird-message__contextmenu--hyperlink {
|
|
3640
|
+
width: 100%;
|
|
3641
|
+
text-decoration: none;
|
|
3642
|
+
color: inherit;
|
|
3643
|
+
font-size: inherit;
|
|
3644
|
+
font-weight: inherit;
|
|
3645
|
+
font-stretch: normal;
|
|
3646
|
+
font-style: normal;
|
|
3647
|
+
line-height: inherit;
|
|
3648
|
+
letter-spacing: inherit;
|
|
3649
|
+
font-family: inherit;
|
|
3577
3650
|
}
|
|
3578
|
-
|
|
3579
|
-
|
|
3651
|
+
|
|
3652
|
+
.sendbird-message__mobile-context-menu-item .sendbird-dropdown__menu-item__text {
|
|
3653
|
+
display: flex;
|
|
3654
|
+
justify-content: space-between;
|
|
3580
3655
|
}
|
|
3581
|
-
.sendbird-
|
|
3582
|
-
|
|
3583
|
-
display: inline-block;
|
|
3584
|
-
box-sizing: border-box;
|
|
3585
|
-
padding: 8px 12px;
|
|
3586
|
-
align-items: center;
|
|
3587
|
-
border-radius: 16px;
|
|
3656
|
+
.sendbird-theme--light .sendbird-message__mobile-context-menu-item:not(:last-child) {
|
|
3657
|
+
border-bottom: 1px solid var(--sendbird-light-onlight-04);
|
|
3588
3658
|
}
|
|
3589
|
-
.sendbird-
|
|
3590
|
-
border-
|
|
3659
|
+
.sendbird-theme--dark .sendbird-message__mobile-context-menu-item:not(:last-child) {
|
|
3660
|
+
border-bottom: 1px solid var(--sendbird-dark-ondark-04);
|
|
3591
3661
|
}
|
|
3592
|
-
|
|
3593
|
-
|
|
3662
|
+
|
|
3663
|
+
.sendbird-message__bottomsheet {
|
|
3664
|
+
width: 100vw;
|
|
3665
|
+
border-top-left-radius: 8px;
|
|
3666
|
+
border-top-right-radius: 8px;
|
|
3667
|
+
padding-top: 16px;
|
|
3594
3668
|
}
|
|
3595
|
-
.sendbird-theme--
|
|
3596
|
-
background-color: var(--sendbird-
|
|
3669
|
+
.sendbird-theme--light .sendbird-message__bottomsheet {
|
|
3670
|
+
background-color: var(--sendbird-light-background-50);
|
|
3597
3671
|
}
|
|
3598
|
-
.sendbird-theme--
|
|
3599
|
-
background-color: var(--sendbird-
|
|
3672
|
+
.sendbird-theme--dark .sendbird-message__bottomsheet {
|
|
3673
|
+
background-color: var(--sendbird-dark-background-600);
|
|
3600
3674
|
}
|
|
3601
|
-
|
|
3602
|
-
|
|
3675
|
+
|
|
3676
|
+
.sendbird-message__bottomsheet-reaction-bar {
|
|
3677
|
+
padding-left: 0;
|
|
3678
|
+
display: flex;
|
|
3679
|
+
justify-content: center;
|
|
3680
|
+
margin-bottom: 0px;
|
|
3681
|
+
margin-top: 0;
|
|
3603
3682
|
}
|
|
3604
|
-
|
|
3605
|
-
|
|
3683
|
+
|
|
3684
|
+
.sendbird-message__bottomsheet-reaction-bar__row {
|
|
3685
|
+
display: inline-block;
|
|
3606
3686
|
}
|
|
3607
|
-
.sendbird-
|
|
3608
|
-
|
|
3687
|
+
.sendbird-message__bottomsheet-reaction-bar__row.sendbird-message__bottomsheet-reaction-bar__all {
|
|
3688
|
+
display: flex;
|
|
3689
|
+
flex-direction: row;
|
|
3690
|
+
flex-wrap: wrap;
|
|
3609
3691
|
}
|
|
3610
|
-
|
|
3611
|
-
|
|
3692
|
+
|
|
3693
|
+
.sendbird-message__bottomsheet--action {
|
|
3694
|
+
cursor: pointer;
|
|
3695
|
+
height: 48px;
|
|
3696
|
+
display: flex;
|
|
3697
|
+
align-items: center;
|
|
3698
|
+
padding-left: 16px;
|
|
3612
3699
|
}
|
|
3613
|
-
.sendbird-
|
|
3614
|
-
|
|
3700
|
+
.sendbird-message__bottomsheet--action .sendbird-icon {
|
|
3701
|
+
margin-right: 24px;
|
|
3615
3702
|
}
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3703
|
+
|
|
3704
|
+
.sendbird-message__bottomsheet--action-disabled {
|
|
3705
|
+
cursor: not-allowed;
|
|
3706
|
+
}
|
|
3707
|
+
.sendbird-theme--light .sendbird-message__bottomsheet--action-disabled {
|
|
3708
|
+
background-color: var(--sendbird-light-background-50);
|
|
3709
|
+
}
|
|
3710
|
+
.sendbird-theme--dark .sendbird-message__bottomsheet--action-disabled {
|
|
3711
|
+
background-color: var(--sendbird-dark-background-500);
|
|
3712
|
+
}
|
|
3713
|
+
.sendbird-ui-thread-replies {
|
|
3714
|
+
position: relative;
|
|
3715
|
+
width: -moz-fit-content;
|
|
3716
|
+
width: fit-content;
|
|
3717
|
+
height: 20px;
|
|
3718
|
+
min-height: 20px;
|
|
3621
3719
|
display: inline-flex;
|
|
3720
|
+
flex-direction: row;
|
|
3721
|
+
justify-content: flex-start;
|
|
3622
3722
|
align-items: center;
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3723
|
+
padding: 4px 10px;
|
|
3724
|
+
gap: 4px;
|
|
3725
|
+
border-radius: 16px;
|
|
3726
|
+
flex: none;
|
|
3727
|
+
order: 0;
|
|
3728
|
+
flex-grow: 0;
|
|
3626
3729
|
}
|
|
3627
|
-
.sendbird-theme--light .sendbird-
|
|
3730
|
+
.sendbird-theme--light .sendbird-ui-thread-replies {
|
|
3628
3731
|
background-color: var(--sendbird-light-background-50);
|
|
3629
3732
|
}
|
|
3630
|
-
.sendbird-theme--dark .sendbird-
|
|
3733
|
+
.sendbird-theme--dark .sendbird-ui-thread-replies {
|
|
3631
3734
|
background-color: var(--sendbird-dark-background-600);
|
|
3632
3735
|
}
|
|
3633
|
-
.sendbird-
|
|
3634
|
-
|
|
3635
|
-
top: -6px;
|
|
3636
|
-
}
|
|
3637
|
-
.sendbird-thumbnail-message-item-body {
|
|
3638
|
-
position: relative;
|
|
3639
|
-
display: block;
|
|
3640
|
-
box-sizing: border-box;
|
|
3641
|
-
overflow: hidden;
|
|
3642
|
-
width: 100%;
|
|
3643
|
-
min-width: 360px;
|
|
3644
|
-
max-width: 400px;
|
|
3645
|
-
height: 270px;
|
|
3646
|
-
border-radius: 16px;
|
|
3647
|
-
}
|
|
3648
|
-
.sendbird--mobile-mode .sendbird-thumbnail-message-item-body {
|
|
3649
|
-
min-width: 160px;
|
|
3650
|
-
}
|
|
3651
|
-
.sendbird-thumbnail-message-item-body.reactions {
|
|
3652
|
-
border-radius: 16px 16px 0px 0px;
|
|
3736
|
+
.sendbird-ui-thread-replies:hover {
|
|
3737
|
+
cursor: pointer;
|
|
3653
3738
|
}
|
|
3654
|
-
.sendbird-theme--light .sendbird-
|
|
3739
|
+
.sendbird-theme--light .sendbird-ui-thread-replies:hover {
|
|
3655
3740
|
background-color: var(--sendbird-light-background-100);
|
|
3656
3741
|
}
|
|
3657
|
-
.sendbird-theme--dark .sendbird-
|
|
3742
|
+
.sendbird-theme--dark .sendbird-ui-thread-replies:hover {
|
|
3658
3743
|
background-color: var(--sendbird-dark-background-500);
|
|
3659
3744
|
}
|
|
3660
|
-
|
|
3661
|
-
|
|
3662
|
-
|
|
3663
|
-
.sendbird-theme--dark .sendbird-thumbnail-message-item-body.mouse-hover, .sendbird-theme--dark .sendbird-thumbnail-message-item-body:hover {
|
|
3664
|
-
background-color: var(--sendbird-dark-background-400);
|
|
3665
|
-
}
|
|
3666
|
-
.sendbird-thumbnail-message-item-body .sendbird-thumbnail-message-item-body__thumbnail {
|
|
3667
|
-
position: absolute;
|
|
3668
|
-
border-radius: 16px;
|
|
3669
|
-
}
|
|
3670
|
-
.sendbird-thumbnail-message-item-body .sendbird-thumbnail-message-item-body__placeholder {
|
|
3671
|
-
position: absolute;
|
|
3745
|
+
|
|
3746
|
+
.sendbird-ui-thread-replies__user-profiles {
|
|
3747
|
+
position: relative;
|
|
3672
3748
|
width: 100%;
|
|
3673
|
-
height:
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3749
|
+
height: 100%;
|
|
3750
|
+
gap: 4px;
|
|
3751
|
+
display: inline-flex;
|
|
3752
|
+
flex-direction: row;
|
|
3677
3753
|
}
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3754
|
+
|
|
3755
|
+
.sendbird-ui-thread-replies__user-profiles__avatar {
|
|
3756
|
+
position: relative;
|
|
3757
|
+
width: 20px;
|
|
3758
|
+
height: 20px;
|
|
3759
|
+
display: inline-flex;
|
|
3681
3760
|
justify-content: center;
|
|
3682
|
-
|
|
3683
|
-
height: 56px;
|
|
3684
|
-
border-radius: 50%;
|
|
3685
|
-
background-color: var(--sendbird-light-background-50);
|
|
3761
|
+
align-items: center;
|
|
3686
3762
|
}
|
|
3687
|
-
|
|
3763
|
+
|
|
3764
|
+
.sendbird-ui-thread-replies__user-profiles__avatar__image {
|
|
3688
3765
|
position: absolute;
|
|
3689
3766
|
top: 0px;
|
|
3690
|
-
|
|
3691
|
-
width:
|
|
3692
|
-
height:
|
|
3693
|
-
border-radius: 16px;
|
|
3694
|
-
background-color: var(--sendbird-light-overlay-01);
|
|
3767
|
+
left: 0px;
|
|
3768
|
+
width: 20px;
|
|
3769
|
+
height: 20px;
|
|
3695
3770
|
}
|
|
3696
|
-
|
|
3771
|
+
|
|
3772
|
+
.sendbird-ui-thread-replies__user-profiles__avatar__cover {
|
|
3697
3773
|
position: absolute;
|
|
3698
|
-
|
|
3699
|
-
|
|
3700
|
-
|
|
3774
|
+
top: 0px;
|
|
3775
|
+
left: 0px;
|
|
3776
|
+
width: 20px;
|
|
3777
|
+
height: 20px;
|
|
3778
|
+
border-radius: 50%;
|
|
3779
|
+
background-color: var(--sendbird-light-overlay-01);
|
|
3701
3780
|
}
|
|
3702
|
-
|
|
3781
|
+
|
|
3782
|
+
.sendbird-ui-thread-replies__user-profiles__avatar__plus {
|
|
3703
3783
|
position: absolute;
|
|
3704
|
-
|
|
3705
|
-
|
|
3706
|
-
|
|
3707
|
-
|
|
3784
|
+
top: 0px;
|
|
3785
|
+
left: 0px;
|
|
3786
|
+
width: 20px;
|
|
3787
|
+
height: 20px;
|
|
3788
|
+
display: inline-flex;
|
|
3708
3789
|
justify-content: center;
|
|
3709
|
-
}
|
|
3710
|
-
.sendbird-thumbnail-message-item-body .sendbird-thumbnail-message-item-body__icon-wrapper .sendbird-thumbnail-message-item-body__icon-wrapper__icon {
|
|
3711
|
-
display: flex;
|
|
3712
3790
|
align-items: center;
|
|
3713
|
-
justify-content: center;
|
|
3714
|
-
width: 56px;
|
|
3715
|
-
height: 56px;
|
|
3716
|
-
border-radius: 50%;
|
|
3717
|
-
background-color: var(--sendbird-light-ondark-01);
|
|
3718
3791
|
}
|
|
3719
3792
|
|
|
3720
|
-
.sendbird-
|
|
3721
|
-
|
|
3793
|
+
.sendbird-ui-thread-replies__reply-counts {
|
|
3794
|
+
position: relative;
|
|
3795
|
+
min-width: -moz-fit-content;
|
|
3796
|
+
min-width: fit-content;
|
|
3797
|
+
height: 12px;
|
|
3798
|
+
display: inline-flex;
|
|
3799
|
+
flex-direction: row;
|
|
3800
|
+
justify-content: flex-start;
|
|
3801
|
+
align-items: center;
|
|
3802
|
+
white-space: nowrap;
|
|
3722
3803
|
}
|
|
3723
|
-
|
|
3804
|
+
|
|
3805
|
+
.sendbird-ui-thread-replies__icon {
|
|
3806
|
+
position: relative;
|
|
3724
3807
|
display: inline-flex;
|
|
3725
3808
|
}
|
|
3726
3809
|
.sendbird-og-message-item-body {
|
|
@@ -3842,408 +3925,378 @@ div.sendbird-text-message-item-body {
|
|
|
3842
3925
|
div.sendbird-og-message-item-body__text-bubble {
|
|
3843
3926
|
margin: 0px;
|
|
3844
3927
|
}
|
|
3845
|
-
.sendbird-
|
|
3846
|
-
|
|
3928
|
+
.sendbird-word {
|
|
3929
|
+
white-space: break-spaces;
|
|
3930
|
+
}
|
|
3931
|
+
.sendbird-word .sendbird-word__mention {
|
|
3847
3932
|
display: inline-block;
|
|
3848
|
-
box-sizing: border-box;
|
|
3849
|
-
padding: 8px 12px;
|
|
3850
|
-
border-radius: 16px;
|
|
3851
3933
|
}
|
|
3852
|
-
.sendbird-
|
|
3853
|
-
|
|
3934
|
+
.sendbird-word .sendbird-word__mention:hover {
|
|
3935
|
+
cursor: pointer;
|
|
3854
3936
|
}
|
|
3855
|
-
.sendbird-theme--light .sendbird-
|
|
3856
|
-
background-color: var(--sendbird-
|
|
3937
|
+
.sendbird-theme--light .sendbird-word .sendbird-word__mention.sendbird-word__mention--me {
|
|
3938
|
+
background-color: var(--sendbird-highlight-100);
|
|
3857
3939
|
}
|
|
3858
|
-
.sendbird-theme--dark .sendbird-
|
|
3859
|
-
background-color: var(--sendbird-
|
|
3940
|
+
.sendbird-theme--dark .sendbird-word .sendbird-word__mention.sendbird-word__mention--me {
|
|
3941
|
+
background-color: var(--sendbird-highlight-100);
|
|
3860
3942
|
}
|
|
3861
|
-
.sendbird-theme--light .sendbird-
|
|
3862
|
-
|
|
3943
|
+
.sendbird-theme--light .sendbird-word .sendbird-word__mention.sendbird-word__mention--me .sendbird-label {
|
|
3944
|
+
color: var(--sendbird-light-onlight-01);
|
|
3863
3945
|
}
|
|
3864
|
-
.sendbird-theme--dark .sendbird-
|
|
3865
|
-
|
|
3946
|
+
.sendbird-theme--dark .sendbird-word .sendbird-word__mention.sendbird-word__mention--me .sendbird-label {
|
|
3947
|
+
color: var(--sendbird-dark-onlight-01);
|
|
3866
3948
|
}
|
|
3867
|
-
.sendbird-
|
|
3868
|
-
|
|
3949
|
+
.sendbird-link-label {
|
|
3950
|
+
text-decoration: unset;
|
|
3869
3951
|
}
|
|
3870
|
-
.sendbird-
|
|
3871
|
-
|
|
3952
|
+
.sendbird-link-label:hover {
|
|
3953
|
+
cursor: pointer;
|
|
3954
|
+
text-decoration: underline;
|
|
3872
3955
|
}
|
|
3873
|
-
.sendbird-
|
|
3874
|
-
|
|
3956
|
+
.sendbird-link-label:focus {
|
|
3957
|
+
outline: none;
|
|
3875
3958
|
}
|
|
3876
|
-
.sendbird-
|
|
3877
|
-
|
|
3959
|
+
.sendbird-link-label__label {
|
|
3960
|
+
display: inline;
|
|
3878
3961
|
}
|
|
3879
|
-
|
|
3880
|
-
|
|
3962
|
+
|
|
3963
|
+
.sendbird-theme--light .sendbird-link-label .sendbird-label--color-onbackground-1 {
|
|
3964
|
+
color: var(--sendbird-light-onlight-01);
|
|
3881
3965
|
}
|
|
3882
|
-
.sendbird-
|
|
3883
|
-
|
|
3966
|
+
.sendbird-theme--dark .sendbird-link-label .sendbird-label--color-onbackground-1 {
|
|
3967
|
+
color: var(--sendbird-dark-ondark-01);
|
|
3884
3968
|
}
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
box-sizing: border-box;
|
|
3889
|
-
flex-direction: column;
|
|
3890
|
-
width: 100%;
|
|
3891
|
-
max-width: 400px;
|
|
3969
|
+
|
|
3970
|
+
.sendbird-theme--light .sendbird-link-label .sendbird-label--color-onbackground-2 {
|
|
3971
|
+
color: var(--sendbird-light-onlight-02);
|
|
3892
3972
|
}
|
|
3893
|
-
.sendbird-
|
|
3894
|
-
|
|
3973
|
+
.sendbird-theme--dark .sendbird-link-label .sendbird-label--color-onbackground-2 {
|
|
3974
|
+
color: var(--sendbird-dark-ondark-02);
|
|
3895
3975
|
}
|
|
3896
|
-
|
|
3897
|
-
|
|
3976
|
+
|
|
3977
|
+
.sendbird-theme--light .sendbird-link-label .sendbird-label--color-onbackground-3 {
|
|
3978
|
+
color: var(--sendbird-light-onlight-03);
|
|
3898
3979
|
}
|
|
3899
|
-
.sendbird-
|
|
3900
|
-
|
|
3901
|
-
display: inline-flex;
|
|
3902
|
-
flex-direction: row;
|
|
3903
|
-
align-items: center;
|
|
3904
|
-
height: 16px;
|
|
3905
|
-
padding: 0px 12px;
|
|
3906
|
-
width: 100%;
|
|
3980
|
+
.sendbird-theme--dark .sendbird-link-label .sendbird-label--color-onbackground-3 {
|
|
3981
|
+
color: var(--sendbird-dark-ondark-03);
|
|
3907
3982
|
}
|
|
3908
|
-
|
|
3909
|
-
|
|
3910
|
-
|
|
3911
|
-
margin-right: 4px;
|
|
3983
|
+
|
|
3984
|
+
.sendbird-theme--light .sendbird-link-label .sendbird-label--color-oncontent-1 {
|
|
3985
|
+
color: var(--sendbird-light-ondark-01);
|
|
3912
3986
|
}
|
|
3913
|
-
.sendbird-
|
|
3914
|
-
|
|
3915
|
-
max-width: 360px;
|
|
3916
|
-
overflow: hidden;
|
|
3917
|
-
overflow-x: hidden;
|
|
3918
|
-
white-space: nowrap;
|
|
3919
|
-
word-break: keep-all;
|
|
3920
|
-
text-overflow: ellipsis;
|
|
3921
|
-
font-size: 12px;
|
|
3922
|
-
display: inline-flex;
|
|
3923
|
-
flex-direction: row;
|
|
3924
|
-
align-items: center;
|
|
3987
|
+
.sendbird-theme--dark .sendbird-link-label .sendbird-label--color-oncontent-1 {
|
|
3988
|
+
color: var(--sendbird-dark-onlight-01);
|
|
3925
3989
|
}
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
overflow: hidden;
|
|
3930
|
-
text-overflow: ellipsis;
|
|
3990
|
+
|
|
3991
|
+
.sendbird-theme--light .sendbird-link-label .sendbird-label--color-oncontent-2 {
|
|
3992
|
+
color: var(--sendbird-light-ondark-02);
|
|
3931
3993
|
}
|
|
3932
|
-
.sendbird-
|
|
3933
|
-
|
|
3994
|
+
.sendbird-theme--dark .sendbird-link-label .sendbird-label--color-oncontent-2 {
|
|
3995
|
+
color: var(--sendbird-dark-onlight-02);
|
|
3934
3996
|
}
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
|
|
3997
|
+
|
|
3998
|
+
.sendbird-theme--light .sendbird-link-label .sendbird-label--color-primary {
|
|
3999
|
+
color: var(--sendbird-light-primary-300);
|
|
4000
|
+
}
|
|
4001
|
+
.sendbird-theme--dark .sendbird-link-label .sendbird-label--color-primary {
|
|
4002
|
+
color: var(--sendbird-dark-primary-200);
|
|
4003
|
+
}
|
|
4004
|
+
|
|
4005
|
+
.sendbird-theme--light .sendbird-link-label .sendbird-label--color-error {
|
|
4006
|
+
color: var(--sendbird-light-error-300);
|
|
3938
4007
|
}
|
|
3939
|
-
.sendbird-
|
|
3940
|
-
|
|
3941
|
-
white-space: pre-wrap;
|
|
3942
|
-
word-break: break-all;
|
|
3943
|
-
font-size: 12px;
|
|
3944
|
-
padding: 8px 12px 16px 12px;
|
|
3945
|
-
border-radius: 16px;
|
|
3946
|
-
opacity: 0.5;
|
|
4008
|
+
.sendbird-theme--dark .sendbird-link-label .sendbird-label--color-error {
|
|
4009
|
+
color: var(--sendbird-dark-error-200);
|
|
3947
4010
|
}
|
|
3948
|
-
|
|
3949
|
-
|
|
4011
|
+
|
|
4012
|
+
.sendbird-theme--light .sendbird-link-label .sendbird-label--color-secondary-3 {
|
|
4013
|
+
color: var(--sendbird-light-secondary-300);
|
|
3950
4014
|
}
|
|
3951
|
-
.sendbird-theme--dark .sendbird-
|
|
3952
|
-
|
|
4015
|
+
.sendbird-theme--dark .sendbird-link-label .sendbird-label--color-secondary-3 {
|
|
4016
|
+
color: var(--sendbird-dark-secondary-200);
|
|
3953
4017
|
}
|
|
3954
|
-
.sendbird-
|
|
4018
|
+
.sendbird-text-message-item-body {
|
|
3955
4019
|
position: relative;
|
|
3956
|
-
display: inline-
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
4020
|
+
display: inline-block;
|
|
4021
|
+
box-sizing: content-box;
|
|
4022
|
+
padding: 8px 12px;
|
|
4023
|
+
border-radius: 16px;
|
|
4024
|
+
white-space: pre-line;
|
|
4025
|
+
word-break: break-word;
|
|
3960
4026
|
}
|
|
3961
|
-
.sendbird-
|
|
3962
|
-
|
|
3963
|
-
width: 144px;
|
|
3964
|
-
height: 108px;
|
|
3965
|
-
border-radius: 6.4px;
|
|
3966
|
-
overflow: hidden;
|
|
4027
|
+
.sendbird-text-message-item-body.reactions {
|
|
4028
|
+
border-radius: 16px 16px 0px 0px;
|
|
3967
4029
|
}
|
|
3968
|
-
.sendbird-theme--light .sendbird-
|
|
4030
|
+
.sendbird-theme--light .sendbird-text-message-item-body.incoming {
|
|
3969
4031
|
background-color: var(--sendbird-light-background-100);
|
|
3970
4032
|
}
|
|
3971
|
-
.sendbird-theme--dark .sendbird-
|
|
4033
|
+
.sendbird-theme--dark .sendbird-text-message-item-body.incoming {
|
|
3972
4034
|
background-color: var(--sendbird-dark-background-500);
|
|
3973
4035
|
}
|
|
3974
|
-
.sendbird-
|
|
3975
|
-
|
|
3976
|
-
position: absolute;
|
|
3977
|
-
top: 0px;
|
|
3978
|
-
display: inline-flex;
|
|
3979
|
-
width: 100%;
|
|
3980
|
-
height: 100%;
|
|
3981
|
-
opacity: 0.5;
|
|
4036
|
+
.sendbird-theme--light .sendbird-text-message-item-body.outgoing {
|
|
4037
|
+
background-color: var(--sendbird-light-primary-300);
|
|
3982
4038
|
}
|
|
3983
|
-
.sendbird-
|
|
3984
|
-
|
|
3985
|
-
display: inline-flex;
|
|
3986
|
-
width: 100%;
|
|
3987
|
-
height: 100%;
|
|
3988
|
-
justify-content: center;
|
|
3989
|
-
align-items: center;
|
|
4039
|
+
.sendbird-theme--dark .sendbird-text-message-item-body.outgoing {
|
|
4040
|
+
background-color: var(--sendbird-dark-primary-200);
|
|
3990
4041
|
}
|
|
3991
|
-
.sendbird-
|
|
3992
|
-
|
|
3993
|
-
justify-content: center;
|
|
3994
|
-
align-items: center;
|
|
3995
|
-
width: 22px;
|
|
3996
|
-
height: 22px;
|
|
3997
|
-
border-radius: 50%;
|
|
4042
|
+
.sendbird-theme--light .sendbird-text-message-item-body.mouse-hover.incoming, .sendbird-theme--light .sendbird-text-message-item-body:hover.incoming {
|
|
4043
|
+
background-color: var(--sendbird-light-background-200);
|
|
3998
4044
|
}
|
|
3999
|
-
.sendbird-
|
|
4000
|
-
|
|
4001
|
-
display: inline-flex;
|
|
4002
|
-
width: 100%;
|
|
4003
|
-
height: 100%;
|
|
4004
|
-
justify-content: center;
|
|
4005
|
-
align-items: center;
|
|
4006
|
-
top: 0px;
|
|
4045
|
+
.sendbird-theme--dark .sendbird-text-message-item-body.mouse-hover.incoming, .sendbird-theme--dark .sendbird-text-message-item-body:hover.incoming {
|
|
4046
|
+
background-color: var(--sendbird-dark-background-400);
|
|
4007
4047
|
}
|
|
4008
|
-
.sendbird-theme--light .sendbird-
|
|
4009
|
-
background-color:
|
|
4048
|
+
.sendbird-theme--light .sendbird-text-message-item-body.mouse-hover.outgoing, .sendbird-theme--light .sendbird-text-message-item-body:hover.outgoing {
|
|
4049
|
+
background-color: var(--sendbird-light-primary-400);
|
|
4010
4050
|
}
|
|
4011
|
-
.sendbird-theme--dark .sendbird-
|
|
4012
|
-
background-color:
|
|
4051
|
+
.sendbird-theme--dark .sendbird-text-message-item-body.mouse-hover.outgoing, .sendbird-theme--dark .sendbird-text-message-item-body:hover.outgoing {
|
|
4052
|
+
background-color: var(--sendbird-dark-primary-300);
|
|
4013
4053
|
}
|
|
4014
|
-
.sendbird-
|
|
4054
|
+
.sendbird-text-message-item-body .sendbird-text-message-item-body__text-bubble__message {
|
|
4055
|
+
display: inline;
|
|
4056
|
+
margin: 0px 2px;
|
|
4057
|
+
}
|
|
4058
|
+
|
|
4059
|
+
div.sendbird-text-message-item-body {
|
|
4060
|
+
margin: 0px;
|
|
4061
|
+
}
|
|
4062
|
+
.sendbird-file-message-item-body {
|
|
4015
4063
|
position: relative;
|
|
4016
|
-
display: inline-
|
|
4017
|
-
|
|
4064
|
+
display: inline-block;
|
|
4065
|
+
box-sizing: border-box;
|
|
4066
|
+
padding: 8px 12px;
|
|
4018
4067
|
align-items: center;
|
|
4019
|
-
|
|
4020
|
-
height: 22px;
|
|
4021
|
-
border-radius: 50%;
|
|
4068
|
+
border-radius: 16px;
|
|
4022
4069
|
}
|
|
4023
|
-
.sendbird-
|
|
4024
|
-
|
|
4070
|
+
.sendbird-file-message-item-body.reactions {
|
|
4071
|
+
border-radius: 16px 16px 0px 0px;
|
|
4025
4072
|
}
|
|
4026
|
-
.sendbird-theme--
|
|
4027
|
-
background-color:
|
|
4073
|
+
.sendbird-theme--light .sendbird-file-message-item-body.outgoing {
|
|
4074
|
+
background-color: var(--sendbird-light-primary-300);
|
|
4028
4075
|
}
|
|
4029
|
-
.sendbird-
|
|
4030
|
-
|
|
4031
|
-
display: inline-flex;
|
|
4032
|
-
flex-direction: row;
|
|
4033
|
-
font-size: 12px;
|
|
4034
|
-
padding: 8px 12px 16px 12px;
|
|
4035
|
-
border-radius: 16px;
|
|
4036
|
-
opacity: 0.5;
|
|
4076
|
+
.sendbird-theme--dark .sendbird-file-message-item-body.outgoing {
|
|
4077
|
+
background-color: var(--sendbird-dark-primary-200);
|
|
4037
4078
|
}
|
|
4038
|
-
.sendbird-theme--light .sendbird-
|
|
4079
|
+
.sendbird-theme--light .sendbird-file-message-item-body.incoming {
|
|
4039
4080
|
background-color: var(--sendbird-light-background-100);
|
|
4040
4081
|
}
|
|
4041
|
-
.sendbird-theme--dark .sendbird-
|
|
4082
|
+
.sendbird-theme--dark .sendbird-file-message-item-body.incoming {
|
|
4042
4083
|
background-color: var(--sendbird-dark-background-500);
|
|
4043
4084
|
}
|
|
4044
|
-
.sendbird-
|
|
4045
|
-
|
|
4046
|
-
}
|
|
4047
|
-
.sendbird-quote-message:hover {
|
|
4048
|
-
cursor: pointer;
|
|
4085
|
+
.sendbird-theme--light .sendbird-file-message-item-body.mouse-hover.outgoing, .sendbird-theme--light .sendbird-file-message-item-body:hover.outgoing {
|
|
4086
|
+
background-color: var(--sendbird-light-primary-400);
|
|
4049
4087
|
}
|
|
4050
|
-
|
|
4051
|
-
|
|
4052
|
-
cursor: default;
|
|
4088
|
+
.sendbird-theme--dark .sendbird-file-message-item-body.mouse-hover.outgoing, .sendbird-theme--dark .sendbird-file-message-item-body:hover.outgoing {
|
|
4089
|
+
background-color: var(--sendbird-dark-primary-300);
|
|
4053
4090
|
}
|
|
4054
|
-
|
|
4055
|
-
|
|
4056
|
-
flex-direction: row-reverse;
|
|
4057
|
-
padding-right: 0px;
|
|
4091
|
+
.sendbird-theme--light .sendbird-file-message-item-body.mouse-hover.incoming, .sendbird-theme--light .sendbird-file-message-item-body:hover.incoming {
|
|
4092
|
+
background-color: var(--sendbird-light-background-200);
|
|
4058
4093
|
}
|
|
4059
|
-
|
|
4060
|
-
|
|
4061
|
-
padding-left: 0px;
|
|
4094
|
+
.sendbird-theme--dark .sendbird-file-message-item-body.mouse-hover.incoming, .sendbird-theme--dark .sendbird-file-message-item-body:hover.incoming {
|
|
4095
|
+
background-color: var(--sendbird-dark-background-400);
|
|
4062
4096
|
}
|
|
4063
|
-
.sendbird-
|
|
4097
|
+
.sendbird-file-message-item-body .sendbird-file-message-item-body__file-icon {
|
|
4098
|
+
width: 28px;
|
|
4099
|
+
height: 28px;
|
|
4100
|
+
min-width: 28px;
|
|
4101
|
+
min-height: 28px;
|
|
4102
|
+
display: inline-flex;
|
|
4103
|
+
align-items: center;
|
|
4104
|
+
justify-content: center;
|
|
4064
4105
|
border-radius: 8px;
|
|
4065
|
-
|
|
4106
|
+
margin-right: 8px;
|
|
4066
4107
|
}
|
|
4067
|
-
|
|
4068
|
-
|
|
4069
|
-
display: flex;
|
|
4070
|
-
justify-content: space-between;
|
|
4108
|
+
.sendbird-theme--light .sendbird-file-message-item-body .sendbird-file-message-item-body__file-icon {
|
|
4109
|
+
background-color: var(--sendbird-light-background-50);
|
|
4071
4110
|
}
|
|
4072
|
-
|
|
4073
|
-
|
|
4074
|
-
display: block;
|
|
4111
|
+
.sendbird-theme--dark .sendbird-file-message-item-body .sendbird-file-message-item-body__file-icon {
|
|
4112
|
+
background-color: var(--sendbird-dark-background-600);
|
|
4075
4113
|
}
|
|
4076
|
-
|
|
4077
|
-
|
|
4078
|
-
|
|
4114
|
+
.sendbird-file-message-item-body .sendbird-file-message-item-body__file-name {
|
|
4115
|
+
position: relative;
|
|
4116
|
+
top: -6px;
|
|
4117
|
+
}
|
|
4118
|
+
.sendbird-image-grid-wrap {
|
|
4119
|
+
display: flex;
|
|
4120
|
+
justify-content: flex-end;
|
|
4079
4121
|
width: 100%;
|
|
4080
|
-
text-decoration: none;
|
|
4081
|
-
color: inherit;
|
|
4082
|
-
font-size: inherit;
|
|
4083
|
-
font-weight: inherit;
|
|
4084
|
-
font-stretch: normal;
|
|
4085
|
-
font-style: normal;
|
|
4086
|
-
line-height: inherit;
|
|
4087
|
-
letter-spacing: inherit;
|
|
4088
|
-
font-family: inherit;
|
|
4089
4122
|
}
|
|
4090
4123
|
|
|
4091
|
-
.sendbird-
|
|
4092
|
-
|
|
4093
|
-
|
|
4124
|
+
.sendbird-image-grid {
|
|
4125
|
+
border-radius: 12px;
|
|
4126
|
+
display: grid;
|
|
4127
|
+
gap: 4px;
|
|
4128
|
+
grid-template-columns: repeat(2, 1fr);
|
|
4129
|
+
padding: 4px;
|
|
4130
|
+
width: -moz-fit-content;
|
|
4131
|
+
width: fit-content;
|
|
4094
4132
|
}
|
|
4095
|
-
.sendbird-theme--light .sendbird-
|
|
4096
|
-
|
|
4133
|
+
.sendbird-theme--light .sendbird-image-grid {
|
|
4134
|
+
background-color: var(--sendbird-light-background-100);
|
|
4097
4135
|
}
|
|
4098
|
-
.sendbird-theme--dark .sendbird-
|
|
4099
|
-
|
|
4136
|
+
.sendbird-theme--dark .sendbird-image-grid {
|
|
4137
|
+
background-color: var(--sendbird-dark-background-500);
|
|
4138
|
+
}
|
|
4139
|
+
.sendbird-image-grid.reactions {
|
|
4140
|
+
border-radius: 12px 12px 0 0;
|
|
4141
|
+
}
|
|
4142
|
+
.sendbird-fileviewer__header__right__actions__download,
|
|
4143
|
+
.sendbird-fileviewer__header__right__actions__delete,
|
|
4144
|
+
.sendbird-fileviewer__header__right__actions__close {
|
|
4145
|
+
width: 64px;
|
|
4146
|
+
padding: 21px;
|
|
4147
|
+
box-sizing: border-box;
|
|
4148
|
+
cursor: pointer;
|
|
4149
|
+
}
|
|
4150
|
+
.sendbird-fileviewer__header__right__actions__download .disabled,
|
|
4151
|
+
.sendbird-fileviewer__header__right__actions__delete .disabled,
|
|
4152
|
+
.sendbird-fileviewer__header__right__actions__close .disabled {
|
|
4153
|
+
cursor: not-allowed;
|
|
4100
4154
|
}
|
|
4101
4155
|
|
|
4102
|
-
.sendbird-
|
|
4103
|
-
width:
|
|
4104
|
-
|
|
4105
|
-
|
|
4106
|
-
|
|
4156
|
+
.sendbird-fileviewer {
|
|
4157
|
+
width: 100%;
|
|
4158
|
+
height: 100%;
|
|
4159
|
+
position: fixed;
|
|
4160
|
+
top: 0;
|
|
4161
|
+
left: 0;
|
|
4162
|
+
z-index: 100000;
|
|
4107
4163
|
}
|
|
4108
|
-
.sendbird-theme--light .sendbird-
|
|
4164
|
+
.sendbird-theme--light .sendbird-fileviewer {
|
|
4109
4165
|
background-color: var(--sendbird-light-background-50);
|
|
4110
4166
|
}
|
|
4111
|
-
.sendbird-theme--dark .sendbird-
|
|
4167
|
+
.sendbird-theme--dark .sendbird-fileviewer {
|
|
4112
4168
|
background-color: var(--sendbird-dark-background-600);
|
|
4113
4169
|
}
|
|
4114
|
-
|
|
4115
|
-
|
|
4116
|
-
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
margin-top: 0;
|
|
4170
|
+
.sendbird-fileviewer .sendbird-fileviewer__header {
|
|
4171
|
+
height: 64px;
|
|
4172
|
+
min-height: 64px;
|
|
4173
|
+
box-sizing: border-box;
|
|
4174
|
+
display: flex;
|
|
4175
|
+
justify-content: space-between;
|
|
4121
4176
|
}
|
|
4122
|
-
|
|
4123
|
-
|
|
4124
|
-
display: inline-block;
|
|
4177
|
+
.sendbird-theme--light .sendbird-fileviewer .sendbird-fileviewer__header {
|
|
4178
|
+
border-bottom: 1px solid var(--sendbird-light-onlight-04);
|
|
4125
4179
|
}
|
|
4126
|
-
.sendbird-
|
|
4127
|
-
|
|
4128
|
-
flex-direction: row;
|
|
4129
|
-
flex-wrap: wrap;
|
|
4180
|
+
.sendbird-theme--dark .sendbird-fileviewer .sendbird-fileviewer__header {
|
|
4181
|
+
border-bottom: 1px solid var(--sendbird-dark-ondark-04);
|
|
4130
4182
|
}
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
cursor: pointer;
|
|
4134
|
-
height: 48px;
|
|
4183
|
+
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left {
|
|
4184
|
+
box-sizing: border-box;
|
|
4135
4185
|
display: flex;
|
|
4186
|
+
flex-direction: row;
|
|
4136
4187
|
align-items: center;
|
|
4137
|
-
|
|
4188
|
+
height: 64px;
|
|
4189
|
+
padding: 16px 20px;
|
|
4138
4190
|
}
|
|
4139
|
-
.sendbird-
|
|
4140
|
-
margin-right:
|
|
4191
|
+
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__avatar {
|
|
4192
|
+
margin-right: 8px;
|
|
4141
4193
|
}
|
|
4142
|
-
|
|
4143
|
-
|
|
4144
|
-
|
|
4194
|
+
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__filename {
|
|
4195
|
+
max-width: 500px;
|
|
4196
|
+
white-space: nowrap;
|
|
4197
|
+
overflow: hidden;
|
|
4198
|
+
text-overflow: ellipsis;
|
|
4199
|
+
display: inline-block;
|
|
4145
4200
|
}
|
|
4146
|
-
.sendbird-
|
|
4147
|
-
|
|
4201
|
+
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__left .sendbird-fileviewer__header__left__sender-name {
|
|
4202
|
+
max-width: 200px;
|
|
4203
|
+
white-space: nowrap;
|
|
4204
|
+
overflow: hidden;
|
|
4205
|
+
text-overflow: ellipsis;
|
|
4206
|
+
display: inline-flex;
|
|
4207
|
+
margin-left: 8px;
|
|
4208
|
+
padding-top: 5px;
|
|
4148
4209
|
}
|
|
4149
|
-
.sendbird-
|
|
4150
|
-
|
|
4210
|
+
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__right {
|
|
4211
|
+
display: flex;
|
|
4212
|
+
width: 160px;
|
|
4213
|
+
justify-content: flex-end;
|
|
4151
4214
|
}
|
|
4152
|
-
.sendbird-
|
|
4153
|
-
|
|
4154
|
-
|
|
4155
|
-
width: fit-content;
|
|
4156
|
-
height: 20px;
|
|
4157
|
-
min-height: 20px;
|
|
4158
|
-
display: inline-flex;
|
|
4215
|
+
.sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__right .sendbird-fileviewer__header__right__actions {
|
|
4216
|
+
right: 0;
|
|
4217
|
+
display: flex;
|
|
4159
4218
|
flex-direction: row;
|
|
4160
|
-
justify-content: flex-start;
|
|
4161
|
-
align-items: center;
|
|
4162
|
-
padding: 4px 10px;
|
|
4163
|
-
gap: 4px;
|
|
4164
|
-
border-radius: 16px;
|
|
4165
|
-
flex: none;
|
|
4166
|
-
order: 0;
|
|
4167
|
-
flex-grow: 0;
|
|
4168
4219
|
}
|
|
4169
|
-
.sendbird-theme--light .sendbird-
|
|
4170
|
-
|
|
4220
|
+
.sendbird-theme--light .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__right .sendbird-fileviewer__header__right__actions__close {
|
|
4221
|
+
border-left: 1px solid var(--sendbird-light-onlight-04);
|
|
4171
4222
|
}
|
|
4172
|
-
.sendbird-theme--dark .sendbird-
|
|
4173
|
-
|
|
4223
|
+
.sendbird-theme--dark .sendbird-fileviewer .sendbird-fileviewer__header .sendbird-fileviewer__header__right .sendbird-fileviewer__header__right__actions__close {
|
|
4224
|
+
border-left: 1px solid var(--sendbird-dark-ondark-04);
|
|
4174
4225
|
}
|
|
4175
|
-
.sendbird-
|
|
4176
|
-
|
|
4226
|
+
.sendbird-fileviewer .sendbird-fileviewer__content {
|
|
4227
|
+
position: relative;
|
|
4228
|
+
height: calc(100% - 72px);
|
|
4229
|
+
margin-top: 4px;
|
|
4230
|
+
overflow-y: auto;
|
|
4231
|
+
display: flex;
|
|
4232
|
+
align-items: center;
|
|
4233
|
+
justify-content: center;
|
|
4177
4234
|
}
|
|
4178
|
-
.sendbird-
|
|
4179
|
-
|
|
4235
|
+
.sendbird-fileviewer .sendbird-fileviewer__content .sendbird-fileviewer__content__video {
|
|
4236
|
+
max-width: 100%;
|
|
4237
|
+
max-height: 100%;
|
|
4180
4238
|
}
|
|
4181
|
-
.sendbird-
|
|
4182
|
-
|
|
4239
|
+
.sendbird-fileviewer .sendbird-fileviewer__content .sendbird-fileviewer__content__img {
|
|
4240
|
+
max-width: 90%;
|
|
4241
|
+
max-height: 90%;
|
|
4183
4242
|
}
|
|
4184
|
-
|
|
4185
|
-
|
|
4186
|
-
|
|
4187
|
-
width: 100%;
|
|
4188
|
-
height: 100%;
|
|
4189
|
-
gap: 4px;
|
|
4190
|
-
display: inline-flex;
|
|
4191
|
-
flex-direction: row;
|
|
4243
|
+
.sendbird-fileviewer .sendbird-fileviewer__content .sendbird-fileviewer__content__img__multi {
|
|
4244
|
+
max-width: calc(100% - 64px - 56px);
|
|
4245
|
+
max-height: calc(100% - 64px);
|
|
4192
4246
|
}
|
|
4193
|
-
|
|
4194
|
-
|
|
4195
|
-
|
|
4196
|
-
|
|
4197
|
-
height: 20px;
|
|
4198
|
-
display: inline-flex;
|
|
4247
|
+
.sendbird-fileviewer .sendbird-fileviewer__content .sendbird-fileviewer__content__unsupported {
|
|
4248
|
+
max-width: 100%;
|
|
4249
|
+
max-height: 100%;
|
|
4250
|
+
display: flex;
|
|
4199
4251
|
justify-content: center;
|
|
4200
4252
|
align-items: center;
|
|
4201
4253
|
}
|
|
4202
4254
|
|
|
4203
|
-
.sendbird-
|
|
4255
|
+
.sendbird-file-viewer-arrow--left,
|
|
4256
|
+
.sendbird-file-viewer-arrow--right {
|
|
4257
|
+
cursor: pointer;
|
|
4204
4258
|
position: absolute;
|
|
4205
|
-
|
|
4206
|
-
|
|
4207
|
-
|
|
4208
|
-
height: 20px;
|
|
4259
|
+
height: 32px;
|
|
4260
|
+
width: 32px;
|
|
4261
|
+
top: calc(50% - 16px);
|
|
4209
4262
|
}
|
|
4210
4263
|
|
|
4211
|
-
.sendbird-
|
|
4212
|
-
|
|
4213
|
-
top: 0px;
|
|
4214
|
-
left: 0px;
|
|
4215
|
-
width: 20px;
|
|
4216
|
-
height: 20px;
|
|
4217
|
-
border-radius: 50%;
|
|
4218
|
-
background-color: var(--sendbird-light-overlay-01);
|
|
4264
|
+
.sendbird-file-viewer-arrow--left {
|
|
4265
|
+
left: 14px;
|
|
4219
4266
|
}
|
|
4220
4267
|
|
|
4221
|
-
.sendbird-
|
|
4268
|
+
.sendbird-file-viewer-arrow--right {
|
|
4269
|
+
right: 14px;
|
|
4270
|
+
transform: rotate(180deg);
|
|
4271
|
+
}
|
|
4272
|
+
.sendbird-multiple-files-image-renderer-wrapper {
|
|
4273
|
+
cursor: pointer;
|
|
4274
|
+
width: 100%;
|
|
4275
|
+
}
|
|
4276
|
+
|
|
4277
|
+
.sendbird-multiple-files-image-renderer__thumbnail__placeholder {
|
|
4222
4278
|
position: absolute;
|
|
4223
|
-
|
|
4224
|
-
|
|
4225
|
-
|
|
4226
|
-
height: 20px;
|
|
4227
|
-
display: inline-flex;
|
|
4279
|
+
display: flex;
|
|
4280
|
+
width: 100%;
|
|
4281
|
+
height: 100%;
|
|
4228
4282
|
justify-content: center;
|
|
4283
|
+
border-radius: 16px;
|
|
4229
4284
|
align-items: center;
|
|
4230
4285
|
}
|
|
4231
|
-
|
|
4232
|
-
|
|
4233
|
-
position: relative;
|
|
4234
|
-
min-width: -moz-fit-content;
|
|
4235
|
-
min-width: fit-content;
|
|
4236
|
-
height: 12px;
|
|
4237
|
-
display: inline-flex;
|
|
4238
|
-
flex-direction: row;
|
|
4239
|
-
justify-content: flex-start;
|
|
4240
|
-
align-items: center;
|
|
4241
|
-
white-space: nowrap;
|
|
4286
|
+
.sendbird-theme--light .sendbird-multiple-files-image-renderer__thumbnail__placeholder {
|
|
4287
|
+
background-color: var(--sendbird-light-background-200);
|
|
4242
4288
|
}
|
|
4243
|
-
|
|
4244
|
-
|
|
4245
|
-
|
|
4246
|
-
|
|
4289
|
+
.sendbird-theme--dark .sendbird-multiple-files-image-renderer__thumbnail__placeholder {
|
|
4290
|
+
background-color: var(--sendbird-dark-background-400);
|
|
4291
|
+
}
|
|
4292
|
+
.sendbird-multiple-files-image-renderer__thumbnail__placeholder .sendbird-multiple-files-image-renderer__thumbnail__placeholder__icon {
|
|
4293
|
+
display: flex;
|
|
4294
|
+
align-items: center;
|
|
4295
|
+
justify-content: center;
|
|
4296
|
+
width: 56px;
|
|
4297
|
+
height: 56px;
|
|
4298
|
+
border-radius: 50%;
|
|
4299
|
+
background-color: var(--sendbird-light-ondark-01);
|
|
4247
4300
|
}
|
|
4248
4301
|
.sendbird-voice-message-item-body {
|
|
4249
4302
|
position: relative;
|
|
@@ -4346,188 +4399,87 @@ div.sendbird-og-message-item-body__text-bubble {
|
|
|
4346
4399
|
.sendbird-theme--light .sendbird-progress-bar.progress-bar--disabled, .sendbird-theme--light .progress-bar-color--gray {
|
|
4347
4400
|
background-color: var(--sendbird-light-background-100);
|
|
4348
4401
|
}
|
|
4349
|
-
.sendbird-theme--dark .sendbird-progress-bar.progress-bar--disabled, .sendbird-theme--dark .progress-bar-color--gray {
|
|
4350
|
-
background-color: var(--sendbird-dark-background-500);
|
|
4351
|
-
}
|
|
4352
|
-
|
|
4353
|
-
.sendbird-progress-bar.progress-bar--disabled .sendbird-progress-bar__fill {
|
|
4354
|
-
background-color: transparent;
|
|
4355
|
-
}
|
|
4356
|
-
.sendbird-image-grid-wrap {
|
|
4357
|
-
display: flex;
|
|
4358
|
-
justify-content: flex-end;
|
|
4359
|
-
width: 100%;
|
|
4360
|
-
}
|
|
4361
|
-
|
|
4362
|
-
.sendbird-image-grid {
|
|
4363
|
-
border-radius: 12px;
|
|
4364
|
-
display: grid;
|
|
4365
|
-
gap: 4px;
|
|
4366
|
-
grid-template-columns: repeat(2, 1fr);
|
|
4367
|
-
padding: 4px;
|
|
4368
|
-
width: -moz-fit-content;
|
|
4369
|
-
width: fit-content;
|
|
4370
|
-
}
|
|
4371
|
-
.sendbird-theme--light .sendbird-image-grid {
|
|
4372
|
-
background-color: var(--sendbird-light-background-100);
|
|
4373
|
-
}
|
|
4374
|
-
.sendbird-theme--dark .sendbird-image-grid {
|
|
4375
|
-
background-color: var(--sendbird-dark-background-500);
|
|
4376
|
-
}
|
|
4377
|
-
.sendbird-image-grid.reactions {
|
|
4378
|
-
border-radius: 12px 12px 0 0;
|
|
4379
|
-
}
|
|
4380
|
-
.sendbird-fileviewer__header__right__actions__download,
|
|
4381
|
-
.sendbird-fileviewer__header__right__actions__delete,
|
|
4382
|
-
.sendbird-fileviewer__header__right__actions__close {
|
|
4383
|
-
width: 64px;
|
|
4384
|
-
padding: 21px;
|
|
4385
|
-
box-sizing: border-box;
|
|
4386
|
-
cursor: pointer;
|
|
4387
|
-
}
|
|
4388
|
-
.sendbird-fileviewer__header__right__actions__download .disabled,
|
|
4389
|
-
.sendbird-fileviewer__header__right__actions__delete .disabled,
|
|
4390
|
-
.sendbird-fileviewer__header__right__actions__close .disabled {
|
|
4391
|
-
cursor: not-allowed;
|
|
4392
|
-
}
|
|
4393
|
-
|
|
4394
|
-
.sendbird-fileviewer {
|
|
4395
|
-
width: 100%;
|
|
4396
|
-
height: 100%;
|
|
4397
|
-
position: fixed;
|
|
4398
|
-
top: 0;
|
|
4399
|
-
left: 0;
|
|
4400
|
-
z-index: 100000;
|
|
4401
|
-
}
|
|
4402
|
-
.sendbird-theme--light .sendbird-fileviewer {
|
|
4403
|
-
background-color: var(--sendbird-light-background-50);
|
|
4404
|
-
}
|
|
4405
|
-
.sendbird-theme--dark .sendbird-fileviewer {
|
|
4406
|
-
background-color: var(--sendbird-dark-background-600);
|
|
4407
|
-
}
|
|
4408
|
-
.sendbird-fileviewer .sendbird-fileviewer__header {
|
|
4409
|
-
height: 64px;
|
|
4410
|
-
min-height: 64px;
|
|
4411
|
-
box-sizing: border-box;
|
|
4412
|
-
display: flex;
|
|
4413
|
-
justify-content: space-between;
|
|
4414
|
-
}
|
|
4415
|
-
.sendbird-theme--light .sendbird-fileviewer .sendbird-fileviewer__header {
|
|
4416
|
-
border-bottom: 1px solid var(--sendbird-light-onlight-04);
|
|
4402
|
+
.sendbird-theme--dark .sendbird-progress-bar.progress-bar--disabled, .sendbird-theme--dark .progress-bar-color--gray {
|
|
4403
|
+
background-color: var(--sendbird-dark-background-500);
|
|
4417
4404
|
}
|
|
4418
|
-
|
|
4419
|
-
|
|
4405
|
+
|
|
4406
|
+
.sendbird-progress-bar.progress-bar--disabled .sendbird-progress-bar__fill {
|
|
4407
|
+
background-color: transparent;
|
|
4420
4408
|
}
|
|
4421
|
-
.sendbird-
|
|
4409
|
+
.sendbird-thumbnail-message-item-body {
|
|
4410
|
+
position: relative;
|
|
4411
|
+
display: block;
|
|
4422
4412
|
box-sizing: border-box;
|
|
4423
|
-
|
|
4424
|
-
|
|
4425
|
-
|
|
4426
|
-
|
|
4427
|
-
|
|
4413
|
+
overflow: hidden;
|
|
4414
|
+
width: 100%;
|
|
4415
|
+
min-width: 360px;
|
|
4416
|
+
max-width: 400px;
|
|
4417
|
+
height: 270px;
|
|
4418
|
+
border-radius: 16px;
|
|
4428
4419
|
}
|
|
4429
|
-
.sendbird-
|
|
4430
|
-
|
|
4420
|
+
.sendbird--mobile-mode .sendbird-thumbnail-message-item-body {
|
|
4421
|
+
min-width: 160px;
|
|
4431
4422
|
}
|
|
4432
|
-
.sendbird-
|
|
4433
|
-
|
|
4434
|
-
white-space: nowrap;
|
|
4435
|
-
overflow: hidden;
|
|
4436
|
-
text-overflow: ellipsis;
|
|
4437
|
-
display: inline-block;
|
|
4423
|
+
.sendbird-thumbnail-message-item-body.reactions {
|
|
4424
|
+
border-radius: 16px 16px 0px 0px;
|
|
4438
4425
|
}
|
|
4439
|
-
.sendbird-
|
|
4440
|
-
|
|
4441
|
-
white-space: nowrap;
|
|
4442
|
-
overflow: hidden;
|
|
4443
|
-
text-overflow: ellipsis;
|
|
4444
|
-
display: inline-flex;
|
|
4445
|
-
margin-left: 8px;
|
|
4446
|
-
padding-top: 5px;
|
|
4426
|
+
.sendbird-theme--light .sendbird-thumbnail-message-item-body {
|
|
4427
|
+
background-color: var(--sendbird-light-background-100);
|
|
4447
4428
|
}
|
|
4448
|
-
.sendbird-
|
|
4449
|
-
|
|
4450
|
-
width: 160px;
|
|
4451
|
-
justify-content: flex-end;
|
|
4429
|
+
.sendbird-theme--dark .sendbird-thumbnail-message-item-body {
|
|
4430
|
+
background-color: var(--sendbird-dark-background-500);
|
|
4452
4431
|
}
|
|
4453
|
-
.sendbird-
|
|
4454
|
-
|
|
4455
|
-
display: flex;
|
|
4456
|
-
flex-direction: row;
|
|
4432
|
+
.sendbird-theme--light .sendbird-thumbnail-message-item-body.mouse-hover, .sendbird-theme--light .sendbird-thumbnail-message-item-body:hover {
|
|
4433
|
+
background-color: var(--sendbird-light-background-200);
|
|
4457
4434
|
}
|
|
4458
|
-
.sendbird-theme--
|
|
4459
|
-
|
|
4435
|
+
.sendbird-theme--dark .sendbird-thumbnail-message-item-body.mouse-hover, .sendbird-theme--dark .sendbird-thumbnail-message-item-body:hover {
|
|
4436
|
+
background-color: var(--sendbird-dark-background-400);
|
|
4460
4437
|
}
|
|
4461
|
-
.sendbird-
|
|
4462
|
-
|
|
4438
|
+
.sendbird-thumbnail-message-item-body .sendbird-thumbnail-message-item-body__thumbnail {
|
|
4439
|
+
position: absolute;
|
|
4440
|
+
border-radius: 16px;
|
|
4463
4441
|
}
|
|
4464
|
-
.sendbird-
|
|
4465
|
-
position:
|
|
4466
|
-
|
|
4467
|
-
|
|
4468
|
-
overflow-y: auto;
|
|
4442
|
+
.sendbird-thumbnail-message-item-body .sendbird-thumbnail-message-item-body__placeholder {
|
|
4443
|
+
position: absolute;
|
|
4444
|
+
width: 100%;
|
|
4445
|
+
height: 270px;
|
|
4469
4446
|
display: flex;
|
|
4470
|
-
align-items: center;
|
|
4471
4447
|
justify-content: center;
|
|
4448
|
+
align-items: center;
|
|
4472
4449
|
}
|
|
4473
|
-
.sendbird-
|
|
4474
|
-
max-width: 100%;
|
|
4475
|
-
max-height: 100%;
|
|
4476
|
-
}
|
|
4477
|
-
.sendbird-fileviewer .sendbird-fileviewer__content .sendbird-fileviewer__content__img {
|
|
4478
|
-
max-width: 90%;
|
|
4479
|
-
max-height: 90%;
|
|
4480
|
-
}
|
|
4481
|
-
.sendbird-fileviewer .sendbird-fileviewer__content .sendbird-fileviewer__content__img__multi {
|
|
4482
|
-
max-width: calc(100% - 64px - 56px);
|
|
4483
|
-
max-height: calc(100% - 64px);
|
|
4484
|
-
}
|
|
4485
|
-
.sendbird-fileviewer .sendbird-fileviewer__content .sendbird-fileviewer__content__unsupported {
|
|
4486
|
-
max-width: 100%;
|
|
4487
|
-
max-height: 100%;
|
|
4450
|
+
.sendbird-thumbnail-message-item-body .sendbird-thumbnail-message-item-body__placeholder .sendbird-thumbnail-message-item-body__placeholder__icon {
|
|
4488
4451
|
display: flex;
|
|
4489
|
-
justify-content: center;
|
|
4490
4452
|
align-items: center;
|
|
4453
|
+
justify-content: center;
|
|
4454
|
+
width: 56px;
|
|
4455
|
+
height: 56px;
|
|
4456
|
+
border-radius: 50%;
|
|
4457
|
+
background-color: var(--sendbird-light-background-50);
|
|
4491
4458
|
}
|
|
4492
|
-
|
|
4493
|
-
.sendbird-file-viewer-arrow--left,
|
|
4494
|
-
.sendbird-file-viewer-arrow--right {
|
|
4495
|
-
cursor: pointer;
|
|
4459
|
+
.sendbird-thumbnail-message-item-body .sendbird-thumbnail-message-item-body__image-cover {
|
|
4496
4460
|
position: absolute;
|
|
4497
|
-
|
|
4498
|
-
|
|
4499
|
-
top: calc(50% - 16px);
|
|
4500
|
-
}
|
|
4501
|
-
|
|
4502
|
-
.sendbird-file-viewer-arrow--left {
|
|
4503
|
-
left: 14px;
|
|
4504
|
-
}
|
|
4505
|
-
|
|
4506
|
-
.sendbird-file-viewer-arrow--right {
|
|
4507
|
-
right: 14px;
|
|
4508
|
-
transform: rotate(180deg);
|
|
4509
|
-
}
|
|
4510
|
-
.sendbird-multiple-files-image-renderer-wrapper {
|
|
4511
|
-
cursor: pointer;
|
|
4461
|
+
top: 0px;
|
|
4462
|
+
display: none;
|
|
4512
4463
|
width: 100%;
|
|
4464
|
+
height: 270px;
|
|
4465
|
+
border-radius: 16px;
|
|
4466
|
+
background-color: var(--sendbird-light-overlay-01);
|
|
4513
4467
|
}
|
|
4514
|
-
|
|
4515
|
-
.sendbird-multiple-files-image-renderer__thumbnail__placeholder {
|
|
4468
|
+
.sendbird-thumbnail-message-item-body .sendbird-thumbnail-message-item-body__video {
|
|
4516
4469
|
position: absolute;
|
|
4517
|
-
display: flex;
|
|
4518
4470
|
width: 100%;
|
|
4519
|
-
height:
|
|
4520
|
-
justify-content: center;
|
|
4471
|
+
height: 270px;
|
|
4521
4472
|
border-radius: 16px;
|
|
4522
|
-
align-items: center;
|
|
4523
|
-
}
|
|
4524
|
-
.sendbird-theme--light .sendbird-multiple-files-image-renderer__thumbnail__placeholder {
|
|
4525
|
-
background-color: var(--sendbird-light-background-200);
|
|
4526
4473
|
}
|
|
4527
|
-
.sendbird-
|
|
4528
|
-
|
|
4474
|
+
.sendbird-thumbnail-message-item-body .sendbird-thumbnail-message-item-body__icon-wrapper {
|
|
4475
|
+
position: absolute;
|
|
4476
|
+
width: 100%;
|
|
4477
|
+
height: 270px;
|
|
4478
|
+
display: flex;
|
|
4479
|
+
align-items: center;
|
|
4480
|
+
justify-content: center;
|
|
4529
4481
|
}
|
|
4530
|
-
.sendbird-
|
|
4482
|
+
.sendbird-thumbnail-message-item-body .sendbird-thumbnail-message-item-body__icon-wrapper .sendbird-thumbnail-message-item-body__icon-wrapper__icon {
|
|
4531
4483
|
display: flex;
|
|
4532
4484
|
align-items: center;
|
|
4533
4485
|
justify-content: center;
|
|
@@ -4536,6 +4488,53 @@ div.sendbird-og-message-item-body__text-bubble {
|
|
|
4536
4488
|
border-radius: 50%;
|
|
4537
4489
|
background-color: var(--sendbird-light-ondark-01);
|
|
4538
4490
|
}
|
|
4491
|
+
|
|
4492
|
+
.sendbird-thumbnail-message-item-body:hover {
|
|
4493
|
+
cursor: pointer;
|
|
4494
|
+
}
|
|
4495
|
+
.sendbird-thumbnail-message-item-body:hover .sendbird-thumbnail-message-item-body__image-cover {
|
|
4496
|
+
display: inline-flex;
|
|
4497
|
+
}
|
|
4498
|
+
.sendbird-unknown-message-item-body {
|
|
4499
|
+
position: relative;
|
|
4500
|
+
display: inline-block;
|
|
4501
|
+
box-sizing: border-box;
|
|
4502
|
+
padding: 8px 12px;
|
|
4503
|
+
border-radius: 16px;
|
|
4504
|
+
}
|
|
4505
|
+
.sendbird-unknown-message-item-body.reactions {
|
|
4506
|
+
border-radius: 16px 16px 0px 0px;
|
|
4507
|
+
}
|
|
4508
|
+
.sendbird-theme--light .sendbird-unknown-message-item-body.outgoing {
|
|
4509
|
+
background-color: var(--sendbird-light-primary-300);
|
|
4510
|
+
}
|
|
4511
|
+
.sendbird-theme--dark .sendbird-unknown-message-item-body.outgoing {
|
|
4512
|
+
background-color: var(--sendbird-dark-primary-200);
|
|
4513
|
+
}
|
|
4514
|
+
.sendbird-theme--light .sendbird-unknown-message-item-body.incoming {
|
|
4515
|
+
background-color: var(--sendbird-light-background-100);
|
|
4516
|
+
}
|
|
4517
|
+
.sendbird-theme--dark .sendbird-unknown-message-item-body.incoming {
|
|
4518
|
+
background-color: var(--sendbird-dark-background-500);
|
|
4519
|
+
}
|
|
4520
|
+
.sendbird-theme--light .sendbird-unknown-message-item-body.mouse-hover.outgoing, .sendbird-theme--light .sendbird-unknown-message-item-body:hover.outgoing {
|
|
4521
|
+
background-color: var(--sendbird-light-primary-400);
|
|
4522
|
+
}
|
|
4523
|
+
.sendbird-theme--dark .sendbird-unknown-message-item-body.mouse-hover.outgoing, .sendbird-theme--dark .sendbird-unknown-message-item-body:hover.outgoing {
|
|
4524
|
+
background-color: var(--sendbird-dark-primary-300);
|
|
4525
|
+
}
|
|
4526
|
+
.sendbird-theme--light .sendbird-unknown-message-item-body.mouse-hover.incoming, .sendbird-theme--light .sendbird-unknown-message-item-body:hover.incoming {
|
|
4527
|
+
background-color: var(--sendbird-light-background-200);
|
|
4528
|
+
}
|
|
4529
|
+
.sendbird-theme--dark .sendbird-unknown-message-item-body.mouse-hover.incoming, .sendbird-theme--dark .sendbird-unknown-message-item-body:hover.incoming {
|
|
4530
|
+
background-color: var(--sendbird-dark-background-400);
|
|
4531
|
+
}
|
|
4532
|
+
.sendbird-unknown-message-item-body .sendbird-unknown-message-item-body__header {
|
|
4533
|
+
display: block;
|
|
4534
|
+
}
|
|
4535
|
+
.sendbird-unknown-message-item-body .sendbird-unknown-message-item-body__description {
|
|
4536
|
+
display: block;
|
|
4537
|
+
}
|
|
4539
4538
|
.sendbird-fileviewer__header__right__actions__download,
|
|
4540
4539
|
.sendbird-fileviewer__header__right__actions__delete,
|
|
4541
4540
|
.sendbird-fileviewer__header__right__actions__close {
|
|
@@ -4658,6 +4657,59 @@ div.sendbird-og-message-item-body__text-bubble {
|
|
|
4658
4657
|
justify-content: center;
|
|
4659
4658
|
align-items: center;
|
|
4660
4659
|
}
|
|
4660
|
+
.sendbird-suggested-replies {
|
|
4661
|
+
position: relative;
|
|
4662
|
+
display: flex;
|
|
4663
|
+
justify-content: flex-end;
|
|
4664
|
+
align-items: flex-end;
|
|
4665
|
+
flex-wrap: wrap;
|
|
4666
|
+
-moz-column-gap: 10px;
|
|
4667
|
+
column-gap: 10px;
|
|
4668
|
+
row-gap: 8px;
|
|
4669
|
+
margin-top: 16px;
|
|
4670
|
+
flex-direction: column;
|
|
4671
|
+
}
|
|
4672
|
+
.sendbird-theme--light .sendbird-suggested-replies {
|
|
4673
|
+
font-family: var(--sendbird-font-family-default);
|
|
4674
|
+
}
|
|
4675
|
+
.sendbird-theme--dark .sendbird-suggested-replies {
|
|
4676
|
+
font-family: var(--sendbird-font-family-default);
|
|
4677
|
+
}
|
|
4678
|
+
|
|
4679
|
+
.sendbird-suggested-replies__option {
|
|
4680
|
+
white-space: nowrap;
|
|
4681
|
+
height: 32px;
|
|
4682
|
+
font-size: 12px;
|
|
4683
|
+
padding: 0 14px;
|
|
4684
|
+
display: flex;
|
|
4685
|
+
align-items: center;
|
|
4686
|
+
border-radius: 18px;
|
|
4687
|
+
cursor: pointer;
|
|
4688
|
+
}
|
|
4689
|
+
.sendbird-theme--light .sendbird-suggested-replies__option {
|
|
4690
|
+
color: var(--sendbird-light-primary-300);
|
|
4691
|
+
border: 1px solid var(--sendbird-light-primary-300);
|
|
4692
|
+
background-color: var(--sendbird-light-background-50);
|
|
4693
|
+
}
|
|
4694
|
+
.sendbird-theme--dark .sendbird-suggested-replies__option {
|
|
4695
|
+
color: var(--sendbird-dark-primary-200);
|
|
4696
|
+
border: 1px solid var(--sendbird-dark-primary-200);
|
|
4697
|
+
background-color: var(--sendbird-dark-background-600);
|
|
4698
|
+
}
|
|
4699
|
+
.sendbird-theme--light .sendbird-suggested-replies__option:hover {
|
|
4700
|
+
background-color: var(--sendbird-light-background-100);
|
|
4701
|
+
}
|
|
4702
|
+
.sendbird-theme--dark .sendbird-suggested-replies__option:hover {
|
|
4703
|
+
background-color: var(--sendbird-dark-background-500);
|
|
4704
|
+
}
|
|
4705
|
+
.sendbird-theme--light .sendbird-suggested-replies__option:active {
|
|
4706
|
+
background-color: var(--sendbird-light-primary-300);
|
|
4707
|
+
color: var(--sendbird-light-background-50);
|
|
4708
|
+
}
|
|
4709
|
+
.sendbird-theme--dark .sendbird-suggested-replies__option:active {
|
|
4710
|
+
background-color: var(--sendbird-dark-primary-200);
|
|
4711
|
+
color: var(--sendbird-dark-background-600);
|
|
4712
|
+
}
|
|
4661
4713
|
.sendbird-notification--hide,
|
|
4662
4714
|
.sendbird-notification {
|
|
4663
4715
|
position: absolute;
|
|
@@ -4755,6 +4807,65 @@ div.sendbird-og-message-item-body__text-bubble {
|
|
|
4755
4807
|
justify-content: center;
|
|
4756
4808
|
margin-right: 8px;
|
|
4757
4809
|
}
|
|
4810
|
+
.typing-dots-container {
|
|
4811
|
+
align-items: center;
|
|
4812
|
+
border-radius: 16px;
|
|
4813
|
+
display: flex;
|
|
4814
|
+
gap: 6px;
|
|
4815
|
+
justify-content: center;
|
|
4816
|
+
padding: 16px 12px;
|
|
4817
|
+
}
|
|
4818
|
+
.sendbird-theme--light .typing-dots-container {
|
|
4819
|
+
background-color: var(--sendbird-light-background-100);
|
|
4820
|
+
}
|
|
4821
|
+
.sendbird-theme--dark .typing-dots-container {
|
|
4822
|
+
background-color: var(--sendbird-dark-background-400);
|
|
4823
|
+
}
|
|
4824
|
+
.typing-dots-container span {
|
|
4825
|
+
animation: blink 1.4s infinite;
|
|
4826
|
+
animation-fill-mode: both;
|
|
4827
|
+
border-radius: 50%;
|
|
4828
|
+
height: 8px;
|
|
4829
|
+
width: 8px;
|
|
4830
|
+
}
|
|
4831
|
+
.sendbird-theme--light .typing-dots-container span {
|
|
4832
|
+
background-color: var(--sendbird-light-background-700);
|
|
4833
|
+
}
|
|
4834
|
+
.sendbird-theme--dark .typing-dots-container span {
|
|
4835
|
+
background-color: var(--sendbird-dark-background-50);
|
|
4836
|
+
}
|
|
4837
|
+
.typing-dots-container span:nth-child(1) {
|
|
4838
|
+
animation-delay: 0.4s;
|
|
4839
|
+
}
|
|
4840
|
+
.typing-dots-container span:nth-child(2) {
|
|
4841
|
+
animation-delay: 0.6s;
|
|
4842
|
+
}
|
|
4843
|
+
.typing-dots-container span:nth-child(3) {
|
|
4844
|
+
animation-delay: 0.8s;
|
|
4845
|
+
}
|
|
4846
|
+
|
|
4847
|
+
@keyframes blink {
|
|
4848
|
+
0% {
|
|
4849
|
+
opacity: 0.12;
|
|
4850
|
+
transform: scale(1);
|
|
4851
|
+
}
|
|
4852
|
+
14.3% {
|
|
4853
|
+
opacity: 0.38;
|
|
4854
|
+
transform: scale(1.2);
|
|
4855
|
+
}
|
|
4856
|
+
28.6% {
|
|
4857
|
+
opacity: 0.38;
|
|
4858
|
+
transform: scale(1.2);
|
|
4859
|
+
}
|
|
4860
|
+
42.9% {
|
|
4861
|
+
opacity: 0.12;
|
|
4862
|
+
transform: scale(1);
|
|
4863
|
+
}
|
|
4864
|
+
100% {
|
|
4865
|
+
opacity: 0.12;
|
|
4866
|
+
transform: scale(1);
|
|
4867
|
+
}
|
|
4868
|
+
}
|
|
4758
4869
|
.sendbird-message-input-wrapper--voice-message,
|
|
4759
4870
|
.sendbird-message-input-wrapper {
|
|
4760
4871
|
position: relative;
|