@mobilon-dev/chotto 0.3.35 → 0.3.37

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.
Files changed (48) hide show
  1. package/dist/chotto.css +1 -1
  2. package/dist/components/1_atoms/ContactContextMenu/ContactContextMenu.vue.js +7 -0
  3. package/dist/components/1_atoms/ContactContextMenu/ContactContextMenu.vue2.js +114 -0
  4. package/dist/components/1_atoms/ContextMenu/ContextMenu.vue.js +23 -19
  5. package/dist/components/1_atoms/Tooltip/Tooltip.vue.js +2 -2
  6. package/dist/components/1_atoms/Tooltip/Tooltip.vue2.js +62 -34
  7. package/dist/components/2_blocks/CommunicationPanel/CommunicationPanel.vue.js +262 -203
  8. package/dist/components/2_blocks/CommunicationPanel/composables/useCommunicationActions.js +56 -52
  9. package/dist/components/2_blocks/CommunicationPanel/composables/useCommunicationAttributes.js +20 -17
  10. package/dist/components/2_blocks/CommunicationPanel/composables/useCommunicationDialogSync.js +27 -23
  11. package/dist/components/2_chatinput_elements/StickerPicker/StickerPicker.vue.js +1 -1
  12. package/dist/components/2_chatinput_elements/StickerPicker/StickerPicker.vue2.js +176 -203
  13. package/dist/components/2_feed_elements/DelimiterMessage/DelimiterMessage.vue.js +7 -0
  14. package/dist/components/2_feed_elements/DelimiterMessage/DelimiterMessage.vue2.js +18 -0
  15. package/dist/components/2_feed_elements/MessageStatusIndicator/MessageStatusIndicator.vue.js +1 -1
  16. package/dist/components/3_compounds/ChatInput/ChatInput.vue.js +2 -2
  17. package/dist/components/3_compounds/ChatInput/ChatInput.vue2.js +71 -65
  18. package/dist/components/3_compounds/ChatList/composables/useChatListFilter.js +14 -17
  19. package/dist/components/3_compounds/Feed/composables/useFeedComponents.js +13 -11
  20. package/dist/index.js +239 -235
  21. package/dist/locale/en.js +4 -0
  22. package/dist/locale/ru.js +6 -2
  23. package/dist/themes/dark.css +1 -1
  24. package/dist/themes/default.css +1 -1
  25. package/dist/themes/glass.css +1 -1
  26. package/dist/themes/green.css +1 -1
  27. package/dist/themes/mobilon1.css +1 -1
  28. package/dist/types/components/1_atoms/ContactContextMenu/ContactContextMenu.vue.d.ts +59 -0
  29. package/dist/types/components/1_atoms/ContactContextMenu/stories/ContactContextMenu.stories.d.ts +10 -0
  30. package/dist/types/components/1_atoms/ContactContextMenu/styles/types.d.ts +67 -0
  31. package/dist/types/components/1_atoms/ContextMenu/styles/types.d.ts +6 -0
  32. package/dist/types/components/1_atoms/Tooltip/Tooltip.vue.d.ts +22 -1
  33. package/dist/types/components/2_blocks/CommunicationPanel/CommunicationPanel.vue.d.ts +6 -0
  34. package/dist/types/components/2_blocks/CommunicationPanel/composables/useCommunicationActions.d.ts +6 -2
  35. package/dist/types/components/2_blocks/CommunicationPanel/composables/useCommunicationDialogSync.d.ts +10 -2
  36. package/dist/types/components/2_blocks/CommunicationPanel/stories/CommunicationPanel.stories.d.ts +6 -0
  37. package/dist/types/components/2_chatlist_elements/ChatItem/styles/types.d.ts +8 -0
  38. package/dist/types/components/2_feed_elements/DelimiterMessage/DelimiterMessage.vue.d.ts +13 -0
  39. package/dist/types/components/2_feed_elements/DelimiterMessage/stories/DelimiterMessage.stories.d.ts +6 -0
  40. package/dist/types/components/2_feed_elements/DelimiterMessage/styles/types.d.ts +27 -0
  41. package/dist/types/components/2_feed_elements/types/messages.d.ts +4 -0
  42. package/dist/types/components/3_compounds/ChatList/ChatList.vue.d.ts +1 -1
  43. package/dist/types/components/3_compounds/ChatList/composables/useChatListFilter.d.ts +3 -3
  44. package/dist/types/components/4_layouts/BaseLayout/styles/types.d.ts +6 -0
  45. package/dist/types/components/index.d.ts +2 -0
  46. package/dist/types/locale/en.d.ts +4 -0
  47. package/dist/types/locale/ru.d.ts +4 -0
  48. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1,241 +1,245 @@
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 s } from "./components/1_atoms/ContextMenu/ContextMenu.vue.js";
5
- import { default as p } from "./components/1_atoms/EmbedPreview/EmbedPreview.vue.js";
6
- import { default as d } from "./components/1_atoms/LinkPreview/LinkPreview.vue.js";
7
- import { default as x } from "./components/1_atoms/Tooltip/Tooltip.vue.js";
8
- import { default as n } from "./components/1_icons/AvatarIcon.vue.js";
9
- import { default as M } from "./components/1_icons/CheckIcon.vue.js";
10
- import { default as C } from "./components/1_icons/CloseButtonIcon.vue.js";
11
- import { default as h } from "./components/1_icons/ContactCRMIcon.vue.js";
12
- import { default as R } from "./components/1_icons/MenuIcon.vue.js";
13
- import { default as F } from "./components/1_icons/SearchIcon.vue.js";
14
- import { default as T } from "./components/1_icons/SettingsIcon.vue.js";
15
- import { default as b } from "./components/1_icons/TelegramIcon.vue.js";
16
- import { default as V } from "./components/1_icons/WhatsAppIcon.vue.js";
17
- import { default as v } from "./components/2_blocks/CommunicationPanel/CommunicationPanel.vue.js";
18
- import { default as L } from "./components/2_blocks/FeedFoundItem/FeedFoundItem.vue.js";
19
- import { default as w } from "./components/2_blocks/FeedFoundObjects/FeedFoundObjects.vue.js";
20
- import { default as U } from "./components/2_blocks/FeedSearch/FeedSearch.vue.js";
21
- import { default as H } from "./components/2_chatinput_elements/ButtonCommandsSelector/ButtonCommandsSelector.vue.js";
22
- import { default as N } from "./components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue.js";
23
- import { default as O } from "./components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue.js";
24
- import { default as z } from "./components/2_chatinput_elements/ButtonWabaTemplateSelector/ButtonWabaTemplateSelector.vue.js";
25
- import { default as J } from "./components/2_chatinput_elements/FilePreview/FilePreview.vue.js";
26
- import { default as Y } from "./components/2_chatinput_elements/FileUploader/FileUploader.vue.js";
27
- import { default as _ } from "./components/2_chatinput_elements/PlaceholderComponent/PlaceholderComponent.vue.js";
28
- import { default as ee } from "./components/2_chatinput_elements/StickerPicker/StickerPicker.vue.js";
29
- import { default as oe } from "./components/2_chatinput_elements/TemplateSelector/TemplateSelector.vue.js";
30
- import { default as re } from "./components/2_chatinput_elements/TextFormatToolbar/TextFormatToolbar.vue.js";
31
- import { default as se } from "./components/2_chatinput_elements/WABAAttachmentSection/WABAAttachmentSection.vue.js";
32
- import { default as pe } from "./components/2_chatinput_elements/WABAQuickReplyButtons/WABAQuickReplyButtons.vue.js";
33
- import { default as de } from "./components/2_chatinput_elements/WABASeparatedQuickButtons/WABASeparatedQuickButtons.vue.js";
34
- import { default as xe } from "./components/2_chatinput_elements/WABATemplateSelector/WABATemplateSelector.vue.js";
35
- import { default as ne } from "./components/2_chatlist_elements/ChatFilter/ChatFilter.vue.js";
36
- import { default as Me } from "./components/2_chatlist_elements/ChatItem/ChatItem.vue.js";
37
- import { default as Ce } from "./components/2_chatlist_elements/ChatTabs/ChatTabs.vue.js";
38
- import { default as he } from "./components/2_elements/AudioRecorder/AudioRecorder.vue.js";
39
- import { default as Re } from "./components/2_elements/ChannelSelector/ChannelSelector.vue.js";
40
- import { default as Fe } from "./components/2_elements/ChatInfo/ChatInfo.vue.js";
41
- import { default as Te } from "./components/2_elements/ChatPanel/ChatPanel.vue.js";
42
- import { default as be } from "./components/2_elements/ContactInfo/ContactInfo.vue.js";
43
- import { default as Ve } from "./components/2_elements/ThemeMode/ThemeMode.vue.js";
44
- import { default as ve } from "./components/2_elements/UserProfile/UserProfile.vue.js";
45
- import { default as Le } from "./components/2_elements/VideoRecorder/VideoRecorder.vue.js";
46
- import { default as we } from "./components/2_feed_elements/AudioMessage/AudioMessage.vue.js";
47
- import { default as Ue } from "./components/2_feed_elements/BaseReplyMessage/BaseReplyMessage.vue.js";
48
- import { default as He } from "./components/2_feed_elements/CallMessage/CallMessage.vue.js";
49
- import { default as Ne } from "./components/2_feed_elements/DateMessage/DateMessage.vue.js";
50
- import { default as Oe } from "./components/2_feed_elements/DateMessageSticky/DateMessageSticky.vue.js";
51
- import { default as ze } from "./components/2_feed_elements/FeedKeyboard/FeedKeyboard.vue.js";
52
- import { default as Je } from "./components/2_feed_elements/FileMessage/FileMessage.vue.js";
53
- import { default as Ye } from "./components/2_feed_elements/ImageMessage/ImageMessage.vue.js";
54
- import { default as _e } from "./components/2_feed_elements/MessageKeyboard/MessageKeyboard.vue.js";
55
- import { default as et } from "./components/2_feed_elements/MessageReactions/MessageReactions.vue.js";
56
- import { default as ot } from "./components/2_feed_elements/MessageStatusIndicator/MessageStatusIndicator.vue.js";
57
- import { default as rt } from "./components/2_feed_elements/StickerMessage/StickerMessage.vue.js";
58
- import { default as st } from "./components/2_feed_elements/ReplyAudioMessage/ReplyAudioMessage.vue.js";
59
- import { default as pt } from "./components/2_feed_elements/ReplyCallMessage/ReplyCallMessage.vue.js";
60
- import { default as dt } from "./components/2_feed_elements/ReplyFileMessage/ReplyFileMessage.vue.js";
61
- import { default as xt } from "./components/2_feed_elements/ReplyImageMessage/ReplyImageMessage.vue.js";
62
- import { default as nt } from "./components/2_feed_elements/ReplyStickerMessage/ReplyStickerMessage.vue.js";
63
- import { default as Mt } from "./components/2_feed_elements/ReplyTextMessage/ReplyTextMessage.vue.js";
64
- import { default as Ct } from "./components/2_feed_elements/ReplyVideoMessage/ReplyVideoMessage.vue.js";
65
- import { default as ht } from "./components/2_feed_elements/SplashScreen/SplashScreen.vue.js";
66
- import { default as Rt } from "./components/2_feed_elements/SystemMessage/SystemMessage.vue.js";
67
- import { default as Ft } from "./components/2_feed_elements/TextMessage/TextMessage.vue.js";
68
- import { default as Tt } from "./components/2_feed_elements/TypingMessage/TypingMessage.vue.js";
69
- import { default as bt } from "./components/2_feed_elements/VideoMessage/VideoMessage.vue.js";
70
- import { default as Vt } from "./components/2_modals/Modal/Modal.vue.js";
71
- import { default as vt } from "./components/2_modals/ModalFullscreen/ModalFullscreen.vue.js";
72
- import { default as Lt } from "./components/2_modals/ModalNoFooter/ModalNoFooter.vue.js";
73
- import { default as wt } from "./components/2_modals/SelectUser/SelectUser.vue.js";
74
- import { default as Ut } from "./components/3_compounds/ChatInput/ChatInput.vue.js";
75
- import { default as Ht } from "./components/3_compounds/ChatList/ChatListHeader.vue.js";
76
- import { default as Nt } from "./components/3_compounds/ChatList/ChatList.vue.js";
77
- import { default as Ot } from "./components/3_compounds/Feed/Feed.vue.js";
78
- import { default as zt } from "./components/3_compounds/SideBar/SideBar.vue.js";
79
- import { default as Jt } from "./components/4_layouts/BaseLayout/BaseLayout.vue.js";
80
- import { default as Yt } from "./components/4_layouts/ExtendedLayout/ExtendedLayout.vue.js";
81
- import { default as _t } from "./components/4_layouts/AdaptiveExtendedLayout/AdaptiveExtendedLayout.vue.js";
82
- import { default as eo } from "./components/4_layouts/FeedLayout/FeedLayout.vue.js";
83
- import { default as oo } from "./components/4_layouts/ChatWrapper/ChatWrapper.vue.js";
84
- import { default as ro } from "./components/5_containers/BaseContainer/BaseContainer.vue.js";
85
- import { default as so } from "./components/5_containers/FloatContainer/FloatContainer.vue.js";
86
- import { generatePreview as po } from "./hooks/uploadFile/generatePreview.js";
87
- import { getTypeFileByMime as uo } from "./hooks/uploadFile/getTypeFileByMime.js";
88
- import { uploadFile as io } from "./hooks/uploadFile/uploadFile.js";
89
- import { useDelayDebouncedRef as co } from "./hooks/useDelayDebouncedRef.js";
90
- import { useImmediateDebouncedRef as go } from "./hooks/useImmediateDebouncedRef.js";
91
- import { useMessageDraft as So } from "./hooks/useMessageDraft.js";
92
- import { useSearchModel as yo } from "./hooks/useSearchModel.js";
93
- import { useTheme as Ao } from "./hooks/useTheme.js";
94
- import { useModalCreateChat as Io } from "./hooks/modals/useCreateChat.js";
95
- import { useModalCreateChat2 as Bo } from "./hooks/modals/useCreateChat2.js";
96
- import { useModalCreateDialog as ko } from "./hooks/modals/useCreateDialog.js";
97
- import { useModalSelectUser2 as Po } from "./hooks/modals/useModalSelectUser2.js";
98
- import { useModalVideoRecorder as Do } from "./hooks/modals/useVideoRecorder.js";
99
- import { getValidationReport as Wo, validateChats as wo } from "./hooks/validators/chats/chatValidator.js";
100
- import { useChatValidator as Uo } from "./hooks/validators/chats/useChatValidator.js";
101
- import { getMessageValidationReport as Ho, validateMessages as Ko } from "./hooks/validators/messages/messageValidator.js";
102
- import { useMessageValidator as Qo } from "./hooks/validators/messages/useMessageValidator.js";
103
- import { getSidebarValidationReport as qo, validateSidebarItems as zo } from "./hooks/validators/sidebar/sidebarValidator.js";
104
- import { useSidebarValidator as Jo } from "./hooks/validators/sidebar/useSidebarValidator.js";
105
- import { useValidation as Yo } from "./hooks/validators/useValidation.js";
106
- import { useMessageActions as _o } from "./hooks/messages/useMessageActions.js";
107
- import { useMessageLinks as ea } from "./hooks/messages/useMessageLinks.js";
108
- import { useChannelAccentColor as oa } from "./hooks/messages/useChannelAccentColor.js";
109
- import { useSubtextTooltip as ra } from "./hooks/messages/useSubtextTooltip.js";
110
- import { getStatus as sa, getStatusTitle as la, statuses as pa } from "./functions/getStatusMessage.js";
111
- import { formatTimestamp as da } from "./functions/formatTimestamp.js";
112
- import { playNotificationAudio as xa } from "./functions/playNotificationAudio.js";
113
- import { insertDaySeparators as na } from "./functions/insertDaySeparators.js";
114
- import { sortByTimestamp as Ma } from "./functions/sortByTimestamp.js";
115
- import { getMessageClass as Ca } from "./functions/getMessageClass.js";
116
- import { createReactionHandlers as ha } from "./functions/createReactionHandlers.js";
117
- import { getChannelAccentColor as Ra } from "./functions/getChannelAccentColor.js";
118
- import { parseMarkdown as Fa } from "./functions/parseMarkdown.js";
4
+ import { default as s } from "./components/1_atoms/ContactContextMenu/ContactContextMenu.vue.js";
5
+ import { default as p } from "./components/1_atoms/ContextMenu/ContextMenu.vue.js";
6
+ import { default as d } from "./components/1_atoms/EmbedPreview/EmbedPreview.vue.js";
7
+ import { default as x } from "./components/1_atoms/LinkPreview/LinkPreview.vue.js";
8
+ import { default as n } from "./components/1_atoms/Tooltip/Tooltip.vue.js";
9
+ import { default as M } from "./components/1_icons/AvatarIcon.vue.js";
10
+ import { default as C } from "./components/1_icons/CheckIcon.vue.js";
11
+ import { default as h } from "./components/1_icons/CloseButtonIcon.vue.js";
12
+ import { default as R } from "./components/1_icons/ContactCRMIcon.vue.js";
13
+ import { default as F } from "./components/1_icons/MenuIcon.vue.js";
14
+ import { default as T } from "./components/1_icons/SearchIcon.vue.js";
15
+ import { default as b } from "./components/1_icons/SettingsIcon.vue.js";
16
+ import { default as V } from "./components/1_icons/TelegramIcon.vue.js";
17
+ import { default as v } from "./components/1_icons/WhatsAppIcon.vue.js";
18
+ import { default as L } from "./components/2_blocks/CommunicationPanel/CommunicationPanel.vue.js";
19
+ import { default as w } from "./components/2_blocks/FeedFoundItem/FeedFoundItem.vue.js";
20
+ import { default as U } from "./components/2_blocks/FeedFoundObjects/FeedFoundObjects.vue.js";
21
+ import { default as H } from "./components/2_blocks/FeedSearch/FeedSearch.vue.js";
22
+ import { default as N } from "./components/2_chatinput_elements/ButtonCommandsSelector/ButtonCommandsSelector.vue.js";
23
+ import { default as O } from "./components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue.js";
24
+ import { default as z } from "./components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue.js";
25
+ import { default as J } from "./components/2_chatinput_elements/ButtonWabaTemplateSelector/ButtonWabaTemplateSelector.vue.js";
26
+ import { default as Y } from "./components/2_chatinput_elements/FilePreview/FilePreview.vue.js";
27
+ import { default as _ } from "./components/2_chatinput_elements/FileUploader/FileUploader.vue.js";
28
+ import { default as ee } from "./components/2_chatinput_elements/PlaceholderComponent/PlaceholderComponent.vue.js";
29
+ import { default as oe } from "./components/2_chatinput_elements/StickerPicker/StickerPicker.vue.js";
30
+ import { default as re } from "./components/2_chatinput_elements/TemplateSelector/TemplateSelector.vue.js";
31
+ import { default as se } from "./components/2_chatinput_elements/TextFormatToolbar/TextFormatToolbar.vue.js";
32
+ import { default as pe } from "./components/2_chatinput_elements/WABAAttachmentSection/WABAAttachmentSection.vue.js";
33
+ import { default as de } from "./components/2_chatinput_elements/WABAQuickReplyButtons/WABAQuickReplyButtons.vue.js";
34
+ import { default as xe } from "./components/2_chatinput_elements/WABASeparatedQuickButtons/WABASeparatedQuickButtons.vue.js";
35
+ import { default as ne } from "./components/2_chatinput_elements/WABATemplateSelector/WABATemplateSelector.vue.js";
36
+ import { default as Me } from "./components/2_chatlist_elements/ChatFilter/ChatFilter.vue.js";
37
+ import { default as Ce } from "./components/2_chatlist_elements/ChatItem/ChatItem.vue.js";
38
+ import { default as he } from "./components/2_chatlist_elements/ChatTabs/ChatTabs.vue.js";
39
+ import { default as Re } from "./components/2_elements/AudioRecorder/AudioRecorder.vue.js";
40
+ import { default as Fe } from "./components/2_elements/ChannelSelector/ChannelSelector.vue.js";
41
+ import { default as Te } from "./components/2_elements/ChatInfo/ChatInfo.vue.js";
42
+ import { default as be } from "./components/2_elements/ChatPanel/ChatPanel.vue.js";
43
+ import { default as Ve } from "./components/2_elements/ContactInfo/ContactInfo.vue.js";
44
+ import { default as ve } from "./components/2_elements/ThemeMode/ThemeMode.vue.js";
45
+ import { default as Le } from "./components/2_elements/UserProfile/UserProfile.vue.js";
46
+ import { default as we } from "./components/2_elements/VideoRecorder/VideoRecorder.vue.js";
47
+ import { default as Ue } from "./components/2_feed_elements/AudioMessage/AudioMessage.vue.js";
48
+ import { default as He } from "./components/2_feed_elements/BaseReplyMessage/BaseReplyMessage.vue.js";
49
+ import { default as Ne } from "./components/2_feed_elements/CallMessage/CallMessage.vue.js";
50
+ import { default as Oe } from "./components/2_feed_elements/DateMessage/DateMessage.vue.js";
51
+ import { default as ze } from "./components/2_feed_elements/DateMessageSticky/DateMessageSticky.vue.js";
52
+ import { default as Je } from "./components/2_feed_elements/DelimiterMessage/DelimiterMessage.vue.js";
53
+ import { default as Ye } from "./components/2_feed_elements/FeedKeyboard/FeedKeyboard.vue.js";
54
+ import { default as _e } from "./components/2_feed_elements/FileMessage/FileMessage.vue.js";
55
+ import { default as et } from "./components/2_feed_elements/ImageMessage/ImageMessage.vue.js";
56
+ import { default as ot } from "./components/2_feed_elements/MessageKeyboard/MessageKeyboard.vue.js";
57
+ import { default as rt } from "./components/2_feed_elements/MessageReactions/MessageReactions.vue.js";
58
+ import { default as st } from "./components/2_feed_elements/MessageStatusIndicator/MessageStatusIndicator.vue.js";
59
+ import { default as pt } from "./components/2_feed_elements/StickerMessage/StickerMessage.vue.js";
60
+ import { default as dt } from "./components/2_feed_elements/ReplyAudioMessage/ReplyAudioMessage.vue.js";
61
+ import { default as xt } from "./components/2_feed_elements/ReplyCallMessage/ReplyCallMessage.vue.js";
62
+ import { default as nt } from "./components/2_feed_elements/ReplyFileMessage/ReplyFileMessage.vue.js";
63
+ import { default as Mt } from "./components/2_feed_elements/ReplyImageMessage/ReplyImageMessage.vue.js";
64
+ import { default as Ct } from "./components/2_feed_elements/ReplyStickerMessage/ReplyStickerMessage.vue.js";
65
+ import { default as ht } from "./components/2_feed_elements/ReplyTextMessage/ReplyTextMessage.vue.js";
66
+ import { default as Rt } from "./components/2_feed_elements/ReplyVideoMessage/ReplyVideoMessage.vue.js";
67
+ import { default as Ft } from "./components/2_feed_elements/SplashScreen/SplashScreen.vue.js";
68
+ import { default as Tt } from "./components/2_feed_elements/SystemMessage/SystemMessage.vue.js";
69
+ import { default as bt } from "./components/2_feed_elements/TextMessage/TextMessage.vue.js";
70
+ import { default as Vt } from "./components/2_feed_elements/TypingMessage/TypingMessage.vue.js";
71
+ import { default as vt } from "./components/2_feed_elements/VideoMessage/VideoMessage.vue.js";
72
+ import { default as Lt } from "./components/2_modals/Modal/Modal.vue.js";
73
+ import { default as wt } from "./components/2_modals/ModalFullscreen/ModalFullscreen.vue.js";
74
+ import { default as Ut } from "./components/2_modals/ModalNoFooter/ModalNoFooter.vue.js";
75
+ import { default as Ht } from "./components/2_modals/SelectUser/SelectUser.vue.js";
76
+ import { default as Nt } from "./components/3_compounds/ChatInput/ChatInput.vue.js";
77
+ import { default as Ot } from "./components/3_compounds/ChatList/ChatListHeader.vue.js";
78
+ import { default as zt } from "./components/3_compounds/ChatList/ChatList.vue.js";
79
+ import { default as Jt } from "./components/3_compounds/Feed/Feed.vue.js";
80
+ import { default as Yt } from "./components/3_compounds/SideBar/SideBar.vue.js";
81
+ import { default as _t } from "./components/4_layouts/BaseLayout/BaseLayout.vue.js";
82
+ import { default as eo } from "./components/4_layouts/ExtendedLayout/ExtendedLayout.vue.js";
83
+ import { default as oo } from "./components/4_layouts/AdaptiveExtendedLayout/AdaptiveExtendedLayout.vue.js";
84
+ import { default as ro } from "./components/4_layouts/FeedLayout/FeedLayout.vue.js";
85
+ import { default as so } from "./components/4_layouts/ChatWrapper/ChatWrapper.vue.js";
86
+ import { default as po } from "./components/5_containers/BaseContainer/BaseContainer.vue.js";
87
+ import { default as uo } from "./components/5_containers/FloatContainer/FloatContainer.vue.js";
88
+ import { generatePreview as io } from "./hooks/uploadFile/generatePreview.js";
89
+ import { getTypeFileByMime as co } from "./hooks/uploadFile/getTypeFileByMime.js";
90
+ import { uploadFile as go } from "./hooks/uploadFile/uploadFile.js";
91
+ import { useDelayDebouncedRef as So } from "./hooks/useDelayDebouncedRef.js";
92
+ import { useImmediateDebouncedRef as yo } from "./hooks/useImmediateDebouncedRef.js";
93
+ import { useMessageDraft as Ao } from "./hooks/useMessageDraft.js";
94
+ import { useSearchModel as Io } from "./hooks/useSearchModel.js";
95
+ import { useTheme as Bo } from "./hooks/useTheme.js";
96
+ import { useModalCreateChat as ko } from "./hooks/modals/useCreateChat.js";
97
+ import { useModalCreateChat2 as Po } from "./hooks/modals/useCreateChat2.js";
98
+ import { useModalCreateDialog as Do } from "./hooks/modals/useCreateDialog.js";
99
+ import { useModalSelectUser2 as Wo } from "./hooks/modals/useModalSelectUser2.js";
100
+ import { useModalVideoRecorder as Eo } from "./hooks/modals/useVideoRecorder.js";
101
+ import { getValidationReport as jo, validateChats as Ho } from "./hooks/validators/chats/chatValidator.js";
102
+ import { useChatValidator as No } from "./hooks/validators/chats/useChatValidator.js";
103
+ import { getMessageValidationReport as Oo, validateMessages as qo } from "./hooks/validators/messages/messageValidator.js";
104
+ import { useMessageValidator as Go } from "./hooks/validators/messages/useMessageValidator.js";
105
+ import { getSidebarValidationReport as Xo, validateSidebarItems as Yo } from "./hooks/validators/sidebar/sidebarValidator.js";
106
+ import { useSidebarValidator as _o } from "./hooks/validators/sidebar/useSidebarValidator.js";
107
+ import { useValidation as ea } from "./hooks/validators/useValidation.js";
108
+ import { useMessageActions as oa } from "./hooks/messages/useMessageActions.js";
109
+ import { useMessageLinks as ra } from "./hooks/messages/useMessageLinks.js";
110
+ import { useChannelAccentColor as sa } from "./hooks/messages/useChannelAccentColor.js";
111
+ import { useSubtextTooltip as pa } from "./hooks/messages/useSubtextTooltip.js";
112
+ import { getStatus as da, getStatusTitle as ua, statuses as xa } from "./functions/getStatusMessage.js";
113
+ import { formatTimestamp as na } from "./functions/formatTimestamp.js";
114
+ import { playNotificationAudio as Ma } from "./functions/playNotificationAudio.js";
115
+ import { insertDaySeparators as Ca } from "./functions/insertDaySeparators.js";
116
+ import { sortByTimestamp as ha } from "./functions/sortByTimestamp.js";
117
+ import { getMessageClass as Ra } from "./functions/getMessageClass.js";
118
+ import { createReactionHandlers as Fa } from "./functions/createReactionHandlers.js";
119
+ import { getChannelAccentColor as Ta } from "./functions/getChannelAccentColor.js";
120
+ import { parseMarkdown as ba } from "./functions/parseMarkdown.js";
119
121
  export {
120
- _t as AdaptiveExtendedLayout,
121
- we as AudioMessage,
122
- he as AudioRecorder,
123
- n as AvatarIcon,
124
- ro as BaseContainer,
125
- Jt as BaseLayout,
126
- Ue as BaseReplyMessage,
127
- H as ButtonCommandsSelector,
122
+ oo as AdaptiveExtendedLayout,
123
+ Ue as AudioMessage,
124
+ Re as AudioRecorder,
125
+ M as AvatarIcon,
126
+ po as BaseContainer,
127
+ _t as BaseLayout,
128
+ He as BaseReplyMessage,
129
+ N as ButtonCommandsSelector,
128
130
  r as ButtonContextMenu,
129
- N as ButtonEmojiPicker,
130
- O as ButtonTemplateSelector,
131
- z as ButtonWabaTemplateSelector,
132
- He as CallMessage,
133
- Re as ChannelSelector,
134
- ne as ChatFilter,
135
- Fe as ChatInfo,
136
- Ut as ChatInput,
137
- Me as ChatItem,
138
- Nt as ChatList,
139
- Ht as ChatListHeader,
140
- Te as ChatPanel,
141
- Ce as ChatTabs,
142
- oo as ChatWrapper,
143
- M as CheckIcon,
144
- C as CloseButtonIcon,
145
- v as CommunicationPanel,
146
- h as ContactCRMIcon,
147
- be as ContactInfo,
148
- s as ContextMenu,
149
- Ne as DateMessage,
150
- Oe as DateMessageSticky,
151
- p as EmbedPreview,
152
- Yt as ExtendedLayout,
153
- Ot as Feed,
154
- L as FeedFoundItem,
155
- w as FeedFoundObjects,
156
- ze as FeedKeyboard,
157
- eo as FeedLayout,
158
- U as FeedSearch,
159
- Je as FileMessage,
160
- J as FilePreview,
161
- Y as FileUploader,
162
- so as FloatContainer,
163
- Ye as ImageMessage,
164
- d as LinkPreview,
165
- R as MenuIcon,
166
- _e as MessageKeyboard,
167
- et as MessageReactions,
168
- ot as MessageStatusIndicator,
169
- Vt as Modal,
170
- vt as ModalFullscreen,
171
- Lt as ModalNoFooter,
172
- _ as PlaceholderComponent,
173
- st as ReplyAudioMessage,
174
- pt as ReplyCallMessage,
175
- dt as ReplyFileMessage,
176
- xt as ReplyImageMessage,
177
- nt as ReplyStickerMessage,
178
- Mt as ReplyTextMessage,
179
- Ct as ReplyVideoMessage,
180
- F as SearchIcon,
181
- wt as SelectUser,
182
- T as SettingsIcon,
183
- zt as SideBar,
184
- ht as SplashScreen,
185
- rt as StickerMessage,
186
- ee as StickerPicker,
187
- Rt as SystemMessage,
188
- b as TelegramIcon,
189
- oe as TemplateSelector,
190
- re as TextFormatToolbar,
191
- Ft as TextMessage,
192
- Ve as ThemeMode,
193
- x as Tooltip,
194
- Tt as TypingMessage,
195
- ve as UserProfile,
196
- bt as VideoMessage,
197
- Le as VideoRecorder,
198
- se as WABAAttachmentSection,
199
- pe as WABAQuickReplyButtons,
200
- de as WABASeparatedQuickButtons,
201
- xe as WABATemplateSelector,
202
- V as WhatsAppIcon,
203
- ha as createReactionHandlers,
204
- da as formatTimestamp,
205
- po as generatePreview,
206
- Ra as getChannelAccentColor,
207
- Ca as getMessageClass,
208
- Ho as getMessageValidationReport,
209
- qo as getSidebarValidationReport,
210
- sa as getStatus,
211
- la as getStatusTitle,
212
- uo as getTypeFileByMime,
213
- Wo as getValidationReport,
214
- na as insertDaySeparators,
215
- Fa as parseMarkdown,
216
- xa as playNotificationAudio,
217
- Ma as sortByTimestamp,
218
- pa as statuses,
219
- io as uploadFile,
220
- oa as useChannelAccentColor,
221
- Uo as useChatValidator,
222
- co as useDelayDebouncedRef,
223
- go as useImmediateDebouncedRef,
224
- _o as useMessageActions,
225
- So as useMessageDraft,
226
- ea as useMessageLinks,
227
- Qo as useMessageValidator,
228
- Io as useModalCreateChat,
229
- Bo as useModalCreateChat2,
230
- ko as useModalCreateDialog,
231
- Po as useModalSelectUser2,
232
- Do as useModalVideoRecorder,
233
- yo as useSearchModel,
234
- Jo as useSidebarValidator,
235
- ra as useSubtextTooltip,
236
- Ao as useTheme,
237
- Yo as useValidation,
238
- wo as validateChats,
239
- Ko as validateMessages,
240
- zo as validateSidebarItems
131
+ O as ButtonEmojiPicker,
132
+ z as ButtonTemplateSelector,
133
+ J as ButtonWabaTemplateSelector,
134
+ Ne as CallMessage,
135
+ Fe as ChannelSelector,
136
+ Me as ChatFilter,
137
+ Te as ChatInfo,
138
+ Nt as ChatInput,
139
+ Ce as ChatItem,
140
+ zt as ChatList,
141
+ Ot as ChatListHeader,
142
+ be as ChatPanel,
143
+ he as ChatTabs,
144
+ so as ChatWrapper,
145
+ C as CheckIcon,
146
+ h as CloseButtonIcon,
147
+ L as CommunicationPanel,
148
+ R as ContactCRMIcon,
149
+ s as ContactContextMenu,
150
+ Ve as ContactInfo,
151
+ p as ContextMenu,
152
+ Oe as DateMessage,
153
+ ze as DateMessageSticky,
154
+ Je as DelimiterMessage,
155
+ d as EmbedPreview,
156
+ eo as ExtendedLayout,
157
+ Jt as Feed,
158
+ w as FeedFoundItem,
159
+ U as FeedFoundObjects,
160
+ Ye as FeedKeyboard,
161
+ ro as FeedLayout,
162
+ H as FeedSearch,
163
+ _e as FileMessage,
164
+ Y as FilePreview,
165
+ _ as FileUploader,
166
+ uo as FloatContainer,
167
+ et as ImageMessage,
168
+ x as LinkPreview,
169
+ F as MenuIcon,
170
+ ot as MessageKeyboard,
171
+ rt as MessageReactions,
172
+ st as MessageStatusIndicator,
173
+ Lt as Modal,
174
+ wt as ModalFullscreen,
175
+ Ut as ModalNoFooter,
176
+ ee as PlaceholderComponent,
177
+ dt as ReplyAudioMessage,
178
+ xt as ReplyCallMessage,
179
+ nt as ReplyFileMessage,
180
+ Mt as ReplyImageMessage,
181
+ Ct as ReplyStickerMessage,
182
+ ht as ReplyTextMessage,
183
+ Rt as ReplyVideoMessage,
184
+ T as SearchIcon,
185
+ Ht as SelectUser,
186
+ b as SettingsIcon,
187
+ Yt as SideBar,
188
+ Ft as SplashScreen,
189
+ pt as StickerMessage,
190
+ oe as StickerPicker,
191
+ Tt as SystemMessage,
192
+ V as TelegramIcon,
193
+ re as TemplateSelector,
194
+ se as TextFormatToolbar,
195
+ bt as TextMessage,
196
+ ve as ThemeMode,
197
+ n as Tooltip,
198
+ Vt as TypingMessage,
199
+ Le as UserProfile,
200
+ vt as VideoMessage,
201
+ we as VideoRecorder,
202
+ pe as WABAAttachmentSection,
203
+ de as WABAQuickReplyButtons,
204
+ xe as WABASeparatedQuickButtons,
205
+ ne as WABATemplateSelector,
206
+ v as WhatsAppIcon,
207
+ Fa as createReactionHandlers,
208
+ na as formatTimestamp,
209
+ io as generatePreview,
210
+ Ta as getChannelAccentColor,
211
+ Ra as getMessageClass,
212
+ Oo as getMessageValidationReport,
213
+ Xo as getSidebarValidationReport,
214
+ da as getStatus,
215
+ ua as getStatusTitle,
216
+ co as getTypeFileByMime,
217
+ jo as getValidationReport,
218
+ Ca as insertDaySeparators,
219
+ ba as parseMarkdown,
220
+ Ma as playNotificationAudio,
221
+ ha as sortByTimestamp,
222
+ xa as statuses,
223
+ go as uploadFile,
224
+ sa as useChannelAccentColor,
225
+ No as useChatValidator,
226
+ So as useDelayDebouncedRef,
227
+ yo as useImmediateDebouncedRef,
228
+ oa as useMessageActions,
229
+ Ao as useMessageDraft,
230
+ ra as useMessageLinks,
231
+ Go as useMessageValidator,
232
+ ko as useModalCreateChat,
233
+ Po as useModalCreateChat2,
234
+ Do as useModalCreateDialog,
235
+ Wo as useModalSelectUser2,
236
+ Eo as useModalVideoRecorder,
237
+ Io as useSearchModel,
238
+ _o as useSidebarValidator,
239
+ pa as useSubtextTooltip,
240
+ Bo as useTheme,
241
+ ea as useValidation,
242
+ Ho as validateChats,
243
+ qo as validateMessages,
244
+ Yo as validateSidebarItems
241
245
  };
package/dist/locale/en.js CHANGED
@@ -4,6 +4,10 @@ const e = {
4
4
  "layout.ChatWrapper.noSelectedChat": "Choose contact to start conversation",
5
5
  "component.ChatItem.typing": "typing",
6
6
  "component.ChatInput.InputPlaceholder": "Type a message...",
7
+ "component.ChatInput.TelegramInputPlaceholder": "Type a message Telegram or change channel",
8
+ "component.ChatInput.WhatsappInputPlaceholder": "Type a message WhatsApp or change channel",
9
+ "component.ChatInput.SmsInputPlaceholder": "Type a message SMS or change channel",
10
+ "component.ChatInput.MaxInputPlaceholder": "Type a message Max or change channel",
7
11
  "component.FeedFoundObjects.results": "Search results",
8
12
  "component.FeedFoundObjects.notFound": "Messages not found",
9
13
  "component.FeedFoundObjects.notSearched": "Message search in chat",
package/dist/locale/ru.js CHANGED
@@ -1,9 +1,13 @@
1
- const o = {
1
+ const e = {
2
2
  "component.ChatList.Title": "Mobilon One",
3
3
  "component.ChatFilter.InputPlaceholder": "Поиск чата",
4
4
  "layout.ChatWrapper.noSelectedChat": "Выберите контакт для начала общения",
5
5
  "component.ChatItem.typing": "печатает",
6
6
  "component.ChatInput.InputPlaceholder": "Введите сообщение",
7
+ "component.ChatInput.WhatsappInputPlaceholder": "Введите сообщение WhatsApp или смените канал",
8
+ "component.ChatInput.TelegramInputPlaceholder": "Введите сообщение Telegram или смените канал",
9
+ "component.ChatInput.SmsInputPlaceholder": "Введите сообщение SMS или смените канал",
10
+ "component.ChatInput.MaxInputPlaceholder": "Введите сообщение Max или смените канал",
7
11
  "component.FeedFoundObjects.results": "Результаты поиска",
8
12
  "component.FeedFoundObjects.notFound": "Сообщения не найдены",
9
13
  "component.FeedFoundObjects.notSearched": "Поиск по сообщениям в чате",
@@ -18,5 +22,5 @@ const o = {
18
22
  "component.TextFormatToolbar.Quote": "Цитата"
19
23
  };
20
24
  export {
21
- o as ru
25
+ e as ru
22
26
  };