@uzum-tech/ui 2.3.3 → 2.3.5
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/index.js +688 -619
- package/dist/index.mjs +688 -619
- package/dist/index.prod.js +2 -2
- package/dist/index.prod.mjs +2 -2
- package/es/chat/src/Chat.d.ts +363 -3120
- package/es/chat/src/Chat.mjs +13 -240
- package/es/chat/src/ChatListItems.d.ts +4 -4
- package/es/chat/src/ChatMainArea.d.ts +36 -10
- package/es/chat/src/ChatMainArea.mjs +49 -3
- package/es/chat/src/ChatMessages.d.ts +3 -3
- package/es/chat/src/interface.d.ts +2814 -2
- package/es/chat/src/interface.mjs +244 -1
- package/es/components.d.ts +310 -224
- package/es/image/index.d.ts +2 -2
- package/es/image/index.mjs +2 -1
- package/es/image/src/ImagePreview.d.ts +60 -184
- package/es/image/src/ImagePreview.mjs +12 -18
- package/es/image/src/interface.d.ts +156 -3
- package/es/image/src/interface.mjs +23 -1
- package/es/image/src/public-types.d.ts +11 -5
- package/es/image/src/styles/index.cssr.mjs +11 -1
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/chat/src/Chat.d.ts +363 -3120
- package/lib/chat/src/Chat.js +15 -180
- package/lib/chat/src/ChatListItems.d.ts +4 -4
- package/lib/chat/src/ChatMainArea.d.ts +36 -10
- package/lib/chat/src/ChatMainArea.js +48 -3
- package/lib/chat/src/ChatMessages.d.ts +3 -3
- package/lib/chat/src/interface.d.ts +2814 -2
- package/lib/chat/src/interface.js +183 -1
- package/lib/components.d.ts +310 -224
- package/lib/image/index.d.ts +2 -2
- package/lib/image/index.js +3 -2
- package/lib/image/src/ImagePreview.d.ts +60 -184
- package/lib/image/src/ImagePreview.js +18 -17
- package/lib/image/src/interface.d.ts +156 -3
- package/lib/image/src/interface.js +12 -1
- package/lib/image/src/public-types.d.ts +11 -5
- package/lib/image/src/styles/index.cssr.js +11 -1
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +55 -3
package/es/chat/src/Chat.d.ts
CHANGED
|
@@ -1,3049 +1,246 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
import type { ExtractPublicPropTypes } from '../../_utils';
|
|
3
|
-
import type { ChatId, ChatListItemData, ChatMessageData, ChatProps as ChatPropsInterface } from './interface';
|
|
4
|
-
type ChatPropsType = ChatPropsInterface;
|
|
5
|
-
export declare const chatProps: {
|
|
6
|
-
chatItems: {
|
|
7
|
-
type: PropType<ChatPropsType["chatItems"]>;
|
|
8
|
-
default: () => never[];
|
|
9
|
-
};
|
|
10
|
-
selectedChatId: {
|
|
11
|
-
type: PropType<ChatPropsType["selectedChatId"]>;
|
|
12
|
-
default: undefined;
|
|
13
|
-
};
|
|
14
|
-
messages: {
|
|
15
|
-
type: PropType<ChatPropsType["messages"]>;
|
|
16
|
-
default: () => never[];
|
|
17
|
-
};
|
|
18
|
-
typingChatIds: {
|
|
19
|
-
type: PropType<Array<string | number | symbol>>;
|
|
20
|
-
default: () => never[];
|
|
21
|
-
};
|
|
22
|
-
disabled: {
|
|
23
|
-
type: PropType<ChatPropsType["disabled"]>;
|
|
24
|
-
default: boolean;
|
|
25
|
-
};
|
|
26
|
-
listEmptyProps: {
|
|
27
|
-
type: PropType<Partial<ChatPropsType["listEmptyProps"]>>;
|
|
28
|
-
default: undefined;
|
|
29
|
-
};
|
|
30
|
-
listHeaderTitle: {
|
|
31
|
-
type: PropType<ChatPropsType["listHeaderTitle"]>;
|
|
32
|
-
default: string;
|
|
33
|
-
};
|
|
34
|
-
listHeaderActions: {
|
|
35
|
-
type: PropType<ChatPropsType["listHeaderActions"]>;
|
|
36
|
-
default: () => never[];
|
|
37
|
-
};
|
|
38
|
-
listHeaderButtonProps: {
|
|
39
|
-
type: PropType<Partial<ChatPropsType["listHeaderButtonProps"]>>;
|
|
40
|
-
default: undefined;
|
|
41
|
-
};
|
|
42
|
-
listHeaderIconProps: {
|
|
43
|
-
type: PropType<Partial<ChatPropsType["listHeaderIconProps"]>>;
|
|
44
|
-
default: undefined;
|
|
45
|
-
};
|
|
46
|
-
listItemAvatarProps: {
|
|
47
|
-
type: PropType<Partial<ChatPropsType["listItemAvatarProps"]>>;
|
|
48
|
-
default: undefined;
|
|
49
|
-
};
|
|
50
|
-
listItemBadgeProps: {
|
|
51
|
-
type: PropType<Partial<ChatPropsType["listItemBadgeProps"]>>;
|
|
52
|
-
default: undefined;
|
|
53
|
-
};
|
|
54
|
-
headerTitle: {
|
|
55
|
-
type: PropType<ChatPropsType["headerTitle"]>;
|
|
56
|
-
default: undefined;
|
|
57
|
-
};
|
|
58
|
-
headerActions: {
|
|
59
|
-
type: PropType<ChatPropsType["headerActions"]>;
|
|
60
|
-
default: () => never[];
|
|
61
|
-
};
|
|
62
|
-
headerButtonProps: {
|
|
63
|
-
type: PropType<Partial<ChatPropsType["headerButtonProps"]>>;
|
|
64
|
-
default: undefined;
|
|
65
|
-
};
|
|
66
|
-
headerIconProps: {
|
|
67
|
-
type: PropType<Partial<ChatPropsType["headerIconProps"]>>;
|
|
68
|
-
default: undefined;
|
|
69
|
-
};
|
|
70
|
-
headerShareButtonProps: {
|
|
71
|
-
type: PropType<Partial<ChatPropsType["headerShareButtonProps"]>>;
|
|
72
|
-
default: undefined;
|
|
73
|
-
};
|
|
74
|
-
headerProfileButtonProps: {
|
|
75
|
-
type: PropType<Partial<ChatPropsType["headerProfileButtonProps"]>>;
|
|
76
|
-
default: undefined;
|
|
77
|
-
};
|
|
78
|
-
headerCloseButtonProps: {
|
|
79
|
-
type: PropType<Partial<ChatPropsType["headerCloseButtonProps"]>>;
|
|
80
|
-
default: undefined;
|
|
81
|
-
};
|
|
82
|
-
headerShareIconProps: {
|
|
83
|
-
type: PropType<Partial<ChatPropsType["headerShareIconProps"]>>;
|
|
84
|
-
default: undefined;
|
|
85
|
-
};
|
|
86
|
-
headerProfileIconProps: {
|
|
87
|
-
type: PropType<Partial<ChatPropsType["headerProfileIconProps"]>>;
|
|
88
|
-
default: undefined;
|
|
89
|
-
};
|
|
90
|
-
messageSenderAvatarProps: {
|
|
91
|
-
type: PropType<Partial<ChatPropsType["messageSenderAvatarProps"]>>;
|
|
92
|
-
default: undefined;
|
|
93
|
-
};
|
|
94
|
-
messageUploadProps: {
|
|
95
|
-
type: PropType<Partial<ChatPropsType["messageUploadProps"]>>;
|
|
96
|
-
default: undefined;
|
|
97
|
-
};
|
|
98
|
-
messageButtonProps: {
|
|
99
|
-
type: PropType<Partial<ChatPropsType["messageButtonProps"]>>;
|
|
100
|
-
default: undefined;
|
|
101
|
-
};
|
|
102
|
-
footerInputProps: {
|
|
103
|
-
type: PropType<Partial<ChatPropsType["footerInputProps"]>>;
|
|
104
|
-
default: undefined;
|
|
105
|
-
};
|
|
106
|
-
footerButtonProps: {
|
|
107
|
-
type: PropType<Partial<ChatPropsType["footerButtonProps"]>>;
|
|
108
|
-
default: undefined;
|
|
109
|
-
};
|
|
110
|
-
footerUploadProps: {
|
|
111
|
-
type: PropType<Partial<ChatPropsType["footerUploadProps"]>>;
|
|
112
|
-
default: undefined;
|
|
113
|
-
};
|
|
114
|
-
footerUploadTriggerProps: {
|
|
115
|
-
type: PropType<ChatPropsType["footerUploadTriggerProps"]>;
|
|
116
|
-
default: undefined;
|
|
117
|
-
};
|
|
118
|
-
footerIconProps: {
|
|
119
|
-
type: PropType<Partial<ChatPropsType["footerIconProps"]>>;
|
|
120
|
-
default: undefined;
|
|
121
|
-
};
|
|
122
|
-
footerSuffixIconProps: {
|
|
123
|
-
type: PropType<Partial<ChatPropsType["footerSuffixIconProps"]>>;
|
|
124
|
-
default: undefined;
|
|
125
|
-
};
|
|
126
|
-
emptyProps: {
|
|
127
|
-
type: PropType<Partial<ChatPropsType["emptyProps"]>>;
|
|
128
|
-
default: undefined;
|
|
129
|
-
};
|
|
130
|
-
retryText: {
|
|
131
|
-
type: PropType<ChatPropsType["retryText"]>;
|
|
132
|
-
default: undefined;
|
|
133
|
-
};
|
|
134
|
-
typingText: {
|
|
135
|
-
type: PropType<ChatPropsType["typingText"]>;
|
|
136
|
-
default: undefined;
|
|
137
|
-
};
|
|
138
|
-
closeButtonText: {
|
|
139
|
-
type: PropType<ChatPropsType["closeButtonText"]>;
|
|
140
|
-
default: undefined;
|
|
141
|
-
};
|
|
142
|
-
shareButtonTooltip: {
|
|
143
|
-
type: PropType<ChatPropsType["shareButtonTooltip"]>;
|
|
144
|
-
default: undefined;
|
|
145
|
-
};
|
|
146
|
-
profileButtonTooltip: {
|
|
147
|
-
type: PropType<ChatPropsType["profileButtonTooltip"]>;
|
|
148
|
-
default: undefined;
|
|
149
|
-
};
|
|
150
|
-
unreadNotificationText: {
|
|
151
|
-
type: PropType<ChatPropsType["unreadNotificationText"]>;
|
|
152
|
-
default: undefined;
|
|
153
|
-
};
|
|
154
|
-
chatItemsLoading: {
|
|
155
|
-
type: PropType<ChatPropsType["chatItemsLoading"]>;
|
|
156
|
-
default: boolean;
|
|
157
|
-
};
|
|
158
|
-
chatItemsLoadingCount: {
|
|
159
|
-
type: PropType<ChatPropsType["chatItemsLoadingCount"]>;
|
|
160
|
-
default: number;
|
|
161
|
-
};
|
|
162
|
-
messagesLoading: {
|
|
163
|
-
type: PropType<ChatPropsType["messagesLoading"]>;
|
|
164
|
-
default: boolean;
|
|
165
|
-
};
|
|
166
|
-
messagesLoadingCount: {
|
|
167
|
-
type: PropType<ChatPropsType["messagesLoadingCount"]>;
|
|
168
|
-
default: number;
|
|
169
|
-
};
|
|
170
|
-
height: {
|
|
171
|
-
type: PropType<string | number>;
|
|
172
|
-
default: number;
|
|
173
|
-
};
|
|
174
|
-
onChatSelect: {
|
|
175
|
-
type: PropType<ChatPropsType["onChatSelect"]>;
|
|
176
|
-
default: undefined;
|
|
177
|
-
};
|
|
178
|
-
onMessageRetry: {
|
|
179
|
-
type: PropType<ChatPropsType["onMessageRetry"]>;
|
|
180
|
-
default: undefined;
|
|
181
|
-
};
|
|
182
|
-
bubbleActions: {
|
|
183
|
-
type: PropType<ChatPropsType["bubbleActions"]>;
|
|
184
|
-
default: undefined;
|
|
185
|
-
};
|
|
186
|
-
onChatClose: {
|
|
187
|
-
type: PropType<() => void>;
|
|
188
|
-
default: undefined;
|
|
189
|
-
};
|
|
190
|
-
onChatShare: {
|
|
191
|
-
type: PropType<() => void>;
|
|
192
|
-
default: undefined;
|
|
193
|
-
};
|
|
194
|
-
onUserProfile: {
|
|
195
|
-
type: PropType<() => void>;
|
|
196
|
-
default: undefined;
|
|
197
|
-
};
|
|
198
|
-
onAttachmentUpload: {
|
|
199
|
-
type: PropType<ChatPropsType["onAttachmentUpload"]>;
|
|
200
|
-
default: undefined;
|
|
201
|
-
};
|
|
202
|
-
onAttachmentDownload: {
|
|
203
|
-
type: PropType<ChatPropsType["onAttachmentDownload"]>;
|
|
204
|
-
default: undefined;
|
|
205
|
-
};
|
|
206
|
-
onFilterChange: {
|
|
207
|
-
type: PropType<ChatPropsType["onFilterChange"]>;
|
|
208
|
-
default: undefined;
|
|
209
|
-
};
|
|
210
|
-
onFooterInputChange: {
|
|
211
|
-
type: PropType<(value: string, chatId: ChatId) => void>;
|
|
212
|
-
default: undefined;
|
|
213
|
-
};
|
|
214
|
-
onNetworkError: {
|
|
215
|
-
type: PropType<ChatPropsType["onNetworkError"]>;
|
|
216
|
-
default: undefined;
|
|
217
|
-
};
|
|
218
|
-
onUploadError: {
|
|
219
|
-
type: PropType<ChatPropsType["onUploadError"]>;
|
|
220
|
-
default: undefined;
|
|
221
|
-
};
|
|
222
|
-
onSendError: {
|
|
223
|
-
type: PropType<ChatPropsType["onSendError"]>;
|
|
224
|
-
default: undefined;
|
|
225
|
-
};
|
|
226
|
-
onChatItemsScrollToTop: {
|
|
227
|
-
type: PropType<() => void>;
|
|
228
|
-
default: undefined;
|
|
229
|
-
};
|
|
230
|
-
onChatItemsScrollToBottom: {
|
|
231
|
-
type: PropType<() => void>;
|
|
232
|
-
default: undefined;
|
|
233
|
-
};
|
|
234
|
-
onMessagesScrollToTop: {
|
|
235
|
-
type: PropType<() => void>;
|
|
236
|
-
default: undefined;
|
|
237
|
-
};
|
|
238
|
-
onMessagesScrollToBottom: {
|
|
239
|
-
type: PropType<() => void>;
|
|
240
|
-
default: undefined;
|
|
241
|
-
};
|
|
242
|
-
theme: PropType<import("../../_mixins").Theme<"Chat", {
|
|
243
|
-
backgroundColor: string;
|
|
244
|
-
borderColor: string;
|
|
245
|
-
sidebarBackgroundColor: string;
|
|
246
|
-
sidebarBorderColor: string;
|
|
247
|
-
sidebarItemBackgroundColor: string;
|
|
248
|
-
sidebarItemBackgroundColorHover: string;
|
|
249
|
-
sidebarItemBackgroundColorSelected: string;
|
|
250
|
-
sidebarItemTextColor: string;
|
|
251
|
-
sidebarItemTextColorSelected: string;
|
|
252
|
-
sidebarItemSubtitleColor: string;
|
|
253
|
-
sidebarItemTimeColor: string;
|
|
254
|
-
mainBackgroundColor: string;
|
|
255
|
-
headerBackgroundColor: string;
|
|
256
|
-
headerBorderColor: string;
|
|
257
|
-
headerTitleColor: string;
|
|
258
|
-
messageBubbleBackgroundColorOwn: string;
|
|
259
|
-
messageBubbleBackgroundColorOther: string;
|
|
260
|
-
messageBubbleTextColorOwn: string;
|
|
261
|
-
messageBubbleTextColorOther: string;
|
|
262
|
-
messageTimeColor: string;
|
|
263
|
-
messageStatusColor: string;
|
|
264
|
-
attachmentBackgroundColorOwn: string;
|
|
265
|
-
attachmentBackgroundColorOther: string;
|
|
266
|
-
footerBackgroundColor: string;
|
|
267
|
-
footerBorderColor: string;
|
|
268
|
-
inputBackgroundColor: string;
|
|
269
|
-
inputBorderColor: string;
|
|
270
|
-
inputSuffixColor: string;
|
|
271
|
-
unreadNotificationBackgroundColor: string;
|
|
272
|
-
unreadNotificationTextColor: string;
|
|
273
|
-
typingIndicatorColor: string;
|
|
274
|
-
dateSeparatorColor: string;
|
|
275
|
-
dateSeparatorBackgroundColor: string;
|
|
276
|
-
borderRadius: string;
|
|
277
|
-
errorColor: string;
|
|
278
|
-
}, {
|
|
279
|
-
Input: import("../../_mixins").Theme<"Input", {
|
|
280
|
-
paddingTiny: string;
|
|
281
|
-
paddingSmall: string;
|
|
282
|
-
paddingMedium: string;
|
|
283
|
-
paddingLarge: string;
|
|
284
|
-
paddingHuge: string;
|
|
285
|
-
clearSize: string;
|
|
286
|
-
countTextColorDisabled: string;
|
|
287
|
-
countTextColor: string;
|
|
288
|
-
heightTiny: string;
|
|
289
|
-
heightSmall: string;
|
|
290
|
-
heightMedium: string;
|
|
291
|
-
heightLarge: string;
|
|
292
|
-
heightHuge: string;
|
|
293
|
-
fontSizeTiny: string;
|
|
294
|
-
fontSizeSmall: string;
|
|
295
|
-
fontSizeMedium: string;
|
|
296
|
-
fontSizeLarge: string;
|
|
297
|
-
fontSizeHuge: string;
|
|
298
|
-
lineHeight: string;
|
|
299
|
-
lineHeightTextarea: string;
|
|
300
|
-
borderRadius: string;
|
|
301
|
-
iconSize: string;
|
|
302
|
-
groupLabelTextColor: string;
|
|
303
|
-
textColor: string;
|
|
304
|
-
textColorDisabled: string;
|
|
305
|
-
textDecorationColor: string;
|
|
306
|
-
caretColor: string;
|
|
307
|
-
placeholderColor: string;
|
|
308
|
-
placeholderColorDisabled: string;
|
|
309
|
-
color: string;
|
|
310
|
-
colorDisabled: string;
|
|
311
|
-
colorFocus: string;
|
|
312
|
-
groupLabelBorder: string;
|
|
313
|
-
border: string;
|
|
314
|
-
borderHover: string;
|
|
315
|
-
borderDisabled: string;
|
|
316
|
-
borderFocus: string;
|
|
317
|
-
boxShadowFocus: string;
|
|
318
|
-
loadingColor: string;
|
|
319
|
-
loadingColorSuccess: string;
|
|
320
|
-
borderSuccess: string;
|
|
321
|
-
borderHoverSuccess: string;
|
|
322
|
-
colorFocusSuccess: string;
|
|
323
|
-
borderFocusSuccess: string;
|
|
324
|
-
boxShadowFocusSuccess: string;
|
|
325
|
-
caretColorSuccess: string;
|
|
326
|
-
loadingColorWarning: string;
|
|
327
|
-
borderWarning: string;
|
|
328
|
-
borderHoverWarning: string;
|
|
329
|
-
colorFocusWarning: string;
|
|
330
|
-
borderFocusWarning: string;
|
|
331
|
-
boxShadowFocusWarning: string;
|
|
332
|
-
caretColorWarning: string;
|
|
333
|
-
loadingColorError: string;
|
|
334
|
-
borderError: string;
|
|
335
|
-
borderHoverError: string;
|
|
336
|
-
colorFocusError: string;
|
|
337
|
-
borderFocusError: string;
|
|
338
|
-
boxShadowFocusError: string;
|
|
339
|
-
caretColorError: string;
|
|
340
|
-
clearColor: string;
|
|
341
|
-
clearColorHover: string;
|
|
342
|
-
clearColorPressed: string;
|
|
343
|
-
iconColor: string;
|
|
344
|
-
iconColorDisabled: string;
|
|
345
|
-
iconColorHover: string;
|
|
346
|
-
iconColorPressed: string;
|
|
347
|
-
suffixTextColor: string;
|
|
348
|
-
selectionColor: string;
|
|
349
|
-
}, any>;
|
|
350
|
-
Empty: import("../../_mixins").Theme<"Empty", {
|
|
351
|
-
iconSizeSmall: string;
|
|
352
|
-
iconSizeMedium: string;
|
|
353
|
-
iconSizeLarge: string;
|
|
354
|
-
iconSizeHuge: string;
|
|
355
|
-
titleFontSizeSmall: string;
|
|
356
|
-
titleFontSizeMedium: string;
|
|
357
|
-
titleFontSizeLarge: string;
|
|
358
|
-
titleFontSizeHuge: string;
|
|
359
|
-
descriptionFontSizeSmall: string;
|
|
360
|
-
descriptionFontSizeMedium: string;
|
|
361
|
-
descriptionFontSizeLarge: string;
|
|
362
|
-
descriptionFontSizeHuge: string;
|
|
363
|
-
titleColor: string;
|
|
364
|
-
descriptionColor: string;
|
|
365
|
-
iconColor: string;
|
|
366
|
-
iconBgColor: string;
|
|
367
|
-
extraTextColor: string;
|
|
368
|
-
}, any>;
|
|
369
|
-
Select: import("../../_mixins").Theme<"Select", {
|
|
370
|
-
menuBoxShadow: string;
|
|
371
|
-
}, {
|
|
372
|
-
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
373
|
-
paddingTiny: string;
|
|
374
|
-
paddingSmall: string;
|
|
375
|
-
paddingMedium: string;
|
|
376
|
-
paddingLarge: string;
|
|
377
|
-
paddingHuge: string;
|
|
378
|
-
clearSizeTiny: string;
|
|
379
|
-
clearSizeSmall: string;
|
|
380
|
-
clearSizeMedium: string;
|
|
381
|
-
clearSizeLarge: string;
|
|
382
|
-
clearSizeHuge: string;
|
|
383
|
-
arrowSizeTiny: string;
|
|
384
|
-
arrowSizeSmall: string;
|
|
385
|
-
arrowSizeMedium: string;
|
|
386
|
-
arrowSizeLarge: string;
|
|
387
|
-
arrowSizeHuge: string;
|
|
388
|
-
fontSizeTiny: string;
|
|
389
|
-
fontSizeSmall: string;
|
|
390
|
-
fontSizeMedium: string;
|
|
391
|
-
fontSizeLarge: string;
|
|
392
|
-
fontSizeHuge: string;
|
|
393
|
-
lineHeightTiny: string;
|
|
394
|
-
lineHeightSmall: string;
|
|
395
|
-
lineHeightMedium: string;
|
|
396
|
-
lineHeightLarge: string;
|
|
397
|
-
lineHeightHuge: string;
|
|
398
|
-
heightTiny: string;
|
|
399
|
-
heightSmall: string;
|
|
400
|
-
heightMedium: string;
|
|
401
|
-
heightLarge: string;
|
|
402
|
-
heightHuge: string;
|
|
403
|
-
borderRadiusTiny: string;
|
|
404
|
-
borderRadiusSmall: string;
|
|
405
|
-
borderRadiusMedium: string;
|
|
406
|
-
borderRadiusLarge: string;
|
|
407
|
-
borderRadiusHuge: string;
|
|
408
|
-
textColor: string;
|
|
409
|
-
textColorDisabled: string;
|
|
410
|
-
placeholderColor: string;
|
|
411
|
-
placeholderColorDisabled: string;
|
|
412
|
-
color: string;
|
|
413
|
-
colorFilled: string;
|
|
414
|
-
colorDisabled: string;
|
|
415
|
-
colorActive: string;
|
|
416
|
-
border: string;
|
|
417
|
-
borderFilled: string;
|
|
418
|
-
borderHover: string;
|
|
419
|
-
borderActive: string;
|
|
420
|
-
borderFocus: string;
|
|
421
|
-
borderDisabled: string;
|
|
422
|
-
boxShadowHover: string;
|
|
423
|
-
boxShadowActive: string;
|
|
424
|
-
boxShadowFocus: string;
|
|
425
|
-
caretColor: string;
|
|
426
|
-
arrowColor: string;
|
|
427
|
-
arrowColorHover: string;
|
|
428
|
-
arrowColorDisabled: string;
|
|
429
|
-
loadingColor: string;
|
|
430
|
-
borderWarning: string;
|
|
431
|
-
borderHoverWarning: string;
|
|
432
|
-
borderActiveWarning: string;
|
|
433
|
-
borderFocusWarning: string;
|
|
434
|
-
boxShadowHoverWarning: string;
|
|
435
|
-
boxShadowActiveWarning: string;
|
|
436
|
-
boxShadowFocusWarning: string;
|
|
437
|
-
colorActiveWarning: string;
|
|
438
|
-
caretColorWarning: string;
|
|
439
|
-
borderError: string;
|
|
440
|
-
borderHoverError: string;
|
|
441
|
-
borderActiveError: string;
|
|
442
|
-
borderFocusError: string;
|
|
443
|
-
boxShadowHoverError: string;
|
|
444
|
-
boxShadowActiveError: string;
|
|
445
|
-
boxShadowFocusError: string;
|
|
446
|
-
colorActiveError: string;
|
|
447
|
-
caretColorError: string;
|
|
448
|
-
clearColor: string;
|
|
449
|
-
clearColorHover: string;
|
|
450
|
-
clearColorPressed: string;
|
|
451
|
-
caretColorSecondary: string;
|
|
452
|
-
filterCounterTextColor: string;
|
|
453
|
-
filterCounterTextColorDisabled: string;
|
|
454
|
-
arrowColorSecondary: string;
|
|
455
|
-
clearColorSecondary: string;
|
|
456
|
-
colorSecondary: string;
|
|
457
|
-
textColorSecondary: string;
|
|
458
|
-
borderSecondary: string;
|
|
459
|
-
arrowColorDisabledSecondary: string;
|
|
460
|
-
clearColorDisabledSecondary: string;
|
|
461
|
-
colorDisabledSecondary: string;
|
|
462
|
-
textColorDisabledSecondary: string;
|
|
463
|
-
borderDisabledSecondary: string;
|
|
464
|
-
arrowColorHoverSecondary: string;
|
|
465
|
-
clearColorHoverSecondary: string;
|
|
466
|
-
colorHoverSecondary: string;
|
|
467
|
-
textColorHoverSecondary: string;
|
|
468
|
-
borderHoverSecondary: string;
|
|
469
|
-
arrowColorFocusSecondary: string;
|
|
470
|
-
clearColorFocusSecondary: string;
|
|
471
|
-
colorFocusSecondary: string;
|
|
472
|
-
textColorFocusSecondary: string;
|
|
473
|
-
borderFocusSecondary: string;
|
|
474
|
-
arrowColorActiveSecondary: string;
|
|
475
|
-
clearColorActiveSecondary: string;
|
|
476
|
-
colorActiveSecondary: string;
|
|
477
|
-
textColorActiveSecondary: string;
|
|
478
|
-
borderActiveSecondary: string;
|
|
479
|
-
}, {
|
|
480
|
-
Popover: import("../../_mixins").Theme<"Popover", {
|
|
481
|
-
space: string;
|
|
482
|
-
spaceArrow: string;
|
|
483
|
-
arrowOffset: string;
|
|
484
|
-
arrowOffsetVertical: string;
|
|
485
|
-
arrowHeight: string;
|
|
486
|
-
padding: string;
|
|
487
|
-
fontSize: string;
|
|
488
|
-
borderRadius: string;
|
|
489
|
-
color: string;
|
|
490
|
-
dividerColor: string;
|
|
491
|
-
textColor: string;
|
|
492
|
-
boxShadow: string;
|
|
493
|
-
}, any>;
|
|
494
|
-
}>;
|
|
495
|
-
InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
|
|
496
|
-
height: string;
|
|
497
|
-
paddingSmall: string;
|
|
498
|
-
paddingMedium: string;
|
|
499
|
-
paddingLarge: string;
|
|
500
|
-
optionPaddingSmall: string;
|
|
501
|
-
optionPaddingMedium: string;
|
|
502
|
-
optionPaddingLarge: string;
|
|
503
|
-
loadingSize: string;
|
|
504
|
-
optionFontSizeSmall: string;
|
|
505
|
-
optionFontSizeMedium: string;
|
|
506
|
-
optionFontSizeLarge: string;
|
|
507
|
-
optionHeightSmall: string;
|
|
508
|
-
optionHeightMedium: string;
|
|
509
|
-
optionHeightLarge: string;
|
|
510
|
-
optionBorderRadius: string;
|
|
511
|
-
borderRadius: string;
|
|
512
|
-
color: string;
|
|
513
|
-
groupHeaderTextColor: string;
|
|
514
|
-
actionDividerColor: string;
|
|
515
|
-
optionTextColor: string;
|
|
516
|
-
optionTextColorPressed: string;
|
|
517
|
-
optionTextColorDisabled: string;
|
|
518
|
-
optionTextColorActive: string;
|
|
519
|
-
optionOpacityDisabled: string;
|
|
520
|
-
optionCheckColor: string;
|
|
521
|
-
optionColorPending: string;
|
|
522
|
-
optionColorActive: string;
|
|
523
|
-
optionGroupHeaderBorderColor: string;
|
|
524
|
-
optionColorActivePending: string;
|
|
525
|
-
actionTextColor: string;
|
|
526
|
-
loadingColor: string;
|
|
527
|
-
}, {
|
|
528
|
-
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
529
|
-
height: string;
|
|
530
|
-
width: string;
|
|
531
|
-
borderRadius: string;
|
|
532
|
-
color: string;
|
|
533
|
-
colorHover: string;
|
|
534
|
-
railInsetHorizontalBottom: string;
|
|
535
|
-
railInsetHorizontalTop: string;
|
|
536
|
-
railInsetVerticalRight: string;
|
|
537
|
-
railInsetVerticalLeft: string;
|
|
538
|
-
railColor: string;
|
|
539
|
-
}, any>;
|
|
540
|
-
Empty: import("../../_mixins").Theme<"Empty", {
|
|
541
|
-
iconSizeSmall: string;
|
|
542
|
-
iconSizeMedium: string;
|
|
543
|
-
iconSizeLarge: string;
|
|
544
|
-
iconSizeHuge: string;
|
|
545
|
-
titleFontSizeSmall: string;
|
|
546
|
-
titleFontSizeMedium: string;
|
|
547
|
-
titleFontSizeLarge: string;
|
|
548
|
-
titleFontSizeHuge: string;
|
|
549
|
-
descriptionFontSizeSmall: string;
|
|
550
|
-
descriptionFontSizeMedium: string;
|
|
551
|
-
descriptionFontSizeLarge: string;
|
|
552
|
-
descriptionFontSizeHuge: string;
|
|
553
|
-
titleColor: string;
|
|
554
|
-
descriptionColor: string;
|
|
555
|
-
iconColor: string;
|
|
556
|
-
iconBgColor: string;
|
|
557
|
-
extraTextColor: string;
|
|
558
|
-
}, any>;
|
|
559
|
-
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
560
|
-
fontWeight: string;
|
|
561
|
-
textColor: string;
|
|
562
|
-
descriptionTextColor: string;
|
|
563
|
-
textColorDisabled: string;
|
|
564
|
-
descriptionTextColorDisabled: string;
|
|
565
|
-
fontSizeLarge: string;
|
|
566
|
-
fontSizeMedium: string;
|
|
567
|
-
fontSizeSmall: string;
|
|
568
|
-
lineHeightLarge: string;
|
|
569
|
-
lineHeightMedium: string;
|
|
570
|
-
lineHeightSmall: string;
|
|
571
|
-
borderRadiusLarge: string;
|
|
572
|
-
borderRadiusMedium: string;
|
|
573
|
-
borderRadiusSmall: string;
|
|
574
|
-
color: string;
|
|
575
|
-
colorHover: string;
|
|
576
|
-
colorFocus: string;
|
|
577
|
-
colorActive: string;
|
|
578
|
-
colorChecked: string;
|
|
579
|
-
colorHoverChecked: string;
|
|
580
|
-
colorFocusChecked: string;
|
|
581
|
-
colorActiveChecked: string;
|
|
582
|
-
colorDisabled: string;
|
|
583
|
-
colorDisabledChecked: string;
|
|
584
|
-
checkMarkColor: string;
|
|
585
|
-
checkMarkColorHover: string;
|
|
586
|
-
checkMarkColorFocus: string;
|
|
587
|
-
checkMarkColorActive: string;
|
|
588
|
-
checkMarkColorDisabled: string;
|
|
589
|
-
checkMarkColorDisabledChecked: string;
|
|
590
|
-
border: string;
|
|
591
|
-
borderHover: string;
|
|
592
|
-
borderFocus: string;
|
|
593
|
-
borderActive: string;
|
|
594
|
-
borderChecked: string;
|
|
595
|
-
borderHoverChecked: string;
|
|
596
|
-
borderFocusChecked: string;
|
|
597
|
-
borderActiveChecked: string;
|
|
598
|
-
borderDisabled: string;
|
|
599
|
-
borderDisabledChecked: string;
|
|
600
|
-
boxShadowHover: string;
|
|
601
|
-
boxShadowFocus: string;
|
|
602
|
-
boxShadowActive: string;
|
|
603
|
-
boxShadowHoverChecked: string;
|
|
604
|
-
boxShadowFocusChecked: string;
|
|
605
|
-
boxShadowActiveChecked: string;
|
|
606
|
-
sizeSmall: string;
|
|
607
|
-
sizeMedium: string;
|
|
608
|
-
sizeLarge: string;
|
|
609
|
-
labelPadding: string;
|
|
610
|
-
}, any>;
|
|
611
|
-
Input: import("../../_mixins").Theme<"Input", {
|
|
612
|
-
paddingTiny: string;
|
|
613
|
-
paddingSmall: string;
|
|
614
|
-
paddingMedium: string;
|
|
615
|
-
paddingLarge: string;
|
|
616
|
-
paddingHuge: string;
|
|
617
|
-
clearSize: string;
|
|
618
|
-
countTextColorDisabled: string;
|
|
619
|
-
countTextColor: string;
|
|
620
|
-
heightTiny: string;
|
|
621
|
-
heightSmall: string;
|
|
622
|
-
heightMedium: string;
|
|
623
|
-
heightLarge: string;
|
|
624
|
-
heightHuge: string;
|
|
625
|
-
fontSizeTiny: string;
|
|
626
|
-
fontSizeSmall: string;
|
|
627
|
-
fontSizeMedium: string;
|
|
628
|
-
fontSizeLarge: string;
|
|
629
|
-
fontSizeHuge: string;
|
|
630
|
-
lineHeight: string;
|
|
631
|
-
lineHeightTextarea: string;
|
|
632
|
-
borderRadius: string;
|
|
633
|
-
iconSize: string;
|
|
634
|
-
groupLabelTextColor: string;
|
|
635
|
-
textColor: string;
|
|
636
|
-
textColorDisabled: string;
|
|
637
|
-
textDecorationColor: string;
|
|
638
|
-
caretColor: string;
|
|
639
|
-
placeholderColor: string;
|
|
640
|
-
placeholderColorDisabled: string;
|
|
641
|
-
color: string;
|
|
642
|
-
colorDisabled: string;
|
|
643
|
-
colorFocus: string;
|
|
644
|
-
groupLabelBorder: string;
|
|
645
|
-
border: string;
|
|
646
|
-
borderHover: string;
|
|
647
|
-
borderDisabled: string;
|
|
648
|
-
borderFocus: string;
|
|
649
|
-
boxShadowFocus: string;
|
|
650
|
-
loadingColor: string;
|
|
651
|
-
loadingColorSuccess: string;
|
|
652
|
-
borderSuccess: string;
|
|
653
|
-
borderHoverSuccess: string;
|
|
654
|
-
colorFocusSuccess: string;
|
|
655
|
-
borderFocusSuccess: string;
|
|
656
|
-
boxShadowFocusSuccess: string;
|
|
657
|
-
caretColorSuccess: string;
|
|
658
|
-
loadingColorWarning: string;
|
|
659
|
-
borderWarning: string;
|
|
660
|
-
borderHoverWarning: string;
|
|
661
|
-
colorFocusWarning: string;
|
|
662
|
-
borderFocusWarning: string;
|
|
663
|
-
boxShadowFocusWarning: string;
|
|
664
|
-
caretColorWarning: string;
|
|
665
|
-
loadingColorError: string;
|
|
666
|
-
borderError: string;
|
|
667
|
-
borderHoverError: string;
|
|
668
|
-
colorFocusError: string;
|
|
669
|
-
borderFocusError: string;
|
|
670
|
-
boxShadowFocusError: string;
|
|
671
|
-
caretColorError: string;
|
|
672
|
-
clearColor: string;
|
|
673
|
-
clearColorHover: string;
|
|
674
|
-
clearColorPressed: string;
|
|
675
|
-
iconColor: string;
|
|
676
|
-
iconColorDisabled: string;
|
|
677
|
-
iconColorHover: string;
|
|
678
|
-
iconColorPressed: string;
|
|
679
|
-
suffixTextColor: string;
|
|
680
|
-
selectionColor: string;
|
|
681
|
-
}, any>;
|
|
682
|
-
}>;
|
|
683
|
-
}>;
|
|
684
|
-
Avatar: import("../../_mixins").Theme<"Avatar", {
|
|
685
|
-
borderRadius: string;
|
|
686
|
-
fontSize: string;
|
|
687
|
-
fontWeight: string;
|
|
688
|
-
border: string;
|
|
689
|
-
heightTiny: string;
|
|
690
|
-
heightSmall: string;
|
|
691
|
-
heightMedium: string;
|
|
692
|
-
heightLarge: string;
|
|
693
|
-
textColor: string;
|
|
694
|
-
iconColor: string;
|
|
695
|
-
color: string;
|
|
696
|
-
iconSize: string;
|
|
697
|
-
}, any>;
|
|
698
|
-
Badge: import("../../_mixins").Theme<"Badge", {
|
|
699
|
-
color: string;
|
|
700
|
-
colorPrime: string;
|
|
701
|
-
colorInfo: string;
|
|
702
|
-
colorSuccess: string;
|
|
703
|
-
colorError: string;
|
|
704
|
-
colorWarning: string;
|
|
705
|
-
fontSize: string;
|
|
706
|
-
textColor: string;
|
|
707
|
-
textColorPrime: string;
|
|
708
|
-
textColorInfo: string;
|
|
709
|
-
textColorSuccess: string;
|
|
710
|
-
textColorError: string;
|
|
711
|
-
textColorWarning: string;
|
|
712
|
-
borderColor: string;
|
|
713
|
-
dotSize: string;
|
|
714
|
-
}, any>;
|
|
715
|
-
Button: import("../../_mixins").Theme<"Button", {
|
|
716
|
-
heightTiny: string;
|
|
717
|
-
heightSmall: string;
|
|
718
|
-
heightMedium: string;
|
|
719
|
-
heightLarge: string;
|
|
720
|
-
borderRadiusTiny: string;
|
|
721
|
-
borderRadiusSmall: string;
|
|
722
|
-
borderRadiusMedium: string;
|
|
723
|
-
borderRadiusLarge: string;
|
|
724
|
-
fontSizeTiny: string;
|
|
725
|
-
fontSizeSmall: string;
|
|
726
|
-
fontSizeMedium: string;
|
|
727
|
-
fontSizeLarge: string;
|
|
728
|
-
opacityDisabled: string;
|
|
729
|
-
colorOpacitySecondary: string;
|
|
730
|
-
colorOpacitySecondaryHover: string;
|
|
731
|
-
colorOpacitySecondaryPressed: string;
|
|
732
|
-
colorOpacitySecondaryFocus: string;
|
|
733
|
-
colorSecondary: string;
|
|
734
|
-
colorSecondaryHover: string;
|
|
735
|
-
colorSecondaryPressed: string;
|
|
736
|
-
colorSecondaryFocus: string;
|
|
737
|
-
colorSecondaryDisabled: string;
|
|
738
|
-
textColorSecondaryDisabled: string;
|
|
739
|
-
waveColorSecondary: string;
|
|
740
|
-
colorTertiary: string;
|
|
741
|
-
colorTertiaryHover: string;
|
|
742
|
-
colorTertiaryPressed: string;
|
|
743
|
-
colorTertiaryFocus: string;
|
|
744
|
-
colorTertiaryDisalbed: string;
|
|
745
|
-
waveColorTertiary: string;
|
|
746
|
-
textColorTextTertiary: string;
|
|
747
|
-
rippleColorTertiary: string;
|
|
748
|
-
colorQuaternary: string;
|
|
749
|
-
colorQuaternaryHover: string;
|
|
750
|
-
colorQuaternaryPressed: string;
|
|
751
|
-
colorQuaternaryFocus: string;
|
|
752
|
-
rippleColorQuaternary: string;
|
|
753
|
-
waveColorQuaternary: string;
|
|
754
|
-
color: string;
|
|
755
|
-
colorHover: string;
|
|
756
|
-
colorPressed: string;
|
|
757
|
-
colorFocus: string;
|
|
758
|
-
colorDisabled: string;
|
|
759
|
-
textColor: string;
|
|
760
|
-
textTertiary: string;
|
|
761
|
-
textColorTertiary: string;
|
|
762
|
-
textColorHover: string;
|
|
763
|
-
textColorPressed: string;
|
|
764
|
-
textColorFocus: string;
|
|
765
|
-
textColorDisabled: string;
|
|
766
|
-
textColorText: string;
|
|
767
|
-
textColorTextHover: string;
|
|
768
|
-
textColorTextPressed: string;
|
|
769
|
-
textColorTextFocus: string;
|
|
770
|
-
textColorTextDisabled: string;
|
|
771
|
-
textColorGhost: string;
|
|
772
|
-
textColorGhostHover: string;
|
|
773
|
-
textColorGhostPressed: string;
|
|
774
|
-
textColorGhostFocus: string;
|
|
775
|
-
textColorGhostDisabled: string;
|
|
776
|
-
border: string;
|
|
777
|
-
borderHover: string;
|
|
778
|
-
borderPressed: string;
|
|
779
|
-
borderFocus: string;
|
|
780
|
-
borderDisabled: string;
|
|
781
|
-
rippleColor: string;
|
|
782
|
-
colorPrimary: string;
|
|
783
|
-
colorHoverPrimary: string;
|
|
784
|
-
colorPressedPrimary: string;
|
|
785
|
-
colorFocusPrimary: string;
|
|
786
|
-
colorDisabledPrimary: string;
|
|
787
|
-
waveColorPrimary: string;
|
|
788
|
-
textColorPrimary: string;
|
|
789
|
-
textColorHoverPrimary: string;
|
|
790
|
-
textColorPressedPrimary: string;
|
|
791
|
-
textColorFocusPrimary: string;
|
|
792
|
-
textColorDisabledPrimary: string;
|
|
793
|
-
textColorTextPrimary: string;
|
|
794
|
-
textColorTextHoverPrimary: string;
|
|
795
|
-
textColorTextPressedPrimary: string;
|
|
796
|
-
textColorTextFocusPrimary: string;
|
|
797
|
-
textColorTextDisabledPrimary: string;
|
|
798
|
-
textColorGhostPrimary: string;
|
|
799
|
-
textColorGhostHoverPrimary: string;
|
|
800
|
-
textColorGhostPressedPrimary: string;
|
|
801
|
-
textColorGhostFocusPrimary: string;
|
|
802
|
-
textColorGhostDisabledPrimary: string;
|
|
803
|
-
borderPrimary: string;
|
|
804
|
-
borderHoverPrimary: string;
|
|
805
|
-
borderPressedPrimary: string;
|
|
806
|
-
borderFocusPrimary: string;
|
|
807
|
-
borderDisabledPrimary: string;
|
|
808
|
-
rippleColorPrimary: string;
|
|
809
|
-
colorInfo: string;
|
|
810
|
-
colorHoverInfo: string;
|
|
811
|
-
colorPressedInfo: string;
|
|
812
|
-
colorFocusInfo: string;
|
|
813
|
-
colorDisabledInfo: string;
|
|
814
|
-
textColorInfo: string;
|
|
815
|
-
textColorHoverInfo: string;
|
|
816
|
-
textColorPressedInfo: string;
|
|
817
|
-
textColorFocusInfo: string;
|
|
818
|
-
textColorDisabledInfo: string;
|
|
819
|
-
textColorTextInfo: string;
|
|
820
|
-
textColorTextHoverInfo: string;
|
|
821
|
-
textColorTextPressedInfo: string;
|
|
822
|
-
textColorTextFocusInfo: string;
|
|
823
|
-
textColorTextDisabledInfo: string;
|
|
824
|
-
textColorGhostInfo: string;
|
|
825
|
-
textColorGhostHoverInfo: string;
|
|
826
|
-
textColorGhostPressedInfo: string;
|
|
827
|
-
textColorGhostFocusInfo: string;
|
|
828
|
-
textColorGhostDisabledInfo: string;
|
|
829
|
-
borderInfo: string;
|
|
830
|
-
borderHoverInfo: string;
|
|
831
|
-
borderPressedInfo: string;
|
|
832
|
-
borderFocusInfo: string;
|
|
833
|
-
borderDisabledInfo: string;
|
|
834
|
-
rippleColorInfo: string;
|
|
835
|
-
colorSuccess: string;
|
|
836
|
-
colorHoverSuccess: string;
|
|
837
|
-
colorPressedSuccess: string;
|
|
838
|
-
colorFocusSuccess: string;
|
|
839
|
-
colorDisabledSuccess: string;
|
|
840
|
-
textColorSuccess: string;
|
|
841
|
-
textColorHoverSuccess: string;
|
|
842
|
-
textColorPressedSuccess: string;
|
|
843
|
-
textColorFocusSuccess: string;
|
|
844
|
-
textColorDisabledSuccess: string;
|
|
845
|
-
textColorTextSuccess: string;
|
|
846
|
-
textColorTextHoverSuccess: string;
|
|
847
|
-
textColorTextPressedSuccess: string;
|
|
848
|
-
textColorTextFocusSuccess: string;
|
|
849
|
-
textColorTextDisabledSuccess: string;
|
|
850
|
-
textColorGhostSuccess: string;
|
|
851
|
-
textColorGhostHoverSuccess: string;
|
|
852
|
-
textColorGhostPressedSuccess: string;
|
|
853
|
-
textColorGhostFocusSuccess: string;
|
|
854
|
-
textColorGhostDisabledSuccess: string;
|
|
855
|
-
borderSuccess: string;
|
|
856
|
-
borderHoverSuccess: string;
|
|
857
|
-
borderPressedSuccess: string;
|
|
858
|
-
borderFocusSuccess: string;
|
|
859
|
-
borderDisabledSuccess: string;
|
|
860
|
-
rippleColorSuccess: string;
|
|
861
|
-
colorWarning: string;
|
|
862
|
-
colorHoverWarning: string;
|
|
863
|
-
colorPressedWarning: string;
|
|
864
|
-
colorFocusWarning: string;
|
|
865
|
-
colorDisabledWarning: string;
|
|
866
|
-
textColorWarning: string;
|
|
867
|
-
textColorHoverWarning: string;
|
|
868
|
-
textColorPressedWarning: string;
|
|
869
|
-
textColorFocusWarning: string;
|
|
870
|
-
textColorDisabledWarning: string;
|
|
871
|
-
textColorTextWarning: string;
|
|
872
|
-
textColorTextHoverWarning: string;
|
|
873
|
-
textColorTextPressedWarning: string;
|
|
874
|
-
textColorTextFocusWarning: string;
|
|
875
|
-
textColorTextDisabledWarning: string;
|
|
876
|
-
textColorGhostWarning: string;
|
|
877
|
-
textColorGhostHoverWarning: string;
|
|
878
|
-
textColorGhostPressedWarning: string;
|
|
879
|
-
textColorGhostFocusWarning: string;
|
|
880
|
-
textColorGhostDisabledWarning: string;
|
|
881
|
-
borderWarning: string;
|
|
882
|
-
borderHoverWarning: string;
|
|
883
|
-
borderPressedWarning: string;
|
|
884
|
-
borderFocusWarning: string;
|
|
885
|
-
borderDisabledWarning: string;
|
|
886
|
-
rippleColorWarning: string;
|
|
887
|
-
colorError: string;
|
|
888
|
-
colorHoverError: string;
|
|
889
|
-
colorPressedError: string;
|
|
890
|
-
colorFocusError: string;
|
|
891
|
-
colorDisabledError: string;
|
|
892
|
-
textColorError: string;
|
|
893
|
-
textColorHoverError: string;
|
|
894
|
-
textColorPressedError: string;
|
|
895
|
-
textColorFocusError: string;
|
|
896
|
-
textColorDisabledError: string;
|
|
897
|
-
textColorTextError: string;
|
|
898
|
-
textColorTextHoverError: string;
|
|
899
|
-
textColorTextPressedError: string;
|
|
900
|
-
textColorTextFocusError: string;
|
|
901
|
-
textColorTextDisabledError: string;
|
|
902
|
-
textColorGhostError: string;
|
|
903
|
-
textColorGhostHoverError: string;
|
|
904
|
-
textColorGhostPressedError: string;
|
|
905
|
-
textColorGhostFocusError: string;
|
|
906
|
-
textColorGhostDisabledError: string;
|
|
907
|
-
borderError: string;
|
|
908
|
-
borderHoverError: string;
|
|
909
|
-
borderPressedError: string;
|
|
910
|
-
borderFocusError: string;
|
|
911
|
-
borderDisabledError: string;
|
|
912
|
-
rippleColorError: string;
|
|
913
|
-
waveOpacity: string;
|
|
914
|
-
fontWeight: string;
|
|
915
|
-
fontWeightStrong: string;
|
|
916
|
-
paddingTiny: string;
|
|
917
|
-
paddingSmall: string;
|
|
918
|
-
paddingMedium: string;
|
|
919
|
-
paddingLarge: string;
|
|
920
|
-
paddingRoundTiny: string;
|
|
921
|
-
paddingRoundSmall: string;
|
|
922
|
-
paddingRoundMedium: string;
|
|
923
|
-
paddingRoundLarge: string;
|
|
924
|
-
iconMarginTiny: string;
|
|
925
|
-
iconMarginSmall: string;
|
|
926
|
-
iconMarginMedium: string;
|
|
927
|
-
iconMarginLarge: string;
|
|
928
|
-
iconSizeTiny: string;
|
|
929
|
-
iconSizeSmall: string;
|
|
930
|
-
iconSizeMedium: string;
|
|
931
|
-
iconSizeLarge: string;
|
|
932
|
-
rippleDuration: string;
|
|
933
|
-
}, any>;
|
|
934
|
-
List: import("../../_mixins").Theme<"List", {
|
|
935
|
-
iconSize: string;
|
|
936
|
-
iconSpace: string;
|
|
937
|
-
suffixSpace: string;
|
|
938
|
-
prefixSpace: string;
|
|
939
|
-
subtitleColor: string;
|
|
940
|
-
avatarSpace: string;
|
|
941
|
-
colorFocus: string;
|
|
942
|
-
pressedScale: string;
|
|
943
|
-
textColorDisabled: string;
|
|
944
|
-
textColor: string;
|
|
945
|
-
color: string;
|
|
946
|
-
colorHover: string;
|
|
947
|
-
colorModal: string;
|
|
948
|
-
colorHoverModal: string;
|
|
949
|
-
colorPopover: string;
|
|
950
|
-
colorHoverPopover: string;
|
|
951
|
-
borderColor: string;
|
|
952
|
-
borderColorModal: string;
|
|
953
|
-
borderColorPopover: string;
|
|
954
|
-
borderRadiusLarge: string;
|
|
955
|
-
borderRadiusMedium: string;
|
|
956
|
-
borderRadiusSmall: string;
|
|
957
|
-
padding: string;
|
|
958
|
-
suffixSize: string;
|
|
959
|
-
}, any>;
|
|
960
|
-
Typography: import("../../_mixins").Theme<"Typography", {
|
|
961
|
-
headerFontSize1: string;
|
|
962
|
-
headerFontSize2: string;
|
|
963
|
-
headerFontSize3: string;
|
|
964
|
-
headerFontSize4: string;
|
|
965
|
-
headerFontSize5: string;
|
|
966
|
-
headerFontSize6: string;
|
|
967
|
-
headerMargin1: string;
|
|
968
|
-
headerMargin2: string;
|
|
969
|
-
headerMargin3: string;
|
|
970
|
-
headerMargin4: string;
|
|
971
|
-
headerMargin5: string;
|
|
972
|
-
headerMargin6: string;
|
|
973
|
-
headerPrefixWidth1: string;
|
|
974
|
-
headerPrefixWidth2: string;
|
|
975
|
-
headerPrefixWidth3: string;
|
|
976
|
-
headerPrefixWidth4: string;
|
|
977
|
-
headerPrefixWidth5: string;
|
|
978
|
-
headerPrefixWidth6: string;
|
|
979
|
-
headerBarWidth1: string;
|
|
980
|
-
headerBarWidth2: string;
|
|
981
|
-
headerBarWidth3: string;
|
|
982
|
-
headerBarWidth4: string;
|
|
983
|
-
headerBarWidth5: string;
|
|
984
|
-
headerBarWidth6: string;
|
|
985
|
-
pMargin: string;
|
|
986
|
-
margin: string;
|
|
987
|
-
liMargin: string;
|
|
988
|
-
olPadding: string;
|
|
989
|
-
ulPadding: string;
|
|
990
|
-
aTextColor: string;
|
|
991
|
-
blockquoteTextColor: string;
|
|
992
|
-
blockquotePrefixColor: string;
|
|
993
|
-
blockquoteLineHeight: string;
|
|
994
|
-
blockquoteFontSize: string;
|
|
995
|
-
codeBorderRadius: string;
|
|
996
|
-
liTextColor: string;
|
|
997
|
-
liLineHeight: string;
|
|
998
|
-
liFontSize: string;
|
|
999
|
-
hrColor: string;
|
|
1000
|
-
headerFontWeight: string;
|
|
1001
|
-
headerTextColor: string;
|
|
1002
|
-
pTextColor: string;
|
|
1003
|
-
pTextColor1Depth: string;
|
|
1004
|
-
pTextColor2Depth: string;
|
|
1005
|
-
pTextColor3Depth: string;
|
|
1006
|
-
pLineHeight: string;
|
|
1007
|
-
pFontSize: string;
|
|
1008
|
-
fontSize: string;
|
|
1009
|
-
lineHeight: string;
|
|
1010
|
-
headerBarColor: string;
|
|
1011
|
-
headerBarColorPrimary: string;
|
|
1012
|
-
headerBarColorInfo: string;
|
|
1013
|
-
headerBarColorError: string;
|
|
1014
|
-
headerBarColorWarning: string;
|
|
1015
|
-
headerBarColorSuccess: string;
|
|
1016
|
-
textColor: string;
|
|
1017
|
-
textColor1Depth: string;
|
|
1018
|
-
textColor2Depth: string;
|
|
1019
|
-
textColor3Depth: string;
|
|
1020
|
-
textColorPrimary: string;
|
|
1021
|
-
textColorInfo: string;
|
|
1022
|
-
textColorSuccess: string;
|
|
1023
|
-
textColorWarning: string;
|
|
1024
|
-
textColorError: string;
|
|
1025
|
-
codeTextColor: string;
|
|
1026
|
-
codeColor: string;
|
|
1027
|
-
codeBorder: string;
|
|
1028
|
-
}, any>;
|
|
1029
|
-
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
1030
|
-
messageBubbleBackgroundColorOwn: string;
|
|
1031
|
-
messageBubbleBackgroundColorOther: string;
|
|
1032
|
-
messageBubbleTextColorOwn: string;
|
|
1033
|
-
messageBubbleTextColorOther: string;
|
|
1034
|
-
messageTimeColor: string;
|
|
1035
|
-
messageStatusReadColor: string;
|
|
1036
|
-
messageStatusSuccessColor: string;
|
|
1037
|
-
attachmentBackgroundColorOwn: string;
|
|
1038
|
-
attachmentBackgroundColorOther: string;
|
|
1039
|
-
messageErrorColor: string;
|
|
1040
|
-
messageBorderRadius: string;
|
|
1041
|
-
unreadNotificationBackgroundColor: string;
|
|
1042
|
-
unreadNotificationTextColor: string;
|
|
1043
|
-
serviceMessageTextColor: string;
|
|
1044
|
-
serviceMessageBackgroundColor: string;
|
|
1045
|
-
messageTitleColor: string;
|
|
1046
|
-
}, {
|
|
1047
|
-
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
1048
|
-
color: string;
|
|
1049
|
-
opacity1Depth: string;
|
|
1050
|
-
opacity2Depth: string;
|
|
1051
|
-
opacity3Depth: string;
|
|
1052
|
-
opacity4Depth: string;
|
|
1053
|
-
opacity5Depth: string;
|
|
1054
|
-
}, any>;
|
|
1055
|
-
}>;
|
|
1056
|
-
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
1057
|
-
color: string;
|
|
1058
|
-
opacity1Depth: string;
|
|
1059
|
-
opacity2Depth: string;
|
|
1060
|
-
opacity3Depth: string;
|
|
1061
|
-
opacity4Depth: string;
|
|
1062
|
-
opacity5Depth: string;
|
|
1063
|
-
}, any>;
|
|
1064
|
-
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
1065
|
-
color: string;
|
|
1066
|
-
opacity1Depth: string;
|
|
1067
|
-
opacity2Depth: string;
|
|
1068
|
-
opacity3Depth: string;
|
|
1069
|
-
opacity4Depth: string;
|
|
1070
|
-
opacity5Depth: string;
|
|
1071
|
-
}, any>;
|
|
1072
|
-
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
1073
|
-
color: string;
|
|
1074
|
-
opacity1Depth: string;
|
|
1075
|
-
opacity2Depth: string;
|
|
1076
|
-
opacity3Depth: string;
|
|
1077
|
-
opacity4Depth: string;
|
|
1078
|
-
opacity5Depth: string;
|
|
1079
|
-
}, any>;
|
|
1080
|
-
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
1081
|
-
color: string;
|
|
1082
|
-
opacity1Depth: string;
|
|
1083
|
-
opacity2Depth: string;
|
|
1084
|
-
opacity3Depth: string;
|
|
1085
|
-
opacity4Depth: string;
|
|
1086
|
-
opacity5Depth: string;
|
|
1087
|
-
}, any>;
|
|
1088
|
-
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
1089
|
-
color: string;
|
|
1090
|
-
opacity1Depth: string;
|
|
1091
|
-
opacity2Depth: string;
|
|
1092
|
-
opacity3Depth: string;
|
|
1093
|
-
opacity4Depth: string;
|
|
1094
|
-
opacity5Depth: string;
|
|
1095
|
-
}, any>;
|
|
1096
|
-
}>>;
|
|
1097
|
-
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
1098
|
-
backgroundColor: string;
|
|
1099
|
-
borderColor: string;
|
|
1100
|
-
sidebarBackgroundColor: string;
|
|
1101
|
-
sidebarBorderColor: string;
|
|
1102
|
-
sidebarItemBackgroundColor: string;
|
|
1103
|
-
sidebarItemBackgroundColorHover: string;
|
|
1104
|
-
sidebarItemBackgroundColorSelected: string;
|
|
1105
|
-
sidebarItemTextColor: string;
|
|
1106
|
-
sidebarItemTextColorSelected: string;
|
|
1107
|
-
sidebarItemSubtitleColor: string;
|
|
1108
|
-
sidebarItemTimeColor: string;
|
|
1109
|
-
mainBackgroundColor: string;
|
|
1110
|
-
headerBackgroundColor: string;
|
|
1111
|
-
headerBorderColor: string;
|
|
1112
|
-
headerTitleColor: string;
|
|
1113
|
-
messageBubbleBackgroundColorOwn: string;
|
|
1114
|
-
messageBubbleBackgroundColorOther: string;
|
|
1115
|
-
messageBubbleTextColorOwn: string;
|
|
1116
|
-
messageBubbleTextColorOther: string;
|
|
1117
|
-
messageTimeColor: string;
|
|
1118
|
-
messageStatusColor: string;
|
|
1119
|
-
attachmentBackgroundColorOwn: string;
|
|
1120
|
-
attachmentBackgroundColorOther: string;
|
|
1121
|
-
footerBackgroundColor: string;
|
|
1122
|
-
footerBorderColor: string;
|
|
1123
|
-
inputBackgroundColor: string;
|
|
1124
|
-
inputBorderColor: string;
|
|
1125
|
-
inputSuffixColor: string;
|
|
1126
|
-
unreadNotificationBackgroundColor: string;
|
|
1127
|
-
unreadNotificationTextColor: string;
|
|
1128
|
-
typingIndicatorColor: string;
|
|
1129
|
-
dateSeparatorColor: string;
|
|
1130
|
-
dateSeparatorBackgroundColor: string;
|
|
1131
|
-
borderRadius: string;
|
|
1132
|
-
errorColor: string;
|
|
1133
|
-
}, {
|
|
1134
|
-
Input: import("../../_mixins").Theme<"Input", {
|
|
1135
|
-
paddingTiny: string;
|
|
1136
|
-
paddingSmall: string;
|
|
1137
|
-
paddingMedium: string;
|
|
1138
|
-
paddingLarge: string;
|
|
1139
|
-
paddingHuge: string;
|
|
1140
|
-
clearSize: string;
|
|
1141
|
-
countTextColorDisabled: string;
|
|
1142
|
-
countTextColor: string;
|
|
1143
|
-
heightTiny: string;
|
|
1144
|
-
heightSmall: string;
|
|
1145
|
-
heightMedium: string;
|
|
1146
|
-
heightLarge: string;
|
|
1147
|
-
heightHuge: string;
|
|
1148
|
-
fontSizeTiny: string;
|
|
1149
|
-
fontSizeSmall: string;
|
|
1150
|
-
fontSizeMedium: string;
|
|
1151
|
-
fontSizeLarge: string;
|
|
1152
|
-
fontSizeHuge: string;
|
|
1153
|
-
lineHeight: string;
|
|
1154
|
-
lineHeightTextarea: string;
|
|
1155
|
-
borderRadius: string;
|
|
1156
|
-
iconSize: string;
|
|
1157
|
-
groupLabelTextColor: string;
|
|
1158
|
-
textColor: string;
|
|
1159
|
-
textColorDisabled: string;
|
|
1160
|
-
textDecorationColor: string;
|
|
1161
|
-
caretColor: string;
|
|
1162
|
-
placeholderColor: string;
|
|
1163
|
-
placeholderColorDisabled: string;
|
|
1164
|
-
color: string;
|
|
1165
|
-
colorDisabled: string;
|
|
1166
|
-
colorFocus: string;
|
|
1167
|
-
groupLabelBorder: string;
|
|
1168
|
-
border: string;
|
|
1169
|
-
borderHover: string;
|
|
1170
|
-
borderDisabled: string;
|
|
1171
|
-
borderFocus: string;
|
|
1172
|
-
boxShadowFocus: string;
|
|
1173
|
-
loadingColor: string;
|
|
1174
|
-
loadingColorSuccess: string;
|
|
1175
|
-
borderSuccess: string;
|
|
1176
|
-
borderHoverSuccess: string;
|
|
1177
|
-
colorFocusSuccess: string;
|
|
1178
|
-
borderFocusSuccess: string;
|
|
1179
|
-
boxShadowFocusSuccess: string;
|
|
1180
|
-
caretColorSuccess: string;
|
|
1181
|
-
loadingColorWarning: string;
|
|
1182
|
-
borderWarning: string;
|
|
1183
|
-
borderHoverWarning: string;
|
|
1184
|
-
colorFocusWarning: string;
|
|
1185
|
-
borderFocusWarning: string;
|
|
1186
|
-
boxShadowFocusWarning: string;
|
|
1187
|
-
caretColorWarning: string;
|
|
1188
|
-
loadingColorError: string;
|
|
1189
|
-
borderError: string;
|
|
1190
|
-
borderHoverError: string;
|
|
1191
|
-
colorFocusError: string;
|
|
1192
|
-
borderFocusError: string;
|
|
1193
|
-
boxShadowFocusError: string;
|
|
1194
|
-
caretColorError: string;
|
|
1195
|
-
clearColor: string;
|
|
1196
|
-
clearColorHover: string;
|
|
1197
|
-
clearColorPressed: string;
|
|
1198
|
-
iconColor: string;
|
|
1199
|
-
iconColorDisabled: string;
|
|
1200
|
-
iconColorHover: string;
|
|
1201
|
-
iconColorPressed: string;
|
|
1202
|
-
suffixTextColor: string;
|
|
1203
|
-
selectionColor: string;
|
|
1204
|
-
}, any>;
|
|
1205
|
-
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1206
|
-
iconSizeSmall: string;
|
|
1207
|
-
iconSizeMedium: string;
|
|
1208
|
-
iconSizeLarge: string;
|
|
1209
|
-
iconSizeHuge: string;
|
|
1210
|
-
titleFontSizeSmall: string;
|
|
1211
|
-
titleFontSizeMedium: string;
|
|
1212
|
-
titleFontSizeLarge: string;
|
|
1213
|
-
titleFontSizeHuge: string;
|
|
1214
|
-
descriptionFontSizeSmall: string;
|
|
1215
|
-
descriptionFontSizeMedium: string;
|
|
1216
|
-
descriptionFontSizeLarge: string;
|
|
1217
|
-
descriptionFontSizeHuge: string;
|
|
1218
|
-
titleColor: string;
|
|
1219
|
-
descriptionColor: string;
|
|
1220
|
-
iconColor: string;
|
|
1221
|
-
iconBgColor: string;
|
|
1222
|
-
extraTextColor: string;
|
|
1223
|
-
}, any>;
|
|
1224
|
-
Select: import("../../_mixins").Theme<"Select", {
|
|
1225
|
-
menuBoxShadow: string;
|
|
1226
|
-
}, {
|
|
1227
|
-
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
1228
|
-
paddingTiny: string;
|
|
1229
|
-
paddingSmall: string;
|
|
1230
|
-
paddingMedium: string;
|
|
1231
|
-
paddingLarge: string;
|
|
1232
|
-
paddingHuge: string;
|
|
1233
|
-
clearSizeTiny: string;
|
|
1234
|
-
clearSizeSmall: string;
|
|
1235
|
-
clearSizeMedium: string;
|
|
1236
|
-
clearSizeLarge: string;
|
|
1237
|
-
clearSizeHuge: string;
|
|
1238
|
-
arrowSizeTiny: string;
|
|
1239
|
-
arrowSizeSmall: string;
|
|
1240
|
-
arrowSizeMedium: string;
|
|
1241
|
-
arrowSizeLarge: string;
|
|
1242
|
-
arrowSizeHuge: string;
|
|
1243
|
-
fontSizeTiny: string;
|
|
1244
|
-
fontSizeSmall: string;
|
|
1245
|
-
fontSizeMedium: string;
|
|
1246
|
-
fontSizeLarge: string;
|
|
1247
|
-
fontSizeHuge: string;
|
|
1248
|
-
lineHeightTiny: string;
|
|
1249
|
-
lineHeightSmall: string;
|
|
1250
|
-
lineHeightMedium: string;
|
|
1251
|
-
lineHeightLarge: string;
|
|
1252
|
-
lineHeightHuge: string;
|
|
1253
|
-
heightTiny: string;
|
|
1254
|
-
heightSmall: string;
|
|
1255
|
-
heightMedium: string;
|
|
1256
|
-
heightLarge: string;
|
|
1257
|
-
heightHuge: string;
|
|
1258
|
-
borderRadiusTiny: string;
|
|
1259
|
-
borderRadiusSmall: string;
|
|
1260
|
-
borderRadiusMedium: string;
|
|
1261
|
-
borderRadiusLarge: string;
|
|
1262
|
-
borderRadiusHuge: string;
|
|
1263
|
-
textColor: string;
|
|
1264
|
-
textColorDisabled: string;
|
|
1265
|
-
placeholderColor: string;
|
|
1266
|
-
placeholderColorDisabled: string;
|
|
1267
|
-
color: string;
|
|
1268
|
-
colorFilled: string;
|
|
1269
|
-
colorDisabled: string;
|
|
1270
|
-
colorActive: string;
|
|
1271
|
-
border: string;
|
|
1272
|
-
borderFilled: string;
|
|
1273
|
-
borderHover: string;
|
|
1274
|
-
borderActive: string;
|
|
1275
|
-
borderFocus: string;
|
|
1276
|
-
borderDisabled: string;
|
|
1277
|
-
boxShadowHover: string;
|
|
1278
|
-
boxShadowActive: string;
|
|
1279
|
-
boxShadowFocus: string;
|
|
1280
|
-
caretColor: string;
|
|
1281
|
-
arrowColor: string;
|
|
1282
|
-
arrowColorHover: string;
|
|
1283
|
-
arrowColorDisabled: string;
|
|
1284
|
-
loadingColor: string;
|
|
1285
|
-
borderWarning: string;
|
|
1286
|
-
borderHoverWarning: string;
|
|
1287
|
-
borderActiveWarning: string;
|
|
1288
|
-
borderFocusWarning: string;
|
|
1289
|
-
boxShadowHoverWarning: string;
|
|
1290
|
-
boxShadowActiveWarning: string;
|
|
1291
|
-
boxShadowFocusWarning: string;
|
|
1292
|
-
colorActiveWarning: string;
|
|
1293
|
-
caretColorWarning: string;
|
|
1294
|
-
borderError: string;
|
|
1295
|
-
borderHoverError: string;
|
|
1296
|
-
borderActiveError: string;
|
|
1297
|
-
borderFocusError: string;
|
|
1298
|
-
boxShadowHoverError: string;
|
|
1299
|
-
boxShadowActiveError: string;
|
|
1300
|
-
boxShadowFocusError: string;
|
|
1301
|
-
colorActiveError: string;
|
|
1302
|
-
caretColorError: string;
|
|
1303
|
-
clearColor: string;
|
|
1304
|
-
clearColorHover: string;
|
|
1305
|
-
clearColorPressed: string;
|
|
1306
|
-
caretColorSecondary: string;
|
|
1307
|
-
filterCounterTextColor: string;
|
|
1308
|
-
filterCounterTextColorDisabled: string;
|
|
1309
|
-
arrowColorSecondary: string;
|
|
1310
|
-
clearColorSecondary: string;
|
|
1311
|
-
colorSecondary: string;
|
|
1312
|
-
textColorSecondary: string;
|
|
1313
|
-
borderSecondary: string;
|
|
1314
|
-
arrowColorDisabledSecondary: string;
|
|
1315
|
-
clearColorDisabledSecondary: string;
|
|
1316
|
-
colorDisabledSecondary: string;
|
|
1317
|
-
textColorDisabledSecondary: string;
|
|
1318
|
-
borderDisabledSecondary: string;
|
|
1319
|
-
arrowColorHoverSecondary: string;
|
|
1320
|
-
clearColorHoverSecondary: string;
|
|
1321
|
-
colorHoverSecondary: string;
|
|
1322
|
-
textColorHoverSecondary: string;
|
|
1323
|
-
borderHoverSecondary: string;
|
|
1324
|
-
arrowColorFocusSecondary: string;
|
|
1325
|
-
clearColorFocusSecondary: string;
|
|
1326
|
-
colorFocusSecondary: string;
|
|
1327
|
-
textColorFocusSecondary: string;
|
|
1328
|
-
borderFocusSecondary: string;
|
|
1329
|
-
arrowColorActiveSecondary: string;
|
|
1330
|
-
clearColorActiveSecondary: string;
|
|
1331
|
-
colorActiveSecondary: string;
|
|
1332
|
-
textColorActiveSecondary: string;
|
|
1333
|
-
borderActiveSecondary: string;
|
|
1334
|
-
}, {
|
|
1335
|
-
Popover: import("../../_mixins").Theme<"Popover", {
|
|
1336
|
-
space: string;
|
|
1337
|
-
spaceArrow: string;
|
|
1338
|
-
arrowOffset: string;
|
|
1339
|
-
arrowOffsetVertical: string;
|
|
1340
|
-
arrowHeight: string;
|
|
1341
|
-
padding: string;
|
|
1342
|
-
fontSize: string;
|
|
1343
|
-
borderRadius: string;
|
|
1344
|
-
color: string;
|
|
1345
|
-
dividerColor: string;
|
|
1346
|
-
textColor: string;
|
|
1347
|
-
boxShadow: string;
|
|
1348
|
-
}, any>;
|
|
1349
|
-
}>;
|
|
1350
|
-
InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
|
|
1351
|
-
height: string;
|
|
1352
|
-
paddingSmall: string;
|
|
1353
|
-
paddingMedium: string;
|
|
1354
|
-
paddingLarge: string;
|
|
1355
|
-
optionPaddingSmall: string;
|
|
1356
|
-
optionPaddingMedium: string;
|
|
1357
|
-
optionPaddingLarge: string;
|
|
1358
|
-
loadingSize: string;
|
|
1359
|
-
optionFontSizeSmall: string;
|
|
1360
|
-
optionFontSizeMedium: string;
|
|
1361
|
-
optionFontSizeLarge: string;
|
|
1362
|
-
optionHeightSmall: string;
|
|
1363
|
-
optionHeightMedium: string;
|
|
1364
|
-
optionHeightLarge: string;
|
|
1365
|
-
optionBorderRadius: string;
|
|
1366
|
-
borderRadius: string;
|
|
1367
|
-
color: string;
|
|
1368
|
-
groupHeaderTextColor: string;
|
|
1369
|
-
actionDividerColor: string;
|
|
1370
|
-
optionTextColor: string;
|
|
1371
|
-
optionTextColorPressed: string;
|
|
1372
|
-
optionTextColorDisabled: string;
|
|
1373
|
-
optionTextColorActive: string;
|
|
1374
|
-
optionOpacityDisabled: string;
|
|
1375
|
-
optionCheckColor: string;
|
|
1376
|
-
optionColorPending: string;
|
|
1377
|
-
optionColorActive: string;
|
|
1378
|
-
optionGroupHeaderBorderColor: string;
|
|
1379
|
-
optionColorActivePending: string;
|
|
1380
|
-
actionTextColor: string;
|
|
1381
|
-
loadingColor: string;
|
|
1382
|
-
}, {
|
|
1383
|
-
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
1384
|
-
height: string;
|
|
1385
|
-
width: string;
|
|
1386
|
-
borderRadius: string;
|
|
1387
|
-
color: string;
|
|
1388
|
-
colorHover: string;
|
|
1389
|
-
railInsetHorizontalBottom: string;
|
|
1390
|
-
railInsetHorizontalTop: string;
|
|
1391
|
-
railInsetVerticalRight: string;
|
|
1392
|
-
railInsetVerticalLeft: string;
|
|
1393
|
-
railColor: string;
|
|
1394
|
-
}, any>;
|
|
1395
|
-
Empty: import("../../_mixins").Theme<"Empty", {
|
|
1396
|
-
iconSizeSmall: string;
|
|
1397
|
-
iconSizeMedium: string;
|
|
1398
|
-
iconSizeLarge: string;
|
|
1399
|
-
iconSizeHuge: string;
|
|
1400
|
-
titleFontSizeSmall: string;
|
|
1401
|
-
titleFontSizeMedium: string;
|
|
1402
|
-
titleFontSizeLarge: string;
|
|
1403
|
-
titleFontSizeHuge: string;
|
|
1404
|
-
descriptionFontSizeSmall: string;
|
|
1405
|
-
descriptionFontSizeMedium: string;
|
|
1406
|
-
descriptionFontSizeLarge: string;
|
|
1407
|
-
descriptionFontSizeHuge: string;
|
|
1408
|
-
titleColor: string;
|
|
1409
|
-
descriptionColor: string;
|
|
1410
|
-
iconColor: string;
|
|
1411
|
-
iconBgColor: string;
|
|
1412
|
-
extraTextColor: string;
|
|
1413
|
-
}, any>;
|
|
1414
|
-
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
1415
|
-
fontWeight: string;
|
|
1416
|
-
textColor: string;
|
|
1417
|
-
descriptionTextColor: string;
|
|
1418
|
-
textColorDisabled: string;
|
|
1419
|
-
descriptionTextColorDisabled: string;
|
|
1420
|
-
fontSizeLarge: string;
|
|
1421
|
-
fontSizeMedium: string;
|
|
1422
|
-
fontSizeSmall: string;
|
|
1423
|
-
lineHeightLarge: string;
|
|
1424
|
-
lineHeightMedium: string;
|
|
1425
|
-
lineHeightSmall: string;
|
|
1426
|
-
borderRadiusLarge: string;
|
|
1427
|
-
borderRadiusMedium: string;
|
|
1428
|
-
borderRadiusSmall: string;
|
|
1429
|
-
color: string;
|
|
1430
|
-
colorHover: string;
|
|
1431
|
-
colorFocus: string;
|
|
1432
|
-
colorActive: string;
|
|
1433
|
-
colorChecked: string;
|
|
1434
|
-
colorHoverChecked: string;
|
|
1435
|
-
colorFocusChecked: string;
|
|
1436
|
-
colorActiveChecked: string;
|
|
1437
|
-
colorDisabled: string;
|
|
1438
|
-
colorDisabledChecked: string;
|
|
1439
|
-
checkMarkColor: string;
|
|
1440
|
-
checkMarkColorHover: string;
|
|
1441
|
-
checkMarkColorFocus: string;
|
|
1442
|
-
checkMarkColorActive: string;
|
|
1443
|
-
checkMarkColorDisabled: string;
|
|
1444
|
-
checkMarkColorDisabledChecked: string;
|
|
1445
|
-
border: string;
|
|
1446
|
-
borderHover: string;
|
|
1447
|
-
borderFocus: string;
|
|
1448
|
-
borderActive: string;
|
|
1449
|
-
borderChecked: string;
|
|
1450
|
-
borderHoverChecked: string;
|
|
1451
|
-
borderFocusChecked: string;
|
|
1452
|
-
borderActiveChecked: string;
|
|
1453
|
-
borderDisabled: string;
|
|
1454
|
-
borderDisabledChecked: string;
|
|
1455
|
-
boxShadowHover: string;
|
|
1456
|
-
boxShadowFocus: string;
|
|
1457
|
-
boxShadowActive: string;
|
|
1458
|
-
boxShadowHoverChecked: string;
|
|
1459
|
-
boxShadowFocusChecked: string;
|
|
1460
|
-
boxShadowActiveChecked: string;
|
|
1461
|
-
sizeSmall: string;
|
|
1462
|
-
sizeMedium: string;
|
|
1463
|
-
sizeLarge: string;
|
|
1464
|
-
labelPadding: string;
|
|
1465
|
-
}, any>;
|
|
1466
|
-
Input: import("../../_mixins").Theme<"Input", {
|
|
1467
|
-
paddingTiny: string;
|
|
1468
|
-
paddingSmall: string;
|
|
1469
|
-
paddingMedium: string;
|
|
1470
|
-
paddingLarge: string;
|
|
1471
|
-
paddingHuge: string;
|
|
1472
|
-
clearSize: string;
|
|
1473
|
-
countTextColorDisabled: string;
|
|
1474
|
-
countTextColor: string;
|
|
1475
|
-
heightTiny: string;
|
|
1476
|
-
heightSmall: string;
|
|
1477
|
-
heightMedium: string;
|
|
1478
|
-
heightLarge: string;
|
|
1479
|
-
heightHuge: string;
|
|
1480
|
-
fontSizeTiny: string;
|
|
1481
|
-
fontSizeSmall: string;
|
|
1482
|
-
fontSizeMedium: string;
|
|
1483
|
-
fontSizeLarge: string;
|
|
1484
|
-
fontSizeHuge: string;
|
|
1485
|
-
lineHeight: string;
|
|
1486
|
-
lineHeightTextarea: string;
|
|
1487
|
-
borderRadius: string;
|
|
1488
|
-
iconSize: string;
|
|
1489
|
-
groupLabelTextColor: string;
|
|
1490
|
-
textColor: string;
|
|
1491
|
-
textColorDisabled: string;
|
|
1492
|
-
textDecorationColor: string;
|
|
1493
|
-
caretColor: string;
|
|
1494
|
-
placeholderColor: string;
|
|
1495
|
-
placeholderColorDisabled: string;
|
|
1496
|
-
color: string;
|
|
1497
|
-
colorDisabled: string;
|
|
1498
|
-
colorFocus: string;
|
|
1499
|
-
groupLabelBorder: string;
|
|
1500
|
-
border: string;
|
|
1501
|
-
borderHover: string;
|
|
1502
|
-
borderDisabled: string;
|
|
1503
|
-
borderFocus: string;
|
|
1504
|
-
boxShadowFocus: string;
|
|
1505
|
-
loadingColor: string;
|
|
1506
|
-
loadingColorSuccess: string;
|
|
1507
|
-
borderSuccess: string;
|
|
1508
|
-
borderHoverSuccess: string;
|
|
1509
|
-
colorFocusSuccess: string;
|
|
1510
|
-
borderFocusSuccess: string;
|
|
1511
|
-
boxShadowFocusSuccess: string;
|
|
1512
|
-
caretColorSuccess: string;
|
|
1513
|
-
loadingColorWarning: string;
|
|
1514
|
-
borderWarning: string;
|
|
1515
|
-
borderHoverWarning: string;
|
|
1516
|
-
colorFocusWarning: string;
|
|
1517
|
-
borderFocusWarning: string;
|
|
1518
|
-
boxShadowFocusWarning: string;
|
|
1519
|
-
caretColorWarning: string;
|
|
1520
|
-
loadingColorError: string;
|
|
1521
|
-
borderError: string;
|
|
1522
|
-
borderHoverError: string;
|
|
1523
|
-
colorFocusError: string;
|
|
1524
|
-
borderFocusError: string;
|
|
1525
|
-
boxShadowFocusError: string;
|
|
1526
|
-
caretColorError: string;
|
|
1527
|
-
clearColor: string;
|
|
1528
|
-
clearColorHover: string;
|
|
1529
|
-
clearColorPressed: string;
|
|
1530
|
-
iconColor: string;
|
|
1531
|
-
iconColorDisabled: string;
|
|
1532
|
-
iconColorHover: string;
|
|
1533
|
-
iconColorPressed: string;
|
|
1534
|
-
suffixTextColor: string;
|
|
1535
|
-
selectionColor: string;
|
|
1536
|
-
}, any>;
|
|
1537
|
-
}>;
|
|
1538
|
-
}>;
|
|
1539
|
-
Avatar: import("../../_mixins").Theme<"Avatar", {
|
|
1540
|
-
borderRadius: string;
|
|
1541
|
-
fontSize: string;
|
|
1542
|
-
fontWeight: string;
|
|
1543
|
-
border: string;
|
|
1544
|
-
heightTiny: string;
|
|
1545
|
-
heightSmall: string;
|
|
1546
|
-
heightMedium: string;
|
|
1547
|
-
heightLarge: string;
|
|
1548
|
-
textColor: string;
|
|
1549
|
-
iconColor: string;
|
|
1550
|
-
color: string;
|
|
1551
|
-
iconSize: string;
|
|
1552
|
-
}, any>;
|
|
1553
|
-
Badge: import("../../_mixins").Theme<"Badge", {
|
|
1554
|
-
color: string;
|
|
1555
|
-
colorPrime: string;
|
|
1556
|
-
colorInfo: string;
|
|
1557
|
-
colorSuccess: string;
|
|
1558
|
-
colorError: string;
|
|
1559
|
-
colorWarning: string;
|
|
1560
|
-
fontSize: string;
|
|
1561
|
-
textColor: string;
|
|
1562
|
-
textColorPrime: string;
|
|
1563
|
-
textColorInfo: string;
|
|
1564
|
-
textColorSuccess: string;
|
|
1565
|
-
textColorError: string;
|
|
1566
|
-
textColorWarning: string;
|
|
1567
|
-
borderColor: string;
|
|
1568
|
-
dotSize: string;
|
|
1569
|
-
}, any>;
|
|
1570
|
-
Button: import("../../_mixins").Theme<"Button", {
|
|
1571
|
-
heightTiny: string;
|
|
1572
|
-
heightSmall: string;
|
|
1573
|
-
heightMedium: string;
|
|
1574
|
-
heightLarge: string;
|
|
1575
|
-
borderRadiusTiny: string;
|
|
1576
|
-
borderRadiusSmall: string;
|
|
1577
|
-
borderRadiusMedium: string;
|
|
1578
|
-
borderRadiusLarge: string;
|
|
1579
|
-
fontSizeTiny: string;
|
|
1580
|
-
fontSizeSmall: string;
|
|
1581
|
-
fontSizeMedium: string;
|
|
1582
|
-
fontSizeLarge: string;
|
|
1583
|
-
opacityDisabled: string;
|
|
1584
|
-
colorOpacitySecondary: string;
|
|
1585
|
-
colorOpacitySecondaryHover: string;
|
|
1586
|
-
colorOpacitySecondaryPressed: string;
|
|
1587
|
-
colorOpacitySecondaryFocus: string;
|
|
1588
|
-
colorSecondary: string;
|
|
1589
|
-
colorSecondaryHover: string;
|
|
1590
|
-
colorSecondaryPressed: string;
|
|
1591
|
-
colorSecondaryFocus: string;
|
|
1592
|
-
colorSecondaryDisabled: string;
|
|
1593
|
-
textColorSecondaryDisabled: string;
|
|
1594
|
-
waveColorSecondary: string;
|
|
1595
|
-
colorTertiary: string;
|
|
1596
|
-
colorTertiaryHover: string;
|
|
1597
|
-
colorTertiaryPressed: string;
|
|
1598
|
-
colorTertiaryFocus: string;
|
|
1599
|
-
colorTertiaryDisalbed: string;
|
|
1600
|
-
waveColorTertiary: string;
|
|
1601
|
-
textColorTextTertiary: string;
|
|
1602
|
-
rippleColorTertiary: string;
|
|
1603
|
-
colorQuaternary: string;
|
|
1604
|
-
colorQuaternaryHover: string;
|
|
1605
|
-
colorQuaternaryPressed: string;
|
|
1606
|
-
colorQuaternaryFocus: string;
|
|
1607
|
-
rippleColorQuaternary: string;
|
|
1608
|
-
waveColorQuaternary: string;
|
|
1609
|
-
color: string;
|
|
1610
|
-
colorHover: string;
|
|
1611
|
-
colorPressed: string;
|
|
1612
|
-
colorFocus: string;
|
|
1613
|
-
colorDisabled: string;
|
|
1614
|
-
textColor: string;
|
|
1615
|
-
textTertiary: string;
|
|
1616
|
-
textColorTertiary: string;
|
|
1617
|
-
textColorHover: string;
|
|
1618
|
-
textColorPressed: string;
|
|
1619
|
-
textColorFocus: string;
|
|
1620
|
-
textColorDisabled: string;
|
|
1621
|
-
textColorText: string;
|
|
1622
|
-
textColorTextHover: string;
|
|
1623
|
-
textColorTextPressed: string;
|
|
1624
|
-
textColorTextFocus: string;
|
|
1625
|
-
textColorTextDisabled: string;
|
|
1626
|
-
textColorGhost: string;
|
|
1627
|
-
textColorGhostHover: string;
|
|
1628
|
-
textColorGhostPressed: string;
|
|
1629
|
-
textColorGhostFocus: string;
|
|
1630
|
-
textColorGhostDisabled: string;
|
|
1631
|
-
border: string;
|
|
1632
|
-
borderHover: string;
|
|
1633
|
-
borderPressed: string;
|
|
1634
|
-
borderFocus: string;
|
|
1635
|
-
borderDisabled: string;
|
|
1636
|
-
rippleColor: string;
|
|
1637
|
-
colorPrimary: string;
|
|
1638
|
-
colorHoverPrimary: string;
|
|
1639
|
-
colorPressedPrimary: string;
|
|
1640
|
-
colorFocusPrimary: string;
|
|
1641
|
-
colorDisabledPrimary: string;
|
|
1642
|
-
waveColorPrimary: string;
|
|
1643
|
-
textColorPrimary: string;
|
|
1644
|
-
textColorHoverPrimary: string;
|
|
1645
|
-
textColorPressedPrimary: string;
|
|
1646
|
-
textColorFocusPrimary: string;
|
|
1647
|
-
textColorDisabledPrimary: string;
|
|
1648
|
-
textColorTextPrimary: string;
|
|
1649
|
-
textColorTextHoverPrimary: string;
|
|
1650
|
-
textColorTextPressedPrimary: string;
|
|
1651
|
-
textColorTextFocusPrimary: string;
|
|
1652
|
-
textColorTextDisabledPrimary: string;
|
|
1653
|
-
textColorGhostPrimary: string;
|
|
1654
|
-
textColorGhostHoverPrimary: string;
|
|
1655
|
-
textColorGhostPressedPrimary: string;
|
|
1656
|
-
textColorGhostFocusPrimary: string;
|
|
1657
|
-
textColorGhostDisabledPrimary: string;
|
|
1658
|
-
borderPrimary: string;
|
|
1659
|
-
borderHoverPrimary: string;
|
|
1660
|
-
borderPressedPrimary: string;
|
|
1661
|
-
borderFocusPrimary: string;
|
|
1662
|
-
borderDisabledPrimary: string;
|
|
1663
|
-
rippleColorPrimary: string;
|
|
1664
|
-
colorInfo: string;
|
|
1665
|
-
colorHoverInfo: string;
|
|
1666
|
-
colorPressedInfo: string;
|
|
1667
|
-
colorFocusInfo: string;
|
|
1668
|
-
colorDisabledInfo: string;
|
|
1669
|
-
textColorInfo: string;
|
|
1670
|
-
textColorHoverInfo: string;
|
|
1671
|
-
textColorPressedInfo: string;
|
|
1672
|
-
textColorFocusInfo: string;
|
|
1673
|
-
textColorDisabledInfo: string;
|
|
1674
|
-
textColorTextInfo: string;
|
|
1675
|
-
textColorTextHoverInfo: string;
|
|
1676
|
-
textColorTextPressedInfo: string;
|
|
1677
|
-
textColorTextFocusInfo: string;
|
|
1678
|
-
textColorTextDisabledInfo: string;
|
|
1679
|
-
textColorGhostInfo: string;
|
|
1680
|
-
textColorGhostHoverInfo: string;
|
|
1681
|
-
textColorGhostPressedInfo: string;
|
|
1682
|
-
textColorGhostFocusInfo: string;
|
|
1683
|
-
textColorGhostDisabledInfo: string;
|
|
1684
|
-
borderInfo: string;
|
|
1685
|
-
borderHoverInfo: string;
|
|
1686
|
-
borderPressedInfo: string;
|
|
1687
|
-
borderFocusInfo: string;
|
|
1688
|
-
borderDisabledInfo: string;
|
|
1689
|
-
rippleColorInfo: string;
|
|
1690
|
-
colorSuccess: string;
|
|
1691
|
-
colorHoverSuccess: string;
|
|
1692
|
-
colorPressedSuccess: string;
|
|
1693
|
-
colorFocusSuccess: string;
|
|
1694
|
-
colorDisabledSuccess: string;
|
|
1695
|
-
textColorSuccess: string;
|
|
1696
|
-
textColorHoverSuccess: string;
|
|
1697
|
-
textColorPressedSuccess: string;
|
|
1698
|
-
textColorFocusSuccess: string;
|
|
1699
|
-
textColorDisabledSuccess: string;
|
|
1700
|
-
textColorTextSuccess: string;
|
|
1701
|
-
textColorTextHoverSuccess: string;
|
|
1702
|
-
textColorTextPressedSuccess: string;
|
|
1703
|
-
textColorTextFocusSuccess: string;
|
|
1704
|
-
textColorTextDisabledSuccess: string;
|
|
1705
|
-
textColorGhostSuccess: string;
|
|
1706
|
-
textColorGhostHoverSuccess: string;
|
|
1707
|
-
textColorGhostPressedSuccess: string;
|
|
1708
|
-
textColorGhostFocusSuccess: string;
|
|
1709
|
-
textColorGhostDisabledSuccess: string;
|
|
1710
|
-
borderSuccess: string;
|
|
1711
|
-
borderHoverSuccess: string;
|
|
1712
|
-
borderPressedSuccess: string;
|
|
1713
|
-
borderFocusSuccess: string;
|
|
1714
|
-
borderDisabledSuccess: string;
|
|
1715
|
-
rippleColorSuccess: string;
|
|
1716
|
-
colorWarning: string;
|
|
1717
|
-
colorHoverWarning: string;
|
|
1718
|
-
colorPressedWarning: string;
|
|
1719
|
-
colorFocusWarning: string;
|
|
1720
|
-
colorDisabledWarning: string;
|
|
1721
|
-
textColorWarning: string;
|
|
1722
|
-
textColorHoverWarning: string;
|
|
1723
|
-
textColorPressedWarning: string;
|
|
1724
|
-
textColorFocusWarning: string;
|
|
1725
|
-
textColorDisabledWarning: string;
|
|
1726
|
-
textColorTextWarning: string;
|
|
1727
|
-
textColorTextHoverWarning: string;
|
|
1728
|
-
textColorTextPressedWarning: string;
|
|
1729
|
-
textColorTextFocusWarning: string;
|
|
1730
|
-
textColorTextDisabledWarning: string;
|
|
1731
|
-
textColorGhostWarning: string;
|
|
1732
|
-
textColorGhostHoverWarning: string;
|
|
1733
|
-
textColorGhostPressedWarning: string;
|
|
1734
|
-
textColorGhostFocusWarning: string;
|
|
1735
|
-
textColorGhostDisabledWarning: string;
|
|
1736
|
-
borderWarning: string;
|
|
1737
|
-
borderHoverWarning: string;
|
|
1738
|
-
borderPressedWarning: string;
|
|
1739
|
-
borderFocusWarning: string;
|
|
1740
|
-
borderDisabledWarning: string;
|
|
1741
|
-
rippleColorWarning: string;
|
|
1742
|
-
colorError: string;
|
|
1743
|
-
colorHoverError: string;
|
|
1744
|
-
colorPressedError: string;
|
|
1745
|
-
colorFocusError: string;
|
|
1746
|
-
colorDisabledError: string;
|
|
1747
|
-
textColorError: string;
|
|
1748
|
-
textColorHoverError: string;
|
|
1749
|
-
textColorPressedError: string;
|
|
1750
|
-
textColorFocusError: string;
|
|
1751
|
-
textColorDisabledError: string;
|
|
1752
|
-
textColorTextError: string;
|
|
1753
|
-
textColorTextHoverError: string;
|
|
1754
|
-
textColorTextPressedError: string;
|
|
1755
|
-
textColorTextFocusError: string;
|
|
1756
|
-
textColorTextDisabledError: string;
|
|
1757
|
-
textColorGhostError: string;
|
|
1758
|
-
textColorGhostHoverError: string;
|
|
1759
|
-
textColorGhostPressedError: string;
|
|
1760
|
-
textColorGhostFocusError: string;
|
|
1761
|
-
textColorGhostDisabledError: string;
|
|
1762
|
-
borderError: string;
|
|
1763
|
-
borderHoverError: string;
|
|
1764
|
-
borderPressedError: string;
|
|
1765
|
-
borderFocusError: string;
|
|
1766
|
-
borderDisabledError: string;
|
|
1767
|
-
rippleColorError: string;
|
|
1768
|
-
waveOpacity: string;
|
|
1769
|
-
fontWeight: string;
|
|
1770
|
-
fontWeightStrong: string;
|
|
1771
|
-
paddingTiny: string;
|
|
1772
|
-
paddingSmall: string;
|
|
1773
|
-
paddingMedium: string;
|
|
1774
|
-
paddingLarge: string;
|
|
1775
|
-
paddingRoundTiny: string;
|
|
1776
|
-
paddingRoundSmall: string;
|
|
1777
|
-
paddingRoundMedium: string;
|
|
1778
|
-
paddingRoundLarge: string;
|
|
1779
|
-
iconMarginTiny: string;
|
|
1780
|
-
iconMarginSmall: string;
|
|
1781
|
-
iconMarginMedium: string;
|
|
1782
|
-
iconMarginLarge: string;
|
|
1783
|
-
iconSizeTiny: string;
|
|
1784
|
-
iconSizeSmall: string;
|
|
1785
|
-
iconSizeMedium: string;
|
|
1786
|
-
iconSizeLarge: string;
|
|
1787
|
-
rippleDuration: string;
|
|
1788
|
-
}, any>;
|
|
1789
|
-
List: import("../../_mixins").Theme<"List", {
|
|
1790
|
-
iconSize: string;
|
|
1791
|
-
iconSpace: string;
|
|
1792
|
-
suffixSpace: string;
|
|
1793
|
-
prefixSpace: string;
|
|
1794
|
-
subtitleColor: string;
|
|
1795
|
-
avatarSpace: string;
|
|
1796
|
-
colorFocus: string;
|
|
1797
|
-
pressedScale: string;
|
|
1798
|
-
textColorDisabled: string;
|
|
1799
|
-
textColor: string;
|
|
1800
|
-
color: string;
|
|
1801
|
-
colorHover: string;
|
|
1802
|
-
colorModal: string;
|
|
1803
|
-
colorHoverModal: string;
|
|
1804
|
-
colorPopover: string;
|
|
1805
|
-
colorHoverPopover: string;
|
|
1806
|
-
borderColor: string;
|
|
1807
|
-
borderColorModal: string;
|
|
1808
|
-
borderColorPopover: string;
|
|
1809
|
-
borderRadiusLarge: string;
|
|
1810
|
-
borderRadiusMedium: string;
|
|
1811
|
-
borderRadiusSmall: string;
|
|
1812
|
-
padding: string;
|
|
1813
|
-
suffixSize: string;
|
|
1814
|
-
}, any>;
|
|
1815
|
-
Typography: import("../../_mixins").Theme<"Typography", {
|
|
1816
|
-
headerFontSize1: string;
|
|
1817
|
-
headerFontSize2: string;
|
|
1818
|
-
headerFontSize3: string;
|
|
1819
|
-
headerFontSize4: string;
|
|
1820
|
-
headerFontSize5: string;
|
|
1821
|
-
headerFontSize6: string;
|
|
1822
|
-
headerMargin1: string;
|
|
1823
|
-
headerMargin2: string;
|
|
1824
|
-
headerMargin3: string;
|
|
1825
|
-
headerMargin4: string;
|
|
1826
|
-
headerMargin5: string;
|
|
1827
|
-
headerMargin6: string;
|
|
1828
|
-
headerPrefixWidth1: string;
|
|
1829
|
-
headerPrefixWidth2: string;
|
|
1830
|
-
headerPrefixWidth3: string;
|
|
1831
|
-
headerPrefixWidth4: string;
|
|
1832
|
-
headerPrefixWidth5: string;
|
|
1833
|
-
headerPrefixWidth6: string;
|
|
1834
|
-
headerBarWidth1: string;
|
|
1835
|
-
headerBarWidth2: string;
|
|
1836
|
-
headerBarWidth3: string;
|
|
1837
|
-
headerBarWidth4: string;
|
|
1838
|
-
headerBarWidth5: string;
|
|
1839
|
-
headerBarWidth6: string;
|
|
1840
|
-
pMargin: string;
|
|
1841
|
-
margin: string;
|
|
1842
|
-
liMargin: string;
|
|
1843
|
-
olPadding: string;
|
|
1844
|
-
ulPadding: string;
|
|
1845
|
-
aTextColor: string;
|
|
1846
|
-
blockquoteTextColor: string;
|
|
1847
|
-
blockquotePrefixColor: string;
|
|
1848
|
-
blockquoteLineHeight: string;
|
|
1849
|
-
blockquoteFontSize: string;
|
|
1850
|
-
codeBorderRadius: string;
|
|
1851
|
-
liTextColor: string;
|
|
1852
|
-
liLineHeight: string;
|
|
1853
|
-
liFontSize: string;
|
|
1854
|
-
hrColor: string;
|
|
1855
|
-
headerFontWeight: string;
|
|
1856
|
-
headerTextColor: string;
|
|
1857
|
-
pTextColor: string;
|
|
1858
|
-
pTextColor1Depth: string;
|
|
1859
|
-
pTextColor2Depth: string;
|
|
1860
|
-
pTextColor3Depth: string;
|
|
1861
|
-
pLineHeight: string;
|
|
1862
|
-
pFontSize: string;
|
|
1863
|
-
fontSize: string;
|
|
1864
|
-
lineHeight: string;
|
|
1865
|
-
headerBarColor: string;
|
|
1866
|
-
headerBarColorPrimary: string;
|
|
1867
|
-
headerBarColorInfo: string;
|
|
1868
|
-
headerBarColorError: string;
|
|
1869
|
-
headerBarColorWarning: string;
|
|
1870
|
-
headerBarColorSuccess: string;
|
|
1871
|
-
textColor: string;
|
|
1872
|
-
textColor1Depth: string;
|
|
1873
|
-
textColor2Depth: string;
|
|
1874
|
-
textColor3Depth: string;
|
|
1875
|
-
textColorPrimary: string;
|
|
1876
|
-
textColorInfo: string;
|
|
1877
|
-
textColorSuccess: string;
|
|
1878
|
-
textColorWarning: string;
|
|
1879
|
-
textColorError: string;
|
|
1880
|
-
codeTextColor: string;
|
|
1881
|
-
codeColor: string;
|
|
1882
|
-
codeBorder: string;
|
|
1883
|
-
}, any>;
|
|
1884
|
-
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
1885
|
-
messageBubbleBackgroundColorOwn: string;
|
|
1886
|
-
messageBubbleBackgroundColorOther: string;
|
|
1887
|
-
messageBubbleTextColorOwn: string;
|
|
1888
|
-
messageBubbleTextColorOther: string;
|
|
1889
|
-
messageTimeColor: string;
|
|
1890
|
-
messageStatusReadColor: string;
|
|
1891
|
-
messageStatusSuccessColor: string;
|
|
1892
|
-
attachmentBackgroundColorOwn: string;
|
|
1893
|
-
attachmentBackgroundColorOther: string;
|
|
1894
|
-
messageErrorColor: string;
|
|
1895
|
-
messageBorderRadius: string;
|
|
1896
|
-
unreadNotificationBackgroundColor: string;
|
|
1897
|
-
unreadNotificationTextColor: string;
|
|
1898
|
-
serviceMessageTextColor: string;
|
|
1899
|
-
serviceMessageBackgroundColor: string;
|
|
1900
|
-
messageTitleColor: string;
|
|
1901
|
-
}, {
|
|
1902
|
-
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
1903
|
-
color: string;
|
|
1904
|
-
opacity1Depth: string;
|
|
1905
|
-
opacity2Depth: string;
|
|
1906
|
-
opacity3Depth: string;
|
|
1907
|
-
opacity4Depth: string;
|
|
1908
|
-
opacity5Depth: string;
|
|
1909
|
-
}, any>;
|
|
1910
|
-
}>;
|
|
1911
|
-
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
1912
|
-
color: string;
|
|
1913
|
-
opacity1Depth: string;
|
|
1914
|
-
opacity2Depth: string;
|
|
1915
|
-
opacity3Depth: string;
|
|
1916
|
-
opacity4Depth: string;
|
|
1917
|
-
opacity5Depth: string;
|
|
1918
|
-
}, any>;
|
|
1919
|
-
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
1920
|
-
color: string;
|
|
1921
|
-
opacity1Depth: string;
|
|
1922
|
-
opacity2Depth: string;
|
|
1923
|
-
opacity3Depth: string;
|
|
1924
|
-
opacity4Depth: string;
|
|
1925
|
-
opacity5Depth: string;
|
|
1926
|
-
}, any>;
|
|
1927
|
-
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
1928
|
-
color: string;
|
|
1929
|
-
opacity1Depth: string;
|
|
1930
|
-
opacity2Depth: string;
|
|
1931
|
-
opacity3Depth: string;
|
|
1932
|
-
opacity4Depth: string;
|
|
1933
|
-
opacity5Depth: string;
|
|
1934
|
-
}, any>;
|
|
1935
|
-
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
1936
|
-
color: string;
|
|
1937
|
-
opacity1Depth: string;
|
|
1938
|
-
opacity2Depth: string;
|
|
1939
|
-
opacity3Depth: string;
|
|
1940
|
-
opacity4Depth: string;
|
|
1941
|
-
opacity5Depth: string;
|
|
1942
|
-
}, any>;
|
|
1943
|
-
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
1944
|
-
color: string;
|
|
1945
|
-
opacity1Depth: string;
|
|
1946
|
-
opacity2Depth: string;
|
|
1947
|
-
opacity3Depth: string;
|
|
1948
|
-
opacity4Depth: string;
|
|
1949
|
-
opacity5Depth: string;
|
|
1950
|
-
}, any>;
|
|
1951
|
-
}>>>;
|
|
1952
|
-
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
1953
|
-
backgroundColor: string;
|
|
1954
|
-
borderColor: string;
|
|
1955
|
-
sidebarBackgroundColor: string;
|
|
1956
|
-
sidebarBorderColor: string;
|
|
1957
|
-
sidebarItemBackgroundColor: string;
|
|
1958
|
-
sidebarItemBackgroundColorHover: string;
|
|
1959
|
-
sidebarItemBackgroundColorSelected: string;
|
|
1960
|
-
sidebarItemTextColor: string;
|
|
1961
|
-
sidebarItemTextColorSelected: string;
|
|
1962
|
-
sidebarItemSubtitleColor: string;
|
|
1963
|
-
sidebarItemTimeColor: string;
|
|
1964
|
-
mainBackgroundColor: string;
|
|
1965
|
-
headerBackgroundColor: string;
|
|
1966
|
-
headerBorderColor: string;
|
|
1967
|
-
headerTitleColor: string;
|
|
1968
|
-
messageBubbleBackgroundColorOwn: string;
|
|
1969
|
-
messageBubbleBackgroundColorOther: string;
|
|
1970
|
-
messageBubbleTextColorOwn: string;
|
|
1971
|
-
messageBubbleTextColorOther: string;
|
|
1972
|
-
messageTimeColor: string;
|
|
1973
|
-
messageStatusColor: string;
|
|
1974
|
-
attachmentBackgroundColorOwn: string;
|
|
1975
|
-
attachmentBackgroundColorOther: string;
|
|
1976
|
-
footerBackgroundColor: string;
|
|
1977
|
-
footerBorderColor: string;
|
|
1978
|
-
inputBackgroundColor: string;
|
|
1979
|
-
inputBorderColor: string;
|
|
1980
|
-
inputSuffixColor: string;
|
|
1981
|
-
unreadNotificationBackgroundColor: string;
|
|
1982
|
-
unreadNotificationTextColor: string;
|
|
1983
|
-
typingIndicatorColor: string;
|
|
1984
|
-
dateSeparatorColor: string;
|
|
1985
|
-
dateSeparatorBackgroundColor: string;
|
|
1986
|
-
borderRadius: string;
|
|
1987
|
-
errorColor: string;
|
|
1988
|
-
}, {
|
|
1989
|
-
Input: import("../../_mixins").Theme<"Input", {
|
|
1990
|
-
paddingTiny: string;
|
|
1991
|
-
paddingSmall: string;
|
|
1992
|
-
paddingMedium: string;
|
|
1993
|
-
paddingLarge: string;
|
|
1994
|
-
paddingHuge: string;
|
|
1995
|
-
clearSize: string;
|
|
1996
|
-
countTextColorDisabled: string;
|
|
1997
|
-
countTextColor: string;
|
|
1998
|
-
heightTiny: string;
|
|
1999
|
-
heightSmall: string;
|
|
2000
|
-
heightMedium: string;
|
|
2001
|
-
heightLarge: string;
|
|
2002
|
-
heightHuge: string;
|
|
2003
|
-
fontSizeTiny: string;
|
|
2004
|
-
fontSizeSmall: string;
|
|
2005
|
-
fontSizeMedium: string;
|
|
2006
|
-
fontSizeLarge: string;
|
|
2007
|
-
fontSizeHuge: string;
|
|
2008
|
-
lineHeight: string;
|
|
2009
|
-
lineHeightTextarea: string;
|
|
2010
|
-
borderRadius: string;
|
|
2011
|
-
iconSize: string;
|
|
2012
|
-
groupLabelTextColor: string;
|
|
2013
|
-
textColor: string;
|
|
2014
|
-
textColorDisabled: string;
|
|
2015
|
-
textDecorationColor: string;
|
|
2016
|
-
caretColor: string;
|
|
2017
|
-
placeholderColor: string;
|
|
2018
|
-
placeholderColorDisabled: string;
|
|
2019
|
-
color: string;
|
|
2020
|
-
colorDisabled: string;
|
|
2021
|
-
colorFocus: string;
|
|
2022
|
-
groupLabelBorder: string;
|
|
2023
|
-
border: string;
|
|
2024
|
-
borderHover: string;
|
|
2025
|
-
borderDisabled: string;
|
|
2026
|
-
borderFocus: string;
|
|
2027
|
-
boxShadowFocus: string;
|
|
2028
|
-
loadingColor: string;
|
|
2029
|
-
loadingColorSuccess: string;
|
|
2030
|
-
borderSuccess: string;
|
|
2031
|
-
borderHoverSuccess: string;
|
|
2032
|
-
colorFocusSuccess: string;
|
|
2033
|
-
borderFocusSuccess: string;
|
|
2034
|
-
boxShadowFocusSuccess: string;
|
|
2035
|
-
caretColorSuccess: string;
|
|
2036
|
-
loadingColorWarning: string;
|
|
2037
|
-
borderWarning: string;
|
|
2038
|
-
borderHoverWarning: string;
|
|
2039
|
-
colorFocusWarning: string;
|
|
2040
|
-
borderFocusWarning: string;
|
|
2041
|
-
boxShadowFocusWarning: string;
|
|
2042
|
-
caretColorWarning: string;
|
|
2043
|
-
loadingColorError: string;
|
|
2044
|
-
borderError: string;
|
|
2045
|
-
borderHoverError: string;
|
|
2046
|
-
colorFocusError: string;
|
|
2047
|
-
borderFocusError: string;
|
|
2048
|
-
boxShadowFocusError: string;
|
|
2049
|
-
caretColorError: string;
|
|
2050
|
-
clearColor: string;
|
|
2051
|
-
clearColorHover: string;
|
|
2052
|
-
clearColorPressed: string;
|
|
2053
|
-
iconColor: string;
|
|
2054
|
-
iconColorDisabled: string;
|
|
2055
|
-
iconColorHover: string;
|
|
2056
|
-
iconColorPressed: string;
|
|
2057
|
-
suffixTextColor: string;
|
|
2058
|
-
selectionColor: string;
|
|
2059
|
-
}, any>;
|
|
2060
|
-
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2061
|
-
iconSizeSmall: string;
|
|
2062
|
-
iconSizeMedium: string;
|
|
2063
|
-
iconSizeLarge: string;
|
|
2064
|
-
iconSizeHuge: string;
|
|
2065
|
-
titleFontSizeSmall: string;
|
|
2066
|
-
titleFontSizeMedium: string;
|
|
2067
|
-
titleFontSizeLarge: string;
|
|
2068
|
-
titleFontSizeHuge: string;
|
|
2069
|
-
descriptionFontSizeSmall: string;
|
|
2070
|
-
descriptionFontSizeMedium: string;
|
|
2071
|
-
descriptionFontSizeLarge: string;
|
|
2072
|
-
descriptionFontSizeHuge: string;
|
|
2073
|
-
titleColor: string;
|
|
2074
|
-
descriptionColor: string;
|
|
2075
|
-
iconColor: string;
|
|
2076
|
-
iconBgColor: string;
|
|
2077
|
-
extraTextColor: string;
|
|
2078
|
-
}, any>;
|
|
2079
|
-
Select: import("../../_mixins").Theme<"Select", {
|
|
2080
|
-
menuBoxShadow: string;
|
|
2081
|
-
}, {
|
|
2082
|
-
InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
|
|
2083
|
-
paddingTiny: string;
|
|
2084
|
-
paddingSmall: string;
|
|
2085
|
-
paddingMedium: string;
|
|
2086
|
-
paddingLarge: string;
|
|
2087
|
-
paddingHuge: string;
|
|
2088
|
-
clearSizeTiny: string;
|
|
2089
|
-
clearSizeSmall: string;
|
|
2090
|
-
clearSizeMedium: string;
|
|
2091
|
-
clearSizeLarge: string;
|
|
2092
|
-
clearSizeHuge: string;
|
|
2093
|
-
arrowSizeTiny: string;
|
|
2094
|
-
arrowSizeSmall: string;
|
|
2095
|
-
arrowSizeMedium: string;
|
|
2096
|
-
arrowSizeLarge: string;
|
|
2097
|
-
arrowSizeHuge: string;
|
|
2098
|
-
fontSizeTiny: string;
|
|
2099
|
-
fontSizeSmall: string;
|
|
2100
|
-
fontSizeMedium: string;
|
|
2101
|
-
fontSizeLarge: string;
|
|
2102
|
-
fontSizeHuge: string;
|
|
2103
|
-
lineHeightTiny: string;
|
|
2104
|
-
lineHeightSmall: string;
|
|
2105
|
-
lineHeightMedium: string;
|
|
2106
|
-
lineHeightLarge: string;
|
|
2107
|
-
lineHeightHuge: string;
|
|
2108
|
-
heightTiny: string;
|
|
2109
|
-
heightSmall: string;
|
|
2110
|
-
heightMedium: string;
|
|
2111
|
-
heightLarge: string;
|
|
2112
|
-
heightHuge: string;
|
|
2113
|
-
borderRadiusTiny: string;
|
|
2114
|
-
borderRadiusSmall: string;
|
|
2115
|
-
borderRadiusMedium: string;
|
|
2116
|
-
borderRadiusLarge: string;
|
|
2117
|
-
borderRadiusHuge: string;
|
|
2118
|
-
textColor: string;
|
|
2119
|
-
textColorDisabled: string;
|
|
2120
|
-
placeholderColor: string;
|
|
2121
|
-
placeholderColorDisabled: string;
|
|
2122
|
-
color: string;
|
|
2123
|
-
colorFilled: string;
|
|
2124
|
-
colorDisabled: string;
|
|
2125
|
-
colorActive: string;
|
|
2126
|
-
border: string;
|
|
2127
|
-
borderFilled: string;
|
|
2128
|
-
borderHover: string;
|
|
2129
|
-
borderActive: string;
|
|
2130
|
-
borderFocus: string;
|
|
2131
|
-
borderDisabled: string;
|
|
2132
|
-
boxShadowHover: string;
|
|
2133
|
-
boxShadowActive: string;
|
|
2134
|
-
boxShadowFocus: string;
|
|
2135
|
-
caretColor: string;
|
|
2136
|
-
arrowColor: string;
|
|
2137
|
-
arrowColorHover: string;
|
|
2138
|
-
arrowColorDisabled: string;
|
|
2139
|
-
loadingColor: string;
|
|
2140
|
-
borderWarning: string;
|
|
2141
|
-
borderHoverWarning: string;
|
|
2142
|
-
borderActiveWarning: string;
|
|
2143
|
-
borderFocusWarning: string;
|
|
2144
|
-
boxShadowHoverWarning: string;
|
|
2145
|
-
boxShadowActiveWarning: string;
|
|
2146
|
-
boxShadowFocusWarning: string;
|
|
2147
|
-
colorActiveWarning: string;
|
|
2148
|
-
caretColorWarning: string;
|
|
2149
|
-
borderError: string;
|
|
2150
|
-
borderHoverError: string;
|
|
2151
|
-
borderActiveError: string;
|
|
2152
|
-
borderFocusError: string;
|
|
2153
|
-
boxShadowHoverError: string;
|
|
2154
|
-
boxShadowActiveError: string;
|
|
2155
|
-
boxShadowFocusError: string;
|
|
2156
|
-
colorActiveError: string;
|
|
2157
|
-
caretColorError: string;
|
|
2158
|
-
clearColor: string;
|
|
2159
|
-
clearColorHover: string;
|
|
2160
|
-
clearColorPressed: string;
|
|
2161
|
-
caretColorSecondary: string;
|
|
2162
|
-
filterCounterTextColor: string;
|
|
2163
|
-
filterCounterTextColorDisabled: string;
|
|
2164
|
-
arrowColorSecondary: string;
|
|
2165
|
-
clearColorSecondary: string;
|
|
2166
|
-
colorSecondary: string;
|
|
2167
|
-
textColorSecondary: string;
|
|
2168
|
-
borderSecondary: string;
|
|
2169
|
-
arrowColorDisabledSecondary: string;
|
|
2170
|
-
clearColorDisabledSecondary: string;
|
|
2171
|
-
colorDisabledSecondary: string;
|
|
2172
|
-
textColorDisabledSecondary: string;
|
|
2173
|
-
borderDisabledSecondary: string;
|
|
2174
|
-
arrowColorHoverSecondary: string;
|
|
2175
|
-
clearColorHoverSecondary: string;
|
|
2176
|
-
colorHoverSecondary: string;
|
|
2177
|
-
textColorHoverSecondary: string;
|
|
2178
|
-
borderHoverSecondary: string;
|
|
2179
|
-
arrowColorFocusSecondary: string;
|
|
2180
|
-
clearColorFocusSecondary: string;
|
|
2181
|
-
colorFocusSecondary: string;
|
|
2182
|
-
textColorFocusSecondary: string;
|
|
2183
|
-
borderFocusSecondary: string;
|
|
2184
|
-
arrowColorActiveSecondary: string;
|
|
2185
|
-
clearColorActiveSecondary: string;
|
|
2186
|
-
colorActiveSecondary: string;
|
|
2187
|
-
textColorActiveSecondary: string;
|
|
2188
|
-
borderActiveSecondary: string;
|
|
2189
|
-
}, {
|
|
2190
|
-
Popover: import("../../_mixins").Theme<"Popover", {
|
|
2191
|
-
space: string;
|
|
2192
|
-
spaceArrow: string;
|
|
2193
|
-
arrowOffset: string;
|
|
2194
|
-
arrowOffsetVertical: string;
|
|
2195
|
-
arrowHeight: string;
|
|
2196
|
-
padding: string;
|
|
2197
|
-
fontSize: string;
|
|
2198
|
-
borderRadius: string;
|
|
2199
|
-
color: string;
|
|
2200
|
-
dividerColor: string;
|
|
2201
|
-
textColor: string;
|
|
2202
|
-
boxShadow: string;
|
|
2203
|
-
}, any>;
|
|
2204
|
-
}>;
|
|
2205
|
-
InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
|
|
2206
|
-
height: string;
|
|
2207
|
-
paddingSmall: string;
|
|
2208
|
-
paddingMedium: string;
|
|
2209
|
-
paddingLarge: string;
|
|
2210
|
-
optionPaddingSmall: string;
|
|
2211
|
-
optionPaddingMedium: string;
|
|
2212
|
-
optionPaddingLarge: string;
|
|
2213
|
-
loadingSize: string;
|
|
2214
|
-
optionFontSizeSmall: string;
|
|
2215
|
-
optionFontSizeMedium: string;
|
|
2216
|
-
optionFontSizeLarge: string;
|
|
2217
|
-
optionHeightSmall: string;
|
|
2218
|
-
optionHeightMedium: string;
|
|
2219
|
-
optionHeightLarge: string;
|
|
2220
|
-
optionBorderRadius: string;
|
|
2221
|
-
borderRadius: string;
|
|
2222
|
-
color: string;
|
|
2223
|
-
groupHeaderTextColor: string;
|
|
2224
|
-
actionDividerColor: string;
|
|
2225
|
-
optionTextColor: string;
|
|
2226
|
-
optionTextColorPressed: string;
|
|
2227
|
-
optionTextColorDisabled: string;
|
|
2228
|
-
optionTextColorActive: string;
|
|
2229
|
-
optionOpacityDisabled: string;
|
|
2230
|
-
optionCheckColor: string;
|
|
2231
|
-
optionColorPending: string;
|
|
2232
|
-
optionColorActive: string;
|
|
2233
|
-
optionGroupHeaderBorderColor: string;
|
|
2234
|
-
optionColorActivePending: string;
|
|
2235
|
-
actionTextColor: string;
|
|
2236
|
-
loadingColor: string;
|
|
2237
|
-
}, {
|
|
2238
|
-
Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
|
|
2239
|
-
height: string;
|
|
2240
|
-
width: string;
|
|
2241
|
-
borderRadius: string;
|
|
2242
|
-
color: string;
|
|
2243
|
-
colorHover: string;
|
|
2244
|
-
railInsetHorizontalBottom: string;
|
|
2245
|
-
railInsetHorizontalTop: string;
|
|
2246
|
-
railInsetVerticalRight: string;
|
|
2247
|
-
railInsetVerticalLeft: string;
|
|
2248
|
-
railColor: string;
|
|
2249
|
-
}, any>;
|
|
2250
|
-
Empty: import("../../_mixins").Theme<"Empty", {
|
|
2251
|
-
iconSizeSmall: string;
|
|
2252
|
-
iconSizeMedium: string;
|
|
2253
|
-
iconSizeLarge: string;
|
|
2254
|
-
iconSizeHuge: string;
|
|
2255
|
-
titleFontSizeSmall: string;
|
|
2256
|
-
titleFontSizeMedium: string;
|
|
2257
|
-
titleFontSizeLarge: string;
|
|
2258
|
-
titleFontSizeHuge: string;
|
|
2259
|
-
descriptionFontSizeSmall: string;
|
|
2260
|
-
descriptionFontSizeMedium: string;
|
|
2261
|
-
descriptionFontSizeLarge: string;
|
|
2262
|
-
descriptionFontSizeHuge: string;
|
|
2263
|
-
titleColor: string;
|
|
2264
|
-
descriptionColor: string;
|
|
2265
|
-
iconColor: string;
|
|
2266
|
-
iconBgColor: string;
|
|
2267
|
-
extraTextColor: string;
|
|
2268
|
-
}, any>;
|
|
2269
|
-
Checkbox: import("../../_mixins").Theme<"Checkbox", {
|
|
2270
|
-
fontWeight: string;
|
|
2271
|
-
textColor: string;
|
|
2272
|
-
descriptionTextColor: string;
|
|
2273
|
-
textColorDisabled: string;
|
|
2274
|
-
descriptionTextColorDisabled: string;
|
|
2275
|
-
fontSizeLarge: string;
|
|
2276
|
-
fontSizeMedium: string;
|
|
2277
|
-
fontSizeSmall: string;
|
|
2278
|
-
lineHeightLarge: string;
|
|
2279
|
-
lineHeightMedium: string;
|
|
2280
|
-
lineHeightSmall: string;
|
|
2281
|
-
borderRadiusLarge: string;
|
|
2282
|
-
borderRadiusMedium: string;
|
|
2283
|
-
borderRadiusSmall: string;
|
|
2284
|
-
color: string;
|
|
2285
|
-
colorHover: string;
|
|
2286
|
-
colorFocus: string;
|
|
2287
|
-
colorActive: string;
|
|
2288
|
-
colorChecked: string;
|
|
2289
|
-
colorHoverChecked: string;
|
|
2290
|
-
colorFocusChecked: string;
|
|
2291
|
-
colorActiveChecked: string;
|
|
2292
|
-
colorDisabled: string;
|
|
2293
|
-
colorDisabledChecked: string;
|
|
2294
|
-
checkMarkColor: string;
|
|
2295
|
-
checkMarkColorHover: string;
|
|
2296
|
-
checkMarkColorFocus: string;
|
|
2297
|
-
checkMarkColorActive: string;
|
|
2298
|
-
checkMarkColorDisabled: string;
|
|
2299
|
-
checkMarkColorDisabledChecked: string;
|
|
2300
|
-
border: string;
|
|
2301
|
-
borderHover: string;
|
|
2302
|
-
borderFocus: string;
|
|
2303
|
-
borderActive: string;
|
|
2304
|
-
borderChecked: string;
|
|
2305
|
-
borderHoverChecked: string;
|
|
2306
|
-
borderFocusChecked: string;
|
|
2307
|
-
borderActiveChecked: string;
|
|
2308
|
-
borderDisabled: string;
|
|
2309
|
-
borderDisabledChecked: string;
|
|
2310
|
-
boxShadowHover: string;
|
|
2311
|
-
boxShadowFocus: string;
|
|
2312
|
-
boxShadowActive: string;
|
|
2313
|
-
boxShadowHoverChecked: string;
|
|
2314
|
-
boxShadowFocusChecked: string;
|
|
2315
|
-
boxShadowActiveChecked: string;
|
|
2316
|
-
sizeSmall: string;
|
|
2317
|
-
sizeMedium: string;
|
|
2318
|
-
sizeLarge: string;
|
|
2319
|
-
labelPadding: string;
|
|
2320
|
-
}, any>;
|
|
2321
|
-
Input: import("../../_mixins").Theme<"Input", {
|
|
2322
|
-
paddingTiny: string;
|
|
2323
|
-
paddingSmall: string;
|
|
2324
|
-
paddingMedium: string;
|
|
2325
|
-
paddingLarge: string;
|
|
2326
|
-
paddingHuge: string;
|
|
2327
|
-
clearSize: string;
|
|
2328
|
-
countTextColorDisabled: string;
|
|
2329
|
-
countTextColor: string;
|
|
2330
|
-
heightTiny: string;
|
|
2331
|
-
heightSmall: string;
|
|
2332
|
-
heightMedium: string;
|
|
2333
|
-
heightLarge: string;
|
|
2334
|
-
heightHuge: string;
|
|
2335
|
-
fontSizeTiny: string;
|
|
2336
|
-
fontSizeSmall: string;
|
|
2337
|
-
fontSizeMedium: string;
|
|
2338
|
-
fontSizeLarge: string;
|
|
2339
|
-
fontSizeHuge: string;
|
|
2340
|
-
lineHeight: string;
|
|
2341
|
-
lineHeightTextarea: string;
|
|
2342
|
-
borderRadius: string;
|
|
2343
|
-
iconSize: string;
|
|
2344
|
-
groupLabelTextColor: string;
|
|
2345
|
-
textColor: string;
|
|
2346
|
-
textColorDisabled: string;
|
|
2347
|
-
textDecorationColor: string;
|
|
2348
|
-
caretColor: string;
|
|
2349
|
-
placeholderColor: string;
|
|
2350
|
-
placeholderColorDisabled: string;
|
|
2351
|
-
color: string;
|
|
2352
|
-
colorDisabled: string;
|
|
2353
|
-
colorFocus: string;
|
|
2354
|
-
groupLabelBorder: string;
|
|
2355
|
-
border: string;
|
|
2356
|
-
borderHover: string;
|
|
2357
|
-
borderDisabled: string;
|
|
2358
|
-
borderFocus: string;
|
|
2359
|
-
boxShadowFocus: string;
|
|
2360
|
-
loadingColor: string;
|
|
2361
|
-
loadingColorSuccess: string;
|
|
2362
|
-
borderSuccess: string;
|
|
2363
|
-
borderHoverSuccess: string;
|
|
2364
|
-
colorFocusSuccess: string;
|
|
2365
|
-
borderFocusSuccess: string;
|
|
2366
|
-
boxShadowFocusSuccess: string;
|
|
2367
|
-
caretColorSuccess: string;
|
|
2368
|
-
loadingColorWarning: string;
|
|
2369
|
-
borderWarning: string;
|
|
2370
|
-
borderHoverWarning: string;
|
|
2371
|
-
colorFocusWarning: string;
|
|
2372
|
-
borderFocusWarning: string;
|
|
2373
|
-
boxShadowFocusWarning: string;
|
|
2374
|
-
caretColorWarning: string;
|
|
2375
|
-
loadingColorError: string;
|
|
2376
|
-
borderError: string;
|
|
2377
|
-
borderHoverError: string;
|
|
2378
|
-
colorFocusError: string;
|
|
2379
|
-
borderFocusError: string;
|
|
2380
|
-
boxShadowFocusError: string;
|
|
2381
|
-
caretColorError: string;
|
|
2382
|
-
clearColor: string;
|
|
2383
|
-
clearColorHover: string;
|
|
2384
|
-
clearColorPressed: string;
|
|
2385
|
-
iconColor: string;
|
|
2386
|
-
iconColorDisabled: string;
|
|
2387
|
-
iconColorHover: string;
|
|
2388
|
-
iconColorPressed: string;
|
|
2389
|
-
suffixTextColor: string;
|
|
2390
|
-
selectionColor: string;
|
|
2391
|
-
}, any>;
|
|
2392
|
-
}>;
|
|
2393
|
-
}>;
|
|
2394
|
-
Avatar: import("../../_mixins").Theme<"Avatar", {
|
|
2395
|
-
borderRadius: string;
|
|
2396
|
-
fontSize: string;
|
|
2397
|
-
fontWeight: string;
|
|
2398
|
-
border: string;
|
|
2399
|
-
heightTiny: string;
|
|
2400
|
-
heightSmall: string;
|
|
2401
|
-
heightMedium: string;
|
|
2402
|
-
heightLarge: string;
|
|
2403
|
-
textColor: string;
|
|
2404
|
-
iconColor: string;
|
|
2405
|
-
color: string;
|
|
2406
|
-
iconSize: string;
|
|
2407
|
-
}, any>;
|
|
2408
|
-
Badge: import("../../_mixins").Theme<"Badge", {
|
|
2409
|
-
color: string;
|
|
2410
|
-
colorPrime: string;
|
|
2411
|
-
colorInfo: string;
|
|
2412
|
-
colorSuccess: string;
|
|
2413
|
-
colorError: string;
|
|
2414
|
-
colorWarning: string;
|
|
2415
|
-
fontSize: string;
|
|
2416
|
-
textColor: string;
|
|
2417
|
-
textColorPrime: string;
|
|
2418
|
-
textColorInfo: string;
|
|
2419
|
-
textColorSuccess: string;
|
|
2420
|
-
textColorError: string;
|
|
2421
|
-
textColorWarning: string;
|
|
2422
|
-
borderColor: string;
|
|
2423
|
-
dotSize: string;
|
|
2424
|
-
}, any>;
|
|
2425
|
-
Button: import("../../_mixins").Theme<"Button", {
|
|
2426
|
-
heightTiny: string;
|
|
2427
|
-
heightSmall: string;
|
|
2428
|
-
heightMedium: string;
|
|
2429
|
-
heightLarge: string;
|
|
2430
|
-
borderRadiusTiny: string;
|
|
2431
|
-
borderRadiusSmall: string;
|
|
2432
|
-
borderRadiusMedium: string;
|
|
2433
|
-
borderRadiusLarge: string;
|
|
2434
|
-
fontSizeTiny: string;
|
|
2435
|
-
fontSizeSmall: string;
|
|
2436
|
-
fontSizeMedium: string;
|
|
2437
|
-
fontSizeLarge: string;
|
|
2438
|
-
opacityDisabled: string;
|
|
2439
|
-
colorOpacitySecondary: string;
|
|
2440
|
-
colorOpacitySecondaryHover: string;
|
|
2441
|
-
colorOpacitySecondaryPressed: string;
|
|
2442
|
-
colorOpacitySecondaryFocus: string;
|
|
2443
|
-
colorSecondary: string;
|
|
2444
|
-
colorSecondaryHover: string;
|
|
2445
|
-
colorSecondaryPressed: string;
|
|
2446
|
-
colorSecondaryFocus: string;
|
|
2447
|
-
colorSecondaryDisabled: string;
|
|
2448
|
-
textColorSecondaryDisabled: string;
|
|
2449
|
-
waveColorSecondary: string;
|
|
2450
|
-
colorTertiary: string;
|
|
2451
|
-
colorTertiaryHover: string;
|
|
2452
|
-
colorTertiaryPressed: string;
|
|
2453
|
-
colorTertiaryFocus: string;
|
|
2454
|
-
colorTertiaryDisalbed: string;
|
|
2455
|
-
waveColorTertiary: string;
|
|
2456
|
-
textColorTextTertiary: string;
|
|
2457
|
-
rippleColorTertiary: string;
|
|
2458
|
-
colorQuaternary: string;
|
|
2459
|
-
colorQuaternaryHover: string;
|
|
2460
|
-
colorQuaternaryPressed: string;
|
|
2461
|
-
colorQuaternaryFocus: string;
|
|
2462
|
-
rippleColorQuaternary: string;
|
|
2463
|
-
waveColorQuaternary: string;
|
|
2464
|
-
color: string;
|
|
2465
|
-
colorHover: string;
|
|
2466
|
-
colorPressed: string;
|
|
2467
|
-
colorFocus: string;
|
|
2468
|
-
colorDisabled: string;
|
|
2469
|
-
textColor: string;
|
|
2470
|
-
textTertiary: string;
|
|
2471
|
-
textColorTertiary: string;
|
|
2472
|
-
textColorHover: string;
|
|
2473
|
-
textColorPressed: string;
|
|
2474
|
-
textColorFocus: string;
|
|
2475
|
-
textColorDisabled: string;
|
|
2476
|
-
textColorText: string;
|
|
2477
|
-
textColorTextHover: string;
|
|
2478
|
-
textColorTextPressed: string;
|
|
2479
|
-
textColorTextFocus: string;
|
|
2480
|
-
textColorTextDisabled: string;
|
|
2481
|
-
textColorGhost: string;
|
|
2482
|
-
textColorGhostHover: string;
|
|
2483
|
-
textColorGhostPressed: string;
|
|
2484
|
-
textColorGhostFocus: string;
|
|
2485
|
-
textColorGhostDisabled: string;
|
|
2486
|
-
border: string;
|
|
2487
|
-
borderHover: string;
|
|
2488
|
-
borderPressed: string;
|
|
2489
|
-
borderFocus: string;
|
|
2490
|
-
borderDisabled: string;
|
|
2491
|
-
rippleColor: string;
|
|
2492
|
-
colorPrimary: string;
|
|
2493
|
-
colorHoverPrimary: string;
|
|
2494
|
-
colorPressedPrimary: string;
|
|
2495
|
-
colorFocusPrimary: string;
|
|
2496
|
-
colorDisabledPrimary: string;
|
|
2497
|
-
waveColorPrimary: string;
|
|
2498
|
-
textColorPrimary: string;
|
|
2499
|
-
textColorHoverPrimary: string;
|
|
2500
|
-
textColorPressedPrimary: string;
|
|
2501
|
-
textColorFocusPrimary: string;
|
|
2502
|
-
textColorDisabledPrimary: string;
|
|
2503
|
-
textColorTextPrimary: string;
|
|
2504
|
-
textColorTextHoverPrimary: string;
|
|
2505
|
-
textColorTextPressedPrimary: string;
|
|
2506
|
-
textColorTextFocusPrimary: string;
|
|
2507
|
-
textColorTextDisabledPrimary: string;
|
|
2508
|
-
textColorGhostPrimary: string;
|
|
2509
|
-
textColorGhostHoverPrimary: string;
|
|
2510
|
-
textColorGhostPressedPrimary: string;
|
|
2511
|
-
textColorGhostFocusPrimary: string;
|
|
2512
|
-
textColorGhostDisabledPrimary: string;
|
|
2513
|
-
borderPrimary: string;
|
|
2514
|
-
borderHoverPrimary: string;
|
|
2515
|
-
borderPressedPrimary: string;
|
|
2516
|
-
borderFocusPrimary: string;
|
|
2517
|
-
borderDisabledPrimary: string;
|
|
2518
|
-
rippleColorPrimary: string;
|
|
2519
|
-
colorInfo: string;
|
|
2520
|
-
colorHoverInfo: string;
|
|
2521
|
-
colorPressedInfo: string;
|
|
2522
|
-
colorFocusInfo: string;
|
|
2523
|
-
colorDisabledInfo: string;
|
|
2524
|
-
textColorInfo: string;
|
|
2525
|
-
textColorHoverInfo: string;
|
|
2526
|
-
textColorPressedInfo: string;
|
|
2527
|
-
textColorFocusInfo: string;
|
|
2528
|
-
textColorDisabledInfo: string;
|
|
2529
|
-
textColorTextInfo: string;
|
|
2530
|
-
textColorTextHoverInfo: string;
|
|
2531
|
-
textColorTextPressedInfo: string;
|
|
2532
|
-
textColorTextFocusInfo: string;
|
|
2533
|
-
textColorTextDisabledInfo: string;
|
|
2534
|
-
textColorGhostInfo: string;
|
|
2535
|
-
textColorGhostHoverInfo: string;
|
|
2536
|
-
textColorGhostPressedInfo: string;
|
|
2537
|
-
textColorGhostFocusInfo: string;
|
|
2538
|
-
textColorGhostDisabledInfo: string;
|
|
2539
|
-
borderInfo: string;
|
|
2540
|
-
borderHoverInfo: string;
|
|
2541
|
-
borderPressedInfo: string;
|
|
2542
|
-
borderFocusInfo: string;
|
|
2543
|
-
borderDisabledInfo: string;
|
|
2544
|
-
rippleColorInfo: string;
|
|
2545
|
-
colorSuccess: string;
|
|
2546
|
-
colorHoverSuccess: string;
|
|
2547
|
-
colorPressedSuccess: string;
|
|
2548
|
-
colorFocusSuccess: string;
|
|
2549
|
-
colorDisabledSuccess: string;
|
|
2550
|
-
textColorSuccess: string;
|
|
2551
|
-
textColorHoverSuccess: string;
|
|
2552
|
-
textColorPressedSuccess: string;
|
|
2553
|
-
textColorFocusSuccess: string;
|
|
2554
|
-
textColorDisabledSuccess: string;
|
|
2555
|
-
textColorTextSuccess: string;
|
|
2556
|
-
textColorTextHoverSuccess: string;
|
|
2557
|
-
textColorTextPressedSuccess: string;
|
|
2558
|
-
textColorTextFocusSuccess: string;
|
|
2559
|
-
textColorTextDisabledSuccess: string;
|
|
2560
|
-
textColorGhostSuccess: string;
|
|
2561
|
-
textColorGhostHoverSuccess: string;
|
|
2562
|
-
textColorGhostPressedSuccess: string;
|
|
2563
|
-
textColorGhostFocusSuccess: string;
|
|
2564
|
-
textColorGhostDisabledSuccess: string;
|
|
2565
|
-
borderSuccess: string;
|
|
2566
|
-
borderHoverSuccess: string;
|
|
2567
|
-
borderPressedSuccess: string;
|
|
2568
|
-
borderFocusSuccess: string;
|
|
2569
|
-
borderDisabledSuccess: string;
|
|
2570
|
-
rippleColorSuccess: string;
|
|
2571
|
-
colorWarning: string;
|
|
2572
|
-
colorHoverWarning: string;
|
|
2573
|
-
colorPressedWarning: string;
|
|
2574
|
-
colorFocusWarning: string;
|
|
2575
|
-
colorDisabledWarning: string;
|
|
2576
|
-
textColorWarning: string;
|
|
2577
|
-
textColorHoverWarning: string;
|
|
2578
|
-
textColorPressedWarning: string;
|
|
2579
|
-
textColorFocusWarning: string;
|
|
2580
|
-
textColorDisabledWarning: string;
|
|
2581
|
-
textColorTextWarning: string;
|
|
2582
|
-
textColorTextHoverWarning: string;
|
|
2583
|
-
textColorTextPressedWarning: string;
|
|
2584
|
-
textColorTextFocusWarning: string;
|
|
2585
|
-
textColorTextDisabledWarning: string;
|
|
2586
|
-
textColorGhostWarning: string;
|
|
2587
|
-
textColorGhostHoverWarning: string;
|
|
2588
|
-
textColorGhostPressedWarning: string;
|
|
2589
|
-
textColorGhostFocusWarning: string;
|
|
2590
|
-
textColorGhostDisabledWarning: string;
|
|
2591
|
-
borderWarning: string;
|
|
2592
|
-
borderHoverWarning: string;
|
|
2593
|
-
borderPressedWarning: string;
|
|
2594
|
-
borderFocusWarning: string;
|
|
2595
|
-
borderDisabledWarning: string;
|
|
2596
|
-
rippleColorWarning: string;
|
|
2597
|
-
colorError: string;
|
|
2598
|
-
colorHoverError: string;
|
|
2599
|
-
colorPressedError: string;
|
|
2600
|
-
colorFocusError: string;
|
|
2601
|
-
colorDisabledError: string;
|
|
2602
|
-
textColorError: string;
|
|
2603
|
-
textColorHoverError: string;
|
|
2604
|
-
textColorPressedError: string;
|
|
2605
|
-
textColorFocusError: string;
|
|
2606
|
-
textColorDisabledError: string;
|
|
2607
|
-
textColorTextError: string;
|
|
2608
|
-
textColorTextHoverError: string;
|
|
2609
|
-
textColorTextPressedError: string;
|
|
2610
|
-
textColorTextFocusError: string;
|
|
2611
|
-
textColorTextDisabledError: string;
|
|
2612
|
-
textColorGhostError: string;
|
|
2613
|
-
textColorGhostHoverError: string;
|
|
2614
|
-
textColorGhostPressedError: string;
|
|
2615
|
-
textColorGhostFocusError: string;
|
|
2616
|
-
textColorGhostDisabledError: string;
|
|
2617
|
-
borderError: string;
|
|
2618
|
-
borderHoverError: string;
|
|
2619
|
-
borderPressedError: string;
|
|
2620
|
-
borderFocusError: string;
|
|
2621
|
-
borderDisabledError: string;
|
|
2622
|
-
rippleColorError: string;
|
|
2623
|
-
waveOpacity: string;
|
|
2624
|
-
fontWeight: string;
|
|
2625
|
-
fontWeightStrong: string;
|
|
2626
|
-
paddingTiny: string;
|
|
2627
|
-
paddingSmall: string;
|
|
2628
|
-
paddingMedium: string;
|
|
2629
|
-
paddingLarge: string;
|
|
2630
|
-
paddingRoundTiny: string;
|
|
2631
|
-
paddingRoundSmall: string;
|
|
2632
|
-
paddingRoundMedium: string;
|
|
2633
|
-
paddingRoundLarge: string;
|
|
2634
|
-
iconMarginTiny: string;
|
|
2635
|
-
iconMarginSmall: string;
|
|
2636
|
-
iconMarginMedium: string;
|
|
2637
|
-
iconMarginLarge: string;
|
|
2638
|
-
iconSizeTiny: string;
|
|
2639
|
-
iconSizeSmall: string;
|
|
2640
|
-
iconSizeMedium: string;
|
|
2641
|
-
iconSizeLarge: string;
|
|
2642
|
-
rippleDuration: string;
|
|
2643
|
-
}, any>;
|
|
2644
|
-
List: import("../../_mixins").Theme<"List", {
|
|
2645
|
-
iconSize: string;
|
|
2646
|
-
iconSpace: string;
|
|
2647
|
-
suffixSpace: string;
|
|
2648
|
-
prefixSpace: string;
|
|
2649
|
-
subtitleColor: string;
|
|
2650
|
-
avatarSpace: string;
|
|
2651
|
-
colorFocus: string;
|
|
2652
|
-
pressedScale: string;
|
|
2653
|
-
textColorDisabled: string;
|
|
2654
|
-
textColor: string;
|
|
2655
|
-
color: string;
|
|
2656
|
-
colorHover: string;
|
|
2657
|
-
colorModal: string;
|
|
2658
|
-
colorHoverModal: string;
|
|
2659
|
-
colorPopover: string;
|
|
2660
|
-
colorHoverPopover: string;
|
|
2661
|
-
borderColor: string;
|
|
2662
|
-
borderColorModal: string;
|
|
2663
|
-
borderColorPopover: string;
|
|
2664
|
-
borderRadiusLarge: string;
|
|
2665
|
-
borderRadiusMedium: string;
|
|
2666
|
-
borderRadiusSmall: string;
|
|
2667
|
-
padding: string;
|
|
2668
|
-
suffixSize: string;
|
|
2669
|
-
}, any>;
|
|
2670
|
-
Typography: import("../../_mixins").Theme<"Typography", {
|
|
2671
|
-
headerFontSize1: string;
|
|
2672
|
-
headerFontSize2: string;
|
|
2673
|
-
headerFontSize3: string;
|
|
2674
|
-
headerFontSize4: string;
|
|
2675
|
-
headerFontSize5: string;
|
|
2676
|
-
headerFontSize6: string;
|
|
2677
|
-
headerMargin1: string;
|
|
2678
|
-
headerMargin2: string;
|
|
2679
|
-
headerMargin3: string;
|
|
2680
|
-
headerMargin4: string;
|
|
2681
|
-
headerMargin5: string;
|
|
2682
|
-
headerMargin6: string;
|
|
2683
|
-
headerPrefixWidth1: string;
|
|
2684
|
-
headerPrefixWidth2: string;
|
|
2685
|
-
headerPrefixWidth3: string;
|
|
2686
|
-
headerPrefixWidth4: string;
|
|
2687
|
-
headerPrefixWidth5: string;
|
|
2688
|
-
headerPrefixWidth6: string;
|
|
2689
|
-
headerBarWidth1: string;
|
|
2690
|
-
headerBarWidth2: string;
|
|
2691
|
-
headerBarWidth3: string;
|
|
2692
|
-
headerBarWidth4: string;
|
|
2693
|
-
headerBarWidth5: string;
|
|
2694
|
-
headerBarWidth6: string;
|
|
2695
|
-
pMargin: string;
|
|
2696
|
-
margin: string;
|
|
2697
|
-
liMargin: string;
|
|
2698
|
-
olPadding: string;
|
|
2699
|
-
ulPadding: string;
|
|
2700
|
-
aTextColor: string;
|
|
2701
|
-
blockquoteTextColor: string;
|
|
2702
|
-
blockquotePrefixColor: string;
|
|
2703
|
-
blockquoteLineHeight: string;
|
|
2704
|
-
blockquoteFontSize: string;
|
|
2705
|
-
codeBorderRadius: string;
|
|
2706
|
-
liTextColor: string;
|
|
2707
|
-
liLineHeight: string;
|
|
2708
|
-
liFontSize: string;
|
|
2709
|
-
hrColor: string;
|
|
2710
|
-
headerFontWeight: string;
|
|
2711
|
-
headerTextColor: string;
|
|
2712
|
-
pTextColor: string;
|
|
2713
|
-
pTextColor1Depth: string;
|
|
2714
|
-
pTextColor2Depth: string;
|
|
2715
|
-
pTextColor3Depth: string;
|
|
2716
|
-
pLineHeight: string;
|
|
2717
|
-
pFontSize: string;
|
|
2718
|
-
fontSize: string;
|
|
2719
|
-
lineHeight: string;
|
|
2720
|
-
headerBarColor: string;
|
|
2721
|
-
headerBarColorPrimary: string;
|
|
2722
|
-
headerBarColorInfo: string;
|
|
2723
|
-
headerBarColorError: string;
|
|
2724
|
-
headerBarColorWarning: string;
|
|
2725
|
-
headerBarColorSuccess: string;
|
|
2726
|
-
textColor: string;
|
|
2727
|
-
textColor1Depth: string;
|
|
2728
|
-
textColor2Depth: string;
|
|
2729
|
-
textColor3Depth: string;
|
|
2730
|
-
textColorPrimary: string;
|
|
2731
|
-
textColorInfo: string;
|
|
2732
|
-
textColorSuccess: string;
|
|
2733
|
-
textColorWarning: string;
|
|
2734
|
-
textColorError: string;
|
|
2735
|
-
codeTextColor: string;
|
|
2736
|
-
codeColor: string;
|
|
2737
|
-
codeBorder: string;
|
|
2738
|
-
}, any>;
|
|
2739
|
-
MessageBubble: import("../../_mixins").Theme<"MessageBubble", {
|
|
2740
|
-
messageBubbleBackgroundColorOwn: string;
|
|
2741
|
-
messageBubbleBackgroundColorOther: string;
|
|
2742
|
-
messageBubbleTextColorOwn: string;
|
|
2743
|
-
messageBubbleTextColorOther: string;
|
|
2744
|
-
messageTimeColor: string;
|
|
2745
|
-
messageStatusReadColor: string;
|
|
2746
|
-
messageStatusSuccessColor: string;
|
|
2747
|
-
attachmentBackgroundColorOwn: string;
|
|
2748
|
-
attachmentBackgroundColorOther: string;
|
|
2749
|
-
messageErrorColor: string;
|
|
2750
|
-
messageBorderRadius: string;
|
|
2751
|
-
unreadNotificationBackgroundColor: string;
|
|
2752
|
-
unreadNotificationTextColor: string;
|
|
2753
|
-
serviceMessageTextColor: string;
|
|
2754
|
-
serviceMessageBackgroundColor: string;
|
|
2755
|
-
messageTitleColor: string;
|
|
2756
|
-
}, {
|
|
2757
|
-
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
2758
|
-
color: string;
|
|
2759
|
-
opacity1Depth: string;
|
|
2760
|
-
opacity2Depth: string;
|
|
2761
|
-
opacity3Depth: string;
|
|
2762
|
-
opacity4Depth: string;
|
|
2763
|
-
opacity5Depth: string;
|
|
2764
|
-
}, any>;
|
|
2765
|
-
}>;
|
|
2766
|
-
StatusIcon: import("../../_mixins").Theme<"Icon", {
|
|
2767
|
-
color: string;
|
|
2768
|
-
opacity1Depth: string;
|
|
2769
|
-
opacity2Depth: string;
|
|
2770
|
-
opacity3Depth: string;
|
|
2771
|
-
opacity4Depth: string;
|
|
2772
|
-
opacity5Depth: string;
|
|
2773
|
-
}, any>;
|
|
2774
|
-
FooterAttachIcon: import("../../_mixins").Theme<"Icon", {
|
|
2775
|
-
color: string;
|
|
2776
|
-
opacity1Depth: string;
|
|
2777
|
-
opacity2Depth: string;
|
|
2778
|
-
opacity3Depth: string;
|
|
2779
|
-
opacity4Depth: string;
|
|
2780
|
-
opacity5Depth: string;
|
|
2781
|
-
}, any>;
|
|
2782
|
-
FooterSuffixIcon: import("../../_mixins").Theme<"Icon", {
|
|
2783
|
-
color: string;
|
|
2784
|
-
opacity1Depth: string;
|
|
2785
|
-
opacity2Depth: string;
|
|
2786
|
-
opacity3Depth: string;
|
|
2787
|
-
opacity4Depth: string;
|
|
2788
|
-
opacity5Depth: string;
|
|
2789
|
-
}, any>;
|
|
2790
|
-
HeaderShareIcon: import("../../_mixins").Theme<"Icon", {
|
|
2791
|
-
color: string;
|
|
2792
|
-
opacity1Depth: string;
|
|
2793
|
-
opacity2Depth: string;
|
|
2794
|
-
opacity3Depth: string;
|
|
2795
|
-
opacity4Depth: string;
|
|
2796
|
-
opacity5Depth: string;
|
|
2797
|
-
}, any>;
|
|
2798
|
-
HeaderProfileIcon: import("../../_mixins").Theme<"Icon", {
|
|
2799
|
-
color: string;
|
|
2800
|
-
opacity1Depth: string;
|
|
2801
|
-
opacity2Depth: string;
|
|
2802
|
-
opacity3Depth: string;
|
|
2803
|
-
opacity4Depth: string;
|
|
2804
|
-
opacity5Depth: string;
|
|
2805
|
-
}, any>;
|
|
2806
|
-
}>>>;
|
|
2807
|
-
};
|
|
2808
|
-
export type ChatProps = ExtractPublicPropTypes<typeof chatProps>;
|
|
1
|
+
import type { ChatId, ChatListItemData, ChatMessageData } from './interface';
|
|
2809
2
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2810
3
|
chatItems: {
|
|
2811
|
-
type: PropType<
|
|
4
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["chatItems"]>;
|
|
2812
5
|
default: () => never[];
|
|
2813
6
|
};
|
|
2814
7
|
selectedChatId: {
|
|
2815
|
-
type: PropType<
|
|
8
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["selectedChatId"]>;
|
|
9
|
+
default: undefined;
|
|
10
|
+
};
|
|
11
|
+
inputValue: {
|
|
12
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["inputValue"]>;
|
|
2816
13
|
default: undefined;
|
|
2817
14
|
};
|
|
2818
15
|
messages: {
|
|
2819
|
-
type: PropType<
|
|
16
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["messages"]>;
|
|
2820
17
|
default: () => never[];
|
|
2821
18
|
};
|
|
2822
19
|
typingChatIds: {
|
|
2823
|
-
type: PropType<Array<string | number | symbol>>;
|
|
20
|
+
type: import("vue").PropType<Array<string | number | symbol>>;
|
|
2824
21
|
default: () => never[];
|
|
2825
22
|
};
|
|
2826
23
|
disabled: {
|
|
2827
|
-
type: PropType<
|
|
24
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["disabled"]>;
|
|
2828
25
|
default: boolean;
|
|
2829
26
|
};
|
|
2830
27
|
listEmptyProps: {
|
|
2831
|
-
type: PropType<Partial<
|
|
28
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["listEmptyProps"]>>;
|
|
2832
29
|
default: undefined;
|
|
2833
30
|
};
|
|
2834
31
|
listHeaderTitle: {
|
|
2835
|
-
type: PropType<
|
|
32
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["listHeaderTitle"]>;
|
|
2836
33
|
default: string;
|
|
2837
34
|
};
|
|
2838
35
|
listHeaderActions: {
|
|
2839
|
-
type: PropType<
|
|
36
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["listHeaderActions"]>;
|
|
2840
37
|
default: () => never[];
|
|
2841
38
|
};
|
|
2842
39
|
listHeaderButtonProps: {
|
|
2843
|
-
type: PropType<Partial<
|
|
40
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["listHeaderButtonProps"]>>;
|
|
2844
41
|
default: undefined;
|
|
2845
42
|
};
|
|
2846
43
|
listHeaderIconProps: {
|
|
2847
|
-
type: PropType<Partial<
|
|
44
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["listHeaderIconProps"]>>;
|
|
2848
45
|
default: undefined;
|
|
2849
46
|
};
|
|
2850
47
|
listItemAvatarProps: {
|
|
2851
|
-
type: PropType<Partial<
|
|
48
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["listItemAvatarProps"]>>;
|
|
2852
49
|
default: undefined;
|
|
2853
50
|
};
|
|
2854
51
|
listItemBadgeProps: {
|
|
2855
|
-
type: PropType<Partial<
|
|
52
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["listItemBadgeProps"]>>;
|
|
2856
53
|
default: undefined;
|
|
2857
54
|
};
|
|
2858
55
|
headerTitle: {
|
|
2859
|
-
type: PropType<
|
|
56
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["headerTitle"]>;
|
|
2860
57
|
default: undefined;
|
|
2861
58
|
};
|
|
2862
59
|
headerActions: {
|
|
2863
|
-
type: PropType<
|
|
60
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["headerActions"]>;
|
|
2864
61
|
default: () => never[];
|
|
2865
62
|
};
|
|
2866
63
|
headerButtonProps: {
|
|
2867
|
-
type: PropType<Partial<
|
|
64
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["headerButtonProps"]>>;
|
|
2868
65
|
default: undefined;
|
|
2869
66
|
};
|
|
2870
67
|
headerIconProps: {
|
|
2871
|
-
type: PropType<Partial<
|
|
68
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["headerIconProps"]>>;
|
|
2872
69
|
default: undefined;
|
|
2873
70
|
};
|
|
2874
71
|
headerShareButtonProps: {
|
|
2875
|
-
type: PropType<Partial<
|
|
72
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["headerShareButtonProps"]>>;
|
|
2876
73
|
default: undefined;
|
|
2877
74
|
};
|
|
2878
75
|
headerProfileButtonProps: {
|
|
2879
|
-
type: PropType<Partial<
|
|
76
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["headerProfileButtonProps"]>>;
|
|
2880
77
|
default: undefined;
|
|
2881
78
|
};
|
|
2882
79
|
headerCloseButtonProps: {
|
|
2883
|
-
type: PropType<Partial<
|
|
80
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["headerCloseButtonProps"]>>;
|
|
2884
81
|
default: undefined;
|
|
2885
82
|
};
|
|
2886
83
|
headerShareIconProps: {
|
|
2887
|
-
type: PropType<Partial<
|
|
84
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["headerShareIconProps"]>>;
|
|
2888
85
|
default: undefined;
|
|
2889
86
|
};
|
|
2890
87
|
headerProfileIconProps: {
|
|
2891
|
-
type: PropType<Partial<
|
|
88
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["headerProfileIconProps"]>>;
|
|
2892
89
|
default: undefined;
|
|
2893
90
|
};
|
|
2894
91
|
messageSenderAvatarProps: {
|
|
2895
|
-
type: PropType<Partial<
|
|
92
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["messageSenderAvatarProps"]>>;
|
|
2896
93
|
default: undefined;
|
|
2897
94
|
};
|
|
2898
95
|
messageUploadProps: {
|
|
2899
|
-
type: PropType<Partial<
|
|
96
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["messageUploadProps"]>>;
|
|
2900
97
|
default: undefined;
|
|
2901
98
|
};
|
|
2902
99
|
messageButtonProps: {
|
|
2903
|
-
type: PropType<Partial<
|
|
100
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["messageButtonProps"]>>;
|
|
2904
101
|
default: undefined;
|
|
2905
102
|
};
|
|
2906
103
|
footerInputProps: {
|
|
2907
|
-
type: PropType<Partial<
|
|
104
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["footerInputProps"]>>;
|
|
2908
105
|
default: undefined;
|
|
2909
106
|
};
|
|
2910
107
|
footerButtonProps: {
|
|
2911
|
-
type: PropType<Partial<
|
|
108
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["footerButtonProps"]>>;
|
|
2912
109
|
default: undefined;
|
|
2913
110
|
};
|
|
2914
111
|
footerUploadProps: {
|
|
2915
|
-
type: PropType<Partial<
|
|
112
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["footerUploadProps"]>>;
|
|
2916
113
|
default: undefined;
|
|
2917
114
|
};
|
|
2918
115
|
footerUploadTriggerProps: {
|
|
2919
|
-
type: PropType<
|
|
116
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["footerUploadTriggerProps"]>;
|
|
2920
117
|
default: undefined;
|
|
2921
118
|
};
|
|
2922
119
|
footerIconProps: {
|
|
2923
|
-
type: PropType<Partial<
|
|
120
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["footerIconProps"]>>;
|
|
2924
121
|
default: undefined;
|
|
2925
122
|
};
|
|
2926
123
|
footerSuffixIconProps: {
|
|
2927
|
-
type: PropType<Partial<
|
|
124
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["footerSuffixIconProps"]>>;
|
|
2928
125
|
default: undefined;
|
|
2929
126
|
};
|
|
2930
127
|
emptyProps: {
|
|
2931
|
-
type: PropType<Partial<
|
|
128
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["emptyProps"]>>;
|
|
2932
129
|
default: undefined;
|
|
2933
130
|
};
|
|
2934
131
|
retryText: {
|
|
2935
|
-
type: PropType<
|
|
132
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["retryText"]>;
|
|
2936
133
|
default: undefined;
|
|
2937
134
|
};
|
|
2938
135
|
typingText: {
|
|
2939
|
-
type: PropType<
|
|
136
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["typingText"]>;
|
|
2940
137
|
default: undefined;
|
|
2941
138
|
};
|
|
2942
139
|
closeButtonText: {
|
|
2943
|
-
type: PropType<
|
|
140
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["closeButtonText"]>;
|
|
2944
141
|
default: undefined;
|
|
2945
142
|
};
|
|
2946
143
|
shareButtonTooltip: {
|
|
2947
|
-
type: PropType<
|
|
144
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["shareButtonTooltip"]>;
|
|
2948
145
|
default: undefined;
|
|
2949
146
|
};
|
|
2950
147
|
profileButtonTooltip: {
|
|
2951
|
-
type: PropType<
|
|
148
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["profileButtonTooltip"]>;
|
|
2952
149
|
default: undefined;
|
|
2953
150
|
};
|
|
2954
151
|
unreadNotificationText: {
|
|
2955
|
-
type: PropType<
|
|
152
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["unreadNotificationText"]>;
|
|
2956
153
|
default: undefined;
|
|
2957
154
|
};
|
|
2958
155
|
chatItemsLoading: {
|
|
2959
|
-
type: PropType<
|
|
156
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["chatItemsLoading"]>;
|
|
2960
157
|
default: boolean;
|
|
2961
158
|
};
|
|
2962
159
|
chatItemsLoadingCount: {
|
|
2963
|
-
type: PropType<
|
|
160
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["chatItemsLoadingCount"]>;
|
|
2964
161
|
default: number;
|
|
2965
162
|
};
|
|
2966
163
|
messagesLoading: {
|
|
2967
|
-
type: PropType<
|
|
164
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["messagesLoading"]>;
|
|
2968
165
|
default: boolean;
|
|
2969
166
|
};
|
|
2970
167
|
messagesLoadingCount: {
|
|
2971
|
-
type: PropType<
|
|
168
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["messagesLoadingCount"]>;
|
|
2972
169
|
default: number;
|
|
2973
170
|
};
|
|
2974
171
|
height: {
|
|
2975
|
-
type: PropType<string | number>;
|
|
172
|
+
type: import("vue").PropType<string | number>;
|
|
2976
173
|
default: number;
|
|
2977
174
|
};
|
|
2978
175
|
onChatSelect: {
|
|
2979
|
-
type: PropType<
|
|
176
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onChatSelect"]>;
|
|
2980
177
|
default: undefined;
|
|
2981
178
|
};
|
|
2982
179
|
onMessageRetry: {
|
|
2983
|
-
type: PropType<
|
|
180
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onMessageRetry"]>;
|
|
2984
181
|
default: undefined;
|
|
2985
182
|
};
|
|
2986
183
|
bubbleActions: {
|
|
2987
|
-
type: PropType<
|
|
184
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["bubbleActions"]>;
|
|
2988
185
|
default: undefined;
|
|
2989
186
|
};
|
|
2990
187
|
onChatClose: {
|
|
2991
|
-
type: PropType<() => void>;
|
|
188
|
+
type: import("vue").PropType<() => void>;
|
|
2992
189
|
default: undefined;
|
|
2993
190
|
};
|
|
2994
191
|
onChatShare: {
|
|
2995
|
-
type: PropType<() => void>;
|
|
192
|
+
type: import("vue").PropType<() => void>;
|
|
2996
193
|
default: undefined;
|
|
2997
194
|
};
|
|
2998
195
|
onUserProfile: {
|
|
2999
|
-
type: PropType<() => void>;
|
|
196
|
+
type: import("vue").PropType<() => void>;
|
|
3000
197
|
default: undefined;
|
|
3001
198
|
};
|
|
3002
199
|
onAttachmentUpload: {
|
|
3003
|
-
type: PropType<
|
|
200
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onAttachmentUpload"]>;
|
|
3004
201
|
default: undefined;
|
|
3005
202
|
};
|
|
3006
203
|
onAttachmentDownload: {
|
|
3007
|
-
type: PropType<
|
|
204
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onAttachmentDownload"]>;
|
|
3008
205
|
default: undefined;
|
|
3009
206
|
};
|
|
3010
207
|
onFilterChange: {
|
|
3011
|
-
type: PropType<
|
|
208
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onFilterChange"]>;
|
|
3012
209
|
default: undefined;
|
|
3013
210
|
};
|
|
3014
211
|
onFooterInputChange: {
|
|
3015
|
-
type: PropType<(value: string, chatId: ChatId) => void>;
|
|
212
|
+
type: import("vue").PropType<(value: string, chatId: ChatId) => void>;
|
|
3016
213
|
default: undefined;
|
|
3017
214
|
};
|
|
3018
215
|
onNetworkError: {
|
|
3019
|
-
type: PropType<
|
|
216
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onNetworkError"]>;
|
|
3020
217
|
default: undefined;
|
|
3021
218
|
};
|
|
3022
219
|
onUploadError: {
|
|
3023
|
-
type: PropType<
|
|
220
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onUploadError"]>;
|
|
3024
221
|
default: undefined;
|
|
3025
222
|
};
|
|
3026
223
|
onSendError: {
|
|
3027
|
-
type: PropType<
|
|
224
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onSendError"]>;
|
|
3028
225
|
default: undefined;
|
|
3029
226
|
};
|
|
3030
227
|
onChatItemsScrollToTop: {
|
|
3031
|
-
type: PropType<() => void>;
|
|
228
|
+
type: import("vue").PropType<() => void>;
|
|
3032
229
|
default: undefined;
|
|
3033
230
|
};
|
|
3034
231
|
onChatItemsScrollToBottom: {
|
|
3035
|
-
type: PropType<() => void>;
|
|
232
|
+
type: import("vue").PropType<() => void>;
|
|
3036
233
|
default: undefined;
|
|
3037
234
|
};
|
|
3038
235
|
onMessagesScrollToTop: {
|
|
3039
|
-
type: PropType<() => void>;
|
|
236
|
+
type: import("vue").PropType<() => void>;
|
|
3040
237
|
default: undefined;
|
|
3041
238
|
};
|
|
3042
239
|
onMessagesScrollToBottom: {
|
|
3043
|
-
type: PropType<() => void>;
|
|
240
|
+
type: import("vue").PropType<() => void>;
|
|
3044
241
|
default: undefined;
|
|
3045
242
|
};
|
|
3046
|
-
theme: PropType<import("../../_mixins").Theme<"Chat", {
|
|
243
|
+
theme: import("vue").PropType<import("../../_mixins").Theme<"Chat", {
|
|
3047
244
|
backgroundColor: string;
|
|
3048
245
|
borderColor: string;
|
|
3049
246
|
sidebarBackgroundColor: string;
|
|
@@ -3898,7 +1095,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
3898
1095
|
opacity5Depth: string;
|
|
3899
1096
|
}, any>;
|
|
3900
1097
|
}>>;
|
|
3901
|
-
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
1098
|
+
themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
3902
1099
|
backgroundColor: string;
|
|
3903
1100
|
borderColor: string;
|
|
3904
1101
|
sidebarBackgroundColor: string;
|
|
@@ -4753,7 +1950,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
4753
1950
|
opacity5Depth: string;
|
|
4754
1951
|
}, any>;
|
|
4755
1952
|
}>>>;
|
|
4756
|
-
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
1953
|
+
builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
4757
1954
|
backgroundColor: string;
|
|
4758
1955
|
borderColor: string;
|
|
4759
1956
|
sidebarBackgroundColor: string;
|
|
@@ -6900,15 +4097,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6900
4097
|
onRender: () => void;
|
|
6901
4098
|
mainAreaRef: import("vue").Ref<import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
6902
4099
|
readonly selectedChat: {
|
|
6903
|
-
readonly type: PropType<ChatListItemData>;
|
|
4100
|
+
readonly type: import("vue").PropType<ChatListItemData>;
|
|
4101
|
+
readonly default: undefined;
|
|
4102
|
+
};
|
|
4103
|
+
readonly inputValue: {
|
|
4104
|
+
readonly type: StringConstructor;
|
|
6904
4105
|
readonly default: undefined;
|
|
6905
4106
|
};
|
|
6906
4107
|
readonly messages: {
|
|
6907
|
-
readonly type: PropType<ChatMessageData[]>;
|
|
4108
|
+
readonly type: import("vue").PropType<ChatMessageData[]>;
|
|
6908
4109
|
readonly default: () => never[];
|
|
6909
4110
|
};
|
|
6910
4111
|
readonly typingChatIds: {
|
|
6911
|
-
readonly type: PropType<Array<string | number | symbol>>;
|
|
4112
|
+
readonly type: import("vue").PropType<Array<string | number | symbol>>;
|
|
6912
4113
|
readonly default: () => never[];
|
|
6913
4114
|
};
|
|
6914
4115
|
readonly loading: {
|
|
@@ -6920,55 +4121,55 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
6920
4121
|
readonly default: 10;
|
|
6921
4122
|
};
|
|
6922
4123
|
readonly headerButtonProps: {
|
|
6923
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
4124
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
6924
4125
|
readonly default: undefined;
|
|
6925
4126
|
};
|
|
6926
4127
|
readonly headerIconProps: {
|
|
6927
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
4128
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
6928
4129
|
readonly default: undefined;
|
|
6929
4130
|
};
|
|
6930
4131
|
readonly headerShareButtonProps: {
|
|
6931
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
4132
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
6932
4133
|
readonly default: undefined;
|
|
6933
4134
|
};
|
|
6934
4135
|
readonly headerProfileButtonProps: {
|
|
6935
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
4136
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
6936
4137
|
readonly default: undefined;
|
|
6937
4138
|
};
|
|
6938
4139
|
readonly headerCloseButtonProps: {
|
|
6939
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
4140
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
6940
4141
|
readonly default: undefined;
|
|
6941
4142
|
};
|
|
6942
4143
|
readonly headerShareIconProps: {
|
|
6943
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
4144
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
6944
4145
|
readonly default: undefined;
|
|
6945
4146
|
};
|
|
6946
4147
|
readonly headerProfileIconProps: {
|
|
6947
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
4148
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
6948
4149
|
readonly default: undefined;
|
|
6949
4150
|
};
|
|
6950
4151
|
readonly messageUploadProps: {
|
|
6951
|
-
readonly type: PropType<Partial<import("../..").UploadProps>>;
|
|
4152
|
+
readonly type: import("vue").PropType<Partial<import("../..").UploadProps>>;
|
|
6952
4153
|
readonly default: undefined;
|
|
6953
4154
|
};
|
|
6954
4155
|
readonly footerInputProps: {
|
|
6955
|
-
readonly type: PropType<Partial<import("../..").InputProps>>;
|
|
4156
|
+
readonly type: import("vue").PropType<Partial<import("../..").InputProps>>;
|
|
6956
4157
|
readonly default: undefined;
|
|
6957
4158
|
};
|
|
6958
4159
|
readonly footerButtonProps: {
|
|
6959
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
4160
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
6960
4161
|
readonly default: undefined;
|
|
6961
4162
|
};
|
|
6962
4163
|
readonly footerUploadProps: {
|
|
6963
|
-
readonly type: PropType<Partial<import("../..").UploadProps>>;
|
|
4164
|
+
readonly type: import("vue").PropType<Partial<import("../..").UploadProps>>;
|
|
6964
4165
|
readonly default: undefined;
|
|
6965
4166
|
};
|
|
6966
4167
|
readonly footerIconProps: {
|
|
6967
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
4168
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
6968
4169
|
readonly default: undefined;
|
|
6969
4170
|
};
|
|
6970
4171
|
readonly footerSuffixIconProps: {
|
|
6971
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
4172
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
6972
4173
|
readonly default: undefined;
|
|
6973
4174
|
};
|
|
6974
4175
|
readonly showAttachButton: {
|
|
@@ -7004,50 +4205,54 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7004
4205
|
readonly default: undefined;
|
|
7005
4206
|
};
|
|
7006
4207
|
readonly bubbleActions: {
|
|
7007
|
-
readonly type: PropType<import("./interface").ChatBubbleAction[]>;
|
|
4208
|
+
readonly type: import("vue").PropType<import("./interface").ChatBubbleAction[]>;
|
|
7008
4209
|
readonly default: undefined;
|
|
7009
4210
|
};
|
|
7010
4211
|
readonly onMessageSend: {
|
|
7011
|
-
readonly type: PropType<import("./interface").OnMessageSend>;
|
|
4212
|
+
readonly type: import("vue").PropType<import("./interface").OnMessageSend>;
|
|
7012
4213
|
readonly default: undefined;
|
|
7013
4214
|
};
|
|
7014
4215
|
readonly onMessageRetry: {
|
|
7015
|
-
readonly type: PropType<(message: ChatMessageData) => void>;
|
|
4216
|
+
readonly type: import("vue").PropType<(message: ChatMessageData) => void>;
|
|
7016
4217
|
readonly default: undefined;
|
|
7017
4218
|
};
|
|
7018
4219
|
readonly onFooterInputChange: {
|
|
7019
|
-
readonly type: PropType<(value: string, chatId: ChatId) => void>;
|
|
4220
|
+
readonly type: import("vue").PropType<(value: string, chatId: ChatId) => void>;
|
|
4221
|
+
readonly default: undefined;
|
|
4222
|
+
};
|
|
4223
|
+
readonly 'onUpdate:inputValue': {
|
|
4224
|
+
readonly type: import("vue").PropType<(value: string) => void>;
|
|
7020
4225
|
readonly default: undefined;
|
|
7021
4226
|
};
|
|
7022
4227
|
readonly onChatClose: {
|
|
7023
|
-
readonly type: PropType<() => void>;
|
|
4228
|
+
readonly type: import("vue").PropType<() => void>;
|
|
7024
4229
|
readonly default: undefined;
|
|
7025
4230
|
};
|
|
7026
4231
|
readonly onChatShare: {
|
|
7027
|
-
readonly type: PropType<() => void>;
|
|
4232
|
+
readonly type: import("vue").PropType<() => void>;
|
|
7028
4233
|
readonly default: undefined;
|
|
7029
4234
|
};
|
|
7030
4235
|
readonly onUserProfile: {
|
|
7031
|
-
readonly type: PropType<() => void>;
|
|
4236
|
+
readonly type: import("vue").PropType<() => void>;
|
|
7032
4237
|
readonly default: undefined;
|
|
7033
4238
|
};
|
|
7034
4239
|
readonly onAttachmentUpload: {
|
|
7035
|
-
readonly type: PropType<import("./interface").OnAttachmentUpload>;
|
|
4240
|
+
readonly type: import("vue").PropType<import("./interface").OnAttachmentUpload>;
|
|
7036
4241
|
readonly default: undefined;
|
|
7037
4242
|
};
|
|
7038
4243
|
readonly onAttachmentDownload: {
|
|
7039
|
-
readonly type: PropType<import("./interface").OnAttachmentDownload>;
|
|
4244
|
+
readonly type: import("vue").PropType<import("./interface").OnAttachmentDownload>;
|
|
7040
4245
|
readonly default: undefined;
|
|
7041
4246
|
};
|
|
7042
4247
|
readonly onMessagesScrollToTop: {
|
|
7043
|
-
readonly type: PropType<() => void>;
|
|
4248
|
+
readonly type: import("vue").PropType<() => void>;
|
|
7044
4249
|
readonly default: undefined;
|
|
7045
4250
|
};
|
|
7046
4251
|
readonly onMessagesScrollToBottom: {
|
|
7047
|
-
readonly type: PropType<() => void>;
|
|
4252
|
+
readonly type: import("vue").PropType<() => void>;
|
|
7048
4253
|
readonly default: undefined;
|
|
7049
4254
|
};
|
|
7050
|
-
readonly theme: PropType<import("../../_mixins").Theme<"Chat", {
|
|
4255
|
+
readonly theme: import("vue").PropType<import("../../_mixins").Theme<"Chat", {
|
|
7051
4256
|
backgroundColor: string;
|
|
7052
4257
|
borderColor: string;
|
|
7053
4258
|
sidebarBackgroundColor: string;
|
|
@@ -7902,7 +5107,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
7902
5107
|
opacity5Depth: string;
|
|
7903
5108
|
}, any>;
|
|
7904
5109
|
}>>;
|
|
7905
|
-
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
5110
|
+
readonly themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
7906
5111
|
backgroundColor: string;
|
|
7907
5112
|
borderColor: string;
|
|
7908
5113
|
sidebarBackgroundColor: string;
|
|
@@ -8757,7 +5962,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8757
5962
|
opacity5Depth: string;
|
|
8758
5963
|
}, any>;
|
|
8759
5964
|
}>>>;
|
|
8760
|
-
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
5965
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
8761
5966
|
backgroundColor: string;
|
|
8762
5967
|
borderColor: string;
|
|
8763
5968
|
sidebarBackgroundColor: string;
|
|
@@ -13370,7 +10575,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13370
10575
|
$el: HTMLElement;
|
|
13371
10576
|
} | undefined>;
|
|
13372
10577
|
inputRef: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
13373
|
-
inputValue: import("vue").
|
|
10578
|
+
inputValue: import("vue").WritableComputedRef<string, string>;
|
|
13374
10579
|
handleSendMessage: () => Promise<void>;
|
|
13375
10580
|
handleMessagesScroll: (e: Event) => void;
|
|
13376
10581
|
scrollToBottom: () => void;
|
|
@@ -13385,12 +10590,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13385
10590
|
readonly profileButtonTooltip: string;
|
|
13386
10591
|
readonly unreadNotificationText: string;
|
|
13387
10592
|
readonly onAttachmentDownload: import("./interface").OnAttachmentDownload;
|
|
13388
|
-
readonly
|
|
10593
|
+
readonly inputValue: string;
|
|
13389
10594
|
readonly messages: ChatMessageData[];
|
|
13390
|
-
readonly loadingCount: number;
|
|
13391
|
-
readonly typingChatIds: (string | number | symbol)[];
|
|
13392
|
-
readonly onMessageRetry: (message: ChatMessageData) => void;
|
|
13393
|
-
readonly selectedChat: ChatListItemData;
|
|
13394
10595
|
readonly headerButtonProps: Partial<import("../..").ButtonProps>;
|
|
13395
10596
|
readonly headerIconProps: Partial<import("../..").IconProps>;
|
|
13396
10597
|
readonly headerShareButtonProps: Partial<import("../..").ButtonProps>;
|
|
@@ -13404,15 +10605,21 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13404
10605
|
readonly footerUploadProps: Partial<import("../..").UploadProps>;
|
|
13405
10606
|
readonly footerIconProps: Partial<import("../..").IconProps>;
|
|
13406
10607
|
readonly footerSuffixIconProps: Partial<import("../..").IconProps>;
|
|
13407
|
-
readonly
|
|
13408
|
-
readonly
|
|
13409
|
-
readonly
|
|
10608
|
+
readonly onMessageRetry: (message: ChatMessageData) => void;
|
|
10609
|
+
readonly bubbleActions: import("./interface").ChatBubbleAction[];
|
|
10610
|
+
readonly onAttachmentUpload: import("./interface").OnAttachmentUpload;
|
|
10611
|
+
readonly typingChatIds: (string | number | symbol)[];
|
|
13410
10612
|
readonly onChatClose: () => void;
|
|
13411
10613
|
readonly onChatShare: () => void;
|
|
13412
10614
|
readonly onUserProfile: () => void;
|
|
13413
|
-
readonly
|
|
10615
|
+
readonly onFooterInputChange: (value: string, chatId: ChatId) => void;
|
|
13414
10616
|
readonly onMessagesScrollToTop: () => void;
|
|
13415
10617
|
readonly onMessagesScrollToBottom: () => void;
|
|
10618
|
+
readonly loadingCount: number;
|
|
10619
|
+
readonly selectedChat: ChatListItemData;
|
|
10620
|
+
readonly showAttachButton: boolean;
|
|
10621
|
+
readonly onMessageSend: import("./interface").OnMessageSend;
|
|
10622
|
+
readonly 'onUpdate:inputValue': (value: string) => void;
|
|
13416
10623
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
13417
10624
|
P: {};
|
|
13418
10625
|
B: {};
|
|
@@ -13422,15 +10629,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13422
10629
|
Defaults: {};
|
|
13423
10630
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
13424
10631
|
readonly selectedChat: {
|
|
13425
|
-
readonly type: PropType<ChatListItemData>;
|
|
10632
|
+
readonly type: import("vue").PropType<ChatListItemData>;
|
|
10633
|
+
readonly default: undefined;
|
|
10634
|
+
};
|
|
10635
|
+
readonly inputValue: {
|
|
10636
|
+
readonly type: StringConstructor;
|
|
13426
10637
|
readonly default: undefined;
|
|
13427
10638
|
};
|
|
13428
10639
|
readonly messages: {
|
|
13429
|
-
readonly type: PropType<ChatMessageData[]>;
|
|
10640
|
+
readonly type: import("vue").PropType<ChatMessageData[]>;
|
|
13430
10641
|
readonly default: () => never[];
|
|
13431
10642
|
};
|
|
13432
10643
|
readonly typingChatIds: {
|
|
13433
|
-
readonly type: PropType<Array<string | number | symbol>>;
|
|
10644
|
+
readonly type: import("vue").PropType<Array<string | number | symbol>>;
|
|
13434
10645
|
readonly default: () => never[];
|
|
13435
10646
|
};
|
|
13436
10647
|
readonly loading: {
|
|
@@ -13442,55 +10653,55 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13442
10653
|
readonly default: 10;
|
|
13443
10654
|
};
|
|
13444
10655
|
readonly headerButtonProps: {
|
|
13445
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
10656
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
13446
10657
|
readonly default: undefined;
|
|
13447
10658
|
};
|
|
13448
10659
|
readonly headerIconProps: {
|
|
13449
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
10660
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
13450
10661
|
readonly default: undefined;
|
|
13451
10662
|
};
|
|
13452
10663
|
readonly headerShareButtonProps: {
|
|
13453
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
10664
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
13454
10665
|
readonly default: undefined;
|
|
13455
10666
|
};
|
|
13456
10667
|
readonly headerProfileButtonProps: {
|
|
13457
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
10668
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
13458
10669
|
readonly default: undefined;
|
|
13459
10670
|
};
|
|
13460
10671
|
readonly headerCloseButtonProps: {
|
|
13461
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
10672
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
13462
10673
|
readonly default: undefined;
|
|
13463
10674
|
};
|
|
13464
10675
|
readonly headerShareIconProps: {
|
|
13465
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
10676
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
13466
10677
|
readonly default: undefined;
|
|
13467
10678
|
};
|
|
13468
10679
|
readonly headerProfileIconProps: {
|
|
13469
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
10680
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
13470
10681
|
readonly default: undefined;
|
|
13471
10682
|
};
|
|
13472
10683
|
readonly messageUploadProps: {
|
|
13473
|
-
readonly type: PropType<Partial<import("../..").UploadProps>>;
|
|
10684
|
+
readonly type: import("vue").PropType<Partial<import("../..").UploadProps>>;
|
|
13474
10685
|
readonly default: undefined;
|
|
13475
10686
|
};
|
|
13476
10687
|
readonly footerInputProps: {
|
|
13477
|
-
readonly type: PropType<Partial<import("../..").InputProps>>;
|
|
10688
|
+
readonly type: import("vue").PropType<Partial<import("../..").InputProps>>;
|
|
13478
10689
|
readonly default: undefined;
|
|
13479
10690
|
};
|
|
13480
10691
|
readonly footerButtonProps: {
|
|
13481
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
10692
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
13482
10693
|
readonly default: undefined;
|
|
13483
10694
|
};
|
|
13484
10695
|
readonly footerUploadProps: {
|
|
13485
|
-
readonly type: PropType<Partial<import("../..").UploadProps>>;
|
|
10696
|
+
readonly type: import("vue").PropType<Partial<import("../..").UploadProps>>;
|
|
13486
10697
|
readonly default: undefined;
|
|
13487
10698
|
};
|
|
13488
10699
|
readonly footerIconProps: {
|
|
13489
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
10700
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
13490
10701
|
readonly default: undefined;
|
|
13491
10702
|
};
|
|
13492
10703
|
readonly footerSuffixIconProps: {
|
|
13493
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
10704
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
13494
10705
|
readonly default: undefined;
|
|
13495
10706
|
};
|
|
13496
10707
|
readonly showAttachButton: {
|
|
@@ -13526,50 +10737,54 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
13526
10737
|
readonly default: undefined;
|
|
13527
10738
|
};
|
|
13528
10739
|
readonly bubbleActions: {
|
|
13529
|
-
readonly type: PropType<import("./interface").ChatBubbleAction[]>;
|
|
10740
|
+
readonly type: import("vue").PropType<import("./interface").ChatBubbleAction[]>;
|
|
13530
10741
|
readonly default: undefined;
|
|
13531
10742
|
};
|
|
13532
10743
|
readonly onMessageSend: {
|
|
13533
|
-
readonly type: PropType<import("./interface").OnMessageSend>;
|
|
10744
|
+
readonly type: import("vue").PropType<import("./interface").OnMessageSend>;
|
|
13534
10745
|
readonly default: undefined;
|
|
13535
10746
|
};
|
|
13536
10747
|
readonly onMessageRetry: {
|
|
13537
|
-
readonly type: PropType<(message: ChatMessageData) => void>;
|
|
10748
|
+
readonly type: import("vue").PropType<(message: ChatMessageData) => void>;
|
|
13538
10749
|
readonly default: undefined;
|
|
13539
10750
|
};
|
|
13540
10751
|
readonly onFooterInputChange: {
|
|
13541
|
-
readonly type: PropType<(value: string, chatId: ChatId) => void>;
|
|
10752
|
+
readonly type: import("vue").PropType<(value: string, chatId: ChatId) => void>;
|
|
10753
|
+
readonly default: undefined;
|
|
10754
|
+
};
|
|
10755
|
+
readonly 'onUpdate:inputValue': {
|
|
10756
|
+
readonly type: import("vue").PropType<(value: string) => void>;
|
|
13542
10757
|
readonly default: undefined;
|
|
13543
10758
|
};
|
|
13544
10759
|
readonly onChatClose: {
|
|
13545
|
-
readonly type: PropType<() => void>;
|
|
10760
|
+
readonly type: import("vue").PropType<() => void>;
|
|
13546
10761
|
readonly default: undefined;
|
|
13547
10762
|
};
|
|
13548
10763
|
readonly onChatShare: {
|
|
13549
|
-
readonly type: PropType<() => void>;
|
|
10764
|
+
readonly type: import("vue").PropType<() => void>;
|
|
13550
10765
|
readonly default: undefined;
|
|
13551
10766
|
};
|
|
13552
10767
|
readonly onUserProfile: {
|
|
13553
|
-
readonly type: PropType<() => void>;
|
|
10768
|
+
readonly type: import("vue").PropType<() => void>;
|
|
13554
10769
|
readonly default: undefined;
|
|
13555
10770
|
};
|
|
13556
10771
|
readonly onAttachmentUpload: {
|
|
13557
|
-
readonly type: PropType<import("./interface").OnAttachmentUpload>;
|
|
10772
|
+
readonly type: import("vue").PropType<import("./interface").OnAttachmentUpload>;
|
|
13558
10773
|
readonly default: undefined;
|
|
13559
10774
|
};
|
|
13560
10775
|
readonly onAttachmentDownload: {
|
|
13561
|
-
readonly type: PropType<import("./interface").OnAttachmentDownload>;
|
|
10776
|
+
readonly type: import("vue").PropType<import("./interface").OnAttachmentDownload>;
|
|
13562
10777
|
readonly default: undefined;
|
|
13563
10778
|
};
|
|
13564
10779
|
readonly onMessagesScrollToTop: {
|
|
13565
|
-
readonly type: PropType<() => void>;
|
|
10780
|
+
readonly type: import("vue").PropType<() => void>;
|
|
13566
10781
|
readonly default: undefined;
|
|
13567
10782
|
};
|
|
13568
10783
|
readonly onMessagesScrollToBottom: {
|
|
13569
|
-
readonly type: PropType<() => void>;
|
|
10784
|
+
readonly type: import("vue").PropType<() => void>;
|
|
13570
10785
|
readonly default: undefined;
|
|
13571
10786
|
};
|
|
13572
|
-
readonly theme: PropType<import("../../_mixins").Theme<"Chat", {
|
|
10787
|
+
readonly theme: import("vue").PropType<import("../../_mixins").Theme<"Chat", {
|
|
13573
10788
|
backgroundColor: string;
|
|
13574
10789
|
borderColor: string;
|
|
13575
10790
|
sidebarBackgroundColor: string;
|
|
@@ -14424,7 +11639,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
14424
11639
|
opacity5Depth: string;
|
|
14425
11640
|
}, any>;
|
|
14426
11641
|
}>>;
|
|
14427
|
-
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
11642
|
+
readonly themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
14428
11643
|
backgroundColor: string;
|
|
14429
11644
|
borderColor: string;
|
|
14430
11645
|
sidebarBackgroundColor: string;
|
|
@@ -15279,7 +12494,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
15279
12494
|
opacity5Depth: string;
|
|
15280
12495
|
}, any>;
|
|
15281
12496
|
}>>>;
|
|
15282
|
-
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
12497
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
15283
12498
|
backgroundColor: string;
|
|
15284
12499
|
borderColor: string;
|
|
15285
12500
|
sidebarBackgroundColor: string;
|
|
@@ -19892,7 +17107,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
19892
17107
|
$el: HTMLElement;
|
|
19893
17108
|
} | undefined>;
|
|
19894
17109
|
inputRef: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
19895
|
-
inputValue: import("vue").
|
|
17110
|
+
inputValue: import("vue").WritableComputedRef<string, string>;
|
|
19896
17111
|
handleSendMessage: () => Promise<void>;
|
|
19897
17112
|
handleMessagesScroll: (e: Event) => void;
|
|
19898
17113
|
scrollToBottom: () => void;
|
|
@@ -19907,12 +17122,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
19907
17122
|
readonly profileButtonTooltip: string;
|
|
19908
17123
|
readonly unreadNotificationText: string;
|
|
19909
17124
|
readonly onAttachmentDownload: import("./interface").OnAttachmentDownload;
|
|
19910
|
-
readonly
|
|
17125
|
+
readonly inputValue: string;
|
|
19911
17126
|
readonly messages: ChatMessageData[];
|
|
19912
|
-
readonly loadingCount: number;
|
|
19913
|
-
readonly typingChatIds: (string | number | symbol)[];
|
|
19914
|
-
readonly onMessageRetry: (message: ChatMessageData) => void;
|
|
19915
|
-
readonly selectedChat: ChatListItemData;
|
|
19916
17127
|
readonly headerButtonProps: Partial<import("../..").ButtonProps>;
|
|
19917
17128
|
readonly headerIconProps: Partial<import("../..").IconProps>;
|
|
19918
17129
|
readonly headerShareButtonProps: Partial<import("../..").ButtonProps>;
|
|
@@ -19926,26 +17137,36 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
19926
17137
|
readonly footerUploadProps: Partial<import("../..").UploadProps>;
|
|
19927
17138
|
readonly footerIconProps: Partial<import("../..").IconProps>;
|
|
19928
17139
|
readonly footerSuffixIconProps: Partial<import("../..").IconProps>;
|
|
19929
|
-
readonly
|
|
19930
|
-
readonly
|
|
19931
|
-
readonly
|
|
17140
|
+
readonly onMessageRetry: (message: ChatMessageData) => void;
|
|
17141
|
+
readonly bubbleActions: import("./interface").ChatBubbleAction[];
|
|
17142
|
+
readonly onAttachmentUpload: import("./interface").OnAttachmentUpload;
|
|
17143
|
+
readonly typingChatIds: (string | number | symbol)[];
|
|
19932
17144
|
readonly onChatClose: () => void;
|
|
19933
17145
|
readonly onChatShare: () => void;
|
|
19934
17146
|
readonly onUserProfile: () => void;
|
|
19935
|
-
readonly
|
|
17147
|
+
readonly onFooterInputChange: (value: string, chatId: ChatId) => void;
|
|
19936
17148
|
readonly onMessagesScrollToTop: () => void;
|
|
19937
17149
|
readonly onMessagesScrollToBottom: () => void;
|
|
17150
|
+
readonly loadingCount: number;
|
|
17151
|
+
readonly selectedChat: ChatListItemData;
|
|
17152
|
+
readonly showAttachButton: boolean;
|
|
17153
|
+
readonly onMessageSend: import("./interface").OnMessageSend;
|
|
17154
|
+
readonly 'onUpdate:inputValue': (value: string) => void;
|
|
19938
17155
|
}> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
19939
17156
|
readonly selectedChat: {
|
|
19940
|
-
readonly type: PropType<ChatListItemData>;
|
|
17157
|
+
readonly type: import("vue").PropType<ChatListItemData>;
|
|
17158
|
+
readonly default: undefined;
|
|
17159
|
+
};
|
|
17160
|
+
readonly inputValue: {
|
|
17161
|
+
readonly type: StringConstructor;
|
|
19941
17162
|
readonly default: undefined;
|
|
19942
17163
|
};
|
|
19943
17164
|
readonly messages: {
|
|
19944
|
-
readonly type: PropType<ChatMessageData[]>;
|
|
17165
|
+
readonly type: import("vue").PropType<ChatMessageData[]>;
|
|
19945
17166
|
readonly default: () => never[];
|
|
19946
17167
|
};
|
|
19947
17168
|
readonly typingChatIds: {
|
|
19948
|
-
readonly type: PropType<Array<string | number | symbol>>;
|
|
17169
|
+
readonly type: import("vue").PropType<Array<string | number | symbol>>;
|
|
19949
17170
|
readonly default: () => never[];
|
|
19950
17171
|
};
|
|
19951
17172
|
readonly loading: {
|
|
@@ -19957,55 +17178,55 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
19957
17178
|
readonly default: 10;
|
|
19958
17179
|
};
|
|
19959
17180
|
readonly headerButtonProps: {
|
|
19960
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
17181
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
19961
17182
|
readonly default: undefined;
|
|
19962
17183
|
};
|
|
19963
17184
|
readonly headerIconProps: {
|
|
19964
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
17185
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
19965
17186
|
readonly default: undefined;
|
|
19966
17187
|
};
|
|
19967
17188
|
readonly headerShareButtonProps: {
|
|
19968
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
17189
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
19969
17190
|
readonly default: undefined;
|
|
19970
17191
|
};
|
|
19971
17192
|
readonly headerProfileButtonProps: {
|
|
19972
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
17193
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
19973
17194
|
readonly default: undefined;
|
|
19974
17195
|
};
|
|
19975
17196
|
readonly headerCloseButtonProps: {
|
|
19976
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
17197
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
19977
17198
|
readonly default: undefined;
|
|
19978
17199
|
};
|
|
19979
17200
|
readonly headerShareIconProps: {
|
|
19980
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
17201
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
19981
17202
|
readonly default: undefined;
|
|
19982
17203
|
};
|
|
19983
17204
|
readonly headerProfileIconProps: {
|
|
19984
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
17205
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
19985
17206
|
readonly default: undefined;
|
|
19986
17207
|
};
|
|
19987
17208
|
readonly messageUploadProps: {
|
|
19988
|
-
readonly type: PropType<Partial<import("../..").UploadProps>>;
|
|
17209
|
+
readonly type: import("vue").PropType<Partial<import("../..").UploadProps>>;
|
|
19989
17210
|
readonly default: undefined;
|
|
19990
17211
|
};
|
|
19991
17212
|
readonly footerInputProps: {
|
|
19992
|
-
readonly type: PropType<Partial<import("../..").InputProps>>;
|
|
17213
|
+
readonly type: import("vue").PropType<Partial<import("../..").InputProps>>;
|
|
19993
17214
|
readonly default: undefined;
|
|
19994
17215
|
};
|
|
19995
17216
|
readonly footerButtonProps: {
|
|
19996
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
17217
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
19997
17218
|
readonly default: undefined;
|
|
19998
17219
|
};
|
|
19999
17220
|
readonly footerUploadProps: {
|
|
20000
|
-
readonly type: PropType<Partial<import("../..").UploadProps>>;
|
|
17221
|
+
readonly type: import("vue").PropType<Partial<import("../..").UploadProps>>;
|
|
20001
17222
|
readonly default: undefined;
|
|
20002
17223
|
};
|
|
20003
17224
|
readonly footerIconProps: {
|
|
20004
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
17225
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
20005
17226
|
readonly default: undefined;
|
|
20006
17227
|
};
|
|
20007
17228
|
readonly footerSuffixIconProps: {
|
|
20008
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
17229
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
20009
17230
|
readonly default: undefined;
|
|
20010
17231
|
};
|
|
20011
17232
|
readonly showAttachButton: {
|
|
@@ -20041,50 +17262,54 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
20041
17262
|
readonly default: undefined;
|
|
20042
17263
|
};
|
|
20043
17264
|
readonly bubbleActions: {
|
|
20044
|
-
readonly type: PropType<import("./interface").ChatBubbleAction[]>;
|
|
17265
|
+
readonly type: import("vue").PropType<import("./interface").ChatBubbleAction[]>;
|
|
20045
17266
|
readonly default: undefined;
|
|
20046
17267
|
};
|
|
20047
17268
|
readonly onMessageSend: {
|
|
20048
|
-
readonly type: PropType<import("./interface").OnMessageSend>;
|
|
17269
|
+
readonly type: import("vue").PropType<import("./interface").OnMessageSend>;
|
|
20049
17270
|
readonly default: undefined;
|
|
20050
17271
|
};
|
|
20051
17272
|
readonly onMessageRetry: {
|
|
20052
|
-
readonly type: PropType<(message: ChatMessageData) => void>;
|
|
17273
|
+
readonly type: import("vue").PropType<(message: ChatMessageData) => void>;
|
|
20053
17274
|
readonly default: undefined;
|
|
20054
17275
|
};
|
|
20055
17276
|
readonly onFooterInputChange: {
|
|
20056
|
-
readonly type: PropType<(value: string, chatId: ChatId) => void>;
|
|
17277
|
+
readonly type: import("vue").PropType<(value: string, chatId: ChatId) => void>;
|
|
17278
|
+
readonly default: undefined;
|
|
17279
|
+
};
|
|
17280
|
+
readonly 'onUpdate:inputValue': {
|
|
17281
|
+
readonly type: import("vue").PropType<(value: string) => void>;
|
|
20057
17282
|
readonly default: undefined;
|
|
20058
17283
|
};
|
|
20059
17284
|
readonly onChatClose: {
|
|
20060
|
-
readonly type: PropType<() => void>;
|
|
17285
|
+
readonly type: import("vue").PropType<() => void>;
|
|
20061
17286
|
readonly default: undefined;
|
|
20062
17287
|
};
|
|
20063
17288
|
readonly onChatShare: {
|
|
20064
|
-
readonly type: PropType<() => void>;
|
|
17289
|
+
readonly type: import("vue").PropType<() => void>;
|
|
20065
17290
|
readonly default: undefined;
|
|
20066
17291
|
};
|
|
20067
17292
|
readonly onUserProfile: {
|
|
20068
|
-
readonly type: PropType<() => void>;
|
|
17293
|
+
readonly type: import("vue").PropType<() => void>;
|
|
20069
17294
|
readonly default: undefined;
|
|
20070
17295
|
};
|
|
20071
17296
|
readonly onAttachmentUpload: {
|
|
20072
|
-
readonly type: PropType<import("./interface").OnAttachmentUpload>;
|
|
17297
|
+
readonly type: import("vue").PropType<import("./interface").OnAttachmentUpload>;
|
|
20073
17298
|
readonly default: undefined;
|
|
20074
17299
|
};
|
|
20075
17300
|
readonly onAttachmentDownload: {
|
|
20076
|
-
readonly type: PropType<import("./interface").OnAttachmentDownload>;
|
|
17301
|
+
readonly type: import("vue").PropType<import("./interface").OnAttachmentDownload>;
|
|
20077
17302
|
readonly default: undefined;
|
|
20078
17303
|
};
|
|
20079
17304
|
readonly onMessagesScrollToTop: {
|
|
20080
|
-
readonly type: PropType<() => void>;
|
|
17305
|
+
readonly type: import("vue").PropType<() => void>;
|
|
20081
17306
|
readonly default: undefined;
|
|
20082
17307
|
};
|
|
20083
17308
|
readonly onMessagesScrollToBottom: {
|
|
20084
|
-
readonly type: PropType<() => void>;
|
|
17309
|
+
readonly type: import("vue").PropType<() => void>;
|
|
20085
17310
|
readonly default: undefined;
|
|
20086
17311
|
};
|
|
20087
|
-
readonly theme: PropType<import("../../_mixins").Theme<"Chat", {
|
|
17312
|
+
readonly theme: import("vue").PropType<import("../../_mixins").Theme<"Chat", {
|
|
20088
17313
|
backgroundColor: string;
|
|
20089
17314
|
borderColor: string;
|
|
20090
17315
|
sidebarBackgroundColor: string;
|
|
@@ -20939,7 +18164,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
20939
18164
|
opacity5Depth: string;
|
|
20940
18165
|
}, any>;
|
|
20941
18166
|
}>>;
|
|
20942
|
-
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
18167
|
+
readonly themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
20943
18168
|
backgroundColor: string;
|
|
20944
18169
|
borderColor: string;
|
|
20945
18170
|
sidebarBackgroundColor: string;
|
|
@@ -21794,7 +19019,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
21794
19019
|
opacity5Depth: string;
|
|
21795
19020
|
}, any>;
|
|
21796
19021
|
}>>>;
|
|
21797
|
-
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
19022
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
21798
19023
|
backgroundColor: string;
|
|
21799
19024
|
borderColor: string;
|
|
21800
19025
|
sidebarBackgroundColor: string;
|
|
@@ -26407,7 +23632,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
26407
23632
|
$el: HTMLElement;
|
|
26408
23633
|
} | undefined>;
|
|
26409
23634
|
inputRef: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
26410
|
-
inputValue: import("vue").
|
|
23635
|
+
inputValue: import("vue").WritableComputedRef<string, string>;
|
|
26411
23636
|
handleSendMessage: () => Promise<void>;
|
|
26412
23637
|
handleMessagesScroll: (e: Event) => void;
|
|
26413
23638
|
scrollToBottom: () => void;
|
|
@@ -26422,12 +23647,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
26422
23647
|
readonly profileButtonTooltip: string;
|
|
26423
23648
|
readonly unreadNotificationText: string;
|
|
26424
23649
|
readonly onAttachmentDownload: import("./interface").OnAttachmentDownload;
|
|
26425
|
-
readonly
|
|
23650
|
+
readonly inputValue: string;
|
|
26426
23651
|
readonly messages: ChatMessageData[];
|
|
26427
|
-
readonly loadingCount: number;
|
|
26428
|
-
readonly typingChatIds: (string | number | symbol)[];
|
|
26429
|
-
readonly onMessageRetry: (message: ChatMessageData) => void;
|
|
26430
|
-
readonly selectedChat: ChatListItemData;
|
|
26431
23652
|
readonly headerButtonProps: Partial<import("../..").ButtonProps>;
|
|
26432
23653
|
readonly headerIconProps: Partial<import("../..").IconProps>;
|
|
26433
23654
|
readonly headerShareButtonProps: Partial<import("../..").ButtonProps>;
|
|
@@ -26441,15 +23662,21 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
26441
23662
|
readonly footerUploadProps: Partial<import("../..").UploadProps>;
|
|
26442
23663
|
readonly footerIconProps: Partial<import("../..").IconProps>;
|
|
26443
23664
|
readonly footerSuffixIconProps: Partial<import("../..").IconProps>;
|
|
26444
|
-
readonly
|
|
26445
|
-
readonly
|
|
26446
|
-
readonly
|
|
23665
|
+
readonly onMessageRetry: (message: ChatMessageData) => void;
|
|
23666
|
+
readonly bubbleActions: import("./interface").ChatBubbleAction[];
|
|
23667
|
+
readonly onAttachmentUpload: import("./interface").OnAttachmentUpload;
|
|
23668
|
+
readonly typingChatIds: (string | number | symbol)[];
|
|
26447
23669
|
readonly onChatClose: () => void;
|
|
26448
23670
|
readonly onChatShare: () => void;
|
|
26449
23671
|
readonly onUserProfile: () => void;
|
|
26450
|
-
readonly
|
|
23672
|
+
readonly onFooterInputChange: (value: string, chatId: ChatId) => void;
|
|
26451
23673
|
readonly onMessagesScrollToTop: () => void;
|
|
26452
23674
|
readonly onMessagesScrollToBottom: () => void;
|
|
23675
|
+
readonly loadingCount: number;
|
|
23676
|
+
readonly selectedChat: ChatListItemData;
|
|
23677
|
+
readonly showAttachButton: boolean;
|
|
23678
|
+
readonly onMessageSend: import("./interface").OnMessageSend;
|
|
23679
|
+
readonly 'onUpdate:inputValue': (value: string) => void;
|
|
26453
23680
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
26454
23681
|
P: {};
|
|
26455
23682
|
B: {};
|
|
@@ -26459,15 +23686,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
26459
23686
|
Defaults: {};
|
|
26460
23687
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
26461
23688
|
readonly selectedChat: {
|
|
26462
|
-
readonly type: PropType<ChatListItemData>;
|
|
23689
|
+
readonly type: import("vue").PropType<ChatListItemData>;
|
|
23690
|
+
readonly default: undefined;
|
|
23691
|
+
};
|
|
23692
|
+
readonly inputValue: {
|
|
23693
|
+
readonly type: StringConstructor;
|
|
26463
23694
|
readonly default: undefined;
|
|
26464
23695
|
};
|
|
26465
23696
|
readonly messages: {
|
|
26466
|
-
readonly type: PropType<ChatMessageData[]>;
|
|
23697
|
+
readonly type: import("vue").PropType<ChatMessageData[]>;
|
|
26467
23698
|
readonly default: () => never[];
|
|
26468
23699
|
};
|
|
26469
23700
|
readonly typingChatIds: {
|
|
26470
|
-
readonly type: PropType<Array<string | number | symbol>>;
|
|
23701
|
+
readonly type: import("vue").PropType<Array<string | number | symbol>>;
|
|
26471
23702
|
readonly default: () => never[];
|
|
26472
23703
|
};
|
|
26473
23704
|
readonly loading: {
|
|
@@ -26479,55 +23710,55 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
26479
23710
|
readonly default: 10;
|
|
26480
23711
|
};
|
|
26481
23712
|
readonly headerButtonProps: {
|
|
26482
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
23713
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
26483
23714
|
readonly default: undefined;
|
|
26484
23715
|
};
|
|
26485
23716
|
readonly headerIconProps: {
|
|
26486
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
23717
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
26487
23718
|
readonly default: undefined;
|
|
26488
23719
|
};
|
|
26489
23720
|
readonly headerShareButtonProps: {
|
|
26490
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
23721
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
26491
23722
|
readonly default: undefined;
|
|
26492
23723
|
};
|
|
26493
23724
|
readonly headerProfileButtonProps: {
|
|
26494
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
23725
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
26495
23726
|
readonly default: undefined;
|
|
26496
23727
|
};
|
|
26497
23728
|
readonly headerCloseButtonProps: {
|
|
26498
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
23729
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
26499
23730
|
readonly default: undefined;
|
|
26500
23731
|
};
|
|
26501
23732
|
readonly headerShareIconProps: {
|
|
26502
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
23733
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
26503
23734
|
readonly default: undefined;
|
|
26504
23735
|
};
|
|
26505
23736
|
readonly headerProfileIconProps: {
|
|
26506
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
23737
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
26507
23738
|
readonly default: undefined;
|
|
26508
23739
|
};
|
|
26509
23740
|
readonly messageUploadProps: {
|
|
26510
|
-
readonly type: PropType<Partial<import("../..").UploadProps>>;
|
|
23741
|
+
readonly type: import("vue").PropType<Partial<import("../..").UploadProps>>;
|
|
26511
23742
|
readonly default: undefined;
|
|
26512
23743
|
};
|
|
26513
23744
|
readonly footerInputProps: {
|
|
26514
|
-
readonly type: PropType<Partial<import("../..").InputProps>>;
|
|
23745
|
+
readonly type: import("vue").PropType<Partial<import("../..").InputProps>>;
|
|
26515
23746
|
readonly default: undefined;
|
|
26516
23747
|
};
|
|
26517
23748
|
readonly footerButtonProps: {
|
|
26518
|
-
readonly type: PropType<Partial<import("../..").ButtonProps>>;
|
|
23749
|
+
readonly type: import("vue").PropType<Partial<import("../..").ButtonProps>>;
|
|
26519
23750
|
readonly default: undefined;
|
|
26520
23751
|
};
|
|
26521
23752
|
readonly footerUploadProps: {
|
|
26522
|
-
readonly type: PropType<Partial<import("../..").UploadProps>>;
|
|
23753
|
+
readonly type: import("vue").PropType<Partial<import("../..").UploadProps>>;
|
|
26523
23754
|
readonly default: undefined;
|
|
26524
23755
|
};
|
|
26525
23756
|
readonly footerIconProps: {
|
|
26526
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
23757
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
26527
23758
|
readonly default: undefined;
|
|
26528
23759
|
};
|
|
26529
23760
|
readonly footerSuffixIconProps: {
|
|
26530
|
-
readonly type: PropType<Partial<import("../..").IconProps>>;
|
|
23761
|
+
readonly type: import("vue").PropType<Partial<import("../..").IconProps>>;
|
|
26531
23762
|
readonly default: undefined;
|
|
26532
23763
|
};
|
|
26533
23764
|
readonly showAttachButton: {
|
|
@@ -26563,50 +23794,54 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
26563
23794
|
readonly default: undefined;
|
|
26564
23795
|
};
|
|
26565
23796
|
readonly bubbleActions: {
|
|
26566
|
-
readonly type: PropType<import("./interface").ChatBubbleAction[]>;
|
|
23797
|
+
readonly type: import("vue").PropType<import("./interface").ChatBubbleAction[]>;
|
|
26567
23798
|
readonly default: undefined;
|
|
26568
23799
|
};
|
|
26569
23800
|
readonly onMessageSend: {
|
|
26570
|
-
readonly type: PropType<import("./interface").OnMessageSend>;
|
|
23801
|
+
readonly type: import("vue").PropType<import("./interface").OnMessageSend>;
|
|
26571
23802
|
readonly default: undefined;
|
|
26572
23803
|
};
|
|
26573
23804
|
readonly onMessageRetry: {
|
|
26574
|
-
readonly type: PropType<(message: ChatMessageData) => void>;
|
|
23805
|
+
readonly type: import("vue").PropType<(message: ChatMessageData) => void>;
|
|
26575
23806
|
readonly default: undefined;
|
|
26576
23807
|
};
|
|
26577
23808
|
readonly onFooterInputChange: {
|
|
26578
|
-
readonly type: PropType<(value: string, chatId: ChatId) => void>;
|
|
23809
|
+
readonly type: import("vue").PropType<(value: string, chatId: ChatId) => void>;
|
|
23810
|
+
readonly default: undefined;
|
|
23811
|
+
};
|
|
23812
|
+
readonly 'onUpdate:inputValue': {
|
|
23813
|
+
readonly type: import("vue").PropType<(value: string) => void>;
|
|
26579
23814
|
readonly default: undefined;
|
|
26580
23815
|
};
|
|
26581
23816
|
readonly onChatClose: {
|
|
26582
|
-
readonly type: PropType<() => void>;
|
|
23817
|
+
readonly type: import("vue").PropType<() => void>;
|
|
26583
23818
|
readonly default: undefined;
|
|
26584
23819
|
};
|
|
26585
23820
|
readonly onChatShare: {
|
|
26586
|
-
readonly type: PropType<() => void>;
|
|
23821
|
+
readonly type: import("vue").PropType<() => void>;
|
|
26587
23822
|
readonly default: undefined;
|
|
26588
23823
|
};
|
|
26589
23824
|
readonly onUserProfile: {
|
|
26590
|
-
readonly type: PropType<() => void>;
|
|
23825
|
+
readonly type: import("vue").PropType<() => void>;
|
|
26591
23826
|
readonly default: undefined;
|
|
26592
23827
|
};
|
|
26593
23828
|
readonly onAttachmentUpload: {
|
|
26594
|
-
readonly type: PropType<import("./interface").OnAttachmentUpload>;
|
|
23829
|
+
readonly type: import("vue").PropType<import("./interface").OnAttachmentUpload>;
|
|
26595
23830
|
readonly default: undefined;
|
|
26596
23831
|
};
|
|
26597
23832
|
readonly onAttachmentDownload: {
|
|
26598
|
-
readonly type: PropType<import("./interface").OnAttachmentDownload>;
|
|
23833
|
+
readonly type: import("vue").PropType<import("./interface").OnAttachmentDownload>;
|
|
26599
23834
|
readonly default: undefined;
|
|
26600
23835
|
};
|
|
26601
23836
|
readonly onMessagesScrollToTop: {
|
|
26602
|
-
readonly type: PropType<() => void>;
|
|
23837
|
+
readonly type: import("vue").PropType<() => void>;
|
|
26603
23838
|
readonly default: undefined;
|
|
26604
23839
|
};
|
|
26605
23840
|
readonly onMessagesScrollToBottom: {
|
|
26606
|
-
readonly type: PropType<() => void>;
|
|
23841
|
+
readonly type: import("vue").PropType<() => void>;
|
|
26607
23842
|
readonly default: undefined;
|
|
26608
23843
|
};
|
|
26609
|
-
readonly theme: PropType<import("../../_mixins").Theme<"Chat", {
|
|
23844
|
+
readonly theme: import("vue").PropType<import("../../_mixins").Theme<"Chat", {
|
|
26610
23845
|
backgroundColor: string;
|
|
26611
23846
|
borderColor: string;
|
|
26612
23847
|
sidebarBackgroundColor: string;
|
|
@@ -27461,7 +24696,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
27461
24696
|
opacity5Depth: string;
|
|
27462
24697
|
}, any>;
|
|
27463
24698
|
}>>;
|
|
27464
|
-
readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
24699
|
+
readonly themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
27465
24700
|
backgroundColor: string;
|
|
27466
24701
|
borderColor: string;
|
|
27467
24702
|
sidebarBackgroundColor: string;
|
|
@@ -28316,7 +25551,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
28316
25551
|
opacity5Depth: string;
|
|
28317
25552
|
}, any>;
|
|
28318
25553
|
}>>>;
|
|
28319
|
-
readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
25554
|
+
readonly builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
28320
25555
|
backgroundColor: string;
|
|
28321
25556
|
borderColor: string;
|
|
28322
25557
|
sidebarBackgroundColor: string;
|
|
@@ -32929,7 +30164,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
32929
30164
|
$el: HTMLElement;
|
|
32930
30165
|
} | undefined>;
|
|
32931
30166
|
inputRef: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
32932
|
-
inputValue: import("vue").
|
|
30167
|
+
inputValue: import("vue").WritableComputedRef<string, string>;
|
|
32933
30168
|
handleSendMessage: () => Promise<void>;
|
|
32934
30169
|
handleMessagesScroll: (e: Event) => void;
|
|
32935
30170
|
scrollToBottom: () => void;
|
|
@@ -32944,12 +30179,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
32944
30179
|
readonly profileButtonTooltip: string;
|
|
32945
30180
|
readonly unreadNotificationText: string;
|
|
32946
30181
|
readonly onAttachmentDownload: import("./interface").OnAttachmentDownload;
|
|
32947
|
-
readonly
|
|
30182
|
+
readonly inputValue: string;
|
|
32948
30183
|
readonly messages: ChatMessageData[];
|
|
32949
|
-
readonly loadingCount: number;
|
|
32950
|
-
readonly typingChatIds: (string | number | symbol)[];
|
|
32951
|
-
readonly onMessageRetry: (message: ChatMessageData) => void;
|
|
32952
|
-
readonly selectedChat: ChatListItemData;
|
|
32953
30184
|
readonly headerButtonProps: Partial<import("../..").ButtonProps>;
|
|
32954
30185
|
readonly headerIconProps: Partial<import("../..").IconProps>;
|
|
32955
30186
|
readonly headerShareButtonProps: Partial<import("../..").ButtonProps>;
|
|
@@ -32963,254 +30194,264 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
32963
30194
|
readonly footerUploadProps: Partial<import("../..").UploadProps>;
|
|
32964
30195
|
readonly footerIconProps: Partial<import("../..").IconProps>;
|
|
32965
30196
|
readonly footerSuffixIconProps: Partial<import("../..").IconProps>;
|
|
32966
|
-
readonly
|
|
32967
|
-
readonly
|
|
32968
|
-
readonly
|
|
30197
|
+
readonly onMessageRetry: (message: ChatMessageData) => void;
|
|
30198
|
+
readonly bubbleActions: import("./interface").ChatBubbleAction[];
|
|
30199
|
+
readonly onAttachmentUpload: import("./interface").OnAttachmentUpload;
|
|
30200
|
+
readonly typingChatIds: (string | number | symbol)[];
|
|
32969
30201
|
readonly onChatClose: () => void;
|
|
32970
30202
|
readonly onChatShare: () => void;
|
|
32971
30203
|
readonly onUserProfile: () => void;
|
|
32972
|
-
readonly
|
|
30204
|
+
readonly onFooterInputChange: (value: string, chatId: ChatId) => void;
|
|
32973
30205
|
readonly onMessagesScrollToTop: () => void;
|
|
32974
30206
|
readonly onMessagesScrollToBottom: () => void;
|
|
30207
|
+
readonly loadingCount: number;
|
|
30208
|
+
readonly selectedChat: ChatListItemData;
|
|
30209
|
+
readonly showAttachButton: boolean;
|
|
30210
|
+
readonly onMessageSend: import("./interface").OnMessageSend;
|
|
30211
|
+
readonly 'onUpdate:inputValue': (value: string) => void;
|
|
32975
30212
|
}> | null>;
|
|
32976
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("message-retry" | "update:selectedChatId" | "message-send" | "attachment-upload" | "mark-messages-read" | "filter-change" | "footer-input-change" | "network-error" | "upload-error" | "send-error" | "chat-items-scroll-to-top" | "chat-items-scroll-to-bottom" | "messages-scroll-to-top" | "messages-scroll-to-bottom")[], "message-retry" | "update:selectedChatId" | "message-send" | "attachment-upload" | "mark-messages-read" | "filter-change" | "footer-input-change" | "network-error" | "upload-error" | "send-error" | "chat-items-scroll-to-top" | "chat-items-scroll-to-bottom" | "messages-scroll-to-top" | "messages-scroll-to-bottom", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
30213
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("message-retry" | "update:selectedChatId" | "update:inputValue" | "message-send" | "attachment-upload" | "mark-messages-read" | "filter-change" | "footer-input-change" | "network-error" | "upload-error" | "send-error" | "chat-items-scroll-to-top" | "chat-items-scroll-to-bottom" | "messages-scroll-to-top" | "messages-scroll-to-bottom")[], "message-retry" | "update:selectedChatId" | "update:inputValue" | "message-send" | "attachment-upload" | "mark-messages-read" | "filter-change" | "footer-input-change" | "network-error" | "upload-error" | "send-error" | "chat-items-scroll-to-top" | "chat-items-scroll-to-bottom" | "messages-scroll-to-top" | "messages-scroll-to-bottom", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
32977
30214
|
chatItems: {
|
|
32978
|
-
type: PropType<
|
|
30215
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["chatItems"]>;
|
|
32979
30216
|
default: () => never[];
|
|
32980
30217
|
};
|
|
32981
30218
|
selectedChatId: {
|
|
32982
|
-
type: PropType<
|
|
30219
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["selectedChatId"]>;
|
|
30220
|
+
default: undefined;
|
|
30221
|
+
};
|
|
30222
|
+
inputValue: {
|
|
30223
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["inputValue"]>;
|
|
32983
30224
|
default: undefined;
|
|
32984
30225
|
};
|
|
32985
30226
|
messages: {
|
|
32986
|
-
type: PropType<
|
|
30227
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["messages"]>;
|
|
32987
30228
|
default: () => never[];
|
|
32988
30229
|
};
|
|
32989
30230
|
typingChatIds: {
|
|
32990
|
-
type: PropType<Array<string | number | symbol>>;
|
|
30231
|
+
type: import("vue").PropType<Array<string | number | symbol>>;
|
|
32991
30232
|
default: () => never[];
|
|
32992
30233
|
};
|
|
32993
30234
|
disabled: {
|
|
32994
|
-
type: PropType<
|
|
30235
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["disabled"]>;
|
|
32995
30236
|
default: boolean;
|
|
32996
30237
|
};
|
|
32997
30238
|
listEmptyProps: {
|
|
32998
|
-
type: PropType<Partial<
|
|
30239
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["listEmptyProps"]>>;
|
|
32999
30240
|
default: undefined;
|
|
33000
30241
|
};
|
|
33001
30242
|
listHeaderTitle: {
|
|
33002
|
-
type: PropType<
|
|
30243
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["listHeaderTitle"]>;
|
|
33003
30244
|
default: string;
|
|
33004
30245
|
};
|
|
33005
30246
|
listHeaderActions: {
|
|
33006
|
-
type: PropType<
|
|
30247
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["listHeaderActions"]>;
|
|
33007
30248
|
default: () => never[];
|
|
33008
30249
|
};
|
|
33009
30250
|
listHeaderButtonProps: {
|
|
33010
|
-
type: PropType<Partial<
|
|
30251
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["listHeaderButtonProps"]>>;
|
|
33011
30252
|
default: undefined;
|
|
33012
30253
|
};
|
|
33013
30254
|
listHeaderIconProps: {
|
|
33014
|
-
type: PropType<Partial<
|
|
30255
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["listHeaderIconProps"]>>;
|
|
33015
30256
|
default: undefined;
|
|
33016
30257
|
};
|
|
33017
30258
|
listItemAvatarProps: {
|
|
33018
|
-
type: PropType<Partial<
|
|
30259
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["listItemAvatarProps"]>>;
|
|
33019
30260
|
default: undefined;
|
|
33020
30261
|
};
|
|
33021
30262
|
listItemBadgeProps: {
|
|
33022
|
-
type: PropType<Partial<
|
|
30263
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["listItemBadgeProps"]>>;
|
|
33023
30264
|
default: undefined;
|
|
33024
30265
|
};
|
|
33025
30266
|
headerTitle: {
|
|
33026
|
-
type: PropType<
|
|
30267
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["headerTitle"]>;
|
|
33027
30268
|
default: undefined;
|
|
33028
30269
|
};
|
|
33029
30270
|
headerActions: {
|
|
33030
|
-
type: PropType<
|
|
30271
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["headerActions"]>;
|
|
33031
30272
|
default: () => never[];
|
|
33032
30273
|
};
|
|
33033
30274
|
headerButtonProps: {
|
|
33034
|
-
type: PropType<Partial<
|
|
30275
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["headerButtonProps"]>>;
|
|
33035
30276
|
default: undefined;
|
|
33036
30277
|
};
|
|
33037
30278
|
headerIconProps: {
|
|
33038
|
-
type: PropType<Partial<
|
|
30279
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["headerIconProps"]>>;
|
|
33039
30280
|
default: undefined;
|
|
33040
30281
|
};
|
|
33041
30282
|
headerShareButtonProps: {
|
|
33042
|
-
type: PropType<Partial<
|
|
30283
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["headerShareButtonProps"]>>;
|
|
33043
30284
|
default: undefined;
|
|
33044
30285
|
};
|
|
33045
30286
|
headerProfileButtonProps: {
|
|
33046
|
-
type: PropType<Partial<
|
|
30287
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["headerProfileButtonProps"]>>;
|
|
33047
30288
|
default: undefined;
|
|
33048
30289
|
};
|
|
33049
30290
|
headerCloseButtonProps: {
|
|
33050
|
-
type: PropType<Partial<
|
|
30291
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["headerCloseButtonProps"]>>;
|
|
33051
30292
|
default: undefined;
|
|
33052
30293
|
};
|
|
33053
30294
|
headerShareIconProps: {
|
|
33054
|
-
type: PropType<Partial<
|
|
30295
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["headerShareIconProps"]>>;
|
|
33055
30296
|
default: undefined;
|
|
33056
30297
|
};
|
|
33057
30298
|
headerProfileIconProps: {
|
|
33058
|
-
type: PropType<Partial<
|
|
30299
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["headerProfileIconProps"]>>;
|
|
33059
30300
|
default: undefined;
|
|
33060
30301
|
};
|
|
33061
30302
|
messageSenderAvatarProps: {
|
|
33062
|
-
type: PropType<Partial<
|
|
30303
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["messageSenderAvatarProps"]>>;
|
|
33063
30304
|
default: undefined;
|
|
33064
30305
|
};
|
|
33065
30306
|
messageUploadProps: {
|
|
33066
|
-
type: PropType<Partial<
|
|
30307
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["messageUploadProps"]>>;
|
|
33067
30308
|
default: undefined;
|
|
33068
30309
|
};
|
|
33069
30310
|
messageButtonProps: {
|
|
33070
|
-
type: PropType<Partial<
|
|
30311
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["messageButtonProps"]>>;
|
|
33071
30312
|
default: undefined;
|
|
33072
30313
|
};
|
|
33073
30314
|
footerInputProps: {
|
|
33074
|
-
type: PropType<Partial<
|
|
30315
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["footerInputProps"]>>;
|
|
33075
30316
|
default: undefined;
|
|
33076
30317
|
};
|
|
33077
30318
|
footerButtonProps: {
|
|
33078
|
-
type: PropType<Partial<
|
|
30319
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["footerButtonProps"]>>;
|
|
33079
30320
|
default: undefined;
|
|
33080
30321
|
};
|
|
33081
30322
|
footerUploadProps: {
|
|
33082
|
-
type: PropType<Partial<
|
|
30323
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["footerUploadProps"]>>;
|
|
33083
30324
|
default: undefined;
|
|
33084
30325
|
};
|
|
33085
30326
|
footerUploadTriggerProps: {
|
|
33086
|
-
type: PropType<
|
|
30327
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["footerUploadTriggerProps"]>;
|
|
33087
30328
|
default: undefined;
|
|
33088
30329
|
};
|
|
33089
30330
|
footerIconProps: {
|
|
33090
|
-
type: PropType<Partial<
|
|
30331
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["footerIconProps"]>>;
|
|
33091
30332
|
default: undefined;
|
|
33092
30333
|
};
|
|
33093
30334
|
footerSuffixIconProps: {
|
|
33094
|
-
type: PropType<Partial<
|
|
30335
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["footerSuffixIconProps"]>>;
|
|
33095
30336
|
default: undefined;
|
|
33096
30337
|
};
|
|
33097
30338
|
emptyProps: {
|
|
33098
|
-
type: PropType<Partial<
|
|
30339
|
+
type: import("vue").PropType<Partial<import("./interface").ChatPropsInterface["emptyProps"]>>;
|
|
33099
30340
|
default: undefined;
|
|
33100
30341
|
};
|
|
33101
30342
|
retryText: {
|
|
33102
|
-
type: PropType<
|
|
30343
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["retryText"]>;
|
|
33103
30344
|
default: undefined;
|
|
33104
30345
|
};
|
|
33105
30346
|
typingText: {
|
|
33106
|
-
type: PropType<
|
|
30347
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["typingText"]>;
|
|
33107
30348
|
default: undefined;
|
|
33108
30349
|
};
|
|
33109
30350
|
closeButtonText: {
|
|
33110
|
-
type: PropType<
|
|
30351
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["closeButtonText"]>;
|
|
33111
30352
|
default: undefined;
|
|
33112
30353
|
};
|
|
33113
30354
|
shareButtonTooltip: {
|
|
33114
|
-
type: PropType<
|
|
30355
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["shareButtonTooltip"]>;
|
|
33115
30356
|
default: undefined;
|
|
33116
30357
|
};
|
|
33117
30358
|
profileButtonTooltip: {
|
|
33118
|
-
type: PropType<
|
|
30359
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["profileButtonTooltip"]>;
|
|
33119
30360
|
default: undefined;
|
|
33120
30361
|
};
|
|
33121
30362
|
unreadNotificationText: {
|
|
33122
|
-
type: PropType<
|
|
30363
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["unreadNotificationText"]>;
|
|
33123
30364
|
default: undefined;
|
|
33124
30365
|
};
|
|
33125
30366
|
chatItemsLoading: {
|
|
33126
|
-
type: PropType<
|
|
30367
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["chatItemsLoading"]>;
|
|
33127
30368
|
default: boolean;
|
|
33128
30369
|
};
|
|
33129
30370
|
chatItemsLoadingCount: {
|
|
33130
|
-
type: PropType<
|
|
30371
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["chatItemsLoadingCount"]>;
|
|
33131
30372
|
default: number;
|
|
33132
30373
|
};
|
|
33133
30374
|
messagesLoading: {
|
|
33134
|
-
type: PropType<
|
|
30375
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["messagesLoading"]>;
|
|
33135
30376
|
default: boolean;
|
|
33136
30377
|
};
|
|
33137
30378
|
messagesLoadingCount: {
|
|
33138
|
-
type: PropType<
|
|
30379
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["messagesLoadingCount"]>;
|
|
33139
30380
|
default: number;
|
|
33140
30381
|
};
|
|
33141
30382
|
height: {
|
|
33142
|
-
type: PropType<string | number>;
|
|
30383
|
+
type: import("vue").PropType<string | number>;
|
|
33143
30384
|
default: number;
|
|
33144
30385
|
};
|
|
33145
30386
|
onChatSelect: {
|
|
33146
|
-
type: PropType<
|
|
30387
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onChatSelect"]>;
|
|
33147
30388
|
default: undefined;
|
|
33148
30389
|
};
|
|
33149
30390
|
onMessageRetry: {
|
|
33150
|
-
type: PropType<
|
|
30391
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onMessageRetry"]>;
|
|
33151
30392
|
default: undefined;
|
|
33152
30393
|
};
|
|
33153
30394
|
bubbleActions: {
|
|
33154
|
-
type: PropType<
|
|
30395
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["bubbleActions"]>;
|
|
33155
30396
|
default: undefined;
|
|
33156
30397
|
};
|
|
33157
30398
|
onChatClose: {
|
|
33158
|
-
type: PropType<() => void>;
|
|
30399
|
+
type: import("vue").PropType<() => void>;
|
|
33159
30400
|
default: undefined;
|
|
33160
30401
|
};
|
|
33161
30402
|
onChatShare: {
|
|
33162
|
-
type: PropType<() => void>;
|
|
30403
|
+
type: import("vue").PropType<() => void>;
|
|
33163
30404
|
default: undefined;
|
|
33164
30405
|
};
|
|
33165
30406
|
onUserProfile: {
|
|
33166
|
-
type: PropType<() => void>;
|
|
30407
|
+
type: import("vue").PropType<() => void>;
|
|
33167
30408
|
default: undefined;
|
|
33168
30409
|
};
|
|
33169
30410
|
onAttachmentUpload: {
|
|
33170
|
-
type: PropType<
|
|
30411
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onAttachmentUpload"]>;
|
|
33171
30412
|
default: undefined;
|
|
33172
30413
|
};
|
|
33173
30414
|
onAttachmentDownload: {
|
|
33174
|
-
type: PropType<
|
|
30415
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onAttachmentDownload"]>;
|
|
33175
30416
|
default: undefined;
|
|
33176
30417
|
};
|
|
33177
30418
|
onFilterChange: {
|
|
33178
|
-
type: PropType<
|
|
30419
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onFilterChange"]>;
|
|
33179
30420
|
default: undefined;
|
|
33180
30421
|
};
|
|
33181
30422
|
onFooterInputChange: {
|
|
33182
|
-
type: PropType<(value: string, chatId: ChatId) => void>;
|
|
30423
|
+
type: import("vue").PropType<(value: string, chatId: ChatId) => void>;
|
|
33183
30424
|
default: undefined;
|
|
33184
30425
|
};
|
|
33185
30426
|
onNetworkError: {
|
|
33186
|
-
type: PropType<
|
|
30427
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onNetworkError"]>;
|
|
33187
30428
|
default: undefined;
|
|
33188
30429
|
};
|
|
33189
30430
|
onUploadError: {
|
|
33190
|
-
type: PropType<
|
|
30431
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onUploadError"]>;
|
|
33191
30432
|
default: undefined;
|
|
33192
30433
|
};
|
|
33193
30434
|
onSendError: {
|
|
33194
|
-
type: PropType<
|
|
30435
|
+
type: import("vue").PropType<import("./interface").ChatPropsInterface["onSendError"]>;
|
|
33195
30436
|
default: undefined;
|
|
33196
30437
|
};
|
|
33197
30438
|
onChatItemsScrollToTop: {
|
|
33198
|
-
type: PropType<() => void>;
|
|
30439
|
+
type: import("vue").PropType<() => void>;
|
|
33199
30440
|
default: undefined;
|
|
33200
30441
|
};
|
|
33201
30442
|
onChatItemsScrollToBottom: {
|
|
33202
|
-
type: PropType<() => void>;
|
|
30443
|
+
type: import("vue").PropType<() => void>;
|
|
33203
30444
|
default: undefined;
|
|
33204
30445
|
};
|
|
33205
30446
|
onMessagesScrollToTop: {
|
|
33206
|
-
type: PropType<() => void>;
|
|
30447
|
+
type: import("vue").PropType<() => void>;
|
|
33207
30448
|
default: undefined;
|
|
33208
30449
|
};
|
|
33209
30450
|
onMessagesScrollToBottom: {
|
|
33210
|
-
type: PropType<() => void>;
|
|
30451
|
+
type: import("vue").PropType<() => void>;
|
|
33211
30452
|
default: undefined;
|
|
33212
30453
|
};
|
|
33213
|
-
theme: PropType<import("../../_mixins").Theme<"Chat", {
|
|
30454
|
+
theme: import("vue").PropType<import("../../_mixins").Theme<"Chat", {
|
|
33214
30455
|
backgroundColor: string;
|
|
33215
30456
|
borderColor: string;
|
|
33216
30457
|
sidebarBackgroundColor: string;
|
|
@@ -34065,7 +31306,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
34065
31306
|
opacity5Depth: string;
|
|
34066
31307
|
}, any>;
|
|
34067
31308
|
}>>;
|
|
34068
|
-
themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
31309
|
+
themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
34069
31310
|
backgroundColor: string;
|
|
34070
31311
|
borderColor: string;
|
|
34071
31312
|
sidebarBackgroundColor: string;
|
|
@@ -34920,7 +32161,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
34920
32161
|
opacity5Depth: string;
|
|
34921
32162
|
}, any>;
|
|
34922
32163
|
}>>>;
|
|
34923
|
-
builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
32164
|
+
builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Chat", {
|
|
34924
32165
|
backgroundColor: string;
|
|
34925
32166
|
borderColor: string;
|
|
34926
32167
|
sidebarBackgroundColor: string;
|
|
@@ -35776,6 +33017,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
35776
33017
|
}, any>;
|
|
35777
33018
|
}>>>;
|
|
35778
33019
|
}>> & Readonly<{
|
|
33020
|
+
"onUpdate:inputValue"?: ((...args: any[]) => any) | undefined;
|
|
35779
33021
|
"onMessage-retry"?: ((...args: any[]) => any) | undefined;
|
|
35780
33022
|
"onUpdate:selectedChatId"?: ((...args: any[]) => any) | undefined;
|
|
35781
33023
|
"onMessage-send"?: ((...args: any[]) => any) | undefined;
|
|
@@ -35801,11 +33043,19 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
35801
33043
|
disabled: boolean | undefined;
|
|
35802
33044
|
emptyProps: Partial<Partial<import("../..").EmptyProps> | undefined>;
|
|
35803
33045
|
onAttachmentDownload: import("./interface").OnAttachmentDownload | undefined;
|
|
35804
|
-
|
|
35805
|
-
messages: ChatMessageData[] | undefined;
|
|
35806
|
-
typingChatIds: (string | number | symbol)[];
|
|
33046
|
+
chatItems: ChatListItemData[] | undefined;
|
|
35807
33047
|
selectedChatId: ChatId | undefined;
|
|
35808
|
-
|
|
33048
|
+
inputValue: string | undefined;
|
|
33049
|
+
messages: ChatMessageData[] | undefined;
|
|
33050
|
+
listEmptyProps: Partial<Partial<import("../..").EmptyProps> | undefined>;
|
|
33051
|
+
listHeaderTitle: string | (() => import("vue").VNodeChild) | undefined;
|
|
33052
|
+
listHeaderActions: (() => import("vue").VNodeChild)[] | undefined;
|
|
33053
|
+
listHeaderButtonProps: Partial<Partial<import("../..").ButtonProps> | undefined>;
|
|
33054
|
+
listHeaderIconProps: Partial<Partial<import("../..").IconProps> | undefined>;
|
|
33055
|
+
listItemAvatarProps: Partial<Partial<import("../..").AvatarProps> | undefined>;
|
|
33056
|
+
listItemBadgeProps: Partial<Partial<import("../..").BadgeProps> | undefined>;
|
|
33057
|
+
headerTitle: string | (() => import("vue").VNodeChild) | undefined;
|
|
33058
|
+
headerActions: (() => import("vue").VNodeChild)[] | undefined;
|
|
35809
33059
|
headerButtonProps: Partial<Partial<import("../..").ButtonProps> | undefined>;
|
|
35810
33060
|
headerIconProps: Partial<Partial<import("../..").IconProps> | undefined>;
|
|
35811
33061
|
headerShareButtonProps: Partial<Partial<import("../..").ButtonProps> | undefined>;
|
|
@@ -35813,42 +33063,35 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
35813
33063
|
headerCloseButtonProps: Partial<Partial<import("../..").ButtonProps> | undefined>;
|
|
35814
33064
|
headerShareIconProps: Partial<Partial<import("../..").IconProps> | undefined>;
|
|
35815
33065
|
headerProfileIconProps: Partial<Partial<import("../..").IconProps> | undefined>;
|
|
33066
|
+
messageSenderAvatarProps: Partial<Partial<import("../..").AvatarProps> | undefined>;
|
|
35816
33067
|
messageUploadProps: Partial<Partial<import("../..").UploadProps> | undefined>;
|
|
33068
|
+
messageButtonProps: Partial<Partial<import("../..").ButtonProps> | undefined>;
|
|
35817
33069
|
footerInputProps: Partial<Partial<import("../..").InputProps> | undefined>;
|
|
35818
33070
|
footerButtonProps: Partial<Partial<import("../..").ButtonProps> | undefined>;
|
|
35819
33071
|
footerUploadProps: Partial<Partial<import("../..").UploadProps> | undefined>;
|
|
33072
|
+
footerUploadTriggerProps: any;
|
|
35820
33073
|
footerIconProps: Partial<Partial<import("../..").IconProps> | undefined>;
|
|
35821
33074
|
footerSuffixIconProps: Partial<Partial<import("../..").IconProps> | undefined>;
|
|
35822
|
-
onFooterInputChange: (value: string, chatId: ChatId) => void;
|
|
35823
|
-
onChatClose: () => void;
|
|
35824
|
-
onChatShare: () => void;
|
|
35825
|
-
onUserProfile: () => void;
|
|
35826
|
-
onAttachmentUpload: import("./interface").OnAttachmentUpload | undefined;
|
|
35827
|
-
onMessagesScrollToTop: () => void;
|
|
35828
|
-
onMessagesScrollToBottom: () => void;
|
|
35829
|
-
headerActions: (() => import("vue").VNodeChild)[] | undefined;
|
|
35830
|
-
chatItems: ChatListItemData[] | undefined;
|
|
35831
|
-
onChatSelect: import("./interface").OnChatSelect | undefined;
|
|
35832
|
-
onChatItemsScrollToTop: () => void;
|
|
35833
|
-
onChatItemsScrollToBottom: () => void;
|
|
35834
|
-
listEmptyProps: Partial<Partial<import("../..").EmptyProps> | undefined>;
|
|
35835
|
-
listHeaderTitle: string | (() => import("vue").VNodeChild) | undefined;
|
|
35836
|
-
listHeaderActions: (() => import("vue").VNodeChild)[] | undefined;
|
|
35837
|
-
listHeaderButtonProps: Partial<Partial<import("../..").ButtonProps> | undefined>;
|
|
35838
|
-
listHeaderIconProps: Partial<Partial<import("../..").IconProps> | undefined>;
|
|
35839
|
-
listItemAvatarProps: Partial<Partial<import("../..").AvatarProps> | undefined>;
|
|
35840
|
-
listItemBadgeProps: Partial<Partial<import("../..").BadgeProps> | undefined>;
|
|
35841
|
-
headerTitle: string | (() => import("vue").VNodeChild) | undefined;
|
|
35842
|
-
messageSenderAvatarProps: Partial<Partial<import("../..").AvatarProps> | undefined>;
|
|
35843
|
-
messageButtonProps: Partial<Partial<import("../..").ButtonProps> | undefined>;
|
|
35844
|
-
footerUploadTriggerProps: any;
|
|
35845
33075
|
chatItemsLoading: boolean | undefined;
|
|
35846
33076
|
chatItemsLoadingCount: number | undefined;
|
|
35847
33077
|
messagesLoading: boolean | undefined;
|
|
35848
33078
|
messagesLoadingCount: number | undefined;
|
|
33079
|
+
onChatSelect: import("./interface").OnChatSelect | undefined;
|
|
33080
|
+
onMessageRetry: ((message: ChatMessageData) => void) | undefined;
|
|
33081
|
+
bubbleActions: import("./interface").ChatBubbleAction[] | undefined;
|
|
33082
|
+
onAttachmentUpload: import("./interface").OnAttachmentUpload | undefined;
|
|
35849
33083
|
onFilterChange: import("./interface").OnFilterChange | undefined;
|
|
35850
33084
|
onNetworkError: import("./interface").OnNetworkError | undefined;
|
|
35851
33085
|
onUploadError: import("./interface").OnUploadError | undefined;
|
|
35852
33086
|
onSendError: import("./interface").OnSendError | undefined;
|
|
33087
|
+
typingChatIds: (string | number | symbol)[];
|
|
33088
|
+
onChatClose: () => void;
|
|
33089
|
+
onChatShare: () => void;
|
|
33090
|
+
onUserProfile: () => void;
|
|
33091
|
+
onFooterInputChange: (value: string, chatId: ChatId) => void;
|
|
33092
|
+
onChatItemsScrollToTop: () => void;
|
|
33093
|
+
onChatItemsScrollToBottom: () => void;
|
|
33094
|
+
onMessagesScrollToTop: () => void;
|
|
33095
|
+
onMessagesScrollToBottom: () => void;
|
|
35853
33096
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
35854
33097
|
export default _default;
|