@mobilon-dev/chotto 0.3.33 → 0.3.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (68) hide show
  1. package/dist/chotto.css +1 -1
  2. package/dist/components/1_atoms/ButtonContextMenu/ButtonContextMenu.vue.js +2 -2
  3. package/dist/components/1_atoms/ButtonContextMenu/ButtonContextMenu.vue2.js +28 -27
  4. package/dist/components/1_atoms/ContextMenu/ContextMenu.vue.js +36 -22
  5. package/dist/components/1_icons/SettingsIcon.vue.js +6 -6
  6. package/dist/components/2_blocks/CommunicationPanel/CommunicationPanel.vue.js +164 -156
  7. package/dist/components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue.js +4 -103
  8. package/dist/components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue2.js +135 -0
  9. package/dist/components/2_chatinput_elements/ButtonEmojiPicker/icons/SmilesIcon.vue.js +33 -11
  10. package/dist/components/2_chatinput_elements/ButtonEmojiPicker/icons/SmilesIcon.vue2.js +4 -0
  11. package/dist/components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue.js +4 -102
  12. package/dist/components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue2.js +135 -0
  13. package/dist/components/2_chatinput_elements/ButtonTemplateSelector/icons/ChatTemplatesIcon.vue.js +21 -18
  14. package/dist/components/2_chatinput_elements/ButtonTemplateSelector/icons/ChatTemplatesIcon.vue2.js +4 -0
  15. package/dist/components/2_chatinput_elements/FileUploader/FileUploader.vue.js +2 -2
  16. package/dist/components/2_chatinput_elements/FileUploader/FileUploader.vue2.js +89 -55
  17. package/dist/components/2_chatinput_elements/FileUploader/icons/FileUploaderIcon.vue.js +17 -14
  18. package/dist/components/2_chatinput_elements/FileUploader/icons/FileUploaderIcon.vue2.js +4 -0
  19. package/dist/components/2_chatinput_elements/StickerPicker/StickerPicker.vue.js +4 -337
  20. package/dist/components/2_chatinput_elements/StickerPicker/StickerPicker.vue2.js +360 -0
  21. package/dist/components/2_chatinput_elements/StickerPicker/icons/StickerIcon.vue.js +56 -11
  22. package/dist/components/2_chatinput_elements/StickerPicker/icons/StickerIcon.vue2.js +4 -0
  23. package/dist/components/2_chatlist_elements/ChatItem/ChatItem.vue.js +2 -2
  24. package/dist/components/2_chatlist_elements/ChatItem/ChatItem.vue2.js +164 -100
  25. package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue.js +1 -1
  26. package/dist/components/2_feed_elements/ImageMessage/ImageMessage.vue2.js +184 -134
  27. package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue.js +3 -3
  28. package/dist/components/2_feed_elements/VideoMessage/VideoMessage.vue2.js +1 -1
  29. package/dist/components/3_compounds/ChatList/ChatList.vue.js +101 -91
  30. package/dist/components/3_compounds/SideBar/SideBar.vue.js +68 -67
  31. package/dist/hooks/messages/useChannelAccentColor.js +35 -19
  32. package/dist/themes/dark.css +1 -1
  33. package/dist/themes/default.css +1 -1
  34. package/dist/themes/glass.css +1 -0
  35. package/dist/themes/green.css +1 -1
  36. package/dist/themes/mobilon1.css +1 -1
  37. package/dist/types/apps/data/messages.d.ts +117 -86
  38. package/dist/types/components/1_atoms/ContextMenu/ContextMenu.vue.d.ts +5 -1
  39. package/dist/types/components/2_blocks/CommunicationPanel/CommunicationPanel.vue.d.ts +2 -0
  40. package/dist/types/components/2_blocks/CommunicationPanel/stories/CommunicationPanel.stories.d.ts +2 -0
  41. package/dist/types/components/2_blocks/CommunicationPanel/styles/types.d.ts +4 -0
  42. package/dist/types/components/2_chatinput_elements/ButtonEmojiPicker/ButtonEmojiPicker.vue.d.ts +31 -7
  43. package/dist/types/components/2_chatinput_elements/ButtonEmojiPicker/icons/SmilesIcon.vue.d.ts +6 -1
  44. package/dist/types/components/2_chatinput_elements/ButtonEmojiPicker/styles/types.d.ts +6 -0
  45. package/dist/types/components/2_chatinput_elements/ButtonTemplateSelector/ButtonTemplateSelector.vue.d.ts +59 -11
  46. package/dist/types/components/2_chatinput_elements/ButtonTemplateSelector/icons/ChatTemplatesIcon.vue.d.ts +6 -1
  47. package/dist/types/components/2_chatinput_elements/FileUploader/icons/FileUploaderIcon.vue.d.ts +6 -1
  48. package/dist/types/components/2_chatinput_elements/StickerPicker/StickerPicker.vue.d.ts +22 -10
  49. package/dist/types/components/2_chatinput_elements/StickerPicker/icons/StickerIcon.vue.d.ts +6 -1
  50. package/dist/types/components/2_chatlist_elements/ChatItem/ChatItem.vue.d.ts +2 -0
  51. package/dist/types/components/2_chatlist_elements/ChatItem/styles/types.d.ts +2 -0
  52. package/dist/types/components/2_elements/ChatInfo/styles/types.d.ts +2 -0
  53. package/dist/types/components/2_feed_elements/AudioMessage/styles/types.d.ts +18 -0
  54. package/dist/types/components/2_feed_elements/CallMessage/styles/types.d.ts +24 -0
  55. package/dist/types/components/2_feed_elements/DateMessage/styles/types.d.ts +6 -0
  56. package/dist/types/components/2_feed_elements/DateMessageSticky/styles/types.d.ts +4 -0
  57. package/dist/types/components/2_feed_elements/FeedKeyboard/styles/types.d.ts +2 -0
  58. package/dist/types/components/2_feed_elements/FileMessage/styles/types.d.ts +12 -0
  59. package/dist/types/components/2_feed_elements/ImageMessage/styles/types.d.ts +126 -0
  60. package/dist/types/components/2_feed_elements/MessageReactions/styles/types.d.ts +8 -0
  61. package/dist/types/components/2_feed_elements/TextMessage/styles/types.d.ts +16 -0
  62. package/dist/types/components/3_compounds/ChatInput/styles/types.d.ts +2 -0
  63. package/dist/types/components/3_compounds/ChatList/ChatList.vue.d.ts +2 -0
  64. package/dist/types/components/3_compounds/ChatList/styles/types.d.ts +8 -0
  65. package/dist/types/components/3_compounds/SideBar/styles/types.d.ts +6 -16
  66. package/dist/types/components/4_layouts/ChatWrapper/styles/types.d.ts +4 -0
  67. package/dist/types/components/4_layouts/ExtendedLayout/styles/types.d.ts +8 -0
  68. package/package.json +2 -1
@@ -35,8 +35,8 @@ export declare const messages: ({
35
35
  keyboard?: undefined;
36
36
  reactions?: undefined;
37
37
  statusMsg?: undefined;
38
- callAttemptDuration?: undefined;
39
38
  backgroundColor?: undefined;
39
+ callAttemptDuration?: undefined;
40
40
  } | {
41
41
  chatId: number;
42
42
  dialogId: string;
@@ -69,8 +69,8 @@ export declare const messages: ({
69
69
  keyboard?: undefined;
70
70
  reactions?: undefined;
71
71
  statusMsg?: undefined;
72
- callAttemptDuration?: undefined;
73
72
  backgroundColor?: undefined;
73
+ callAttemptDuration?: undefined;
74
74
  } | {
75
75
  chatId: number;
76
76
  dialogId: string;
@@ -108,8 +108,8 @@ export declare const messages: ({
108
108
  keyboard?: undefined;
109
109
  reactions?: undefined;
110
110
  statusMsg?: undefined;
111
- callAttemptDuration?: undefined;
112
111
  backgroundColor?: undefined;
112
+ callAttemptDuration?: undefined;
113
113
  } | {
114
114
  chatId: number;
115
115
  dialogId: string;
@@ -139,8 +139,8 @@ export declare const messages: ({
139
139
  keyboard?: undefined;
140
140
  reactions?: undefined;
141
141
  statusMsg?: undefined;
142
- callAttemptDuration?: undefined;
143
142
  backgroundColor?: undefined;
143
+ callAttemptDuration?: undefined;
144
144
  } | {
145
145
  chatId: number;
146
146
  dialogId: string;
@@ -178,8 +178,8 @@ export declare const messages: ({
178
178
  keyboard?: undefined;
179
179
  reactions?: undefined;
180
180
  statusMsg?: undefined;
181
- callAttemptDuration?: undefined;
182
181
  backgroundColor?: undefined;
182
+ callAttemptDuration?: undefined;
183
183
  } | {
184
184
  chatId: number;
185
185
  dialogId: string;
@@ -217,8 +217,8 @@ export declare const messages: ({
217
217
  keyboard?: undefined;
218
218
  reactions?: undefined;
219
219
  statusMsg?: undefined;
220
- callAttemptDuration?: undefined;
221
220
  backgroundColor?: undefined;
221
+ callAttemptDuration?: undefined;
222
222
  } | {
223
223
  chatId: number;
224
224
  dialogId: string;
@@ -262,8 +262,8 @@ export declare const messages: ({
262
262
  keyboard?: undefined;
263
263
  reactions?: undefined;
264
264
  statusMsg?: undefined;
265
- callAttemptDuration?: undefined;
266
265
  backgroundColor?: undefined;
266
+ callAttemptDuration?: undefined;
267
267
  } | {
268
268
  chatId: number;
269
269
  dialogId: string;
@@ -299,8 +299,8 @@ export declare const messages: ({
299
299
  keyboard?: undefined;
300
300
  reactions?: undefined;
301
301
  statusMsg?: undefined;
302
- callAttemptDuration?: undefined;
303
302
  backgroundColor?: undefined;
303
+ callAttemptDuration?: undefined;
304
304
  } | {
305
305
  chatId: number;
306
306
  dialogId: string;
@@ -336,8 +336,8 @@ export declare const messages: ({
336
336
  keyboard?: undefined;
337
337
  reactions?: undefined;
338
338
  statusMsg?: undefined;
339
- callAttemptDuration?: undefined;
340
339
  backgroundColor?: undefined;
340
+ callAttemptDuration?: undefined;
341
341
  } | {
342
342
  chatId: number;
343
343
  dialogId: string;
@@ -367,8 +367,8 @@ export declare const messages: ({
367
367
  keyboard?: undefined;
368
368
  reactions?: undefined;
369
369
  statusMsg?: undefined;
370
- callAttemptDuration?: undefined;
371
370
  backgroundColor?: undefined;
371
+ callAttemptDuration?: undefined;
372
372
  } | {
373
373
  chatId: number;
374
374
  dialogId: string;
@@ -406,8 +406,8 @@ export declare const messages: ({
406
406
  keyboard?: undefined;
407
407
  reactions?: undefined;
408
408
  statusMsg?: undefined;
409
- callAttemptDuration?: undefined;
410
409
  backgroundColor?: undefined;
410
+ callAttemptDuration?: undefined;
411
411
  } | {
412
412
  chatId: number;
413
413
  dialogId: string;
@@ -443,8 +443,8 @@ export declare const messages: ({
443
443
  keyboard?: undefined;
444
444
  reactions?: undefined;
445
445
  statusMsg?: undefined;
446
- callAttemptDuration?: undefined;
447
446
  backgroundColor?: undefined;
447
+ callAttemptDuration?: undefined;
448
448
  } | {
449
449
  chatId: number;
450
450
  dialogId: string;
@@ -480,8 +480,8 @@ export declare const messages: ({
480
480
  keyboard?: undefined;
481
481
  reactions?: undefined;
482
482
  statusMsg?: undefined;
483
- callAttemptDuration?: undefined;
484
483
  backgroundColor?: undefined;
484
+ callAttemptDuration?: undefined;
485
485
  } | {
486
486
  chatId: number;
487
487
  dialogId: string;
@@ -522,8 +522,8 @@ export declare const messages: ({
522
522
  keyboard?: undefined;
523
523
  reactions?: undefined;
524
524
  statusMsg?: undefined;
525
- callAttemptDuration?: undefined;
526
525
  backgroundColor?: undefined;
526
+ callAttemptDuration?: undefined;
527
527
  } | {
528
528
  chatId: number;
529
529
  dialogId: string;
@@ -558,8 +558,8 @@ export declare const messages: ({
558
558
  keyboard?: undefined;
559
559
  reactions?: undefined;
560
560
  statusMsg?: undefined;
561
- callAttemptDuration?: undefined;
562
561
  backgroundColor?: undefined;
562
+ callAttemptDuration?: undefined;
563
563
  } | {
564
564
  chatId: number;
565
565
  dialogId: string;
@@ -601,8 +601,8 @@ export declare const messages: ({
601
601
  linkPreview?: undefined;
602
602
  reactions?: undefined;
603
603
  statusMsg?: undefined;
604
- callAttemptDuration?: undefined;
605
604
  backgroundColor?: undefined;
605
+ callAttemptDuration?: undefined;
606
606
  } | {
607
607
  chatId: number;
608
608
  type: string;
@@ -640,8 +640,8 @@ export declare const messages: ({
640
640
  keyboard?: undefined;
641
641
  reactions?: undefined;
642
642
  statusMsg?: undefined;
643
- callAttemptDuration?: undefined;
644
643
  backgroundColor?: undefined;
644
+ callAttemptDuration?: undefined;
645
645
  } | {
646
646
  chatId: number;
647
647
  type: string;
@@ -679,8 +679,8 @@ export declare const messages: ({
679
679
  keyboard?: undefined;
680
680
  reactions?: undefined;
681
681
  statusMsg?: undefined;
682
- callAttemptDuration?: undefined;
683
682
  backgroundColor?: undefined;
683
+ callAttemptDuration?: undefined;
684
684
  } | {
685
685
  chatId: number;
686
686
  type: string;
@@ -710,8 +710,8 @@ export declare const messages: ({
710
710
  keyboard?: undefined;
711
711
  reactions?: undefined;
712
712
  statusMsg?: undefined;
713
- callAttemptDuration?: undefined;
714
713
  backgroundColor?: undefined;
714
+ callAttemptDuration?: undefined;
715
715
  } | {
716
716
  chatId: number;
717
717
  messageId: number;
@@ -741,8 +741,8 @@ export declare const messages: ({
741
741
  keyboard?: undefined;
742
742
  reactions?: undefined;
743
743
  statusMsg?: undefined;
744
- callAttemptDuration?: undefined;
745
744
  backgroundColor?: undefined;
745
+ callAttemptDuration?: undefined;
746
746
  } | {
747
747
  chatId: number;
748
748
  type: string;
@@ -775,8 +775,8 @@ export declare const messages: ({
775
775
  keyboard?: undefined;
776
776
  reactions?: undefined;
777
777
  statusMsg?: undefined;
778
- callAttemptDuration?: undefined;
779
778
  backgroundColor?: undefined;
779
+ callAttemptDuration?: undefined;
780
780
  } | {
781
781
  chatId: number;
782
782
  header: string;
@@ -806,8 +806,8 @@ export declare const messages: ({
806
806
  keyboard?: undefined;
807
807
  reactions?: undefined;
808
808
  statusMsg?: undefined;
809
- callAttemptDuration?: undefined;
810
809
  backgroundColor?: undefined;
810
+ callAttemptDuration?: undefined;
811
811
  } | {
812
812
  chatId: number;
813
813
  type: string;
@@ -842,8 +842,8 @@ export declare const messages: ({
842
842
  keyboard?: undefined;
843
843
  reactions?: undefined;
844
844
  statusMsg?: undefined;
845
- callAttemptDuration?: undefined;
846
845
  backgroundColor?: undefined;
846
+ callAttemptDuration?: undefined;
847
847
  } | {
848
848
  chatId: number;
849
849
  type: string;
@@ -876,8 +876,8 @@ export declare const messages: ({
876
876
  keyboard?: undefined;
877
877
  reactions?: undefined;
878
878
  statusMsg?: undefined;
879
- callAttemptDuration?: undefined;
880
879
  backgroundColor?: undefined;
880
+ callAttemptDuration?: undefined;
881
881
  } | {
882
882
  chatId: number;
883
883
  type: string;
@@ -907,8 +907,8 @@ export declare const messages: ({
907
907
  keyboard?: undefined;
908
908
  reactions?: undefined;
909
909
  statusMsg?: undefined;
910
- callAttemptDuration?: undefined;
911
910
  backgroundColor?: undefined;
911
+ callAttemptDuration?: undefined;
912
912
  } | {
913
913
  chatId: number;
914
914
  type: string;
@@ -938,8 +938,8 @@ export declare const messages: ({
938
938
  keyboard?: undefined;
939
939
  reactions?: undefined;
940
940
  statusMsg?: undefined;
941
- callAttemptDuration?: undefined;
942
941
  backgroundColor?: undefined;
942
+ callAttemptDuration?: undefined;
943
943
  } | {
944
944
  chatId: number;
945
945
  type: string;
@@ -969,8 +969,8 @@ export declare const messages: ({
969
969
  keyboard?: undefined;
970
970
  reactions?: undefined;
971
971
  statusMsg?: undefined;
972
- callAttemptDuration?: undefined;
973
972
  backgroundColor?: undefined;
973
+ callAttemptDuration?: undefined;
974
974
  } | {
975
975
  chatId: number;
976
976
  type: string;
@@ -1002,8 +1002,8 @@ export declare const messages: ({
1002
1002
  keyboard?: undefined;
1003
1003
  reactions?: undefined;
1004
1004
  statusMsg?: undefined;
1005
- callAttemptDuration?: undefined;
1006
1005
  backgroundColor?: undefined;
1006
+ callAttemptDuration?: undefined;
1007
1007
  } | {
1008
1008
  chatId: number;
1009
1009
  type: string;
@@ -1033,8 +1033,8 @@ export declare const messages: ({
1033
1033
  keyboard?: undefined;
1034
1034
  reactions?: undefined;
1035
1035
  statusMsg?: undefined;
1036
- callAttemptDuration?: undefined;
1037
1036
  backgroundColor?: undefined;
1037
+ callAttemptDuration?: undefined;
1038
1038
  } | {
1039
1039
  chatId: number;
1040
1040
  type: string;
@@ -1064,8 +1064,8 @@ export declare const messages: ({
1064
1064
  keyboard?: undefined;
1065
1065
  reactions?: undefined;
1066
1066
  statusMsg?: undefined;
1067
- callAttemptDuration?: undefined;
1068
1067
  backgroundColor?: undefined;
1068
+ callAttemptDuration?: undefined;
1069
1069
  } | {
1070
1070
  chatId: number;
1071
1071
  type: string;
@@ -1098,8 +1098,8 @@ export declare const messages: ({
1098
1098
  keyboard?: undefined;
1099
1099
  reactions?: undefined;
1100
1100
  statusMsg?: undefined;
1101
- callAttemptDuration?: undefined;
1102
1101
  backgroundColor?: undefined;
1102
+ callAttemptDuration?: undefined;
1103
1103
  } | {
1104
1104
  chatId: number;
1105
1105
  type: string;
@@ -1136,8 +1136,8 @@ export declare const messages: ({
1136
1136
  linkPreview?: undefined;
1137
1137
  reactions?: undefined;
1138
1138
  statusMsg?: undefined;
1139
- callAttemptDuration?: undefined;
1140
1139
  backgroundColor?: undefined;
1140
+ callAttemptDuration?: undefined;
1141
1141
  } | {
1142
1142
  chatId: number;
1143
1143
  dialogId: string;
@@ -1175,8 +1175,8 @@ export declare const messages: ({
1175
1175
  keyboard?: undefined;
1176
1176
  reactions?: undefined;
1177
1177
  statusMsg?: undefined;
1178
- callAttemptDuration?: undefined;
1179
1178
  backgroundColor?: undefined;
1179
+ callAttemptDuration?: undefined;
1180
1180
  } | {
1181
1181
  chatId: number;
1182
1182
  dialogId: string;
@@ -1206,8 +1206,8 @@ export declare const messages: ({
1206
1206
  keyboard?: undefined;
1207
1207
  reactions?: undefined;
1208
1208
  statusMsg?: undefined;
1209
- callAttemptDuration?: undefined;
1210
1209
  backgroundColor?: undefined;
1210
+ callAttemptDuration?: undefined;
1211
1211
  } | {
1212
1212
  chatId: number;
1213
1213
  dialogId: string;
@@ -1237,8 +1237,8 @@ export declare const messages: ({
1237
1237
  keyboard?: undefined;
1238
1238
  reactions?: undefined;
1239
1239
  statusMsg?: undefined;
1240
- callAttemptDuration?: undefined;
1241
1240
  backgroundColor?: undefined;
1241
+ callAttemptDuration?: undefined;
1242
1242
  } | {
1243
1243
  chatId: number;
1244
1244
  dialogId: string;
@@ -1281,8 +1281,8 @@ export declare const messages: ({
1281
1281
  linkPreview?: undefined;
1282
1282
  keyboard?: undefined;
1283
1283
  statusMsg?: undefined;
1284
- callAttemptDuration?: undefined;
1285
1284
  backgroundColor?: undefined;
1285
+ callAttemptDuration?: undefined;
1286
1286
  } | {
1287
1287
  chatId: number;
1288
1288
  dialogId: string;
@@ -1321,8 +1321,8 @@ export declare const messages: ({
1321
1321
  linkPreview?: undefined;
1322
1322
  keyboard?: undefined;
1323
1323
  statusMsg?: undefined;
1324
- callAttemptDuration?: undefined;
1325
1324
  backgroundColor?: undefined;
1325
+ callAttemptDuration?: undefined;
1326
1326
  } | {
1327
1327
  chatId: number;
1328
1328
  dialogId: string;
@@ -1355,8 +1355,8 @@ export declare const messages: ({
1355
1355
  keyboard?: undefined;
1356
1356
  reactions?: undefined;
1357
1357
  statusMsg?: undefined;
1358
- callAttemptDuration?: undefined;
1359
1358
  backgroundColor?: undefined;
1359
+ callAttemptDuration?: undefined;
1360
1360
  } | {
1361
1361
  chatId: number;
1362
1362
  dialogId: string;
@@ -1398,8 +1398,8 @@ export declare const messages: ({
1398
1398
  linkPreview?: undefined;
1399
1399
  keyboard?: undefined;
1400
1400
  statusMsg?: undefined;
1401
- callAttemptDuration?: undefined;
1402
1401
  backgroundColor?: undefined;
1402
+ callAttemptDuration?: undefined;
1403
1403
  } | {
1404
1404
  chatId: number;
1405
1405
  dialogId: string;
@@ -1429,8 +1429,8 @@ export declare const messages: ({
1429
1429
  linkPreview?: undefined;
1430
1430
  keyboard?: undefined;
1431
1431
  reactions?: undefined;
1432
- callAttemptDuration?: undefined;
1433
1432
  backgroundColor?: undefined;
1433
+ callAttemptDuration?: undefined;
1434
1434
  } | {
1435
1435
  chatId: number;
1436
1436
  dialogId: string;
@@ -1460,8 +1460,8 @@ export declare const messages: ({
1460
1460
  keyboard?: undefined;
1461
1461
  reactions?: undefined;
1462
1462
  statusMsg?: undefined;
1463
- callAttemptDuration?: undefined;
1464
1463
  backgroundColor?: undefined;
1464
+ callAttemptDuration?: undefined;
1465
1465
  } | {
1466
1466
  chatId: number;
1467
1467
  dialogId: string;
@@ -1497,8 +1497,8 @@ export declare const messages: ({
1497
1497
  linkPreview?: undefined;
1498
1498
  keyboard?: undefined;
1499
1499
  reactions?: undefined;
1500
- callAttemptDuration?: undefined;
1501
1500
  backgroundColor?: undefined;
1501
+ callAttemptDuration?: undefined;
1502
1502
  } | {
1503
1503
  chatId: number;
1504
1504
  type: string;
@@ -1528,8 +1528,8 @@ export declare const messages: ({
1528
1528
  keyboard?: undefined;
1529
1529
  reactions?: undefined;
1530
1530
  statusMsg?: undefined;
1531
- callAttemptDuration?: undefined;
1532
1531
  backgroundColor?: undefined;
1532
+ callAttemptDuration?: undefined;
1533
1533
  } | {
1534
1534
  chatId: number;
1535
1535
  dialogId: string;
@@ -1568,8 +1568,8 @@ export declare const messages: ({
1568
1568
  linkPreview?: undefined;
1569
1569
  keyboard?: undefined;
1570
1570
  statusMsg?: undefined;
1571
- callAttemptDuration?: undefined;
1572
1571
  backgroundColor?: undefined;
1572
+ callAttemptDuration?: undefined;
1573
1573
  } | {
1574
1574
  chatId: number;
1575
1575
  dialogId: string;
@@ -1599,8 +1599,8 @@ export declare const messages: ({
1599
1599
  keyboard?: undefined;
1600
1600
  reactions?: undefined;
1601
1601
  statusMsg?: undefined;
1602
- callAttemptDuration?: undefined;
1603
1602
  backgroundColor?: undefined;
1603
+ callAttemptDuration?: undefined;
1604
1604
  } | {
1605
1605
  chatId: number;
1606
1606
  dialogId: string;
@@ -1643,8 +1643,8 @@ export declare const messages: ({
1643
1643
  transcript?: undefined;
1644
1644
  linkPreview?: undefined;
1645
1645
  keyboard?: undefined;
1646
- callAttemptDuration?: undefined;
1647
1646
  backgroundColor?: undefined;
1647
+ callAttemptDuration?: undefined;
1648
1648
  } | {
1649
1649
  chatId: number;
1650
1650
  dialogId: string;
@@ -1682,8 +1682,8 @@ export declare const messages: ({
1682
1682
  keyboard?: undefined;
1683
1683
  reactions?: undefined;
1684
1684
  statusMsg?: undefined;
1685
- callAttemptDuration?: undefined;
1686
1685
  backgroundColor?: undefined;
1686
+ callAttemptDuration?: undefined;
1687
1687
  } | {
1688
1688
  chatId: number;
1689
1689
  dialogId: string;
@@ -1730,8 +1730,39 @@ export declare const messages: ({
1730
1730
  linkPreview?: undefined;
1731
1731
  keyboard?: undefined;
1732
1732
  statusMsg?: undefined;
1733
- callAttemptDuration?: undefined;
1734
1733
  backgroundColor?: undefined;
1734
+ callAttemptDuration?: undefined;
1735
+ } | {
1736
+ chatId: number;
1737
+ dialogId: string;
1738
+ messageId: string;
1739
+ type: string;
1740
+ direction: string;
1741
+ status: string;
1742
+ timestamp: string;
1743
+ header: string;
1744
+ text: string;
1745
+ backgroundColor: string;
1746
+ subText: string;
1747
+ url: string;
1748
+ avatar: string;
1749
+ position?: undefined;
1750
+ time?: undefined;
1751
+ callDuration?: undefined;
1752
+ isMissedCall?: undefined;
1753
+ callParticipant?: undefined;
1754
+ actions?: undefined;
1755
+ embed?: undefined;
1756
+ views?: undefined;
1757
+ alt?: undefined;
1758
+ reply?: undefined;
1759
+ filename?: undefined;
1760
+ transcript?: undefined;
1761
+ linkPreview?: undefined;
1762
+ keyboard?: undefined;
1763
+ reactions?: undefined;
1764
+ statusMsg?: undefined;
1765
+ callAttemptDuration?: undefined;
1735
1766
  } | {
1736
1767
  chatId: number;
1737
1768
  dialogId: string;
@@ -1769,8 +1800,8 @@ export declare const messages: ({
1769
1800
  keyboard?: undefined;
1770
1801
  reactions?: undefined;
1771
1802
  statusMsg?: undefined;
1772
- callAttemptDuration?: undefined;
1773
1803
  backgroundColor?: undefined;
1804
+ callAttemptDuration?: undefined;
1774
1805
  } | {
1775
1806
  chatId: number;
1776
1807
  dialogId: string;
@@ -1831,8 +1862,8 @@ export declare const messages: ({
1831
1862
  keyboard?: undefined;
1832
1863
  reactions?: undefined;
1833
1864
  statusMsg?: undefined;
1834
- callAttemptDuration?: undefined;
1835
1865
  backgroundColor?: undefined;
1866
+ callAttemptDuration?: undefined;
1836
1867
  } | {
1837
1868
  chatId: number;
1838
1869
  dialogId: string;
@@ -1870,8 +1901,8 @@ export declare const messages: ({
1870
1901
  keyboard?: undefined;
1871
1902
  reactions?: undefined;
1872
1903
  statusMsg?: undefined;
1873
- callAttemptDuration?: undefined;
1874
1904
  backgroundColor?: undefined;
1905
+ callAttemptDuration?: undefined;
1875
1906
  } | {
1876
1907
  chatId: number;
1877
1908
  dialogId: string;
@@ -1901,8 +1932,8 @@ export declare const messages: ({
1901
1932
  keyboard?: undefined;
1902
1933
  reactions?: undefined;
1903
1934
  statusMsg?: undefined;
1904
- callAttemptDuration?: undefined;
1905
1935
  backgroundColor?: undefined;
1936
+ callAttemptDuration?: undefined;
1906
1937
  } | {
1907
1938
  chatId: number;
1908
1939
  dialogId: string;
@@ -1932,38 +1963,31 @@ export declare const messages: ({
1932
1963
  keyboard?: undefined;
1933
1964
  reactions?: undefined;
1934
1965
  statusMsg?: undefined;
1935
- callAttemptDuration?: undefined;
1936
1966
  backgroundColor?: undefined;
1967
+ callAttemptDuration?: undefined;
1937
1968
  } | {
1938
1969
  chatId: number;
1939
1970
  dialogId: string;
1940
1971
  type: string;
1972
+ url: string;
1973
+ alt: string;
1941
1974
  direction: string;
1942
1975
  status: string;
1943
- time: string;
1944
- messageId: string;
1945
- url: string;
1946
- isMissedCall: boolean;
1947
1976
  timestamp: string;
1948
1977
  header: string;
1949
1978
  subText: string;
1950
- callParticipant: string;
1951
- callDuration: string;
1952
- actions: ({
1953
- action: string;
1954
- title: string;
1955
- disabled?: undefined;
1956
- } | {
1957
- action: string;
1958
- title: string;
1959
- disabled: boolean;
1960
- })[];
1979
+ messageId: string;
1980
+ text: string;
1981
+ backgroundColor: string;
1961
1982
  position?: undefined;
1983
+ time?: undefined;
1984
+ callDuration?: undefined;
1985
+ isMissedCall?: undefined;
1986
+ callParticipant?: undefined;
1962
1987
  avatar?: undefined;
1963
- text?: undefined;
1988
+ actions?: undefined;
1964
1989
  embed?: undefined;
1965
1990
  views?: undefined;
1966
- alt?: undefined;
1967
1991
  reply?: undefined;
1968
1992
  filename?: undefined;
1969
1993
  transcript?: undefined;
@@ -1972,25 +1996,32 @@ export declare const messages: ({
1972
1996
  reactions?: undefined;
1973
1997
  statusMsg?: undefined;
1974
1998
  callAttemptDuration?: undefined;
1975
- backgroundColor?: undefined;
1976
1999
  } | {
1977
2000
  chatId: number;
1978
2001
  dialogId: string;
1979
2002
  type: string;
1980
2003
  direction: string;
1981
2004
  status: string;
2005
+ time: string;
2006
+ messageId: string;
2007
+ url: string;
2008
+ isMissedCall: boolean;
1982
2009
  timestamp: string;
1983
2010
  header: string;
1984
2011
  subText: string;
1985
- messageId: string;
2012
+ callParticipant: string;
2013
+ callDuration: string;
2014
+ actions: ({
2015
+ action: string;
2016
+ title: string;
2017
+ disabled?: undefined;
2018
+ } | {
2019
+ action: string;
2020
+ title: string;
2021
+ disabled: boolean;
2022
+ })[];
1986
2023
  position?: undefined;
1987
- time?: undefined;
1988
- url?: undefined;
1989
- callDuration?: undefined;
1990
- isMissedCall?: undefined;
1991
- callParticipant?: undefined;
1992
2024
  avatar?: undefined;
1993
- actions?: undefined;
1994
2025
  text?: undefined;
1995
2026
  embed?: undefined;
1996
2027
  views?: undefined;
@@ -2002,27 +2033,27 @@ export declare const messages: ({
2002
2033
  keyboard?: undefined;
2003
2034
  reactions?: undefined;
2004
2035
  statusMsg?: undefined;
2005
- callAttemptDuration?: undefined;
2006
2036
  backgroundColor?: undefined;
2037
+ callAttemptDuration?: undefined;
2007
2038
  } | {
2008
2039
  chatId: number;
2009
2040
  dialogId: string;
2010
2041
  type: string;
2011
- url: string;
2012
2042
  direction: string;
2013
2043
  status: string;
2014
2044
  timestamp: string;
2015
2045
  header: string;
2016
2046
  subText: string;
2017
2047
  messageId: string;
2018
- text: string;
2019
2048
  position?: undefined;
2020
2049
  time?: undefined;
2050
+ url?: undefined;
2021
2051
  callDuration?: undefined;
2022
2052
  isMissedCall?: undefined;
2023
2053
  callParticipant?: undefined;
2024
2054
  avatar?: undefined;
2025
2055
  actions?: undefined;
2056
+ text?: undefined;
2026
2057
  embed?: undefined;
2027
2058
  views?: undefined;
2028
2059
  alt?: undefined;
@@ -2033,21 +2064,19 @@ export declare const messages: ({
2033
2064
  keyboard?: undefined;
2034
2065
  reactions?: undefined;
2035
2066
  statusMsg?: undefined;
2036
- callAttemptDuration?: undefined;
2037
2067
  backgroundColor?: undefined;
2068
+ callAttemptDuration?: undefined;
2038
2069
  } | {
2039
2070
  chatId: number;
2040
2071
  dialogId: string;
2041
2072
  type: string;
2042
2073
  url: string;
2043
- alt: string;
2044
2074
  direction: string;
2045
2075
  status: string;
2046
2076
  timestamp: string;
2047
2077
  header: string;
2048
2078
  subText: string;
2049
2079
  messageId: string;
2050
- backgroundColor: string;
2051
2080
  text: string;
2052
2081
  position?: undefined;
2053
2082
  time?: undefined;
@@ -2058,6 +2087,7 @@ export declare const messages: ({
2058
2087
  actions?: undefined;
2059
2088
  embed?: undefined;
2060
2089
  views?: undefined;
2090
+ alt?: undefined;
2061
2091
  reply?: undefined;
2062
2092
  filename?: undefined;
2063
2093
  transcript?: undefined;
@@ -2065,6 +2095,7 @@ export declare const messages: ({
2065
2095
  keyboard?: undefined;
2066
2096
  reactions?: undefined;
2067
2097
  statusMsg?: undefined;
2098
+ backgroundColor?: undefined;
2068
2099
  callAttemptDuration?: undefined;
2069
2100
  } | {
2070
2101
  chatId: number;
@@ -2157,8 +2188,8 @@ export declare const messages: ({
2157
2188
  keyboard?: undefined;
2158
2189
  reactions?: undefined;
2159
2190
  statusMsg?: undefined;
2160
- callAttemptDuration?: undefined;
2161
2191
  backgroundColor?: undefined;
2192
+ callAttemptDuration?: undefined;
2162
2193
  } | {
2163
2194
  messageId: number;
2164
2195
  chatId: number;
@@ -2194,6 +2225,6 @@ export declare const messages: ({
2194
2225
  keyboard?: undefined;
2195
2226
  reactions?: undefined;
2196
2227
  statusMsg?: undefined;
2197
- callAttemptDuration?: undefined;
2198
2228
  backgroundColor?: undefined;
2229
+ callAttemptDuration?: undefined;
2199
2230
  })[];
@@ -1,8 +1,12 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
- $emit: (event: "click", ...args: any[]) => void;
2
+ $emit: (event: "click" | "mouseenter" | "mouseleave", ...args: any[]) => void;
3
3
  actions: unknown[];
4
+ id: string;
5
+ dataTheme: string;
4
6
  $props: {
5
7
  readonly actions?: unknown[] | undefined;
8
+ readonly id?: string | undefined;
9
+ readonly dataTheme?: string | undefined;
6
10
  };
7
11
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
8
12
  export default _default;