@uzum-tech/ui 2.3.4 → 2.3.6

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 (124) hide show
  1. package/dist/index.js +6368 -441
  2. package/dist/index.mjs +6368 -441
  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 +515 -23
  26. package/es/chat/src/Chat.mjs +2 -0
  27. package/es/chat/src/ChatListItems.d.ts +172 -4
  28. package/es/chat/src/ChatListItems.mjs +3 -2
  29. package/es/chat/src/ChatMainArea.d.ts +200 -5
  30. package/es/chat/src/ChatMainArea.mjs +27 -13
  31. package/es/chat/src/ChatMessages.d.ts +198 -3
  32. package/es/chat/src/ChatMessages.mjs +20 -2
  33. package/es/chat/src/ChatParts/Sidebar.d.ts +28 -0
  34. package/es/chat/src/interface.d.ts +56 -0
  35. package/es/chat/src/interface.mjs +8 -0
  36. package/es/chat/styles/dark.d.ts +14 -0
  37. package/es/chat/styles/light.d.ts +19 -0
  38. package/es/chat/styles/light.mjs +5 -0
  39. package/es/components.d.ts +1452 -456
  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/image/index.d.ts +2 -2
  45. package/es/image/index.mjs +2 -1
  46. package/es/image/src/ImagePreview.d.ts +60 -184
  47. package/es/image/src/ImagePreview.mjs +12 -18
  48. package/es/image/src/interface.d.ts +156 -3
  49. package/es/image/src/interface.mjs +23 -1
  50. package/es/image/src/public-types.d.ts +11 -5
  51. package/es/image/src/styles/index.cssr.mjs +11 -1
  52. package/es/layout/src/LayoutSider.d.ts +1 -1
  53. package/es/message-bubble/index.d.ts +1 -0
  54. package/es/message-bubble/src/MessageBubble.d.ts +78 -6
  55. package/es/message-bubble/src/MessageBubble.mjs +49 -7
  56. package/es/message-bubble/src/interface.d.ts +36 -0
  57. package/es/message-bubble/src/interface.mjs +8 -0
  58. package/es/message-bubble/src/styles/index.cssr.mjs +17 -1
  59. package/es/message-bubble/styles/dark.d.ts +9 -0
  60. package/es/message-bubble/styles/light.d.ts +18 -0
  61. package/es/message-bubble/styles/light.mjs +10 -1
  62. package/es/version.d.ts +1 -1
  63. package/es/version.mjs +1 -1
  64. package/lib/_utils/markdown/constants.d.ts +27 -0
  65. package/lib/_utils/markdown/constants.js +55 -0
  66. package/lib/_utils/markdown/create-markdown-renderer.d.ts +3 -0
  67. package/lib/_utils/markdown/create-markdown-renderer.js +84 -0
  68. package/lib/_utils/markdown/index.d.ts +2 -0
  69. package/lib/_utils/markdown/index.js +6 -0
  70. package/lib/_utils/markdown/interface.d.ts +14 -0
  71. package/lib/_utils/markdown/interface.js +10 -0
  72. package/lib/_utils/markdown/render-markdown.d.ts +3 -0
  73. package/lib/_utils/markdown/render-markdown.js +38 -0
  74. package/lib/_utils/markdown/rulers/clamp-heading.d.ts +2 -0
  75. package/lib/_utils/markdown/rulers/clamp-heading.js +30 -0
  76. package/lib/_utils/markdown/rulers/equals-divider.d.ts +2 -0
  77. package/lib/_utils/markdown/rulers/equals-divider.js +28 -0
  78. package/lib/_utils/markdown/rulers/prune-empty-blocks.d.ts +2 -0
  79. package/lib/_utils/markdown/rulers/prune-empty-blocks.js +40 -0
  80. package/lib/_utils/markdown/rulers/strikethrough.d.ts +3 -0
  81. package/lib/_utils/markdown/rulers/strikethrough.js +43 -0
  82. package/lib/_utils/markdown/rulers/strip-html.d.ts +2 -0
  83. package/lib/_utils/markdown/rulers/strip-html.js +15 -0
  84. package/lib/chat/src/Chat.d.ts +515 -23
  85. package/lib/chat/src/Chat.js +2 -0
  86. package/lib/chat/src/ChatListItems.d.ts +172 -4
  87. package/lib/chat/src/ChatListItems.js +7 -2
  88. package/lib/chat/src/ChatMainArea.d.ts +200 -5
  89. package/lib/chat/src/ChatMainArea.js +26 -14
  90. package/lib/chat/src/ChatMessages.d.ts +198 -3
  91. package/lib/chat/src/ChatMessages.js +11 -4
  92. package/lib/chat/src/ChatParts/Sidebar.d.ts +28 -0
  93. package/lib/chat/src/interface.d.ts +56 -0
  94. package/lib/chat/src/interface.js +6 -0
  95. package/lib/chat/styles/dark.d.ts +14 -0
  96. package/lib/chat/styles/light.d.ts +19 -0
  97. package/lib/chat/styles/light.js +5 -0
  98. package/lib/components.d.ts +1073 -77
  99. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +1 -1
  100. package/lib/data-table/src/TableParts/Header.js +1 -1
  101. package/lib/data-table/src/use-sorter.d.ts +2 -5
  102. package/lib/data-table/src/use-table-data.d.ts +1 -4
  103. package/lib/image/index.d.ts +2 -2
  104. package/lib/image/index.js +3 -2
  105. package/lib/image/src/ImagePreview.d.ts +60 -184
  106. package/lib/image/src/ImagePreview.js +18 -17
  107. package/lib/image/src/interface.d.ts +156 -3
  108. package/lib/image/src/interface.js +12 -1
  109. package/lib/image/src/public-types.d.ts +11 -5
  110. package/lib/image/src/styles/index.cssr.js +11 -1
  111. package/lib/layout/src/LayoutSider.d.ts +1 -1
  112. package/lib/message-bubble/index.d.ts +1 -0
  113. package/lib/message-bubble/src/MessageBubble.d.ts +78 -6
  114. package/lib/message-bubble/src/MessageBubble.js +39 -7
  115. package/lib/message-bubble/src/interface.d.ts +36 -0
  116. package/lib/message-bubble/src/interface.js +6 -0
  117. package/lib/message-bubble/src/styles/index.cssr.js +17 -1
  118. package/lib/message-bubble/styles/dark.d.ts +9 -0
  119. package/lib/message-bubble/styles/light.d.ts +18 -0
  120. package/lib/message-bubble/styles/light.js +10 -1
  121. package/lib/version.d.ts +1 -1
  122. package/lib/version.js +1 -1
  123. package/package.json +2 -1
  124. package/web-types.json +75 -2
@@ -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,11 @@ 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
+ markdownDividerColorOwn: string;
286
+ markdownDividerColorOther: string;
274
287
  typingIndicatorColor: string;
275
288
  dateSeparatorColor: string;
276
289
  dateSeparatorBackgroundColor: string;
@@ -1044,6 +1057,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1044
1057
  serviceMessageTextColor: string;
1045
1058
  serviceMessageBackgroundColor: string;
1046
1059
  messageTitleColor: string;
1060
+ markdownQuoteBorderColorOwn: string;
1061
+ markdownQuoteBorderColorOther: string;
1062
+ markdownQuoteTextColor: string;
1063
+ markdownDividerColorOwn: string;
1064
+ markdownDividerColorOther: string;
1065
+ markdownH1FontSize: string;
1066
+ markdownH2FontSize: string;
1067
+ markdownH3FontSize: string;
1068
+ markdownTextFontSize: string;
1047
1069
  }, {
1048
1070
  StatusIcon: import("../../_mixins").Theme<"Icon", {
1049
1071
  color: string;
@@ -1126,6 +1148,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1126
1148
  inputSuffixColor: string;
1127
1149
  unreadNotificationBackgroundColor: string;
1128
1150
  unreadNotificationTextColor: string;
1151
+ markdownQuoteBorderColorOwn: string;
1152
+ markdownQuoteBorderColorOther: string;
1153
+ markdownQuoteTextColor: string;
1154
+ markdownDividerColorOwn: string;
1155
+ markdownDividerColorOther: string;
1129
1156
  typingIndicatorColor: string;
1130
1157
  dateSeparatorColor: string;
1131
1158
  dateSeparatorBackgroundColor: string;
@@ -1899,6 +1926,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1899
1926
  serviceMessageTextColor: string;
1900
1927
  serviceMessageBackgroundColor: string;
1901
1928
  messageTitleColor: string;
1929
+ markdownQuoteBorderColorOwn: string;
1930
+ markdownQuoteBorderColorOther: string;
1931
+ markdownQuoteTextColor: string;
1932
+ markdownDividerColorOwn: string;
1933
+ markdownDividerColorOther: string;
1934
+ markdownH1FontSize: string;
1935
+ markdownH2FontSize: string;
1936
+ markdownH3FontSize: string;
1937
+ markdownTextFontSize: string;
1902
1938
  }, {
1903
1939
  StatusIcon: import("../../_mixins").Theme<"Icon", {
1904
1940
  color: string;
@@ -1981,6 +2017,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
1981
2017
  inputSuffixColor: string;
1982
2018
  unreadNotificationBackgroundColor: string;
1983
2019
  unreadNotificationTextColor: string;
2020
+ markdownQuoteBorderColorOwn: string;
2021
+ markdownQuoteBorderColorOther: string;
2022
+ markdownQuoteTextColor: string;
2023
+ markdownDividerColorOwn: string;
2024
+ markdownDividerColorOther: string;
1984
2025
  typingIndicatorColor: string;
1985
2026
  dateSeparatorColor: string;
1986
2027
  dateSeparatorBackgroundColor: string;
@@ -2754,6 +2795,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2754
2795
  serviceMessageTextColor: string;
2755
2796
  serviceMessageBackgroundColor: string;
2756
2797
  messageTitleColor: string;
2798
+ markdownQuoteBorderColorOwn: string;
2799
+ markdownQuoteBorderColorOther: string;
2800
+ markdownQuoteTextColor: string;
2801
+ markdownDividerColorOwn: string;
2802
+ markdownDividerColorOther: string;
2803
+ markdownH1FontSize: string;
2804
+ markdownH2FontSize: string;
2805
+ markdownH3FontSize: string;
2806
+ markdownTextFontSize: string;
2757
2807
  }, {
2758
2808
  StatusIcon: import("../../_mixins").Theme<"Icon", {
2759
2809
  color: string;
@@ -2840,6 +2890,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
2840
2890
  inputSuffixColor: string;
2841
2891
  unreadNotificationBackgroundColor: string;
2842
2892
  unreadNotificationTextColor: string;
2893
+ markdownQuoteBorderColorOwn: string;
2894
+ markdownQuoteBorderColorOther: string;
2895
+ markdownQuoteTextColor: string;
2896
+ markdownDividerColorOwn: string;
2897
+ markdownDividerColorOther: string;
2843
2898
  typingIndicatorColor: string;
2844
2899
  dateSeparatorColor: string;
2845
2900
  dateSeparatorBackgroundColor: string;
@@ -3614,6 +3669,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
3614
3669
  serviceMessageTextColor: string;
3615
3670
  serviceMessageBackgroundColor: string;
3616
3671
  messageTitleColor: string;
3672
+ markdownQuoteBorderColorOwn: string;
3673
+ markdownQuoteBorderColorOther: string;
3674
+ markdownQuoteTextColor: string;
3675
+ markdownDividerColorOwn: string;
3676
+ markdownDividerColorOther: string;
3677
+ markdownH1FontSize: string;
3678
+ markdownH2FontSize: string;
3679
+ markdownH3FontSize: string;
3680
+ markdownTextFontSize: string;
3617
3681
  }, {
3618
3682
  StatusIcon: import("../../_mixins").Theme<"Icon", {
3619
3683
  color: string;
@@ -4204,6 +4268,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4204
4268
  readonly type: StringConstructor;
4205
4269
  readonly default: undefined;
4206
4270
  };
4271
+ readonly markdown: {
4272
+ readonly type: BooleanConstructor;
4273
+ readonly default: true;
4274
+ };
4275
+ readonly markdownOptions: {
4276
+ readonly type: import("vue").PropType<import("../..").MarkdownOptions>;
4277
+ readonly default: undefined;
4278
+ };
4207
4279
  readonly bubbleActions: {
4208
4280
  readonly type: import("vue").PropType<import("./interface").ChatBubbleAction[]>;
4209
4281
  readonly default: undefined;
@@ -4283,6 +4355,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
4283
4355
  inputSuffixColor: string;
4284
4356
  unreadNotificationBackgroundColor: string;
4285
4357
  unreadNotificationTextColor: string;
4358
+ markdownQuoteBorderColorOwn: string;
4359
+ markdownQuoteBorderColorOther: string;
4360
+ markdownQuoteTextColor: string;
4361
+ markdownDividerColorOwn: string;
4362
+ markdownDividerColorOther: string;
4286
4363
  typingIndicatorColor: string;
4287
4364
  dateSeparatorColor: string;
4288
4365
  dateSeparatorBackgroundColor: string;
@@ -5056,6 +5133,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5056
5133
  serviceMessageTextColor: string;
5057
5134
  serviceMessageBackgroundColor: string;
5058
5135
  messageTitleColor: string;
5136
+ markdownQuoteBorderColorOwn: string;
5137
+ markdownQuoteBorderColorOther: string;
5138
+ markdownQuoteTextColor: string;
5139
+ markdownDividerColorOwn: string;
5140
+ markdownDividerColorOther: string;
5141
+ markdownH1FontSize: string;
5142
+ markdownH2FontSize: string;
5143
+ markdownH3FontSize: string;
5144
+ markdownTextFontSize: string;
5059
5145
  }, {
5060
5146
  StatusIcon: import("../../_mixins").Theme<"Icon", {
5061
5147
  color: string;
@@ -5138,6 +5224,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5138
5224
  inputSuffixColor: string;
5139
5225
  unreadNotificationBackgroundColor: string;
5140
5226
  unreadNotificationTextColor: string;
5227
+ markdownQuoteBorderColorOwn: string;
5228
+ markdownQuoteBorderColorOther: string;
5229
+ markdownQuoteTextColor: string;
5230
+ markdownDividerColorOwn: string;
5231
+ markdownDividerColorOther: string;
5141
5232
  typingIndicatorColor: string;
5142
5233
  dateSeparatorColor: string;
5143
5234
  dateSeparatorBackgroundColor: string;
@@ -5911,6 +6002,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5911
6002
  serviceMessageTextColor: string;
5912
6003
  serviceMessageBackgroundColor: string;
5913
6004
  messageTitleColor: string;
6005
+ markdownQuoteBorderColorOwn: string;
6006
+ markdownQuoteBorderColorOther: string;
6007
+ markdownQuoteTextColor: string;
6008
+ markdownDividerColorOwn: string;
6009
+ markdownDividerColorOther: string;
6010
+ markdownH1FontSize: string;
6011
+ markdownH2FontSize: string;
6012
+ markdownH3FontSize: string;
6013
+ markdownTextFontSize: string;
5914
6014
  }, {
5915
6015
  StatusIcon: import("../../_mixins").Theme<"Icon", {
5916
6016
  color: string;
@@ -5993,6 +6093,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
5993
6093
  inputSuffixColor: string;
5994
6094
  unreadNotificationBackgroundColor: string;
5995
6095
  unreadNotificationTextColor: string;
6096
+ markdownQuoteBorderColorOwn: string;
6097
+ markdownQuoteBorderColorOther: string;
6098
+ markdownQuoteTextColor: string;
6099
+ markdownDividerColorOwn: string;
6100
+ markdownDividerColorOther: string;
5996
6101
  typingIndicatorColor: string;
5997
6102
  dateSeparatorColor: string;
5998
6103
  dateSeparatorBackgroundColor: string;
@@ -6766,6 +6871,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6766
6871
  serviceMessageTextColor: string;
6767
6872
  serviceMessageBackgroundColor: string;
6768
6873
  messageTitleColor: string;
6874
+ markdownQuoteBorderColorOwn: string;
6875
+ markdownQuoteBorderColorOther: string;
6876
+ markdownQuoteTextColor: string;
6877
+ markdownDividerColorOwn: string;
6878
+ markdownDividerColorOther: string;
6879
+ markdownH1FontSize: string;
6880
+ markdownH2FontSize: string;
6881
+ markdownH3FontSize: string;
6882
+ markdownTextFontSize: string;
6769
6883
  }, {
6770
6884
  StatusIcon: import("../../_mixins").Theme<"Icon", {
6771
6885
  color: string;
@@ -6819,7 +6933,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6819
6933
  }>>>;
6820
6934
  }>> & Readonly<{}>, {
6821
6935
  mergedClsPrefix: import("vue").Ref<string, string>;
6822
- mergedTheme: import("vue").Ref<{
6936
+ mergedTheme: import("vue").ComputedRef<{
6823
6937
  common: import("../..").ThemeCommonVars;
6824
6938
  self: {
6825
6939
  backgroundColor: string;
@@ -6852,6 +6966,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
6852
6966
  inputSuffixColor: string;
6853
6967
  unreadNotificationBackgroundColor: string;
6854
6968
  unreadNotificationTextColor: string;
6969
+ markdownQuoteBorderColorOwn: string;
6970
+ markdownQuoteBorderColorOther: string;
6971
+ markdownQuoteTextColor: string;
6972
+ markdownDividerColorOwn: string;
6973
+ markdownDividerColorOther: string;
6855
6974
  typingIndicatorColor: string;
6856
6975
  dateSeparatorColor: string;
6857
6976
  dateSeparatorBackgroundColor: string;
@@ -7626,6 +7745,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
7626
7745
  serviceMessageTextColor: string;
7627
7746
  serviceMessageBackgroundColor: string;
7628
7747
  messageTitleColor: string;
7748
+ markdownQuoteBorderColorOwn: string;
7749
+ markdownQuoteBorderColorOther: string;
7750
+ markdownQuoteTextColor: string;
7751
+ markdownDividerColorOwn: string;
7752
+ markdownDividerColorOther: string;
7753
+ markdownH1FontSize: string;
7754
+ markdownH2FontSize: string;
7755
+ markdownH3FontSize: string;
7756
+ markdownTextFontSize: string;
7629
7757
  }, {
7630
7758
  StatusIcon: import("../../_mixins").Theme<"Icon", {
7631
7759
  color: string;
@@ -8066,7 +8194,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
8066
8194
  } | undefined;
8067
8195
  } | undefined;
8068
8196
  };
8069
- }, {
8197
+ }> | import("vue").Ref<{
8070
8198
  common: import("../..").ThemeCommonVars;
8071
8199
  self: {
8072
8200
  backgroundColor: string;
@@ -8099,6 +8227,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
8099
8227
  inputSuffixColor: string;
8100
8228
  unreadNotificationBackgroundColor: string;
8101
8229
  unreadNotificationTextColor: string;
8230
+ markdownQuoteBorderColorOwn: string;
8231
+ markdownQuoteBorderColorOther: string;
8232
+ markdownQuoteTextColor: string;
8233
+ markdownDividerColorOwn: string;
8234
+ markdownDividerColorOther: string;
8102
8235
  typingIndicatorColor: string;
8103
8236
  dateSeparatorColor: string;
8104
8237
  dateSeparatorBackgroundColor: string;
@@ -8873,6 +9006,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
8873
9006
  serviceMessageTextColor: string;
8874
9007
  serviceMessageBackgroundColor: string;
8875
9008
  messageTitleColor: string;
9009
+ markdownQuoteBorderColorOwn: string;
9010
+ markdownQuoteBorderColorOther: string;
9011
+ markdownQuoteTextColor: string;
9012
+ markdownDividerColorOwn: string;
9013
+ markdownDividerColorOther: string;
9014
+ markdownH1FontSize: string;
9015
+ markdownH2FontSize: string;
9016
+ markdownH3FontSize: string;
9017
+ markdownTextFontSize: string;
8876
9018
  }, {
8877
9019
  StatusIcon: import("../../_mixins").Theme<"Icon", {
8878
9020
  color: string;
@@ -9313,7 +9455,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
9313
9455
  } | undefined;
9314
9456
  } | undefined;
9315
9457
  };
9316
- }> | import("vue").ComputedRef<{
9458
+ }, {
9317
9459
  common: import("../..").ThemeCommonVars;
9318
9460
  self: {
9319
9461
  backgroundColor: string;
@@ -9346,6 +9488,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
9346
9488
  inputSuffixColor: string;
9347
9489
  unreadNotificationBackgroundColor: string;
9348
9490
  unreadNotificationTextColor: string;
9491
+ markdownQuoteBorderColorOwn: string;
9492
+ markdownQuoteBorderColorOther: string;
9493
+ markdownQuoteTextColor: string;
9494
+ markdownDividerColorOwn: string;
9495
+ markdownDividerColorOther: string;
9349
9496
  typingIndicatorColor: string;
9350
9497
  dateSeparatorColor: string;
9351
9498
  dateSeparatorBackgroundColor: string;
@@ -10120,6 +10267,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
10120
10267
  serviceMessageTextColor: string;
10121
10268
  serviceMessageBackgroundColor: string;
10122
10269
  messageTitleColor: string;
10270
+ markdownQuoteBorderColorOwn: string;
10271
+ markdownQuoteBorderColorOther: string;
10272
+ markdownQuoteTextColor: string;
10273
+ markdownDividerColorOwn: string;
10274
+ markdownDividerColorOther: string;
10275
+ markdownH1FontSize: string;
10276
+ markdownH2FontSize: string;
10277
+ markdownH3FontSize: string;
10278
+ markdownTextFontSize: string;
10123
10279
  }, {
10124
10280
  StatusIcon: import("../../_mixins").Theme<"Icon", {
10125
10281
  color: string;
@@ -10589,6 +10745,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
10589
10745
  readonly shareButtonTooltip: string;
10590
10746
  readonly profileButtonTooltip: string;
10591
10747
  readonly unreadNotificationText: string;
10748
+ readonly markdown: boolean;
10749
+ readonly markdownOptions: import("../..").MarkdownOptions;
10592
10750
  readonly onAttachmentDownload: import("./interface").OnAttachmentDownload;
10593
10751
  readonly inputValue: string;
10594
10752
  readonly messages: ChatMessageData[];
@@ -10615,11 +10773,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
10615
10773
  readonly onFooterInputChange: (value: string, chatId: ChatId) => void;
10616
10774
  readonly onMessagesScrollToTop: () => void;
10617
10775
  readonly onMessagesScrollToBottom: () => void;
10618
- readonly loadingCount: number;
10776
+ readonly 'onUpdate:inputValue': (value: string) => void;
10619
10777
  readonly selectedChat: ChatListItemData;
10778
+ readonly loadingCount: number;
10620
10779
  readonly showAttachButton: boolean;
10621
10780
  readonly onMessageSend: import("./interface").OnMessageSend;
10622
- readonly 'onUpdate:inputValue': (value: string) => void;
10623
10781
  }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
10624
10782
  P: {};
10625
10783
  B: {};
@@ -10736,6 +10894,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
10736
10894
  readonly type: StringConstructor;
10737
10895
  readonly default: undefined;
10738
10896
  };
10897
+ readonly markdown: {
10898
+ readonly type: BooleanConstructor;
10899
+ readonly default: true;
10900
+ };
10901
+ readonly markdownOptions: {
10902
+ readonly type: import("vue").PropType<import("../..").MarkdownOptions>;
10903
+ readonly default: undefined;
10904
+ };
10739
10905
  readonly bubbleActions: {
10740
10906
  readonly type: import("vue").PropType<import("./interface").ChatBubbleAction[]>;
10741
10907
  readonly default: undefined;
@@ -10815,6 +10981,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
10815
10981
  inputSuffixColor: string;
10816
10982
  unreadNotificationBackgroundColor: string;
10817
10983
  unreadNotificationTextColor: string;
10984
+ markdownQuoteBorderColorOwn: string;
10985
+ markdownQuoteBorderColorOther: string;
10986
+ markdownQuoteTextColor: string;
10987
+ markdownDividerColorOwn: string;
10988
+ markdownDividerColorOther: string;
10818
10989
  typingIndicatorColor: string;
10819
10990
  dateSeparatorColor: string;
10820
10991
  dateSeparatorBackgroundColor: string;
@@ -11588,6 +11759,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
11588
11759
  serviceMessageTextColor: string;
11589
11760
  serviceMessageBackgroundColor: string;
11590
11761
  messageTitleColor: string;
11762
+ markdownQuoteBorderColorOwn: string;
11763
+ markdownQuoteBorderColorOther: string;
11764
+ markdownQuoteTextColor: string;
11765
+ markdownDividerColorOwn: string;
11766
+ markdownDividerColorOther: string;
11767
+ markdownH1FontSize: string;
11768
+ markdownH2FontSize: string;
11769
+ markdownH3FontSize: string;
11770
+ markdownTextFontSize: string;
11591
11771
  }, {
11592
11772
  StatusIcon: import("../../_mixins").Theme<"Icon", {
11593
11773
  color: string;
@@ -11670,6 +11850,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
11670
11850
  inputSuffixColor: string;
11671
11851
  unreadNotificationBackgroundColor: string;
11672
11852
  unreadNotificationTextColor: string;
11853
+ markdownQuoteBorderColorOwn: string;
11854
+ markdownQuoteBorderColorOther: string;
11855
+ markdownQuoteTextColor: string;
11856
+ markdownDividerColorOwn: string;
11857
+ markdownDividerColorOther: string;
11673
11858
  typingIndicatorColor: string;
11674
11859
  dateSeparatorColor: string;
11675
11860
  dateSeparatorBackgroundColor: string;
@@ -12443,6 +12628,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
12443
12628
  serviceMessageTextColor: string;
12444
12629
  serviceMessageBackgroundColor: string;
12445
12630
  messageTitleColor: string;
12631
+ markdownQuoteBorderColorOwn: string;
12632
+ markdownQuoteBorderColorOther: string;
12633
+ markdownQuoteTextColor: string;
12634
+ markdownDividerColorOwn: string;
12635
+ markdownDividerColorOther: string;
12636
+ markdownH1FontSize: string;
12637
+ markdownH2FontSize: string;
12638
+ markdownH3FontSize: string;
12639
+ markdownTextFontSize: string;
12446
12640
  }, {
12447
12641
  StatusIcon: import("../../_mixins").Theme<"Icon", {
12448
12642
  color: string;
@@ -12525,6 +12719,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
12525
12719
  inputSuffixColor: string;
12526
12720
  unreadNotificationBackgroundColor: string;
12527
12721
  unreadNotificationTextColor: string;
12722
+ markdownQuoteBorderColorOwn: string;
12723
+ markdownQuoteBorderColorOther: string;
12724
+ markdownQuoteTextColor: string;
12725
+ markdownDividerColorOwn: string;
12726
+ markdownDividerColorOther: string;
12528
12727
  typingIndicatorColor: string;
12529
12728
  dateSeparatorColor: string;
12530
12729
  dateSeparatorBackgroundColor: string;
@@ -13298,6 +13497,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
13298
13497
  serviceMessageTextColor: string;
13299
13498
  serviceMessageBackgroundColor: string;
13300
13499
  messageTitleColor: string;
13500
+ markdownQuoteBorderColorOwn: string;
13501
+ markdownQuoteBorderColorOther: string;
13502
+ markdownQuoteTextColor: string;
13503
+ markdownDividerColorOwn: string;
13504
+ markdownDividerColorOther: string;
13505
+ markdownH1FontSize: string;
13506
+ markdownH2FontSize: string;
13507
+ markdownH3FontSize: string;
13508
+ markdownTextFontSize: string;
13301
13509
  }, {
13302
13510
  StatusIcon: import("../../_mixins").Theme<"Icon", {
13303
13511
  color: string;
@@ -13351,7 +13559,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
13351
13559
  }>>>;
13352
13560
  }>> & Readonly<{}>, {
13353
13561
  mergedClsPrefix: import("vue").Ref<string, string>;
13354
- mergedTheme: import("vue").Ref<{
13562
+ mergedTheme: import("vue").ComputedRef<{
13355
13563
  common: import("../..").ThemeCommonVars;
13356
13564
  self: {
13357
13565
  backgroundColor: string;
@@ -13384,6 +13592,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
13384
13592
  inputSuffixColor: string;
13385
13593
  unreadNotificationBackgroundColor: string;
13386
13594
  unreadNotificationTextColor: string;
13595
+ markdownQuoteBorderColorOwn: string;
13596
+ markdownQuoteBorderColorOther: string;
13597
+ markdownQuoteTextColor: string;
13598
+ markdownDividerColorOwn: string;
13599
+ markdownDividerColorOther: string;
13387
13600
  typingIndicatorColor: string;
13388
13601
  dateSeparatorColor: string;
13389
13602
  dateSeparatorBackgroundColor: string;
@@ -14158,6 +14371,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
14158
14371
  serviceMessageTextColor: string;
14159
14372
  serviceMessageBackgroundColor: string;
14160
14373
  messageTitleColor: string;
14374
+ markdownQuoteBorderColorOwn: string;
14375
+ markdownQuoteBorderColorOther: string;
14376
+ markdownQuoteTextColor: string;
14377
+ markdownDividerColorOwn: string;
14378
+ markdownDividerColorOther: string;
14379
+ markdownH1FontSize: string;
14380
+ markdownH2FontSize: string;
14381
+ markdownH3FontSize: string;
14382
+ markdownTextFontSize: string;
14161
14383
  }, {
14162
14384
  StatusIcon: import("../../_mixins").Theme<"Icon", {
14163
14385
  color: string;
@@ -14598,7 +14820,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
14598
14820
  } | undefined;
14599
14821
  } | undefined;
14600
14822
  };
14601
- }, {
14823
+ }> | import("vue").Ref<{
14602
14824
  common: import("../..").ThemeCommonVars;
14603
14825
  self: {
14604
14826
  backgroundColor: string;
@@ -14631,6 +14853,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
14631
14853
  inputSuffixColor: string;
14632
14854
  unreadNotificationBackgroundColor: string;
14633
14855
  unreadNotificationTextColor: string;
14856
+ markdownQuoteBorderColorOwn: string;
14857
+ markdownQuoteBorderColorOther: string;
14858
+ markdownQuoteTextColor: string;
14859
+ markdownDividerColorOwn: string;
14860
+ markdownDividerColorOther: string;
14634
14861
  typingIndicatorColor: string;
14635
14862
  dateSeparatorColor: string;
14636
14863
  dateSeparatorBackgroundColor: string;
@@ -15405,6 +15632,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
15405
15632
  serviceMessageTextColor: string;
15406
15633
  serviceMessageBackgroundColor: string;
15407
15634
  messageTitleColor: string;
15635
+ markdownQuoteBorderColorOwn: string;
15636
+ markdownQuoteBorderColorOther: string;
15637
+ markdownQuoteTextColor: string;
15638
+ markdownDividerColorOwn: string;
15639
+ markdownDividerColorOther: string;
15640
+ markdownH1FontSize: string;
15641
+ markdownH2FontSize: string;
15642
+ markdownH3FontSize: string;
15643
+ markdownTextFontSize: string;
15408
15644
  }, {
15409
15645
  StatusIcon: import("../../_mixins").Theme<"Icon", {
15410
15646
  color: string;
@@ -15845,7 +16081,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
15845
16081
  } | undefined;
15846
16082
  } | undefined;
15847
16083
  };
15848
- }> | import("vue").ComputedRef<{
16084
+ }, {
15849
16085
  common: import("../..").ThemeCommonVars;
15850
16086
  self: {
15851
16087
  backgroundColor: string;
@@ -15878,6 +16114,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
15878
16114
  inputSuffixColor: string;
15879
16115
  unreadNotificationBackgroundColor: string;
15880
16116
  unreadNotificationTextColor: string;
16117
+ markdownQuoteBorderColorOwn: string;
16118
+ markdownQuoteBorderColorOther: string;
16119
+ markdownQuoteTextColor: string;
16120
+ markdownDividerColorOwn: string;
16121
+ markdownDividerColorOther: string;
15881
16122
  typingIndicatorColor: string;
15882
16123
  dateSeparatorColor: string;
15883
16124
  dateSeparatorBackgroundColor: string;
@@ -16652,6 +16893,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
16652
16893
  serviceMessageTextColor: string;
16653
16894
  serviceMessageBackgroundColor: string;
16654
16895
  messageTitleColor: string;
16896
+ markdownQuoteBorderColorOwn: string;
16897
+ markdownQuoteBorderColorOther: string;
16898
+ markdownQuoteTextColor: string;
16899
+ markdownDividerColorOwn: string;
16900
+ markdownDividerColorOther: string;
16901
+ markdownH1FontSize: string;
16902
+ markdownH2FontSize: string;
16903
+ markdownH3FontSize: string;
16904
+ markdownTextFontSize: string;
16655
16905
  }, {
16656
16906
  StatusIcon: import("../../_mixins").Theme<"Icon", {
16657
16907
  color: string;
@@ -17121,6 +17371,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
17121
17371
  readonly shareButtonTooltip: string;
17122
17372
  readonly profileButtonTooltip: string;
17123
17373
  readonly unreadNotificationText: string;
17374
+ readonly markdown: boolean;
17375
+ readonly markdownOptions: import("../..").MarkdownOptions;
17124
17376
  readonly onAttachmentDownload: import("./interface").OnAttachmentDownload;
17125
17377
  readonly inputValue: string;
17126
17378
  readonly messages: ChatMessageData[];
@@ -17147,11 +17399,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
17147
17399
  readonly onFooterInputChange: (value: string, chatId: ChatId) => void;
17148
17400
  readonly onMessagesScrollToTop: () => void;
17149
17401
  readonly onMessagesScrollToBottom: () => void;
17150
- readonly loadingCount: number;
17402
+ readonly 'onUpdate:inputValue': (value: string) => void;
17151
17403
  readonly selectedChat: ChatListItemData;
17404
+ readonly loadingCount: number;
17152
17405
  readonly showAttachButton: boolean;
17153
17406
  readonly onMessageSend: import("./interface").OnMessageSend;
17154
- readonly 'onUpdate:inputValue': (value: string) => void;
17155
17407
  }> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
17156
17408
  readonly selectedChat: {
17157
17409
  readonly type: import("vue").PropType<ChatListItemData>;
@@ -17261,6 +17513,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
17261
17513
  readonly type: StringConstructor;
17262
17514
  readonly default: undefined;
17263
17515
  };
17516
+ readonly markdown: {
17517
+ readonly type: BooleanConstructor;
17518
+ readonly default: true;
17519
+ };
17520
+ readonly markdownOptions: {
17521
+ readonly type: import("vue").PropType<import("../..").MarkdownOptions>;
17522
+ readonly default: undefined;
17523
+ };
17264
17524
  readonly bubbleActions: {
17265
17525
  readonly type: import("vue").PropType<import("./interface").ChatBubbleAction[]>;
17266
17526
  readonly default: undefined;
@@ -17340,6 +17600,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
17340
17600
  inputSuffixColor: string;
17341
17601
  unreadNotificationBackgroundColor: string;
17342
17602
  unreadNotificationTextColor: string;
17603
+ markdownQuoteBorderColorOwn: string;
17604
+ markdownQuoteBorderColorOther: string;
17605
+ markdownQuoteTextColor: string;
17606
+ markdownDividerColorOwn: string;
17607
+ markdownDividerColorOther: string;
17343
17608
  typingIndicatorColor: string;
17344
17609
  dateSeparatorColor: string;
17345
17610
  dateSeparatorBackgroundColor: string;
@@ -18113,6 +18378,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
18113
18378
  serviceMessageTextColor: string;
18114
18379
  serviceMessageBackgroundColor: string;
18115
18380
  messageTitleColor: string;
18381
+ markdownQuoteBorderColorOwn: string;
18382
+ markdownQuoteBorderColorOther: string;
18383
+ markdownQuoteTextColor: string;
18384
+ markdownDividerColorOwn: string;
18385
+ markdownDividerColorOther: string;
18386
+ markdownH1FontSize: string;
18387
+ markdownH2FontSize: string;
18388
+ markdownH3FontSize: string;
18389
+ markdownTextFontSize: string;
18116
18390
  }, {
18117
18391
  StatusIcon: import("../../_mixins").Theme<"Icon", {
18118
18392
  color: string;
@@ -18195,6 +18469,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
18195
18469
  inputSuffixColor: string;
18196
18470
  unreadNotificationBackgroundColor: string;
18197
18471
  unreadNotificationTextColor: string;
18472
+ markdownQuoteBorderColorOwn: string;
18473
+ markdownQuoteBorderColorOther: string;
18474
+ markdownQuoteTextColor: string;
18475
+ markdownDividerColorOwn: string;
18476
+ markdownDividerColorOther: string;
18198
18477
  typingIndicatorColor: string;
18199
18478
  dateSeparatorColor: string;
18200
18479
  dateSeparatorBackgroundColor: string;
@@ -18968,6 +19247,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
18968
19247
  serviceMessageTextColor: string;
18969
19248
  serviceMessageBackgroundColor: string;
18970
19249
  messageTitleColor: string;
19250
+ markdownQuoteBorderColorOwn: string;
19251
+ markdownQuoteBorderColorOther: string;
19252
+ markdownQuoteTextColor: string;
19253
+ markdownDividerColorOwn: string;
19254
+ markdownDividerColorOther: string;
19255
+ markdownH1FontSize: string;
19256
+ markdownH2FontSize: string;
19257
+ markdownH3FontSize: string;
19258
+ markdownTextFontSize: string;
18971
19259
  }, {
18972
19260
  StatusIcon: import("../../_mixins").Theme<"Icon", {
18973
19261
  color: string;
@@ -19050,6 +19338,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
19050
19338
  inputSuffixColor: string;
19051
19339
  unreadNotificationBackgroundColor: string;
19052
19340
  unreadNotificationTextColor: string;
19341
+ markdownQuoteBorderColorOwn: string;
19342
+ markdownQuoteBorderColorOther: string;
19343
+ markdownQuoteTextColor: string;
19344
+ markdownDividerColorOwn: string;
19345
+ markdownDividerColorOther: string;
19053
19346
  typingIndicatorColor: string;
19054
19347
  dateSeparatorColor: string;
19055
19348
  dateSeparatorBackgroundColor: string;
@@ -19823,6 +20116,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
19823
20116
  serviceMessageTextColor: string;
19824
20117
  serviceMessageBackgroundColor: string;
19825
20118
  messageTitleColor: string;
20119
+ markdownQuoteBorderColorOwn: string;
20120
+ markdownQuoteBorderColorOther: string;
20121
+ markdownQuoteTextColor: string;
20122
+ markdownDividerColorOwn: string;
20123
+ markdownDividerColorOther: string;
20124
+ markdownH1FontSize: string;
20125
+ markdownH2FontSize: string;
20126
+ markdownH3FontSize: string;
20127
+ markdownTextFontSize: string;
19826
20128
  }, {
19827
20129
  StatusIcon: import("../../_mixins").Theme<"Icon", {
19828
20130
  color: string;
@@ -19876,7 +20178,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
19876
20178
  }>>>;
19877
20179
  }>> & Readonly<{}>, {
19878
20180
  mergedClsPrefix: import("vue").Ref<string, string>;
19879
- mergedTheme: import("vue").Ref<{
20181
+ mergedTheme: import("vue").ComputedRef<{
19880
20182
  common: import("../..").ThemeCommonVars;
19881
20183
  self: {
19882
20184
  backgroundColor: string;
@@ -19909,6 +20211,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
19909
20211
  inputSuffixColor: string;
19910
20212
  unreadNotificationBackgroundColor: string;
19911
20213
  unreadNotificationTextColor: string;
20214
+ markdownQuoteBorderColorOwn: string;
20215
+ markdownQuoteBorderColorOther: string;
20216
+ markdownQuoteTextColor: string;
20217
+ markdownDividerColorOwn: string;
20218
+ markdownDividerColorOther: string;
19912
20219
  typingIndicatorColor: string;
19913
20220
  dateSeparatorColor: string;
19914
20221
  dateSeparatorBackgroundColor: string;
@@ -20683,6 +20990,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
20683
20990
  serviceMessageTextColor: string;
20684
20991
  serviceMessageBackgroundColor: string;
20685
20992
  messageTitleColor: string;
20993
+ markdownQuoteBorderColorOwn: string;
20994
+ markdownQuoteBorderColorOther: string;
20995
+ markdownQuoteTextColor: string;
20996
+ markdownDividerColorOwn: string;
20997
+ markdownDividerColorOther: string;
20998
+ markdownH1FontSize: string;
20999
+ markdownH2FontSize: string;
21000
+ markdownH3FontSize: string;
21001
+ markdownTextFontSize: string;
20686
21002
  }, {
20687
21003
  StatusIcon: import("../../_mixins").Theme<"Icon", {
20688
21004
  color: string;
@@ -21123,7 +21439,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
21123
21439
  } | undefined;
21124
21440
  } | undefined;
21125
21441
  };
21126
- }, {
21442
+ }> | import("vue").Ref<{
21127
21443
  common: import("../..").ThemeCommonVars;
21128
21444
  self: {
21129
21445
  backgroundColor: string;
@@ -21156,6 +21472,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
21156
21472
  inputSuffixColor: string;
21157
21473
  unreadNotificationBackgroundColor: string;
21158
21474
  unreadNotificationTextColor: string;
21475
+ markdownQuoteBorderColorOwn: string;
21476
+ markdownQuoteBorderColorOther: string;
21477
+ markdownQuoteTextColor: string;
21478
+ markdownDividerColorOwn: string;
21479
+ markdownDividerColorOther: string;
21159
21480
  typingIndicatorColor: string;
21160
21481
  dateSeparatorColor: string;
21161
21482
  dateSeparatorBackgroundColor: string;
@@ -21930,6 +22251,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
21930
22251
  serviceMessageTextColor: string;
21931
22252
  serviceMessageBackgroundColor: string;
21932
22253
  messageTitleColor: string;
22254
+ markdownQuoteBorderColorOwn: string;
22255
+ markdownQuoteBorderColorOther: string;
22256
+ markdownQuoteTextColor: string;
22257
+ markdownDividerColorOwn: string;
22258
+ markdownDividerColorOther: string;
22259
+ markdownH1FontSize: string;
22260
+ markdownH2FontSize: string;
22261
+ markdownH3FontSize: string;
22262
+ markdownTextFontSize: string;
21933
22263
  }, {
21934
22264
  StatusIcon: import("../../_mixins").Theme<"Icon", {
21935
22265
  color: string;
@@ -22370,7 +22700,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
22370
22700
  } | undefined;
22371
22701
  } | undefined;
22372
22702
  };
22373
- }> | import("vue").ComputedRef<{
22703
+ }, {
22374
22704
  common: import("../..").ThemeCommonVars;
22375
22705
  self: {
22376
22706
  backgroundColor: string;
@@ -22403,6 +22733,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
22403
22733
  inputSuffixColor: string;
22404
22734
  unreadNotificationBackgroundColor: string;
22405
22735
  unreadNotificationTextColor: string;
22736
+ markdownQuoteBorderColorOwn: string;
22737
+ markdownQuoteBorderColorOther: string;
22738
+ markdownQuoteTextColor: string;
22739
+ markdownDividerColorOwn: string;
22740
+ markdownDividerColorOther: string;
22406
22741
  typingIndicatorColor: string;
22407
22742
  dateSeparatorColor: string;
22408
22743
  dateSeparatorBackgroundColor: string;
@@ -23177,6 +23512,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
23177
23512
  serviceMessageTextColor: string;
23178
23513
  serviceMessageBackgroundColor: string;
23179
23514
  messageTitleColor: string;
23515
+ markdownQuoteBorderColorOwn: string;
23516
+ markdownQuoteBorderColorOther: string;
23517
+ markdownQuoteTextColor: string;
23518
+ markdownDividerColorOwn: string;
23519
+ markdownDividerColorOther: string;
23520
+ markdownH1FontSize: string;
23521
+ markdownH2FontSize: string;
23522
+ markdownH3FontSize: string;
23523
+ markdownTextFontSize: string;
23180
23524
  }, {
23181
23525
  StatusIcon: import("../../_mixins").Theme<"Icon", {
23182
23526
  color: string;
@@ -23646,6 +23990,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
23646
23990
  readonly shareButtonTooltip: string;
23647
23991
  readonly profileButtonTooltip: string;
23648
23992
  readonly unreadNotificationText: string;
23993
+ readonly markdown: boolean;
23994
+ readonly markdownOptions: import("../..").MarkdownOptions;
23649
23995
  readonly onAttachmentDownload: import("./interface").OnAttachmentDownload;
23650
23996
  readonly inputValue: string;
23651
23997
  readonly messages: ChatMessageData[];
@@ -23672,11 +24018,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
23672
24018
  readonly onFooterInputChange: (value: string, chatId: ChatId) => void;
23673
24019
  readonly onMessagesScrollToTop: () => void;
23674
24020
  readonly onMessagesScrollToBottom: () => void;
23675
- readonly loadingCount: number;
24021
+ readonly 'onUpdate:inputValue': (value: string) => void;
23676
24022
  readonly selectedChat: ChatListItemData;
24023
+ readonly loadingCount: number;
23677
24024
  readonly showAttachButton: boolean;
23678
24025
  readonly onMessageSend: import("./interface").OnMessageSend;
23679
- readonly 'onUpdate:inputValue': (value: string) => void;
23680
24026
  }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
23681
24027
  P: {};
23682
24028
  B: {};
@@ -23793,6 +24139,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
23793
24139
  readonly type: StringConstructor;
23794
24140
  readonly default: undefined;
23795
24141
  };
24142
+ readonly markdown: {
24143
+ readonly type: BooleanConstructor;
24144
+ readonly default: true;
24145
+ };
24146
+ readonly markdownOptions: {
24147
+ readonly type: import("vue").PropType<import("../..").MarkdownOptions>;
24148
+ readonly default: undefined;
24149
+ };
23796
24150
  readonly bubbleActions: {
23797
24151
  readonly type: import("vue").PropType<import("./interface").ChatBubbleAction[]>;
23798
24152
  readonly default: undefined;
@@ -23872,6 +24226,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
23872
24226
  inputSuffixColor: string;
23873
24227
  unreadNotificationBackgroundColor: string;
23874
24228
  unreadNotificationTextColor: string;
24229
+ markdownQuoteBorderColorOwn: string;
24230
+ markdownQuoteBorderColorOther: string;
24231
+ markdownQuoteTextColor: string;
24232
+ markdownDividerColorOwn: string;
24233
+ markdownDividerColorOther: string;
23875
24234
  typingIndicatorColor: string;
23876
24235
  dateSeparatorColor: string;
23877
24236
  dateSeparatorBackgroundColor: string;
@@ -24645,6 +25004,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
24645
25004
  serviceMessageTextColor: string;
24646
25005
  serviceMessageBackgroundColor: string;
24647
25006
  messageTitleColor: string;
25007
+ markdownQuoteBorderColorOwn: string;
25008
+ markdownQuoteBorderColorOther: string;
25009
+ markdownQuoteTextColor: string;
25010
+ markdownDividerColorOwn: string;
25011
+ markdownDividerColorOther: string;
25012
+ markdownH1FontSize: string;
25013
+ markdownH2FontSize: string;
25014
+ markdownH3FontSize: string;
25015
+ markdownTextFontSize: string;
24648
25016
  }, {
24649
25017
  StatusIcon: import("../../_mixins").Theme<"Icon", {
24650
25018
  color: string;
@@ -24727,6 +25095,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
24727
25095
  inputSuffixColor: string;
24728
25096
  unreadNotificationBackgroundColor: string;
24729
25097
  unreadNotificationTextColor: string;
25098
+ markdownQuoteBorderColorOwn: string;
25099
+ markdownQuoteBorderColorOther: string;
25100
+ markdownQuoteTextColor: string;
25101
+ markdownDividerColorOwn: string;
25102
+ markdownDividerColorOther: string;
24730
25103
  typingIndicatorColor: string;
24731
25104
  dateSeparatorColor: string;
24732
25105
  dateSeparatorBackgroundColor: string;
@@ -25500,6 +25873,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
25500
25873
  serviceMessageTextColor: string;
25501
25874
  serviceMessageBackgroundColor: string;
25502
25875
  messageTitleColor: string;
25876
+ markdownQuoteBorderColorOwn: string;
25877
+ markdownQuoteBorderColorOther: string;
25878
+ markdownQuoteTextColor: string;
25879
+ markdownDividerColorOwn: string;
25880
+ markdownDividerColorOther: string;
25881
+ markdownH1FontSize: string;
25882
+ markdownH2FontSize: string;
25883
+ markdownH3FontSize: string;
25884
+ markdownTextFontSize: string;
25503
25885
  }, {
25504
25886
  StatusIcon: import("../../_mixins").Theme<"Icon", {
25505
25887
  color: string;
@@ -25582,6 +25964,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
25582
25964
  inputSuffixColor: string;
25583
25965
  unreadNotificationBackgroundColor: string;
25584
25966
  unreadNotificationTextColor: string;
25967
+ markdownQuoteBorderColorOwn: string;
25968
+ markdownQuoteBorderColorOther: string;
25969
+ markdownQuoteTextColor: string;
25970
+ markdownDividerColorOwn: string;
25971
+ markdownDividerColorOther: string;
25585
25972
  typingIndicatorColor: string;
25586
25973
  dateSeparatorColor: string;
25587
25974
  dateSeparatorBackgroundColor: string;
@@ -26355,6 +26742,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
26355
26742
  serviceMessageTextColor: string;
26356
26743
  serviceMessageBackgroundColor: string;
26357
26744
  messageTitleColor: string;
26745
+ markdownQuoteBorderColorOwn: string;
26746
+ markdownQuoteBorderColorOther: string;
26747
+ markdownQuoteTextColor: string;
26748
+ markdownDividerColorOwn: string;
26749
+ markdownDividerColorOther: string;
26750
+ markdownH1FontSize: string;
26751
+ markdownH2FontSize: string;
26752
+ markdownH3FontSize: string;
26753
+ markdownTextFontSize: string;
26358
26754
  }, {
26359
26755
  StatusIcon: import("../../_mixins").Theme<"Icon", {
26360
26756
  color: string;
@@ -26408,7 +26804,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
26408
26804
  }>>>;
26409
26805
  }>> & Readonly<{}>, {
26410
26806
  mergedClsPrefix: import("vue").Ref<string, string>;
26411
- mergedTheme: import("vue").Ref<{
26807
+ mergedTheme: import("vue").ComputedRef<{
26412
26808
  common: import("../..").ThemeCommonVars;
26413
26809
  self: {
26414
26810
  backgroundColor: string;
@@ -26441,6 +26837,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
26441
26837
  inputSuffixColor: string;
26442
26838
  unreadNotificationBackgroundColor: string;
26443
26839
  unreadNotificationTextColor: string;
26840
+ markdownQuoteBorderColorOwn: string;
26841
+ markdownQuoteBorderColorOther: string;
26842
+ markdownQuoteTextColor: string;
26843
+ markdownDividerColorOwn: string;
26844
+ markdownDividerColorOther: string;
26444
26845
  typingIndicatorColor: string;
26445
26846
  dateSeparatorColor: string;
26446
26847
  dateSeparatorBackgroundColor: string;
@@ -27215,6 +27616,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
27215
27616
  serviceMessageTextColor: string;
27216
27617
  serviceMessageBackgroundColor: string;
27217
27618
  messageTitleColor: string;
27619
+ markdownQuoteBorderColorOwn: string;
27620
+ markdownQuoteBorderColorOther: string;
27621
+ markdownQuoteTextColor: string;
27622
+ markdownDividerColorOwn: string;
27623
+ markdownDividerColorOther: string;
27624
+ markdownH1FontSize: string;
27625
+ markdownH2FontSize: string;
27626
+ markdownH3FontSize: string;
27627
+ markdownTextFontSize: string;
27218
27628
  }, {
27219
27629
  StatusIcon: import("../../_mixins").Theme<"Icon", {
27220
27630
  color: string;
@@ -27655,7 +28065,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
27655
28065
  } | undefined;
27656
28066
  } | undefined;
27657
28067
  };
27658
- }, {
28068
+ }> | import("vue").Ref<{
27659
28069
  common: import("../..").ThemeCommonVars;
27660
28070
  self: {
27661
28071
  backgroundColor: string;
@@ -27688,6 +28098,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
27688
28098
  inputSuffixColor: string;
27689
28099
  unreadNotificationBackgroundColor: string;
27690
28100
  unreadNotificationTextColor: string;
28101
+ markdownQuoteBorderColorOwn: string;
28102
+ markdownQuoteBorderColorOther: string;
28103
+ markdownQuoteTextColor: string;
28104
+ markdownDividerColorOwn: string;
28105
+ markdownDividerColorOther: string;
27691
28106
  typingIndicatorColor: string;
27692
28107
  dateSeparatorColor: string;
27693
28108
  dateSeparatorBackgroundColor: string;
@@ -28462,6 +28877,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
28462
28877
  serviceMessageTextColor: string;
28463
28878
  serviceMessageBackgroundColor: string;
28464
28879
  messageTitleColor: string;
28880
+ markdownQuoteBorderColorOwn: string;
28881
+ markdownQuoteBorderColorOther: string;
28882
+ markdownQuoteTextColor: string;
28883
+ markdownDividerColorOwn: string;
28884
+ markdownDividerColorOther: string;
28885
+ markdownH1FontSize: string;
28886
+ markdownH2FontSize: string;
28887
+ markdownH3FontSize: string;
28888
+ markdownTextFontSize: string;
28465
28889
  }, {
28466
28890
  StatusIcon: import("../../_mixins").Theme<"Icon", {
28467
28891
  color: string;
@@ -28902,7 +29326,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
28902
29326
  } | undefined;
28903
29327
  } | undefined;
28904
29328
  };
28905
- }> | import("vue").ComputedRef<{
29329
+ }, {
28906
29330
  common: import("../..").ThemeCommonVars;
28907
29331
  self: {
28908
29332
  backgroundColor: string;
@@ -28935,6 +29359,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
28935
29359
  inputSuffixColor: string;
28936
29360
  unreadNotificationBackgroundColor: string;
28937
29361
  unreadNotificationTextColor: string;
29362
+ markdownQuoteBorderColorOwn: string;
29363
+ markdownQuoteBorderColorOther: string;
29364
+ markdownQuoteTextColor: string;
29365
+ markdownDividerColorOwn: string;
29366
+ markdownDividerColorOther: string;
28938
29367
  typingIndicatorColor: string;
28939
29368
  dateSeparatorColor: string;
28940
29369
  dateSeparatorBackgroundColor: string;
@@ -29709,6 +30138,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
29709
30138
  serviceMessageTextColor: string;
29710
30139
  serviceMessageBackgroundColor: string;
29711
30140
  messageTitleColor: string;
30141
+ markdownQuoteBorderColorOwn: string;
30142
+ markdownQuoteBorderColorOther: string;
30143
+ markdownQuoteTextColor: string;
30144
+ markdownDividerColorOwn: string;
30145
+ markdownDividerColorOther: string;
30146
+ markdownH1FontSize: string;
30147
+ markdownH2FontSize: string;
30148
+ markdownH3FontSize: string;
30149
+ markdownTextFontSize: string;
29712
30150
  }, {
29713
30151
  StatusIcon: import("../../_mixins").Theme<"Icon", {
29714
30152
  color: string;
@@ -30178,6 +30616,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
30178
30616
  readonly shareButtonTooltip: string;
30179
30617
  readonly profileButtonTooltip: string;
30180
30618
  readonly unreadNotificationText: string;
30619
+ readonly markdown: boolean;
30620
+ readonly markdownOptions: import("../..").MarkdownOptions;
30181
30621
  readonly onAttachmentDownload: import("./interface").OnAttachmentDownload;
30182
30622
  readonly inputValue: string;
30183
30623
  readonly messages: ChatMessageData[];
@@ -30204,13 +30644,13 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
30204
30644
  readonly onFooterInputChange: (value: string, chatId: ChatId) => void;
30205
30645
  readonly onMessagesScrollToTop: () => void;
30206
30646
  readonly onMessagesScrollToBottom: () => void;
30207
- readonly loadingCount: number;
30647
+ readonly 'onUpdate:inputValue': (value: string) => void;
30208
30648
  readonly selectedChat: ChatListItemData;
30649
+ readonly loadingCount: number;
30209
30650
  readonly showAttachButton: boolean;
30210
30651
  readonly onMessageSend: import("./interface").OnMessageSend;
30211
- readonly 'onUpdate:inputValue': (value: string) => void;
30212
30652
  }> | 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<{
30653
+ }, {}, {}, {}, 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
30654
  chatItems: {
30215
30655
  type: import("vue").PropType<import("./interface").ChatPropsInterface["chatItems"]>;
30216
30656
  default: () => never[];
@@ -30363,6 +30803,14 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
30363
30803
  type: import("vue").PropType<import("./interface").ChatPropsInterface["unreadNotificationText"]>;
30364
30804
  default: undefined;
30365
30805
  };
30806
+ markdown: {
30807
+ type: import("vue").PropType<import("./interface").ChatPropsInterface["markdown"]>;
30808
+ default: boolean;
30809
+ };
30810
+ markdownOptions: {
30811
+ type: import("vue").PropType<import("./interface").ChatPropsInterface["markdownOptions"]>;
30812
+ default: undefined;
30813
+ };
30366
30814
  chatItemsLoading: {
30367
30815
  type: import("vue").PropType<import("./interface").ChatPropsInterface["chatItemsLoading"]>;
30368
30816
  default: boolean;
@@ -30482,6 +30930,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
30482
30930
  inputSuffixColor: string;
30483
30931
  unreadNotificationBackgroundColor: string;
30484
30932
  unreadNotificationTextColor: string;
30933
+ markdownQuoteBorderColorOwn: string;
30934
+ markdownQuoteBorderColorOther: string;
30935
+ markdownQuoteTextColor: string;
30936
+ markdownDividerColorOwn: string;
30937
+ markdownDividerColorOther: string;
30485
30938
  typingIndicatorColor: string;
30486
30939
  dateSeparatorColor: string;
30487
30940
  dateSeparatorBackgroundColor: string;
@@ -31255,6 +31708,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
31255
31708
  serviceMessageTextColor: string;
31256
31709
  serviceMessageBackgroundColor: string;
31257
31710
  messageTitleColor: string;
31711
+ markdownQuoteBorderColorOwn: string;
31712
+ markdownQuoteBorderColorOther: string;
31713
+ markdownQuoteTextColor: string;
31714
+ markdownDividerColorOwn: string;
31715
+ markdownDividerColorOther: string;
31716
+ markdownH1FontSize: string;
31717
+ markdownH2FontSize: string;
31718
+ markdownH3FontSize: string;
31719
+ markdownTextFontSize: string;
31258
31720
  }, {
31259
31721
  StatusIcon: import("../../_mixins").Theme<"Icon", {
31260
31722
  color: string;
@@ -31337,6 +31799,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
31337
31799
  inputSuffixColor: string;
31338
31800
  unreadNotificationBackgroundColor: string;
31339
31801
  unreadNotificationTextColor: string;
31802
+ markdownQuoteBorderColorOwn: string;
31803
+ markdownQuoteBorderColorOther: string;
31804
+ markdownQuoteTextColor: string;
31805
+ markdownDividerColorOwn: string;
31806
+ markdownDividerColorOther: string;
31340
31807
  typingIndicatorColor: string;
31341
31808
  dateSeparatorColor: string;
31342
31809
  dateSeparatorBackgroundColor: string;
@@ -32110,6 +32577,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
32110
32577
  serviceMessageTextColor: string;
32111
32578
  serviceMessageBackgroundColor: string;
32112
32579
  messageTitleColor: string;
32580
+ markdownQuoteBorderColorOwn: string;
32581
+ markdownQuoteBorderColorOther: string;
32582
+ markdownQuoteTextColor: string;
32583
+ markdownDividerColorOwn: string;
32584
+ markdownDividerColorOther: string;
32585
+ markdownH1FontSize: string;
32586
+ markdownH2FontSize: string;
32587
+ markdownH3FontSize: string;
32588
+ markdownTextFontSize: string;
32113
32589
  }, {
32114
32590
  StatusIcon: import("../../_mixins").Theme<"Icon", {
32115
32591
  color: string;
@@ -32192,6 +32668,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
32192
32668
  inputSuffixColor: string;
32193
32669
  unreadNotificationBackgroundColor: string;
32194
32670
  unreadNotificationTextColor: string;
32671
+ markdownQuoteBorderColorOwn: string;
32672
+ markdownQuoteBorderColorOther: string;
32673
+ markdownQuoteTextColor: string;
32674
+ markdownDividerColorOwn: string;
32675
+ markdownDividerColorOther: string;
32195
32676
  typingIndicatorColor: string;
32196
32677
  dateSeparatorColor: string;
32197
32678
  dateSeparatorBackgroundColor: string;
@@ -32965,6 +33446,15 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
32965
33446
  serviceMessageTextColor: string;
32966
33447
  serviceMessageBackgroundColor: string;
32967
33448
  messageTitleColor: string;
33449
+ markdownQuoteBorderColorOwn: string;
33450
+ markdownQuoteBorderColorOther: string;
33451
+ markdownQuoteTextColor: string;
33452
+ markdownDividerColorOwn: string;
33453
+ markdownDividerColorOther: string;
33454
+ markdownH1FontSize: string;
33455
+ markdownH2FontSize: string;
33456
+ markdownH3FontSize: string;
33457
+ markdownTextFontSize: string;
32968
33458
  }, {
32969
33459
  StatusIcon: import("../../_mixins").Theme<"Icon", {
32970
33460
  color: string;
@@ -33017,10 +33507,10 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
33017
33507
  }, any>;
33018
33508
  }>>>;
33019
33509
  }>> & Readonly<{
33020
- "onUpdate:inputValue"?: ((...args: any[]) => any) | undefined;
33021
- "onMessage-retry"?: ((...args: any[]) => any) | undefined;
33022
33510
  "onUpdate:selectedChatId"?: ((...args: any[]) => any) | undefined;
33511
+ "onUpdate:inputValue"?: ((...args: any[]) => any) | undefined;
33023
33512
  "onMessage-send"?: ((...args: any[]) => any) | undefined;
33513
+ "onMessage-retry"?: ((...args: any[]) => any) | undefined;
33024
33514
  "onAttachment-upload"?: ((...args: any[]) => any) | undefined;
33025
33515
  "onMark-messages-read"?: ((...args: any[]) => any) | undefined;
33026
33516
  "onFilter-change"?: ((...args: any[]) => any) | undefined;
@@ -33042,6 +33532,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
33042
33532
  height: string | number;
33043
33533
  disabled: boolean | undefined;
33044
33534
  emptyProps: Partial<Partial<import("../..").EmptyProps> | undefined>;
33535
+ markdown: boolean | undefined;
33536
+ markdownOptions: import("../..").MarkdownOptions | undefined;
33045
33537
  onAttachmentDownload: import("./interface").OnAttachmentDownload | undefined;
33046
33538
  chatItems: ChatListItemData[] | undefined;
33047
33539
  selectedChatId: ChatId | undefined;