@mobilon-dev/chotto 0.3.105 → 0.3.107
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/dist/chotto.css +1 -1
- package/dist/components/2_feed_elements/AudioMessage/AudioMessage.vue.js +2 -2
- package/dist/components/2_feed_elements/AudioMessage/AudioMessage.vue2.js +293 -266
- package/dist/components/2_feed_elements/FeedReplyQuote/FeedReplyQuote.vue.js +7 -0
- package/dist/components/2_feed_elements/FeedReplyQuote/FeedReplyQuote.vue2.js +73 -0
- package/dist/components/2_feed_elements/FileMessage/FileMessage.vue.js +1 -1
- package/dist/components/2_feed_elements/FileMessage/FileMessage.vue2.js +185 -158
- package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue.js +3 -3
- package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue2.js +227 -200
- package/dist/components/2_feed_elements/MessageReactions/MessageReactions.vue.js +2 -2
- package/dist/components/2_feed_elements/MessageReactions/MessageReactions.vue2.js +62 -245
- package/dist/components/2_feed_elements/MessageReactions/MessageReactionsOverlay.vue.js +7 -0
- package/dist/components/2_feed_elements/MessageReactions/MessageReactionsOverlay.vue2.js +231 -0
- package/dist/components/2_feed_elements/MessageReactions/composables/usePositioning.js +25 -25
- package/dist/components/2_feed_elements/StickerMessage/StickerMessage.vue.js +2 -2
- package/dist/components/2_feed_elements/StickerMessage/StickerMessage.vue2.js +213 -186
- package/dist/components/2_feed_elements/TextMessage/TextMessage.vue.js +2 -2
- package/dist/components/2_feed_elements/TextMessage/TextMessage.vue2.js +190 -164
- package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue.js +1 -1
- package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue2.js +209 -182
- package/dist/components/3_compounds/Feed/Feed.vue.js +2 -2
- package/dist/components/3_compounds/Feed/Feed.vue2.js +261 -213
- package/dist/components/3_compounds/Feed/composables/useFeedGrouping.js +23 -20
- package/dist/components/3_compounds/Feed/composables/useFeedProgressiveRender.js +82 -0
- package/dist/components/3_compounds/Feed/composables/useFeedReactionsOverlay.js +34 -0
- package/dist/hooks/messages/useMessageActions.js +81 -70
- package/dist/hooks/messages/useMessageReactionsInFeed.js +53 -0
- package/dist/hooks/messages/useMessageReactionsMount.js +21 -0
- package/dist/index.js +245 -238
- package/dist/types/components/2_feed_elements/FeedReplyQuote/FeedReplyQuote.vue.d.ts +19 -0
- package/dist/types/components/2_feed_elements/MessageReactions/MessageReactions.vue.d.ts +4 -71
- package/dist/types/components/2_feed_elements/MessageReactions/MessageReactionsOverlay.vue.d.ts +2 -0
- package/dist/types/components/2_feed_elements/MessageReactions/composables/usePositioning.d.ts +2 -1
- package/dist/types/components/3_compounds/Feed/Feed.vue.d.ts +6 -0
- package/dist/types/components/3_compounds/Feed/composables/index.d.ts +2 -0
- package/dist/types/components/3_compounds/Feed/composables/useFeedGrouping.d.ts +3 -22
- package/dist/types/components/3_compounds/Feed/composables/useFeedProgressiveRender.d.ts +22 -0
- package/dist/types/components/3_compounds/Feed/composables/useFeedReactionsOverlay.d.ts +52 -0
- package/dist/types/components/index.d.ts +1 -0
- package/dist/types/hooks/messages/index.d.ts +2 -0
- package/dist/types/hooks/messages/useMessageReactionsInFeed.d.ts +25 -0
- package/dist/types/hooks/messages/useMessageReactionsMount.d.ts +10 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10,20 +10,20 @@ import { default as M } from "./components/1_icons/AvatarIcon.vue.js";
|
|
|
10
10
|
import { default as C } from "./components/1_icons/CheckIcon.vue.js";
|
|
11
11
|
import { default as h } from "./components/1_icons/CloseButtonIcon.vue.js";
|
|
12
12
|
import { default as R } from "./components/1_icons/ContactCRMIcon.vue.js";
|
|
13
|
-
import { default as
|
|
13
|
+
import { default as T } from "./components/1_icons/MenuIcon.vue.js";
|
|
14
14
|
import { default as F } from "./components/1_icons/SearchIcon.vue.js";
|
|
15
|
-
import { default as
|
|
16
|
-
import { default as
|
|
17
|
-
import { default as
|
|
15
|
+
import { default as E } from "./components/1_icons/SettingsIcon.vue.js";
|
|
16
|
+
import { default as D } from "./components/1_icons/TelegramIcon.vue.js";
|
|
17
|
+
import { default as v } from "./components/1_icons/WhatsAppIcon.vue.js";
|
|
18
18
|
import { default as k } from "./components/1_icons/MessageStatus/ErrorStatusIcon.vue.js";
|
|
19
19
|
import { default as V } from "./components/1_icons/MessageStatus/PendingStatusIcon.vue.js";
|
|
20
20
|
import { default as H } from "./components/1_icons/MessageStatus/ReadStatusIcon.vue.js";
|
|
21
|
-
import { default as
|
|
22
|
-
import { default as
|
|
23
|
-
import { default as
|
|
24
|
-
import { default as
|
|
25
|
-
import { default as
|
|
26
|
-
import { default as
|
|
21
|
+
import { default as N } from "./components/1_icons/MessageStatus/ReceivedStatusIcon.vue.js";
|
|
22
|
+
import { default as U } from "./components/1_icons/MessageStatus/SentStatusIcon.vue.js";
|
|
23
|
+
import { default as K } from "./components/2_blocks/CommunicationPanel/CommunicationPanel.vue.js";
|
|
24
|
+
import { default as G } from "./components/2_blocks/FeedFoundItem/FeedFoundItem.vue.js";
|
|
25
|
+
import { default as Y } from "./components/2_blocks/FeedFoundObjects/FeedFoundObjects.vue.js";
|
|
26
|
+
import { default as z } from "./components/2_blocks/FeedSearch/FeedSearch.vue.js";
|
|
27
27
|
import { default as Z } from "./components/2_chatinput_elements/ButtonCommandsSelector/ButtonCommandsSelector.vue.js";
|
|
28
28
|
import { default as ee } from "./components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue.js";
|
|
29
29
|
import { default as oe } from "./components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue.js";
|
|
@@ -37,272 +37,279 @@ import { default as Me } from "./components/2_chatinput_elements/TextFormatToolb
|
|
|
37
37
|
import { default as Ce } from "./components/2_chatinput_elements/WABAAttachmentSection/WABAAttachmentSection.vue.js";
|
|
38
38
|
import { default as he } from "./components/2_chatinput_elements/WABAQuickReplyButtons/WABAQuickReplyButtons.vue.js";
|
|
39
39
|
import { default as Re } from "./components/2_chatinput_elements/WABASeparatedQuickButtons/WABASeparatedQuickButtons.vue.js";
|
|
40
|
-
import { default as
|
|
40
|
+
import { default as Te } from "./components/2_chatinput_elements/WABATemplateSelector/WABATemplateSelector.vue.js";
|
|
41
41
|
import { default as Fe } from "./components/2_chatlist_elements/ChatFilter/ChatFilter.vue.js";
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
42
|
+
import { default as Ee } from "./components/2_chatlist_elements/ChatItem/ChatItem.vue.js";
|
|
43
|
+
import { default as De } from "./components/2_chatlist_elements/ChatTabs/ChatTabs.vue.js";
|
|
44
|
+
import { default as ve } from "./components/2_elements/AudioRecorder/AudioRecorder.vue.js";
|
|
45
45
|
import { default as ke } from "./components/2_elements/ChannelSelector/ChannelSelector.vue.js";
|
|
46
46
|
import { default as Ve } from "./components/2_elements/ChatInfo/ChatInfo.vue.js";
|
|
47
47
|
import { default as He } from "./components/2_elements/ChatPanel/ChatPanel.vue.js";
|
|
48
|
-
import { default as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as Ze } from "./components/2_feed_elements/
|
|
55
|
-
import { default as et } from "./components/2_feed_elements/
|
|
56
|
-
import { default as ot } from "./components/2_feed_elements/
|
|
57
|
-
import { default as rt } from "./components/2_feed_elements/
|
|
58
|
-
import { default as ft } from "./components/2_feed_elements/
|
|
59
|
-
import { default as dt } from "./components/2_feed_elements/
|
|
60
|
-
import { default as mt } from "./components/2_feed_elements/
|
|
61
|
-
import { default as xt } from "./components/2_feed_elements/
|
|
62
|
-
import { default as nt } from "./components/2_feed_elements/
|
|
63
|
-
import { default as Mt } from "./components/2_feed_elements/
|
|
64
|
-
import { default as Ct } from "./components/2_feed_elements/
|
|
65
|
-
import { default as ht } from "./components/2_feed_elements/
|
|
66
|
-
import { default as Rt } from "./components/2_feed_elements/
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as Ft } from "./components/2_feed_elements/
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as kt } from "./components/2_feed_elements/
|
|
73
|
-
import { default as Vt } from "./components/2_feed_elements/
|
|
74
|
-
import { default as Ht } from "./components/2_feed_elements/
|
|
75
|
-
import { default as
|
|
76
|
-
import { default as
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
48
|
+
import { default as Ne } from "./components/2_elements/ContactInfo/ContactInfo.vue.js";
|
|
49
|
+
import { default as Ue } from "./components/2_elements/ThemeMode/ThemeMode.vue.js";
|
|
50
|
+
import { default as Ke } from "./components/2_elements/UserProfile/UserProfile.vue.js";
|
|
51
|
+
import { default as Ge } from "./components/2_elements/VideoRecorder/VideoRecorder.vue.js";
|
|
52
|
+
import { default as Ye } from "./components/2_feed_elements/AudioMessage/AudioMessage.vue.js";
|
|
53
|
+
import { default as ze } from "./components/2_feed_elements/BaseReplyMessage/BaseReplyMessage.vue.js";
|
|
54
|
+
import { default as Ze } from "./components/2_feed_elements/FeedReplyQuote/FeedReplyQuote.vue.js";
|
|
55
|
+
import { default as et } from "./components/2_feed_elements/BaseEditMessage/BaseEditMessage.vue.js";
|
|
56
|
+
import { default as ot } from "./components/2_feed_elements/CallMessage/CallMessage.vue.js";
|
|
57
|
+
import { default as rt } from "./components/2_feed_elements/DateMessage/DateMessage.vue.js";
|
|
58
|
+
import { default as ft } from "./components/2_feed_elements/DeletedMessageContent/DeletedMessageContent.vue.js";
|
|
59
|
+
import { default as dt } from "./components/2_feed_elements/MissedCallMessage/MissedCallMessage.vue.js";
|
|
60
|
+
import { default as mt } from "./components/2_feed_elements/DateMessageSticky/DateMessageSticky.vue.js";
|
|
61
|
+
import { default as xt } from "./components/2_feed_elements/DelimiterMessage/DelimiterMessage.vue.js";
|
|
62
|
+
import { default as nt } from "./components/2_feed_elements/EditTextMessage/EditTextMessage.vue.js";
|
|
63
|
+
import { default as Mt } from "./components/2_feed_elements/FeedKeyboard/FeedKeyboard.vue.js";
|
|
64
|
+
import { default as Ct } from "./components/2_feed_elements/FileMessage/FileMessage.vue.js";
|
|
65
|
+
import { default as ht } from "./components/2_feed_elements/ImageMessage/ImageMessage.vue.js";
|
|
66
|
+
import { default as Rt } from "./components/2_feed_elements/MessageKeyboard/MessageKeyboard.vue.js";
|
|
67
|
+
import { default as Tt } from "./components/2_feed_elements/MessageReactions/MessageReactions.vue.js";
|
|
68
|
+
import { default as Ft } from "./components/2_feed_elements/MessageStatusIndicator/MessageStatusIndicator.vue.js";
|
|
69
|
+
import { default as Et } from "./components/2_feed_elements/StickerMessage/StickerMessage.vue.js";
|
|
70
|
+
import { default as Dt } from "./components/2_feed_elements/ReplyAudioMessage/ReplyAudioMessage.vue.js";
|
|
71
|
+
import { default as vt } from "./components/2_feed_elements/ReplyCallMessage/ReplyCallMessage.vue.js";
|
|
72
|
+
import { default as kt } from "./components/2_feed_elements/ReplyFileMessage/ReplyFileMessage.vue.js";
|
|
73
|
+
import { default as Vt } from "./components/2_feed_elements/ReplyImageMessage/ReplyImageMessage.vue.js";
|
|
74
|
+
import { default as Ht } from "./components/2_feed_elements/ReplyStickerMessage/ReplyStickerMessage.vue.js";
|
|
75
|
+
import { default as Nt } from "./components/2_feed_elements/ReplyTextMessage/ReplyTextMessage.vue.js";
|
|
76
|
+
import { default as Ut } from "./components/2_feed_elements/ReplyVideoMessage/ReplyVideoMessage.vue.js";
|
|
77
|
+
import { default as Kt } from "./components/2_feed_elements/SplashScreen/SplashScreen.vue.js";
|
|
78
|
+
import { default as Gt } from "./components/2_feed_elements/SystemMessage/SystemMessage.vue.js";
|
|
79
|
+
import { default as Yt } from "./components/2_feed_elements/TextMessage/TextMessage.vue.js";
|
|
79
80
|
import { default as zt } from "./components/2_feed_elements/TypingMessage/TypingMessage.vue.js";
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
89
|
-
import { default as
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { default as
|
|
96
|
-
import { default as
|
|
97
|
-
import { default as
|
|
98
|
-
import { buildFilePreview as
|
|
99
|
-
import { getTypeFileByMime as
|
|
100
|
-
import { uploadFile as
|
|
101
|
-
import { useDelayDebouncedRef as
|
|
102
|
-
import { useImmediateDebouncedRef as
|
|
103
|
-
import { MAX_ATTACHED_FILES as
|
|
104
|
-
import { useSearchModel as
|
|
105
|
-
import { useTheme as
|
|
106
|
-
import { useEmojiNative as
|
|
107
|
-
import { useModalCreateChat as
|
|
108
|
-
import { useModalCreateChat2 as
|
|
109
|
-
import { useModalCreateDialog as
|
|
110
|
-
import { useConfirmDeleteMessage as
|
|
111
|
-
import { useModalSelectUser2 as
|
|
112
|
-
import { useModalVideoRecorder as
|
|
113
|
-
import { getValidationReport as
|
|
114
|
-
import { useChatValidator as
|
|
115
|
-
import { getMessageValidationReport as
|
|
116
|
-
import { useMessageValidator as
|
|
117
|
-
import { getSidebarValidationReport as
|
|
118
|
-
import { useSidebarValidator as
|
|
119
|
-
import { useValidation as
|
|
120
|
-
import { useMessageActions as
|
|
121
|
-
import { useMessageHoverActions as
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
134
|
-
import {
|
|
135
|
-
import {
|
|
136
|
-
import {
|
|
137
|
-
import {
|
|
138
|
-
import {
|
|
139
|
-
import {
|
|
140
|
-
import {
|
|
141
|
-
import {
|
|
142
|
-
import {
|
|
143
|
-
import {
|
|
144
|
-
import {
|
|
81
|
+
import { default as Zt } from "./components/2_feed_elements/VideoMessage/VideoMessage.vue.js";
|
|
82
|
+
import { default as eo } from "./components/2_modals/Modal/Modal.vue.js";
|
|
83
|
+
import { default as oo } from "./components/2_modals/ModalFullscreen/ModalFullscreen.vue.js";
|
|
84
|
+
import { default as ro } from "./components/2_modals/ModalNoFooter/ModalNoFooter.vue.js";
|
|
85
|
+
import { default as fo } from "./components/2_modals/ConfirmDeleteMessage/ConfirmDeleteMessage.vue.js";
|
|
86
|
+
import { default as po } from "./components/2_modals/SelectUser/SelectUser.vue.js";
|
|
87
|
+
import { default as uo } from "./components/3_compounds/ChatInput/ChatInput.vue.js";
|
|
88
|
+
import { default as io } from "./components/3_compounds/ChatList/ChatListHeader.vue.js";
|
|
89
|
+
import { default as co } from "./components/3_compounds/ChatList/ChatList.vue.js";
|
|
90
|
+
import { default as go } from "./components/3_compounds/Feed/Feed.vue.js";
|
|
91
|
+
import { default as So } from "./components/3_compounds/SideBar/SideBar.vue.js";
|
|
92
|
+
import { default as yo } from "./components/4_layouts/BaseLayout/BaseLayout.vue.js";
|
|
93
|
+
import { default as Ao } from "./components/4_layouts/ExtendedLayout/ExtendedLayout.vue.js";
|
|
94
|
+
import { default as Io } from "./components/4_layouts/AdaptiveExtendedLayout/AdaptiveExtendedLayout.vue.js";
|
|
95
|
+
import { default as Po } from "./components/4_layouts/FeedLayout/FeedLayout.vue.js";
|
|
96
|
+
import { default as Bo } from "./components/4_layouts/ChatWrapper/ChatWrapper.vue.js";
|
|
97
|
+
import { default as bo } from "./components/5_containers/BaseContainer/BaseContainer.vue.js";
|
|
98
|
+
import { default as Lo } from "./components/5_containers/FloatContainer/FloatContainer.vue.js";
|
|
99
|
+
import { buildFilePreview as wo, generatePreview as Vo } from "./hooks/uploadFile/generatePreview.js";
|
|
100
|
+
import { getTypeFileByMime as Ho } from "./hooks/uploadFile/getTypeFileByMime.js";
|
|
101
|
+
import { uploadFile as No } from "./hooks/uploadFile/uploadFile.js";
|
|
102
|
+
import { useDelayDebouncedRef as Uo } from "./hooks/useDelayDebouncedRef.js";
|
|
103
|
+
import { useImmediateDebouncedRef as Ko } from "./hooks/useImmediateDebouncedRef.js";
|
|
104
|
+
import { MAX_ATTACHED_FILES as Go, commitChatDraftToList as Xo, getChatDraft as Yo, getDraftFiles as qo, useMessageDraft as zo } from "./hooks/useMessageDraft.js";
|
|
105
|
+
import { useSearchModel as Zo } from "./hooks/useSearchModel.js";
|
|
106
|
+
import { useTheme as ea } from "./hooks/useTheme.js";
|
|
107
|
+
import { useEmojiNative as oa } from "./hooks/useEmojiNative.js";
|
|
108
|
+
import { useModalCreateChat as ra } from "./hooks/modals/useCreateChat.js";
|
|
109
|
+
import { useModalCreateChat2 as fa } from "./hooks/modals/useCreateChat2.js";
|
|
110
|
+
import { useModalCreateDialog as da } from "./hooks/modals/useCreateDialog.js";
|
|
111
|
+
import { useConfirmDeleteMessage as ma } from "./hooks/modals/useConfirmDeleteMessage.js";
|
|
112
|
+
import { useModalSelectUser2 as xa } from "./hooks/modals/useModalSelectUser2.js";
|
|
113
|
+
import { useModalVideoRecorder as na } from "./hooks/modals/useVideoRecorder.js";
|
|
114
|
+
import { getValidationReport as Ma, validateChats as ga } from "./hooks/validators/chats/chatValidator.js";
|
|
115
|
+
import { useChatValidator as Sa } from "./hooks/validators/chats/useChatValidator.js";
|
|
116
|
+
import { getMessageValidationReport as ya, validateMessages as Ra } from "./hooks/validators/messages/messageValidator.js";
|
|
117
|
+
import { useMessageValidator as Ta } from "./hooks/validators/messages/useMessageValidator.js";
|
|
118
|
+
import { getSidebarValidationReport as Fa, validateSidebarItems as Pa } from "./hooks/validators/sidebar/sidebarValidator.js";
|
|
119
|
+
import { useSidebarValidator as Ba } from "./hooks/validators/sidebar/useSidebarValidator.js";
|
|
120
|
+
import { useValidation as ba } from "./hooks/validators/useValidation.js";
|
|
121
|
+
import { useMessageActions as La } from "./hooks/messages/useMessageActions.js";
|
|
122
|
+
import { useMessageHoverActions as wa } from "./hooks/messages/useMessageHoverActions.js";
|
|
123
|
+
import { useMessageReactionsMount as Wa } from "./hooks/messages/useMessageReactionsMount.js";
|
|
124
|
+
import { MESSAGE_REACTIONS_PATCH_KEY as _a, useMessageReactionsInFeed as Na } from "./hooks/messages/useMessageReactionsInFeed.js";
|
|
125
|
+
import { calculateMessageMenuPosition as Ua, findAppBoundsRect as ja } from "./hooks/messages/calculateMessageMenuPosition.js";
|
|
126
|
+
import { useMessageMenuActions as Qa } from "./hooks/messages/useMessageMenuActions.js";
|
|
127
|
+
import { useMessageLinks as Xa } from "./hooks/messages/useMessageLinks.js";
|
|
128
|
+
import { useChannelAccentColor as qa } from "./hooks/messages/useChannelAccentColor.js";
|
|
129
|
+
import { useSubtextTooltip as Ja } from "./hooks/messages/useSubtextTooltip.js";
|
|
130
|
+
import { hideReplyPreview as $a, showReplyPreview as er, useStartReply as tr } from "./hooks/messages/useStartReply.js";
|
|
131
|
+
import { hideEditPreview as ar, showEditPreview as rr, useStartEdit as sr } from "./hooks/messages/useStartEdit.js";
|
|
132
|
+
import { canStartEditLastSent as lr, isCursorOnFirstLine as dr, isEditableLastSentCandidate as pr } from "./hooks/messages/canStartEditLastSent.js";
|
|
133
|
+
import { buildReplyPayload as ur } from "./hooks/messages/buildReplyPayload.js";
|
|
134
|
+
import { buildEditPayload as ir } from "./hooks/messages/buildEditPayload.js";
|
|
135
|
+
import { getEditTooltipLines as cr } from "./hooks/messages/getEditTooltipLines.js";
|
|
136
|
+
import { getDeletedOriginalText as gr, getDeletedTooltipLines as Cr } from "./hooks/messages/getDeletedOriginalText.js";
|
|
137
|
+
import { getStatus as hr, getStatusTitle as yr, statuses as Rr } from "./functions/getStatusMessage.js";
|
|
138
|
+
import { formatTimestamp as Tr } from "./functions/formatTimestamp.js";
|
|
139
|
+
import { playNotificationAudio as Fr } from "./functions/playNotificationAudio.js";
|
|
140
|
+
import { insertDaySeparators as Er } from "./functions/insertDaySeparators.js";
|
|
141
|
+
import { sortByTimestamp as Dr } from "./functions/sortByTimestamp.js";
|
|
142
|
+
import { getMessageClass as vr } from "./functions/getMessageClass.js";
|
|
143
|
+
import { createReactionHandlers as kr } from "./functions/createReactionHandlers.js";
|
|
144
|
+
import { getChannelAccentColor as Vr } from "./functions/getChannelAccentColor.js";
|
|
145
|
+
import { isSmsChannel as Hr, isSmsFeedMessage as _r } from "./functions/isSmsChannel.js";
|
|
146
|
+
import { parseMarkdown as Or } from "./functions/parseMarkdown.js";
|
|
147
|
+
import { safeMediaPlay as jr, safeMediaPlayVoid as Kr } from "./functions/safeMediaPlay.js";
|
|
145
148
|
export {
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
+
Io as AdaptiveExtendedLayout,
|
|
150
|
+
Ye as AudioMessage,
|
|
151
|
+
ve as AudioRecorder,
|
|
149
152
|
M as AvatarIcon,
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
153
|
+
bo as BaseContainer,
|
|
154
|
+
et as BaseEditMessage,
|
|
155
|
+
yo as BaseLayout,
|
|
156
|
+
ze as BaseReplyMessage,
|
|
154
157
|
Z as ButtonCommandsSelector,
|
|
155
158
|
r as ButtonContextMenu,
|
|
156
159
|
ee as ButtonEmojiPicker,
|
|
157
160
|
oe as ButtonTemplateSelector,
|
|
158
161
|
re as ButtonWabaTemplateSelector,
|
|
159
|
-
|
|
162
|
+
ot as CallMessage,
|
|
160
163
|
ke as ChannelSelector,
|
|
161
164
|
Fe as ChatFilter,
|
|
162
165
|
Ve as ChatInfo,
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
166
|
+
uo as ChatInput,
|
|
167
|
+
Ee as ChatItem,
|
|
168
|
+
co as ChatList,
|
|
169
|
+
io as ChatListHeader,
|
|
167
170
|
He as ChatPanel,
|
|
168
|
-
|
|
169
|
-
|
|
171
|
+
De as ChatTabs,
|
|
172
|
+
Bo as ChatWrapper,
|
|
170
173
|
C as CheckIcon,
|
|
171
174
|
h as CloseButtonIcon,
|
|
172
|
-
|
|
173
|
-
|
|
175
|
+
K as CommunicationPanel,
|
|
176
|
+
fo as ConfirmDeleteMessage,
|
|
174
177
|
R as ContactCRMIcon,
|
|
175
178
|
f as ContactContextMenu,
|
|
176
|
-
|
|
179
|
+
Ne as ContactInfo,
|
|
177
180
|
d as ContextMenu,
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
181
|
+
rt as DateMessage,
|
|
182
|
+
mt as DateMessageSticky,
|
|
183
|
+
ft as DeletedMessageContent,
|
|
184
|
+
xt as DelimiterMessage,
|
|
185
|
+
nt as EditTextMessage,
|
|
183
186
|
m as EmbedPreview,
|
|
184
187
|
k as ErrorStatusIcon,
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
188
|
+
Ao as ExtendedLayout,
|
|
189
|
+
go as Feed,
|
|
190
|
+
G as FeedFoundItem,
|
|
191
|
+
Y as FeedFoundObjects,
|
|
192
|
+
Mt as FeedKeyboard,
|
|
193
|
+
Po as FeedLayout,
|
|
194
|
+
Ze as FeedReplyQuote,
|
|
195
|
+
z as FeedSearch,
|
|
196
|
+
Ct as FileMessage,
|
|
193
197
|
fe as FilePreview,
|
|
194
198
|
de as FileUploader,
|
|
195
|
-
|
|
196
|
-
|
|
199
|
+
Lo as FloatContainer,
|
|
200
|
+
ht as ImageMessage,
|
|
197
201
|
x as LinkPreview,
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
Rt as
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
eo as
|
|
206
|
-
oo as
|
|
202
|
+
Go as MAX_ATTACHED_FILES,
|
|
203
|
+
_a as MESSAGE_REACTIONS_PATCH_KEY,
|
|
204
|
+
T as MenuIcon,
|
|
205
|
+
Rt as MessageKeyboard,
|
|
206
|
+
Tt as MessageReactions,
|
|
207
|
+
Ft as MessageStatusIndicator,
|
|
208
|
+
dt as MissedCallMessage,
|
|
209
|
+
eo as Modal,
|
|
210
|
+
oo as ModalFullscreen,
|
|
211
|
+
ro as ModalNoFooter,
|
|
207
212
|
V as PendingStatusIcon,
|
|
208
213
|
me as PlaceholderComponent,
|
|
209
214
|
H as ReadStatusIcon,
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
215
|
+
N as ReceivedStatusIcon,
|
|
216
|
+
Dt as ReplyAudioMessage,
|
|
217
|
+
vt as ReplyCallMessage,
|
|
218
|
+
kt as ReplyFileMessage,
|
|
219
|
+
Vt as ReplyImageMessage,
|
|
220
|
+
Ht as ReplyStickerMessage,
|
|
221
|
+
Nt as ReplyTextMessage,
|
|
222
|
+
Ut as ReplyVideoMessage,
|
|
218
223
|
F as SearchIcon,
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
224
|
+
po as SelectUser,
|
|
225
|
+
U as SentStatusIcon,
|
|
226
|
+
E as SettingsIcon,
|
|
227
|
+
So as SideBar,
|
|
228
|
+
Kt as SplashScreen,
|
|
229
|
+
Et as StickerMessage,
|
|
225
230
|
xe as StickerPicker,
|
|
226
|
-
|
|
227
|
-
|
|
231
|
+
Gt as SystemMessage,
|
|
232
|
+
D as TelegramIcon,
|
|
228
233
|
ne as TemplateSelector,
|
|
229
234
|
Me as TextFormatToolbar,
|
|
230
|
-
|
|
231
|
-
|
|
235
|
+
Yt as TextMessage,
|
|
236
|
+
Ue as ThemeMode,
|
|
232
237
|
n as Tooltip,
|
|
233
238
|
zt as TypingMessage,
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
239
|
+
Ke as UserProfile,
|
|
240
|
+
Zt as VideoMessage,
|
|
241
|
+
Ge as VideoRecorder,
|
|
237
242
|
Ce as WABAAttachmentSection,
|
|
238
243
|
he as WABAQuickReplyButtons,
|
|
239
244
|
Re as WABASeparatedQuickButtons,
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
245
|
+
Te as WABATemplateSelector,
|
|
246
|
+
v as WhatsAppIcon,
|
|
247
|
+
ir as buildEditPayload,
|
|
248
|
+
wo as buildFilePreview,
|
|
249
|
+
ur as buildReplyPayload,
|
|
250
|
+
Ua as calculateMessageMenuPosition,
|
|
251
|
+
lr as canStartEditLastSent,
|
|
252
|
+
Xo as commitChatDraftToList,
|
|
253
|
+
kr as createReactionHandlers,
|
|
254
|
+
ja as findAppBoundsRect,
|
|
255
|
+
Tr as formatTimestamp,
|
|
256
|
+
Vo as generatePreview,
|
|
257
|
+
Vr as getChannelAccentColor,
|
|
258
|
+
Yo as getChatDraft,
|
|
259
|
+
gr as getDeletedOriginalText,
|
|
260
|
+
Cr as getDeletedTooltipLines,
|
|
256
261
|
qo as getDraftFiles,
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
262
|
+
cr as getEditTooltipLines,
|
|
263
|
+
vr as getMessageClass,
|
|
264
|
+
ya as getMessageValidationReport,
|
|
265
|
+
Fa as getSidebarValidationReport,
|
|
266
|
+
hr as getStatus,
|
|
267
|
+
yr as getStatusTitle,
|
|
268
|
+
Ho as getTypeFileByMime,
|
|
269
|
+
Ma as getValidationReport,
|
|
270
|
+
ar as hideEditPreview,
|
|
271
|
+
$a as hideReplyPreview,
|
|
272
|
+
Er as insertDaySeparators,
|
|
273
|
+
dr as isCursorOnFirstLine,
|
|
274
|
+
pr as isEditableLastSentCandidate,
|
|
275
|
+
Hr as isSmsChannel,
|
|
276
|
+
_r as isSmsFeedMessage,
|
|
277
|
+
Or as parseMarkdown,
|
|
278
|
+
Fr as playNotificationAudio,
|
|
279
|
+
jr as safeMediaPlay,
|
|
280
|
+
Kr as safeMediaPlayVoid,
|
|
281
|
+
rr as showEditPreview,
|
|
282
|
+
er as showReplyPreview,
|
|
283
|
+
Dr as sortByTimestamp,
|
|
284
|
+
Rr as statuses,
|
|
285
|
+
No as uploadFile,
|
|
286
|
+
qa as useChannelAccentColor,
|
|
287
|
+
Sa as useChatValidator,
|
|
288
|
+
ma as useConfirmDeleteMessage,
|
|
289
|
+
Uo as useDelayDebouncedRef,
|
|
290
|
+
oa as useEmojiNative,
|
|
291
|
+
Ko as useImmediateDebouncedRef,
|
|
292
|
+
La as useMessageActions,
|
|
288
293
|
zo as useMessageDraft,
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
294
|
+
wa as useMessageHoverActions,
|
|
295
|
+
Xa as useMessageLinks,
|
|
296
|
+
Qa as useMessageMenuActions,
|
|
297
|
+
Na as useMessageReactionsInFeed,
|
|
298
|
+
Wa as useMessageReactionsMount,
|
|
299
|
+
Ta as useMessageValidator,
|
|
300
|
+
ra as useModalCreateChat,
|
|
301
|
+
fa as useModalCreateChat2,
|
|
302
|
+
da as useModalCreateDialog,
|
|
303
|
+
xa as useModalSelectUser2,
|
|
304
|
+
na as useModalVideoRecorder,
|
|
305
|
+
Zo as useSearchModel,
|
|
306
|
+
Ba as useSidebarValidator,
|
|
307
|
+
sr as useStartEdit,
|
|
308
|
+
tr as useStartReply,
|
|
309
|
+
Ja as useSubtextTooltip,
|
|
310
|
+
ea as useTheme,
|
|
311
|
+
ba as useValidation,
|
|
312
|
+
ga as validateChats,
|
|
313
|
+
Ra as validateMessages,
|
|
314
|
+
Pa as validateSidebarItems
|
|
308
315
|
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { Reply } from '@/types';
|
|
2
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
message: {
|
|
4
|
+
type: () => Reply;
|
|
5
|
+
default: () => Reply;
|
|
6
|
+
};
|
|
7
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
+
reply: (...args: any[]) => void;
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
|
+
message: {
|
|
11
|
+
type: () => Reply;
|
|
12
|
+
default: () => Reply;
|
|
13
|
+
};
|
|
14
|
+
}>> & Readonly<{
|
|
15
|
+
onReply?: ((...args: any[]) => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
message: Reply;
|
|
18
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
19
|
+
export default _default;
|