@mobilon-dev/chotto 0.3.90 → 0.3.92
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_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue.js +1 -1
- package/dist/components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue2.js +23 -23
- package/dist/components/2_chatinput_elements/FileUploader/FileUploader.vue.js +3 -3
- package/dist/components/2_chatinput_elements/FileUploader/FileUploader.vue2.js +87 -103
- package/dist/components/2_chatlist_elements/ChatItem/ChatItem.vue.js +2 -2
- package/dist/components/2_chatlist_elements/ChatItem/ChatItem.vue2.js +218 -182
- package/dist/components/2_elements/AudioRecorder/AudioRecorder.vue.js +2 -2
- package/dist/components/2_elements/AudioRecorder/AudioRecorder.vue2.js +52 -79
- package/dist/components/2_elements/VideoRecorder/VideoRecorder.vue.js +2 -2
- package/dist/components/2_elements/VideoRecorder/VideoRecorder.vue2.js +35 -64
- package/dist/components/2_feed_elements/AudioMessage/AudioMessage.vue.js +2 -2
- package/dist/components/2_feed_elements/AudioMessage/AudioMessage.vue2.js +4 -0
- package/dist/components/2_feed_elements/CallMessage/CallMessage.vue.js +3 -3
- package/dist/components/2_feed_elements/CallMessage/CallMessage.vue2.js +4 -0
- package/dist/components/2_feed_elements/FileMessage/FileMessage.vue.js +3 -3
- package/dist/components/2_feed_elements/FileMessage/FileMessage.vue2.js +33 -29
- package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue.js +2 -2
- package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue2.js +62 -58
- package/dist/components/2_feed_elements/MissedCallMessage/MissedCallMessage.vue.js +1 -1
- package/dist/components/2_feed_elements/MissedCallMessage/MissedCallMessage.vue2.js +27 -23
- package/dist/components/2_feed_elements/TextMessage/TextMessage.vue.js +2 -2
- package/dist/components/2_feed_elements/TextMessage/TextMessage.vue2.js +49 -41
- package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue.js +1 -1
- package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue2.js +105 -101
- package/dist/components/3_compounds/ChatInput/ChatInput.vue.js +2 -2
- package/dist/components/3_compounds/ChatInput/ChatInput.vue2.js +224 -138
- package/dist/components/3_compounds/ChatList/composables/useChatListFilter.js +18 -13
- package/dist/functions/renderAppleEmojis.js +127 -70
- package/dist/hooks/uploadFile/generatePreview.js +23 -11
- package/dist/hooks/useMessageDraft.js +73 -39
- package/dist/index.js +116 -114
- package/dist/locale/en.js +1 -0
- package/dist/locale/ru.js +1 -0
- package/dist/node_modules/vue3-emoji-picker-ru/dist/emoji-picker.es.js +106 -106
- package/dist/themes/dark.css +1 -1
- package/dist/themes/default.css +1 -1
- package/dist/themes/glass.css +1 -1
- package/dist/themes/green.css +1 -1
- package/dist/themes/mobilon1.css +1 -1
- package/dist/types/apps/data/messages.d.ts +52 -0
- package/dist/types/components/2_blocks/CommunicationPanel/CommunicationPanel.vue.d.ts +2 -2
- package/dist/types/components/2_blocks/CommunicationPanel/stories/CommunicationPanel.stories.d.ts +2 -2
- package/dist/types/components/2_chatlist_elements/ChatItem/styles/types.d.ts +6 -0
- package/dist/types/components/2_feed_elements/AudioMessage/styles/types.d.ts +34 -0
- package/dist/types/components/2_feed_elements/CallMessage/styles/types.d.ts +26 -0
- package/dist/types/components/2_feed_elements/FileMessage/styles/types.d.ts +30 -0
- package/dist/types/components/2_feed_elements/ImageMessage/styles/types.d.ts +34 -0
- package/dist/types/components/2_feed_elements/StickerMessage/styles/types.d.ts +4 -0
- package/dist/types/components/2_feed_elements/TextMessage/styles/types.d.ts +38 -2
- package/dist/types/components/2_feed_elements/TypingMessage/styles/types.d.ts +2 -0
- package/dist/types/components/2_feed_elements/VideoMessage/styles/types.d.ts +34 -0
- package/dist/types/components/3_compounds/ChatInput/ChatInput.vue.d.ts +3 -3
- package/dist/types/components/3_compounds/ChatInput/styles/types.d.ts +2 -0
- package/dist/types/components/3_compounds/Feed/composables/useFeedReply.d.ts +1 -27
- package/dist/types/functions/renderAppleEmojis.d.ts +17 -2
- package/dist/types/hooks/uploadFile/generatePreview.d.ts +2 -0
- package/dist/types/hooks/uploadFile/uploadFile.d.ts +9 -17
- package/dist/types/hooks/useMessageDraft.d.ts +30 -29
- package/dist/types/locale/en.d.ts +1 -0
- package/dist/types/locale/ru.d.ts +1 -0
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -11,11 +11,11 @@ import { default as C } from "./components/1_icons/CheckIcon.vue.js";
|
|
|
11
11
|
import { default as y } from "./components/1_icons/CloseButtonIcon.vue.js";
|
|
12
12
|
import { default as R } from "./components/1_icons/ContactCRMIcon.vue.js";
|
|
13
13
|
import { default as T } from "./components/1_icons/MenuIcon.vue.js";
|
|
14
|
-
import { default as
|
|
14
|
+
import { default as P } from "./components/1_icons/SearchIcon.vue.js";
|
|
15
15
|
import { default as F } from "./components/1_icons/SettingsIcon.vue.js";
|
|
16
16
|
import { default as v } from "./components/1_icons/TelegramIcon.vue.js";
|
|
17
17
|
import { default as E } from "./components/1_icons/WhatsAppIcon.vue.js";
|
|
18
|
-
import { default as
|
|
18
|
+
import { default as w } from "./components/1_icons/MessageStatus/ErrorStatusIcon.vue.js";
|
|
19
19
|
import { default as L } from "./components/1_icons/MessageStatus/PendingStatusIcon.vue.js";
|
|
20
20
|
import { default as U } from "./components/1_icons/MessageStatus/ReadStatusIcon.vue.js";
|
|
21
21
|
import { default as N } from "./components/1_icons/MessageStatus/ReceivedStatusIcon.vue.js";
|
|
@@ -38,11 +38,11 @@ import { default as Ce } from "./components/2_chatinput_elements/WABAAttachmentS
|
|
|
38
38
|
import { default as ye } 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
40
|
import { default as Te } from "./components/2_chatinput_elements/WABATemplateSelector/WABATemplateSelector.vue.js";
|
|
41
|
-
import { default as
|
|
41
|
+
import { default as Pe } from "./components/2_chatlist_elements/ChatFilter/ChatFilter.vue.js";
|
|
42
42
|
import { default as Fe } from "./components/2_chatlist_elements/ChatItem/ChatItem.vue.js";
|
|
43
43
|
import { default as ve } from "./components/2_chatlist_elements/ChatTabs/ChatTabs.vue.js";
|
|
44
44
|
import { default as Ee } from "./components/2_elements/AudioRecorder/AudioRecorder.vue.js";
|
|
45
|
-
import { default as
|
|
45
|
+
import { default as we } from "./components/2_elements/ChannelSelector/ChannelSelector.vue.js";
|
|
46
46
|
import { default as Le } from "./components/2_elements/ChatInfo/ChatInfo.vue.js";
|
|
47
47
|
import { default as Ue } from "./components/2_elements/ChatPanel/ChatPanel.vue.js";
|
|
48
48
|
import { default as Ne } from "./components/2_elements/ContactInfo/ContactInfo.vue.js";
|
|
@@ -65,11 +65,11 @@ import { default as Ct } from "./components/2_feed_elements/ImageMessage/ImageMe
|
|
|
65
65
|
import { default as yt } from "./components/2_feed_elements/MessageKeyboard/MessageKeyboard.vue.js";
|
|
66
66
|
import { default as Rt } from "./components/2_feed_elements/MessageReactions/MessageReactions.vue.js";
|
|
67
67
|
import { default as Tt } from "./components/2_feed_elements/MessageStatusIndicator/MessageStatusIndicator.vue.js";
|
|
68
|
-
import { default as
|
|
68
|
+
import { default as Pt } from "./components/2_feed_elements/StickerMessage/StickerMessage.vue.js";
|
|
69
69
|
import { default as Ft } from "./components/2_feed_elements/ReplyAudioMessage/ReplyAudioMessage.vue.js";
|
|
70
70
|
import { default as vt } from "./components/2_feed_elements/ReplyCallMessage/ReplyCallMessage.vue.js";
|
|
71
71
|
import { default as Et } from "./components/2_feed_elements/ReplyFileMessage/ReplyFileMessage.vue.js";
|
|
72
|
-
import { default as
|
|
72
|
+
import { default as wt } from "./components/2_feed_elements/ReplyImageMessage/ReplyImageMessage.vue.js";
|
|
73
73
|
import { default as Lt } from "./components/2_feed_elements/ReplyStickerMessage/ReplyStickerMessage.vue.js";
|
|
74
74
|
import { default as Ut } from "./components/2_feed_elements/ReplyTextMessage/ReplyTextMessage.vue.js";
|
|
75
75
|
import { default as Nt } from "./components/2_feed_elements/ReplyVideoMessage/ReplyVideoMessage.vue.js";
|
|
@@ -92,53 +92,53 @@ import { default as So } from "./components/4_layouts/BaseLayout/BaseLayout.vue.
|
|
|
92
92
|
import { default as ho } from "./components/4_layouts/ExtendedLayout/ExtendedLayout.vue.js";
|
|
93
93
|
import { default as Io } from "./components/4_layouts/AdaptiveExtendedLayout/AdaptiveExtendedLayout.vue.js";
|
|
94
94
|
import { default as Ao } from "./components/4_layouts/FeedLayout/FeedLayout.vue.js";
|
|
95
|
-
import { default as
|
|
95
|
+
import { default as Bo } from "./components/4_layouts/ChatWrapper/ChatWrapper.vue.js";
|
|
96
96
|
import { default as bo } from "./components/5_containers/BaseContainer/BaseContainer.vue.js";
|
|
97
97
|
import { default as Do } from "./components/5_containers/FloatContainer/FloatContainer.vue.js";
|
|
98
|
-
import {
|
|
99
|
-
import { getTypeFileByMime as
|
|
100
|
-
import { uploadFile as
|
|
101
|
-
import { useDelayDebouncedRef as
|
|
102
|
-
import { useImmediateDebouncedRef as
|
|
103
|
-
import { useMessageDraft 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 { calculateMessageMenuPosition as
|
|
122
|
-
import { useMessageMenuActions as
|
|
123
|
-
import { useMessageLinks as
|
|
124
|
-
import { useChannelAccentColor as
|
|
125
|
-
import { useSubtextTooltip as
|
|
126
|
-
import { hideReplyPreview as
|
|
127
|
-
import { hideEditPreview as
|
|
128
|
-
import { buildReplyPayload as
|
|
129
|
-
import { buildEditPayload as
|
|
130
|
-
import { getEditTooltipLines as
|
|
131
|
-
import { getDeletedOriginalText as
|
|
132
|
-
import { getStatus as
|
|
133
|
-
import { formatTimestamp as
|
|
134
|
-
import { playNotificationAudio as
|
|
135
|
-
import { insertDaySeparators as
|
|
136
|
-
import { sortByTimestamp as
|
|
137
|
-
import { getMessageClass as
|
|
138
|
-
import { createReactionHandlers as
|
|
139
|
-
import { getChannelAccentColor as
|
|
140
|
-
import { parseMarkdown as
|
|
141
|
-
import { safeMediaPlay as
|
|
98
|
+
import { buildFilePreview as ko, generatePreview as wo } from "./hooks/uploadFile/generatePreview.js";
|
|
99
|
+
import { getTypeFileByMime as Lo } from "./hooks/uploadFile/getTypeFileByMime.js";
|
|
100
|
+
import { uploadFile as Uo } from "./hooks/uploadFile/uploadFile.js";
|
|
101
|
+
import { useDelayDebouncedRef as No } from "./hooks/useDelayDebouncedRef.js";
|
|
102
|
+
import { useImmediateDebouncedRef as Ko } from "./hooks/useImmediateDebouncedRef.js";
|
|
103
|
+
import { getChatDraft as Qo, useMessageDraft as qo } from "./hooks/useMessageDraft.js";
|
|
104
|
+
import { useSearchModel as Go } from "./hooks/useSearchModel.js";
|
|
105
|
+
import { useTheme as Xo } from "./hooks/useTheme.js";
|
|
106
|
+
import { useEmojiNative as Zo } from "./hooks/useEmojiNative.js";
|
|
107
|
+
import { useModalCreateChat as $o } from "./hooks/modals/useCreateChat.js";
|
|
108
|
+
import { useModalCreateChat2 as ta } from "./hooks/modals/useCreateChat2.js";
|
|
109
|
+
import { useModalCreateDialog as aa } from "./hooks/modals/useCreateDialog.js";
|
|
110
|
+
import { useConfirmDeleteMessage as sa } from "./hooks/modals/useConfirmDeleteMessage.js";
|
|
111
|
+
import { useModalSelectUser2 as la } from "./hooks/modals/useModalSelectUser2.js";
|
|
112
|
+
import { useModalVideoRecorder as da } from "./hooks/modals/useVideoRecorder.js";
|
|
113
|
+
import { getValidationReport as ua, validateChats as xa } from "./hooks/validators/chats/chatValidator.js";
|
|
114
|
+
import { useChatValidator as na } from "./hooks/validators/chats/useChatValidator.js";
|
|
115
|
+
import { getMessageValidationReport as Ma, validateMessages as ga } from "./hooks/validators/messages/messageValidator.js";
|
|
116
|
+
import { useMessageValidator as Sa } from "./hooks/validators/messages/useMessageValidator.js";
|
|
117
|
+
import { getSidebarValidationReport as ha, validateSidebarItems as Ra } from "./hooks/validators/sidebar/sidebarValidator.js";
|
|
118
|
+
import { useSidebarValidator as Ta } from "./hooks/validators/sidebar/useSidebarValidator.js";
|
|
119
|
+
import { useValidation as Pa } from "./hooks/validators/useValidation.js";
|
|
120
|
+
import { useMessageActions as Fa } from "./hooks/messages/useMessageActions.js";
|
|
121
|
+
import { calculateMessageMenuPosition as va, findAppBoundsRect as Da } from "./hooks/messages/calculateMessageMenuPosition.js";
|
|
122
|
+
import { useMessageMenuActions as ka } from "./hooks/messages/useMessageMenuActions.js";
|
|
123
|
+
import { useMessageLinks as Va } from "./hooks/messages/useMessageLinks.js";
|
|
124
|
+
import { useChannelAccentColor as Wa } from "./hooks/messages/useChannelAccentColor.js";
|
|
125
|
+
import { useSubtextTooltip as ja } from "./hooks/messages/useSubtextTooltip.js";
|
|
126
|
+
import { hideReplyPreview as Ha, showReplyPreview as Ka, useStartReply as Oa } from "./hooks/messages/useStartReply.js";
|
|
127
|
+
import { hideEditPreview as qa, showEditPreview as za, useStartEdit as Ga } from "./hooks/messages/useStartEdit.js";
|
|
128
|
+
import { buildReplyPayload as Xa } from "./hooks/messages/buildReplyPayload.js";
|
|
129
|
+
import { buildEditPayload as Za } from "./hooks/messages/buildEditPayload.js";
|
|
130
|
+
import { getEditTooltipLines as $a } from "./hooks/messages/getEditTooltipLines.js";
|
|
131
|
+
import { getDeletedOriginalText as tr, getDeletedTooltipLines as or } from "./hooks/messages/getDeletedOriginalText.js";
|
|
132
|
+
import { getStatus as rr, getStatusTitle as sr, statuses as fr } from "./functions/getStatusMessage.js";
|
|
133
|
+
import { formatTimestamp as pr } from "./functions/formatTimestamp.js";
|
|
134
|
+
import { playNotificationAudio as mr } from "./functions/playNotificationAudio.js";
|
|
135
|
+
import { insertDaySeparators as xr } from "./functions/insertDaySeparators.js";
|
|
136
|
+
import { sortByTimestamp as nr } from "./functions/sortByTimestamp.js";
|
|
137
|
+
import { getMessageClass as Mr } from "./functions/getMessageClass.js";
|
|
138
|
+
import { createReactionHandlers as Cr } from "./functions/createReactionHandlers.js";
|
|
139
|
+
import { getChannelAccentColor as yr } from "./functions/getChannelAccentColor.js";
|
|
140
|
+
import { parseMarkdown as Rr } from "./functions/parseMarkdown.js";
|
|
141
|
+
import { safeMediaPlay as Tr, safeMediaPlayVoid as Ar } from "./functions/safeMediaPlay.js";
|
|
142
142
|
export {
|
|
143
143
|
Io as AdaptiveExtendedLayout,
|
|
144
144
|
Je as AudioMessage,
|
|
@@ -154,8 +154,8 @@ export {
|
|
|
154
154
|
oe as ButtonTemplateSelector,
|
|
155
155
|
re as ButtonWabaTemplateSelector,
|
|
156
156
|
et as CallMessage,
|
|
157
|
-
|
|
158
|
-
|
|
157
|
+
we as ChannelSelector,
|
|
158
|
+
Pe as ChatFilter,
|
|
159
159
|
Le as ChatInfo,
|
|
160
160
|
po as ChatInput,
|
|
161
161
|
Fe as ChatItem,
|
|
@@ -163,7 +163,7 @@ export {
|
|
|
163
163
|
uo as ChatListHeader,
|
|
164
164
|
Ue as ChatPanel,
|
|
165
165
|
ve as ChatTabs,
|
|
166
|
-
|
|
166
|
+
Bo as ChatWrapper,
|
|
167
167
|
C as CheckIcon,
|
|
168
168
|
y as CloseButtonIcon,
|
|
169
169
|
Q as CommunicationPanel,
|
|
@@ -178,7 +178,7 @@ export {
|
|
|
178
178
|
mt as DelimiterMessage,
|
|
179
179
|
xt as EditTextMessage,
|
|
180
180
|
m as EmbedPreview,
|
|
181
|
-
|
|
181
|
+
w as ErrorStatusIcon,
|
|
182
182
|
ho as ExtendedLayout,
|
|
183
183
|
co as Feed,
|
|
184
184
|
z as FeedFoundItem,
|
|
@@ -207,17 +207,17 @@ export {
|
|
|
207
207
|
Ft as ReplyAudioMessage,
|
|
208
208
|
vt as ReplyCallMessage,
|
|
209
209
|
Et as ReplyFileMessage,
|
|
210
|
-
|
|
210
|
+
wt as ReplyImageMessage,
|
|
211
211
|
Lt as ReplyStickerMessage,
|
|
212
212
|
Ut as ReplyTextMessage,
|
|
213
213
|
Nt as ReplyVideoMessage,
|
|
214
|
-
|
|
214
|
+
P as SearchIcon,
|
|
215
215
|
fo as SelectUser,
|
|
216
216
|
K as SentStatusIcon,
|
|
217
217
|
F as SettingsIcon,
|
|
218
218
|
go as SideBar,
|
|
219
219
|
Kt as SplashScreen,
|
|
220
|
-
|
|
220
|
+
Pt as StickerMessage,
|
|
221
221
|
xe as StickerPicker,
|
|
222
222
|
Qt as SystemMessage,
|
|
223
223
|
v as TelegramIcon,
|
|
@@ -235,60 +235,62 @@ export {
|
|
|
235
235
|
Re as WABASeparatedQuickButtons,
|
|
236
236
|
Te as WABATemplateSelector,
|
|
237
237
|
E as WhatsAppIcon,
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
Rr as
|
|
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
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
238
|
+
Za as buildEditPayload,
|
|
239
|
+
ko as buildFilePreview,
|
|
240
|
+
Xa as buildReplyPayload,
|
|
241
|
+
va as calculateMessageMenuPosition,
|
|
242
|
+
Cr as createReactionHandlers,
|
|
243
|
+
Da as findAppBoundsRect,
|
|
244
|
+
pr as formatTimestamp,
|
|
245
|
+
wo as generatePreview,
|
|
246
|
+
yr as getChannelAccentColor,
|
|
247
|
+
Qo as getChatDraft,
|
|
248
|
+
tr as getDeletedOriginalText,
|
|
249
|
+
or as getDeletedTooltipLines,
|
|
250
|
+
$a as getEditTooltipLines,
|
|
251
|
+
Mr as getMessageClass,
|
|
252
|
+
Ma as getMessageValidationReport,
|
|
253
|
+
ha as getSidebarValidationReport,
|
|
254
|
+
rr as getStatus,
|
|
255
|
+
sr as getStatusTitle,
|
|
256
|
+
Lo as getTypeFileByMime,
|
|
257
|
+
ua as getValidationReport,
|
|
258
|
+
qa as hideEditPreview,
|
|
259
|
+
Ha as hideReplyPreview,
|
|
260
|
+
xr as insertDaySeparators,
|
|
261
|
+
Rr as parseMarkdown,
|
|
262
|
+
mr as playNotificationAudio,
|
|
263
|
+
Tr as safeMediaPlay,
|
|
264
|
+
Ar as safeMediaPlayVoid,
|
|
265
|
+
za as showEditPreview,
|
|
266
|
+
Ka as showReplyPreview,
|
|
267
|
+
nr as sortByTimestamp,
|
|
268
|
+
fr as statuses,
|
|
269
|
+
Uo as uploadFile,
|
|
270
|
+
Wa as useChannelAccentColor,
|
|
271
|
+
na as useChatValidator,
|
|
272
|
+
sa as useConfirmDeleteMessage,
|
|
273
|
+
No as useDelayDebouncedRef,
|
|
274
|
+
Zo as useEmojiNative,
|
|
275
|
+
Ko as useImmediateDebouncedRef,
|
|
276
|
+
Fa as useMessageActions,
|
|
277
|
+
qo as useMessageDraft,
|
|
278
|
+
Va as useMessageLinks,
|
|
279
|
+
ka as useMessageMenuActions,
|
|
280
|
+
Sa as useMessageValidator,
|
|
281
|
+
$o as useModalCreateChat,
|
|
282
|
+
ta as useModalCreateChat2,
|
|
283
|
+
aa as useModalCreateDialog,
|
|
284
|
+
la as useModalSelectUser2,
|
|
285
|
+
da as useModalVideoRecorder,
|
|
286
|
+
Go as useSearchModel,
|
|
287
|
+
Ta as useSidebarValidator,
|
|
288
|
+
Ga as useStartEdit,
|
|
289
|
+
Oa as useStartReply,
|
|
290
|
+
ja as useSubtextTooltip,
|
|
291
|
+
Xo as useTheme,
|
|
292
|
+
Pa as useValidation,
|
|
293
|
+
xa as validateChats,
|
|
294
|
+
ga as validateMessages,
|
|
295
|
+
Ra as validateSidebarItems
|
|
294
296
|
};
|
package/dist/locale/en.js
CHANGED
|
@@ -3,6 +3,7 @@ const e = {
|
|
|
3
3
|
"component.ChatFilter.InputPlaceholder": "Chat search",
|
|
4
4
|
"layout.ChatWrapper.noSelectedChat": "Choose contact to start conversation",
|
|
5
5
|
"component.ChatItem.typing": "typing",
|
|
6
|
+
"component.ChatItem.draft": "Draft:",
|
|
6
7
|
"component.ChatInput.InputPlaceholder": "Type a message...",
|
|
7
8
|
"component.ChatInput.TelegramInputPlaceholder": "Type a message Telegram or change channel",
|
|
8
9
|
"component.ChatInput.WhatsappInputPlaceholder": "Type a message WhatsApp or change channel",
|
package/dist/locale/ru.js
CHANGED
|
@@ -3,6 +3,7 @@ const e = {
|
|
|
3
3
|
"component.ChatFilter.InputPlaceholder": "Поиск чата",
|
|
4
4
|
"layout.ChatWrapper.noSelectedChat": "Выберите контакт для начала общения",
|
|
5
5
|
"component.ChatItem.typing": "печатает",
|
|
6
|
+
"component.ChatItem.draft": "Черновик:",
|
|
6
7
|
"component.ChatInput.InputPlaceholder": "Введите сообщение",
|
|
7
8
|
"component.ChatInput.WhatsappInputPlaceholder": "Введите сообщение WhatsApp или смените канал",
|
|
8
9
|
"component.ChatInput.TelegramInputPlaceholder": "Введите сообщение Telegram или смените канал",
|