@uzum-tech/ui 2.3.5 → 2.3.7

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 (108) hide show
  1. package/dist/index.js +5997 -65
  2. package/dist/index.mjs +5997 -65
  3. package/dist/index.prod.js +4 -2
  4. package/dist/index.prod.mjs +4 -2
  5. package/es/_utils/markdown/constants.d.ts +27 -0
  6. package/es/_utils/markdown/constants.mjs +26 -0
  7. package/es/_utils/markdown/create-markdown-renderer.d.ts +3 -0
  8. package/es/_utils/markdown/create-markdown-renderer.mjs +65 -0
  9. package/es/_utils/markdown/index.d.ts +2 -0
  10. package/es/_utils/markdown/index.mjs +1 -0
  11. package/es/_utils/markdown/interface.d.ts +14 -0
  12. package/es/_utils/markdown/interface.mjs +7 -0
  13. package/es/_utils/markdown/render-markdown.d.ts +3 -0
  14. package/es/_utils/markdown/render-markdown.mjs +31 -0
  15. package/es/_utils/markdown/rulers/clamp-heading.d.ts +2 -0
  16. package/es/_utils/markdown/rulers/clamp-heading.mjs +25 -0
  17. package/es/_utils/markdown/rulers/equals-divider.d.ts +2 -0
  18. package/es/_utils/markdown/rulers/equals-divider.mjs +19 -0
  19. package/es/_utils/markdown/rulers/prune-empty-blocks.d.ts +2 -0
  20. package/es/_utils/markdown/rulers/prune-empty-blocks.mjs +31 -0
  21. package/es/_utils/markdown/rulers/strikethrough.d.ts +3 -0
  22. package/es/_utils/markdown/rulers/strikethrough.mjs +38 -0
  23. package/es/_utils/markdown/rulers/strip-html.d.ts +2 -0
  24. package/es/_utils/markdown/rulers/strip-html.mjs +7 -0
  25. package/es/chat/src/Chat.d.ts +639 -23
  26. package/es/chat/src/Chat.mjs +2 -0
  27. package/es/chat/src/ChatListItems.d.ts +220 -4
  28. package/es/chat/src/ChatListItems.mjs +3 -2
  29. package/es/chat/src/ChatMainArea.d.ts +248 -5
  30. package/es/chat/src/ChatMainArea.mjs +27 -13
  31. package/es/chat/src/ChatMessages.d.ts +246 -3
  32. package/es/chat/src/ChatMessages.mjs +22 -2
  33. package/es/chat/src/ChatParts/Sidebar.d.ts +36 -0
  34. package/es/chat/src/interface.d.ts +68 -0
  35. package/es/chat/src/interface.mjs +8 -0
  36. package/es/chat/styles/dark.d.ts +18 -0
  37. package/es/chat/styles/light.d.ts +25 -0
  38. package/es/chat/styles/light.mjs +9 -1
  39. package/es/components.d.ts +1640 -418
  40. package/es/data-table/src/HeaderButton/FilterButton.d.ts +1 -1
  41. package/es/data-table/src/TableParts/Header.mjs +1 -1
  42. package/es/data-table/src/use-sorter.d.ts +2 -5
  43. package/es/data-table/src/use-table-data.d.ts +1 -4
  44. package/es/layout/src/LayoutSider.d.ts +1 -1
  45. package/es/message-bubble/index.d.ts +1 -0
  46. package/es/message-bubble/src/MessageBubble.d.ts +90 -6
  47. package/es/message-bubble/src/MessageBubble.mjs +53 -7
  48. package/es/message-bubble/src/interface.d.ts +42 -0
  49. package/es/message-bubble/src/interface.mjs +8 -0
  50. package/es/message-bubble/src/styles/index.cssr.mjs +35 -1
  51. package/es/message-bubble/styles/dark.d.ts +11 -0
  52. package/es/message-bubble/styles/light.d.ts +22 -0
  53. package/es/message-bubble/styles/light.mjs +14 -1
  54. package/es/version.d.ts +1 -1
  55. package/es/version.mjs +1 -1
  56. package/lib/_utils/markdown/constants.d.ts +27 -0
  57. package/lib/_utils/markdown/constants.js +55 -0
  58. package/lib/_utils/markdown/create-markdown-renderer.d.ts +3 -0
  59. package/lib/_utils/markdown/create-markdown-renderer.js +84 -0
  60. package/lib/_utils/markdown/index.d.ts +2 -0
  61. package/lib/_utils/markdown/index.js +6 -0
  62. package/lib/_utils/markdown/interface.d.ts +14 -0
  63. package/lib/_utils/markdown/interface.js +10 -0
  64. package/lib/_utils/markdown/render-markdown.d.ts +3 -0
  65. package/lib/_utils/markdown/render-markdown.js +38 -0
  66. package/lib/_utils/markdown/rulers/clamp-heading.d.ts +2 -0
  67. package/lib/_utils/markdown/rulers/clamp-heading.js +30 -0
  68. package/lib/_utils/markdown/rulers/equals-divider.d.ts +2 -0
  69. package/lib/_utils/markdown/rulers/equals-divider.js +28 -0
  70. package/lib/_utils/markdown/rulers/prune-empty-blocks.d.ts +2 -0
  71. package/lib/_utils/markdown/rulers/prune-empty-blocks.js +40 -0
  72. package/lib/_utils/markdown/rulers/strikethrough.d.ts +3 -0
  73. package/lib/_utils/markdown/rulers/strikethrough.js +43 -0
  74. package/lib/_utils/markdown/rulers/strip-html.d.ts +2 -0
  75. package/lib/_utils/markdown/rulers/strip-html.js +15 -0
  76. package/lib/chat/src/Chat.d.ts +639 -23
  77. package/lib/chat/src/Chat.js +2 -0
  78. package/lib/chat/src/ChatListItems.d.ts +220 -4
  79. package/lib/chat/src/ChatListItems.js +7 -2
  80. package/lib/chat/src/ChatMainArea.d.ts +248 -5
  81. package/lib/chat/src/ChatMainArea.js +26 -14
  82. package/lib/chat/src/ChatMessages.d.ts +246 -3
  83. package/lib/chat/src/ChatMessages.js +11 -4
  84. package/lib/chat/src/ChatParts/Sidebar.d.ts +36 -0
  85. package/lib/chat/src/interface.d.ts +68 -0
  86. package/lib/chat/src/interface.js +6 -0
  87. package/lib/chat/styles/dark.d.ts +18 -0
  88. package/lib/chat/styles/light.d.ts +25 -0
  89. package/lib/chat/styles/light.js +8 -1
  90. package/lib/components.d.ts +1258 -36
  91. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +1 -1
  92. package/lib/data-table/src/TableParts/Header.js +1 -1
  93. package/lib/data-table/src/use-sorter.d.ts +2 -5
  94. package/lib/data-table/src/use-table-data.d.ts +1 -4
  95. package/lib/layout/src/LayoutSider.d.ts +1 -1
  96. package/lib/message-bubble/index.d.ts +1 -0
  97. package/lib/message-bubble/src/MessageBubble.d.ts +90 -6
  98. package/lib/message-bubble/src/MessageBubble.js +41 -7
  99. package/lib/message-bubble/src/interface.d.ts +42 -0
  100. package/lib/message-bubble/src/interface.js +6 -0
  101. package/lib/message-bubble/src/styles/index.cssr.js +35 -1
  102. package/lib/message-bubble/styles/dark.d.ts +11 -0
  103. package/lib/message-bubble/styles/light.d.ts +22 -0
  104. package/lib/message-bubble/styles/light.js +13 -2
  105. package/lib/version.d.ts +1 -1
  106. package/lib/version.js +1 -1
  107. package/package.json +2 -1
  108. package/web-types.json +29 -1
@@ -152,6 +152,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
152
152
  type: import("vue").PropType<import("./interface").ChatPropsInterface["unreadNotificationText"]>;
153
153
  default: undefined;
154
154
  };
155
+ markdown: {
156
+ type: import("vue").PropType<import("./interface").ChatPropsInterface["markdown"]>;
157
+ default: boolean;
158
+ };
159
+ markdownOptions: {
160
+ type: import("vue").PropType<import("./interface").ChatPropsInterface["markdownOptions"]>;
161
+ default: undefined;
162
+ };
155
163
  chatItemsLoading: {
156
164
  type: import("vue").PropType<import("./interface").ChatPropsInterface["chatItemsLoading"]>;
157
165
  default: boolean;
@@ -271,6 +279,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
271
279
  inputSuffixColor: string;
272
280
  unreadNotificationBackgroundColor: string;
273
281
  unreadNotificationTextColor: string;
282
+ markdownQuoteBorderColorOwn: string;
283
+ markdownQuoteBorderColorOther: string;
284
+ markdownQuoteTextColor: string;
285
+ markdownQuoteBackgroundColor: string;
286
+ markdownQuoteMarkerColor: string;
287
+ markdownDividerColorOwn: string;
288
+ markdownDividerColorOther: string;
274
289
  typingIndicatorColor: string;
275
290
  dateSeparatorColor: string;
276
291
  dateSeparatorBackgroundColor: string;
@@ -1044,6 +1059,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1044
1059
  serviceMessageTextColor: string;
1045
1060
  serviceMessageBackgroundColor: string;
1046
1061
  messageTitleColor: string;
1062
+ markdownQuoteBorderColorOwn: string;
1063
+ markdownQuoteBorderColorOther: string;
1064
+ markdownQuoteTextColor: string;
1065
+ markdownQuoteBackgroundColor: string;
1066
+ markdownQuoteMarkerColor: string;
1067
+ markdownDividerColorOwn: string;
1068
+ markdownDividerColorOther: string;
1069
+ markdownH1FontSize: string;
1070
+ markdownH2FontSize: string;
1071
+ markdownH3FontSize: string;
1072
+ markdownTextFontSize: string;
1047
1073
  }, {
1048
1074
  StatusIcon: import("../../_mixins").Theme<"Icon", {
1049
1075
  color: string;
@@ -1126,6 +1152,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1126
1152
  inputSuffixColor: string;
1127
1153
  unreadNotificationBackgroundColor: string;
1128
1154
  unreadNotificationTextColor: string;
1155
+ markdownQuoteBorderColorOwn: string;
1156
+ markdownQuoteBorderColorOther: string;
1157
+ markdownQuoteTextColor: string;
1158
+ markdownQuoteBackgroundColor: string;
1159
+ markdownQuoteMarkerColor: string;
1160
+ markdownDividerColorOwn: string;
1161
+ markdownDividerColorOther: string;
1129
1162
  typingIndicatorColor: string;
1130
1163
  dateSeparatorColor: string;
1131
1164
  dateSeparatorBackgroundColor: string;
@@ -1899,6 +1932,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1899
1932
  serviceMessageTextColor: string;
1900
1933
  serviceMessageBackgroundColor: string;
1901
1934
  messageTitleColor: string;
1935
+ markdownQuoteBorderColorOwn: string;
1936
+ markdownQuoteBorderColorOther: string;
1937
+ markdownQuoteTextColor: string;
1938
+ markdownQuoteBackgroundColor: string;
1939
+ markdownQuoteMarkerColor: string;
1940
+ markdownDividerColorOwn: string;
1941
+ markdownDividerColorOther: string;
1942
+ markdownH1FontSize: string;
1943
+ markdownH2FontSize: string;
1944
+ markdownH3FontSize: string;
1945
+ markdownTextFontSize: string;
1902
1946
  }, {
1903
1947
  StatusIcon: import("../../_mixins").Theme<"Icon", {
1904
1948
  color: string;
@@ -1981,6 +2025,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1981
2025
  inputSuffixColor: string;
1982
2026
  unreadNotificationBackgroundColor: string;
1983
2027
  unreadNotificationTextColor: string;
2028
+ markdownQuoteBorderColorOwn: string;
2029
+ markdownQuoteBorderColorOther: string;
2030
+ markdownQuoteTextColor: string;
2031
+ markdownQuoteBackgroundColor: string;
2032
+ markdownQuoteMarkerColor: string;
2033
+ markdownDividerColorOwn: string;
2034
+ markdownDividerColorOther: string;
1984
2035
  typingIndicatorColor: string;
1985
2036
  dateSeparatorColor: string;
1986
2037
  dateSeparatorBackgroundColor: string;
@@ -2754,6 +2805,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2754
2805
  serviceMessageTextColor: string;
2755
2806
  serviceMessageBackgroundColor: string;
2756
2807
  messageTitleColor: string;
2808
+ markdownQuoteBorderColorOwn: string;
2809
+ markdownQuoteBorderColorOther: string;
2810
+ markdownQuoteTextColor: string;
2811
+ markdownQuoteBackgroundColor: string;
2812
+ markdownQuoteMarkerColor: string;
2813
+ markdownDividerColorOwn: string;
2814
+ markdownDividerColorOther: string;
2815
+ markdownH1FontSize: string;
2816
+ markdownH2FontSize: string;
2817
+ markdownH3FontSize: string;
2818
+ markdownTextFontSize: string;
2757
2819
  }, {
2758
2820
  StatusIcon: import("../../_mixins").Theme<"Icon", {
2759
2821
  color: string;
@@ -2840,6 +2902,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2840
2902
  inputSuffixColor: string;
2841
2903
  unreadNotificationBackgroundColor: string;
2842
2904
  unreadNotificationTextColor: string;
2905
+ markdownQuoteBorderColorOwn: string;
2906
+ markdownQuoteBorderColorOther: string;
2907
+ markdownQuoteTextColor: string;
2908
+ markdownQuoteBackgroundColor: string;
2909
+ markdownQuoteMarkerColor: string;
2910
+ markdownDividerColorOwn: string;
2911
+ markdownDividerColorOther: string;
2843
2912
  typingIndicatorColor: string;
2844
2913
  dateSeparatorColor: string;
2845
2914
  dateSeparatorBackgroundColor: string;
@@ -3614,6 +3683,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3614
3683
  serviceMessageTextColor: string;
3615
3684
  serviceMessageBackgroundColor: string;
3616
3685
  messageTitleColor: string;
3686
+ markdownQuoteBorderColorOwn: string;
3687
+ markdownQuoteBorderColorOther: string;
3688
+ markdownQuoteTextColor: string;
3689
+ markdownQuoteBackgroundColor: string;
3690
+ markdownQuoteMarkerColor: string;
3691
+ markdownDividerColorOwn: string;
3692
+ markdownDividerColorOther: string;
3693
+ markdownH1FontSize: string;
3694
+ markdownH2FontSize: string;
3695
+ markdownH3FontSize: string;
3696
+ markdownTextFontSize: string;
3617
3697
  }, {
3618
3698
  StatusIcon: import("../../_mixins").Theme<"Icon", {
3619
3699
  color: string;
@@ -4204,6 +4284,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4204
4284
  readonly type: StringConstructor;
4205
4285
  readonly default: undefined;
4206
4286
  };
4287
+ readonly markdown: {
4288
+ readonly type: BooleanConstructor;
4289
+ readonly default: true;
4290
+ };
4291
+ readonly markdownOptions: {
4292
+ readonly type: import("vue").PropType<import("../..").MarkdownOptions>;
4293
+ readonly default: undefined;
4294
+ };
4207
4295
  readonly bubbleActions: {
4208
4296
  readonly type: import("vue").PropType<import("./interface").ChatBubbleAction[]>;
4209
4297
  readonly default: undefined;
@@ -4283,6 +4371,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4283
4371
  inputSuffixColor: string;
4284
4372
  unreadNotificationBackgroundColor: string;
4285
4373
  unreadNotificationTextColor: string;
4374
+ markdownQuoteBorderColorOwn: string;
4375
+ markdownQuoteBorderColorOther: string;
4376
+ markdownQuoteTextColor: string;
4377
+ markdownQuoteBackgroundColor: string;
4378
+ markdownQuoteMarkerColor: string;
4379
+ markdownDividerColorOwn: string;
4380
+ markdownDividerColorOther: string;
4286
4381
  typingIndicatorColor: string;
4287
4382
  dateSeparatorColor: string;
4288
4383
  dateSeparatorBackgroundColor: string;
@@ -5056,6 +5151,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5056
5151
  serviceMessageTextColor: string;
5057
5152
  serviceMessageBackgroundColor: string;
5058
5153
  messageTitleColor: string;
5154
+ markdownQuoteBorderColorOwn: string;
5155
+ markdownQuoteBorderColorOther: string;
5156
+ markdownQuoteTextColor: string;
5157
+ markdownQuoteBackgroundColor: string;
5158
+ markdownQuoteMarkerColor: string;
5159
+ markdownDividerColorOwn: string;
5160
+ markdownDividerColorOther: string;
5161
+ markdownH1FontSize: string;
5162
+ markdownH2FontSize: string;
5163
+ markdownH3FontSize: string;
5164
+ markdownTextFontSize: string;
5059
5165
  }, {
5060
5166
  StatusIcon: import("../../_mixins").Theme<"Icon", {
5061
5167
  color: string;
@@ -5138,6 +5244,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5138
5244
  inputSuffixColor: string;
5139
5245
  unreadNotificationBackgroundColor: string;
5140
5246
  unreadNotificationTextColor: string;
5247
+ markdownQuoteBorderColorOwn: string;
5248
+ markdownQuoteBorderColorOther: string;
5249
+ markdownQuoteTextColor: string;
5250
+ markdownQuoteBackgroundColor: string;
5251
+ markdownQuoteMarkerColor: string;
5252
+ markdownDividerColorOwn: string;
5253
+ markdownDividerColorOther: string;
5141
5254
  typingIndicatorColor: string;
5142
5255
  dateSeparatorColor: string;
5143
5256
  dateSeparatorBackgroundColor: string;
@@ -5911,6 +6024,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5911
6024
  serviceMessageTextColor: string;
5912
6025
  serviceMessageBackgroundColor: string;
5913
6026
  messageTitleColor: string;
6027
+ markdownQuoteBorderColorOwn: string;
6028
+ markdownQuoteBorderColorOther: string;
6029
+ markdownQuoteTextColor: string;
6030
+ markdownQuoteBackgroundColor: string;
6031
+ markdownQuoteMarkerColor: string;
6032
+ markdownDividerColorOwn: string;
6033
+ markdownDividerColorOther: string;
6034
+ markdownH1FontSize: string;
6035
+ markdownH2FontSize: string;
6036
+ markdownH3FontSize: string;
6037
+ markdownTextFontSize: string;
5914
6038
  }, {
5915
6039
  StatusIcon: import("../../_mixins").Theme<"Icon", {
5916
6040
  color: string;
@@ -5993,6 +6117,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5993
6117
  inputSuffixColor: string;
5994
6118
  unreadNotificationBackgroundColor: string;
5995
6119
  unreadNotificationTextColor: string;
6120
+ markdownQuoteBorderColorOwn: string;
6121
+ markdownQuoteBorderColorOther: string;
6122
+ markdownQuoteTextColor: string;
6123
+ markdownQuoteBackgroundColor: string;
6124
+ markdownQuoteMarkerColor: string;
6125
+ markdownDividerColorOwn: string;
6126
+ markdownDividerColorOther: string;
5996
6127
  typingIndicatorColor: string;
5997
6128
  dateSeparatorColor: string;
5998
6129
  dateSeparatorBackgroundColor: string;
@@ -6766,6 +6897,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6766
6897
  serviceMessageTextColor: string;
6767
6898
  serviceMessageBackgroundColor: string;
6768
6899
  messageTitleColor: string;
6900
+ markdownQuoteBorderColorOwn: string;
6901
+ markdownQuoteBorderColorOther: string;
6902
+ markdownQuoteTextColor: string;
6903
+ markdownQuoteBackgroundColor: string;
6904
+ markdownQuoteMarkerColor: string;
6905
+ markdownDividerColorOwn: string;
6906
+ markdownDividerColorOther: string;
6907
+ markdownH1FontSize: string;
6908
+ markdownH2FontSize: string;
6909
+ markdownH3FontSize: string;
6910
+ markdownTextFontSize: string;
6769
6911
  }, {
6770
6912
  StatusIcon: import("../../_mixins").Theme<"Icon", {
6771
6913
  color: string;
@@ -6819,7 +6961,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6819
6961
  }>>>;
6820
6962
  }>> & Readonly<{}>, {
6821
6963
  mergedClsPrefix: import("vue").Ref<string, string>;
6822
- mergedTheme: import("vue").Ref<{
6964
+ mergedTheme: import("vue").ComputedRef<{
6823
6965
  common: import("../..").ThemeCommonVars;
6824
6966
  self: {
6825
6967
  backgroundColor: string;
@@ -6852,6 +6994,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6852
6994
  inputSuffixColor: string;
6853
6995
  unreadNotificationBackgroundColor: string;
6854
6996
  unreadNotificationTextColor: string;
6997
+ markdownQuoteBorderColorOwn: string;
6998
+ markdownQuoteBorderColorOther: string;
6999
+ markdownQuoteTextColor: string;
7000
+ markdownQuoteBackgroundColor: string;
7001
+ markdownQuoteMarkerColor: string;
7002
+ markdownDividerColorOwn: string;
7003
+ markdownDividerColorOther: string;
6855
7004
  typingIndicatorColor: string;
6856
7005
  dateSeparatorColor: string;
6857
7006
  dateSeparatorBackgroundColor: string;
@@ -7626,6 +7775,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
7626
7775
  serviceMessageTextColor: string;
7627
7776
  serviceMessageBackgroundColor: string;
7628
7777
  messageTitleColor: string;
7778
+ markdownQuoteBorderColorOwn: string;
7779
+ markdownQuoteBorderColorOther: string;
7780
+ markdownQuoteTextColor: string;
7781
+ markdownQuoteBackgroundColor: string;
7782
+ markdownQuoteMarkerColor: string;
7783
+ markdownDividerColorOwn: string;
7784
+ markdownDividerColorOther: string;
7785
+ markdownH1FontSize: string;
7786
+ markdownH2FontSize: string;
7787
+ markdownH3FontSize: string;
7788
+ markdownTextFontSize: string;
7629
7789
  }, {
7630
7790
  StatusIcon: import("../../_mixins").Theme<"Icon", {
7631
7791
  color: string;
@@ -8066,7 +8226,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
8066
8226
  } | undefined;
8067
8227
  } | undefined;
8068
8228
  };
8069
- }, {
8229
+ }> | import("vue").Ref<{
8070
8230
  common: import("../..").ThemeCommonVars;
8071
8231
  self: {
8072
8232
  backgroundColor: string;
@@ -8099,6 +8259,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
8099
8259
  inputSuffixColor: string;
8100
8260
  unreadNotificationBackgroundColor: string;
8101
8261
  unreadNotificationTextColor: string;
8262
+ markdownQuoteBorderColorOwn: string;
8263
+ markdownQuoteBorderColorOther: string;
8264
+ markdownQuoteTextColor: string;
8265
+ markdownQuoteBackgroundColor: string;
8266
+ markdownQuoteMarkerColor: string;
8267
+ markdownDividerColorOwn: string;
8268
+ markdownDividerColorOther: string;
8102
8269
  typingIndicatorColor: string;
8103
8270
  dateSeparatorColor: string;
8104
8271
  dateSeparatorBackgroundColor: string;
@@ -8873,6 +9040,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
8873
9040
  serviceMessageTextColor: string;
8874
9041
  serviceMessageBackgroundColor: string;
8875
9042
  messageTitleColor: string;
9043
+ markdownQuoteBorderColorOwn: string;
9044
+ markdownQuoteBorderColorOther: string;
9045
+ markdownQuoteTextColor: string;
9046
+ markdownQuoteBackgroundColor: string;
9047
+ markdownQuoteMarkerColor: string;
9048
+ markdownDividerColorOwn: string;
9049
+ markdownDividerColorOther: string;
9050
+ markdownH1FontSize: string;
9051
+ markdownH2FontSize: string;
9052
+ markdownH3FontSize: string;
9053
+ markdownTextFontSize: string;
8876
9054
  }, {
8877
9055
  StatusIcon: import("../../_mixins").Theme<"Icon", {
8878
9056
  color: string;
@@ -9313,7 +9491,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
9313
9491
  } | undefined;
9314
9492
  } | undefined;
9315
9493
  };
9316
- }> | import("vue").ComputedRef<{
9494
+ }, {
9317
9495
  common: import("../..").ThemeCommonVars;
9318
9496
  self: {
9319
9497
  backgroundColor: string;
@@ -9346,6 +9524,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
9346
9524
  inputSuffixColor: string;
9347
9525
  unreadNotificationBackgroundColor: string;
9348
9526
  unreadNotificationTextColor: string;
9527
+ markdownQuoteBorderColorOwn: string;
9528
+ markdownQuoteBorderColorOther: string;
9529
+ markdownQuoteTextColor: string;
9530
+ markdownQuoteBackgroundColor: string;
9531
+ markdownQuoteMarkerColor: string;
9532
+ markdownDividerColorOwn: string;
9533
+ markdownDividerColorOther: string;
9349
9534
  typingIndicatorColor: string;
9350
9535
  dateSeparatorColor: string;
9351
9536
  dateSeparatorBackgroundColor: string;
@@ -10120,6 +10305,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
10120
10305
  serviceMessageTextColor: string;
10121
10306
  serviceMessageBackgroundColor: string;
10122
10307
  messageTitleColor: string;
10308
+ markdownQuoteBorderColorOwn: string;
10309
+ markdownQuoteBorderColorOther: string;
10310
+ markdownQuoteTextColor: string;
10311
+ markdownQuoteBackgroundColor: string;
10312
+ markdownQuoteMarkerColor: string;
10313
+ markdownDividerColorOwn: string;
10314
+ markdownDividerColorOther: string;
10315
+ markdownH1FontSize: string;
10316
+ markdownH2FontSize: string;
10317
+ markdownH3FontSize: string;
10318
+ markdownTextFontSize: string;
10123
10319
  }, {
10124
10320
  StatusIcon: import("../../_mixins").Theme<"Icon", {
10125
10321
  color: string;
@@ -10589,6 +10785,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
10589
10785
  readonly shareButtonTooltip: string;
10590
10786
  readonly profileButtonTooltip: string;
10591
10787
  readonly unreadNotificationText: string;
10788
+ readonly markdown: boolean;
10789
+ readonly markdownOptions: import("../..").MarkdownOptions;
10592
10790
  readonly onAttachmentDownload: import("./interface").OnAttachmentDownload;
10593
10791
  readonly inputValue: string;
10594
10792
  readonly messages: ChatMessageData[];
@@ -10615,11 +10813,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
10615
10813
  readonly onFooterInputChange: (value: string, chatId: ChatId) => void;
10616
10814
  readonly onMessagesScrollToTop: () => void;
10617
10815
  readonly onMessagesScrollToBottom: () => void;
10618
- readonly loadingCount: number;
10816
+ readonly 'onUpdate:inputValue': (value: string) => void;
10619
10817
  readonly selectedChat: ChatListItemData;
10818
+ readonly loadingCount: number;
10620
10819
  readonly showAttachButton: boolean;
10621
10820
  readonly onMessageSend: import("./interface").OnMessageSend;
10622
- readonly 'onUpdate:inputValue': (value: string) => void;
10623
10821
  }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
10624
10822
  P: {};
10625
10823
  B: {};
@@ -10736,6 +10934,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
10736
10934
  readonly type: StringConstructor;
10737
10935
  readonly default: undefined;
10738
10936
  };
10937
+ readonly markdown: {
10938
+ readonly type: BooleanConstructor;
10939
+ readonly default: true;
10940
+ };
10941
+ readonly markdownOptions: {
10942
+ readonly type: import("vue").PropType<import("../..").MarkdownOptions>;
10943
+ readonly default: undefined;
10944
+ };
10739
10945
  readonly bubbleActions: {
10740
10946
  readonly type: import("vue").PropType<import("./interface").ChatBubbleAction[]>;
10741
10947
  readonly default: undefined;
@@ -10815,6 +11021,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
10815
11021
  inputSuffixColor: string;
10816
11022
  unreadNotificationBackgroundColor: string;
10817
11023
  unreadNotificationTextColor: string;
11024
+ markdownQuoteBorderColorOwn: string;
11025
+ markdownQuoteBorderColorOther: string;
11026
+ markdownQuoteTextColor: string;
11027
+ markdownQuoteBackgroundColor: string;
11028
+ markdownQuoteMarkerColor: string;
11029
+ markdownDividerColorOwn: string;
11030
+ markdownDividerColorOther: string;
10818
11031
  typingIndicatorColor: string;
10819
11032
  dateSeparatorColor: string;
10820
11033
  dateSeparatorBackgroundColor: string;
@@ -11588,6 +11801,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
11588
11801
  serviceMessageTextColor: string;
11589
11802
  serviceMessageBackgroundColor: string;
11590
11803
  messageTitleColor: string;
11804
+ markdownQuoteBorderColorOwn: string;
11805
+ markdownQuoteBorderColorOther: string;
11806
+ markdownQuoteTextColor: string;
11807
+ markdownQuoteBackgroundColor: string;
11808
+ markdownQuoteMarkerColor: string;
11809
+ markdownDividerColorOwn: string;
11810
+ markdownDividerColorOther: string;
11811
+ markdownH1FontSize: string;
11812
+ markdownH2FontSize: string;
11813
+ markdownH3FontSize: string;
11814
+ markdownTextFontSize: string;
11591
11815
  }, {
11592
11816
  StatusIcon: import("../../_mixins").Theme<"Icon", {
11593
11817
  color: string;
@@ -11670,6 +11894,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
11670
11894
  inputSuffixColor: string;
11671
11895
  unreadNotificationBackgroundColor: string;
11672
11896
  unreadNotificationTextColor: string;
11897
+ markdownQuoteBorderColorOwn: string;
11898
+ markdownQuoteBorderColorOther: string;
11899
+ markdownQuoteTextColor: string;
11900
+ markdownQuoteBackgroundColor: string;
11901
+ markdownQuoteMarkerColor: string;
11902
+ markdownDividerColorOwn: string;
11903
+ markdownDividerColorOther: string;
11673
11904
  typingIndicatorColor: string;
11674
11905
  dateSeparatorColor: string;
11675
11906
  dateSeparatorBackgroundColor: string;
@@ -12443,6 +12674,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
12443
12674
  serviceMessageTextColor: string;
12444
12675
  serviceMessageBackgroundColor: string;
12445
12676
  messageTitleColor: string;
12677
+ markdownQuoteBorderColorOwn: string;
12678
+ markdownQuoteBorderColorOther: string;
12679
+ markdownQuoteTextColor: string;
12680
+ markdownQuoteBackgroundColor: string;
12681
+ markdownQuoteMarkerColor: string;
12682
+ markdownDividerColorOwn: string;
12683
+ markdownDividerColorOther: string;
12684
+ markdownH1FontSize: string;
12685
+ markdownH2FontSize: string;
12686
+ markdownH3FontSize: string;
12687
+ markdownTextFontSize: string;
12446
12688
  }, {
12447
12689
  StatusIcon: import("../../_mixins").Theme<"Icon", {
12448
12690
  color: string;
@@ -12525,6 +12767,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
12525
12767
  inputSuffixColor: string;
12526
12768
  unreadNotificationBackgroundColor: string;
12527
12769
  unreadNotificationTextColor: string;
12770
+ markdownQuoteBorderColorOwn: string;
12771
+ markdownQuoteBorderColorOther: string;
12772
+ markdownQuoteTextColor: string;
12773
+ markdownQuoteBackgroundColor: string;
12774
+ markdownQuoteMarkerColor: string;
12775
+ markdownDividerColorOwn: string;
12776
+ markdownDividerColorOther: string;
12528
12777
  typingIndicatorColor: string;
12529
12778
  dateSeparatorColor: string;
12530
12779
  dateSeparatorBackgroundColor: string;
@@ -13298,6 +13547,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
13298
13547
  serviceMessageTextColor: string;
13299
13548
  serviceMessageBackgroundColor: string;
13300
13549
  messageTitleColor: string;
13550
+ markdownQuoteBorderColorOwn: string;
13551
+ markdownQuoteBorderColorOther: string;
13552
+ markdownQuoteTextColor: string;
13553
+ markdownQuoteBackgroundColor: string;
13554
+ markdownQuoteMarkerColor: string;
13555
+ markdownDividerColorOwn: string;
13556
+ markdownDividerColorOther: string;
13557
+ markdownH1FontSize: string;
13558
+ markdownH2FontSize: string;
13559
+ markdownH3FontSize: string;
13560
+ markdownTextFontSize: string;
13301
13561
  }, {
13302
13562
  StatusIcon: import("../../_mixins").Theme<"Icon", {
13303
13563
  color: string;
@@ -13351,7 +13611,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
13351
13611
  }>>>;
13352
13612
  }>> & Readonly<{}>, {
13353
13613
  mergedClsPrefix: import("vue").Ref<string, string>;
13354
- mergedTheme: import("vue").Ref<{
13614
+ mergedTheme: import("vue").ComputedRef<{
13355
13615
  common: import("../..").ThemeCommonVars;
13356
13616
  self: {
13357
13617
  backgroundColor: string;
@@ -13384,6 +13644,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
13384
13644
  inputSuffixColor: string;
13385
13645
  unreadNotificationBackgroundColor: string;
13386
13646
  unreadNotificationTextColor: string;
13647
+ markdownQuoteBorderColorOwn: string;
13648
+ markdownQuoteBorderColorOther: string;
13649
+ markdownQuoteTextColor: string;
13650
+ markdownQuoteBackgroundColor: string;
13651
+ markdownQuoteMarkerColor: string;
13652
+ markdownDividerColorOwn: string;
13653
+ markdownDividerColorOther: string;
13387
13654
  typingIndicatorColor: string;
13388
13655
  dateSeparatorColor: string;
13389
13656
  dateSeparatorBackgroundColor: string;
@@ -14158,6 +14425,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
14158
14425
  serviceMessageTextColor: string;
14159
14426
  serviceMessageBackgroundColor: string;
14160
14427
  messageTitleColor: string;
14428
+ markdownQuoteBorderColorOwn: string;
14429
+ markdownQuoteBorderColorOther: string;
14430
+ markdownQuoteTextColor: string;
14431
+ markdownQuoteBackgroundColor: string;
14432
+ markdownQuoteMarkerColor: string;
14433
+ markdownDividerColorOwn: string;
14434
+ markdownDividerColorOther: string;
14435
+ markdownH1FontSize: string;
14436
+ markdownH2FontSize: string;
14437
+ markdownH3FontSize: string;
14438
+ markdownTextFontSize: string;
14161
14439
  }, {
14162
14440
  StatusIcon: import("../../_mixins").Theme<"Icon", {
14163
14441
  color: string;
@@ -14598,7 +14876,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
14598
14876
  } | undefined;
14599
14877
  } | undefined;
14600
14878
  };
14601
- }, {
14879
+ }> | import("vue").Ref<{
14602
14880
  common: import("../..").ThemeCommonVars;
14603
14881
  self: {
14604
14882
  backgroundColor: string;
@@ -14631,6 +14909,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
14631
14909
  inputSuffixColor: string;
14632
14910
  unreadNotificationBackgroundColor: string;
14633
14911
  unreadNotificationTextColor: string;
14912
+ markdownQuoteBorderColorOwn: string;
14913
+ markdownQuoteBorderColorOther: string;
14914
+ markdownQuoteTextColor: string;
14915
+ markdownQuoteBackgroundColor: string;
14916
+ markdownQuoteMarkerColor: string;
14917
+ markdownDividerColorOwn: string;
14918
+ markdownDividerColorOther: string;
14634
14919
  typingIndicatorColor: string;
14635
14920
  dateSeparatorColor: string;
14636
14921
  dateSeparatorBackgroundColor: string;
@@ -15405,6 +15690,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
15405
15690
  serviceMessageTextColor: string;
15406
15691
  serviceMessageBackgroundColor: string;
15407
15692
  messageTitleColor: string;
15693
+ markdownQuoteBorderColorOwn: string;
15694
+ markdownQuoteBorderColorOther: string;
15695
+ markdownQuoteTextColor: string;
15696
+ markdownQuoteBackgroundColor: string;
15697
+ markdownQuoteMarkerColor: string;
15698
+ markdownDividerColorOwn: string;
15699
+ markdownDividerColorOther: string;
15700
+ markdownH1FontSize: string;
15701
+ markdownH2FontSize: string;
15702
+ markdownH3FontSize: string;
15703
+ markdownTextFontSize: string;
15408
15704
  }, {
15409
15705
  StatusIcon: import("../../_mixins").Theme<"Icon", {
15410
15706
  color: string;
@@ -15845,7 +16141,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
15845
16141
  } | undefined;
15846
16142
  } | undefined;
15847
16143
  };
15848
- }> | import("vue").ComputedRef<{
16144
+ }, {
15849
16145
  common: import("../..").ThemeCommonVars;
15850
16146
  self: {
15851
16147
  backgroundColor: string;
@@ -15878,6 +16174,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
15878
16174
  inputSuffixColor: string;
15879
16175
  unreadNotificationBackgroundColor: string;
15880
16176
  unreadNotificationTextColor: string;
16177
+ markdownQuoteBorderColorOwn: string;
16178
+ markdownQuoteBorderColorOther: string;
16179
+ markdownQuoteTextColor: string;
16180
+ markdownQuoteBackgroundColor: string;
16181
+ markdownQuoteMarkerColor: string;
16182
+ markdownDividerColorOwn: string;
16183
+ markdownDividerColorOther: string;
15881
16184
  typingIndicatorColor: string;
15882
16185
  dateSeparatorColor: string;
15883
16186
  dateSeparatorBackgroundColor: string;
@@ -16652,6 +16955,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
16652
16955
  serviceMessageTextColor: string;
16653
16956
  serviceMessageBackgroundColor: string;
16654
16957
  messageTitleColor: string;
16958
+ markdownQuoteBorderColorOwn: string;
16959
+ markdownQuoteBorderColorOther: string;
16960
+ markdownQuoteTextColor: string;
16961
+ markdownQuoteBackgroundColor: string;
16962
+ markdownQuoteMarkerColor: string;
16963
+ markdownDividerColorOwn: string;
16964
+ markdownDividerColorOther: string;
16965
+ markdownH1FontSize: string;
16966
+ markdownH2FontSize: string;
16967
+ markdownH3FontSize: string;
16968
+ markdownTextFontSize: string;
16655
16969
  }, {
16656
16970
  StatusIcon: import("../../_mixins").Theme<"Icon", {
16657
16971
  color: string;
@@ -17121,6 +17435,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
17121
17435
  readonly shareButtonTooltip: string;
17122
17436
  readonly profileButtonTooltip: string;
17123
17437
  readonly unreadNotificationText: string;
17438
+ readonly markdown: boolean;
17439
+ readonly markdownOptions: import("../..").MarkdownOptions;
17124
17440
  readonly onAttachmentDownload: import("./interface").OnAttachmentDownload;
17125
17441
  readonly inputValue: string;
17126
17442
  readonly messages: ChatMessageData[];
@@ -17147,11 +17463,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
17147
17463
  readonly onFooterInputChange: (value: string, chatId: ChatId) => void;
17148
17464
  readonly onMessagesScrollToTop: () => void;
17149
17465
  readonly onMessagesScrollToBottom: () => void;
17150
- readonly loadingCount: number;
17466
+ readonly 'onUpdate:inputValue': (value: string) => void;
17151
17467
  readonly selectedChat: ChatListItemData;
17468
+ readonly loadingCount: number;
17152
17469
  readonly showAttachButton: boolean;
17153
17470
  readonly onMessageSend: import("./interface").OnMessageSend;
17154
- readonly 'onUpdate:inputValue': (value: string) => void;
17155
17471
  }> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
17156
17472
  readonly selectedChat: {
17157
17473
  readonly type: import("vue").PropType<ChatListItemData>;
@@ -17261,6 +17577,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
17261
17577
  readonly type: StringConstructor;
17262
17578
  readonly default: undefined;
17263
17579
  };
17580
+ readonly markdown: {
17581
+ readonly type: BooleanConstructor;
17582
+ readonly default: true;
17583
+ };
17584
+ readonly markdownOptions: {
17585
+ readonly type: import("vue").PropType<import("../..").MarkdownOptions>;
17586
+ readonly default: undefined;
17587
+ };
17264
17588
  readonly bubbleActions: {
17265
17589
  readonly type: import("vue").PropType<import("./interface").ChatBubbleAction[]>;
17266
17590
  readonly default: undefined;
@@ -17340,6 +17664,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
17340
17664
  inputSuffixColor: string;
17341
17665
  unreadNotificationBackgroundColor: string;
17342
17666
  unreadNotificationTextColor: string;
17667
+ markdownQuoteBorderColorOwn: string;
17668
+ markdownQuoteBorderColorOther: string;
17669
+ markdownQuoteTextColor: string;
17670
+ markdownQuoteBackgroundColor: string;
17671
+ markdownQuoteMarkerColor: string;
17672
+ markdownDividerColorOwn: string;
17673
+ markdownDividerColorOther: string;
17343
17674
  typingIndicatorColor: string;
17344
17675
  dateSeparatorColor: string;
17345
17676
  dateSeparatorBackgroundColor: string;
@@ -18113,6 +18444,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
18113
18444
  serviceMessageTextColor: string;
18114
18445
  serviceMessageBackgroundColor: string;
18115
18446
  messageTitleColor: string;
18447
+ markdownQuoteBorderColorOwn: string;
18448
+ markdownQuoteBorderColorOther: string;
18449
+ markdownQuoteTextColor: string;
18450
+ markdownQuoteBackgroundColor: string;
18451
+ markdownQuoteMarkerColor: string;
18452
+ markdownDividerColorOwn: string;
18453
+ markdownDividerColorOther: string;
18454
+ markdownH1FontSize: string;
18455
+ markdownH2FontSize: string;
18456
+ markdownH3FontSize: string;
18457
+ markdownTextFontSize: string;
18116
18458
  }, {
18117
18459
  StatusIcon: import("../../_mixins").Theme<"Icon", {
18118
18460
  color: string;
@@ -18195,6 +18537,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
18195
18537
  inputSuffixColor: string;
18196
18538
  unreadNotificationBackgroundColor: string;
18197
18539
  unreadNotificationTextColor: string;
18540
+ markdownQuoteBorderColorOwn: string;
18541
+ markdownQuoteBorderColorOther: string;
18542
+ markdownQuoteTextColor: string;
18543
+ markdownQuoteBackgroundColor: string;
18544
+ markdownQuoteMarkerColor: string;
18545
+ markdownDividerColorOwn: string;
18546
+ markdownDividerColorOther: string;
18198
18547
  typingIndicatorColor: string;
18199
18548
  dateSeparatorColor: string;
18200
18549
  dateSeparatorBackgroundColor: string;
@@ -18968,6 +19317,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
18968
19317
  serviceMessageTextColor: string;
18969
19318
  serviceMessageBackgroundColor: string;
18970
19319
  messageTitleColor: string;
19320
+ markdownQuoteBorderColorOwn: string;
19321
+ markdownQuoteBorderColorOther: string;
19322
+ markdownQuoteTextColor: string;
19323
+ markdownQuoteBackgroundColor: string;
19324
+ markdownQuoteMarkerColor: string;
19325
+ markdownDividerColorOwn: string;
19326
+ markdownDividerColorOther: string;
19327
+ markdownH1FontSize: string;
19328
+ markdownH2FontSize: string;
19329
+ markdownH3FontSize: string;
19330
+ markdownTextFontSize: string;
18971
19331
  }, {
18972
19332
  StatusIcon: import("../../_mixins").Theme<"Icon", {
18973
19333
  color: string;
@@ -19050,6 +19410,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
19050
19410
  inputSuffixColor: string;
19051
19411
  unreadNotificationBackgroundColor: string;
19052
19412
  unreadNotificationTextColor: string;
19413
+ markdownQuoteBorderColorOwn: string;
19414
+ markdownQuoteBorderColorOther: string;
19415
+ markdownQuoteTextColor: string;
19416
+ markdownQuoteBackgroundColor: string;
19417
+ markdownQuoteMarkerColor: string;
19418
+ markdownDividerColorOwn: string;
19419
+ markdownDividerColorOther: string;
19053
19420
  typingIndicatorColor: string;
19054
19421
  dateSeparatorColor: string;
19055
19422
  dateSeparatorBackgroundColor: string;
@@ -19823,6 +20190,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
19823
20190
  serviceMessageTextColor: string;
19824
20191
  serviceMessageBackgroundColor: string;
19825
20192
  messageTitleColor: string;
20193
+ markdownQuoteBorderColorOwn: string;
20194
+ markdownQuoteBorderColorOther: string;
20195
+ markdownQuoteTextColor: string;
20196
+ markdownQuoteBackgroundColor: string;
20197
+ markdownQuoteMarkerColor: string;
20198
+ markdownDividerColorOwn: string;
20199
+ markdownDividerColorOther: string;
20200
+ markdownH1FontSize: string;
20201
+ markdownH2FontSize: string;
20202
+ markdownH3FontSize: string;
20203
+ markdownTextFontSize: string;
19826
20204
  }, {
19827
20205
  StatusIcon: import("../../_mixins").Theme<"Icon", {
19828
20206
  color: string;
@@ -19876,7 +20254,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
19876
20254
  }>>>;
19877
20255
  }>> & Readonly<{}>, {
19878
20256
  mergedClsPrefix: import("vue").Ref<string, string>;
19879
- mergedTheme: import("vue").Ref<{
20257
+ mergedTheme: import("vue").ComputedRef<{
19880
20258
  common: import("../..").ThemeCommonVars;
19881
20259
  self: {
19882
20260
  backgroundColor: string;
@@ -19909,6 +20287,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
19909
20287
  inputSuffixColor: string;
19910
20288
  unreadNotificationBackgroundColor: string;
19911
20289
  unreadNotificationTextColor: string;
20290
+ markdownQuoteBorderColorOwn: string;
20291
+ markdownQuoteBorderColorOther: string;
20292
+ markdownQuoteTextColor: string;
20293
+ markdownQuoteBackgroundColor: string;
20294
+ markdownQuoteMarkerColor: string;
20295
+ markdownDividerColorOwn: string;
20296
+ markdownDividerColorOther: string;
19912
20297
  typingIndicatorColor: string;
19913
20298
  dateSeparatorColor: string;
19914
20299
  dateSeparatorBackgroundColor: string;
@@ -20683,6 +21068,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
20683
21068
  serviceMessageTextColor: string;
20684
21069
  serviceMessageBackgroundColor: string;
20685
21070
  messageTitleColor: string;
21071
+ markdownQuoteBorderColorOwn: string;
21072
+ markdownQuoteBorderColorOther: string;
21073
+ markdownQuoteTextColor: string;
21074
+ markdownQuoteBackgroundColor: string;
21075
+ markdownQuoteMarkerColor: string;
21076
+ markdownDividerColorOwn: string;
21077
+ markdownDividerColorOther: string;
21078
+ markdownH1FontSize: string;
21079
+ markdownH2FontSize: string;
21080
+ markdownH3FontSize: string;
21081
+ markdownTextFontSize: string;
20686
21082
  }, {
20687
21083
  StatusIcon: import("../../_mixins").Theme<"Icon", {
20688
21084
  color: string;
@@ -21123,7 +21519,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
21123
21519
  } | undefined;
21124
21520
  } | undefined;
21125
21521
  };
21126
- }, {
21522
+ }> | import("vue").Ref<{
21127
21523
  common: import("../..").ThemeCommonVars;
21128
21524
  self: {
21129
21525
  backgroundColor: string;
@@ -21156,6 +21552,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
21156
21552
  inputSuffixColor: string;
21157
21553
  unreadNotificationBackgroundColor: string;
21158
21554
  unreadNotificationTextColor: string;
21555
+ markdownQuoteBorderColorOwn: string;
21556
+ markdownQuoteBorderColorOther: string;
21557
+ markdownQuoteTextColor: string;
21558
+ markdownQuoteBackgroundColor: string;
21559
+ markdownQuoteMarkerColor: string;
21560
+ markdownDividerColorOwn: string;
21561
+ markdownDividerColorOther: string;
21159
21562
  typingIndicatorColor: string;
21160
21563
  dateSeparatorColor: string;
21161
21564
  dateSeparatorBackgroundColor: string;
@@ -21930,6 +22333,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
21930
22333
  serviceMessageTextColor: string;
21931
22334
  serviceMessageBackgroundColor: string;
21932
22335
  messageTitleColor: string;
22336
+ markdownQuoteBorderColorOwn: string;
22337
+ markdownQuoteBorderColorOther: string;
22338
+ markdownQuoteTextColor: string;
22339
+ markdownQuoteBackgroundColor: string;
22340
+ markdownQuoteMarkerColor: string;
22341
+ markdownDividerColorOwn: string;
22342
+ markdownDividerColorOther: string;
22343
+ markdownH1FontSize: string;
22344
+ markdownH2FontSize: string;
22345
+ markdownH3FontSize: string;
22346
+ markdownTextFontSize: string;
21933
22347
  }, {
21934
22348
  StatusIcon: import("../../_mixins").Theme<"Icon", {
21935
22349
  color: string;
@@ -22370,7 +22784,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
22370
22784
  } | undefined;
22371
22785
  } | undefined;
22372
22786
  };
22373
- }> | import("vue").ComputedRef<{
22787
+ }, {
22374
22788
  common: import("../..").ThemeCommonVars;
22375
22789
  self: {
22376
22790
  backgroundColor: string;
@@ -22403,6 +22817,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
22403
22817
  inputSuffixColor: string;
22404
22818
  unreadNotificationBackgroundColor: string;
22405
22819
  unreadNotificationTextColor: string;
22820
+ markdownQuoteBorderColorOwn: string;
22821
+ markdownQuoteBorderColorOther: string;
22822
+ markdownQuoteTextColor: string;
22823
+ markdownQuoteBackgroundColor: string;
22824
+ markdownQuoteMarkerColor: string;
22825
+ markdownDividerColorOwn: string;
22826
+ markdownDividerColorOther: string;
22406
22827
  typingIndicatorColor: string;
22407
22828
  dateSeparatorColor: string;
22408
22829
  dateSeparatorBackgroundColor: string;
@@ -23177,6 +23598,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
23177
23598
  serviceMessageTextColor: string;
23178
23599
  serviceMessageBackgroundColor: string;
23179
23600
  messageTitleColor: string;
23601
+ markdownQuoteBorderColorOwn: string;
23602
+ markdownQuoteBorderColorOther: string;
23603
+ markdownQuoteTextColor: string;
23604
+ markdownQuoteBackgroundColor: string;
23605
+ markdownQuoteMarkerColor: string;
23606
+ markdownDividerColorOwn: string;
23607
+ markdownDividerColorOther: string;
23608
+ markdownH1FontSize: string;
23609
+ markdownH2FontSize: string;
23610
+ markdownH3FontSize: string;
23611
+ markdownTextFontSize: string;
23180
23612
  }, {
23181
23613
  StatusIcon: import("../../_mixins").Theme<"Icon", {
23182
23614
  color: string;
@@ -23646,6 +24078,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
23646
24078
  readonly shareButtonTooltip: string;
23647
24079
  readonly profileButtonTooltip: string;
23648
24080
  readonly unreadNotificationText: string;
24081
+ readonly markdown: boolean;
24082
+ readonly markdownOptions: import("../..").MarkdownOptions;
23649
24083
  readonly onAttachmentDownload: import("./interface").OnAttachmentDownload;
23650
24084
  readonly inputValue: string;
23651
24085
  readonly messages: ChatMessageData[];
@@ -23672,11 +24106,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
23672
24106
  readonly onFooterInputChange: (value: string, chatId: ChatId) => void;
23673
24107
  readonly onMessagesScrollToTop: () => void;
23674
24108
  readonly onMessagesScrollToBottom: () => void;
23675
- readonly loadingCount: number;
24109
+ readonly 'onUpdate:inputValue': (value: string) => void;
23676
24110
  readonly selectedChat: ChatListItemData;
24111
+ readonly loadingCount: number;
23677
24112
  readonly showAttachButton: boolean;
23678
24113
  readonly onMessageSend: import("./interface").OnMessageSend;
23679
- readonly 'onUpdate:inputValue': (value: string) => void;
23680
24114
  }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
23681
24115
  P: {};
23682
24116
  B: {};
@@ -23793,6 +24227,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
23793
24227
  readonly type: StringConstructor;
23794
24228
  readonly default: undefined;
23795
24229
  };
24230
+ readonly markdown: {
24231
+ readonly type: BooleanConstructor;
24232
+ readonly default: true;
24233
+ };
24234
+ readonly markdownOptions: {
24235
+ readonly type: import("vue").PropType<import("../..").MarkdownOptions>;
24236
+ readonly default: undefined;
24237
+ };
23796
24238
  readonly bubbleActions: {
23797
24239
  readonly type: import("vue").PropType<import("./interface").ChatBubbleAction[]>;
23798
24240
  readonly default: undefined;
@@ -23872,6 +24314,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
23872
24314
  inputSuffixColor: string;
23873
24315
  unreadNotificationBackgroundColor: string;
23874
24316
  unreadNotificationTextColor: string;
24317
+ markdownQuoteBorderColorOwn: string;
24318
+ markdownQuoteBorderColorOther: string;
24319
+ markdownQuoteTextColor: string;
24320
+ markdownQuoteBackgroundColor: string;
24321
+ markdownQuoteMarkerColor: string;
24322
+ markdownDividerColorOwn: string;
24323
+ markdownDividerColorOther: string;
23875
24324
  typingIndicatorColor: string;
23876
24325
  dateSeparatorColor: string;
23877
24326
  dateSeparatorBackgroundColor: string;
@@ -24645,6 +25094,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
24645
25094
  serviceMessageTextColor: string;
24646
25095
  serviceMessageBackgroundColor: string;
24647
25096
  messageTitleColor: string;
25097
+ markdownQuoteBorderColorOwn: string;
25098
+ markdownQuoteBorderColorOther: string;
25099
+ markdownQuoteTextColor: string;
25100
+ markdownQuoteBackgroundColor: string;
25101
+ markdownQuoteMarkerColor: string;
25102
+ markdownDividerColorOwn: string;
25103
+ markdownDividerColorOther: string;
25104
+ markdownH1FontSize: string;
25105
+ markdownH2FontSize: string;
25106
+ markdownH3FontSize: string;
25107
+ markdownTextFontSize: string;
24648
25108
  }, {
24649
25109
  StatusIcon: import("../../_mixins").Theme<"Icon", {
24650
25110
  color: string;
@@ -24727,6 +25187,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
24727
25187
  inputSuffixColor: string;
24728
25188
  unreadNotificationBackgroundColor: string;
24729
25189
  unreadNotificationTextColor: string;
25190
+ markdownQuoteBorderColorOwn: string;
25191
+ markdownQuoteBorderColorOther: string;
25192
+ markdownQuoteTextColor: string;
25193
+ markdownQuoteBackgroundColor: string;
25194
+ markdownQuoteMarkerColor: string;
25195
+ markdownDividerColorOwn: string;
25196
+ markdownDividerColorOther: string;
24730
25197
  typingIndicatorColor: string;
24731
25198
  dateSeparatorColor: string;
24732
25199
  dateSeparatorBackgroundColor: string;
@@ -25500,6 +25967,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
25500
25967
  serviceMessageTextColor: string;
25501
25968
  serviceMessageBackgroundColor: string;
25502
25969
  messageTitleColor: string;
25970
+ markdownQuoteBorderColorOwn: string;
25971
+ markdownQuoteBorderColorOther: string;
25972
+ markdownQuoteTextColor: string;
25973
+ markdownQuoteBackgroundColor: string;
25974
+ markdownQuoteMarkerColor: string;
25975
+ markdownDividerColorOwn: string;
25976
+ markdownDividerColorOther: string;
25977
+ markdownH1FontSize: string;
25978
+ markdownH2FontSize: string;
25979
+ markdownH3FontSize: string;
25980
+ markdownTextFontSize: string;
25503
25981
  }, {
25504
25982
  StatusIcon: import("../../_mixins").Theme<"Icon", {
25505
25983
  color: string;
@@ -25582,6 +26060,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
25582
26060
  inputSuffixColor: string;
25583
26061
  unreadNotificationBackgroundColor: string;
25584
26062
  unreadNotificationTextColor: string;
26063
+ markdownQuoteBorderColorOwn: string;
26064
+ markdownQuoteBorderColorOther: string;
26065
+ markdownQuoteTextColor: string;
26066
+ markdownQuoteBackgroundColor: string;
26067
+ markdownQuoteMarkerColor: string;
26068
+ markdownDividerColorOwn: string;
26069
+ markdownDividerColorOther: string;
25585
26070
  typingIndicatorColor: string;
25586
26071
  dateSeparatorColor: string;
25587
26072
  dateSeparatorBackgroundColor: string;
@@ -26355,6 +26840,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
26355
26840
  serviceMessageTextColor: string;
26356
26841
  serviceMessageBackgroundColor: string;
26357
26842
  messageTitleColor: string;
26843
+ markdownQuoteBorderColorOwn: string;
26844
+ markdownQuoteBorderColorOther: string;
26845
+ markdownQuoteTextColor: string;
26846
+ markdownQuoteBackgroundColor: string;
26847
+ markdownQuoteMarkerColor: string;
26848
+ markdownDividerColorOwn: string;
26849
+ markdownDividerColorOther: string;
26850
+ markdownH1FontSize: string;
26851
+ markdownH2FontSize: string;
26852
+ markdownH3FontSize: string;
26853
+ markdownTextFontSize: string;
26358
26854
  }, {
26359
26855
  StatusIcon: import("../../_mixins").Theme<"Icon", {
26360
26856
  color: string;
@@ -26408,7 +26904,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
26408
26904
  }>>>;
26409
26905
  }>> & Readonly<{}>, {
26410
26906
  mergedClsPrefix: import("vue").Ref<string, string>;
26411
- mergedTheme: import("vue").Ref<{
26907
+ mergedTheme: import("vue").ComputedRef<{
26412
26908
  common: import("../..").ThemeCommonVars;
26413
26909
  self: {
26414
26910
  backgroundColor: string;
@@ -26441,6 +26937,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
26441
26937
  inputSuffixColor: string;
26442
26938
  unreadNotificationBackgroundColor: string;
26443
26939
  unreadNotificationTextColor: string;
26940
+ markdownQuoteBorderColorOwn: string;
26941
+ markdownQuoteBorderColorOther: string;
26942
+ markdownQuoteTextColor: string;
26943
+ markdownQuoteBackgroundColor: string;
26944
+ markdownQuoteMarkerColor: string;
26945
+ markdownDividerColorOwn: string;
26946
+ markdownDividerColorOther: string;
26444
26947
  typingIndicatorColor: string;
26445
26948
  dateSeparatorColor: string;
26446
26949
  dateSeparatorBackgroundColor: string;
@@ -27215,6 +27718,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
27215
27718
  serviceMessageTextColor: string;
27216
27719
  serviceMessageBackgroundColor: string;
27217
27720
  messageTitleColor: string;
27721
+ markdownQuoteBorderColorOwn: string;
27722
+ markdownQuoteBorderColorOther: string;
27723
+ markdownQuoteTextColor: string;
27724
+ markdownQuoteBackgroundColor: string;
27725
+ markdownQuoteMarkerColor: string;
27726
+ markdownDividerColorOwn: string;
27727
+ markdownDividerColorOther: string;
27728
+ markdownH1FontSize: string;
27729
+ markdownH2FontSize: string;
27730
+ markdownH3FontSize: string;
27731
+ markdownTextFontSize: string;
27218
27732
  }, {
27219
27733
  StatusIcon: import("../../_mixins").Theme<"Icon", {
27220
27734
  color: string;
@@ -27655,7 +28169,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
27655
28169
  } | undefined;
27656
28170
  } | undefined;
27657
28171
  };
27658
- }, {
28172
+ }> | import("vue").Ref<{
27659
28173
  common: import("../..").ThemeCommonVars;
27660
28174
  self: {
27661
28175
  backgroundColor: string;
@@ -27688,6 +28202,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
27688
28202
  inputSuffixColor: string;
27689
28203
  unreadNotificationBackgroundColor: string;
27690
28204
  unreadNotificationTextColor: string;
28205
+ markdownQuoteBorderColorOwn: string;
28206
+ markdownQuoteBorderColorOther: string;
28207
+ markdownQuoteTextColor: string;
28208
+ markdownQuoteBackgroundColor: string;
28209
+ markdownQuoteMarkerColor: string;
28210
+ markdownDividerColorOwn: string;
28211
+ markdownDividerColorOther: string;
27691
28212
  typingIndicatorColor: string;
27692
28213
  dateSeparatorColor: string;
27693
28214
  dateSeparatorBackgroundColor: string;
@@ -28462,6 +28983,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
28462
28983
  serviceMessageTextColor: string;
28463
28984
  serviceMessageBackgroundColor: string;
28464
28985
  messageTitleColor: string;
28986
+ markdownQuoteBorderColorOwn: string;
28987
+ markdownQuoteBorderColorOther: string;
28988
+ markdownQuoteTextColor: string;
28989
+ markdownQuoteBackgroundColor: string;
28990
+ markdownQuoteMarkerColor: string;
28991
+ markdownDividerColorOwn: string;
28992
+ markdownDividerColorOther: string;
28993
+ markdownH1FontSize: string;
28994
+ markdownH2FontSize: string;
28995
+ markdownH3FontSize: string;
28996
+ markdownTextFontSize: string;
28465
28997
  }, {
28466
28998
  StatusIcon: import("../../_mixins").Theme<"Icon", {
28467
28999
  color: string;
@@ -28902,7 +29434,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
28902
29434
  } | undefined;
28903
29435
  } | undefined;
28904
29436
  };
28905
- }> | import("vue").ComputedRef<{
29437
+ }, {
28906
29438
  common: import("../..").ThemeCommonVars;
28907
29439
  self: {
28908
29440
  backgroundColor: string;
@@ -28935,6 +29467,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
28935
29467
  inputSuffixColor: string;
28936
29468
  unreadNotificationBackgroundColor: string;
28937
29469
  unreadNotificationTextColor: string;
29470
+ markdownQuoteBorderColorOwn: string;
29471
+ markdownQuoteBorderColorOther: string;
29472
+ markdownQuoteTextColor: string;
29473
+ markdownQuoteBackgroundColor: string;
29474
+ markdownQuoteMarkerColor: string;
29475
+ markdownDividerColorOwn: string;
29476
+ markdownDividerColorOther: string;
28938
29477
  typingIndicatorColor: string;
28939
29478
  dateSeparatorColor: string;
28940
29479
  dateSeparatorBackgroundColor: string;
@@ -29709,6 +30248,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
29709
30248
  serviceMessageTextColor: string;
29710
30249
  serviceMessageBackgroundColor: string;
29711
30250
  messageTitleColor: string;
30251
+ markdownQuoteBorderColorOwn: string;
30252
+ markdownQuoteBorderColorOther: string;
30253
+ markdownQuoteTextColor: string;
30254
+ markdownQuoteBackgroundColor: string;
30255
+ markdownQuoteMarkerColor: string;
30256
+ markdownDividerColorOwn: string;
30257
+ markdownDividerColorOther: string;
30258
+ markdownH1FontSize: string;
30259
+ markdownH2FontSize: string;
30260
+ markdownH3FontSize: string;
30261
+ markdownTextFontSize: string;
29712
30262
  }, {
29713
30263
  StatusIcon: import("../../_mixins").Theme<"Icon", {
29714
30264
  color: string;
@@ -30178,6 +30728,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
30178
30728
  readonly shareButtonTooltip: string;
30179
30729
  readonly profileButtonTooltip: string;
30180
30730
  readonly unreadNotificationText: string;
30731
+ readonly markdown: boolean;
30732
+ readonly markdownOptions: import("../..").MarkdownOptions;
30181
30733
  readonly onAttachmentDownload: import("./interface").OnAttachmentDownload;
30182
30734
  readonly inputValue: string;
30183
30735
  readonly messages: ChatMessageData[];
@@ -30204,13 +30756,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
30204
30756
  readonly onFooterInputChange: (value: string, chatId: ChatId) => void;
30205
30757
  readonly onMessagesScrollToTop: () => void;
30206
30758
  readonly onMessagesScrollToBottom: () => void;
30207
- readonly loadingCount: number;
30759
+ readonly 'onUpdate:inputValue': (value: string) => void;
30208
30760
  readonly selectedChat: ChatListItemData;
30761
+ readonly loadingCount: number;
30209
30762
  readonly showAttachButton: boolean;
30210
30763
  readonly onMessageSend: import("./interface").OnMessageSend;
30211
- readonly 'onUpdate:inputValue': (value: string) => void;
30212
30764
  }> | null>;
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<{
30765
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:selectedChatId" | "update:inputValue" | "message-send" | "message-retry" | "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")[], "update:selectedChatId" | "update:inputValue" | "message-send" | "message-retry" | "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<{
30214
30766
  chatItems: {
30215
30767
  type: import("vue").PropType<import("./interface").ChatPropsInterface["chatItems"]>;
30216
30768
  default: () => never[];
@@ -30363,6 +30915,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
30363
30915
  type: import("vue").PropType<import("./interface").ChatPropsInterface["unreadNotificationText"]>;
30364
30916
  default: undefined;
30365
30917
  };
30918
+ markdown: {
30919
+ type: import("vue").PropType<import("./interface").ChatPropsInterface["markdown"]>;
30920
+ default: boolean;
30921
+ };
30922
+ markdownOptions: {
30923
+ type: import("vue").PropType<import("./interface").ChatPropsInterface["markdownOptions"]>;
30924
+ default: undefined;
30925
+ };
30366
30926
  chatItemsLoading: {
30367
30927
  type: import("vue").PropType<import("./interface").ChatPropsInterface["chatItemsLoading"]>;
30368
30928
  default: boolean;
@@ -30482,6 +31042,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
30482
31042
  inputSuffixColor: string;
30483
31043
  unreadNotificationBackgroundColor: string;
30484
31044
  unreadNotificationTextColor: string;
31045
+ markdownQuoteBorderColorOwn: string;
31046
+ markdownQuoteBorderColorOther: string;
31047
+ markdownQuoteTextColor: string;
31048
+ markdownQuoteBackgroundColor: string;
31049
+ markdownQuoteMarkerColor: string;
31050
+ markdownDividerColorOwn: string;
31051
+ markdownDividerColorOther: string;
30485
31052
  typingIndicatorColor: string;
30486
31053
  dateSeparatorColor: string;
30487
31054
  dateSeparatorBackgroundColor: string;
@@ -31255,6 +31822,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
31255
31822
  serviceMessageTextColor: string;
31256
31823
  serviceMessageBackgroundColor: string;
31257
31824
  messageTitleColor: string;
31825
+ markdownQuoteBorderColorOwn: string;
31826
+ markdownQuoteBorderColorOther: string;
31827
+ markdownQuoteTextColor: string;
31828
+ markdownQuoteBackgroundColor: string;
31829
+ markdownQuoteMarkerColor: string;
31830
+ markdownDividerColorOwn: string;
31831
+ markdownDividerColorOther: string;
31832
+ markdownH1FontSize: string;
31833
+ markdownH2FontSize: string;
31834
+ markdownH3FontSize: string;
31835
+ markdownTextFontSize: string;
31258
31836
  }, {
31259
31837
  StatusIcon: import("../../_mixins").Theme<"Icon", {
31260
31838
  color: string;
@@ -31337,6 +31915,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
31337
31915
  inputSuffixColor: string;
31338
31916
  unreadNotificationBackgroundColor: string;
31339
31917
  unreadNotificationTextColor: string;
31918
+ markdownQuoteBorderColorOwn: string;
31919
+ markdownQuoteBorderColorOther: string;
31920
+ markdownQuoteTextColor: string;
31921
+ markdownQuoteBackgroundColor: string;
31922
+ markdownQuoteMarkerColor: string;
31923
+ markdownDividerColorOwn: string;
31924
+ markdownDividerColorOther: string;
31340
31925
  typingIndicatorColor: string;
31341
31926
  dateSeparatorColor: string;
31342
31927
  dateSeparatorBackgroundColor: string;
@@ -32110,6 +32695,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
32110
32695
  serviceMessageTextColor: string;
32111
32696
  serviceMessageBackgroundColor: string;
32112
32697
  messageTitleColor: string;
32698
+ markdownQuoteBorderColorOwn: string;
32699
+ markdownQuoteBorderColorOther: string;
32700
+ markdownQuoteTextColor: string;
32701
+ markdownQuoteBackgroundColor: string;
32702
+ markdownQuoteMarkerColor: string;
32703
+ markdownDividerColorOwn: string;
32704
+ markdownDividerColorOther: string;
32705
+ markdownH1FontSize: string;
32706
+ markdownH2FontSize: string;
32707
+ markdownH3FontSize: string;
32708
+ markdownTextFontSize: string;
32113
32709
  }, {
32114
32710
  StatusIcon: import("../../_mixins").Theme<"Icon", {
32115
32711
  color: string;
@@ -32192,6 +32788,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
32192
32788
  inputSuffixColor: string;
32193
32789
  unreadNotificationBackgroundColor: string;
32194
32790
  unreadNotificationTextColor: string;
32791
+ markdownQuoteBorderColorOwn: string;
32792
+ markdownQuoteBorderColorOther: string;
32793
+ markdownQuoteTextColor: string;
32794
+ markdownQuoteBackgroundColor: string;
32795
+ markdownQuoteMarkerColor: string;
32796
+ markdownDividerColorOwn: string;
32797
+ markdownDividerColorOther: string;
32195
32798
  typingIndicatorColor: string;
32196
32799
  dateSeparatorColor: string;
32197
32800
  dateSeparatorBackgroundColor: string;
@@ -32965,6 +33568,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
32965
33568
  serviceMessageTextColor: string;
32966
33569
  serviceMessageBackgroundColor: string;
32967
33570
  messageTitleColor: string;
33571
+ markdownQuoteBorderColorOwn: string;
33572
+ markdownQuoteBorderColorOther: string;
33573
+ markdownQuoteTextColor: string;
33574
+ markdownQuoteBackgroundColor: string;
33575
+ markdownQuoteMarkerColor: string;
33576
+ markdownDividerColorOwn: string;
33577
+ markdownDividerColorOther: string;
33578
+ markdownH1FontSize: string;
33579
+ markdownH2FontSize: string;
33580
+ markdownH3FontSize: string;
33581
+ markdownTextFontSize: string;
32968
33582
  }, {
32969
33583
  StatusIcon: import("../../_mixins").Theme<"Icon", {
32970
33584
  color: string;
@@ -33017,10 +33631,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
33017
33631
  }, any>;
33018
33632
  }>>>;
33019
33633
  }>> & Readonly<{
33020
- "onUpdate:inputValue"?: ((...args: any[]) => any) | undefined;
33021
- "onMessage-retry"?: ((...args: any[]) => any) | undefined;
33022
33634
  "onUpdate:selectedChatId"?: ((...args: any[]) => any) | undefined;
33635
+ "onUpdate:inputValue"?: ((...args: any[]) => any) | undefined;
33023
33636
  "onMessage-send"?: ((...args: any[]) => any) | undefined;
33637
+ "onMessage-retry"?: ((...args: any[]) => any) | undefined;
33024
33638
  "onAttachment-upload"?: ((...args: any[]) => any) | undefined;
33025
33639
  "onMark-messages-read"?: ((...args: any[]) => any) | undefined;
33026
33640
  "onFilter-change"?: ((...args: any[]) => any) | undefined;
@@ -33042,6 +33656,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
33042
33656
  height: string | number;
33043
33657
  disabled: boolean | undefined;
33044
33658
  emptyProps: Partial<Partial<import("../..").EmptyProps> | undefined>;
33659
+ markdown: boolean | undefined;
33660
+ markdownOptions: import("../..").MarkdownOptions | undefined;
33045
33661
  onAttachmentDownload: import("./interface").OnAttachmentDownload | undefined;
33046
33662
  chatItems: ChatListItemData[] | undefined;
33047
33663
  selectedChatId: ChatId | undefined;