@mobilon-dev/chotto 0.3.41 → 0.3.43

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 (47) hide show
  1. package/dist/chotto.css +1 -1
  2. package/dist/components/1_atoms/Tooltip/Tooltip.vue.js +2 -2
  3. package/dist/components/1_atoms/Tooltip/Tooltip.vue2.js +60 -52
  4. package/dist/components/2_feed_elements/FileMessage/FileMessage.vue.js +3 -3
  5. package/dist/components/2_feed_elements/FileMessage/FileMessage.vue2.js +99 -89
  6. package/dist/components/2_feed_elements/MessageSmsInvite/MessageSmsInvite.vue.js +7 -0
  7. package/dist/components/2_feed_elements/MessageSmsInvite/MessageSmsInvite.vue2.js +64 -0
  8. package/dist/components/2_feed_elements/MissedCallMessage/MissedCallMessage.vue.js +7 -0
  9. package/dist/components/2_feed_elements/MissedCallMessage/MissedCallMessage.vue2.js +109 -0
  10. package/dist/components/2_feed_elements/MissedCallMessage/icons/MissedCallIcon.vue.js +34 -0
  11. package/dist/components/2_feed_elements/TextMessage/TextMessage.vue.js +1 -1
  12. package/dist/components/2_feed_elements/TextMessage/TextMessage.vue2.js +74 -64
  13. package/dist/components/3_compounds/ChatList/ChatListHeader.vue.js +43 -10
  14. package/dist/components/3_compounds/ChatList/icons/LogoIcon.vue.js +19 -0
  15. package/dist/components/3_compounds/Feed/Feed.vue.js +1 -1
  16. package/dist/components/3_compounds/Feed/Feed.vue2.js +134 -127
  17. package/dist/components/3_compounds/Feed/composables/useFeedComponents.js +10 -8
  18. package/dist/index.js +147 -145
  19. package/dist/locale/en.js +2 -1
  20. package/dist/locale/ru.js +2 -1
  21. package/dist/themes/dark.css +1 -1
  22. package/dist/themes/default.css +1 -1
  23. package/dist/themes/glass.css +1 -1
  24. package/dist/themes/green.css +1 -1
  25. package/dist/themes/mobilon1.css +1 -1
  26. package/dist/types/apps/data/messages.d.ts +166 -7
  27. package/dist/types/components/1_atoms/Tooltip/Tooltip.vue.d.ts +9 -0
  28. package/dist/types/components/1_atoms/Tooltip/styles/types.d.ts +2 -0
  29. package/dist/types/components/2_feed_elements/FileMessage/FileMessage.vue.d.ts +2 -0
  30. package/dist/types/components/2_feed_elements/FileMessage/styles/types.d.ts +2 -0
  31. package/dist/types/components/2_feed_elements/MessageSmsInvite/MessageSmsInvite.vue.d.ts +11 -0
  32. package/dist/types/components/2_feed_elements/MessageSmsInvite/styles/types.d.ts +49 -0
  33. package/dist/types/components/2_feed_elements/MissedCallMessage/MissedCallMessage.vue.d.ts +40 -0
  34. package/dist/types/components/2_feed_elements/MissedCallMessage/icons/MissedCallIcon.vue.d.ts +2 -0
  35. package/dist/types/components/2_feed_elements/MissedCallMessage/stories/MissedCallMessage.stories.d.ts +12 -0
  36. package/dist/types/components/2_feed_elements/TextMessage/TextMessage.vue.d.ts +2 -0
  37. package/dist/types/components/2_feed_elements/types/messages.d.ts +22 -0
  38. package/dist/types/components/3_compounds/ChatList/ChatListHeader.vue.d.ts +6 -0
  39. package/dist/types/components/3_compounds/ChatList/icons/LogoIcon.vue.d.ts +2 -0
  40. package/dist/types/components/3_compounds/ChatList/styles/types.d.ts +44 -0
  41. package/dist/types/components/3_compounds/Feed/Feed.vue.d.ts +4 -2
  42. package/dist/types/components/index.d.ts +1 -0
  43. package/dist/types/hooks/validators/messages/types.d.ts +1 -0
  44. package/dist/types/locale/en.d.ts +1 -0
  45. package/dist/types/locale/ru.d.ts +1 -0
  46. package/dist/types/main.d.ts +3 -0
  47. package/package.json +1 -1
@@ -36,6 +36,7 @@ export declare const messages: ({
36
36
  reactions?: undefined;
37
37
  statusMsg?: undefined;
38
38
  backgroundColor?: undefined;
39
+ hasMessengerAccount?: undefined;
39
40
  callAttemptDuration?: undefined;
40
41
  } | {
41
42
  chatId: number;
@@ -70,6 +71,7 @@ export declare const messages: ({
70
71
  reactions?: undefined;
71
72
  statusMsg?: undefined;
72
73
  backgroundColor?: undefined;
74
+ hasMessengerAccount?: undefined;
73
75
  callAttemptDuration?: undefined;
74
76
  } | {
75
77
  chatId: number;
@@ -109,6 +111,7 @@ export declare const messages: ({
109
111
  reactions?: undefined;
110
112
  statusMsg?: undefined;
111
113
  backgroundColor?: undefined;
114
+ hasMessengerAccount?: undefined;
112
115
  callAttemptDuration?: undefined;
113
116
  } | {
114
117
  chatId: number;
@@ -140,6 +143,7 @@ export declare const messages: ({
140
143
  reactions?: undefined;
141
144
  statusMsg?: undefined;
142
145
  backgroundColor?: undefined;
146
+ hasMessengerAccount?: undefined;
143
147
  callAttemptDuration?: undefined;
144
148
  } | {
145
149
  chatId: number;
@@ -179,6 +183,7 @@ export declare const messages: ({
179
183
  reactions?: undefined;
180
184
  statusMsg?: undefined;
181
185
  backgroundColor?: undefined;
186
+ hasMessengerAccount?: undefined;
182
187
  callAttemptDuration?: undefined;
183
188
  } | {
184
189
  chatId: number;
@@ -218,6 +223,7 @@ export declare const messages: ({
218
223
  reactions?: undefined;
219
224
  statusMsg?: undefined;
220
225
  backgroundColor?: undefined;
226
+ hasMessengerAccount?: undefined;
221
227
  callAttemptDuration?: undefined;
222
228
  } | {
223
229
  chatId: number;
@@ -263,6 +269,7 @@ export declare const messages: ({
263
269
  reactions?: undefined;
264
270
  statusMsg?: undefined;
265
271
  backgroundColor?: undefined;
272
+ hasMessengerAccount?: undefined;
266
273
  callAttemptDuration?: undefined;
267
274
  } | {
268
275
  chatId: number;
@@ -300,6 +307,7 @@ export declare const messages: ({
300
307
  reactions?: undefined;
301
308
  statusMsg?: undefined;
302
309
  backgroundColor?: undefined;
310
+ hasMessengerAccount?: undefined;
303
311
  callAttemptDuration?: undefined;
304
312
  } | {
305
313
  chatId: number;
@@ -337,6 +345,7 @@ export declare const messages: ({
337
345
  reactions?: undefined;
338
346
  statusMsg?: undefined;
339
347
  backgroundColor?: undefined;
348
+ hasMessengerAccount?: undefined;
340
349
  callAttemptDuration?: undefined;
341
350
  } | {
342
351
  chatId: number;
@@ -368,6 +377,7 @@ export declare const messages: ({
368
377
  reactions?: undefined;
369
378
  statusMsg?: undefined;
370
379
  backgroundColor?: undefined;
380
+ hasMessengerAccount?: undefined;
371
381
  callAttemptDuration?: undefined;
372
382
  } | {
373
383
  chatId: number;
@@ -407,6 +417,7 @@ export declare const messages: ({
407
417
  reactions?: undefined;
408
418
  statusMsg?: undefined;
409
419
  backgroundColor?: undefined;
420
+ hasMessengerAccount?: undefined;
410
421
  callAttemptDuration?: undefined;
411
422
  } | {
412
423
  chatId: number;
@@ -444,6 +455,7 @@ export declare const messages: ({
444
455
  reactions?: undefined;
445
456
  statusMsg?: undefined;
446
457
  backgroundColor?: undefined;
458
+ hasMessengerAccount?: undefined;
447
459
  callAttemptDuration?: undefined;
448
460
  } | {
449
461
  chatId: number;
@@ -481,6 +493,7 @@ export declare const messages: ({
481
493
  reactions?: undefined;
482
494
  statusMsg?: undefined;
483
495
  backgroundColor?: undefined;
496
+ hasMessengerAccount?: undefined;
484
497
  callAttemptDuration?: undefined;
485
498
  } | {
486
499
  chatId: number;
@@ -523,6 +536,7 @@ export declare const messages: ({
523
536
  reactions?: undefined;
524
537
  statusMsg?: undefined;
525
538
  backgroundColor?: undefined;
539
+ hasMessengerAccount?: undefined;
526
540
  callAttemptDuration?: undefined;
527
541
  } | {
528
542
  chatId: number;
@@ -559,6 +573,7 @@ export declare const messages: ({
559
573
  reactions?: undefined;
560
574
  statusMsg?: undefined;
561
575
  backgroundColor?: undefined;
576
+ hasMessengerAccount?: undefined;
562
577
  callAttemptDuration?: undefined;
563
578
  } | {
564
579
  chatId: number;
@@ -602,6 +617,7 @@ export declare const messages: ({
602
617
  reactions?: undefined;
603
618
  statusMsg?: undefined;
604
619
  backgroundColor?: undefined;
620
+ hasMessengerAccount?: undefined;
605
621
  callAttemptDuration?: undefined;
606
622
  } | {
607
623
  chatId: number;
@@ -641,6 +657,7 @@ export declare const messages: ({
641
657
  reactions?: undefined;
642
658
  statusMsg?: undefined;
643
659
  backgroundColor?: undefined;
660
+ hasMessengerAccount?: undefined;
644
661
  callAttemptDuration?: undefined;
645
662
  } | {
646
663
  chatId: number;
@@ -680,6 +697,7 @@ export declare const messages: ({
680
697
  reactions?: undefined;
681
698
  statusMsg?: undefined;
682
699
  backgroundColor?: undefined;
700
+ hasMessengerAccount?: undefined;
683
701
  callAttemptDuration?: undefined;
684
702
  } | {
685
703
  chatId: number;
@@ -711,6 +729,7 @@ export declare const messages: ({
711
729
  reactions?: undefined;
712
730
  statusMsg?: undefined;
713
731
  backgroundColor?: undefined;
732
+ hasMessengerAccount?: undefined;
714
733
  callAttemptDuration?: undefined;
715
734
  } | {
716
735
  chatId: number;
@@ -742,6 +761,7 @@ export declare const messages: ({
742
761
  reactions?: undefined;
743
762
  statusMsg?: undefined;
744
763
  backgroundColor?: undefined;
764
+ hasMessengerAccount?: undefined;
745
765
  callAttemptDuration?: undefined;
746
766
  } | {
747
767
  chatId: number;
@@ -776,6 +796,7 @@ export declare const messages: ({
776
796
  reactions?: undefined;
777
797
  statusMsg?: undefined;
778
798
  backgroundColor?: undefined;
799
+ hasMessengerAccount?: undefined;
779
800
  callAttemptDuration?: undefined;
780
801
  } | {
781
802
  chatId: number;
@@ -807,6 +828,7 @@ export declare const messages: ({
807
828
  reactions?: undefined;
808
829
  statusMsg?: undefined;
809
830
  backgroundColor?: undefined;
831
+ hasMessengerAccount?: undefined;
810
832
  callAttemptDuration?: undefined;
811
833
  } | {
812
834
  chatId: number;
@@ -843,6 +865,7 @@ export declare const messages: ({
843
865
  reactions?: undefined;
844
866
  statusMsg?: undefined;
845
867
  backgroundColor?: undefined;
868
+ hasMessengerAccount?: undefined;
846
869
  callAttemptDuration?: undefined;
847
870
  } | {
848
871
  chatId: number;
@@ -877,6 +900,7 @@ export declare const messages: ({
877
900
  reactions?: undefined;
878
901
  statusMsg?: undefined;
879
902
  backgroundColor?: undefined;
903
+ hasMessengerAccount?: undefined;
880
904
  callAttemptDuration?: undefined;
881
905
  } | {
882
906
  chatId: number;
@@ -908,6 +932,7 @@ export declare const messages: ({
908
932
  reactions?: undefined;
909
933
  statusMsg?: undefined;
910
934
  backgroundColor?: undefined;
935
+ hasMessengerAccount?: undefined;
911
936
  callAttemptDuration?: undefined;
912
937
  } | {
913
938
  chatId: number;
@@ -939,6 +964,7 @@ export declare const messages: ({
939
964
  reactions?: undefined;
940
965
  statusMsg?: undefined;
941
966
  backgroundColor?: undefined;
967
+ hasMessengerAccount?: undefined;
942
968
  callAttemptDuration?: undefined;
943
969
  } | {
944
970
  chatId: number;
@@ -970,6 +996,7 @@ export declare const messages: ({
970
996
  reactions?: undefined;
971
997
  statusMsg?: undefined;
972
998
  backgroundColor?: undefined;
999
+ hasMessengerAccount?: undefined;
973
1000
  callAttemptDuration?: undefined;
974
1001
  } | {
975
1002
  chatId: number;
@@ -1003,6 +1030,7 @@ export declare const messages: ({
1003
1030
  reactions?: undefined;
1004
1031
  statusMsg?: undefined;
1005
1032
  backgroundColor?: undefined;
1033
+ hasMessengerAccount?: undefined;
1006
1034
  callAttemptDuration?: undefined;
1007
1035
  } | {
1008
1036
  chatId: number;
@@ -1034,6 +1062,7 @@ export declare const messages: ({
1034
1062
  reactions?: undefined;
1035
1063
  statusMsg?: undefined;
1036
1064
  backgroundColor?: undefined;
1065
+ hasMessengerAccount?: undefined;
1037
1066
  callAttemptDuration?: undefined;
1038
1067
  } | {
1039
1068
  chatId: number;
@@ -1065,6 +1094,7 @@ export declare const messages: ({
1065
1094
  reactions?: undefined;
1066
1095
  statusMsg?: undefined;
1067
1096
  backgroundColor?: undefined;
1097
+ hasMessengerAccount?: undefined;
1068
1098
  callAttemptDuration?: undefined;
1069
1099
  } | {
1070
1100
  chatId: number;
@@ -1099,6 +1129,7 @@ export declare const messages: ({
1099
1129
  reactions?: undefined;
1100
1130
  statusMsg?: undefined;
1101
1131
  backgroundColor?: undefined;
1132
+ hasMessengerAccount?: undefined;
1102
1133
  callAttemptDuration?: undefined;
1103
1134
  } | {
1104
1135
  chatId: number;
@@ -1137,6 +1168,7 @@ export declare const messages: ({
1137
1168
  reactions?: undefined;
1138
1169
  statusMsg?: undefined;
1139
1170
  backgroundColor?: undefined;
1171
+ hasMessengerAccount?: undefined;
1140
1172
  callAttemptDuration?: undefined;
1141
1173
  } | {
1142
1174
  chatId: number;
@@ -1176,6 +1208,7 @@ export declare const messages: ({
1176
1208
  reactions?: undefined;
1177
1209
  statusMsg?: undefined;
1178
1210
  backgroundColor?: undefined;
1211
+ hasMessengerAccount?: undefined;
1179
1212
  callAttemptDuration?: undefined;
1180
1213
  } | {
1181
1214
  chatId: number;
@@ -1207,6 +1240,7 @@ export declare const messages: ({
1207
1240
  reactions?: undefined;
1208
1241
  statusMsg?: undefined;
1209
1242
  backgroundColor?: undefined;
1243
+ hasMessengerAccount?: undefined;
1210
1244
  callAttemptDuration?: undefined;
1211
1245
  } | {
1212
1246
  chatId: number;
@@ -1238,6 +1272,7 @@ export declare const messages: ({
1238
1272
  reactions?: undefined;
1239
1273
  statusMsg?: undefined;
1240
1274
  backgroundColor?: undefined;
1275
+ hasMessengerAccount?: undefined;
1241
1276
  callAttemptDuration?: undefined;
1242
1277
  } | {
1243
1278
  chatId: number;
@@ -1282,6 +1317,7 @@ export declare const messages: ({
1282
1317
  keyboard?: undefined;
1283
1318
  statusMsg?: undefined;
1284
1319
  backgroundColor?: undefined;
1320
+ hasMessengerAccount?: undefined;
1285
1321
  callAttemptDuration?: undefined;
1286
1322
  } | {
1287
1323
  chatId: number;
@@ -1322,6 +1358,7 @@ export declare const messages: ({
1322
1358
  keyboard?: undefined;
1323
1359
  statusMsg?: undefined;
1324
1360
  backgroundColor?: undefined;
1361
+ hasMessengerAccount?: undefined;
1325
1362
  callAttemptDuration?: undefined;
1326
1363
  } | {
1327
1364
  chatId: number;
@@ -1356,6 +1393,7 @@ export declare const messages: ({
1356
1393
  reactions?: undefined;
1357
1394
  statusMsg?: undefined;
1358
1395
  backgroundColor?: undefined;
1396
+ hasMessengerAccount?: undefined;
1359
1397
  callAttemptDuration?: undefined;
1360
1398
  } | {
1361
1399
  chatId: number;
@@ -1399,6 +1437,7 @@ export declare const messages: ({
1399
1437
  keyboard?: undefined;
1400
1438
  statusMsg?: undefined;
1401
1439
  backgroundColor?: undefined;
1440
+ hasMessengerAccount?: undefined;
1402
1441
  callAttemptDuration?: undefined;
1403
1442
  } | {
1404
1443
  chatId: number;
@@ -1430,6 +1469,7 @@ export declare const messages: ({
1430
1469
  keyboard?: undefined;
1431
1470
  reactions?: undefined;
1432
1471
  backgroundColor?: undefined;
1472
+ hasMessengerAccount?: undefined;
1433
1473
  callAttemptDuration?: undefined;
1434
1474
  } | {
1435
1475
  chatId: number;
@@ -1461,6 +1501,7 @@ export declare const messages: ({
1461
1501
  reactions?: undefined;
1462
1502
  statusMsg?: undefined;
1463
1503
  backgroundColor?: undefined;
1504
+ hasMessengerAccount?: undefined;
1464
1505
  callAttemptDuration?: undefined;
1465
1506
  } | {
1466
1507
  chatId: number;
@@ -1498,6 +1539,7 @@ export declare const messages: ({
1498
1539
  keyboard?: undefined;
1499
1540
  reactions?: undefined;
1500
1541
  backgroundColor?: undefined;
1542
+ hasMessengerAccount?: undefined;
1501
1543
  callAttemptDuration?: undefined;
1502
1544
  } | {
1503
1545
  chatId: number;
@@ -1529,6 +1571,7 @@ export declare const messages: ({
1529
1571
  reactions?: undefined;
1530
1572
  statusMsg?: undefined;
1531
1573
  backgroundColor?: undefined;
1574
+ hasMessengerAccount?: undefined;
1532
1575
  callAttemptDuration?: undefined;
1533
1576
  } | {
1534
1577
  chatId: number;
@@ -1569,6 +1612,7 @@ export declare const messages: ({
1569
1612
  keyboard?: undefined;
1570
1613
  statusMsg?: undefined;
1571
1614
  backgroundColor?: undefined;
1615
+ hasMessengerAccount?: undefined;
1572
1616
  callAttemptDuration?: undefined;
1573
1617
  } | {
1574
1618
  chatId: number;
@@ -1600,6 +1644,7 @@ export declare const messages: ({
1600
1644
  reactions?: undefined;
1601
1645
  statusMsg?: undefined;
1602
1646
  backgroundColor?: undefined;
1647
+ hasMessengerAccount?: undefined;
1603
1648
  callAttemptDuration?: undefined;
1604
1649
  } | {
1605
1650
  chatId: number;
@@ -1644,6 +1689,7 @@ export declare const messages: ({
1644
1689
  linkPreview?: undefined;
1645
1690
  keyboard?: undefined;
1646
1691
  backgroundColor?: undefined;
1692
+ hasMessengerAccount?: undefined;
1647
1693
  callAttemptDuration?: undefined;
1648
1694
  } | {
1649
1695
  chatId: number;
@@ -1683,6 +1729,7 @@ export declare const messages: ({
1683
1729
  reactions?: undefined;
1684
1730
  statusMsg?: undefined;
1685
1731
  backgroundColor?: undefined;
1732
+ hasMessengerAccount?: undefined;
1686
1733
  callAttemptDuration?: undefined;
1687
1734
  } | {
1688
1735
  chatId: number;
@@ -1731,6 +1778,7 @@ export declare const messages: ({
1731
1778
  keyboard?: undefined;
1732
1779
  statusMsg?: undefined;
1733
1780
  backgroundColor?: undefined;
1781
+ hasMessengerAccount?: undefined;
1734
1782
  callAttemptDuration?: undefined;
1735
1783
  } | {
1736
1784
  chatId: number;
@@ -1762,6 +1810,39 @@ export declare const messages: ({
1762
1810
  keyboard?: undefined;
1763
1811
  reactions?: undefined;
1764
1812
  statusMsg?: undefined;
1813
+ hasMessengerAccount?: undefined;
1814
+ callAttemptDuration?: undefined;
1815
+ } | {
1816
+ chatId: number;
1817
+ dialogId: string;
1818
+ messageId: string;
1819
+ type: string;
1820
+ text: string;
1821
+ direction: string;
1822
+ status: string;
1823
+ statusMsg: string;
1824
+ timestamp: string;
1825
+ header: string;
1826
+ subText: string;
1827
+ avatar: string;
1828
+ hasMessengerAccount: boolean;
1829
+ position?: undefined;
1830
+ time?: undefined;
1831
+ url?: undefined;
1832
+ callDuration?: undefined;
1833
+ isMissedCall?: undefined;
1834
+ callParticipant?: undefined;
1835
+ actions?: undefined;
1836
+ embed?: undefined;
1837
+ views?: undefined;
1838
+ alt?: undefined;
1839
+ reply?: undefined;
1840
+ filename?: undefined;
1841
+ transcript?: undefined;
1842
+ linkPreview?: undefined;
1843
+ keyboard?: undefined;
1844
+ reactions?: undefined;
1845
+ backgroundColor?: undefined;
1765
1846
  callAttemptDuration?: undefined;
1766
1847
  } | {
1767
1848
  chatId: number;
@@ -1801,6 +1882,7 @@ export declare const messages: ({
1801
1882
  reactions?: undefined;
1802
1883
  statusMsg?: undefined;
1803
1884
  backgroundColor?: undefined;
1885
+ hasMessengerAccount?: undefined;
1804
1886
  callAttemptDuration?: undefined;
1805
1887
  } | {
1806
1888
  chatId: number;
@@ -1833,6 +1915,7 @@ export declare const messages: ({
1833
1915
  reactions?: undefined;
1834
1916
  statusMsg?: undefined;
1835
1917
  backgroundColor?: undefined;
1918
+ hasMessengerAccount?: undefined;
1836
1919
  } | {
1837
1920
  chatId: number;
1838
1921
  dialogId: string;
@@ -1863,6 +1946,7 @@ export declare const messages: ({
1863
1946
  reactions?: undefined;
1864
1947
  statusMsg?: undefined;
1865
1948
  backgroundColor?: undefined;
1949
+ hasMessengerAccount?: undefined;
1866
1950
  callAttemptDuration?: undefined;
1867
1951
  } | {
1868
1952
  chatId: number;
@@ -1902,19 +1986,19 @@ export declare const messages: ({
1902
1986
  reactions?: undefined;
1903
1987
  statusMsg?: undefined;
1904
1988
  backgroundColor?: undefined;
1989
+ hasMessengerAccount?: undefined;
1905
1990
  callAttemptDuration?: undefined;
1906
1991
  } | {
1907
1992
  chatId: number;
1908
1993
  dialogId: string;
1909
1994
  type: string;
1910
- text: string;
1911
1995
  direction: string;
1912
- status: string;
1996
+ messageId: string;
1913
1997
  timestamp: string;
1914
1998
  header: string;
1915
1999
  subText: string;
1916
- messageId: string;
1917
2000
  position?: undefined;
2001
+ status?: undefined;
1918
2002
  time?: undefined;
1919
2003
  url?: undefined;
1920
2004
  callDuration?: undefined;
@@ -1922,6 +2006,7 @@ export declare const messages: ({
1922
2006
  callParticipant?: undefined;
1923
2007
  avatar?: undefined;
1924
2008
  actions?: undefined;
2009
+ text?: undefined;
1925
2010
  embed?: undefined;
1926
2011
  views?: undefined;
1927
2012
  alt?: undefined;
@@ -1933,22 +2018,22 @@ export declare const messages: ({
1933
2018
  reactions?: undefined;
1934
2019
  statusMsg?: undefined;
1935
2020
  backgroundColor?: undefined;
2021
+ hasMessengerAccount?: undefined;
1936
2022
  callAttemptDuration?: undefined;
1937
2023
  } | {
1938
2024
  chatId: number;
1939
2025
  dialogId: string;
1940
2026
  type: string;
1941
- url: string;
1942
- alt: string;
2027
+ text: string;
1943
2028
  direction: string;
1944
2029
  status: string;
1945
2030
  timestamp: string;
1946
2031
  header: string;
1947
2032
  subText: string;
1948
2033
  messageId: string;
1949
- text: string;
1950
2034
  position?: undefined;
1951
2035
  time?: undefined;
2036
+ url?: undefined;
1952
2037
  callDuration?: undefined;
1953
2038
  isMissedCall?: undefined;
1954
2039
  callParticipant?: undefined;
@@ -1956,6 +2041,7 @@ export declare const messages: ({
1956
2041
  actions?: undefined;
1957
2042
  embed?: undefined;
1958
2043
  views?: undefined;
2044
+ alt?: undefined;
1959
2045
  reply?: undefined;
1960
2046
  filename?: undefined;
1961
2047
  transcript?: undefined;
@@ -1964,6 +2050,7 @@ export declare const messages: ({
1964
2050
  reactions?: undefined;
1965
2051
  statusMsg?: undefined;
1966
2052
  backgroundColor?: undefined;
2053
+ hasMessengerAccount?: undefined;
1967
2054
  callAttemptDuration?: undefined;
1968
2055
  } | {
1969
2056
  chatId: number;
@@ -1978,7 +2065,6 @@ export declare const messages: ({
1978
2065
  subText: string;
1979
2066
  messageId: string;
1980
2067
  text: string;
1981
- backgroundColor: string;
1982
2068
  position?: undefined;
1983
2069
  time?: undefined;
1984
2070
  callDuration?: undefined;
@@ -1995,6 +2081,40 @@ export declare const messages: ({
1995
2081
  keyboard?: undefined;
1996
2082
  reactions?: undefined;
1997
2083
  statusMsg?: undefined;
2084
+ backgroundColor?: undefined;
2085
+ hasMessengerAccount?: undefined;
2086
+ callAttemptDuration?: undefined;
2087
+ } | {
2088
+ chatId: number;
2089
+ dialogId: string;
2090
+ messageId: string;
2091
+ type: string;
2092
+ filename: string;
2093
+ url: string;
2094
+ direction: string;
2095
+ status: string;
2096
+ statusMsg: string;
2097
+ timestamp: string;
2098
+ header: string;
2099
+ subText: string;
2100
+ avatar: string;
2101
+ hasMessengerAccount: boolean;
2102
+ position?: undefined;
2103
+ time?: undefined;
2104
+ callDuration?: undefined;
2105
+ isMissedCall?: undefined;
2106
+ callParticipant?: undefined;
2107
+ actions?: undefined;
2108
+ text?: undefined;
2109
+ embed?: undefined;
2110
+ views?: undefined;
2111
+ alt?: undefined;
2112
+ reply?: undefined;
2113
+ transcript?: undefined;
2114
+ linkPreview?: undefined;
2115
+ keyboard?: undefined;
2116
+ reactions?: undefined;
2117
+ backgroundColor?: undefined;
1998
2118
  callAttemptDuration?: undefined;
1999
2119
  } | {
2000
2120
  chatId: number;
@@ -2034,6 +2154,7 @@ export declare const messages: ({
2034
2154
  reactions?: undefined;
2035
2155
  statusMsg?: undefined;
2036
2156
  backgroundColor?: undefined;
2157
+ hasMessengerAccount?: undefined;
2037
2158
  callAttemptDuration?: undefined;
2038
2159
  } | {
2039
2160
  chatId: number;
@@ -2065,6 +2186,7 @@ export declare const messages: ({
2065
2186
  reactions?: undefined;
2066
2187
  statusMsg?: undefined;
2067
2188
  backgroundColor?: undefined;
2189
+ hasMessengerAccount?: undefined;
2068
2190
  callAttemptDuration?: undefined;
2069
2191
  } | {
2070
2192
  chatId: number;
@@ -2096,6 +2218,39 @@ export declare const messages: ({
2096
2218
  reactions?: undefined;
2097
2219
  statusMsg?: undefined;
2098
2220
  backgroundColor?: undefined;
2221
+ hasMessengerAccount?: undefined;
2222
+ callAttemptDuration?: undefined;
2223
+ } | {
2224
+ chatId: number;
2225
+ dialogId: string;
2226
+ type: string;
2227
+ url: string;
2228
+ alt: string;
2229
+ direction: string;
2230
+ status: string;
2231
+ timestamp: string;
2232
+ header: string;
2233
+ subText: string;
2234
+ messageId: string;
2235
+ backgroundColor: string;
2236
+ text: string;
2237
+ position?: undefined;
2238
+ time?: undefined;
2239
+ callDuration?: undefined;
2240
+ isMissedCall?: undefined;
2241
+ callParticipant?: undefined;
2242
+ avatar?: undefined;
2243
+ actions?: undefined;
2244
+ embed?: undefined;
2245
+ views?: undefined;
2246
+ reply?: undefined;
2247
+ filename?: undefined;
2248
+ transcript?: undefined;
2249
+ linkPreview?: undefined;
2250
+ keyboard?: undefined;
2251
+ reactions?: undefined;
2252
+ statusMsg?: undefined;
2253
+ hasMessengerAccount?: undefined;
2099
2254
  callAttemptDuration?: undefined;
2100
2255
  } | {
2101
2256
  chatId: number;
@@ -2127,6 +2282,7 @@ export declare const messages: ({
2127
2282
  keyboard?: undefined;
2128
2283
  reactions?: undefined;
2129
2284
  statusMsg?: undefined;
2285
+ hasMessengerAccount?: undefined;
2130
2286
  callAttemptDuration?: undefined;
2131
2287
  } | {
2132
2288
  chatId: number;
@@ -2158,6 +2314,7 @@ export declare const messages: ({
2158
2314
  keyboard?: undefined;
2159
2315
  reactions?: undefined;
2160
2316
  statusMsg?: undefined;
2317
+ hasMessengerAccount?: undefined;
2161
2318
  callAttemptDuration?: undefined;
2162
2319
  } | {
2163
2320
  messageId: number;
@@ -2189,6 +2346,7 @@ export declare const messages: ({
2189
2346
  reactions?: undefined;
2190
2347
  statusMsg?: undefined;
2191
2348
  backgroundColor?: undefined;
2349
+ hasMessengerAccount?: undefined;
2192
2350
  callAttemptDuration?: undefined;
2193
2351
  } | {
2194
2352
  messageId: number;
@@ -2226,5 +2384,6 @@ export declare const messages: ({
2226
2384
  reactions?: undefined;
2227
2385
  statusMsg?: undefined;
2228
2386
  backgroundColor?: undefined;
2387
+ hasMessengerAccount?: undefined;
2229
2388
  callAttemptDuration?: undefined;
2230
2389
  })[];
@@ -23,6 +23,10 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
23
23
  type: NumberConstructor;
24
24
  default: number;
25
25
  };
26
+ delay: {
27
+ type: NumberConstructor;
28
+ default: number;
29
+ };
26
30
  }>, {
27
31
  startAutoShow: () => void;
28
32
  clearAutoTimer: () => void;
@@ -47,11 +51,16 @@ declare const __VLS_component: import("vue").DefineComponent<import("vue").Extra
47
51
  type: NumberConstructor;
48
52
  default: number;
49
53
  };
54
+ delay: {
55
+ type: NumberConstructor;
56
+ default: number;
57
+ };
50
58
  }>> & Readonly<{}>, {
51
59
  position: string;
52
60
  offset: number;
53
61
  trigger: string;
54
62
  autoShowDuration: number;
63
+ delay: number;
55
64
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
56
65
  declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
57
66
  export default _default;
@@ -24,6 +24,8 @@ export interface TooltipThemeCSSVariables {
24
24
  '--chotto-tooltip-font-weight': string;
25
25
  /** Высота строки подсказки */
26
26
  '--chotto-tooltip-line-height': string;
27
+ /** Обработка пробелов и переносов строк в подсказке */
28
+ '--chotto-tooltip-white-space': string;
27
29
  /** Тень подсказки */
28
30
  '--chotto-tooltip-box-shadow': string;
29
31
  /** Z-index подсказки */
@@ -24,6 +24,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
24
24
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
25
25
  action: (...args: any[]) => void;
26
26
  reply: (...args: any[]) => void;
27
+ "sms-invite": (...args: any[]) => void;
27
28
  }, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
28
29
  message: {
29
30
  type: () => IFileMessage;
@@ -49,6 +50,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
49
50
  }>> & Readonly<{
50
51
  onAction?: ((...args: any[]) => any) | undefined;
51
52
  onReply?: ((...args: any[]) => any) | undefined;
53
+ "onSms-invite"?: ((...args: any[]) => any) | undefined;
52
54
  }>, {
53
55
  applyStyle: Function;
54
56
  isFirstInSeries: boolean;
@@ -124,6 +124,8 @@ export interface FileMessageThemeCSSVariables {
124
124
  '--chotto-filemessage-info-container-column-gap': string;
125
125
  /** Отступ снизу кнопки скачивания */
126
126
  '--chotto-filemessage-download-button-margin-bottom': string;
127
+ /** Отступ слева кнопки скачивания */
128
+ '--chotto-filemessage-download-button-margin-left': string;
127
129
  /** Граница кнопки скачивания */
128
130
  '--chotto-filemessage-download-button-border': string;
129
131
  /** Скругление кнопки скачивания */
@@ -0,0 +1,11 @@
1
+ type __VLS_Props = {
2
+ status: string | undefined;
3
+ hasMessengerAccount?: boolean;
4
+ channel?: string | undefined;
5
+ };
6
+ declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
7
+ "sms-invite": () => any;
8
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
9
+ "onSms-invite"?: (() => any) | undefined;
10
+ }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11
+ export default _default;