@mobilon-dev/chotto 0.3.26 → 0.3.28
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/{CreateChat-B9CfoSZb.js → CreateChat-O-87sUly.js} +1 -1
- package/dist/{CreateChat2-ks_IikUi.js → CreateChat2-BMXlCRLk.js} +1 -1
- package/dist/{CreateDialog-DqXOFpdc.js → CreateDialog-ry0BQXaP.js} +1 -1
- package/dist/{ModalVideoRecorder-DnncYgrj.js → ModalVideoRecorder-3eVWhEV3.js} +1 -1
- package/dist/{SelectUser2-twrrtDkw.js → SelectUser2-C0QnV1mm.js} +1 -1
- package/dist/chotto.css +1 -1
- package/dist/{index-CECDc5wp.js → index-C8JOAGtF.js} +9695 -6327
- package/dist/themes/dark.css +1 -1
- package/dist/themes/default.css +1 -1
- package/dist/themes/green.css +1 -1
- package/dist/themes/mobilon1.css +1 -1
- package/dist/types/apps/BaseAdaptiveExtendedChatApp/BaseAdaptiveExtendedChatApp.vue.d.ts +2 -2
- package/dist/types/apps/BaseBaseChatApp/BaseBaseChatApp.vue.d.ts +2 -2
- package/dist/types/apps/BaseExtendedChatApp/BaseExtendedChatApp.vue.d.ts +2 -2
- package/dist/types/apps/MobilonExtendedChatApp/MobilonExtendedChatApp.vue.d.ts +2 -2
- package/dist/types/apps/data/chats.d.ts +63 -0
- package/dist/types/apps/data/messages.d.ts +741 -154
- package/dist/types/components/2_blocks/CommunicationPanel/composables/useCommunicationChannels.d.ts +1 -1
- package/dist/types/components/2_blocks/CommunicationPanel/stories/CommunicationPanel.stories.d.ts +1 -0
- package/dist/types/components/2_chatlist_elements/ChatItem/ChatItem.vue.d.ts +4 -1
- package/dist/types/components/2_chatlist_elements/ChatItem/styles/types.d.ts +22 -0
- package/dist/types/components/2_chatlist_elements/ChatItem/types.d.ts +1 -0
- package/dist/types/components/2_elements/ChatInfo/styles/types.d.ts +2 -0
- package/dist/types/components/2_feed_elements/AudioMessage/AudioMessage.vue.d.ts +11 -0
- package/dist/types/components/2_feed_elements/AudioMessage/styles/types.d.ts +0 -2
- package/dist/types/components/2_feed_elements/CallMessage/CallMessage.vue.d.ts +19 -2
- package/dist/types/components/2_feed_elements/CallMessage/icons/IncomingCallIcon.vue.d.ts +7 -0
- package/dist/types/components/2_feed_elements/CallMessage/icons/OutgoingCallIcon.vue.d.ts +7 -0
- package/dist/types/components/2_feed_elements/CallMessage/stories/CallMessage.stories.d.ts +0 -15
- package/dist/types/components/2_feed_elements/CallMessage/styles/types.d.ts +226 -0
- package/dist/types/components/2_feed_elements/FileMessage/FileMessage.vue.d.ts +11 -0
- package/dist/types/components/2_feed_elements/ImageMessage/ImageMessage.vue.d.ts +11 -0
- package/dist/types/components/2_feed_elements/MessageReactions/MessageReactions.vue.d.ts +1 -1
- package/dist/types/components/2_feed_elements/TextMessage/TextMessage.vue.d.ts +11 -0
- package/dist/types/components/2_feed_elements/TextMessage/styles/types.d.ts +0 -2
- package/dist/types/components/2_feed_elements/VideoMessage/VideoMessage.vue.d.ts +11 -0
- package/dist/types/components/2_feed_elements/types/messages.d.ts +15 -1
- package/dist/types/components/3_compounds/ChatInput/ChatInput.vue.d.ts +22 -0
- package/dist/types/components/3_compounds/ChatInput/icons/SendIcon.vue.d.ts +7 -0
- package/dist/types/components/3_compounds/ChatInput/icons/index.d.ts +1 -0
- package/dist/types/components/3_compounds/ChatList/ChatList.vue.d.ts +2 -0
- package/dist/types/components/3_compounds/ChatList/styles/types.d.ts +22 -0
- package/dist/types/components/3_compounds/Feed/Feed.vue.d.ts +11 -0
- package/dist/types/functions/getChannelAccentColor.d.ts +1 -0
- package/dist/types/functions/index.d.ts +1 -0
- package/dist/types/hooks/messages/index.d.ts +2 -0
- package/dist/types/hooks/messages/useChannelAccentColor.d.ts +35 -0
- package/dist/types/hooks/messages/useSubtextTooltip.d.ts +11 -0
- package/dist/vuessages.es.js +56 -53
- package/dist/vuessages.umd.js +36 -36
- package/package.json +2 -2
|
@@ -88,23 +88,32 @@ export interface IAudioMessage {
|
|
|
88
88
|
embed?: object;
|
|
89
89
|
keyboard?: IKeyBoard[];
|
|
90
90
|
reactions?: MessageReactions;
|
|
91
|
+
backgroundColor?: string;
|
|
91
92
|
}
|
|
92
93
|
export interface ICallMessage {
|
|
93
94
|
messageId: string;
|
|
94
95
|
position: string;
|
|
95
96
|
time: string;
|
|
97
|
+
status?: string;
|
|
98
|
+
statusMsg?: string;
|
|
96
99
|
url?: string;
|
|
97
100
|
isMissedCall?: boolean;
|
|
98
101
|
callDuration?: string;
|
|
102
|
+
callAttemptDuration?: string;
|
|
103
|
+
callParticipant?: string;
|
|
104
|
+
direction?: 'incoming' | 'outgoing';
|
|
99
105
|
avatar?: string;
|
|
100
106
|
header?: string;
|
|
101
107
|
subText?: string;
|
|
108
|
+
text?: string;
|
|
102
109
|
actions?: IAction[];
|
|
103
110
|
views?: number;
|
|
104
111
|
transcript?: {
|
|
105
|
-
dialog
|
|
112
|
+
dialog?: IDialog[];
|
|
113
|
+
text?: string;
|
|
106
114
|
};
|
|
107
115
|
reactions?: MessageReactions;
|
|
116
|
+
backgroundColor?: string;
|
|
108
117
|
}
|
|
109
118
|
export interface IDateMessage {
|
|
110
119
|
messageId?: string;
|
|
@@ -130,6 +139,7 @@ export interface IFileMessage {
|
|
|
130
139
|
keyboard?: IKeyBoard[];
|
|
131
140
|
reactions?: MessageReactions;
|
|
132
141
|
direction?: string;
|
|
142
|
+
backgroundColor?: string;
|
|
133
143
|
}
|
|
134
144
|
export interface IImageMessage {
|
|
135
145
|
messageId: string;
|
|
@@ -150,6 +160,7 @@ export interface IImageMessage {
|
|
|
150
160
|
embed?: object;
|
|
151
161
|
keyboard?: IKeyBoard[];
|
|
152
162
|
reactions?: MessageReactions;
|
|
163
|
+
backgroundColor?: string;
|
|
153
164
|
}
|
|
154
165
|
export interface ISystemMessage {
|
|
155
166
|
messageId: string;
|
|
@@ -172,6 +183,7 @@ export interface ITextMessage {
|
|
|
172
183
|
embed?: object;
|
|
173
184
|
keyboard?: IKeyBoard[];
|
|
174
185
|
reactions?: MessageReactions;
|
|
186
|
+
backgroundColor?: string;
|
|
175
187
|
}
|
|
176
188
|
export interface ITypingMessage {
|
|
177
189
|
avatar?: string;
|
|
@@ -196,6 +208,7 @@ export interface IVideoMessage {
|
|
|
196
208
|
embed?: object;
|
|
197
209
|
keyboard?: IKeyBoard[];
|
|
198
210
|
reactions?: MessageReactions;
|
|
211
|
+
backgroundColor?: string;
|
|
199
212
|
}
|
|
200
213
|
export interface IStickerMessage {
|
|
201
214
|
messageId: string;
|
|
@@ -217,4 +230,5 @@ export interface IStickerMessage {
|
|
|
217
230
|
embed?: object;
|
|
218
231
|
keyboard?: IKeyBoard[];
|
|
219
232
|
reactions?: MessageReactions;
|
|
233
|
+
backgroundColor?: string;
|
|
220
234
|
}
|
|
@@ -19,6 +19,16 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
19
19
|
type: StringConstructor;
|
|
20
20
|
default: null;
|
|
21
21
|
};
|
|
22
|
+
selectedChannel: {
|
|
23
|
+
type: ObjectConstructor;
|
|
24
|
+
required: false;
|
|
25
|
+
default: null;
|
|
26
|
+
};
|
|
27
|
+
inputButtonColor: {
|
|
28
|
+
type: StringConstructor;
|
|
29
|
+
required: false;
|
|
30
|
+
default: null;
|
|
31
|
+
};
|
|
22
32
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
23
33
|
typing: (...args: any[]) => void;
|
|
24
34
|
send: (...args: any[]) => void;
|
|
@@ -37,13 +47,25 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
37
47
|
type: StringConstructor;
|
|
38
48
|
default: null;
|
|
39
49
|
};
|
|
50
|
+
selectedChannel: {
|
|
51
|
+
type: ObjectConstructor;
|
|
52
|
+
required: false;
|
|
53
|
+
default: null;
|
|
54
|
+
};
|
|
55
|
+
inputButtonColor: {
|
|
56
|
+
type: StringConstructor;
|
|
57
|
+
required: false;
|
|
58
|
+
default: null;
|
|
59
|
+
};
|
|
40
60
|
}>> & Readonly<{
|
|
41
61
|
onTyping?: ((...args: any[]) => any) | undefined;
|
|
42
62
|
onSend?: ((...args: any[]) => any) | undefined;
|
|
43
63
|
}>, {
|
|
64
|
+
selectedChannel: Record<string, any>;
|
|
44
65
|
state: string;
|
|
45
66
|
focusOnInputArea: boolean;
|
|
46
67
|
disabledPlaceholder: string;
|
|
68
|
+
inputButtonColor: string;
|
|
47
69
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
48
70
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
49
71
|
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface Props {
|
|
2
|
+
color?: string;
|
|
3
|
+
}
|
|
4
|
+
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
|
|
5
|
+
color: string;
|
|
6
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|
|
@@ -2,3 +2,4 @@ export { default as WhatsAppSendIcon } from './WhatsAppSendIcon.vue';
|
|
|
2
2
|
export { default as TelegramSendIcon } from './TelegramSendIcon.vue';
|
|
3
3
|
export { default as MaxSendIcon } from './MaxSendIcon.vue';
|
|
4
4
|
export { default as SMSSendIcon } from './SMSSendIcon.vue';
|
|
5
|
+
export { default as SendIcon } from './SendIcon.vue';
|
|
@@ -7,6 +7,7 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
7
7
|
$emit: (event: "search" | "select" | "action" | "expand" | "tab-click" | "loadMoreChats" | "clear-search", ...args: any[]) => void;
|
|
8
8
|
chats: unknown[];
|
|
9
9
|
searchQuery: string;
|
|
10
|
+
showDialogs: boolean;
|
|
10
11
|
filterEnabled: boolean;
|
|
11
12
|
filterQuery: string;
|
|
12
13
|
dialogTabs: unknown[];
|
|
@@ -17,6 +18,7 @@ declare const __VLS_component: import("vue").DefineComponent<{}, {
|
|
|
17
18
|
$props: {
|
|
18
19
|
readonly chats?: unknown[] | undefined;
|
|
19
20
|
readonly searchQuery?: string | undefined;
|
|
21
|
+
readonly showDialogs?: boolean | undefined;
|
|
20
22
|
readonly filterEnabled?: boolean | undefined;
|
|
21
23
|
readonly filterQuery?: string | undefined;
|
|
22
24
|
readonly dialogTabs?: unknown[] | undefined;
|
|
@@ -62,6 +62,8 @@ export interface ChatListThemeCSSVariables {
|
|
|
62
62
|
'--chotto-chatlist-title-column-gap': string;
|
|
63
63
|
/** Отступы контейнера заголовка */
|
|
64
64
|
'--chotto-chatlist-title-container-padding': string;
|
|
65
|
+
/** Максимальная высота контейнера заголовка */
|
|
66
|
+
'--chotto-chatlist-title-container-max-height': string;
|
|
65
67
|
/** Семейство шрифта заголовка */
|
|
66
68
|
'--chotto-chatlist-title-font-family': string;
|
|
67
69
|
/** Размер шрифта заголовка */
|
|
@@ -168,4 +170,24 @@ export interface ChatListThemeCSSVariables {
|
|
|
168
170
|
'--chotto-chatlist-search-clear-hover-color': string;
|
|
169
171
|
/** Цвет фона кнопки очистки поиска при наведении */
|
|
170
172
|
'--chotto-chatlist-search-clear-hover-bg': string;
|
|
173
|
+
/** Отображение контейнера пустого состояния */
|
|
174
|
+
'--chotto-chatlist-no-data-display': string;
|
|
175
|
+
/** Выравнивание элементов по поперечной оси в пустом состоянии */
|
|
176
|
+
'--chotto-chatlist-no-data-align-items': string;
|
|
177
|
+
/** Выравнивание элементов по главной оси в пустом состоянии */
|
|
178
|
+
'--chotto-chatlist-no-data-justify': string;
|
|
179
|
+
/** Высота контейнера пустого состояния */
|
|
180
|
+
'--chotto-chatlist-no-data-height': string;
|
|
181
|
+
/** Размер шрифта заголовка плейсхолдера */
|
|
182
|
+
'--chotto-chatlist-placeholder-title-font-size': string;
|
|
183
|
+
/** Толщина шрифта заголовка плейсхолдера */
|
|
184
|
+
'--chotto-chatlist-placeholder-title-font-weight': string;
|
|
185
|
+
/** Отступы заголовка плейсхолдера */
|
|
186
|
+
'--chotto-chatlist-placeholder-title-margin': string;
|
|
187
|
+
/** Цвет текста заголовка плейсхолдера */
|
|
188
|
+
'--chotto-chatlist-placeholder-title-color': string;
|
|
189
|
+
/** Размер шрифта подсказки плейсхолдера */
|
|
190
|
+
'--chotto-chatlist-placeholder-hint-font-size': string;
|
|
191
|
+
/** Отступы подсказки плейсхолдера */
|
|
192
|
+
'--chotto-chatlist-placeholder-hint-margin': string;
|
|
171
193
|
}
|
|
@@ -73,6 +73,11 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
73
73
|
type: BooleanConstructor;
|
|
74
74
|
default: boolean;
|
|
75
75
|
};
|
|
76
|
+
subtextTooltipData: {
|
|
77
|
+
type: ObjectConstructor;
|
|
78
|
+
required: false;
|
|
79
|
+
default: () => {};
|
|
80
|
+
};
|
|
76
81
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
77
82
|
loadMore: (...args: any[]) => void;
|
|
78
83
|
keyboardAction: (...args: any[]) => void;
|
|
@@ -152,6 +157,11 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
152
157
|
type: BooleanConstructor;
|
|
153
158
|
default: boolean;
|
|
154
159
|
};
|
|
160
|
+
subtextTooltipData: {
|
|
161
|
+
type: ObjectConstructor;
|
|
162
|
+
required: false;
|
|
163
|
+
default: () => {};
|
|
164
|
+
};
|
|
155
165
|
}>> & Readonly<{
|
|
156
166
|
onLoadMore?: ((...args: any[]) => any) | undefined;
|
|
157
167
|
onKeyboardAction?: ((...args: any[]) => any) | undefined;
|
|
@@ -166,6 +176,7 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
|
|
|
166
176
|
chatBackground: string;
|
|
167
177
|
applyStyle: Function;
|
|
168
178
|
reactionsEnabled: boolean;
|
|
179
|
+
subtextTooltipData: Record<string, any>;
|
|
169
180
|
enableDoubleClickReply: boolean;
|
|
170
181
|
buttonParams: IFeedUnreadButton;
|
|
171
182
|
scrollToBottom: boolean;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getChannelAccentColor(channelId?: string | null, fallback?: string | null): string | null;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Composable `useChannelAccentColor` возвращает цвет акцента канала для пузыря сообщения.
|
|
3
|
+
*
|
|
4
|
+
* Используется внутри компонентов сообщений (TextMessage, ImageMessage и др.), чтобы подкрасить
|
|
5
|
+
* сообщение в цвет канала, учитывая выбранный чат и позицию сообщения.
|
|
6
|
+
*
|
|
7
|
+
* @example
|
|
8
|
+
* import { useChannelAccentColor } from '@/hooks/messages'
|
|
9
|
+
*
|
|
10
|
+
* const { bubbleColor, bubbleStyle } = useChannelAccentColor(props.message, {
|
|
11
|
+
* cssVariable: '--bubble-color',
|
|
12
|
+
* position: 'right',
|
|
13
|
+
* })
|
|
14
|
+
*
|
|
15
|
+
* <div class="bubble" :style="bubbleStyle" />
|
|
16
|
+
*/
|
|
17
|
+
import { type Ref } from 'vue';
|
|
18
|
+
type MessageWithChannelMeta = {
|
|
19
|
+
dialogId?: string;
|
|
20
|
+
position?: string;
|
|
21
|
+
backgroundColor?: string | null;
|
|
22
|
+
};
|
|
23
|
+
type MessageSource<T extends MessageWithChannelMeta> = Ref<T | undefined> | T | undefined;
|
|
24
|
+
interface ChannelAccentOptions {
|
|
25
|
+
cssVariable?: string;
|
|
26
|
+
position?: 'left' | 'right' | 'both';
|
|
27
|
+
}
|
|
28
|
+
export declare function useChannelAccentColor<T extends MessageWithChannelMeta>(messageSource: MessageSource<T>, options?: ChannelAccentOptions): {
|
|
29
|
+
bubbleColor: import("vue").ComputedRef<string | null>;
|
|
30
|
+
bubbleStyle: import("vue").ComputedRef<{
|
|
31
|
+
[x: string]: string;
|
|
32
|
+
} | null>;
|
|
33
|
+
messageChannelId: import("vue").ComputedRef<string | undefined>;
|
|
34
|
+
};
|
|
35
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type ComputedRef, type MaybeRefOrGetter } from 'vue';
|
|
2
|
+
type MessageWithSubtext = {
|
|
3
|
+
messageId?: string | number;
|
|
4
|
+
subText?: string;
|
|
5
|
+
};
|
|
6
|
+
type TooltipMap = Record<string, string>;
|
|
7
|
+
/**
|
|
8
|
+
* Возвращает текст тултипа для подписи сообщения с учётом карты `subtextTooltipData`
|
|
9
|
+
*/
|
|
10
|
+
export declare function useSubtextTooltip(message: MaybeRefOrGetter<MessageWithSubtext | undefined>, tooltipData: MaybeRefOrGetter<TooltipMap | undefined>): ComputedRef<string>;
|
|
11
|
+
export {};
|
package/dist/vuessages.es.js
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
1
|
-
import { an as s, H as t, w as o, A as
|
|
1
|
+
import { an as s, H as t, w as o, A as l, aq as i, al as n, I as r, i as d, B as u, j as c, k as g, l as M, J as p, x as C, t as m, y as S, ag as h, u as y, ai as R, ah as A, z as I, v as B, ap as F, a as T, b, f as V, c as f, D as k, C as v, K as P, N as x, E as D, am as L, aj as W, F as w, g as E, O as U, ao as j, h as H, Q as K, m as N, n as Q, ar as O, R as q, L as z, M as G, X as J, Y as X, Z as Y, ac as Z, ad as $, ae as _, P as aa, a0 as ea, a1 as sa, a2 as ta, a3 as oa, a4 as la, a5 as ia, a6 as na, S as ra, af as da, d as ua, ak as ca, a7 as ga, $ as Ma, a8 as pa, e as Ca, o as ma, a9 as Sa, G as ha, T as ya, aa as Ra, U as Aa, ab as Ia, V as Ba, p as Fa, q as Ta, r as ba, s as Va, W as fa, a$ as ka, aW as va, as as Pa, b0 as xa, a_ as Da, aJ as La, aM as Wa, aU as wa, aV as Ea, at as Ua, aG as ja, aY as Ha, aX as Ka, aZ as Na, aT as Qa, au as Oa, aR as qa, aH as za, av as Ga, aw as Ja, aP as Xa, ax as Ya, aQ as Za, aK as $a, aA as _a, aB as ae, aC as ee, aD as se, aE as te, ay as oe, aN as le, aS as ie, az as ne, aO as re, aF as de, aI as ue, aL as ce } from "./index-C8JOAGtF.js";
|
|
2
2
|
export {
|
|
3
3
|
s as AdaptiveExtendedLayout,
|
|
4
4
|
t as AudioMessage,
|
|
5
5
|
o as AudioRecorder,
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
6
|
+
l as AvatarIcon,
|
|
7
|
+
i as BaseContainer,
|
|
8
|
+
n as BaseLayout,
|
|
9
|
+
r as BaseReplyMessage,
|
|
10
10
|
d as ButtonCommandsSelector,
|
|
11
11
|
u as ButtonContextMenu,
|
|
12
12
|
c as ButtonEmojiPicker,
|
|
13
|
-
|
|
14
|
-
|
|
13
|
+
g as ButtonTemplateSelector,
|
|
14
|
+
M as ButtonWabaTemplateSelector,
|
|
15
15
|
p as CallMessage,
|
|
16
16
|
C as ChannelSelector,
|
|
17
17
|
m as ChatFilter,
|
|
@@ -19,10 +19,10 @@ export {
|
|
|
19
19
|
h as ChatInput,
|
|
20
20
|
y as ChatItem,
|
|
21
21
|
R as ChatList,
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
22
|
+
A as ChatListHeader,
|
|
23
|
+
I as ChatPanel,
|
|
24
|
+
B as ChatTabs,
|
|
25
|
+
F as ChatWrapper,
|
|
26
26
|
T as CheckIcon,
|
|
27
27
|
b as CloseButtonIcon,
|
|
28
28
|
V as CommunicationPanel,
|
|
@@ -30,9 +30,9 @@ export {
|
|
|
30
30
|
k as ContactInfo,
|
|
31
31
|
v as ContextMenu,
|
|
32
32
|
P as DateMessage,
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
33
|
+
x as DateMessageSticky,
|
|
34
|
+
D as EmbedPreview,
|
|
35
|
+
L as ExtendedLayout,
|
|
36
36
|
W as Feed,
|
|
37
37
|
w as FeedFoundItem,
|
|
38
38
|
E as FeedFoundObjects,
|
|
@@ -57,15 +57,15 @@ export {
|
|
|
57
57
|
sa as ReplyCallMessage,
|
|
58
58
|
ta as ReplyFileMessage,
|
|
59
59
|
oa as ReplyImageMessage,
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
60
|
+
la as ReplyStickerMessage,
|
|
61
|
+
ia as ReplyTextMessage,
|
|
62
|
+
na as ReplyVideoMessage,
|
|
63
|
+
ra as SearchIcon,
|
|
64
64
|
da as SelectUser,
|
|
65
65
|
ua as SettingsIcon,
|
|
66
66
|
ca as SideBar,
|
|
67
|
-
|
|
68
|
-
|
|
67
|
+
ga as SplashScreen,
|
|
68
|
+
Ma as StickerMessage,
|
|
69
69
|
pa as SystemMessage,
|
|
70
70
|
Ca as TelegramIcon,
|
|
71
71
|
ma as TemplateSelector,
|
|
@@ -73,10 +73,10 @@ export {
|
|
|
73
73
|
ha as ThemeMode,
|
|
74
74
|
ya as Tooltip,
|
|
75
75
|
Ra as TypingMessage,
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
76
|
+
Aa as UserProfile,
|
|
77
|
+
Ia as VideoMessage,
|
|
78
|
+
Ba as VideoRecorder,
|
|
79
|
+
Fa as WABAAttachmentSection,
|
|
80
80
|
Ta as WABAQuickReplyButtons,
|
|
81
81
|
ba as WABASeparatedQuickButtons,
|
|
82
82
|
Va as WABATemplateSelector,
|
|
@@ -84,35 +84,38 @@ export {
|
|
|
84
84
|
ka as createReactionHandlers,
|
|
85
85
|
va as formatTimestamp,
|
|
86
86
|
Pa as generatePreview,
|
|
87
|
+
xa as getChannelAccentColor,
|
|
87
88
|
Da as getMessageClass,
|
|
88
89
|
La as getMessageValidationReport,
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
ie as
|
|
115
|
-
|
|
116
|
-
re as
|
|
117
|
-
|
|
90
|
+
Wa as getSidebarValidationReport,
|
|
91
|
+
wa as getStatus,
|
|
92
|
+
Ea as getStatusTitle,
|
|
93
|
+
Ua as getTypeFileByMime,
|
|
94
|
+
ja as getValidationReport,
|
|
95
|
+
Ha as insertDaySeparators,
|
|
96
|
+
Ka as playNotificationAudio,
|
|
97
|
+
Na as sortByTimestamp,
|
|
98
|
+
Qa as statuses,
|
|
99
|
+
Oa as uploadFile,
|
|
100
|
+
qa as useChannelAccentColor,
|
|
101
|
+
za as useChatValidator,
|
|
102
|
+
Ga as useDelayDebouncedRef,
|
|
103
|
+
Ja as useImmediateDebouncedRef,
|
|
104
|
+
Xa as useMessageActions,
|
|
105
|
+
Ya as useMessageDraft,
|
|
106
|
+
Za as useMessageLinks,
|
|
107
|
+
$a as useMessageValidator,
|
|
108
|
+
_a as useModalCreateChat,
|
|
109
|
+
ae as useModalCreateChat2,
|
|
110
|
+
ee as useModalCreateDialog,
|
|
111
|
+
se as useModalSelectUser2,
|
|
112
|
+
te as useModalVideoRecorder,
|
|
113
|
+
oe as useSearchModel,
|
|
114
|
+
le as useSidebarValidator,
|
|
115
|
+
ie as useSubtextTooltip,
|
|
116
|
+
ne as useTheme,
|
|
117
|
+
re as useValidation,
|
|
118
|
+
de as validateChats,
|
|
119
|
+
ue as validateMessages,
|
|
120
|
+
ce as validateSidebarItems
|
|
118
121
|
};
|