@mobilon-dev/chotto 0.3.85 → 0.3.87
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/1_atoms/ButtonContextMenu/ButtonContextMenu.vue2.js +15 -13
- package/dist/components/1_atoms/ContactContextMenu/ContactContextMenu.vue2.js +4 -2
- package/dist/components/1_atoms/ContextMenu/ContextMenu.vue.js +43 -39
- package/dist/components/1_atoms/EmojiGlyph/EmojiGlyph.vue.js +7 -5
- package/dist/components/1_atoms/LoadingIndicator/LoadingIndicator.vue.js +19 -18
- package/dist/components/1_atoms/Tooltip/Tooltip.vue.js +2 -2
- package/dist/components/1_atoms/Tooltip/Tooltip.vue2.js +83 -72
- package/dist/components/2_blocks/CommunicationPanel/CommunicationPanel.vue.js +174 -165
- package/dist/components/2_blocks/CommunicationPanel/composables/useCommunicationActions.js +21 -18
- package/dist/components/2_blocks/CommunicationPanel/composables/useCommunicationMenu.js +32 -27
- package/dist/components/2_blocks/CommunicationPanel/composables/useCommunicationSubMenu.js +44 -35
- package/dist/components/2_blocks/FeedSearch/FeedSearch.vue2.js +11 -10
- package/dist/components/2_chatinput_elements/ButtonCommandsSelector/ButtonCommandsSelector.vue2.js +4 -2
- package/dist/components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue2.js +18 -16
- package/dist/components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue2.js +16 -14
- package/dist/components/2_chatinput_elements/ButtonWabaTemplateSelector/ButtonWabaTemplateSelector.vue.js +4 -2
- package/dist/components/2_chatinput_elements/FilePreview/FilePreview.vue2.js +4 -2
- package/dist/components/2_chatinput_elements/FileUploader/FileUploader.vue2.js +4 -2
- package/dist/components/2_chatinput_elements/StickerPicker/StickerPicker.vue2.js +4 -2
- package/dist/components/2_chatinput_elements/TemplateSelector/TemplateSelector.vue.js +4 -2
- package/dist/components/2_chatinput_elements/TextFormatToolbar/TextFormatToolbar.vue2.js +4 -3
- package/dist/components/2_chatinput_elements/WABAAttachmentSection/WABAAttachmentSection.vue2.js +4 -2
- package/dist/components/2_chatlist_elements/ChatItem/ChatItem.vue2.js +3 -2
- package/dist/components/2_elements/AudioRecorder/AudioRecorder.vue2.js +4 -2
- package/dist/components/2_elements/ChannelSelector/ChannelSelector.vue.js +3 -2
- package/dist/components/2_elements/ThemeMode/ThemeMode.vue.js +7 -5
- package/dist/components/2_elements/VideoRecorder/VideoRecorder.vue2.js +4 -2
- package/dist/components/2_feed_elements/AudioMessage/AudioMessage.vue.js +1 -1
- package/dist/components/2_feed_elements/AudioMessage/AudioMessage.vue2.js +387 -340
- package/dist/components/2_feed_elements/BaseEditMessage/BaseEditMessage.vue.js +7 -0
- package/dist/components/2_feed_elements/BaseEditMessage/BaseEditMessage.vue2.js +34 -0
- package/dist/components/2_feed_elements/CallMessage/CallMessage.vue.js +2 -2
- package/dist/components/2_feed_elements/CallMessage/CallMessage.vue2.js +388 -352
- package/dist/components/2_feed_elements/DeletedMessageContent/DeletedMessageContent.vue.js +7 -0
- package/dist/components/2_feed_elements/DeletedMessageContent/DeletedMessageContent.vue2.js +63 -0
- package/dist/components/2_feed_elements/DeletedMessageContent/icons/DeletedMessageIcon.vue.js +21 -0
- package/dist/components/2_feed_elements/EditTextMessage/EditTextMessage.vue.js +7 -0
- package/dist/components/2_feed_elements/EditTextMessage/EditTextMessage.vue2.js +35 -0
- package/dist/components/2_feed_elements/FileMessage/FileMessage.vue.js +2 -2
- package/dist/components/2_feed_elements/FileMessage/FileMessage.vue2.js +204 -157
- package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue.js +3 -3
- package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue2.js +273 -226
- package/dist/components/2_feed_elements/MessageKeyboard/MessageKeyboard.vue2.js +9 -7
- package/dist/components/2_feed_elements/MessageReactions/MessageReactions.vue.js +2 -2
- package/dist/components/2_feed_elements/MessageReactions/MessageReactions.vue2.js +141 -117
- package/dist/components/2_feed_elements/MessageReactions/icons/DeleteIcon.vue.js +32 -0
- package/dist/components/2_feed_elements/MessageReactions/icons/EditIcon.vue.js +32 -0
- package/dist/components/2_feed_elements/MessageReactions/icons/MessageActionsIcon.vue.js +21 -0
- package/dist/components/2_feed_elements/MissedCallMessage/MissedCallMessage.vue.js +4 -4
- package/dist/components/2_feed_elements/MissedCallMessage/MissedCallMessage.vue2.js +102 -66
- package/dist/components/2_feed_elements/ReplyAudioMessage/ReplyAudioMessage.vue2.js +11 -9
- package/dist/components/2_feed_elements/ReplyFileMessage/ReplyFileMessage.vue2.js +14 -12
- package/dist/components/2_feed_elements/ReplyImageMessage/ReplyImageMessage.vue2.js +11 -9
- package/dist/components/2_feed_elements/ReplyStickerMessage/ReplyStickerMessage.vue2.js +13 -11
- package/dist/components/2_feed_elements/ReplyTextMessage/ReplyTextMessage.vue2.js +11 -9
- package/dist/components/2_feed_elements/ReplyVideoMessage/ReplyVideoMessage.vue2.js +4 -2
- package/dist/components/2_feed_elements/StickerMessage/StickerMessage.vue.js +2 -2
- package/dist/components/2_feed_elements/StickerMessage/StickerMessage.vue2.js +255 -210
- package/dist/components/2_feed_elements/TextMessage/TextMessage.vue.js +1 -1
- package/dist/components/2_feed_elements/TextMessage/TextMessage.vue2.js +241 -140
- package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue.js +3 -3
- package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue2.js +245 -200
- package/dist/components/2_modals/ConfirmDeleteMessage/ConfirmDeleteMessage.vue.js +7 -0
- package/dist/components/2_modals/ConfirmDeleteMessage/ConfirmDeleteMessage.vue3.js +58 -0
- package/dist/components/3_compounds/ChatInput/ChatInput.vue.js +2 -2
- package/dist/components/3_compounds/ChatInput/ChatInput.vue2.js +5 -4
- package/dist/components/3_compounds/ChatList/ChatListHeader.vue.js +8 -8
- package/dist/components/3_compounds/ChatList/icons/LogoIcon.vue.js +12 -13
- package/dist/components/3_compounds/Feed/Feed.vue.js +2 -2
- package/dist/components/3_compounds/Feed/Feed.vue2.js +187 -163
- package/dist/components/3_compounds/Feed/composables/useFeedComponents.js +41 -26
- package/dist/components/3_compounds/Feed/composables/useFeedReply.js +16 -11
- package/dist/components/3_compounds/Feed/utils/getDefaultMessageMenuActions.js +31 -0
- package/dist/hooks/messages/buildEditPayload.js +10 -0
- package/dist/hooks/messages/calculateMessageMenuPosition.js +70 -0
- package/dist/hooks/messages/getDeletedOriginalText.js +26 -0
- package/dist/hooks/messages/getEditTooltipLines.js +28 -0
- package/dist/hooks/messages/useMessageActions.js +94 -19
- package/dist/hooks/messages/useMessageMenuActions.js +18 -0
- package/dist/hooks/messages/useStartEdit.js +30 -0
- package/dist/hooks/messages/useStartReply.js +16 -14
- package/dist/hooks/modals/useConfirmDeleteMessage.js +24 -0
- package/dist/hooks/useMessageDraft.js +46 -66
- package/dist/hooks/validators/messages/messageValidator.js +29 -35
- package/dist/index.js +220 -194
- package/dist/locale/en.js +6 -1
- package/dist/locale/ru.js +6 -1
- 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 +0 -321
- package/dist/types/components/1_atoms/ContextMenu/ContextMenu.vue.d.ts +0 -2
- package/dist/types/components/1_atoms/ContextMenu/stories/ContextMenu.stories.d.ts +1 -0
- package/dist/types/components/1_atoms/ContextMenu/styles/types.d.ts +18 -0
- package/dist/types/components/1_atoms/LoadingIndicator/styles/types.d.ts +0 -2
- package/dist/types/components/1_atoms/Tooltip/Tooltip.vue.d.ts +12 -1
- package/dist/types/components/2_blocks/CommunicationPanel/CommunicationPanel.vue.d.ts +2 -0
- package/dist/types/components/2_blocks/CommunicationPanel/composables/useCommunicationActions.d.ts +3 -1
- package/dist/types/components/2_blocks/CommunicationPanel/composables/useCommunicationMenu.d.ts +3 -0
- package/dist/types/components/2_blocks/CommunicationPanel/composables/useCommunicationSubMenu.d.ts +4 -2
- package/dist/types/components/2_blocks/CommunicationPanel/stories/CommunicationPanel.stories.d.ts +1 -0
- package/dist/types/components/2_feed_elements/BaseEditMessage/BaseEditMessage.vue.d.ts +23 -0
- package/dist/types/components/2_feed_elements/BaseEditMessage/stories/BaseEditMessage.stories.d.ts +6 -0
- package/dist/types/components/2_feed_elements/DeletedMessageContent/DeletedMessageContent.vue.d.ts +31 -0
- package/dist/types/components/2_feed_elements/DeletedMessageContent/icons/DeletedMessageIcon.vue.d.ts +2 -0
- package/dist/types/components/2_feed_elements/DeletedMessageContent/styles/types.d.ts +35 -0
- package/dist/types/components/2_feed_elements/EditTextMessage/EditTextMessage.vue.d.ts +13 -0
- package/dist/types/components/2_feed_elements/EditTextMessage/stories/EditTextMessage.stories.d.ts +7 -0
- package/dist/types/components/2_feed_elements/FeedKeyboard/FeedKeyboard.vue.d.ts +1 -1
- package/dist/types/components/2_feed_elements/MessageKeyboard/MessageKeyboard.vue.d.ts +1 -1
- package/dist/types/components/2_feed_elements/MessageReactions/MessageReactions.vue.d.ts +35 -0
- package/dist/types/components/2_feed_elements/MessageReactions/icons/DeleteIcon.vue.d.ts +2 -0
- package/dist/types/components/2_feed_elements/MessageReactions/icons/EditIcon.vue.d.ts +2 -0
- package/dist/types/components/2_feed_elements/MessageReactions/icons/MessageActionsIcon.vue.d.ts +2 -0
- package/dist/types/components/2_feed_elements/TextMessage/TextMessage.vue.d.ts +11 -3
- package/dist/types/components/2_feed_elements/TextMessage/stories/TextMessage.stories.d.ts +1 -0
- package/dist/types/components/2_feed_elements/TextMessage/styles/types.d.ts +22 -0
- package/dist/types/components/2_feed_elements/VideoMessage/stories/VideoMessage.stories.d.ts +2 -2
- package/dist/types/components/2_feed_elements/types/components.d.ts +1 -2
- package/dist/types/components/2_feed_elements/types/messages.d.ts +116 -9
- package/dist/types/components/2_modals/ConfirmDeleteMessage/ConfirmDeleteMessage.vue.d.ts +22 -0
- package/dist/types/components/2_modals/ConfirmDeleteMessage/stories/ConfirmDeleteMessage.stories.d.ts +37 -0
- package/dist/types/components/2_modals/ConfirmDeleteMessage/styles/types.d.ts +97 -0
- package/dist/types/components/3_compounds/ChatInput/types/IInputMessage.d.ts +2 -1
- package/dist/types/components/3_compounds/ChatList/styles/types.d.ts +2 -2
- package/dist/types/components/3_compounds/Feed/Feed.vue.d.ts +20 -3
- package/dist/types/components/3_compounds/Feed/composables/useFeedComponents.d.ts +6 -2
- package/dist/types/components/3_compounds/Feed/composables/useFeedGrouping.d.ts +0 -1
- package/dist/types/components/3_compounds/Feed/composables/useFeedReply.d.ts +7 -1
- package/dist/types/components/3_compounds/Feed/utils/getDefaultMessageMenuActions.d.ts +3 -0
- package/dist/types/components/3_compounds/SideBar/SideBar.vue.d.ts +2 -2
- package/dist/types/components/index.d.ts +4 -0
- package/dist/types/hooks/messages/buildEditPayload.d.ts +7 -0
- package/dist/types/hooks/messages/calculateMessageMenuPosition.d.ts +16 -0
- package/dist/types/hooks/messages/getDeletedOriginalText.d.ts +28 -0
- package/dist/types/hooks/messages/getEditTooltipLines.d.ts +17 -0
- package/dist/types/hooks/messages/index.d.ts +6 -0
- package/dist/types/hooks/messages/useMessageActions.d.ts +33 -39
- package/dist/types/hooks/messages/useMessageMenuActions.d.ts +10 -0
- package/dist/types/hooks/messages/useStartEdit.d.ts +6 -0
- package/dist/types/hooks/modals/index.d.ts +1 -0
- package/dist/types/hooks/modals/useConfirmDeleteMessage.d.ts +2 -0
- package/dist/types/hooks/useMessageDraft.d.ts +10 -1
- package/dist/types/hooks/validators/messages/types.d.ts +0 -6
- package/dist/types/locale/en.d.ts +5 -0
- package/dist/types/locale/ru.d.ts +5 -0
- package/dist/types/main.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/* empty css */
|
|
2
2
|
/* empty css */
|
|
3
3
|
import { default as r } from "./components/1_atoms/ButtonContextMenu/ButtonContextMenu.vue.js";
|
|
4
|
-
import { default as
|
|
4
|
+
import { default as f } from "./components/1_atoms/ContactContextMenu/ContactContextMenu.vue.js";
|
|
5
5
|
import { default as p } from "./components/1_atoms/ContextMenu/ContextMenu.vue.js";
|
|
6
6
|
import { default as m } from "./components/1_atoms/EmbedPreview/EmbedPreview.vue.js";
|
|
7
7
|
import { default as x } from "./components/1_atoms/LinkPreview/LinkPreview.vue.js";
|
|
@@ -10,17 +10,17 @@ 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 y } 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
|
|
13
|
+
import { default as T } from "./components/1_icons/MenuIcon.vue.js";
|
|
14
|
+
import { default as B } from "./components/1_icons/SearchIcon.vue.js";
|
|
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
|
-
import { default as
|
|
18
|
-
import { default as
|
|
19
|
-
import { default as
|
|
17
|
+
import { default as E } from "./components/1_icons/WhatsAppIcon.vue.js";
|
|
18
|
+
import { default as V } from "./components/1_icons/MessageStatus/ErrorStatusIcon.vue.js";
|
|
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";
|
|
22
22
|
import { default as K } from "./components/1_icons/MessageStatus/SentStatusIcon.vue.js";
|
|
23
|
-
import { default as
|
|
23
|
+
import { default as Q } from "./components/2_blocks/CommunicationPanel/CommunicationPanel.vue.js";
|
|
24
24
|
import { default as z } from "./components/2_blocks/FeedFoundItem/FeedFoundItem.vue.js";
|
|
25
25
|
import { default as J } from "./components/2_blocks/FeedFoundObjects/FeedFoundObjects.vue.js";
|
|
26
26
|
import { default as Y } from "./components/2_blocks/FeedSearch/FeedSearch.vue.js";
|
|
@@ -28,7 +28,7 @@ import { default as _ } from "./components/2_chatinput_elements/ButtonCommandsSe
|
|
|
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";
|
|
30
30
|
import { default as re } from "./components/2_chatinput_elements/ButtonWabaTemplateSelector/ButtonWabaTemplateSelector.vue.js";
|
|
31
|
-
import { default as
|
|
31
|
+
import { default as fe } from "./components/2_chatinput_elements/FilePreview/FilePreview.vue.js";
|
|
32
32
|
import { default as pe } from "./components/2_chatinput_elements/FileUploader/FileUploader.vue.js";
|
|
33
33
|
import { default as me } from "./components/2_chatinput_elements/PlaceholderComponent/PlaceholderComponent.vue.js";
|
|
34
34
|
import { default as xe } from "./components/2_chatinput_elements/StickerPicker/StickerPicker.vue.js";
|
|
@@ -37,232 +37,258 @@ 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 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
|
-
import { default as
|
|
41
|
-
import { default as
|
|
42
|
-
import { default as
|
|
40
|
+
import { default as Te } from "./components/2_chatinput_elements/WABATemplateSelector/WABATemplateSelector.vue.js";
|
|
41
|
+
import { default as Be } from "./components/2_chatlist_elements/ChatFilter/ChatFilter.vue.js";
|
|
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
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
44
|
+
import { default as Ee } from "./components/2_elements/AudioRecorder/AudioRecorder.vue.js";
|
|
45
|
+
import { default as Ve } from "./components/2_elements/ChannelSelector/ChannelSelector.vue.js";
|
|
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";
|
|
49
49
|
import { default as Ke } from "./components/2_elements/ThemeMode/ThemeMode.vue.js";
|
|
50
|
-
import { default as
|
|
50
|
+
import { default as Qe } from "./components/2_elements/UserProfile/UserProfile.vue.js";
|
|
51
51
|
import { default as ze } from "./components/2_elements/VideoRecorder/VideoRecorder.vue.js";
|
|
52
52
|
import { default as Je } from "./components/2_feed_elements/AudioMessage/AudioMessage.vue.js";
|
|
53
53
|
import { default as Ye } from "./components/2_feed_elements/BaseReplyMessage/BaseReplyMessage.vue.js";
|
|
54
|
-
import { default as _e } 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
|
|
59
|
-
import { default as pt } 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 yt } from "./components/2_feed_elements/
|
|
66
|
-
import { default as Rt } from "./components/2_feed_elements/
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as vt } from "./components/2_feed_elements/
|
|
71
|
-
import { default as
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
74
|
-
import { default as Ut } from "./components/2_feed_elements/
|
|
75
|
-
import { default as Nt } from "./components/2_feed_elements/
|
|
76
|
-
import { default as Kt } from "./components/2_feed_elements/
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as zt } from "./components/
|
|
79
|
-
import { default as Jt } from "./components/
|
|
80
|
-
import { default as Yt } from "./components/
|
|
81
|
-
import { default as _t } from "./components/2_modals/
|
|
82
|
-
import { default as eo } from "./components/
|
|
83
|
-
import { default as oo } from "./components/
|
|
84
|
-
import { default as ro } from "./components/
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as po } from "./components/3_compounds/
|
|
87
|
-
import { default as uo } from "./components/
|
|
88
|
-
import { default as io } from "./components/
|
|
89
|
-
import { default as co } from "./components/
|
|
90
|
-
import { default as go } from "./components/
|
|
91
|
-
import { default as So } from "./components/4_layouts/
|
|
92
|
-
import { default as ho } from "./components/
|
|
93
|
-
import { default as Io } from "./components/
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
54
|
+
import { default as _e } from "./components/2_feed_elements/BaseEditMessage/BaseEditMessage.vue.js";
|
|
55
|
+
import { default as et } from "./components/2_feed_elements/CallMessage/CallMessage.vue.js";
|
|
56
|
+
import { default as ot } from "./components/2_feed_elements/DateMessage/DateMessage.vue.js";
|
|
57
|
+
import { default as rt } from "./components/2_feed_elements/DeletedMessageContent/DeletedMessageContent.vue.js";
|
|
58
|
+
import { default as ft } from "./components/2_feed_elements/MissedCallMessage/MissedCallMessage.vue.js";
|
|
59
|
+
import { default as pt } from "./components/2_feed_elements/DateMessageSticky/DateMessageSticky.vue.js";
|
|
60
|
+
import { default as mt } from "./components/2_feed_elements/DelimiterMessage/DelimiterMessage.vue.js";
|
|
61
|
+
import { default as xt } from "./components/2_feed_elements/EditTextMessage/EditTextMessage.vue.js";
|
|
62
|
+
import { default as nt } from "./components/2_feed_elements/FeedKeyboard/FeedKeyboard.vue.js";
|
|
63
|
+
import { default as Mt } from "./components/2_feed_elements/FileMessage/FileMessage.vue.js";
|
|
64
|
+
import { default as Ct } from "./components/2_feed_elements/ImageMessage/ImageMessage.vue.js";
|
|
65
|
+
import { default as yt } from "./components/2_feed_elements/MessageKeyboard/MessageKeyboard.vue.js";
|
|
66
|
+
import { default as Rt } from "./components/2_feed_elements/MessageReactions/MessageReactions.vue.js";
|
|
67
|
+
import { default as Tt } from "./components/2_feed_elements/MessageStatusIndicator/MessageStatusIndicator.vue.js";
|
|
68
|
+
import { default as Bt } from "./components/2_feed_elements/StickerMessage/StickerMessage.vue.js";
|
|
69
|
+
import { default as Ft } from "./components/2_feed_elements/ReplyAudioMessage/ReplyAudioMessage.vue.js";
|
|
70
|
+
import { default as vt } from "./components/2_feed_elements/ReplyCallMessage/ReplyCallMessage.vue.js";
|
|
71
|
+
import { default as Et } from "./components/2_feed_elements/ReplyFileMessage/ReplyFileMessage.vue.js";
|
|
72
|
+
import { default as Vt } from "./components/2_feed_elements/ReplyImageMessage/ReplyImageMessage.vue.js";
|
|
73
|
+
import { default as Lt } from "./components/2_feed_elements/ReplyStickerMessage/ReplyStickerMessage.vue.js";
|
|
74
|
+
import { default as Ut } from "./components/2_feed_elements/ReplyTextMessage/ReplyTextMessage.vue.js";
|
|
75
|
+
import { default as Nt } from "./components/2_feed_elements/ReplyVideoMessage/ReplyVideoMessage.vue.js";
|
|
76
|
+
import { default as Kt } from "./components/2_feed_elements/SplashScreen/SplashScreen.vue.js";
|
|
77
|
+
import { default as Qt } from "./components/2_feed_elements/SystemMessage/SystemMessage.vue.js";
|
|
78
|
+
import { default as zt } from "./components/2_feed_elements/TextMessage/TextMessage.vue.js";
|
|
79
|
+
import { default as Jt } from "./components/2_feed_elements/TypingMessage/TypingMessage.vue.js";
|
|
80
|
+
import { default as Yt } from "./components/2_feed_elements/VideoMessage/VideoMessage.vue.js";
|
|
81
|
+
import { default as _t } from "./components/2_modals/Modal/Modal.vue.js";
|
|
82
|
+
import { default as eo } from "./components/2_modals/ModalFullscreen/ModalFullscreen.vue.js";
|
|
83
|
+
import { default as oo } from "./components/2_modals/ModalNoFooter/ModalNoFooter.vue.js";
|
|
84
|
+
import { default as ro } from "./components/2_modals/ConfirmDeleteMessage/ConfirmDeleteMessage.vue.js";
|
|
85
|
+
import { default as fo } from "./components/2_modals/SelectUser/SelectUser.vue.js";
|
|
86
|
+
import { default as po } from "./components/3_compounds/ChatInput/ChatInput.vue.js";
|
|
87
|
+
import { default as uo } from "./components/3_compounds/ChatList/ChatListHeader.vue.js";
|
|
88
|
+
import { default as io } from "./components/3_compounds/ChatList/ChatList.vue.js";
|
|
89
|
+
import { default as co } from "./components/3_compounds/Feed/Feed.vue.js";
|
|
90
|
+
import { default as go } from "./components/3_compounds/SideBar/SideBar.vue.js";
|
|
91
|
+
import { default as So } from "./components/4_layouts/BaseLayout/BaseLayout.vue.js";
|
|
92
|
+
import { default as ho } from "./components/4_layouts/ExtendedLayout/ExtendedLayout.vue.js";
|
|
93
|
+
import { default as Io } from "./components/4_layouts/AdaptiveExtendedLayout/AdaptiveExtendedLayout.vue.js";
|
|
94
|
+
import { default as Ao } from "./components/4_layouts/FeedLayout/FeedLayout.vue.js";
|
|
95
|
+
import { default as Po } from "./components/4_layouts/ChatWrapper/ChatWrapper.vue.js";
|
|
96
|
+
import { default as bo } from "./components/5_containers/BaseContainer/BaseContainer.vue.js";
|
|
97
|
+
import { default as Do } from "./components/5_containers/FloatContainer/FloatContainer.vue.js";
|
|
98
|
+
import { generatePreview as ko } from "./hooks/uploadFile/generatePreview.js";
|
|
99
|
+
import { getTypeFileByMime as wo } from "./hooks/uploadFile/getTypeFileByMime.js";
|
|
100
|
+
import { uploadFile as Wo } from "./hooks/uploadFile/uploadFile.js";
|
|
101
|
+
import { useDelayDebouncedRef as jo } from "./hooks/useDelayDebouncedRef.js";
|
|
102
|
+
import { useImmediateDebouncedRef as Ho } from "./hooks/useImmediateDebouncedRef.js";
|
|
103
|
+
import { useMessageDraft as Oo } from "./hooks/useMessageDraft.js";
|
|
104
|
+
import { useSearchModel as qo } from "./hooks/useSearchModel.js";
|
|
105
|
+
import { useTheme as Go } from "./hooks/useTheme.js";
|
|
106
|
+
import { useEmojiNative as Xo } from "./hooks/useEmojiNative.js";
|
|
107
|
+
import { useModalCreateChat as Zo } from "./hooks/modals/useCreateChat.js";
|
|
108
|
+
import { useModalCreateChat2 as $o } from "./hooks/modals/useCreateChat2.js";
|
|
109
|
+
import { useModalCreateDialog as ta } from "./hooks/modals/useCreateDialog.js";
|
|
110
|
+
import { useConfirmDeleteMessage as aa } from "./hooks/modals/useConfirmDeleteMessage.js";
|
|
111
|
+
import { useModalSelectUser2 as sa } from "./hooks/modals/useModalSelectUser2.js";
|
|
112
|
+
import { useModalVideoRecorder as la } from "./hooks/modals/useVideoRecorder.js";
|
|
113
|
+
import { getValidationReport as da, validateChats as ma } from "./hooks/validators/chats/chatValidator.js";
|
|
114
|
+
import { useChatValidator as xa } from "./hooks/validators/chats/useChatValidator.js";
|
|
115
|
+
import { getMessageValidationReport as na, validateMessages as ca } from "./hooks/validators/messages/messageValidator.js";
|
|
116
|
+
import { useMessageValidator as ga } from "./hooks/validators/messages/useMessageValidator.js";
|
|
117
|
+
import { getSidebarValidationReport as Sa, validateSidebarItems as ya } from "./hooks/validators/sidebar/sidebarValidator.js";
|
|
118
|
+
import { useSidebarValidator as Ra } from "./hooks/validators/sidebar/useSidebarValidator.js";
|
|
119
|
+
import { useValidation as Ta } from "./hooks/validators/useValidation.js";
|
|
120
|
+
import { useMessageActions as Ba } from "./hooks/messages/useMessageActions.js";
|
|
121
|
+
import { calculateMessageMenuPosition as Fa, findAppBoundsRect as ba } from "./hooks/messages/calculateMessageMenuPosition.js";
|
|
122
|
+
import { useMessageMenuActions as Da } from "./hooks/messages/useMessageMenuActions.js";
|
|
123
|
+
import { useMessageLinks as ka } from "./hooks/messages/useMessageLinks.js";
|
|
124
|
+
import { useChannelAccentColor as wa } from "./hooks/messages/useChannelAccentColor.js";
|
|
125
|
+
import { useSubtextTooltip as Wa } from "./hooks/messages/useSubtextTooltip.js";
|
|
126
|
+
import { hideReplyPreview as ja, showReplyPreview as Na, useStartReply as Ha } from "./hooks/messages/useStartReply.js";
|
|
127
|
+
import { hideEditPreview as Oa, showEditPreview as Qa, useStartEdit as qa } from "./hooks/messages/useStartEdit.js";
|
|
128
|
+
import { buildReplyPayload as Ga } from "./hooks/messages/buildReplyPayload.js";
|
|
129
|
+
import { buildEditPayload as Xa } from "./hooks/messages/buildEditPayload.js";
|
|
130
|
+
import { getEditTooltipLines as Za } from "./hooks/messages/getEditTooltipLines.js";
|
|
131
|
+
import { getDeletedOriginalText as $a, getDeletedTooltipLines as er } from "./hooks/messages/getDeletedOriginalText.js";
|
|
132
|
+
import { getStatus as or, getStatusTitle as ar, statuses as rr } from "./functions/getStatusMessage.js";
|
|
133
|
+
import { formatTimestamp as fr } from "./functions/formatTimestamp.js";
|
|
134
|
+
import { playNotificationAudio as pr } from "./functions/playNotificationAudio.js";
|
|
135
|
+
import { insertDaySeparators as mr } from "./functions/insertDaySeparators.js";
|
|
136
|
+
import { sortByTimestamp as xr } from "./functions/sortByTimestamp.js";
|
|
137
|
+
import { getMessageClass as nr } from "./functions/getMessageClass.js";
|
|
138
|
+
import { createReactionHandlers as Mr } from "./functions/createReactionHandlers.js";
|
|
139
|
+
import { getChannelAccentColor as Cr } from "./functions/getChannelAccentColor.js";
|
|
140
|
+
import { parseMarkdown as yr } from "./functions/parseMarkdown.js";
|
|
141
|
+
import { safeMediaPlay as Rr, safeMediaPlayVoid as Ir } from "./functions/safeMediaPlay.js";
|
|
131
142
|
export {
|
|
132
|
-
|
|
143
|
+
Io as AdaptiveExtendedLayout,
|
|
133
144
|
Je as AudioMessage,
|
|
134
|
-
|
|
145
|
+
Ee as AudioRecorder,
|
|
135
146
|
M as AvatarIcon,
|
|
136
|
-
|
|
137
|
-
|
|
147
|
+
bo as BaseContainer,
|
|
148
|
+
_e as BaseEditMessage,
|
|
149
|
+
So as BaseLayout,
|
|
138
150
|
Ye as BaseReplyMessage,
|
|
139
151
|
_ as ButtonCommandsSelector,
|
|
140
152
|
r as ButtonContextMenu,
|
|
141
153
|
ee as ButtonEmojiPicker,
|
|
142
154
|
oe as ButtonTemplateSelector,
|
|
143
155
|
re as ButtonWabaTemplateSelector,
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
156
|
+
et as CallMessage,
|
|
157
|
+
Ve as ChannelSelector,
|
|
158
|
+
Be as ChatFilter,
|
|
159
|
+
Le as ChatInfo,
|
|
160
|
+
po as ChatInput,
|
|
161
|
+
Fe as ChatItem,
|
|
162
|
+
io as ChatList,
|
|
163
|
+
uo as ChatListHeader,
|
|
152
164
|
Ue as ChatPanel,
|
|
153
165
|
ve as ChatTabs,
|
|
154
|
-
|
|
166
|
+
Po as ChatWrapper,
|
|
155
167
|
C as CheckIcon,
|
|
156
168
|
y as CloseButtonIcon,
|
|
157
|
-
|
|
169
|
+
Q as CommunicationPanel,
|
|
170
|
+
ro as ConfirmDeleteMessage,
|
|
158
171
|
R as ContactCRMIcon,
|
|
159
|
-
|
|
172
|
+
f as ContactContextMenu,
|
|
160
173
|
Ne as ContactInfo,
|
|
161
174
|
p as ContextMenu,
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
175
|
+
ot as DateMessage,
|
|
176
|
+
pt as DateMessageSticky,
|
|
177
|
+
rt as DeletedMessageContent,
|
|
178
|
+
mt as DelimiterMessage,
|
|
179
|
+
xt as EditTextMessage,
|
|
165
180
|
m as EmbedPreview,
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
181
|
+
V as ErrorStatusIcon,
|
|
182
|
+
ho as ExtendedLayout,
|
|
183
|
+
co as Feed,
|
|
169
184
|
z as FeedFoundItem,
|
|
170
185
|
J as FeedFoundObjects,
|
|
171
|
-
|
|
172
|
-
|
|
186
|
+
nt as FeedKeyboard,
|
|
187
|
+
Ao as FeedLayout,
|
|
173
188
|
Y as FeedSearch,
|
|
174
|
-
|
|
175
|
-
|
|
189
|
+
Mt as FileMessage,
|
|
190
|
+
fe as FilePreview,
|
|
176
191
|
pe as FileUploader,
|
|
177
|
-
|
|
178
|
-
|
|
192
|
+
Do as FloatContainer,
|
|
193
|
+
Ct as ImageMessage,
|
|
179
194
|
x as LinkPreview,
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
195
|
+
T as MenuIcon,
|
|
196
|
+
yt as MessageKeyboard,
|
|
197
|
+
Rt as MessageReactions,
|
|
198
|
+
Tt as MessageStatusIndicator,
|
|
199
|
+
ft as MissedCallMessage,
|
|
200
|
+
_t as Modal,
|
|
201
|
+
eo as ModalFullscreen,
|
|
202
|
+
oo as ModalNoFooter,
|
|
203
|
+
L as PendingStatusIcon,
|
|
189
204
|
me as PlaceholderComponent,
|
|
190
205
|
U as ReadStatusIcon,
|
|
191
206
|
N as ReceivedStatusIcon,
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
207
|
+
Ft as ReplyAudioMessage,
|
|
208
|
+
vt as ReplyCallMessage,
|
|
209
|
+
Et as ReplyFileMessage,
|
|
210
|
+
Vt as ReplyImageMessage,
|
|
211
|
+
Lt as ReplyStickerMessage,
|
|
212
|
+
Ut as ReplyTextMessage,
|
|
213
|
+
Nt as ReplyVideoMessage,
|
|
214
|
+
B as SearchIcon,
|
|
215
|
+
fo as SelectUser,
|
|
201
216
|
K as SentStatusIcon,
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
217
|
+
F as SettingsIcon,
|
|
218
|
+
go as SideBar,
|
|
219
|
+
Kt as SplashScreen,
|
|
220
|
+
Bt as StickerMessage,
|
|
206
221
|
xe as StickerPicker,
|
|
207
|
-
|
|
222
|
+
Qt as SystemMessage,
|
|
208
223
|
v as TelegramIcon,
|
|
209
224
|
ne as TemplateSelector,
|
|
210
225
|
Me as TextFormatToolbar,
|
|
211
|
-
|
|
226
|
+
zt as TextMessage,
|
|
212
227
|
Ke as ThemeMode,
|
|
213
228
|
n as Tooltip,
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
229
|
+
Jt as TypingMessage,
|
|
230
|
+
Qe as UserProfile,
|
|
231
|
+
Yt as VideoMessage,
|
|
217
232
|
ze as VideoRecorder,
|
|
218
233
|
Ce as WABAAttachmentSection,
|
|
219
234
|
ye as WABAQuickReplyButtons,
|
|
220
235
|
Re as WABASeparatedQuickButtons,
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
Xo as
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
236
|
+
Te as WABATemplateSelector,
|
|
237
|
+
E as WhatsAppIcon,
|
|
238
|
+
Xa as buildEditPayload,
|
|
239
|
+
Ga as buildReplyPayload,
|
|
240
|
+
Fa as calculateMessageMenuPosition,
|
|
241
|
+
Mr as createReactionHandlers,
|
|
242
|
+
ba as findAppBoundsRect,
|
|
243
|
+
fr as formatTimestamp,
|
|
244
|
+
ko as generatePreview,
|
|
245
|
+
Cr as getChannelAccentColor,
|
|
246
|
+
$a as getDeletedOriginalText,
|
|
247
|
+
er as getDeletedTooltipLines,
|
|
248
|
+
Za as getEditTooltipLines,
|
|
249
|
+
nr as getMessageClass,
|
|
250
|
+
na as getMessageValidationReport,
|
|
251
|
+
Sa as getSidebarValidationReport,
|
|
252
|
+
or as getStatus,
|
|
253
|
+
ar as getStatusTitle,
|
|
254
|
+
wo as getTypeFileByMime,
|
|
255
|
+
da as getValidationReport,
|
|
256
|
+
Oa as hideEditPreview,
|
|
257
|
+
ja as hideReplyPreview,
|
|
258
|
+
mr as insertDaySeparators,
|
|
259
|
+
yr as parseMarkdown,
|
|
260
|
+
pr as playNotificationAudio,
|
|
261
|
+
Rr as safeMediaPlay,
|
|
262
|
+
Ir as safeMediaPlayVoid,
|
|
263
|
+
Qa as showEditPreview,
|
|
264
|
+
Na as showReplyPreview,
|
|
265
|
+
xr as sortByTimestamp,
|
|
266
|
+
rr as statuses,
|
|
267
|
+
Wo as uploadFile,
|
|
268
|
+
wa as useChannelAccentColor,
|
|
269
|
+
xa as useChatValidator,
|
|
270
|
+
aa as useConfirmDeleteMessage,
|
|
271
|
+
jo as useDelayDebouncedRef,
|
|
272
|
+
Xo as useEmojiNative,
|
|
273
|
+
Ho as useImmediateDebouncedRef,
|
|
274
|
+
Ba as useMessageActions,
|
|
275
|
+
Oo as useMessageDraft,
|
|
276
|
+
ka as useMessageLinks,
|
|
277
|
+
Da as useMessageMenuActions,
|
|
278
|
+
ga as useMessageValidator,
|
|
279
|
+
Zo as useModalCreateChat,
|
|
280
|
+
$o as useModalCreateChat2,
|
|
281
|
+
ta as useModalCreateDialog,
|
|
282
|
+
sa as useModalSelectUser2,
|
|
283
|
+
la as useModalVideoRecorder,
|
|
284
|
+
qo as useSearchModel,
|
|
285
|
+
Ra as useSidebarValidator,
|
|
286
|
+
qa as useStartEdit,
|
|
287
|
+
Ha as useStartReply,
|
|
288
|
+
Wa as useSubtextTooltip,
|
|
289
|
+
Go as useTheme,
|
|
290
|
+
Ta as useValidation,
|
|
291
|
+
ma as validateChats,
|
|
292
|
+
ca as validateMessages,
|
|
293
|
+
ya as validateSidebarItems
|
|
268
294
|
};
|
package/dist/locale/en.js
CHANGED
|
@@ -20,7 +20,12 @@ const e = {
|
|
|
20
20
|
"component.TextFormatToolbar.Strikethrough": "Strikethrough",
|
|
21
21
|
"component.TextFormatToolbar.Code": "Inline code",
|
|
22
22
|
"component.TextFormatToolbar.Quote": "Quote",
|
|
23
|
-
"component.TextMessage.sendSmsInvite": "Send SMS invitation"
|
|
23
|
+
"component.TextMessage.sendSmsInvite": "Send SMS invitation",
|
|
24
|
+
"component.TextMessage.edited": "edited",
|
|
25
|
+
"component.ConfirmDeleteMessage.title": "Delete message?",
|
|
26
|
+
"component.ConfirmDeleteMessage.delete": "Delete",
|
|
27
|
+
"component.ConfirmDeleteMessage.cancel": "Cancel",
|
|
28
|
+
"component.DeletedMessageContent.text": "Message deleted"
|
|
24
29
|
};
|
|
25
30
|
export {
|
|
26
31
|
e as en
|
package/dist/locale/ru.js
CHANGED
|
@@ -20,7 +20,12 @@ const e = {
|
|
|
20
20
|
"component.TextFormatToolbar.Strikethrough": "Зачёркнутый",
|
|
21
21
|
"component.TextFormatToolbar.Code": "Встроенный код",
|
|
22
22
|
"component.TextFormatToolbar.Quote": "Цитата",
|
|
23
|
-
"component.TextMessage.sendSmsInvite": "Отправить SMS приглашение"
|
|
23
|
+
"component.TextMessage.sendSmsInvite": "Отправить SMS приглашение",
|
|
24
|
+
"component.TextMessage.edited": "изменено",
|
|
25
|
+
"component.ConfirmDeleteMessage.title": "Удалить сообщение?",
|
|
26
|
+
"component.ConfirmDeleteMessage.delete": "Удалить",
|
|
27
|
+
"component.ConfirmDeleteMessage.cancel": "Отменить",
|
|
28
|
+
"component.DeletedMessageContent.text": "Сообщение удалено"
|
|
24
29
|
};
|
|
25
30
|
export {
|
|
26
31
|
e as ru
|