@mobilon-dev/chotto 0.3.25 → 0.3.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{CreateChat-CNWNXaD9.js → CreateChat-BwBQCc_I.js} +1 -1
- package/dist/{CreateChat2-J1zCJAH1.js → CreateChat2-CyF5uUuO.js} +1 -1
- package/dist/{CreateDialog-D_VjGFWg.js → CreateDialog-BXoypGLs.js} +1 -1
- package/dist/{ModalVideoRecorder-BumRO5hZ.js → ModalVideoRecorder-D5_csjI8.js} +1 -1
- package/dist/{SelectUser2-DsxsLuNu.js → SelectUser2-D06UxtTo.js} +1 -1
- package/dist/chotto.css +1 -1
- package/dist/{index-D8kOhf51.js → index-BCeTdBth.js} +4722 -4146
- package/dist/themes/dark.css +1 -1
- package/dist/themes/default.css +1 -1
- package/dist/themes/green.css +1 -1
- package/dist/themes/mobilon1.css +1 -1
- package/dist/types/apps/data/chats.d.ts +63 -0
- package/dist/types/apps/data/messages.d.ts +801 -143
- package/dist/types/components/1_atoms/ContextMenu/styles/types.d.ts +4 -0
- package/dist/types/components/2_blocks/CommunicationPanel/composables/useCommunicationChannels.d.ts +1 -1
- package/dist/types/components/2_blocks/CommunicationPanel/stories/CommunicationPanel.stories.d.ts +1 -0
- package/dist/types/components/2_chatlist_elements/ChatItem/types.d.ts +1 -0
- package/dist/types/components/2_elements/ChatInfo/styles/types.d.ts +2 -0
- package/dist/types/components/2_feed_elements/AudioMessage/styles/types.d.ts +116 -18
- package/dist/types/components/2_feed_elements/CallMessage/CallMessage.vue.d.ts +8 -2
- package/dist/types/components/2_feed_elements/CallMessage/icons/IncomingCallIcon.vue.d.ts +7 -0
- package/dist/types/components/2_feed_elements/CallMessage/icons/OutgoingCallIcon.vue.d.ts +7 -0
- package/dist/types/components/2_feed_elements/CallMessage/stories/CallMessage.stories.d.ts +0 -15
- package/dist/types/components/2_feed_elements/CallMessage/styles/types.d.ts +226 -0
- package/dist/types/components/2_feed_elements/ImageMessage/styles/types.d.ts +12 -10
- package/dist/types/components/2_feed_elements/TextMessage/styles/types.d.ts +0 -2
- package/dist/types/components/2_feed_elements/VideoMessage/styles/types.d.ts +2 -0
- package/dist/types/components/2_feed_elements/types/messages.d.ts +16 -1
- package/dist/types/components/3_compounds/ChatInput/ChatInput.vue.d.ts +22 -0
- package/dist/types/components/3_compounds/ChatInput/icons/SendIcon.vue.d.ts +7 -0
- package/dist/types/components/3_compounds/ChatInput/icons/index.d.ts +1 -0
- package/dist/types/components/3_compounds/ChatList/styles/types.d.ts +2 -0
- package/dist/types/functions/getChannelAccentColor.d.ts +1 -0
- package/dist/types/functions/index.d.ts +1 -0
- package/dist/types/hooks/messages/index.d.ts +1 -0
- package/dist/types/hooks/messages/useChannelAccentColor.d.ts +35 -0
- package/dist/vuessages.es.js +62 -60
- package/dist/vuessages.umd.js +30 -30
- package/package.json +1 -1
|
@@ -56,4 +56,8 @@ export interface ContextMenuThemeCSSVariables {
|
|
|
56
56
|
'--chotto-contextmenu-item-hover-background-color': string;
|
|
57
57
|
/** Граница снизу элемента контекстного меню (не последний) */
|
|
58
58
|
'--chotto-contextmenu-item-not-last-child-border-bottom': string;
|
|
59
|
+
/** Непрозрачность отключенного элемента контекстного меню */
|
|
60
|
+
'--chotto-contextmenu-item-disabled-opacity': string;
|
|
61
|
+
/** Курсор отключенного элемента контекстного меню */
|
|
62
|
+
'--chotto-contextmenu-item-disabled-cursor': string;
|
|
59
63
|
}
|
package/dist/types/components/2_blocks/CommunicationPanel/composables/useCommunicationChannels.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ interface UseCommunicationChannelsOptions {
|
|
|
26
26
|
}
|
|
27
27
|
export declare function useCommunicationChannels({ channels, channelTooltips, selectedChannelType }: UseCommunicationChannelsOptions): {
|
|
28
28
|
channelsTypes: ComputedRef<{
|
|
29
|
-
type: "phone" | "whatsapp" | "telegram" | "
|
|
29
|
+
type: "phone" | "whatsapp" | "telegram" | "sms" | "max";
|
|
30
30
|
component: Component;
|
|
31
31
|
}[]>;
|
|
32
32
|
getTooltipText: (channelType: string) => string;
|
|
@@ -10,6 +10,8 @@ export interface ChatInfoThemeCSSVariables {
|
|
|
10
10
|
'--chotto-chatinfo-container-border-bottom': string;
|
|
11
11
|
/** Цвет фона контейнера информации о чате */
|
|
12
12
|
'--chotto-chatinfo-container-background-color': string;
|
|
13
|
+
/** Максимальная высота контейнера информации о чате */
|
|
14
|
+
'--chotto-chatinfo-container-max-height': string;
|
|
13
15
|
/** Отображение базовой линии */
|
|
14
16
|
'--chotto-chatinfo-base-line-display': string;
|
|
15
17
|
/** Выравнивание элементов базовой линии по вертикали */
|
|
@@ -22,8 +22,18 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
22
22
|
'--chotto-audiomessage-content-max-width': string;
|
|
23
23
|
/** Минимальная ширина контейнера */
|
|
24
24
|
'--chotto-audiomessage-content-min-width': string;
|
|
25
|
-
/**
|
|
26
|
-
'--chotto-audiomessage-content-
|
|
25
|
+
/** Минимальная высота контейнера */
|
|
26
|
+
'--chotto-audiomessage-content-min-height': string;
|
|
27
|
+
/** Высота контейнера */
|
|
28
|
+
'--chotto-audiomessage-content-height': string;
|
|
29
|
+
/** Внутренний отступ сверху контейнера */
|
|
30
|
+
'--chotto-audiomessage-content-padding-top': string;
|
|
31
|
+
/** Внутренний отступ справа контейнера */
|
|
32
|
+
'--chotto-audiomessage-content-padding-right': string;
|
|
33
|
+
/** Внутренний отступ снизу контейнера */
|
|
34
|
+
'--chotto-audiomessage-content-padding-bottom': string;
|
|
35
|
+
/** Внутренний отступ слева контейнера */
|
|
36
|
+
'--chotto-audiomessage-content-padding-left': string;
|
|
27
37
|
/** Контент псевдоэлемента "хвостик" слева */
|
|
28
38
|
'--chotto-audiomessage-left-arrow-content': string;
|
|
29
39
|
/** Позиционирование хвостика слева */
|
|
@@ -56,8 +66,6 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
56
66
|
'--chotto-audiomessage-right-arrow-height': string;
|
|
57
67
|
/** Базовая рамка хвостика справа */
|
|
58
68
|
'--chotto-audiomessage-right-arrow-border': string;
|
|
59
|
-
/** Верхняя часть рамки хвостика справа (цвет пузыря) */
|
|
60
|
-
'--chotto-audiomessage-right-arrow-border-top': string;
|
|
61
69
|
/** Слой псевдоэлемента справа */
|
|
62
70
|
'--chotto-audiomessage-right-arrow-z-index': string;
|
|
63
71
|
/** Позиционирование контейнера аудио-плеера */
|
|
@@ -68,14 +76,14 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
68
76
|
'--chotto-audiomessage-audio-container-grid-template-columns': string;
|
|
69
77
|
/** Промежуток между колонками плеера */
|
|
70
78
|
'--chotto-audiomessage-audio-container-column-gap': string;
|
|
71
|
-
/** Максимальная ширина контейнера плеера */
|
|
72
|
-
'--chotto-audiomessage-audio-container-max-width': string;
|
|
73
79
|
/** Скругление контейнера плеера */
|
|
74
80
|
'--chotto-audiomessage-audio-container-border-radius': string;
|
|
75
81
|
/** Внутренние отступы контейнера плеера */
|
|
76
82
|
'--chotto-audiomessage-audio-container-padding': string;
|
|
77
83
|
/** Захват двух колонок в сетке */
|
|
78
84
|
'--chotto-audiomessage-audio-container-grid-column': string;
|
|
85
|
+
/** Выравнивание элементов контейнера аудио-плеера */
|
|
86
|
+
'--chotto-audiomessage-audio-container-align-items': string;
|
|
79
87
|
/** Граница кнопки play/pause */
|
|
80
88
|
'--chotto-audiomessage-play-pause-border': string;
|
|
81
89
|
/** Курсор кнопки play/pause */
|
|
@@ -90,7 +98,19 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
90
98
|
'--chotto-audiomessage-play-pause-height': string;
|
|
91
99
|
/** Скругление кнопки play/pause */
|
|
92
100
|
'--chotto-audiomessage-play-pause-border-radius': string;
|
|
101
|
+
/** Отображение кнопки play/pause */
|
|
102
|
+
'--chotto-audiomessage-play-pause-display': string;
|
|
103
|
+
/** Выравнивание элементов кнопки play/pause */
|
|
104
|
+
'--chotto-audiomessage-play-pause-align-items': string;
|
|
105
|
+
/** Выравнивание содержимого кнопки play/pause */
|
|
106
|
+
'--chotto-audiomessage-play-pause-justify-content': string;
|
|
93
107
|
/** Отображение иконки play/pause */
|
|
108
|
+
'--chotto-audiomessage-play-pause-icon-display': string;
|
|
109
|
+
/** Выравнивание элементов иконки play/pause */
|
|
110
|
+
'--chotto-audiomessage-play-pause-icon-align-items': string;
|
|
111
|
+
/** Выравнивание содержимого иконки play/pause */
|
|
112
|
+
'--chotto-audiomessage-play-pause-icon-justify-content': string;
|
|
113
|
+
/** Отображение иконки play/pause (legacy) */
|
|
94
114
|
'--chotto-audiomessage-play-pause-span-display': string;
|
|
95
115
|
/** Позиционирование иконки play/pause */
|
|
96
116
|
'--chotto-audiomessage-play-pause-span-position': string;
|
|
@@ -116,6 +136,26 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
116
136
|
'--chotto-audiomessage-progress-bar-margin-top': string;
|
|
117
137
|
/** Отступ слева прогресс-бара */
|
|
118
138
|
'--chotto-audiomessage-progress-bar-margin-left': string;
|
|
139
|
+
/** Высота трека прогресс-бара */
|
|
140
|
+
'--chotto-audiomessage-progress-bar-track-height': string;
|
|
141
|
+
/** Фон прогресса прогресс-бара */
|
|
142
|
+
'--chotto-audiomessage-progress-bar-progress-background': string;
|
|
143
|
+
/** Flex-свойство прогресс-бара */
|
|
144
|
+
'--chotto-audiomessage-progress-bar-flex': string;
|
|
145
|
+
/** Ширина прогресс-бара */
|
|
146
|
+
'--chotto-audiomessage-progress-bar-width': string;
|
|
147
|
+
/** Колонка грида обёртки прогресс-бара */
|
|
148
|
+
'--chotto-audiomessage-progress-wrapper-grid-column': string;
|
|
149
|
+
/** Ряд грида обёртки прогресс-бара */
|
|
150
|
+
'--chotto-audiomessage-progress-wrapper-grid-row': string;
|
|
151
|
+
/** Отображение обёртки прогресс-бара */
|
|
152
|
+
'--chotto-audiomessage-progress-wrapper-display': string;
|
|
153
|
+
/** Выравнивание элементов обёртки прогресс-бара */
|
|
154
|
+
'--chotto-audiomessage-progress-wrapper-align-items': string;
|
|
155
|
+
/** Промежуток между колонками обёртки прогресс-бара */
|
|
156
|
+
'--chotto-audiomessage-progress-wrapper-column-gap': string;
|
|
157
|
+
/** Выравнивание обёртки прогресс-бара */
|
|
158
|
+
'--chotto-audiomessage-progress-wrapper-align-self': string;
|
|
119
159
|
/** Ширина бегунка прогресс-бара */
|
|
120
160
|
'--chotto-audiomessage-progress-bar-thumb-width': string;
|
|
121
161
|
/** Высота бегунка прогресс-бара */
|
|
@@ -128,10 +168,20 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
128
168
|
'--chotto-audiomessage-progress-bar-thumb-border-radius': string;
|
|
129
169
|
/** Тень бегунка (для заливки полосы) */
|
|
130
170
|
'--chotto-audiomessage-progress-bar-thumb-box-shadow': string;
|
|
171
|
+
/** Отступ сверху бегунка прогресс-бара */
|
|
172
|
+
'--chotto-audiomessage-progress-bar-thumb-margin-top': string;
|
|
173
|
+
/** Колонка грида блока управления плеером */
|
|
174
|
+
'--chotto-audiomessage-player-controls-grid-column': string;
|
|
175
|
+
/** Ряд грида блока управления плеером */
|
|
176
|
+
'--chotto-audiomessage-player-controls-grid-row': string;
|
|
131
177
|
/** Отображение блока управления плеером */
|
|
132
178
|
'--chotto-audiomessage-player-controls-display': string;
|
|
133
179
|
/** Выравнивание элементов управления плеером */
|
|
134
180
|
'--chotto-audiomessage-player-controls-justify-content': string;
|
|
181
|
+
/** Отступ сверху блока управления плеером */
|
|
182
|
+
'--chotto-audiomessage-player-controls-margin-top': string;
|
|
183
|
+
/** Дополнительное смещение блока управления плеером */
|
|
184
|
+
'--chotto-audiomessage-player-controls-extra-offset': string;
|
|
135
185
|
/** Отображение контейнера кнопок скорости */
|
|
136
186
|
'--chotto-audiomessage-speed-btn-container-display': string;
|
|
137
187
|
/** Промежуток между кнопками скорости */
|
|
@@ -152,12 +202,18 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
152
202
|
'--chotto-audiomessage-speed-btn-hover-font-weight': string;
|
|
153
203
|
/** Толщина шрифта выбранной кнопки */
|
|
154
204
|
'--chotto-audiomessage-speed-btn-selected-font-weight': string;
|
|
155
|
-
/**
|
|
156
|
-
'--chotto-audiomessage-
|
|
157
|
-
/** Отступ
|
|
158
|
-
'--chotto-audiomessage-
|
|
159
|
-
/**
|
|
160
|
-
'--chotto-audiomessage-
|
|
205
|
+
/** Цвет текста кнопки скорости */
|
|
206
|
+
'--chotto-audiomessage-speed-btn-text-color': string;
|
|
207
|
+
/** Отступ времени */
|
|
208
|
+
'--chotto-audiomessage-time-margin': string;
|
|
209
|
+
/** Толщина шрифта времени */
|
|
210
|
+
'--chotto-audiomessage-time-font-weight': string;
|
|
211
|
+
/** Цвет времени */
|
|
212
|
+
'--chotto-audiomessage-time-color': string;
|
|
213
|
+
/** Отступ слева длительности */
|
|
214
|
+
'--chotto-audiomessage-duration-margin-left': string;
|
|
215
|
+
/** Выравнивание текста длительности */
|
|
216
|
+
'--chotto-audiomessage-duration-text-align': string;
|
|
161
217
|
/** Выравнивание аватара */
|
|
162
218
|
'--chotto-audiomessage-avatar-align-self': string;
|
|
163
219
|
/** Вписывание изображения аватара */
|
|
@@ -168,16 +224,20 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
168
224
|
'--chotto-audiomessage-avatar-min-height': string;
|
|
169
225
|
/** Скругление аватара */
|
|
170
226
|
'--chotto-audiomessage-avatar-border-radius': string;
|
|
171
|
-
/**
|
|
172
|
-
'--chotto-audiomessage-info-container-
|
|
173
|
-
/** Отступ
|
|
174
|
-
'--chotto-audiomessage-info-container-
|
|
227
|
+
/** Позиционирование инфо-контейнера */
|
|
228
|
+
'--chotto-audiomessage-info-container-position': string;
|
|
229
|
+
/** Отступ справа инфо-контейнера */
|
|
230
|
+
'--chotto-audiomessage-info-container-right': string;
|
|
231
|
+
/** Отступ снизу инфо-контейнера */
|
|
232
|
+
'--chotto-audiomessage-info-container-bottom': string;
|
|
175
233
|
/** Отображение инфо-контейнера */
|
|
176
234
|
'--chotto-audiomessage-info-container-display': string;
|
|
177
235
|
/** Выравнивание элементов инфо-контейнера */
|
|
178
236
|
'--chotto-audiomessage-info-container-align-items': string;
|
|
179
237
|
/** Промежуток между элементами инфо-контейнера */
|
|
180
238
|
'--chotto-audiomessage-info-container-column-gap': string;
|
|
239
|
+
/** События указателя инфо-контейнера */
|
|
240
|
+
'--chotto-audiomessage-info-container-pointer-events': string;
|
|
181
241
|
/** Позиционирование кнопки скачивания */
|
|
182
242
|
'--chotto-audiomessage-download-button-position': string;
|
|
183
243
|
/** Отступ справа кнопки скачивания */
|
|
@@ -220,6 +280,8 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
220
280
|
'--chotto-audiomessage-menu-button-cursor': string;
|
|
221
281
|
/** Переход кнопки меню */
|
|
222
282
|
'--chotto-audiomessage-menu-button-transition': string;
|
|
283
|
+
/** Z-index кнопки меню */
|
|
284
|
+
'--chotto-audiomessage-menu-button-z-index': string;
|
|
223
285
|
/** Позиционирование контекстного меню */
|
|
224
286
|
'--chotto-audiomessage-context-menu-position': string;
|
|
225
287
|
/** Колонка грида текстового контейнера */
|
|
@@ -256,6 +318,20 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
256
318
|
'--chotto-audiomessage-transcript-delimiter-height': string;
|
|
257
319
|
/** Скругление разделителя */
|
|
258
320
|
'--chotto-audiomessage-transcript-delimiter-border-radius': string;
|
|
321
|
+
/** Колонка грида реакций */
|
|
322
|
+
'--chotto-audiomessage-reactions-grid-column': string;
|
|
323
|
+
/** Отступ сверху реакций */
|
|
324
|
+
'--chotto-audiomessage-reactions-margin-top': string;
|
|
325
|
+
/** Отступ снизу реакций */
|
|
326
|
+
'--chotto-audiomessage-reactions-margin-bottom': string;
|
|
327
|
+
/** Перенос строк реакций */
|
|
328
|
+
'--chotto-audiomessage-reactions-flex-wrap': string;
|
|
329
|
+
/** Максимальная ширина реакций */
|
|
330
|
+
'--chotto-audiomessage-reactions-max-width': string;
|
|
331
|
+
/** Внутренний отступ справа реакций */
|
|
332
|
+
'--chotto-audiomessage-reactions-padding-right': string;
|
|
333
|
+
/** Внутренний отступ снизу реакций */
|
|
334
|
+
'--chotto-audiomessage-reactions-padding-bottom': string;
|
|
259
335
|
/** Отображение общего контейнера лево/право */
|
|
260
336
|
'--chotto-audiomessage-left-right-display': string;
|
|
261
337
|
/** Шаблон колонок левой раскладки */
|
|
@@ -280,12 +356,24 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
280
356
|
'--chotto-audiomessage-left-menu-button-top': string;
|
|
281
357
|
/** Положение кнопки меню слева (right) */
|
|
282
358
|
'--chotto-audiomessage-left-menu-button-right': string;
|
|
359
|
+
/** Положение кнопки меню слева (bottom) */
|
|
360
|
+
'--chotto-audiomessage-left-menu-button-bottom': string;
|
|
361
|
+
/** Положение кнопки меню слева (left) */
|
|
362
|
+
'--chotto-audiomessage-left-menu-button-left': string;
|
|
283
363
|
/** Позиция контекстного меню слева (top) */
|
|
284
364
|
'--chotto-audiomessage-left-context-menu-top': string;
|
|
285
365
|
/** Позиция контекстного меню слева (left) */
|
|
286
366
|
'--chotto-audiomessage-left-context-menu-left': string;
|
|
287
367
|
/** Отступ контекстного меню слева сверху */
|
|
288
368
|
'--chotto-audiomessage-left-context-menu-margin-top': string;
|
|
369
|
+
/** Ширина контекстного меню слева */
|
|
370
|
+
'--chotto-audiomessage-left-context-menu-width': string;
|
|
371
|
+
/** Высота контекстного меню слева */
|
|
372
|
+
'--chotto-audiomessage-left-context-menu-height': string;
|
|
373
|
+
/** Промежуток между строками контекстного меню слева */
|
|
374
|
+
'--chotto-audiomessage-left-context-menu-row-gap': string;
|
|
375
|
+
/** Внутренние отступы контекстного меню слева */
|
|
376
|
+
'--chotto-audiomessage-left-context-menu-padding': string;
|
|
289
377
|
/** Шаблон колонок правой раскладки */
|
|
290
378
|
'--chotto-audiomessage-right-grid-template-columns': string;
|
|
291
379
|
/** Колонка грида аватара справа */
|
|
@@ -310,12 +398,24 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
310
398
|
'--chotto-audiomessage-right-menu-button-top': string;
|
|
311
399
|
/** Положение кнопки меню справа (left) */
|
|
312
400
|
'--chotto-audiomessage-right-menu-button-left': string;
|
|
401
|
+
/** Положение кнопки меню справа (bottom) */
|
|
402
|
+
'--chotto-audiomessage-right-menu-button-bottom': string;
|
|
403
|
+
/** Положение кнопки меню справа (right) */
|
|
404
|
+
'--chotto-audiomessage-right-menu-button-right': string;
|
|
313
405
|
/** Позиция контекстного меню справа (top) */
|
|
314
406
|
'--chotto-audiomessage-right-context-menu-top': string;
|
|
315
407
|
/** Позиция контекстного меню справа (right) */
|
|
316
408
|
'--chotto-audiomessage-right-context-menu-right': string;
|
|
317
409
|
/** Отступ контекстного меню справа сверху */
|
|
318
410
|
'--chotto-audiomessage-right-context-menu-margin-top': string;
|
|
411
|
+
/** Ширина контекстного меню справа */
|
|
412
|
+
'--chotto-audiomessage-right-context-menu-width': string;
|
|
413
|
+
/** Высота контекстного меню справа */
|
|
414
|
+
'--chotto-audiomessage-right-context-menu-height': string;
|
|
415
|
+
/** Промежуток между строками контекстного меню справа */
|
|
416
|
+
'--chotto-audiomessage-right-context-menu-row-gap': string;
|
|
417
|
+
/** Внутренние отступы контекстного меню справа */
|
|
418
|
+
'--chotto-audiomessage-right-context-menu-padding': string;
|
|
319
419
|
/** Позиционирование модального окна */
|
|
320
420
|
'--chotto-audiomessage-modal-position': string;
|
|
321
421
|
/** Отступ сверху модального окна */
|
|
@@ -378,8 +478,6 @@ export interface AudioMessageThemeCSSVariables {
|
|
|
378
478
|
'--chotto-audiomessage-type-icon-color': string;
|
|
379
479
|
/** Размер шрифта кнопки скорости */
|
|
380
480
|
'--chotto-audiomessage-speed-btn-font-size': string;
|
|
381
|
-
/** Размер шрифта оставшегося времени */
|
|
382
|
-
'--chotto-audiomessage-remaining-time-font-size': string;
|
|
383
481
|
/** Размер шрифта подписи */
|
|
384
482
|
'--chotto-audiomessage-subtext-font-size': string;
|
|
385
483
|
/** Цвет текста подписи */
|
|
@@ -8,7 +8,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
8
8
|
type: FunctionConstructor;
|
|
9
9
|
default: () => null;
|
|
10
10
|
};
|
|
11
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
12
|
+
reply: (...args: any[]) => void;
|
|
13
|
+
action: (...args: any[]) => void;
|
|
14
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
15
|
message: {
|
|
13
16
|
type: () => ICallMessage;
|
|
14
17
|
required: true;
|
|
@@ -17,7 +20,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
|
|
|
17
20
|
type: FunctionConstructor;
|
|
18
21
|
default: () => null;
|
|
19
22
|
};
|
|
20
|
-
}>> & Readonly<{
|
|
23
|
+
}>> & Readonly<{
|
|
24
|
+
onReply?: ((...args: any[]) => any) | undefined;
|
|
25
|
+
onAction?: ((...args: any[]) => any) | undefined;
|
|
26
|
+
}>, {
|
|
21
27
|
applyStyle: Function;
|
|
22
28
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
23
29
|
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
color?: string;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
+
color: string;
|
|
6
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
color?: string;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
5
|
+
color: string;
|
|
6
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
7
|
+
export default _default;
|
|
@@ -4,18 +4,3 @@ declare const meta: Meta<typeof CallMessage>;
|
|
|
4
4
|
export default meta;
|
|
5
5
|
type Story = StoryObj<typeof CallMessage>;
|
|
6
6
|
export declare const Default: Story;
|
|
7
|
-
export declare const NoAnswerLeft: Story;
|
|
8
|
-
export declare const NoAnswerRight: Story;
|
|
9
|
-
export declare const NoAnswerLeftWithAvatar: Story;
|
|
10
|
-
export declare const NoAnswerRightWithAvatar: Story;
|
|
11
|
-
export declare const NoAnswerLeftWithAvatarAndSubtext: Story;
|
|
12
|
-
export declare const NoAnswerRightWithAvatarAndSubtext: Story;
|
|
13
|
-
export declare const CallHappenedLeft: Story;
|
|
14
|
-
export declare const CallHappenedRight: Story;
|
|
15
|
-
export declare const RightCallMissed: Story;
|
|
16
|
-
export declare const RightCallSuccess: Story;
|
|
17
|
-
export declare const RightCallLong: Story;
|
|
18
|
-
export declare const RecallLeft: Story;
|
|
19
|
-
export declare const RecallRight: Story;
|
|
20
|
-
export declare const LeftCallWithTranscript: Story;
|
|
21
|
-
export declare const RightCallWithTranscript: Story;
|