@uzum-tech/ui 2.3.5 → 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 (108) hide show
  1. package/dist/index.js +5967 -64
  2. package/dist/index.mjs +5967 -64
  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 +1396 -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 +78 -6
  47. package/es/message-bubble/src/MessageBubble.mjs +49 -7
  48. package/es/message-bubble/src/interface.d.ts +36 -0
  49. package/es/message-bubble/src/interface.mjs +8 -0
  50. package/es/message-bubble/src/styles/index.cssr.mjs +17 -1
  51. package/es/message-bubble/styles/dark.d.ts +9 -0
  52. package/es/message-bubble/styles/light.d.ts +18 -0
  53. package/es/message-bubble/styles/light.mjs +10 -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 +515 -23
  77. package/lib/chat/src/Chat.js +2 -0
  78. package/lib/chat/src/ChatListItems.d.ts +172 -4
  79. package/lib/chat/src/ChatListItems.js +7 -2
  80. package/lib/chat/src/ChatMainArea.d.ts +200 -5
  81. package/lib/chat/src/ChatMainArea.js +26 -14
  82. package/lib/chat/src/ChatMessages.d.ts +198 -3
  83. package/lib/chat/src/ChatMessages.js +11 -4
  84. package/lib/chat/src/ChatParts/Sidebar.d.ts +28 -0
  85. package/lib/chat/src/interface.d.ts +56 -0
  86. package/lib/chat/src/interface.js +6 -0
  87. package/lib/chat/styles/dark.d.ts +14 -0
  88. package/lib/chat/styles/light.d.ts +19 -0
  89. package/lib/chat/styles/light.js +5 -0
  90. package/lib/components.d.ts +1014 -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 +78 -6
  98. package/lib/message-bubble/src/MessageBubble.js +39 -7
  99. package/lib/message-bubble/src/interface.d.ts +36 -0
  100. package/lib/message-bubble/src/interface.js +6 -0
  101. package/lib/message-bubble/src/styles/index.cssr.js +17 -1
  102. package/lib/message-bubble/styles/dark.d.ts +9 -0
  103. package/lib/message-bubble/styles/light.d.ts +18 -0
  104. package/lib/message-bubble/styles/light.js +10 -1
  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
@@ -12870,6 +12870,14 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
12870
12870
  type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["unreadNotificationText"]>;
12871
12871
  default: undefined;
12872
12872
  };
12873
+ markdown: {
12874
+ type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["markdown"]>;
12875
+ default: boolean;
12876
+ };
12877
+ markdownOptions: {
12878
+ type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["markdownOptions"]>;
12879
+ default: undefined;
12880
+ };
12873
12881
  chatItemsLoading: {
12874
12882
  type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["chatItemsLoading"]>;
12875
12883
  default: boolean;
@@ -12989,6 +12997,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
12989
12997
  inputSuffixColor: string;
12990
12998
  unreadNotificationBackgroundColor: string;
12991
12999
  unreadNotificationTextColor: string;
13000
+ markdownQuoteBorderColorOwn: string;
13001
+ markdownQuoteBorderColorOther: string;
13002
+ markdownQuoteTextColor: string;
13003
+ markdownDividerColorOwn: string;
13004
+ markdownDividerColorOther: string;
12992
13005
  typingIndicatorColor: string;
12993
13006
  dateSeparatorColor: string;
12994
13007
  dateSeparatorBackgroundColor: string;
@@ -13762,6 +13775,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
13762
13775
  serviceMessageTextColor: string;
13763
13776
  serviceMessageBackgroundColor: string;
13764
13777
  messageTitleColor: string;
13778
+ markdownQuoteBorderColorOwn: string;
13779
+ markdownQuoteBorderColorOther: string;
13780
+ markdownQuoteTextColor: string;
13781
+ markdownDividerColorOwn: string;
13782
+ markdownDividerColorOther: string;
13783
+ markdownH1FontSize: string;
13784
+ markdownH2FontSize: string;
13785
+ markdownH3FontSize: string;
13786
+ markdownTextFontSize: string;
13765
13787
  }, {
13766
13788
  StatusIcon: import("./_mixins").Theme<"Icon", {
13767
13789
  color: string;
@@ -13844,6 +13866,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
13844
13866
  inputSuffixColor: string;
13845
13867
  unreadNotificationBackgroundColor: string;
13846
13868
  unreadNotificationTextColor: string;
13869
+ markdownQuoteBorderColorOwn: string;
13870
+ markdownQuoteBorderColorOther: string;
13871
+ markdownQuoteTextColor: string;
13872
+ markdownDividerColorOwn: string;
13873
+ markdownDividerColorOther: string;
13847
13874
  typingIndicatorColor: string;
13848
13875
  dateSeparatorColor: string;
13849
13876
  dateSeparatorBackgroundColor: string;
@@ -14617,6 +14644,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
14617
14644
  serviceMessageTextColor: string;
14618
14645
  serviceMessageBackgroundColor: string;
14619
14646
  messageTitleColor: string;
14647
+ markdownQuoteBorderColorOwn: string;
14648
+ markdownQuoteBorderColorOther: string;
14649
+ markdownQuoteTextColor: string;
14650
+ markdownDividerColorOwn: string;
14651
+ markdownDividerColorOther: string;
14652
+ markdownH1FontSize: string;
14653
+ markdownH2FontSize: string;
14654
+ markdownH3FontSize: string;
14655
+ markdownTextFontSize: string;
14620
14656
  }, {
14621
14657
  StatusIcon: import("./_mixins").Theme<"Icon", {
14622
14658
  color: string;
@@ -14699,6 +14735,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
14699
14735
  inputSuffixColor: string;
14700
14736
  unreadNotificationBackgroundColor: string;
14701
14737
  unreadNotificationTextColor: string;
14738
+ markdownQuoteBorderColorOwn: string;
14739
+ markdownQuoteBorderColorOther: string;
14740
+ markdownQuoteTextColor: string;
14741
+ markdownDividerColorOwn: string;
14742
+ markdownDividerColorOther: string;
14702
14743
  typingIndicatorColor: string;
14703
14744
  dateSeparatorColor: string;
14704
14745
  dateSeparatorBackgroundColor: string;
@@ -15472,6 +15513,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
15472
15513
  serviceMessageTextColor: string;
15473
15514
  serviceMessageBackgroundColor: string;
15474
15515
  messageTitleColor: string;
15516
+ markdownQuoteBorderColorOwn: string;
15517
+ markdownQuoteBorderColorOther: string;
15518
+ markdownQuoteTextColor: string;
15519
+ markdownDividerColorOwn: string;
15520
+ markdownDividerColorOther: string;
15521
+ markdownH1FontSize: string;
15522
+ markdownH2FontSize: string;
15523
+ markdownH3FontSize: string;
15524
+ markdownTextFontSize: string;
15475
15525
  }, {
15476
15526
  StatusIcon: import("./_mixins").Theme<"Icon", {
15477
15527
  color: string;
@@ -15558,6 +15608,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
15558
15608
  inputSuffixColor: string;
15559
15609
  unreadNotificationBackgroundColor: string;
15560
15610
  unreadNotificationTextColor: string;
15611
+ markdownQuoteBorderColorOwn: string;
15612
+ markdownQuoteBorderColorOther: string;
15613
+ markdownQuoteTextColor: string;
15614
+ markdownDividerColorOwn: string;
15615
+ markdownDividerColorOther: string;
15561
15616
  typingIndicatorColor: string;
15562
15617
  dateSeparatorColor: string;
15563
15618
  dateSeparatorBackgroundColor: string;
@@ -16332,6 +16387,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
16332
16387
  serviceMessageTextColor: string;
16333
16388
  serviceMessageBackgroundColor: string;
16334
16389
  messageTitleColor: string;
16390
+ markdownQuoteBorderColorOwn: string;
16391
+ markdownQuoteBorderColorOther: string;
16392
+ markdownQuoteTextColor: string;
16393
+ markdownDividerColorOwn: string;
16394
+ markdownDividerColorOther: string;
16395
+ markdownH1FontSize: string;
16396
+ markdownH2FontSize: string;
16397
+ markdownH3FontSize: string;
16398
+ markdownTextFontSize: string;
16335
16399
  }, {
16336
16400
  StatusIcon: import("./_mixins").Theme<"Icon", {
16337
16401
  color: string;
@@ -16922,6 +16986,14 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
16922
16986
  readonly type: StringConstructor;
16923
16987
  readonly default: undefined;
16924
16988
  };
16989
+ readonly markdown: {
16990
+ readonly type: BooleanConstructor;
16991
+ readonly default: true;
16992
+ };
16993
+ readonly markdownOptions: {
16994
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
16995
+ readonly default: undefined;
16996
+ };
16925
16997
  readonly bubbleActions: {
16926
16998
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
16927
16999
  readonly default: undefined;
@@ -17001,6 +17073,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
17001
17073
  inputSuffixColor: string;
17002
17074
  unreadNotificationBackgroundColor: string;
17003
17075
  unreadNotificationTextColor: string;
17076
+ markdownQuoteBorderColorOwn: string;
17077
+ markdownQuoteBorderColorOther: string;
17078
+ markdownQuoteTextColor: string;
17079
+ markdownDividerColorOwn: string;
17080
+ markdownDividerColorOther: string;
17004
17081
  typingIndicatorColor: string;
17005
17082
  dateSeparatorColor: string;
17006
17083
  dateSeparatorBackgroundColor: string;
@@ -17774,6 +17851,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
17774
17851
  serviceMessageTextColor: string;
17775
17852
  serviceMessageBackgroundColor: string;
17776
17853
  messageTitleColor: string;
17854
+ markdownQuoteBorderColorOwn: string;
17855
+ markdownQuoteBorderColorOther: string;
17856
+ markdownQuoteTextColor: string;
17857
+ markdownDividerColorOwn: string;
17858
+ markdownDividerColorOther: string;
17859
+ markdownH1FontSize: string;
17860
+ markdownH2FontSize: string;
17861
+ markdownH3FontSize: string;
17862
+ markdownTextFontSize: string;
17777
17863
  }, {
17778
17864
  StatusIcon: import("./_mixins").Theme<"Icon", {
17779
17865
  color: string;
@@ -17856,6 +17942,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
17856
17942
  inputSuffixColor: string;
17857
17943
  unreadNotificationBackgroundColor: string;
17858
17944
  unreadNotificationTextColor: string;
17945
+ markdownQuoteBorderColorOwn: string;
17946
+ markdownQuoteBorderColorOther: string;
17947
+ markdownQuoteTextColor: string;
17948
+ markdownDividerColorOwn: string;
17949
+ markdownDividerColorOther: string;
17859
17950
  typingIndicatorColor: string;
17860
17951
  dateSeparatorColor: string;
17861
17952
  dateSeparatorBackgroundColor: string;
@@ -18629,6 +18720,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
18629
18720
  serviceMessageTextColor: string;
18630
18721
  serviceMessageBackgroundColor: string;
18631
18722
  messageTitleColor: string;
18723
+ markdownQuoteBorderColorOwn: string;
18724
+ markdownQuoteBorderColorOther: string;
18725
+ markdownQuoteTextColor: string;
18726
+ markdownDividerColorOwn: string;
18727
+ markdownDividerColorOther: string;
18728
+ markdownH1FontSize: string;
18729
+ markdownH2FontSize: string;
18730
+ markdownH3FontSize: string;
18731
+ markdownTextFontSize: string;
18632
18732
  }, {
18633
18733
  StatusIcon: import("./_mixins").Theme<"Icon", {
18634
18734
  color: string;
@@ -18711,6 +18811,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
18711
18811
  inputSuffixColor: string;
18712
18812
  unreadNotificationBackgroundColor: string;
18713
18813
  unreadNotificationTextColor: string;
18814
+ markdownQuoteBorderColorOwn: string;
18815
+ markdownQuoteBorderColorOther: string;
18816
+ markdownQuoteTextColor: string;
18817
+ markdownDividerColorOwn: string;
18818
+ markdownDividerColorOther: string;
18714
18819
  typingIndicatorColor: string;
18715
18820
  dateSeparatorColor: string;
18716
18821
  dateSeparatorBackgroundColor: string;
@@ -19484,6 +19589,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
19484
19589
  serviceMessageTextColor: string;
19485
19590
  serviceMessageBackgroundColor: string;
19486
19591
  messageTitleColor: string;
19592
+ markdownQuoteBorderColorOwn: string;
19593
+ markdownQuoteBorderColorOther: string;
19594
+ markdownQuoteTextColor: string;
19595
+ markdownDividerColorOwn: string;
19596
+ markdownDividerColorOther: string;
19597
+ markdownH1FontSize: string;
19598
+ markdownH2FontSize: string;
19599
+ markdownH3FontSize: string;
19600
+ markdownTextFontSize: string;
19487
19601
  }, {
19488
19602
  StatusIcon: import("./_mixins").Theme<"Icon", {
19489
19603
  color: string;
@@ -19537,7 +19651,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
19537
19651
  }>>>;
19538
19652
  }>> & Readonly<{}>, {
19539
19653
  mergedClsPrefix: import("vue").Ref<string, string>;
19540
- mergedTheme: import("vue").Ref<{
19654
+ mergedTheme: import("vue").ComputedRef<{
19541
19655
  common: import("./config-provider").ThemeCommonVars;
19542
19656
  self: {
19543
19657
  backgroundColor: string;
@@ -19570,6 +19684,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
19570
19684
  inputSuffixColor: string;
19571
19685
  unreadNotificationBackgroundColor: string;
19572
19686
  unreadNotificationTextColor: string;
19687
+ markdownQuoteBorderColorOwn: string;
19688
+ markdownQuoteBorderColorOther: string;
19689
+ markdownQuoteTextColor: string;
19690
+ markdownDividerColorOwn: string;
19691
+ markdownDividerColorOther: string;
19573
19692
  typingIndicatorColor: string;
19574
19693
  dateSeparatorColor: string;
19575
19694
  dateSeparatorBackgroundColor: string;
@@ -20344,6 +20463,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
20344
20463
  serviceMessageTextColor: string;
20345
20464
  serviceMessageBackgroundColor: string;
20346
20465
  messageTitleColor: string;
20466
+ markdownQuoteBorderColorOwn: string;
20467
+ markdownQuoteBorderColorOther: string;
20468
+ markdownQuoteTextColor: string;
20469
+ markdownDividerColorOwn: string;
20470
+ markdownDividerColorOther: string;
20471
+ markdownH1FontSize: string;
20472
+ markdownH2FontSize: string;
20473
+ markdownH3FontSize: string;
20474
+ markdownTextFontSize: string;
20347
20475
  }, {
20348
20476
  StatusIcon: import("./_mixins").Theme<"Icon", {
20349
20477
  color: string;
@@ -20784,7 +20912,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
20784
20912
  } | undefined;
20785
20913
  } | undefined;
20786
20914
  };
20787
- }, {
20915
+ }> | import("vue").Ref<{
20788
20916
  common: import("./config-provider").ThemeCommonVars;
20789
20917
  self: {
20790
20918
  backgroundColor: string;
@@ -20817,6 +20945,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
20817
20945
  inputSuffixColor: string;
20818
20946
  unreadNotificationBackgroundColor: string;
20819
20947
  unreadNotificationTextColor: string;
20948
+ markdownQuoteBorderColorOwn: string;
20949
+ markdownQuoteBorderColorOther: string;
20950
+ markdownQuoteTextColor: string;
20951
+ markdownDividerColorOwn: string;
20952
+ markdownDividerColorOther: string;
20820
20953
  typingIndicatorColor: string;
20821
20954
  dateSeparatorColor: string;
20822
20955
  dateSeparatorBackgroundColor: string;
@@ -21591,6 +21724,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
21591
21724
  serviceMessageTextColor: string;
21592
21725
  serviceMessageBackgroundColor: string;
21593
21726
  messageTitleColor: string;
21727
+ markdownQuoteBorderColorOwn: string;
21728
+ markdownQuoteBorderColorOther: string;
21729
+ markdownQuoteTextColor: string;
21730
+ markdownDividerColorOwn: string;
21731
+ markdownDividerColorOther: string;
21732
+ markdownH1FontSize: string;
21733
+ markdownH2FontSize: string;
21734
+ markdownH3FontSize: string;
21735
+ markdownTextFontSize: string;
21594
21736
  }, {
21595
21737
  StatusIcon: import("./_mixins").Theme<"Icon", {
21596
21738
  color: string;
@@ -22031,7 +22173,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
22031
22173
  } | undefined;
22032
22174
  } | undefined;
22033
22175
  };
22034
- }> | import("vue").ComputedRef<{
22176
+ }, {
22035
22177
  common: import("./config-provider").ThemeCommonVars;
22036
22178
  self: {
22037
22179
  backgroundColor: string;
@@ -22064,6 +22206,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
22064
22206
  inputSuffixColor: string;
22065
22207
  unreadNotificationBackgroundColor: string;
22066
22208
  unreadNotificationTextColor: string;
22209
+ markdownQuoteBorderColorOwn: string;
22210
+ markdownQuoteBorderColorOther: string;
22211
+ markdownQuoteTextColor: string;
22212
+ markdownDividerColorOwn: string;
22213
+ markdownDividerColorOther: string;
22067
22214
  typingIndicatorColor: string;
22068
22215
  dateSeparatorColor: string;
22069
22216
  dateSeparatorBackgroundColor: string;
@@ -22838,6 +22985,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
22838
22985
  serviceMessageTextColor: string;
22839
22986
  serviceMessageBackgroundColor: string;
22840
22987
  messageTitleColor: string;
22988
+ markdownQuoteBorderColorOwn: string;
22989
+ markdownQuoteBorderColorOther: string;
22990
+ markdownQuoteTextColor: string;
22991
+ markdownDividerColorOwn: string;
22992
+ markdownDividerColorOther: string;
22993
+ markdownH1FontSize: string;
22994
+ markdownH2FontSize: string;
22995
+ markdownH3FontSize: string;
22996
+ markdownTextFontSize: string;
22841
22997
  }, {
22842
22998
  StatusIcon: import("./_mixins").Theme<"Icon", {
22843
22999
  color: string;
@@ -23307,6 +23463,8 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23307
23463
  readonly shareButtonTooltip: string;
23308
23464
  readonly profileButtonTooltip: string;
23309
23465
  readonly unreadNotificationText: string;
23466
+ readonly markdown: boolean;
23467
+ readonly markdownOptions: import("./message-bubble").MarkdownOptions;
23310
23468
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
23311
23469
  readonly inputValue: string;
23312
23470
  readonly messages: import("./chat").ChatMessageData[];
@@ -23333,11 +23491,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23333
23491
  readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
23334
23492
  readonly onMessagesScrollToTop: () => void;
23335
23493
  readonly onMessagesScrollToBottom: () => void;
23336
- readonly loadingCount: number;
23494
+ readonly 'onUpdate:inputValue': (value: string) => void;
23337
23495
  readonly selectedChat: import("./chat").ChatListItemData;
23496
+ readonly loadingCount: number;
23338
23497
  readonly showAttachButton: boolean;
23339
23498
  readonly onMessageSend: import("./chat").OnMessageSend;
23340
- readonly 'onUpdate:inputValue': (value: string) => void;
23341
23499
  }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
23342
23500
  P: {};
23343
23501
  B: {};
@@ -23454,6 +23612,14 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23454
23612
  readonly type: StringConstructor;
23455
23613
  readonly default: undefined;
23456
23614
  };
23615
+ readonly markdown: {
23616
+ readonly type: BooleanConstructor;
23617
+ readonly default: true;
23618
+ };
23619
+ readonly markdownOptions: {
23620
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
23621
+ readonly default: undefined;
23622
+ };
23457
23623
  readonly bubbleActions: {
23458
23624
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
23459
23625
  readonly default: undefined;
@@ -23533,6 +23699,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23533
23699
  inputSuffixColor: string;
23534
23700
  unreadNotificationBackgroundColor: string;
23535
23701
  unreadNotificationTextColor: string;
23702
+ markdownQuoteBorderColorOwn: string;
23703
+ markdownQuoteBorderColorOther: string;
23704
+ markdownQuoteTextColor: string;
23705
+ markdownDividerColorOwn: string;
23706
+ markdownDividerColorOther: string;
23536
23707
  typingIndicatorColor: string;
23537
23708
  dateSeparatorColor: string;
23538
23709
  dateSeparatorBackgroundColor: string;
@@ -24306,6 +24477,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
24306
24477
  serviceMessageTextColor: string;
24307
24478
  serviceMessageBackgroundColor: string;
24308
24479
  messageTitleColor: string;
24480
+ markdownQuoteBorderColorOwn: string;
24481
+ markdownQuoteBorderColorOther: string;
24482
+ markdownQuoteTextColor: string;
24483
+ markdownDividerColorOwn: string;
24484
+ markdownDividerColorOther: string;
24485
+ markdownH1FontSize: string;
24486
+ markdownH2FontSize: string;
24487
+ markdownH3FontSize: string;
24488
+ markdownTextFontSize: string;
24309
24489
  }, {
24310
24490
  StatusIcon: import("./_mixins").Theme<"Icon", {
24311
24491
  color: string;
@@ -24388,6 +24568,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
24388
24568
  inputSuffixColor: string;
24389
24569
  unreadNotificationBackgroundColor: string;
24390
24570
  unreadNotificationTextColor: string;
24571
+ markdownQuoteBorderColorOwn: string;
24572
+ markdownQuoteBorderColorOther: string;
24573
+ markdownQuoteTextColor: string;
24574
+ markdownDividerColorOwn: string;
24575
+ markdownDividerColorOther: string;
24391
24576
  typingIndicatorColor: string;
24392
24577
  dateSeparatorColor: string;
24393
24578
  dateSeparatorBackgroundColor: string;
@@ -25161,6 +25346,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
25161
25346
  serviceMessageTextColor: string;
25162
25347
  serviceMessageBackgroundColor: string;
25163
25348
  messageTitleColor: string;
25349
+ markdownQuoteBorderColorOwn: string;
25350
+ markdownQuoteBorderColorOther: string;
25351
+ markdownQuoteTextColor: string;
25352
+ markdownDividerColorOwn: string;
25353
+ markdownDividerColorOther: string;
25354
+ markdownH1FontSize: string;
25355
+ markdownH2FontSize: string;
25356
+ markdownH3FontSize: string;
25357
+ markdownTextFontSize: string;
25164
25358
  }, {
25165
25359
  StatusIcon: import("./_mixins").Theme<"Icon", {
25166
25360
  color: string;
@@ -25243,6 +25437,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
25243
25437
  inputSuffixColor: string;
25244
25438
  unreadNotificationBackgroundColor: string;
25245
25439
  unreadNotificationTextColor: string;
25440
+ markdownQuoteBorderColorOwn: string;
25441
+ markdownQuoteBorderColorOther: string;
25442
+ markdownQuoteTextColor: string;
25443
+ markdownDividerColorOwn: string;
25444
+ markdownDividerColorOther: string;
25246
25445
  typingIndicatorColor: string;
25247
25446
  dateSeparatorColor: string;
25248
25447
  dateSeparatorBackgroundColor: string;
@@ -26016,6 +26215,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
26016
26215
  serviceMessageTextColor: string;
26017
26216
  serviceMessageBackgroundColor: string;
26018
26217
  messageTitleColor: string;
26218
+ markdownQuoteBorderColorOwn: string;
26219
+ markdownQuoteBorderColorOther: string;
26220
+ markdownQuoteTextColor: string;
26221
+ markdownDividerColorOwn: string;
26222
+ markdownDividerColorOther: string;
26223
+ markdownH1FontSize: string;
26224
+ markdownH2FontSize: string;
26225
+ markdownH3FontSize: string;
26226
+ markdownTextFontSize: string;
26019
26227
  }, {
26020
26228
  StatusIcon: import("./_mixins").Theme<"Icon", {
26021
26229
  color: string;
@@ -26069,7 +26277,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
26069
26277
  }>>>;
26070
26278
  }>> & Readonly<{}>, {
26071
26279
  mergedClsPrefix: import("vue").Ref<string, string>;
26072
- mergedTheme: import("vue").Ref<{
26280
+ mergedTheme: import("vue").ComputedRef<{
26073
26281
  common: import("./config-provider").ThemeCommonVars;
26074
26282
  self: {
26075
26283
  backgroundColor: string;
@@ -26102,6 +26310,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
26102
26310
  inputSuffixColor: string;
26103
26311
  unreadNotificationBackgroundColor: string;
26104
26312
  unreadNotificationTextColor: string;
26313
+ markdownQuoteBorderColorOwn: string;
26314
+ markdownQuoteBorderColorOther: string;
26315
+ markdownQuoteTextColor: string;
26316
+ markdownDividerColorOwn: string;
26317
+ markdownDividerColorOther: string;
26105
26318
  typingIndicatorColor: string;
26106
26319
  dateSeparatorColor: string;
26107
26320
  dateSeparatorBackgroundColor: string;
@@ -26876,6 +27089,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
26876
27089
  serviceMessageTextColor: string;
26877
27090
  serviceMessageBackgroundColor: string;
26878
27091
  messageTitleColor: string;
27092
+ markdownQuoteBorderColorOwn: string;
27093
+ markdownQuoteBorderColorOther: string;
27094
+ markdownQuoteTextColor: string;
27095
+ markdownDividerColorOwn: string;
27096
+ markdownDividerColorOther: string;
27097
+ markdownH1FontSize: string;
27098
+ markdownH2FontSize: string;
27099
+ markdownH3FontSize: string;
27100
+ markdownTextFontSize: string;
26879
27101
  }, {
26880
27102
  StatusIcon: import("./_mixins").Theme<"Icon", {
26881
27103
  color: string;
@@ -27316,7 +27538,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
27316
27538
  } | undefined;
27317
27539
  } | undefined;
27318
27540
  };
27319
- }, {
27541
+ }> | import("vue").Ref<{
27320
27542
  common: import("./config-provider").ThemeCommonVars;
27321
27543
  self: {
27322
27544
  backgroundColor: string;
@@ -27349,6 +27571,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
27349
27571
  inputSuffixColor: string;
27350
27572
  unreadNotificationBackgroundColor: string;
27351
27573
  unreadNotificationTextColor: string;
27574
+ markdownQuoteBorderColorOwn: string;
27575
+ markdownQuoteBorderColorOther: string;
27576
+ markdownQuoteTextColor: string;
27577
+ markdownDividerColorOwn: string;
27578
+ markdownDividerColorOther: string;
27352
27579
  typingIndicatorColor: string;
27353
27580
  dateSeparatorColor: string;
27354
27581
  dateSeparatorBackgroundColor: string;
@@ -28123,6 +28350,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
28123
28350
  serviceMessageTextColor: string;
28124
28351
  serviceMessageBackgroundColor: string;
28125
28352
  messageTitleColor: string;
28353
+ markdownQuoteBorderColorOwn: string;
28354
+ markdownQuoteBorderColorOther: string;
28355
+ markdownQuoteTextColor: string;
28356
+ markdownDividerColorOwn: string;
28357
+ markdownDividerColorOther: string;
28358
+ markdownH1FontSize: string;
28359
+ markdownH2FontSize: string;
28360
+ markdownH3FontSize: string;
28361
+ markdownTextFontSize: string;
28126
28362
  }, {
28127
28363
  StatusIcon: import("./_mixins").Theme<"Icon", {
28128
28364
  color: string;
@@ -28563,7 +28799,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
28563
28799
  } | undefined;
28564
28800
  } | undefined;
28565
28801
  };
28566
- }> | import("vue").ComputedRef<{
28802
+ }, {
28567
28803
  common: import("./config-provider").ThemeCommonVars;
28568
28804
  self: {
28569
28805
  backgroundColor: string;
@@ -28596,6 +28832,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
28596
28832
  inputSuffixColor: string;
28597
28833
  unreadNotificationBackgroundColor: string;
28598
28834
  unreadNotificationTextColor: string;
28835
+ markdownQuoteBorderColorOwn: string;
28836
+ markdownQuoteBorderColorOther: string;
28837
+ markdownQuoteTextColor: string;
28838
+ markdownDividerColorOwn: string;
28839
+ markdownDividerColorOther: string;
28599
28840
  typingIndicatorColor: string;
28600
28841
  dateSeparatorColor: string;
28601
28842
  dateSeparatorBackgroundColor: string;
@@ -29370,6 +29611,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29370
29611
  serviceMessageTextColor: string;
29371
29612
  serviceMessageBackgroundColor: string;
29372
29613
  messageTitleColor: string;
29614
+ markdownQuoteBorderColorOwn: string;
29615
+ markdownQuoteBorderColorOther: string;
29616
+ markdownQuoteTextColor: string;
29617
+ markdownDividerColorOwn: string;
29618
+ markdownDividerColorOther: string;
29619
+ markdownH1FontSize: string;
29620
+ markdownH2FontSize: string;
29621
+ markdownH3FontSize: string;
29622
+ markdownTextFontSize: string;
29373
29623
  }, {
29374
29624
  StatusIcon: import("./_mixins").Theme<"Icon", {
29375
29625
  color: string;
@@ -29839,6 +30089,8 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29839
30089
  readonly shareButtonTooltip: string;
29840
30090
  readonly profileButtonTooltip: string;
29841
30091
  readonly unreadNotificationText: string;
30092
+ readonly markdown: boolean;
30093
+ readonly markdownOptions: import("./message-bubble").MarkdownOptions;
29842
30094
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
29843
30095
  readonly inputValue: string;
29844
30096
  readonly messages: import("./chat").ChatMessageData[];
@@ -29865,11 +30117,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29865
30117
  readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
29866
30118
  readonly onMessagesScrollToTop: () => void;
29867
30119
  readonly onMessagesScrollToBottom: () => void;
29868
- readonly loadingCount: number;
30120
+ readonly 'onUpdate:inputValue': (value: string) => void;
29869
30121
  readonly selectedChat: import("./chat").ChatListItemData;
30122
+ readonly loadingCount: number;
29870
30123
  readonly showAttachButton: boolean;
29871
30124
  readonly onMessageSend: import("./chat").OnMessageSend;
29872
- readonly 'onUpdate:inputValue': (value: string) => void;
29873
30125
  }> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
29874
30126
  readonly selectedChat: {
29875
30127
  readonly type: import("vue").PropType<import("./chat").ChatListItemData>;
@@ -29979,6 +30231,14 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29979
30231
  readonly type: StringConstructor;
29980
30232
  readonly default: undefined;
29981
30233
  };
30234
+ readonly markdown: {
30235
+ readonly type: BooleanConstructor;
30236
+ readonly default: true;
30237
+ };
30238
+ readonly markdownOptions: {
30239
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
30240
+ readonly default: undefined;
30241
+ };
29982
30242
  readonly bubbleActions: {
29983
30243
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
29984
30244
  readonly default: undefined;
@@ -30058,6 +30318,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
30058
30318
  inputSuffixColor: string;
30059
30319
  unreadNotificationBackgroundColor: string;
30060
30320
  unreadNotificationTextColor: string;
30321
+ markdownQuoteBorderColorOwn: string;
30322
+ markdownQuoteBorderColorOther: string;
30323
+ markdownQuoteTextColor: string;
30324
+ markdownDividerColorOwn: string;
30325
+ markdownDividerColorOther: string;
30061
30326
  typingIndicatorColor: string;
30062
30327
  dateSeparatorColor: string;
30063
30328
  dateSeparatorBackgroundColor: string;
@@ -30831,6 +31096,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
30831
31096
  serviceMessageTextColor: string;
30832
31097
  serviceMessageBackgroundColor: string;
30833
31098
  messageTitleColor: string;
31099
+ markdownQuoteBorderColorOwn: string;
31100
+ markdownQuoteBorderColorOther: string;
31101
+ markdownQuoteTextColor: string;
31102
+ markdownDividerColorOwn: string;
31103
+ markdownDividerColorOther: string;
31104
+ markdownH1FontSize: string;
31105
+ markdownH2FontSize: string;
31106
+ markdownH3FontSize: string;
31107
+ markdownTextFontSize: string;
30834
31108
  }, {
30835
31109
  StatusIcon: import("./_mixins").Theme<"Icon", {
30836
31110
  color: string;
@@ -30913,6 +31187,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
30913
31187
  inputSuffixColor: string;
30914
31188
  unreadNotificationBackgroundColor: string;
30915
31189
  unreadNotificationTextColor: string;
31190
+ markdownQuoteBorderColorOwn: string;
31191
+ markdownQuoteBorderColorOther: string;
31192
+ markdownQuoteTextColor: string;
31193
+ markdownDividerColorOwn: string;
31194
+ markdownDividerColorOther: string;
30916
31195
  typingIndicatorColor: string;
30917
31196
  dateSeparatorColor: string;
30918
31197
  dateSeparatorBackgroundColor: string;
@@ -31686,6 +31965,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
31686
31965
  serviceMessageTextColor: string;
31687
31966
  serviceMessageBackgroundColor: string;
31688
31967
  messageTitleColor: string;
31968
+ markdownQuoteBorderColorOwn: string;
31969
+ markdownQuoteBorderColorOther: string;
31970
+ markdownQuoteTextColor: string;
31971
+ markdownDividerColorOwn: string;
31972
+ markdownDividerColorOther: string;
31973
+ markdownH1FontSize: string;
31974
+ markdownH2FontSize: string;
31975
+ markdownH3FontSize: string;
31976
+ markdownTextFontSize: string;
31689
31977
  }, {
31690
31978
  StatusIcon: import("./_mixins").Theme<"Icon", {
31691
31979
  color: string;
@@ -31768,6 +32056,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
31768
32056
  inputSuffixColor: string;
31769
32057
  unreadNotificationBackgroundColor: string;
31770
32058
  unreadNotificationTextColor: string;
32059
+ markdownQuoteBorderColorOwn: string;
32060
+ markdownQuoteBorderColorOther: string;
32061
+ markdownQuoteTextColor: string;
32062
+ markdownDividerColorOwn: string;
32063
+ markdownDividerColorOther: string;
31771
32064
  typingIndicatorColor: string;
31772
32065
  dateSeparatorColor: string;
31773
32066
  dateSeparatorBackgroundColor: string;
@@ -32541,6 +32834,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
32541
32834
  serviceMessageTextColor: string;
32542
32835
  serviceMessageBackgroundColor: string;
32543
32836
  messageTitleColor: string;
32837
+ markdownQuoteBorderColorOwn: string;
32838
+ markdownQuoteBorderColorOther: string;
32839
+ markdownQuoteTextColor: string;
32840
+ markdownDividerColorOwn: string;
32841
+ markdownDividerColorOther: string;
32842
+ markdownH1FontSize: string;
32843
+ markdownH2FontSize: string;
32844
+ markdownH3FontSize: string;
32845
+ markdownTextFontSize: string;
32544
32846
  }, {
32545
32847
  StatusIcon: import("./_mixins").Theme<"Icon", {
32546
32848
  color: string;
@@ -32594,7 +32896,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
32594
32896
  }>>>;
32595
32897
  }>> & Readonly<{}>, {
32596
32898
  mergedClsPrefix: import("vue").Ref<string, string>;
32597
- mergedTheme: import("vue").Ref<{
32899
+ mergedTheme: import("vue").ComputedRef<{
32598
32900
  common: import("./config-provider").ThemeCommonVars;
32599
32901
  self: {
32600
32902
  backgroundColor: string;
@@ -32627,6 +32929,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
32627
32929
  inputSuffixColor: string;
32628
32930
  unreadNotificationBackgroundColor: string;
32629
32931
  unreadNotificationTextColor: string;
32932
+ markdownQuoteBorderColorOwn: string;
32933
+ markdownQuoteBorderColorOther: string;
32934
+ markdownQuoteTextColor: string;
32935
+ markdownDividerColorOwn: string;
32936
+ markdownDividerColorOther: string;
32630
32937
  typingIndicatorColor: string;
32631
32938
  dateSeparatorColor: string;
32632
32939
  dateSeparatorBackgroundColor: string;
@@ -33401,6 +33708,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
33401
33708
  serviceMessageTextColor: string;
33402
33709
  serviceMessageBackgroundColor: string;
33403
33710
  messageTitleColor: string;
33711
+ markdownQuoteBorderColorOwn: string;
33712
+ markdownQuoteBorderColorOther: string;
33713
+ markdownQuoteTextColor: string;
33714
+ markdownDividerColorOwn: string;
33715
+ markdownDividerColorOther: string;
33716
+ markdownH1FontSize: string;
33717
+ markdownH2FontSize: string;
33718
+ markdownH3FontSize: string;
33719
+ markdownTextFontSize: string;
33404
33720
  }, {
33405
33721
  StatusIcon: import("./_mixins").Theme<"Icon", {
33406
33722
  color: string;
@@ -33841,7 +34157,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
33841
34157
  } | undefined;
33842
34158
  } | undefined;
33843
34159
  };
33844
- }, {
34160
+ }> | import("vue").Ref<{
33845
34161
  common: import("./config-provider").ThemeCommonVars;
33846
34162
  self: {
33847
34163
  backgroundColor: string;
@@ -33874,6 +34190,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
33874
34190
  inputSuffixColor: string;
33875
34191
  unreadNotificationBackgroundColor: string;
33876
34192
  unreadNotificationTextColor: string;
34193
+ markdownQuoteBorderColorOwn: string;
34194
+ markdownQuoteBorderColorOther: string;
34195
+ markdownQuoteTextColor: string;
34196
+ markdownDividerColorOwn: string;
34197
+ markdownDividerColorOther: string;
33877
34198
  typingIndicatorColor: string;
33878
34199
  dateSeparatorColor: string;
33879
34200
  dateSeparatorBackgroundColor: string;
@@ -34648,6 +34969,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
34648
34969
  serviceMessageTextColor: string;
34649
34970
  serviceMessageBackgroundColor: string;
34650
34971
  messageTitleColor: string;
34972
+ markdownQuoteBorderColorOwn: string;
34973
+ markdownQuoteBorderColorOther: string;
34974
+ markdownQuoteTextColor: string;
34975
+ markdownDividerColorOwn: string;
34976
+ markdownDividerColorOther: string;
34977
+ markdownH1FontSize: string;
34978
+ markdownH2FontSize: string;
34979
+ markdownH3FontSize: string;
34980
+ markdownTextFontSize: string;
34651
34981
  }, {
34652
34982
  StatusIcon: import("./_mixins").Theme<"Icon", {
34653
34983
  color: string;
@@ -35088,7 +35418,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
35088
35418
  } | undefined;
35089
35419
  } | undefined;
35090
35420
  };
35091
- }> | import("vue").ComputedRef<{
35421
+ }, {
35092
35422
  common: import("./config-provider").ThemeCommonVars;
35093
35423
  self: {
35094
35424
  backgroundColor: string;
@@ -35121,6 +35451,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
35121
35451
  inputSuffixColor: string;
35122
35452
  unreadNotificationBackgroundColor: string;
35123
35453
  unreadNotificationTextColor: string;
35454
+ markdownQuoteBorderColorOwn: string;
35455
+ markdownQuoteBorderColorOther: string;
35456
+ markdownQuoteTextColor: string;
35457
+ markdownDividerColorOwn: string;
35458
+ markdownDividerColorOther: string;
35124
35459
  typingIndicatorColor: string;
35125
35460
  dateSeparatorColor: string;
35126
35461
  dateSeparatorBackgroundColor: string;
@@ -35895,6 +36230,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
35895
36230
  serviceMessageTextColor: string;
35896
36231
  serviceMessageBackgroundColor: string;
35897
36232
  messageTitleColor: string;
36233
+ markdownQuoteBorderColorOwn: string;
36234
+ markdownQuoteBorderColorOther: string;
36235
+ markdownQuoteTextColor: string;
36236
+ markdownDividerColorOwn: string;
36237
+ markdownDividerColorOther: string;
36238
+ markdownH1FontSize: string;
36239
+ markdownH2FontSize: string;
36240
+ markdownH3FontSize: string;
36241
+ markdownTextFontSize: string;
35898
36242
  }, {
35899
36243
  StatusIcon: import("./_mixins").Theme<"Icon", {
35900
36244
  color: string;
@@ -36364,6 +36708,8 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36364
36708
  readonly shareButtonTooltip: string;
36365
36709
  readonly profileButtonTooltip: string;
36366
36710
  readonly unreadNotificationText: string;
36711
+ readonly markdown: boolean;
36712
+ readonly markdownOptions: import("./message-bubble").MarkdownOptions;
36367
36713
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
36368
36714
  readonly inputValue: string;
36369
36715
  readonly messages: import("./chat").ChatMessageData[];
@@ -36390,11 +36736,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36390
36736
  readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
36391
36737
  readonly onMessagesScrollToTop: () => void;
36392
36738
  readonly onMessagesScrollToBottom: () => void;
36393
- readonly loadingCount: number;
36739
+ readonly 'onUpdate:inputValue': (value: string) => void;
36394
36740
  readonly selectedChat: import("./chat").ChatListItemData;
36741
+ readonly loadingCount: number;
36395
36742
  readonly showAttachButton: boolean;
36396
36743
  readonly onMessageSend: import("./chat").OnMessageSend;
36397
- readonly 'onUpdate:inputValue': (value: string) => void;
36398
36744
  }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
36399
36745
  P: {};
36400
36746
  B: {};
@@ -36511,6 +36857,14 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36511
36857
  readonly type: StringConstructor;
36512
36858
  readonly default: undefined;
36513
36859
  };
36860
+ readonly markdown: {
36861
+ readonly type: BooleanConstructor;
36862
+ readonly default: true;
36863
+ };
36864
+ readonly markdownOptions: {
36865
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
36866
+ readonly default: undefined;
36867
+ };
36514
36868
  readonly bubbleActions: {
36515
36869
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
36516
36870
  readonly default: undefined;
@@ -36590,6 +36944,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36590
36944
  inputSuffixColor: string;
36591
36945
  unreadNotificationBackgroundColor: string;
36592
36946
  unreadNotificationTextColor: string;
36947
+ markdownQuoteBorderColorOwn: string;
36948
+ markdownQuoteBorderColorOther: string;
36949
+ markdownQuoteTextColor: string;
36950
+ markdownDividerColorOwn: string;
36951
+ markdownDividerColorOther: string;
36593
36952
  typingIndicatorColor: string;
36594
36953
  dateSeparatorColor: string;
36595
36954
  dateSeparatorBackgroundColor: string;
@@ -37363,6 +37722,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
37363
37722
  serviceMessageTextColor: string;
37364
37723
  serviceMessageBackgroundColor: string;
37365
37724
  messageTitleColor: string;
37725
+ markdownQuoteBorderColorOwn: string;
37726
+ markdownQuoteBorderColorOther: string;
37727
+ markdownQuoteTextColor: string;
37728
+ markdownDividerColorOwn: string;
37729
+ markdownDividerColorOther: string;
37730
+ markdownH1FontSize: string;
37731
+ markdownH2FontSize: string;
37732
+ markdownH3FontSize: string;
37733
+ markdownTextFontSize: string;
37366
37734
  }, {
37367
37735
  StatusIcon: import("./_mixins").Theme<"Icon", {
37368
37736
  color: string;
@@ -37445,6 +37813,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
37445
37813
  inputSuffixColor: string;
37446
37814
  unreadNotificationBackgroundColor: string;
37447
37815
  unreadNotificationTextColor: string;
37816
+ markdownQuoteBorderColorOwn: string;
37817
+ markdownQuoteBorderColorOther: string;
37818
+ markdownQuoteTextColor: string;
37819
+ markdownDividerColorOwn: string;
37820
+ markdownDividerColorOther: string;
37448
37821
  typingIndicatorColor: string;
37449
37822
  dateSeparatorColor: string;
37450
37823
  dateSeparatorBackgroundColor: string;
@@ -38218,6 +38591,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
38218
38591
  serviceMessageTextColor: string;
38219
38592
  serviceMessageBackgroundColor: string;
38220
38593
  messageTitleColor: string;
38594
+ markdownQuoteBorderColorOwn: string;
38595
+ markdownQuoteBorderColorOther: string;
38596
+ markdownQuoteTextColor: string;
38597
+ markdownDividerColorOwn: string;
38598
+ markdownDividerColorOther: string;
38599
+ markdownH1FontSize: string;
38600
+ markdownH2FontSize: string;
38601
+ markdownH3FontSize: string;
38602
+ markdownTextFontSize: string;
38221
38603
  }, {
38222
38604
  StatusIcon: import("./_mixins").Theme<"Icon", {
38223
38605
  color: string;
@@ -38300,6 +38682,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
38300
38682
  inputSuffixColor: string;
38301
38683
  unreadNotificationBackgroundColor: string;
38302
38684
  unreadNotificationTextColor: string;
38685
+ markdownQuoteBorderColorOwn: string;
38686
+ markdownQuoteBorderColorOther: string;
38687
+ markdownQuoteTextColor: string;
38688
+ markdownDividerColorOwn: string;
38689
+ markdownDividerColorOther: string;
38303
38690
  typingIndicatorColor: string;
38304
38691
  dateSeparatorColor: string;
38305
38692
  dateSeparatorBackgroundColor: string;
@@ -39073,6 +39460,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
39073
39460
  serviceMessageTextColor: string;
39074
39461
  serviceMessageBackgroundColor: string;
39075
39462
  messageTitleColor: string;
39463
+ markdownQuoteBorderColorOwn: string;
39464
+ markdownQuoteBorderColorOther: string;
39465
+ markdownQuoteTextColor: string;
39466
+ markdownDividerColorOwn: string;
39467
+ markdownDividerColorOther: string;
39468
+ markdownH1FontSize: string;
39469
+ markdownH2FontSize: string;
39470
+ markdownH3FontSize: string;
39471
+ markdownTextFontSize: string;
39076
39472
  }, {
39077
39473
  StatusIcon: import("./_mixins").Theme<"Icon", {
39078
39474
  color: string;
@@ -39126,7 +39522,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
39126
39522
  }>>>;
39127
39523
  }>> & Readonly<{}>, {
39128
39524
  mergedClsPrefix: import("vue").Ref<string, string>;
39129
- mergedTheme: import("vue").Ref<{
39525
+ mergedTheme: import("vue").ComputedRef<{
39130
39526
  common: import("./config-provider").ThemeCommonVars;
39131
39527
  self: {
39132
39528
  backgroundColor: string;
@@ -39159,6 +39555,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
39159
39555
  inputSuffixColor: string;
39160
39556
  unreadNotificationBackgroundColor: string;
39161
39557
  unreadNotificationTextColor: string;
39558
+ markdownQuoteBorderColorOwn: string;
39559
+ markdownQuoteBorderColorOther: string;
39560
+ markdownQuoteTextColor: string;
39561
+ markdownDividerColorOwn: string;
39562
+ markdownDividerColorOther: string;
39162
39563
  typingIndicatorColor: string;
39163
39564
  dateSeparatorColor: string;
39164
39565
  dateSeparatorBackgroundColor: string;
@@ -39933,6 +40334,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
39933
40334
  serviceMessageTextColor: string;
39934
40335
  serviceMessageBackgroundColor: string;
39935
40336
  messageTitleColor: string;
40337
+ markdownQuoteBorderColorOwn: string;
40338
+ markdownQuoteBorderColorOther: string;
40339
+ markdownQuoteTextColor: string;
40340
+ markdownDividerColorOwn: string;
40341
+ markdownDividerColorOther: string;
40342
+ markdownH1FontSize: string;
40343
+ markdownH2FontSize: string;
40344
+ markdownH3FontSize: string;
40345
+ markdownTextFontSize: string;
39936
40346
  }, {
39937
40347
  StatusIcon: import("./_mixins").Theme<"Icon", {
39938
40348
  color: string;
@@ -40373,7 +40783,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
40373
40783
  } | undefined;
40374
40784
  } | undefined;
40375
40785
  };
40376
- }, {
40786
+ }> | import("vue").Ref<{
40377
40787
  common: import("./config-provider").ThemeCommonVars;
40378
40788
  self: {
40379
40789
  backgroundColor: string;
@@ -40406,6 +40816,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
40406
40816
  inputSuffixColor: string;
40407
40817
  unreadNotificationBackgroundColor: string;
40408
40818
  unreadNotificationTextColor: string;
40819
+ markdownQuoteBorderColorOwn: string;
40820
+ markdownQuoteBorderColorOther: string;
40821
+ markdownQuoteTextColor: string;
40822
+ markdownDividerColorOwn: string;
40823
+ markdownDividerColorOther: string;
40409
40824
  typingIndicatorColor: string;
40410
40825
  dateSeparatorColor: string;
40411
40826
  dateSeparatorBackgroundColor: string;
@@ -41180,6 +41595,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
41180
41595
  serviceMessageTextColor: string;
41181
41596
  serviceMessageBackgroundColor: string;
41182
41597
  messageTitleColor: string;
41598
+ markdownQuoteBorderColorOwn: string;
41599
+ markdownQuoteBorderColorOther: string;
41600
+ markdownQuoteTextColor: string;
41601
+ markdownDividerColorOwn: string;
41602
+ markdownDividerColorOther: string;
41603
+ markdownH1FontSize: string;
41604
+ markdownH2FontSize: string;
41605
+ markdownH3FontSize: string;
41606
+ markdownTextFontSize: string;
41183
41607
  }, {
41184
41608
  StatusIcon: import("./_mixins").Theme<"Icon", {
41185
41609
  color: string;
@@ -41620,7 +42044,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
41620
42044
  } | undefined;
41621
42045
  } | undefined;
41622
42046
  };
41623
- }> | import("vue").ComputedRef<{
42047
+ }, {
41624
42048
  common: import("./config-provider").ThemeCommonVars;
41625
42049
  self: {
41626
42050
  backgroundColor: string;
@@ -41653,6 +42077,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
41653
42077
  inputSuffixColor: string;
41654
42078
  unreadNotificationBackgroundColor: string;
41655
42079
  unreadNotificationTextColor: string;
42080
+ markdownQuoteBorderColorOwn: string;
42081
+ markdownQuoteBorderColorOther: string;
42082
+ markdownQuoteTextColor: string;
42083
+ markdownDividerColorOwn: string;
42084
+ markdownDividerColorOther: string;
41656
42085
  typingIndicatorColor: string;
41657
42086
  dateSeparatorColor: string;
41658
42087
  dateSeparatorBackgroundColor: string;
@@ -42427,6 +42856,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
42427
42856
  serviceMessageTextColor: string;
42428
42857
  serviceMessageBackgroundColor: string;
42429
42858
  messageTitleColor: string;
42859
+ markdownQuoteBorderColorOwn: string;
42860
+ markdownQuoteBorderColorOther: string;
42861
+ markdownQuoteTextColor: string;
42862
+ markdownDividerColorOwn: string;
42863
+ markdownDividerColorOther: string;
42864
+ markdownH1FontSize: string;
42865
+ markdownH2FontSize: string;
42866
+ markdownH3FontSize: string;
42867
+ markdownTextFontSize: string;
42430
42868
  }, {
42431
42869
  StatusIcon: import("./_mixins").Theme<"Icon", {
42432
42870
  color: string;
@@ -42896,6 +43334,8 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
42896
43334
  readonly shareButtonTooltip: string;
42897
43335
  readonly profileButtonTooltip: string;
42898
43336
  readonly unreadNotificationText: string;
43337
+ readonly markdown: boolean;
43338
+ readonly markdownOptions: import("./message-bubble").MarkdownOptions;
42899
43339
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
42900
43340
  readonly inputValue: string;
42901
43341
  readonly messages: import("./chat").ChatMessageData[];
@@ -42922,13 +43362,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
42922
43362
  readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
42923
43363
  readonly onMessagesScrollToTop: () => void;
42924
43364
  readonly onMessagesScrollToBottom: () => void;
42925
- readonly loadingCount: number;
43365
+ readonly 'onUpdate:inputValue': (value: string) => void;
42926
43366
  readonly selectedChat: import("./chat").ChatListItemData;
43367
+ readonly loadingCount: number;
42927
43368
  readonly showAttachButton: boolean;
42928
43369
  readonly onMessageSend: import("./chat").OnMessageSend;
42929
- readonly 'onUpdate:inputValue': (value: string) => void;
42930
43370
  }> | null>;
42931
- }, {}, {}, {}, 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<{
43371
+ }, {}, {}, {}, 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<{
42932
43372
  chatItems: {
42933
43373
  type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["chatItems"]>;
42934
43374
  default: () => never[];
@@ -43081,6 +43521,14 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
43081
43521
  type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["unreadNotificationText"]>;
43082
43522
  default: undefined;
43083
43523
  };
43524
+ markdown: {
43525
+ type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["markdown"]>;
43526
+ default: boolean;
43527
+ };
43528
+ markdownOptions: {
43529
+ type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["markdownOptions"]>;
43530
+ default: undefined;
43531
+ };
43084
43532
  chatItemsLoading: {
43085
43533
  type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["chatItemsLoading"]>;
43086
43534
  default: boolean;
@@ -43200,6 +43648,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
43200
43648
  inputSuffixColor: string;
43201
43649
  unreadNotificationBackgroundColor: string;
43202
43650
  unreadNotificationTextColor: string;
43651
+ markdownQuoteBorderColorOwn: string;
43652
+ markdownQuoteBorderColorOther: string;
43653
+ markdownQuoteTextColor: string;
43654
+ markdownDividerColorOwn: string;
43655
+ markdownDividerColorOther: string;
43203
43656
  typingIndicatorColor: string;
43204
43657
  dateSeparatorColor: string;
43205
43658
  dateSeparatorBackgroundColor: string;
@@ -43973,6 +44426,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
43973
44426
  serviceMessageTextColor: string;
43974
44427
  serviceMessageBackgroundColor: string;
43975
44428
  messageTitleColor: string;
44429
+ markdownQuoteBorderColorOwn: string;
44430
+ markdownQuoteBorderColorOther: string;
44431
+ markdownQuoteTextColor: string;
44432
+ markdownDividerColorOwn: string;
44433
+ markdownDividerColorOther: string;
44434
+ markdownH1FontSize: string;
44435
+ markdownH2FontSize: string;
44436
+ markdownH3FontSize: string;
44437
+ markdownTextFontSize: string;
43976
44438
  }, {
43977
44439
  StatusIcon: import("./_mixins").Theme<"Icon", {
43978
44440
  color: string;
@@ -44055,6 +44517,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
44055
44517
  inputSuffixColor: string;
44056
44518
  unreadNotificationBackgroundColor: string;
44057
44519
  unreadNotificationTextColor: string;
44520
+ markdownQuoteBorderColorOwn: string;
44521
+ markdownQuoteBorderColorOther: string;
44522
+ markdownQuoteTextColor: string;
44523
+ markdownDividerColorOwn: string;
44524
+ markdownDividerColorOther: string;
44058
44525
  typingIndicatorColor: string;
44059
44526
  dateSeparatorColor: string;
44060
44527
  dateSeparatorBackgroundColor: string;
@@ -44828,6 +45295,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
44828
45295
  serviceMessageTextColor: string;
44829
45296
  serviceMessageBackgroundColor: string;
44830
45297
  messageTitleColor: string;
45298
+ markdownQuoteBorderColorOwn: string;
45299
+ markdownQuoteBorderColorOther: string;
45300
+ markdownQuoteTextColor: string;
45301
+ markdownDividerColorOwn: string;
45302
+ markdownDividerColorOther: string;
45303
+ markdownH1FontSize: string;
45304
+ markdownH2FontSize: string;
45305
+ markdownH3FontSize: string;
45306
+ markdownTextFontSize: string;
44831
45307
  }, {
44832
45308
  StatusIcon: import("./_mixins").Theme<"Icon", {
44833
45309
  color: string;
@@ -44910,6 +45386,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
44910
45386
  inputSuffixColor: string;
44911
45387
  unreadNotificationBackgroundColor: string;
44912
45388
  unreadNotificationTextColor: string;
45389
+ markdownQuoteBorderColorOwn: string;
45390
+ markdownQuoteBorderColorOther: string;
45391
+ markdownQuoteTextColor: string;
45392
+ markdownDividerColorOwn: string;
45393
+ markdownDividerColorOther: string;
44913
45394
  typingIndicatorColor: string;
44914
45395
  dateSeparatorColor: string;
44915
45396
  dateSeparatorBackgroundColor: string;
@@ -45683,6 +46164,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
45683
46164
  serviceMessageTextColor: string;
45684
46165
  serviceMessageBackgroundColor: string;
45685
46166
  messageTitleColor: string;
46167
+ markdownQuoteBorderColorOwn: string;
46168
+ markdownQuoteBorderColorOther: string;
46169
+ markdownQuoteTextColor: string;
46170
+ markdownDividerColorOwn: string;
46171
+ markdownDividerColorOther: string;
46172
+ markdownH1FontSize: string;
46173
+ markdownH2FontSize: string;
46174
+ markdownH3FontSize: string;
46175
+ markdownTextFontSize: string;
45686
46176
  }, {
45687
46177
  StatusIcon: import("./_mixins").Theme<"Icon", {
45688
46178
  color: string;
@@ -45735,10 +46225,10 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
45735
46225
  }, any>;
45736
46226
  }>>>;
45737
46227
  }>> & Readonly<{
45738
- "onUpdate:inputValue"?: ((...args: any[]) => any) | undefined;
45739
- "onMessage-retry"?: ((...args: any[]) => any) | undefined;
45740
46228
  "onUpdate:selectedChatId"?: ((...args: any[]) => any) | undefined;
46229
+ "onUpdate:inputValue"?: ((...args: any[]) => any) | undefined;
45741
46230
  "onMessage-send"?: ((...args: any[]) => any) | undefined;
46231
+ "onMessage-retry"?: ((...args: any[]) => any) | undefined;
45742
46232
  "onAttachment-upload"?: ((...args: any[]) => any) | undefined;
45743
46233
  "onMark-messages-read"?: ((...args: any[]) => any) | undefined;
45744
46234
  "onFilter-change"?: ((...args: any[]) => any) | undefined;
@@ -45760,6 +46250,8 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
45760
46250
  height: string | number;
45761
46251
  disabled: boolean | undefined;
45762
46252
  emptyProps: Partial<Partial<import("./empty").EmptyProps> | undefined>;
46253
+ markdown: boolean | undefined;
46254
+ markdownOptions: import("./message-bubble").MarkdownOptions | undefined;
45763
46255
  onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload | undefined;
45764
46256
  chatItems: import("./chat").ChatListItemData[] | undefined;
45765
46257
  selectedChatId: import("./chat").ChatId | undefined;
@@ -45888,6 +46380,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
45888
46380
  inputSuffixColor: string;
45889
46381
  unreadNotificationBackgroundColor: string;
45890
46382
  unreadNotificationTextColor: string;
46383
+ markdownQuoteBorderColorOwn: string;
46384
+ markdownQuoteBorderColorOther: string;
46385
+ markdownQuoteTextColor: string;
46386
+ markdownDividerColorOwn: string;
46387
+ markdownDividerColorOther: string;
45891
46388
  typingIndicatorColor: string;
45892
46389
  dateSeparatorColor: string;
45893
46390
  dateSeparatorBackgroundColor: string;
@@ -46661,6 +47158,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
46661
47158
  serviceMessageTextColor: string;
46662
47159
  serviceMessageBackgroundColor: string;
46663
47160
  messageTitleColor: string;
47161
+ markdownQuoteBorderColorOwn: string;
47162
+ markdownQuoteBorderColorOther: string;
47163
+ markdownQuoteTextColor: string;
47164
+ markdownDividerColorOwn: string;
47165
+ markdownDividerColorOther: string;
47166
+ markdownH1FontSize: string;
47167
+ markdownH2FontSize: string;
47168
+ markdownH3FontSize: string;
47169
+ markdownTextFontSize: string;
46664
47170
  }, {
46665
47171
  StatusIcon: import("./_mixins").Theme<"Icon", {
46666
47172
  color: string;
@@ -46743,6 +47249,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
46743
47249
  inputSuffixColor: string;
46744
47250
  unreadNotificationBackgroundColor: string;
46745
47251
  unreadNotificationTextColor: string;
47252
+ markdownQuoteBorderColorOwn: string;
47253
+ markdownQuoteBorderColorOther: string;
47254
+ markdownQuoteTextColor: string;
47255
+ markdownDividerColorOwn: string;
47256
+ markdownDividerColorOther: string;
46746
47257
  typingIndicatorColor: string;
46747
47258
  dateSeparatorColor: string;
46748
47259
  dateSeparatorBackgroundColor: string;
@@ -47516,6 +48027,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
47516
48027
  serviceMessageTextColor: string;
47517
48028
  serviceMessageBackgroundColor: string;
47518
48029
  messageTitleColor: string;
48030
+ markdownQuoteBorderColorOwn: string;
48031
+ markdownQuoteBorderColorOther: string;
48032
+ markdownQuoteTextColor: string;
48033
+ markdownDividerColorOwn: string;
48034
+ markdownDividerColorOther: string;
48035
+ markdownH1FontSize: string;
48036
+ markdownH2FontSize: string;
48037
+ markdownH3FontSize: string;
48038
+ markdownTextFontSize: string;
47519
48039
  }, {
47520
48040
  StatusIcon: import("./_mixins").Theme<"Icon", {
47521
48041
  color: string;
@@ -47598,6 +48118,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
47598
48118
  inputSuffixColor: string;
47599
48119
  unreadNotificationBackgroundColor: string;
47600
48120
  unreadNotificationTextColor: string;
48121
+ markdownQuoteBorderColorOwn: string;
48122
+ markdownQuoteBorderColorOther: string;
48123
+ markdownQuoteTextColor: string;
48124
+ markdownDividerColorOwn: string;
48125
+ markdownDividerColorOther: string;
47601
48126
  typingIndicatorColor: string;
47602
48127
  dateSeparatorColor: string;
47603
48128
  dateSeparatorBackgroundColor: string;
@@ -48371,6 +48896,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
48371
48896
  serviceMessageTextColor: string;
48372
48897
  serviceMessageBackgroundColor: string;
48373
48898
  messageTitleColor: string;
48899
+ markdownQuoteBorderColorOwn: string;
48900
+ markdownQuoteBorderColorOther: string;
48901
+ markdownQuoteTextColor: string;
48902
+ markdownDividerColorOwn: string;
48903
+ markdownDividerColorOther: string;
48904
+ markdownH1FontSize: string;
48905
+ markdownH2FontSize: string;
48906
+ markdownH3FontSize: string;
48907
+ markdownTextFontSize: string;
48374
48908
  }, {
48375
48909
  StatusIcon: import("./_mixins").Theme<"Icon", {
48376
48910
  color: string;
@@ -48424,7 +48958,7 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
48424
48958
  }>>>;
48425
48959
  }>, {
48426
48960
  mergedClsPrefixRef: import("vue").Ref<string, string>;
48427
- mergedTheme: import("vue").Ref<{
48961
+ mergedTheme: import("vue").ComputedRef<{
48428
48962
  common: import("./config-provider").ThemeCommonVars;
48429
48963
  self: {
48430
48964
  backgroundColor: string;
@@ -48457,6 +48991,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
48457
48991
  inputSuffixColor: string;
48458
48992
  unreadNotificationBackgroundColor: string;
48459
48993
  unreadNotificationTextColor: string;
48994
+ markdownQuoteBorderColorOwn: string;
48995
+ markdownQuoteBorderColorOther: string;
48996
+ markdownQuoteTextColor: string;
48997
+ markdownDividerColorOwn: string;
48998
+ markdownDividerColorOther: string;
48460
48999
  typingIndicatorColor: string;
48461
49000
  dateSeparatorColor: string;
48462
49001
  dateSeparatorBackgroundColor: string;
@@ -49231,6 +49770,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
49231
49770
  serviceMessageTextColor: string;
49232
49771
  serviceMessageBackgroundColor: string;
49233
49772
  messageTitleColor: string;
49773
+ markdownQuoteBorderColorOwn: string;
49774
+ markdownQuoteBorderColorOther: string;
49775
+ markdownQuoteTextColor: string;
49776
+ markdownDividerColorOwn: string;
49777
+ markdownDividerColorOther: string;
49778
+ markdownH1FontSize: string;
49779
+ markdownH2FontSize: string;
49780
+ markdownH3FontSize: string;
49781
+ markdownTextFontSize: string;
49234
49782
  }, {
49235
49783
  StatusIcon: import("./_mixins").Theme<"Icon", {
49236
49784
  color: string;
@@ -49671,7 +50219,7 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
49671
50219
  } | undefined;
49672
50220
  } | undefined;
49673
50221
  };
49674
- }, {
50222
+ }> | import("vue").Ref<{
49675
50223
  common: import("./config-provider").ThemeCommonVars;
49676
50224
  self: {
49677
50225
  backgroundColor: string;
@@ -49704,6 +50252,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
49704
50252
  inputSuffixColor: string;
49705
50253
  unreadNotificationBackgroundColor: string;
49706
50254
  unreadNotificationTextColor: string;
50255
+ markdownQuoteBorderColorOwn: string;
50256
+ markdownQuoteBorderColorOther: string;
50257
+ markdownQuoteTextColor: string;
50258
+ markdownDividerColorOwn: string;
50259
+ markdownDividerColorOther: string;
49707
50260
  typingIndicatorColor: string;
49708
50261
  dateSeparatorColor: string;
49709
50262
  dateSeparatorBackgroundColor: string;
@@ -50478,6 +51031,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
50478
51031
  serviceMessageTextColor: string;
50479
51032
  serviceMessageBackgroundColor: string;
50480
51033
  messageTitleColor: string;
51034
+ markdownQuoteBorderColorOwn: string;
51035
+ markdownQuoteBorderColorOther: string;
51036
+ markdownQuoteTextColor: string;
51037
+ markdownDividerColorOwn: string;
51038
+ markdownDividerColorOther: string;
51039
+ markdownH1FontSize: string;
51040
+ markdownH2FontSize: string;
51041
+ markdownH3FontSize: string;
51042
+ markdownTextFontSize: string;
50481
51043
  }, {
50482
51044
  StatusIcon: import("./_mixins").Theme<"Icon", {
50483
51045
  color: string;
@@ -50918,7 +51480,7 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
50918
51480
  } | undefined;
50919
51481
  } | undefined;
50920
51482
  };
50921
- }> | import("vue").ComputedRef<{
51483
+ }, {
50922
51484
  common: import("./config-provider").ThemeCommonVars;
50923
51485
  self: {
50924
51486
  backgroundColor: string;
@@ -50951,6 +51513,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
50951
51513
  inputSuffixColor: string;
50952
51514
  unreadNotificationBackgroundColor: string;
50953
51515
  unreadNotificationTextColor: string;
51516
+ markdownQuoteBorderColorOwn: string;
51517
+ markdownQuoteBorderColorOther: string;
51518
+ markdownQuoteTextColor: string;
51519
+ markdownDividerColorOwn: string;
51520
+ markdownDividerColorOther: string;
50954
51521
  typingIndicatorColor: string;
50955
51522
  dateSeparatorColor: string;
50956
51523
  dateSeparatorBackgroundColor: string;
@@ -51725,6 +52292,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
51725
52292
  serviceMessageTextColor: string;
51726
52293
  serviceMessageBackgroundColor: string;
51727
52294
  messageTitleColor: string;
52295
+ markdownQuoteBorderColorOwn: string;
52296
+ markdownQuoteBorderColorOther: string;
52297
+ markdownQuoteTextColor: string;
52298
+ markdownDividerColorOwn: string;
52299
+ markdownDividerColorOther: string;
52300
+ markdownH1FontSize: string;
52301
+ markdownH2FontSize: string;
52302
+ markdownH3FontSize: string;
52303
+ markdownTextFontSize: string;
51728
52304
  }, {
51729
52305
  StatusIcon: import("./_mixins").Theme<"Icon", {
51730
52306
  color: string;
@@ -52267,6 +52843,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
52267
52843
  inputSuffixColor: string;
52268
52844
  unreadNotificationBackgroundColor: string;
52269
52845
  unreadNotificationTextColor: string;
52846
+ markdownQuoteBorderColorOwn: string;
52847
+ markdownQuoteBorderColorOther: string;
52848
+ markdownQuoteTextColor: string;
52849
+ markdownDividerColorOwn: string;
52850
+ markdownDividerColorOther: string;
52270
52851
  typingIndicatorColor: string;
52271
52852
  dateSeparatorColor: string;
52272
52853
  dateSeparatorBackgroundColor: string;
@@ -53040,6 +53621,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
53040
53621
  serviceMessageTextColor: string;
53041
53622
  serviceMessageBackgroundColor: string;
53042
53623
  messageTitleColor: string;
53624
+ markdownQuoteBorderColorOwn: string;
53625
+ markdownQuoteBorderColorOther: string;
53626
+ markdownQuoteTextColor: string;
53627
+ markdownDividerColorOwn: string;
53628
+ markdownDividerColorOther: string;
53629
+ markdownH1FontSize: string;
53630
+ markdownH2FontSize: string;
53631
+ markdownH3FontSize: string;
53632
+ markdownTextFontSize: string;
53043
53633
  }, {
53044
53634
  StatusIcon: import("./_mixins").Theme<"Icon", {
53045
53635
  color: string;
@@ -53122,6 +53712,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
53122
53712
  inputSuffixColor: string;
53123
53713
  unreadNotificationBackgroundColor: string;
53124
53714
  unreadNotificationTextColor: string;
53715
+ markdownQuoteBorderColorOwn: string;
53716
+ markdownQuoteBorderColorOther: string;
53717
+ markdownQuoteTextColor: string;
53718
+ markdownDividerColorOwn: string;
53719
+ markdownDividerColorOther: string;
53125
53720
  typingIndicatorColor: string;
53126
53721
  dateSeparatorColor: string;
53127
53722
  dateSeparatorBackgroundColor: string;
@@ -53895,6 +54490,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
53895
54490
  serviceMessageTextColor: string;
53896
54491
  serviceMessageBackgroundColor: string;
53897
54492
  messageTitleColor: string;
54493
+ markdownQuoteBorderColorOwn: string;
54494
+ markdownQuoteBorderColorOther: string;
54495
+ markdownQuoteTextColor: string;
54496
+ markdownDividerColorOwn: string;
54497
+ markdownDividerColorOther: string;
54498
+ markdownH1FontSize: string;
54499
+ markdownH2FontSize: string;
54500
+ markdownH3FontSize: string;
54501
+ markdownTextFontSize: string;
53898
54502
  }, {
53899
54503
  StatusIcon: import("./_mixins").Theme<"Icon", {
53900
54504
  color: string;
@@ -53977,6 +54581,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
53977
54581
  inputSuffixColor: string;
53978
54582
  unreadNotificationBackgroundColor: string;
53979
54583
  unreadNotificationTextColor: string;
54584
+ markdownQuoteBorderColorOwn: string;
54585
+ markdownQuoteBorderColorOther: string;
54586
+ markdownQuoteTextColor: string;
54587
+ markdownDividerColorOwn: string;
54588
+ markdownDividerColorOther: string;
53980
54589
  typingIndicatorColor: string;
53981
54590
  dateSeparatorColor: string;
53982
54591
  dateSeparatorBackgroundColor: string;
@@ -54750,6 +55359,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
54750
55359
  serviceMessageTextColor: string;
54751
55360
  serviceMessageBackgroundColor: string;
54752
55361
  messageTitleColor: string;
55362
+ markdownQuoteBorderColorOwn: string;
55363
+ markdownQuoteBorderColorOther: string;
55364
+ markdownQuoteTextColor: string;
55365
+ markdownDividerColorOwn: string;
55366
+ markdownDividerColorOther: string;
55367
+ markdownH1FontSize: string;
55368
+ markdownH2FontSize: string;
55369
+ markdownH3FontSize: string;
55370
+ markdownTextFontSize: string;
54753
55371
  }, {
54754
55372
  StatusIcon: import("./_mixins").Theme<"Icon", {
54755
55373
  color: string;
@@ -54809,9 +55427,9 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
54809
55427
  readonly selectedChatId: string | number | symbol;
54810
55428
  readonly onChatSelect: (chatId: string | number | symbol) => void;
54811
55429
  readonly typingChatIds: (string | number | symbol)[];
54812
- readonly loadingCount: number;
54813
55430
  readonly avatarProps: Partial<import("./avatar").AvatarProps>;
54814
55431
  readonly badgeProps: Partial<import("./badge").BadgeProps>;
55432
+ readonly loadingCount: number;
54815
55433
  readonly notificationsShown: Set<string | number | symbol>;
54816
55434
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
54817
55435
  export declare const UChatMainArea: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -54923,6 +55541,14 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
54923
55541
  readonly type: StringConstructor;
54924
55542
  readonly default: undefined;
54925
55543
  };
55544
+ readonly markdown: {
55545
+ readonly type: BooleanConstructor;
55546
+ readonly default: true;
55547
+ };
55548
+ readonly markdownOptions: {
55549
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
55550
+ readonly default: undefined;
55551
+ };
54926
55552
  readonly bubbleActions: {
54927
55553
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
54928
55554
  readonly default: undefined;
@@ -55002,6 +55628,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
55002
55628
  inputSuffixColor: string;
55003
55629
  unreadNotificationBackgroundColor: string;
55004
55630
  unreadNotificationTextColor: string;
55631
+ markdownQuoteBorderColorOwn: string;
55632
+ markdownQuoteBorderColorOther: string;
55633
+ markdownQuoteTextColor: string;
55634
+ markdownDividerColorOwn: string;
55635
+ markdownDividerColorOther: string;
55005
55636
  typingIndicatorColor: string;
55006
55637
  dateSeparatorColor: string;
55007
55638
  dateSeparatorBackgroundColor: string;
@@ -55775,6 +56406,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
55775
56406
  serviceMessageTextColor: string;
55776
56407
  serviceMessageBackgroundColor: string;
55777
56408
  messageTitleColor: string;
56409
+ markdownQuoteBorderColorOwn: string;
56410
+ markdownQuoteBorderColorOther: string;
56411
+ markdownQuoteTextColor: string;
56412
+ markdownDividerColorOwn: string;
56413
+ markdownDividerColorOther: string;
56414
+ markdownH1FontSize: string;
56415
+ markdownH2FontSize: string;
56416
+ markdownH3FontSize: string;
56417
+ markdownTextFontSize: string;
55778
56418
  }, {
55779
56419
  StatusIcon: import("./_mixins").Theme<"Icon", {
55780
56420
  color: string;
@@ -55857,6 +56497,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
55857
56497
  inputSuffixColor: string;
55858
56498
  unreadNotificationBackgroundColor: string;
55859
56499
  unreadNotificationTextColor: string;
56500
+ markdownQuoteBorderColorOwn: string;
56501
+ markdownQuoteBorderColorOther: string;
56502
+ markdownQuoteTextColor: string;
56503
+ markdownDividerColorOwn: string;
56504
+ markdownDividerColorOther: string;
55860
56505
  typingIndicatorColor: string;
55861
56506
  dateSeparatorColor: string;
55862
56507
  dateSeparatorBackgroundColor: string;
@@ -56630,6 +57275,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
56630
57275
  serviceMessageTextColor: string;
56631
57276
  serviceMessageBackgroundColor: string;
56632
57277
  messageTitleColor: string;
57278
+ markdownQuoteBorderColorOwn: string;
57279
+ markdownQuoteBorderColorOther: string;
57280
+ markdownQuoteTextColor: string;
57281
+ markdownDividerColorOwn: string;
57282
+ markdownDividerColorOther: string;
57283
+ markdownH1FontSize: string;
57284
+ markdownH2FontSize: string;
57285
+ markdownH3FontSize: string;
57286
+ markdownTextFontSize: string;
56633
57287
  }, {
56634
57288
  StatusIcon: import("./_mixins").Theme<"Icon", {
56635
57289
  color: string;
@@ -56712,6 +57366,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
56712
57366
  inputSuffixColor: string;
56713
57367
  unreadNotificationBackgroundColor: string;
56714
57368
  unreadNotificationTextColor: string;
57369
+ markdownQuoteBorderColorOwn: string;
57370
+ markdownQuoteBorderColorOther: string;
57371
+ markdownQuoteTextColor: string;
57372
+ markdownDividerColorOwn: string;
57373
+ markdownDividerColorOther: string;
56715
57374
  typingIndicatorColor: string;
56716
57375
  dateSeparatorColor: string;
56717
57376
  dateSeparatorBackgroundColor: string;
@@ -57485,6 +58144,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
57485
58144
  serviceMessageTextColor: string;
57486
58145
  serviceMessageBackgroundColor: string;
57487
58146
  messageTitleColor: string;
58147
+ markdownQuoteBorderColorOwn: string;
58148
+ markdownQuoteBorderColorOther: string;
58149
+ markdownQuoteTextColor: string;
58150
+ markdownDividerColorOwn: string;
58151
+ markdownDividerColorOther: string;
58152
+ markdownH1FontSize: string;
58153
+ markdownH2FontSize: string;
58154
+ markdownH3FontSize: string;
58155
+ markdownTextFontSize: string;
57488
58156
  }, {
57489
58157
  StatusIcon: import("./_mixins").Theme<"Icon", {
57490
58158
  color: string;
@@ -57538,7 +58206,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
57538
58206
  }>>>;
57539
58207
  }>, {
57540
58208
  mergedClsPrefix: import("vue").Ref<string, string>;
57541
- mergedTheme: import("vue").Ref<{
58209
+ mergedTheme: import("vue").ComputedRef<{
57542
58210
  common: import("./config-provider").ThemeCommonVars;
57543
58211
  self: {
57544
58212
  backgroundColor: string;
@@ -57571,6 +58239,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
57571
58239
  inputSuffixColor: string;
57572
58240
  unreadNotificationBackgroundColor: string;
57573
58241
  unreadNotificationTextColor: string;
58242
+ markdownQuoteBorderColorOwn: string;
58243
+ markdownQuoteBorderColorOther: string;
58244
+ markdownQuoteTextColor: string;
58245
+ markdownDividerColorOwn: string;
58246
+ markdownDividerColorOther: string;
57574
58247
  typingIndicatorColor: string;
57575
58248
  dateSeparatorColor: string;
57576
58249
  dateSeparatorBackgroundColor: string;
@@ -58345,6 +59018,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
58345
59018
  serviceMessageTextColor: string;
58346
59019
  serviceMessageBackgroundColor: string;
58347
59020
  messageTitleColor: string;
59021
+ markdownQuoteBorderColorOwn: string;
59022
+ markdownQuoteBorderColorOther: string;
59023
+ markdownQuoteTextColor: string;
59024
+ markdownDividerColorOwn: string;
59025
+ markdownDividerColorOther: string;
59026
+ markdownH1FontSize: string;
59027
+ markdownH2FontSize: string;
59028
+ markdownH3FontSize: string;
59029
+ markdownTextFontSize: string;
58348
59030
  }, {
58349
59031
  StatusIcon: import("./_mixins").Theme<"Icon", {
58350
59032
  color: string;
@@ -58785,7 +59467,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
58785
59467
  } | undefined;
58786
59468
  } | undefined;
58787
59469
  };
58788
- }, {
59470
+ }> | import("vue").Ref<{
58789
59471
  common: import("./config-provider").ThemeCommonVars;
58790
59472
  self: {
58791
59473
  backgroundColor: string;
@@ -58818,6 +59500,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
58818
59500
  inputSuffixColor: string;
58819
59501
  unreadNotificationBackgroundColor: string;
58820
59502
  unreadNotificationTextColor: string;
59503
+ markdownQuoteBorderColorOwn: string;
59504
+ markdownQuoteBorderColorOther: string;
59505
+ markdownQuoteTextColor: string;
59506
+ markdownDividerColorOwn: string;
59507
+ markdownDividerColorOther: string;
58821
59508
  typingIndicatorColor: string;
58822
59509
  dateSeparatorColor: string;
58823
59510
  dateSeparatorBackgroundColor: string;
@@ -59592,6 +60279,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
59592
60279
  serviceMessageTextColor: string;
59593
60280
  serviceMessageBackgroundColor: string;
59594
60281
  messageTitleColor: string;
60282
+ markdownQuoteBorderColorOwn: string;
60283
+ markdownQuoteBorderColorOther: string;
60284
+ markdownQuoteTextColor: string;
60285
+ markdownDividerColorOwn: string;
60286
+ markdownDividerColorOther: string;
60287
+ markdownH1FontSize: string;
60288
+ markdownH2FontSize: string;
60289
+ markdownH3FontSize: string;
60290
+ markdownTextFontSize: string;
59595
60291
  }, {
59596
60292
  StatusIcon: import("./_mixins").Theme<"Icon", {
59597
60293
  color: string;
@@ -60032,7 +60728,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
60032
60728
  } | undefined;
60033
60729
  } | undefined;
60034
60730
  };
60035
- }> | import("vue").ComputedRef<{
60731
+ }, {
60036
60732
  common: import("./config-provider").ThemeCommonVars;
60037
60733
  self: {
60038
60734
  backgroundColor: string;
@@ -60065,6 +60761,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
60065
60761
  inputSuffixColor: string;
60066
60762
  unreadNotificationBackgroundColor: string;
60067
60763
  unreadNotificationTextColor: string;
60764
+ markdownQuoteBorderColorOwn: string;
60765
+ markdownQuoteBorderColorOther: string;
60766
+ markdownQuoteTextColor: string;
60767
+ markdownDividerColorOwn: string;
60768
+ markdownDividerColorOther: string;
60068
60769
  typingIndicatorColor: string;
60069
60770
  dateSeparatorColor: string;
60070
60771
  dateSeparatorBackgroundColor: string;
@@ -60839,6 +61540,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
60839
61540
  serviceMessageTextColor: string;
60840
61541
  serviceMessageBackgroundColor: string;
60841
61542
  messageTitleColor: string;
61543
+ markdownQuoteBorderColorOwn: string;
61544
+ markdownQuoteBorderColorOther: string;
61545
+ markdownQuoteTextColor: string;
61546
+ markdownDividerColorOwn: string;
61547
+ markdownDividerColorOther: string;
61548
+ markdownH1FontSize: string;
61549
+ markdownH2FontSize: string;
61550
+ markdownH3FontSize: string;
61551
+ markdownTextFontSize: string;
60842
61552
  }, {
60843
61553
  StatusIcon: import("./_mixins").Theme<"Icon", {
60844
61554
  color: string;
@@ -61408,6 +62118,14 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
61408
62118
  readonly type: StringConstructor;
61409
62119
  readonly default: undefined;
61410
62120
  };
62121
+ readonly markdown: {
62122
+ readonly type: BooleanConstructor;
62123
+ readonly default: true;
62124
+ };
62125
+ readonly markdownOptions: {
62126
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
62127
+ readonly default: undefined;
62128
+ };
61411
62129
  readonly bubbleActions: {
61412
62130
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
61413
62131
  readonly default: undefined;
@@ -61487,6 +62205,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
61487
62205
  inputSuffixColor: string;
61488
62206
  unreadNotificationBackgroundColor: string;
61489
62207
  unreadNotificationTextColor: string;
62208
+ markdownQuoteBorderColorOwn: string;
62209
+ markdownQuoteBorderColorOther: string;
62210
+ markdownQuoteTextColor: string;
62211
+ markdownDividerColorOwn: string;
62212
+ markdownDividerColorOther: string;
61490
62213
  typingIndicatorColor: string;
61491
62214
  dateSeparatorColor: string;
61492
62215
  dateSeparatorBackgroundColor: string;
@@ -62260,6 +62983,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
62260
62983
  serviceMessageTextColor: string;
62261
62984
  serviceMessageBackgroundColor: string;
62262
62985
  messageTitleColor: string;
62986
+ markdownQuoteBorderColorOwn: string;
62987
+ markdownQuoteBorderColorOther: string;
62988
+ markdownQuoteTextColor: string;
62989
+ markdownDividerColorOwn: string;
62990
+ markdownDividerColorOther: string;
62991
+ markdownH1FontSize: string;
62992
+ markdownH2FontSize: string;
62993
+ markdownH3FontSize: string;
62994
+ markdownTextFontSize: string;
62263
62995
  }, {
62264
62996
  StatusIcon: import("./_mixins").Theme<"Icon", {
62265
62997
  color: string;
@@ -62342,6 +63074,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
62342
63074
  inputSuffixColor: string;
62343
63075
  unreadNotificationBackgroundColor: string;
62344
63076
  unreadNotificationTextColor: string;
63077
+ markdownQuoteBorderColorOwn: string;
63078
+ markdownQuoteBorderColorOther: string;
63079
+ markdownQuoteTextColor: string;
63080
+ markdownDividerColorOwn: string;
63081
+ markdownDividerColorOther: string;
62345
63082
  typingIndicatorColor: string;
62346
63083
  dateSeparatorColor: string;
62347
63084
  dateSeparatorBackgroundColor: string;
@@ -63115,6 +63852,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
63115
63852
  serviceMessageTextColor: string;
63116
63853
  serviceMessageBackgroundColor: string;
63117
63854
  messageTitleColor: string;
63855
+ markdownQuoteBorderColorOwn: string;
63856
+ markdownQuoteBorderColorOther: string;
63857
+ markdownQuoteTextColor: string;
63858
+ markdownDividerColorOwn: string;
63859
+ markdownDividerColorOther: string;
63860
+ markdownH1FontSize: string;
63861
+ markdownH2FontSize: string;
63862
+ markdownH3FontSize: string;
63863
+ markdownTextFontSize: string;
63118
63864
  }, {
63119
63865
  StatusIcon: import("./_mixins").Theme<"Icon", {
63120
63866
  color: string;
@@ -63197,6 +63943,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
63197
63943
  inputSuffixColor: string;
63198
63944
  unreadNotificationBackgroundColor: string;
63199
63945
  unreadNotificationTextColor: string;
63946
+ markdownQuoteBorderColorOwn: string;
63947
+ markdownQuoteBorderColorOther: string;
63948
+ markdownQuoteTextColor: string;
63949
+ markdownDividerColorOwn: string;
63950
+ markdownDividerColorOther: string;
63200
63951
  typingIndicatorColor: string;
63201
63952
  dateSeparatorColor: string;
63202
63953
  dateSeparatorBackgroundColor: string;
@@ -63970,6 +64721,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
63970
64721
  serviceMessageTextColor: string;
63971
64722
  serviceMessageBackgroundColor: string;
63972
64723
  messageTitleColor: string;
64724
+ markdownQuoteBorderColorOwn: string;
64725
+ markdownQuoteBorderColorOther: string;
64726
+ markdownQuoteTextColor: string;
64727
+ markdownDividerColorOwn: string;
64728
+ markdownDividerColorOther: string;
64729
+ markdownH1FontSize: string;
64730
+ markdownH2FontSize: string;
64731
+ markdownH3FontSize: string;
64732
+ markdownTextFontSize: string;
63973
64733
  }, {
63974
64734
  StatusIcon: import("./_mixins").Theme<"Icon", {
63975
64735
  color: string;
@@ -64030,6 +64790,8 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
64030
64790
  readonly shareButtonTooltip: string;
64031
64791
  readonly profileButtonTooltip: string;
64032
64792
  readonly unreadNotificationText: string;
64793
+ readonly markdown: boolean;
64794
+ readonly markdownOptions: import("./message-bubble").MarkdownOptions;
64033
64795
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
64034
64796
  readonly inputValue: string;
64035
64797
  readonly messages: import("./chat").ChatMessageData[];
@@ -64056,11 +64818,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
64056
64818
  readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
64057
64819
  readonly onMessagesScrollToTop: () => void;
64058
64820
  readonly onMessagesScrollToBottom: () => void;
64059
- readonly loadingCount: number;
64821
+ readonly 'onUpdate:inputValue': (value: string) => void;
64060
64822
  readonly selectedChat: import("./chat").ChatListItemData;
64823
+ readonly loadingCount: number;
64061
64824
  readonly showAttachButton: boolean;
64062
64825
  readonly onMessageSend: import("./chat").OnMessageSend;
64063
- readonly 'onUpdate:inputValue': (value: string) => void;
64064
64826
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
64065
64827
  export declare const UChatMessages: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
64066
64828
  readonly messages: {
@@ -64091,6 +64853,14 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
64091
64853
  readonly type: StringConstructor;
64092
64854
  readonly default: undefined;
64093
64855
  };
64856
+ readonly markdown: {
64857
+ readonly type: BooleanConstructor;
64858
+ readonly default: true;
64859
+ };
64860
+ readonly markdownOptions: {
64861
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
64862
+ readonly default: undefined;
64863
+ };
64094
64864
  readonly uploadProps: {
64095
64865
  readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
64096
64866
  readonly default: undefined;
@@ -64142,6 +64912,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
64142
64912
  inputSuffixColor: string;
64143
64913
  unreadNotificationBackgroundColor: string;
64144
64914
  unreadNotificationTextColor: string;
64915
+ markdownQuoteBorderColorOwn: string;
64916
+ markdownQuoteBorderColorOther: string;
64917
+ markdownQuoteTextColor: string;
64918
+ markdownDividerColorOwn: string;
64919
+ markdownDividerColorOther: string;
64145
64920
  typingIndicatorColor: string;
64146
64921
  dateSeparatorColor: string;
64147
64922
  dateSeparatorBackgroundColor: string;
@@ -64915,6 +65690,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
64915
65690
  serviceMessageTextColor: string;
64916
65691
  serviceMessageBackgroundColor: string;
64917
65692
  messageTitleColor: string;
65693
+ markdownQuoteBorderColorOwn: string;
65694
+ markdownQuoteBorderColorOther: string;
65695
+ markdownQuoteTextColor: string;
65696
+ markdownDividerColorOwn: string;
65697
+ markdownDividerColorOther: string;
65698
+ markdownH1FontSize: string;
65699
+ markdownH2FontSize: string;
65700
+ markdownH3FontSize: string;
65701
+ markdownTextFontSize: string;
64918
65702
  }, {
64919
65703
  StatusIcon: import("./_mixins").Theme<"Icon", {
64920
65704
  color: string;
@@ -64997,6 +65781,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
64997
65781
  inputSuffixColor: string;
64998
65782
  unreadNotificationBackgroundColor: string;
64999
65783
  unreadNotificationTextColor: string;
65784
+ markdownQuoteBorderColorOwn: string;
65785
+ markdownQuoteBorderColorOther: string;
65786
+ markdownQuoteTextColor: string;
65787
+ markdownDividerColorOwn: string;
65788
+ markdownDividerColorOther: string;
65000
65789
  typingIndicatorColor: string;
65001
65790
  dateSeparatorColor: string;
65002
65791
  dateSeparatorBackgroundColor: string;
@@ -65770,6 +66559,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
65770
66559
  serviceMessageTextColor: string;
65771
66560
  serviceMessageBackgroundColor: string;
65772
66561
  messageTitleColor: string;
66562
+ markdownQuoteBorderColorOwn: string;
66563
+ markdownQuoteBorderColorOther: string;
66564
+ markdownQuoteTextColor: string;
66565
+ markdownDividerColorOwn: string;
66566
+ markdownDividerColorOther: string;
66567
+ markdownH1FontSize: string;
66568
+ markdownH2FontSize: string;
66569
+ markdownH3FontSize: string;
66570
+ markdownTextFontSize: string;
65773
66571
  }, {
65774
66572
  StatusIcon: import("./_mixins").Theme<"Icon", {
65775
66573
  color: string;
@@ -65852,6 +66650,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
65852
66650
  inputSuffixColor: string;
65853
66651
  unreadNotificationBackgroundColor: string;
65854
66652
  unreadNotificationTextColor: string;
66653
+ markdownQuoteBorderColorOwn: string;
66654
+ markdownQuoteBorderColorOther: string;
66655
+ markdownQuoteTextColor: string;
66656
+ markdownDividerColorOwn: string;
66657
+ markdownDividerColorOther: string;
65855
66658
  typingIndicatorColor: string;
65856
66659
  dateSeparatorColor: string;
65857
66660
  dateSeparatorBackgroundColor: string;
@@ -66625,6 +67428,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
66625
67428
  serviceMessageTextColor: string;
66626
67429
  serviceMessageBackgroundColor: string;
66627
67430
  messageTitleColor: string;
67431
+ markdownQuoteBorderColorOwn: string;
67432
+ markdownQuoteBorderColorOther: string;
67433
+ markdownQuoteTextColor: string;
67434
+ markdownDividerColorOwn: string;
67435
+ markdownDividerColorOther: string;
67436
+ markdownH1FontSize: string;
67437
+ markdownH2FontSize: string;
67438
+ markdownH3FontSize: string;
67439
+ markdownTextFontSize: string;
66628
67440
  }, {
66629
67441
  StatusIcon: import("./_mixins").Theme<"Icon", {
66630
67442
  color: string;
@@ -66678,7 +67490,7 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
66678
67490
  }>>>;
66679
67491
  }>, {
66680
67492
  mergedClsPrefixRef: import("vue").Ref<string, string>;
66681
- mergedTheme: import("vue").Ref<{
67493
+ mergedTheme: import("vue").ComputedRef<{
66682
67494
  common: import("./config-provider").ThemeCommonVars;
66683
67495
  self: {
66684
67496
  backgroundColor: string;
@@ -66711,6 +67523,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
66711
67523
  inputSuffixColor: string;
66712
67524
  unreadNotificationBackgroundColor: string;
66713
67525
  unreadNotificationTextColor: string;
67526
+ markdownQuoteBorderColorOwn: string;
67527
+ markdownQuoteBorderColorOther: string;
67528
+ markdownQuoteTextColor: string;
67529
+ markdownDividerColorOwn: string;
67530
+ markdownDividerColorOther: string;
66714
67531
  typingIndicatorColor: string;
66715
67532
  dateSeparatorColor: string;
66716
67533
  dateSeparatorBackgroundColor: string;
@@ -67485,6 +68302,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
67485
68302
  serviceMessageTextColor: string;
67486
68303
  serviceMessageBackgroundColor: string;
67487
68304
  messageTitleColor: string;
68305
+ markdownQuoteBorderColorOwn: string;
68306
+ markdownQuoteBorderColorOther: string;
68307
+ markdownQuoteTextColor: string;
68308
+ markdownDividerColorOwn: string;
68309
+ markdownDividerColorOther: string;
68310
+ markdownH1FontSize: string;
68311
+ markdownH2FontSize: string;
68312
+ markdownH3FontSize: string;
68313
+ markdownTextFontSize: string;
67488
68314
  }, {
67489
68315
  StatusIcon: import("./_mixins").Theme<"Icon", {
67490
68316
  color: string;
@@ -67925,7 +68751,7 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
67925
68751
  } | undefined;
67926
68752
  } | undefined;
67927
68753
  };
67928
- }, {
68754
+ }> | import("vue").Ref<{
67929
68755
  common: import("./config-provider").ThemeCommonVars;
67930
68756
  self: {
67931
68757
  backgroundColor: string;
@@ -67958,6 +68784,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
67958
68784
  inputSuffixColor: string;
67959
68785
  unreadNotificationBackgroundColor: string;
67960
68786
  unreadNotificationTextColor: string;
68787
+ markdownQuoteBorderColorOwn: string;
68788
+ markdownQuoteBorderColorOther: string;
68789
+ markdownQuoteTextColor: string;
68790
+ markdownDividerColorOwn: string;
68791
+ markdownDividerColorOther: string;
67961
68792
  typingIndicatorColor: string;
67962
68793
  dateSeparatorColor: string;
67963
68794
  dateSeparatorBackgroundColor: string;
@@ -68732,6 +69563,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
68732
69563
  serviceMessageTextColor: string;
68733
69564
  serviceMessageBackgroundColor: string;
68734
69565
  messageTitleColor: string;
69566
+ markdownQuoteBorderColorOwn: string;
69567
+ markdownQuoteBorderColorOther: string;
69568
+ markdownQuoteTextColor: string;
69569
+ markdownDividerColorOwn: string;
69570
+ markdownDividerColorOther: string;
69571
+ markdownH1FontSize: string;
69572
+ markdownH2FontSize: string;
69573
+ markdownH3FontSize: string;
69574
+ markdownTextFontSize: string;
68735
69575
  }, {
68736
69576
  StatusIcon: import("./_mixins").Theme<"Icon", {
68737
69577
  color: string;
@@ -69172,7 +70012,7 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
69172
70012
  } | undefined;
69173
70013
  } | undefined;
69174
70014
  };
69175
- }> | import("vue").ComputedRef<{
70015
+ }, {
69176
70016
  common: import("./config-provider").ThemeCommonVars;
69177
70017
  self: {
69178
70018
  backgroundColor: string;
@@ -69205,6 +70045,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
69205
70045
  inputSuffixColor: string;
69206
70046
  unreadNotificationBackgroundColor: string;
69207
70047
  unreadNotificationTextColor: string;
70048
+ markdownQuoteBorderColorOwn: string;
70049
+ markdownQuoteBorderColorOther: string;
70050
+ markdownQuoteTextColor: string;
70051
+ markdownDividerColorOwn: string;
70052
+ markdownDividerColorOther: string;
69208
70053
  typingIndicatorColor: string;
69209
70054
  dateSeparatorColor: string;
69210
70055
  dateSeparatorBackgroundColor: string;
@@ -69979,6 +70824,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
69979
70824
  serviceMessageTextColor: string;
69980
70825
  serviceMessageBackgroundColor: string;
69981
70826
  messageTitleColor: string;
70827
+ markdownQuoteBorderColorOwn: string;
70828
+ markdownQuoteBorderColorOther: string;
70829
+ markdownQuoteTextColor: string;
70830
+ markdownDividerColorOwn: string;
70831
+ markdownDividerColorOther: string;
70832
+ markdownH1FontSize: string;
70833
+ markdownH2FontSize: string;
70834
+ markdownH3FontSize: string;
70835
+ markdownTextFontSize: string;
69982
70836
  }, {
69983
70837
  StatusIcon: import("./_mixins").Theme<"Icon", {
69984
70838
  color: string;
@@ -70457,6 +71311,14 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
70457
71311
  readonly type: StringConstructor;
70458
71312
  readonly default: undefined;
70459
71313
  };
71314
+ readonly markdown: {
71315
+ readonly type: BooleanConstructor;
71316
+ readonly default: true;
71317
+ };
71318
+ readonly markdownOptions: {
71319
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
71320
+ readonly default: undefined;
71321
+ };
70460
71322
  readonly uploadProps: {
70461
71323
  readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
70462
71324
  readonly default: undefined;
@@ -70508,6 +71370,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
70508
71370
  inputSuffixColor: string;
70509
71371
  unreadNotificationBackgroundColor: string;
70510
71372
  unreadNotificationTextColor: string;
71373
+ markdownQuoteBorderColorOwn: string;
71374
+ markdownQuoteBorderColorOther: string;
71375
+ markdownQuoteTextColor: string;
71376
+ markdownDividerColorOwn: string;
71377
+ markdownDividerColorOther: string;
70511
71378
  typingIndicatorColor: string;
70512
71379
  dateSeparatorColor: string;
70513
71380
  dateSeparatorBackgroundColor: string;
@@ -71281,6 +72148,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
71281
72148
  serviceMessageTextColor: string;
71282
72149
  serviceMessageBackgroundColor: string;
71283
72150
  messageTitleColor: string;
72151
+ markdownQuoteBorderColorOwn: string;
72152
+ markdownQuoteBorderColorOther: string;
72153
+ markdownQuoteTextColor: string;
72154
+ markdownDividerColorOwn: string;
72155
+ markdownDividerColorOther: string;
72156
+ markdownH1FontSize: string;
72157
+ markdownH2FontSize: string;
72158
+ markdownH3FontSize: string;
72159
+ markdownTextFontSize: string;
71284
72160
  }, {
71285
72161
  StatusIcon: import("./_mixins").Theme<"Icon", {
71286
72162
  color: string;
@@ -71363,6 +72239,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
71363
72239
  inputSuffixColor: string;
71364
72240
  unreadNotificationBackgroundColor: string;
71365
72241
  unreadNotificationTextColor: string;
72242
+ markdownQuoteBorderColorOwn: string;
72243
+ markdownQuoteBorderColorOther: string;
72244
+ markdownQuoteTextColor: string;
72245
+ markdownDividerColorOwn: string;
72246
+ markdownDividerColorOther: string;
71366
72247
  typingIndicatorColor: string;
71367
72248
  dateSeparatorColor: string;
71368
72249
  dateSeparatorBackgroundColor: string;
@@ -72136,6 +73017,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
72136
73017
  serviceMessageTextColor: string;
72137
73018
  serviceMessageBackgroundColor: string;
72138
73019
  messageTitleColor: string;
73020
+ markdownQuoteBorderColorOwn: string;
73021
+ markdownQuoteBorderColorOther: string;
73022
+ markdownQuoteTextColor: string;
73023
+ markdownDividerColorOwn: string;
73024
+ markdownDividerColorOther: string;
73025
+ markdownH1FontSize: string;
73026
+ markdownH2FontSize: string;
73027
+ markdownH3FontSize: string;
73028
+ markdownTextFontSize: string;
72139
73029
  }, {
72140
73030
  StatusIcon: import("./_mixins").Theme<"Icon", {
72141
73031
  color: string;
@@ -72218,6 +73108,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
72218
73108
  inputSuffixColor: string;
72219
73109
  unreadNotificationBackgroundColor: string;
72220
73110
  unreadNotificationTextColor: string;
73111
+ markdownQuoteBorderColorOwn: string;
73112
+ markdownQuoteBorderColorOther: string;
73113
+ markdownQuoteTextColor: string;
73114
+ markdownDividerColorOwn: string;
73115
+ markdownDividerColorOther: string;
72221
73116
  typingIndicatorColor: string;
72222
73117
  dateSeparatorColor: string;
72223
73118
  dateSeparatorBackgroundColor: string;
@@ -72991,6 +73886,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
72991
73886
  serviceMessageTextColor: string;
72992
73887
  serviceMessageBackgroundColor: string;
72993
73888
  messageTitleColor: string;
73889
+ markdownQuoteBorderColorOwn: string;
73890
+ markdownQuoteBorderColorOther: string;
73891
+ markdownQuoteTextColor: string;
73892
+ markdownDividerColorOwn: string;
73893
+ markdownDividerColorOther: string;
73894
+ markdownH1FontSize: string;
73895
+ markdownH2FontSize: string;
73896
+ markdownH3FontSize: string;
73897
+ markdownTextFontSize: string;
72994
73898
  }, {
72995
73899
  StatusIcon: import("./_mixins").Theme<"Icon", {
72996
73900
  color: string;
@@ -73047,6 +73951,8 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
73047
73951
  readonly typingText: string;
73048
73952
  readonly retryText: string;
73049
73953
  readonly unreadNotificationText: string;
73954
+ readonly markdown: boolean;
73955
+ readonly markdownOptions: import("./message-bubble").MarkdownOptions;
73050
73956
  readonly uploadProps: Partial<import("./upload").UploadProps>;
73051
73957
  readonly selectedChatId: string | number | symbol;
73052
73958
  readonly messages: import("./chat").ChatMessageData[];
@@ -118753,7 +119659,7 @@ export declare const ULayoutSider: import("vue").DefineComponent<import("vue").E
118753
119659
  nativeScrollbar: boolean;
118754
119660
  inverted: boolean;
118755
119661
  collapsedWidth: number;
118756
- showTrigger: boolean | "bar" | "sidebar" | "arrow-circle";
119662
+ showTrigger: boolean | "bar" | "arrow-circle" | "sidebar";
118757
119663
  collapseMode: "width" | "transform";
118758
119664
  defaultCollapsed: boolean;
118759
119665
  showCollapsedContent: boolean;
@@ -128732,6 +129638,14 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128732
129638
  readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleRenderContent>;
128733
129639
  readonly default: undefined;
128734
129640
  };
129641
+ readonly markdown: {
129642
+ readonly type: BooleanConstructor;
129643
+ readonly default: false;
129644
+ };
129645
+ readonly markdownOptions: {
129646
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
129647
+ readonly default: undefined;
129648
+ };
128735
129649
  readonly timestamp: {
128736
129650
  readonly type: import("vue").PropType<string | number | Date | (() => import("vue").VNodeChild)>;
128737
129651
  readonly default: undefined;
@@ -128781,6 +129695,15 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128781
129695
  serviceMessageTextColor: string;
128782
129696
  serviceMessageBackgroundColor: string;
128783
129697
  messageTitleColor: string;
129698
+ markdownQuoteBorderColorOwn: string;
129699
+ markdownQuoteBorderColorOther: string;
129700
+ markdownQuoteTextColor: string;
129701
+ markdownDividerColorOwn: string;
129702
+ markdownDividerColorOther: string;
129703
+ markdownH1FontSize: string;
129704
+ markdownH2FontSize: string;
129705
+ markdownH3FontSize: string;
129706
+ markdownTextFontSize: string;
128784
129707
  }, {
128785
129708
  StatusIcon: import("./_mixins").Theme<"Icon", {
128786
129709
  color: string;
@@ -128808,6 +129731,15 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128808
129731
  serviceMessageTextColor: string;
128809
129732
  serviceMessageBackgroundColor: string;
128810
129733
  messageTitleColor: string;
129734
+ markdownQuoteBorderColorOwn: string;
129735
+ markdownQuoteBorderColorOther: string;
129736
+ markdownQuoteTextColor: string;
129737
+ markdownDividerColorOwn: string;
129738
+ markdownDividerColorOther: string;
129739
+ markdownH1FontSize: string;
129740
+ markdownH2FontSize: string;
129741
+ markdownH3FontSize: string;
129742
+ markdownTextFontSize: string;
128811
129743
  }, {
128812
129744
  StatusIcon: import("./_mixins").Theme<"Icon", {
128813
129745
  color: string;
@@ -128835,6 +129767,15 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128835
129767
  serviceMessageTextColor: string;
128836
129768
  serviceMessageBackgroundColor: string;
128837
129769
  messageTitleColor: string;
129770
+ markdownQuoteBorderColorOwn: string;
129771
+ markdownQuoteBorderColorOther: string;
129772
+ markdownQuoteTextColor: string;
129773
+ markdownDividerColorOwn: string;
129774
+ markdownDividerColorOther: string;
129775
+ markdownH1FontSize: string;
129776
+ markdownH2FontSize: string;
129777
+ markdownH3FontSize: string;
129778
+ markdownTextFontSize: string;
128838
129779
  }, {
128839
129780
  StatusIcon: import("./_mixins").Theme<"Icon", {
128840
129781
  color: string;
@@ -128878,6 +129819,14 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128878
129819
  readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleRenderContent>;
128879
129820
  readonly default: undefined;
128880
129821
  };
129822
+ readonly markdown: {
129823
+ readonly type: BooleanConstructor;
129824
+ readonly default: false;
129825
+ };
129826
+ readonly markdownOptions: {
129827
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
129828
+ readonly default: undefined;
129829
+ };
128881
129830
  readonly timestamp: {
128882
129831
  readonly type: import("vue").PropType<string | number | Date | (() => import("vue").VNodeChild)>;
128883
129832
  readonly default: undefined;
@@ -128927,6 +129876,15 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128927
129876
  serviceMessageTextColor: string;
128928
129877
  serviceMessageBackgroundColor: string;
128929
129878
  messageTitleColor: string;
129879
+ markdownQuoteBorderColorOwn: string;
129880
+ markdownQuoteBorderColorOther: string;
129881
+ markdownQuoteTextColor: string;
129882
+ markdownDividerColorOwn: string;
129883
+ markdownDividerColorOther: string;
129884
+ markdownH1FontSize: string;
129885
+ markdownH2FontSize: string;
129886
+ markdownH3FontSize: string;
129887
+ markdownTextFontSize: string;
128930
129888
  }, {
128931
129889
  StatusIcon: import("./_mixins").Theme<"Icon", {
128932
129890
  color: string;
@@ -128954,6 +129912,15 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128954
129912
  serviceMessageTextColor: string;
128955
129913
  serviceMessageBackgroundColor: string;
128956
129914
  messageTitleColor: string;
129915
+ markdownQuoteBorderColorOwn: string;
129916
+ markdownQuoteBorderColorOther: string;
129917
+ markdownQuoteTextColor: string;
129918
+ markdownDividerColorOwn: string;
129919
+ markdownDividerColorOther: string;
129920
+ markdownH1FontSize: string;
129921
+ markdownH2FontSize: string;
129922
+ markdownH3FontSize: string;
129923
+ markdownTextFontSize: string;
128957
129924
  }, {
128958
129925
  StatusIcon: import("./_mixins").Theme<"Icon", {
128959
129926
  color: string;
@@ -128981,6 +129948,15 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128981
129948
  serviceMessageTextColor: string;
128982
129949
  serviceMessageBackgroundColor: string;
128983
129950
  messageTitleColor: string;
129951
+ markdownQuoteBorderColorOwn: string;
129952
+ markdownQuoteBorderColorOther: string;
129953
+ markdownQuoteTextColor: string;
129954
+ markdownDividerColorOwn: string;
129955
+ markdownDividerColorOther: string;
129956
+ markdownH1FontSize: string;
129957
+ markdownH2FontSize: string;
129958
+ markdownH3FontSize: string;
129959
+ markdownTextFontSize: string;
128984
129960
  }, {
128985
129961
  StatusIcon: import("./_mixins").Theme<"Icon", {
128986
129962
  color: string;
@@ -129002,6 +129978,8 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
129002
129978
  readonly serviceVariant: import("./message-bubble").MessageBubbleServiceVariant;
129003
129979
  readonly id: import("./message-bubble").MessageBubbleId;
129004
129980
  readonly isOwn: boolean;
129981
+ readonly markdown: boolean;
129982
+ readonly markdownOptions: import("./message-bubble").MarkdownOptions;
129005
129983
  readonly timestamp: string | number | Date | (() => import("vue").VNodeChild);
129006
129984
  readonly attachments: import("./message-bubble").MessageBubbleAttachment | import("./message-bubble").MessageBubbleAttachment[];
129007
129985
  readonly uploadProps: Partial<import("./upload").UploadProps>;