@mobilon-dev/chotto 0.3.106 → 0.3.108
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 +295 -268
- package/dist/components/2_feed_elements/FileMessage/FileMessage.vue.js +2 -2
- 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 +209 -182
- 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 +3 -3
- package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue2.js +208 -181
- package/dist/components/3_compounds/Feed/Feed.vue.js +1 -1
- package/dist/components/3_compounds/Feed/Feed.vue2.js +207 -197
- package/dist/components/3_compounds/Feed/composables/useFeedProgressiveRender.js +52 -49
- package/dist/components/3_compounds/Feed/composables/useFeedReactionsOverlay.js +34 -0
- package/dist/hooks/messages/useMessageActions.js +81 -70
- package/dist/hooks/messages/useMessageHoverActions.js +9 -8
- package/dist/hooks/messages/useMessageReactionsInFeed.js +53 -0
- package/dist/hooks/messages/useMessageReactionsMount.js +21 -0
- package/dist/index.js +149 -144
- package/dist/types/apps/data/messages.d.ts +197 -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/composables/index.d.ts +1 -0
- package/dist/types/components/3_compounds/Feed/composables/useFeedReactionsOverlay.d.ts +52 -0
- package/dist/types/hooks/messages/index.d.ts +2 -0
- package/dist/types/hooks/messages/useMessageHoverActions.d.ts +2 -1
- 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
|
|
14
|
-
import { default as
|
|
15
|
-
import { default as
|
|
16
|
-
import { default as
|
|
17
|
-
import { default as
|
|
13
|
+
import { default as T } from "./components/1_icons/MenuIcon.vue.js";
|
|
14
|
+
import { default as F } from "./components/1_icons/SearchIcon.vue.js";
|
|
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
|
|
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
23
|
import { default as K } from "./components/2_blocks/CommunicationPanel/CommunicationPanel.vue.js";
|
|
24
|
-
import { default as
|
|
25
|
-
import { default as
|
|
26
|
-
import { default as
|
|
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,20 +37,20 @@ 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
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
40
|
+
import { default as Te } from "./components/2_chatinput_elements/WABATemplateSelector/WABATemplateSelector.vue.js";
|
|
41
|
+
import { default as Fe } from "./components/2_chatlist_elements/ChatFilter/ChatFilter.vue.js";
|
|
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
|
|
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
50
|
import { default as Ke } from "./components/2_elements/UserProfile/UserProfile.vue.js";
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
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
54
|
import { default as Ze } from "./components/2_feed_elements/FeedReplyQuote/FeedReplyQuote.vue.js";
|
|
55
55
|
import { default as et } from "./components/2_feed_elements/BaseEditMessage/BaseEditMessage.vue.js";
|
|
56
56
|
import { default as ot } from "./components/2_feed_elements/CallMessage/CallMessage.vue.js";
|
|
@@ -64,20 +64,20 @@ import { default as Mt } from "./components/2_feed_elements/FeedKeyboard/FeedKey
|
|
|
64
64
|
import { default as Ct } from "./components/2_feed_elements/FileMessage/FileMessage.vue.js";
|
|
65
65
|
import { default as ht } from "./components/2_feed_elements/ImageMessage/ImageMessage.vue.js";
|
|
66
66
|
import { default as Rt } from "./components/2_feed_elements/MessageKeyboard/MessageKeyboard.vue.js";
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as
|
|
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
72
|
import { default as kt } from "./components/2_feed_elements/ReplyFileMessage/ReplyFileMessage.vue.js";
|
|
73
73
|
import { default as Vt } from "./components/2_feed_elements/ReplyImageMessage/ReplyImageMessage.vue.js";
|
|
74
74
|
import { default as Ht } from "./components/2_feed_elements/ReplyStickerMessage/ReplyStickerMessage.vue.js";
|
|
75
|
-
import { default as
|
|
76
|
-
import { default as
|
|
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
77
|
import { default as Kt } from "./components/2_feed_elements/SplashScreen/SplashScreen.vue.js";
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import { default as
|
|
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";
|
|
80
|
+
import { default as zt } from "./components/2_feed_elements/TypingMessage/TypingMessage.vue.js";
|
|
81
81
|
import { default as Zt } from "./components/2_feed_elements/VideoMessage/VideoMessage.vue.js";
|
|
82
82
|
import { default as eo } from "./components/2_modals/Modal/Modal.vue.js";
|
|
83
83
|
import { default as oo } from "./components/2_modals/ModalFullscreen/ModalFullscreen.vue.js";
|
|
@@ -90,18 +90,18 @@ import { default as co } from "./components/3_compounds/ChatList/ChatList.vue.js
|
|
|
90
90
|
import { default as go } from "./components/3_compounds/Feed/Feed.vue.js";
|
|
91
91
|
import { default as So } from "./components/3_compounds/SideBar/SideBar.vue.js";
|
|
92
92
|
import { default as yo } from "./components/4_layouts/BaseLayout/BaseLayout.vue.js";
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
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
95
|
import { default as Po } from "./components/4_layouts/FeedLayout/FeedLayout.vue.js";
|
|
96
|
-
import { default as
|
|
97
|
-
import { default as
|
|
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
98
|
import { default as Lo } from "./components/5_containers/FloatContainer/FloatContainer.vue.js";
|
|
99
99
|
import { buildFilePreview as wo, generatePreview as Vo } from "./hooks/uploadFile/generatePreview.js";
|
|
100
100
|
import { getTypeFileByMime as Ho } from "./hooks/uploadFile/getTypeFileByMime.js";
|
|
101
|
-
import { uploadFile as
|
|
102
|
-
import { useDelayDebouncedRef as
|
|
101
|
+
import { uploadFile as No } from "./hooks/uploadFile/uploadFile.js";
|
|
102
|
+
import { useDelayDebouncedRef as Uo } from "./hooks/useDelayDebouncedRef.js";
|
|
103
103
|
import { useImmediateDebouncedRef as Ko } from "./hooks/useImmediateDebouncedRef.js";
|
|
104
|
-
import { MAX_ATTACHED_FILES as
|
|
104
|
+
import { MAX_ATTACHED_FILES as Go, commitChatDraftToList as Xo, getChatDraft as Yo, getDraftFiles as qo, useMessageDraft as zo } from "./hooks/useMessageDraft.js";
|
|
105
105
|
import { useSearchModel as Zo } from "./hooks/useSearchModel.js";
|
|
106
106
|
import { useTheme as ea } from "./hooks/useTheme.js";
|
|
107
107
|
import { useEmojiNative as oa } from "./hooks/useEmojiNative.js";
|
|
@@ -114,44 +114,46 @@ import { useModalVideoRecorder as na } from "./hooks/modals/useVideoRecorder.js"
|
|
|
114
114
|
import { getValidationReport as Ma, validateChats as ga } from "./hooks/validators/chats/chatValidator.js";
|
|
115
115
|
import { useChatValidator as Sa } from "./hooks/validators/chats/useChatValidator.js";
|
|
116
116
|
import { getMessageValidationReport as ya, validateMessages as Ra } from "./hooks/validators/messages/messageValidator.js";
|
|
117
|
-
import { useMessageValidator as
|
|
118
|
-
import { getSidebarValidationReport as
|
|
119
|
-
import { useSidebarValidator as
|
|
120
|
-
import { useValidation as
|
|
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
121
|
import { useMessageActions as La } from "./hooks/messages/useMessageActions.js";
|
|
122
122
|
import { useMessageHoverActions as wa } from "./hooks/messages/useMessageHoverActions.js";
|
|
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 {
|
|
145
|
-
import {
|
|
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";
|
|
146
148
|
export {
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
149
|
+
Io as AdaptiveExtendedLayout,
|
|
150
|
+
Ye as AudioMessage,
|
|
151
|
+
ve as AudioRecorder,
|
|
150
152
|
M as AvatarIcon,
|
|
151
|
-
|
|
153
|
+
bo as BaseContainer,
|
|
152
154
|
et as BaseEditMessage,
|
|
153
155
|
yo as BaseLayout,
|
|
154
|
-
|
|
156
|
+
ze as BaseReplyMessage,
|
|
155
157
|
Z as ButtonCommandsSelector,
|
|
156
158
|
r as ButtonContextMenu,
|
|
157
159
|
ee as ButtonEmojiPicker,
|
|
@@ -159,22 +161,22 @@ export {
|
|
|
159
161
|
re as ButtonWabaTemplateSelector,
|
|
160
162
|
ot as CallMessage,
|
|
161
163
|
ke as ChannelSelector,
|
|
162
|
-
|
|
164
|
+
Fe as ChatFilter,
|
|
163
165
|
Ve as ChatInfo,
|
|
164
166
|
uo as ChatInput,
|
|
165
|
-
|
|
167
|
+
Ee as ChatItem,
|
|
166
168
|
co as ChatList,
|
|
167
169
|
io as ChatListHeader,
|
|
168
170
|
He as ChatPanel,
|
|
169
|
-
|
|
170
|
-
|
|
171
|
+
De as ChatTabs,
|
|
172
|
+
Bo as ChatWrapper,
|
|
171
173
|
C as CheckIcon,
|
|
172
174
|
h as CloseButtonIcon,
|
|
173
175
|
K as CommunicationPanel,
|
|
174
176
|
fo as ConfirmDeleteMessage,
|
|
175
177
|
R as ContactCRMIcon,
|
|
176
178
|
f as ContactContextMenu,
|
|
177
|
-
|
|
179
|
+
Ne as ContactInfo,
|
|
178
180
|
d as ContextMenu,
|
|
179
181
|
rt as DateMessage,
|
|
180
182
|
mt as DateMessageSticky,
|
|
@@ -183,25 +185,26 @@ export {
|
|
|
183
185
|
nt as EditTextMessage,
|
|
184
186
|
m as EmbedPreview,
|
|
185
187
|
k as ErrorStatusIcon,
|
|
186
|
-
|
|
188
|
+
Ao as ExtendedLayout,
|
|
187
189
|
go as Feed,
|
|
188
|
-
|
|
189
|
-
|
|
190
|
+
G as FeedFoundItem,
|
|
191
|
+
Y as FeedFoundObjects,
|
|
190
192
|
Mt as FeedKeyboard,
|
|
191
193
|
Po as FeedLayout,
|
|
192
194
|
Ze as FeedReplyQuote,
|
|
193
|
-
|
|
195
|
+
z as FeedSearch,
|
|
194
196
|
Ct as FileMessage,
|
|
195
197
|
fe as FilePreview,
|
|
196
198
|
de as FileUploader,
|
|
197
199
|
Lo as FloatContainer,
|
|
198
200
|
ht as ImageMessage,
|
|
199
201
|
x as LinkPreview,
|
|
200
|
-
|
|
201
|
-
|
|
202
|
+
Go as MAX_ATTACHED_FILES,
|
|
203
|
+
_a as MESSAGE_REACTIONS_PATCH_KEY,
|
|
204
|
+
T as MenuIcon,
|
|
202
205
|
Rt as MessageKeyboard,
|
|
203
|
-
|
|
204
|
-
|
|
206
|
+
Tt as MessageReactions,
|
|
207
|
+
Ft as MessageStatusIndicator,
|
|
205
208
|
dt as MissedCallMessage,
|
|
206
209
|
eo as Modal,
|
|
207
210
|
oo as ModalFullscreen,
|
|
@@ -209,101 +212,103 @@ export {
|
|
|
209
212
|
V as PendingStatusIcon,
|
|
210
213
|
me as PlaceholderComponent,
|
|
211
214
|
H as ReadStatusIcon,
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
+
N as ReceivedStatusIcon,
|
|
216
|
+
Dt as ReplyAudioMessage,
|
|
217
|
+
vt as ReplyCallMessage,
|
|
215
218
|
kt as ReplyFileMessage,
|
|
216
219
|
Vt as ReplyImageMessage,
|
|
217
220
|
Ht as ReplyStickerMessage,
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
+
Nt as ReplyTextMessage,
|
|
222
|
+
Ut as ReplyVideoMessage,
|
|
223
|
+
F as SearchIcon,
|
|
221
224
|
po as SelectUser,
|
|
222
|
-
|
|
223
|
-
|
|
225
|
+
U as SentStatusIcon,
|
|
226
|
+
E as SettingsIcon,
|
|
224
227
|
So as SideBar,
|
|
225
228
|
Kt as SplashScreen,
|
|
226
|
-
|
|
229
|
+
Et as StickerMessage,
|
|
227
230
|
xe as StickerPicker,
|
|
228
|
-
|
|
229
|
-
|
|
231
|
+
Gt as SystemMessage,
|
|
232
|
+
D as TelegramIcon,
|
|
230
233
|
ne as TemplateSelector,
|
|
231
234
|
Me as TextFormatToolbar,
|
|
232
|
-
|
|
233
|
-
|
|
235
|
+
Yt as TextMessage,
|
|
236
|
+
Ue as ThemeMode,
|
|
234
237
|
n as Tooltip,
|
|
235
|
-
|
|
238
|
+
zt as TypingMessage,
|
|
236
239
|
Ke as UserProfile,
|
|
237
240
|
Zt as VideoMessage,
|
|
238
|
-
|
|
241
|
+
Ge as VideoRecorder,
|
|
239
242
|
Ce as WABAAttachmentSection,
|
|
240
243
|
he as WABAQuickReplyButtons,
|
|
241
244
|
Re as WABASeparatedQuickButtons,
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
+
Te as WABATemplateSelector,
|
|
246
|
+
v as WhatsAppIcon,
|
|
247
|
+
ir as buildEditPayload,
|
|
245
248
|
wo as buildFilePreview,
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
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,
|
|
253
256
|
Vo as generatePreview,
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
257
|
+
Vr as getChannelAccentColor,
|
|
258
|
+
Yo as getChatDraft,
|
|
259
|
+
gr as getDeletedOriginalText,
|
|
260
|
+
Cr as getDeletedTooltipLines,
|
|
261
|
+
qo as getDraftFiles,
|
|
262
|
+
cr as getEditTooltipLines,
|
|
263
|
+
vr as getMessageClass,
|
|
261
264
|
ya as getMessageValidationReport,
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
+
Fa as getSidebarValidationReport,
|
|
266
|
+
hr as getStatus,
|
|
267
|
+
yr as getStatusTitle,
|
|
265
268
|
Ho as getTypeFileByMime,
|
|
266
269
|
Ma as getValidationReport,
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
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,
|
|
284
287
|
Sa as useChatValidator,
|
|
285
288
|
ma as useConfirmDeleteMessage,
|
|
286
|
-
|
|
289
|
+
Uo as useDelayDebouncedRef,
|
|
287
290
|
oa as useEmojiNative,
|
|
288
291
|
Ko as useImmediateDebouncedRef,
|
|
289
292
|
La as useMessageActions,
|
|
290
|
-
|
|
293
|
+
zo as useMessageDraft,
|
|
291
294
|
wa as useMessageHoverActions,
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
+
Xa as useMessageLinks,
|
|
296
|
+
Qa as useMessageMenuActions,
|
|
297
|
+
Na as useMessageReactionsInFeed,
|
|
298
|
+
Wa as useMessageReactionsMount,
|
|
299
|
+
Ta as useMessageValidator,
|
|
295
300
|
ra as useModalCreateChat,
|
|
296
301
|
fa as useModalCreateChat2,
|
|
297
302
|
da as useModalCreateDialog,
|
|
298
303
|
xa as useModalSelectUser2,
|
|
299
304
|
na as useModalVideoRecorder,
|
|
300
305
|
Zo as useSearchModel,
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
306
|
+
Ba as useSidebarValidator,
|
|
307
|
+
sr as useStartEdit,
|
|
308
|
+
tr as useStartReply,
|
|
309
|
+
Ja as useSubtextTooltip,
|
|
305
310
|
ea as useTheme,
|
|
306
|
-
|
|
311
|
+
ba as useValidation,
|
|
307
312
|
ga as validateChats,
|
|
308
313
|
Ra as validateMessages,
|
|
309
314
|
Pa as validateSidebarItems
|