@mobilon-dev/chotto 0.3.80 → 0.3.81
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_icons/MessageStatus/ErrorStatusIcon.vue.js +7 -0
- package/dist/components/{2_feed_elements/MessageStatusIndicator/icons → 1_icons/MessageStatus}/ErrorStatusIcon.vue2.js +5 -5
- package/dist/components/1_icons/MessageStatus/PendingStatusIcon.vue.js +7 -0
- package/dist/components/1_icons/MessageStatus/ReadStatusIcon.vue.js +7 -0
- package/dist/components/{2_feed_elements/MessageStatusIndicator/icons → 1_icons/MessageStatus}/ReadStatusIcon.vue2.js +1 -1
- package/dist/components/1_icons/MessageStatus/ReceivedStatusIcon.vue.js +7 -0
- package/dist/components/{2_feed_elements/MessageStatusIndicator/icons → 1_icons/MessageStatus}/ReceivedStatusIcon.vue2.js +9 -9
- package/dist/components/1_icons/MessageStatus/SentStatusIcon.vue.js +7 -0
- package/dist/components/2_chatlist_elements/ChatItem/ChatItem.vue.js +2 -2
- package/dist/components/2_chatlist_elements/ChatItem/ChatItem.vue2.js +132 -139
- package/dist/components/2_feed_elements/MessageStatusIndicator/MessageStatusIndicator.vue.js +2 -2
- package/dist/components/2_feed_elements/MessageStatusIndicator/MessageStatusIndicator.vue2.js +5 -5
- package/dist/index.js +233 -223
- 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/components/2_chatlist_elements/ChatItem/styles/types.d.ts +2 -4
- package/dist/types/components/index.d.ts +5 -0
- package/package.json +1 -1
- package/dist/components/2_feed_elements/MessageStatusIndicator/icons/ErrorStatusIcon.vue.js +0 -7
- package/dist/components/2_feed_elements/MessageStatusIndicator/icons/PendingStatusIcon.vue.js +0 -7
- package/dist/components/2_feed_elements/MessageStatusIndicator/icons/ReadStatusIcon.vue.js +0 -7
- package/dist/components/2_feed_elements/MessageStatusIndicator/icons/ReceivedStatusIcon.vue.js +0 -7
- package/dist/components/2_feed_elements/MessageStatusIndicator/icons/SentStatusIcon.vue.js +0 -7
- /package/dist/components/{2_feed_elements/MessageStatusIndicator/icons → 1_icons/MessageStatus}/PendingStatusIcon.vue2.js +0 -0
- /package/dist/components/{2_feed_elements/MessageStatusIndicator/icons → 1_icons/MessageStatus}/SentStatusIcon.vue2.js +0 -0
- /package/dist/types/components/{2_feed_elements/MessageStatusIndicator/icons → 1_icons/MessageStatus}/ErrorStatusIcon.vue.d.ts +0 -0
- /package/dist/types/components/{2_feed_elements/MessageStatusIndicator/icons → 1_icons/MessageStatus}/PendingStatusIcon.vue.d.ts +0 -0
- /package/dist/types/components/{2_feed_elements/MessageStatusIndicator/icons → 1_icons/MessageStatus}/ReadStatusIcon.vue.d.ts +0 -0
- /package/dist/types/components/{2_feed_elements/MessageStatusIndicator/icons → 1_icons/MessageStatus}/ReceivedStatusIcon.vue.d.ts +0 -0
- /package/dist/types/components/{2_feed_elements/MessageStatusIndicator/icons → 1_icons/MessageStatus}/SentStatusIcon.vue.d.ts +0 -0
- /package/dist/types/components/{2_feed_elements/MessageStatusIndicator/icons → 1_icons/MessageStatus}/index.d.ts +0 -0
package/dist/components/2_feed_elements/MessageStatusIndicator/MessageStatusIndicator.vue2.js
CHANGED
|
@@ -2,11 +2,11 @@ import { defineComponent as m, computed as i, createBlock as s, createCommentVNo
|
|
|
2
2
|
import p from "../../1_atoms/Tooltip/Tooltip.vue.js";
|
|
3
3
|
import { statuses as S } from "../../../functions/getStatusMessage.js";
|
|
4
4
|
import "../../../functions/parseMarkdown.js";
|
|
5
|
-
import f from "
|
|
6
|
-
import y from "
|
|
7
|
-
import C from "
|
|
8
|
-
import k from "
|
|
9
|
-
import I from "
|
|
5
|
+
import f from "../../1_icons/MessageStatus/ErrorStatusIcon.vue.js";
|
|
6
|
+
import y from "../../1_icons/MessageStatus/PendingStatusIcon.vue.js";
|
|
7
|
+
import C from "../../1_icons/MessageStatus/ReadStatusIcon.vue.js";
|
|
8
|
+
import k from "../../1_icons/MessageStatus/ReceivedStatusIcon.vue.js";
|
|
9
|
+
import I from "../../1_icons/MessageStatus/SentStatusIcon.vue.js";
|
|
10
10
|
const M = /* @__PURE__ */ m({
|
|
11
11
|
name: "MessageStatusIndicator",
|
|
12
12
|
__name: "MessageStatusIndicator",
|
package/dist/index.js
CHANGED
|
@@ -3,245 +3,255 @@
|
|
|
3
3
|
import { default as r } from "./components/1_atoms/ButtonContextMenu/ButtonContextMenu.vue.js";
|
|
4
4
|
import { default as s } from "./components/1_atoms/ContactContextMenu/ContactContextMenu.vue.js";
|
|
5
5
|
import { default as p } from "./components/1_atoms/ContextMenu/ContextMenu.vue.js";
|
|
6
|
-
import { default as
|
|
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";
|
|
8
|
-
import { default as
|
|
8
|
+
import { default as i } from "./components/1_atoms/Tooltip/Tooltip.vue.js";
|
|
9
9
|
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
|
-
import { default as
|
|
13
|
-
import { default as
|
|
12
|
+
import { default as I } from "./components/1_icons/ContactCRMIcon.vue.js";
|
|
13
|
+
import { default as A } from "./components/1_icons/MenuIcon.vue.js";
|
|
14
14
|
import { default as T } from "./components/1_icons/SearchIcon.vue.js";
|
|
15
15
|
import { default as b } from "./components/1_icons/SettingsIcon.vue.js";
|
|
16
|
-
import { default as
|
|
16
|
+
import { default as P } from "./components/1_icons/TelegramIcon.vue.js";
|
|
17
17
|
import { default as v } from "./components/1_icons/WhatsAppIcon.vue.js";
|
|
18
|
-
import { default as L } from "./components/
|
|
19
|
-
import { default as w } from "./components/
|
|
20
|
-
import { default as U } from "./components/
|
|
21
|
-
import { default as H } from "./components/
|
|
22
|
-
import { default as N } from "./components/
|
|
23
|
-
import { default as O } from "./components/
|
|
24
|
-
import { default as z } from "./components/
|
|
25
|
-
import { default as J } from "./components/
|
|
26
|
-
import { default as Y } from "./components/
|
|
27
|
-
import { default as _ } from "./components/2_chatinput_elements/
|
|
28
|
-
import { default as ee } from "./components/2_chatinput_elements/
|
|
29
|
-
import { default as oe } from "./components/2_chatinput_elements/
|
|
30
|
-
import { default as re } from "./components/2_chatinput_elements/
|
|
31
|
-
import { default as se } from "./components/2_chatinput_elements/
|
|
32
|
-
import { default as pe } from "./components/2_chatinput_elements/
|
|
33
|
-
import { default as
|
|
34
|
-
import { default as xe } from "./components/2_chatinput_elements/
|
|
35
|
-
import { default as
|
|
36
|
-
import { default as Me } from "./components/
|
|
37
|
-
import { default as Ce } from "./components/
|
|
38
|
-
import { default as he } from "./components/
|
|
39
|
-
import { default as
|
|
40
|
-
import { default as
|
|
41
|
-
import { default as Te } from "./components/
|
|
42
|
-
import { default as be } from "./components/
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as ve } from "./components/2_elements/
|
|
45
|
-
import { default as Le } from "./components/2_elements/
|
|
46
|
-
import { default as we } from "./components/2_elements/
|
|
47
|
-
import { default as Ue } from "./components/
|
|
48
|
-
import { default as He } from "./components/
|
|
49
|
-
import { default as Ne } from "./components/
|
|
50
|
-
import { default as Oe } from "./components/
|
|
51
|
-
import { default as ze } from "./components/
|
|
52
|
-
import { default as Je } from "./components/2_feed_elements/
|
|
53
|
-
import { default as Ye } from "./components/2_feed_elements/
|
|
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 st } from "./components/2_feed_elements/
|
|
59
|
-
import { default as pt } from "./components/2_feed_elements/
|
|
60
|
-
import { default as
|
|
61
|
-
import { default as xt } from "./components/2_feed_elements/
|
|
62
|
-
import { default as
|
|
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
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as Tt } from "./components/2_feed_elements/
|
|
69
|
-
import { default as bt } from "./components/2_feed_elements/
|
|
70
|
-
import { default as
|
|
71
|
-
import { default as vt } from "./components/2_feed_elements/
|
|
72
|
-
import { default as Lt } from "./components/2_feed_elements/
|
|
73
|
-
import { default as wt } from "./components/
|
|
74
|
-
import { default as Ut } from "./components/
|
|
75
|
-
import { default as Ht } from "./components/
|
|
76
|
-
import { default as Nt } from "./components/
|
|
77
|
-
import { default as Ot } from "./components/
|
|
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/
|
|
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 so } from "./components/
|
|
86
|
-
import { default as po } from "./components/
|
|
87
|
-
import { default as uo } from "./components/
|
|
88
|
-
import { default as
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
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 {
|
|
18
|
+
import { default as L } from "./components/1_icons/MessageStatus/ErrorStatusIcon.vue.js";
|
|
19
|
+
import { default as w } from "./components/1_icons/MessageStatus/PendingStatusIcon.vue.js";
|
|
20
|
+
import { default as U } from "./components/1_icons/MessageStatus/ReadStatusIcon.vue.js";
|
|
21
|
+
import { default as H } from "./components/1_icons/MessageStatus/ReceivedStatusIcon.vue.js";
|
|
22
|
+
import { default as N } from "./components/1_icons/MessageStatus/SentStatusIcon.vue.js";
|
|
23
|
+
import { default as O } from "./components/2_blocks/CommunicationPanel/CommunicationPanel.vue.js";
|
|
24
|
+
import { default as z } from "./components/2_blocks/FeedFoundItem/FeedFoundItem.vue.js";
|
|
25
|
+
import { default as J } from "./components/2_blocks/FeedFoundObjects/FeedFoundObjects.vue.js";
|
|
26
|
+
import { default as Y } from "./components/2_blocks/FeedSearch/FeedSearch.vue.js";
|
|
27
|
+
import { default as _ } from "./components/2_chatinput_elements/ButtonCommandsSelector/ButtonCommandsSelector.vue.js";
|
|
28
|
+
import { default as ee } from "./components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue.js";
|
|
29
|
+
import { default as oe } from "./components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue.js";
|
|
30
|
+
import { default as re } from "./components/2_chatinput_elements/ButtonWabaTemplateSelector/ButtonWabaTemplateSelector.vue.js";
|
|
31
|
+
import { default as se } from "./components/2_chatinput_elements/FilePreview/FilePreview.vue.js";
|
|
32
|
+
import { default as pe } from "./components/2_chatinput_elements/FileUploader/FileUploader.vue.js";
|
|
33
|
+
import { default as me } from "./components/2_chatinput_elements/PlaceholderComponent/PlaceholderComponent.vue.js";
|
|
34
|
+
import { default as xe } from "./components/2_chatinput_elements/StickerPicker/StickerPicker.vue.js";
|
|
35
|
+
import { default as ie } from "./components/2_chatinput_elements/TemplateSelector/TemplateSelector.vue.js";
|
|
36
|
+
import { default as Me } from "./components/2_chatinput_elements/TextFormatToolbar/TextFormatToolbar.vue.js";
|
|
37
|
+
import { default as Ce } from "./components/2_chatinput_elements/WABAAttachmentSection/WABAAttachmentSection.vue.js";
|
|
38
|
+
import { default as he } from "./components/2_chatinput_elements/WABAQuickReplyButtons/WABAQuickReplyButtons.vue.js";
|
|
39
|
+
import { default as Ie } from "./components/2_chatinput_elements/WABASeparatedQuickButtons/WABASeparatedQuickButtons.vue.js";
|
|
40
|
+
import { default as Ae } from "./components/2_chatinput_elements/WABATemplateSelector/WABATemplateSelector.vue.js";
|
|
41
|
+
import { default as Te } from "./components/2_chatlist_elements/ChatFilter/ChatFilter.vue.js";
|
|
42
|
+
import { default as be } from "./components/2_chatlist_elements/ChatItem/ChatItem.vue.js";
|
|
43
|
+
import { default as Pe } from "./components/2_chatlist_elements/ChatTabs/ChatTabs.vue.js";
|
|
44
|
+
import { default as ve } from "./components/2_elements/AudioRecorder/AudioRecorder.vue.js";
|
|
45
|
+
import { default as Le } from "./components/2_elements/ChannelSelector/ChannelSelector.vue.js";
|
|
46
|
+
import { default as we } from "./components/2_elements/ChatInfo/ChatInfo.vue.js";
|
|
47
|
+
import { default as Ue } from "./components/2_elements/ChatPanel/ChatPanel.vue.js";
|
|
48
|
+
import { default as He } from "./components/2_elements/ContactInfo/ContactInfo.vue.js";
|
|
49
|
+
import { default as Ne } from "./components/2_elements/ThemeMode/ThemeMode.vue.js";
|
|
50
|
+
import { default as Oe } from "./components/2_elements/UserProfile/UserProfile.vue.js";
|
|
51
|
+
import { default as ze } from "./components/2_elements/VideoRecorder/VideoRecorder.vue.js";
|
|
52
|
+
import { default as Je } from "./components/2_feed_elements/AudioMessage/AudioMessage.vue.js";
|
|
53
|
+
import { default as Ye } from "./components/2_feed_elements/BaseReplyMessage/BaseReplyMessage.vue.js";
|
|
54
|
+
import { default as _e } from "./components/2_feed_elements/CallMessage/CallMessage.vue.js";
|
|
55
|
+
import { default as et } from "./components/2_feed_elements/DateMessage/DateMessage.vue.js";
|
|
56
|
+
import { default as ot } from "./components/2_feed_elements/MissedCallMessage/MissedCallMessage.vue.js";
|
|
57
|
+
import { default as rt } from "./components/2_feed_elements/DateMessageSticky/DateMessageSticky.vue.js";
|
|
58
|
+
import { default as st } from "./components/2_feed_elements/DelimiterMessage/DelimiterMessage.vue.js";
|
|
59
|
+
import { default as pt } from "./components/2_feed_elements/FeedKeyboard/FeedKeyboard.vue.js";
|
|
60
|
+
import { default as mt } from "./components/2_feed_elements/FileMessage/FileMessage.vue.js";
|
|
61
|
+
import { default as xt } from "./components/2_feed_elements/ImageMessage/ImageMessage.vue.js";
|
|
62
|
+
import { default as it } from "./components/2_feed_elements/MessageKeyboard/MessageKeyboard.vue.js";
|
|
63
|
+
import { default as Mt } from "./components/2_feed_elements/MessageReactions/MessageReactions.vue.js";
|
|
64
|
+
import { default as Ct } from "./components/2_feed_elements/MessageStatusIndicator/MessageStatusIndicator.vue.js";
|
|
65
|
+
import { default as ht } from "./components/2_feed_elements/StickerMessage/StickerMessage.vue.js";
|
|
66
|
+
import { default as It } from "./components/2_feed_elements/ReplyAudioMessage/ReplyAudioMessage.vue.js";
|
|
67
|
+
import { default as At } from "./components/2_feed_elements/ReplyCallMessage/ReplyCallMessage.vue.js";
|
|
68
|
+
import { default as Tt } from "./components/2_feed_elements/ReplyFileMessage/ReplyFileMessage.vue.js";
|
|
69
|
+
import { default as bt } from "./components/2_feed_elements/ReplyImageMessage/ReplyImageMessage.vue.js";
|
|
70
|
+
import { default as Pt } from "./components/2_feed_elements/ReplyStickerMessage/ReplyStickerMessage.vue.js";
|
|
71
|
+
import { default as vt } from "./components/2_feed_elements/ReplyTextMessage/ReplyTextMessage.vue.js";
|
|
72
|
+
import { default as Lt } from "./components/2_feed_elements/ReplyVideoMessage/ReplyVideoMessage.vue.js";
|
|
73
|
+
import { default as wt } from "./components/2_feed_elements/SplashScreen/SplashScreen.vue.js";
|
|
74
|
+
import { default as Ut } from "./components/2_feed_elements/SystemMessage/SystemMessage.vue.js";
|
|
75
|
+
import { default as Ht } from "./components/2_feed_elements/TextMessage/TextMessage.vue.js";
|
|
76
|
+
import { default as Nt } from "./components/2_feed_elements/TypingMessage/TypingMessage.vue.js";
|
|
77
|
+
import { default as Ot } from "./components/2_feed_elements/VideoMessage/VideoMessage.vue.js";
|
|
78
|
+
import { default as zt } from "./components/2_modals/Modal/Modal.vue.js";
|
|
79
|
+
import { default as Jt } from "./components/2_modals/ModalFullscreen/ModalFullscreen.vue.js";
|
|
80
|
+
import { default as Yt } from "./components/2_modals/ModalNoFooter/ModalNoFooter.vue.js";
|
|
81
|
+
import { default as _t } from "./components/2_modals/SelectUser/SelectUser.vue.js";
|
|
82
|
+
import { default as eo } from "./components/3_compounds/ChatInput/ChatInput.vue.js";
|
|
83
|
+
import { default as oo } from "./components/3_compounds/ChatList/ChatListHeader.vue.js";
|
|
84
|
+
import { default as ro } from "./components/3_compounds/ChatList/ChatList.vue.js";
|
|
85
|
+
import { default as so } from "./components/3_compounds/Feed/Feed.vue.js";
|
|
86
|
+
import { default as po } from "./components/3_compounds/SideBar/SideBar.vue.js";
|
|
87
|
+
import { default as uo } from "./components/4_layouts/BaseLayout/BaseLayout.vue.js";
|
|
88
|
+
import { default as no } from "./components/4_layouts/ExtendedLayout/ExtendedLayout.vue.js";
|
|
89
|
+
import { default as co } from "./components/4_layouts/AdaptiveExtendedLayout/AdaptiveExtendedLayout.vue.js";
|
|
90
|
+
import { default as go } from "./components/4_layouts/FeedLayout/FeedLayout.vue.js";
|
|
91
|
+
import { default as So } from "./components/4_layouts/ChatWrapper/ChatWrapper.vue.js";
|
|
92
|
+
import { default as yo } from "./components/5_containers/BaseContainer/BaseContainer.vue.js";
|
|
93
|
+
import { default as Ro } from "./components/5_containers/FloatContainer/FloatContainer.vue.js";
|
|
94
|
+
import { generatePreview as Fo } from "./hooks/uploadFile/generatePreview.js";
|
|
95
|
+
import { getTypeFileByMime as Bo } from "./hooks/uploadFile/getTypeFileByMime.js";
|
|
96
|
+
import { uploadFile as ko } from "./hooks/uploadFile/uploadFile.js";
|
|
97
|
+
import { useDelayDebouncedRef as Vo } from "./hooks/useDelayDebouncedRef.js";
|
|
98
|
+
import { useImmediateDebouncedRef as Do } from "./hooks/useImmediateDebouncedRef.js";
|
|
99
|
+
import { useMessageDraft as Wo } from "./hooks/useMessageDraft.js";
|
|
100
|
+
import { useSearchModel as Eo } from "./hooks/useSearchModel.js";
|
|
101
|
+
import { useTheme as jo } from "./hooks/useTheme.js";
|
|
102
|
+
import { useModalCreateChat as Ko } from "./hooks/modals/useCreateChat.js";
|
|
103
|
+
import { useModalCreateChat2 as Qo } from "./hooks/modals/useCreateChat2.js";
|
|
104
|
+
import { useModalCreateDialog as qo } from "./hooks/modals/useCreateDialog.js";
|
|
105
|
+
import { useModalSelectUser2 as Go } from "./hooks/modals/useModalSelectUser2.js";
|
|
106
|
+
import { useModalVideoRecorder as Xo } from "./hooks/modals/useVideoRecorder.js";
|
|
107
|
+
import { getValidationReport as Zo, validateChats as _o } from "./hooks/validators/chats/chatValidator.js";
|
|
108
|
+
import { useChatValidator as ea } from "./hooks/validators/chats/useChatValidator.js";
|
|
109
|
+
import { getMessageValidationReport as oa, validateMessages as aa } from "./hooks/validators/messages/messageValidator.js";
|
|
110
|
+
import { useMessageValidator as fa } from "./hooks/validators/messages/useMessageValidator.js";
|
|
111
|
+
import { getSidebarValidationReport as la, validateSidebarItems as pa } from "./hooks/validators/sidebar/sidebarValidator.js";
|
|
112
|
+
import { useSidebarValidator as ma } from "./hooks/validators/sidebar/useSidebarValidator.js";
|
|
113
|
+
import { useValidation as xa } from "./hooks/validators/useValidation.js";
|
|
114
|
+
import { useMessageActions as ia } from "./hooks/messages/useMessageActions.js";
|
|
115
|
+
import { useMessageLinks as Ma } from "./hooks/messages/useMessageLinks.js";
|
|
116
|
+
import { useChannelAccentColor as Ca } from "./hooks/messages/useChannelAccentColor.js";
|
|
117
|
+
import { useSubtextTooltip as ha } from "./hooks/messages/useSubtextTooltip.js";
|
|
118
|
+
import { getStatus as Ia, getStatusTitle as Ra, statuses as Aa } from "./functions/getStatusMessage.js";
|
|
119
|
+
import { formatTimestamp as Ta } from "./functions/formatTimestamp.js";
|
|
120
|
+
import { playNotificationAudio as ba } from "./functions/playNotificationAudio.js";
|
|
121
|
+
import { insertDaySeparators as Pa } from "./functions/insertDaySeparators.js";
|
|
122
|
+
import { sortByTimestamp as va } from "./functions/sortByTimestamp.js";
|
|
123
|
+
import { getMessageClass as La } from "./functions/getMessageClass.js";
|
|
124
|
+
import { createReactionHandlers as wa } from "./functions/createReactionHandlers.js";
|
|
125
|
+
import { getChannelAccentColor as Ua } from "./functions/getChannelAccentColor.js";
|
|
126
|
+
import { parseMarkdown as Ha } from "./functions/parseMarkdown.js";
|
|
122
127
|
export {
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
128
|
+
co as AdaptiveExtendedLayout,
|
|
129
|
+
Je as AudioMessage,
|
|
130
|
+
ve as AudioRecorder,
|
|
126
131
|
M as AvatarIcon,
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
132
|
+
yo as BaseContainer,
|
|
133
|
+
uo as BaseLayout,
|
|
134
|
+
Ye as BaseReplyMessage,
|
|
135
|
+
_ as ButtonCommandsSelector,
|
|
131
136
|
r as ButtonContextMenu,
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
137
|
+
ee as ButtonEmojiPicker,
|
|
138
|
+
oe as ButtonTemplateSelector,
|
|
139
|
+
re as ButtonWabaTemplateSelector,
|
|
140
|
+
_e as CallMessage,
|
|
141
|
+
Le as ChannelSelector,
|
|
142
|
+
Te as ChatFilter,
|
|
143
|
+
we as ChatInfo,
|
|
144
|
+
eo as ChatInput,
|
|
145
|
+
be as ChatItem,
|
|
146
|
+
ro as ChatList,
|
|
147
|
+
oo as ChatListHeader,
|
|
148
|
+
Ue as ChatPanel,
|
|
149
|
+
Pe as ChatTabs,
|
|
150
|
+
So as ChatWrapper,
|
|
146
151
|
C as CheckIcon,
|
|
147
152
|
h as CloseButtonIcon,
|
|
148
|
-
|
|
149
|
-
|
|
153
|
+
O as CommunicationPanel,
|
|
154
|
+
I as ContactCRMIcon,
|
|
150
155
|
s as ContactContextMenu,
|
|
151
|
-
|
|
156
|
+
He as ContactInfo,
|
|
152
157
|
p as ContextMenu,
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
158
|
+
et as DateMessage,
|
|
159
|
+
rt as DateMessageSticky,
|
|
160
|
+
st as DelimiterMessage,
|
|
161
|
+
m as EmbedPreview,
|
|
162
|
+
L as ErrorStatusIcon,
|
|
163
|
+
no as ExtendedLayout,
|
|
164
|
+
so as Feed,
|
|
165
|
+
z as FeedFoundItem,
|
|
166
|
+
J as FeedFoundObjects,
|
|
167
|
+
pt as FeedKeyboard,
|
|
168
|
+
go as FeedLayout,
|
|
169
|
+
Y as FeedSearch,
|
|
170
|
+
mt as FileMessage,
|
|
171
|
+
se as FilePreview,
|
|
172
|
+
pe as FileUploader,
|
|
173
|
+
Ro as FloatContainer,
|
|
174
|
+
xt as ImageMessage,
|
|
169
175
|
x as LinkPreview,
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
176
|
+
A as MenuIcon,
|
|
177
|
+
it as MessageKeyboard,
|
|
178
|
+
Mt as MessageReactions,
|
|
179
|
+
Ct as MessageStatusIndicator,
|
|
180
|
+
ot as MissedCallMessage,
|
|
181
|
+
zt as Modal,
|
|
182
|
+
Jt as ModalFullscreen,
|
|
183
|
+
Yt as ModalNoFooter,
|
|
184
|
+
w as PendingStatusIcon,
|
|
185
|
+
me as PlaceholderComponent,
|
|
186
|
+
U as ReadStatusIcon,
|
|
187
|
+
H as ReceivedStatusIcon,
|
|
188
|
+
It as ReplyAudioMessage,
|
|
189
|
+
At as ReplyCallMessage,
|
|
190
|
+
Tt as ReplyFileMessage,
|
|
191
|
+
bt as ReplyImageMessage,
|
|
192
|
+
Pt as ReplyStickerMessage,
|
|
193
|
+
vt as ReplyTextMessage,
|
|
194
|
+
Lt as ReplyVideoMessage,
|
|
186
195
|
T as SearchIcon,
|
|
187
|
-
|
|
196
|
+
_t as SelectUser,
|
|
197
|
+
N as SentStatusIcon,
|
|
188
198
|
b as SettingsIcon,
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
199
|
+
po as SideBar,
|
|
200
|
+
wt as SplashScreen,
|
|
201
|
+
ht as StickerMessage,
|
|
202
|
+
xe as StickerPicker,
|
|
203
|
+
Ut as SystemMessage,
|
|
204
|
+
P as TelegramIcon,
|
|
205
|
+
ie as TemplateSelector,
|
|
206
|
+
Me as TextFormatToolbar,
|
|
207
|
+
Ht as TextMessage,
|
|
208
|
+
Ne as ThemeMode,
|
|
209
|
+
i as Tooltip,
|
|
210
|
+
Nt as TypingMessage,
|
|
211
|
+
Oe as UserProfile,
|
|
212
|
+
Ot as VideoMessage,
|
|
213
|
+
ze as VideoRecorder,
|
|
214
|
+
Ce as WABAAttachmentSection,
|
|
215
|
+
he as WABAQuickReplyButtons,
|
|
216
|
+
Ie as WABASeparatedQuickButtons,
|
|
217
|
+
Ae as WABATemplateSelector,
|
|
208
218
|
v as WhatsAppIcon,
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
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
|
-
|
|
219
|
+
wa as createReactionHandlers,
|
|
220
|
+
Ta as formatTimestamp,
|
|
221
|
+
Fo as generatePreview,
|
|
222
|
+
Ua as getChannelAccentColor,
|
|
223
|
+
La as getMessageClass,
|
|
224
|
+
oa as getMessageValidationReport,
|
|
225
|
+
la as getSidebarValidationReport,
|
|
226
|
+
Ia as getStatus,
|
|
227
|
+
Ra as getStatusTitle,
|
|
228
|
+
Bo as getTypeFileByMime,
|
|
229
|
+
Zo as getValidationReport,
|
|
230
|
+
Pa as insertDaySeparators,
|
|
231
|
+
Ha as parseMarkdown,
|
|
232
|
+
ba as playNotificationAudio,
|
|
233
|
+
va as sortByTimestamp,
|
|
234
|
+
Aa as statuses,
|
|
235
|
+
ko as uploadFile,
|
|
236
|
+
Ca as useChannelAccentColor,
|
|
237
|
+
ea as useChatValidator,
|
|
238
|
+
Vo as useDelayDebouncedRef,
|
|
239
|
+
Do as useImmediateDebouncedRef,
|
|
240
|
+
ia as useMessageActions,
|
|
241
|
+
Wo as useMessageDraft,
|
|
242
|
+
Ma as useMessageLinks,
|
|
243
|
+
fa as useMessageValidator,
|
|
244
|
+
Ko as useModalCreateChat,
|
|
245
|
+
Qo as useModalCreateChat2,
|
|
246
|
+
qo as useModalCreateDialog,
|
|
247
|
+
Go as useModalSelectUser2,
|
|
248
|
+
Xo as useModalVideoRecorder,
|
|
249
|
+
Eo as useSearchModel,
|
|
250
|
+
ma as useSidebarValidator,
|
|
251
|
+
ha as useSubtextTooltip,
|
|
252
|
+
jo as useTheme,
|
|
253
|
+
xa as useValidation,
|
|
254
|
+
_o as validateChats,
|
|
255
|
+
aa as validateMessages,
|
|
256
|
+
pa as validateSidebarItems
|
|
247
257
|
};
|