@uzum-tech/ui 2.3.5 → 2.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/dist/index.js +5997 -65
  2. package/dist/index.mjs +5997 -65
  3. package/dist/index.prod.js +4 -2
  4. package/dist/index.prod.mjs +4 -2
  5. package/es/_utils/markdown/constants.d.ts +27 -0
  6. package/es/_utils/markdown/constants.mjs +26 -0
  7. package/es/_utils/markdown/create-markdown-renderer.d.ts +3 -0
  8. package/es/_utils/markdown/create-markdown-renderer.mjs +65 -0
  9. package/es/_utils/markdown/index.d.ts +2 -0
  10. package/es/_utils/markdown/index.mjs +1 -0
  11. package/es/_utils/markdown/interface.d.ts +14 -0
  12. package/es/_utils/markdown/interface.mjs +7 -0
  13. package/es/_utils/markdown/render-markdown.d.ts +3 -0
  14. package/es/_utils/markdown/render-markdown.mjs +31 -0
  15. package/es/_utils/markdown/rulers/clamp-heading.d.ts +2 -0
  16. package/es/_utils/markdown/rulers/clamp-heading.mjs +25 -0
  17. package/es/_utils/markdown/rulers/equals-divider.d.ts +2 -0
  18. package/es/_utils/markdown/rulers/equals-divider.mjs +19 -0
  19. package/es/_utils/markdown/rulers/prune-empty-blocks.d.ts +2 -0
  20. package/es/_utils/markdown/rulers/prune-empty-blocks.mjs +31 -0
  21. package/es/_utils/markdown/rulers/strikethrough.d.ts +3 -0
  22. package/es/_utils/markdown/rulers/strikethrough.mjs +38 -0
  23. package/es/_utils/markdown/rulers/strip-html.d.ts +2 -0
  24. package/es/_utils/markdown/rulers/strip-html.mjs +7 -0
  25. package/es/chat/src/Chat.d.ts +639 -23
  26. package/es/chat/src/Chat.mjs +2 -0
  27. package/es/chat/src/ChatListItems.d.ts +220 -4
  28. package/es/chat/src/ChatListItems.mjs +3 -2
  29. package/es/chat/src/ChatMainArea.d.ts +248 -5
  30. package/es/chat/src/ChatMainArea.mjs +27 -13
  31. package/es/chat/src/ChatMessages.d.ts +246 -3
  32. package/es/chat/src/ChatMessages.mjs +22 -2
  33. package/es/chat/src/ChatParts/Sidebar.d.ts +36 -0
  34. package/es/chat/src/interface.d.ts +68 -0
  35. package/es/chat/src/interface.mjs +8 -0
  36. package/es/chat/styles/dark.d.ts +18 -0
  37. package/es/chat/styles/light.d.ts +25 -0
  38. package/es/chat/styles/light.mjs +9 -1
  39. package/es/components.d.ts +1640 -418
  40. package/es/data-table/src/HeaderButton/FilterButton.d.ts +1 -1
  41. package/es/data-table/src/TableParts/Header.mjs +1 -1
  42. package/es/data-table/src/use-sorter.d.ts +2 -5
  43. package/es/data-table/src/use-table-data.d.ts +1 -4
  44. package/es/layout/src/LayoutSider.d.ts +1 -1
  45. package/es/message-bubble/index.d.ts +1 -0
  46. package/es/message-bubble/src/MessageBubble.d.ts +90 -6
  47. package/es/message-bubble/src/MessageBubble.mjs +53 -7
  48. package/es/message-bubble/src/interface.d.ts +42 -0
  49. package/es/message-bubble/src/interface.mjs +8 -0
  50. package/es/message-bubble/src/styles/index.cssr.mjs +35 -1
  51. package/es/message-bubble/styles/dark.d.ts +11 -0
  52. package/es/message-bubble/styles/light.d.ts +22 -0
  53. package/es/message-bubble/styles/light.mjs +14 -1
  54. package/es/version.d.ts +1 -1
  55. package/es/version.mjs +1 -1
  56. package/lib/_utils/markdown/constants.d.ts +27 -0
  57. package/lib/_utils/markdown/constants.js +55 -0
  58. package/lib/_utils/markdown/create-markdown-renderer.d.ts +3 -0
  59. package/lib/_utils/markdown/create-markdown-renderer.js +84 -0
  60. package/lib/_utils/markdown/index.d.ts +2 -0
  61. package/lib/_utils/markdown/index.js +6 -0
  62. package/lib/_utils/markdown/interface.d.ts +14 -0
  63. package/lib/_utils/markdown/interface.js +10 -0
  64. package/lib/_utils/markdown/render-markdown.d.ts +3 -0
  65. package/lib/_utils/markdown/render-markdown.js +38 -0
  66. package/lib/_utils/markdown/rulers/clamp-heading.d.ts +2 -0
  67. package/lib/_utils/markdown/rulers/clamp-heading.js +30 -0
  68. package/lib/_utils/markdown/rulers/equals-divider.d.ts +2 -0
  69. package/lib/_utils/markdown/rulers/equals-divider.js +28 -0
  70. package/lib/_utils/markdown/rulers/prune-empty-blocks.d.ts +2 -0
  71. package/lib/_utils/markdown/rulers/prune-empty-blocks.js +40 -0
  72. package/lib/_utils/markdown/rulers/strikethrough.d.ts +3 -0
  73. package/lib/_utils/markdown/rulers/strikethrough.js +43 -0
  74. package/lib/_utils/markdown/rulers/strip-html.d.ts +2 -0
  75. package/lib/_utils/markdown/rulers/strip-html.js +15 -0
  76. package/lib/chat/src/Chat.d.ts +639 -23
  77. package/lib/chat/src/Chat.js +2 -0
  78. package/lib/chat/src/ChatListItems.d.ts +220 -4
  79. package/lib/chat/src/ChatListItems.js +7 -2
  80. package/lib/chat/src/ChatMainArea.d.ts +248 -5
  81. package/lib/chat/src/ChatMainArea.js +26 -14
  82. package/lib/chat/src/ChatMessages.d.ts +246 -3
  83. package/lib/chat/src/ChatMessages.js +11 -4
  84. package/lib/chat/src/ChatParts/Sidebar.d.ts +36 -0
  85. package/lib/chat/src/interface.d.ts +68 -0
  86. package/lib/chat/src/interface.js +6 -0
  87. package/lib/chat/styles/dark.d.ts +18 -0
  88. package/lib/chat/styles/light.d.ts +25 -0
  89. package/lib/chat/styles/light.js +8 -1
  90. package/lib/components.d.ts +1258 -36
  91. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +1 -1
  92. package/lib/data-table/src/TableParts/Header.js +1 -1
  93. package/lib/data-table/src/use-sorter.d.ts +2 -5
  94. package/lib/data-table/src/use-table-data.d.ts +1 -4
  95. package/lib/layout/src/LayoutSider.d.ts +1 -1
  96. package/lib/message-bubble/index.d.ts +1 -0
  97. package/lib/message-bubble/src/MessageBubble.d.ts +90 -6
  98. package/lib/message-bubble/src/MessageBubble.js +41 -7
  99. package/lib/message-bubble/src/interface.d.ts +42 -0
  100. package/lib/message-bubble/src/interface.js +6 -0
  101. package/lib/message-bubble/src/styles/index.cssr.js +35 -1
  102. package/lib/message-bubble/styles/dark.d.ts +11 -0
  103. package/lib/message-bubble/styles/light.d.ts +22 -0
  104. package/lib/message-bubble/styles/light.js +13 -2
  105. package/lib/version.d.ts +1 -1
  106. package/lib/version.js +1 -1
  107. package/package.json +2 -1
  108. package/web-types.json +29 -1
@@ -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,13 @@ 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
+ markdownQuoteBackgroundColor: string;
13004
+ markdownQuoteMarkerColor: string;
13005
+ markdownDividerColorOwn: string;
13006
+ markdownDividerColorOther: string;
12992
13007
  typingIndicatorColor: string;
12993
13008
  dateSeparatorColor: string;
12994
13009
  dateSeparatorBackgroundColor: string;
@@ -13762,6 +13777,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
13762
13777
  serviceMessageTextColor: string;
13763
13778
  serviceMessageBackgroundColor: string;
13764
13779
  messageTitleColor: string;
13780
+ markdownQuoteBorderColorOwn: string;
13781
+ markdownQuoteBorderColorOther: string;
13782
+ markdownQuoteTextColor: string;
13783
+ markdownQuoteBackgroundColor: string;
13784
+ markdownQuoteMarkerColor: string;
13785
+ markdownDividerColorOwn: string;
13786
+ markdownDividerColorOther: string;
13787
+ markdownH1FontSize: string;
13788
+ markdownH2FontSize: string;
13789
+ markdownH3FontSize: string;
13790
+ markdownTextFontSize: string;
13765
13791
  }, {
13766
13792
  StatusIcon: import("./_mixins").Theme<"Icon", {
13767
13793
  color: string;
@@ -13844,6 +13870,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
13844
13870
  inputSuffixColor: string;
13845
13871
  unreadNotificationBackgroundColor: string;
13846
13872
  unreadNotificationTextColor: string;
13873
+ markdownQuoteBorderColorOwn: string;
13874
+ markdownQuoteBorderColorOther: string;
13875
+ markdownQuoteTextColor: string;
13876
+ markdownQuoteBackgroundColor: string;
13877
+ markdownQuoteMarkerColor: string;
13878
+ markdownDividerColorOwn: string;
13879
+ markdownDividerColorOther: string;
13847
13880
  typingIndicatorColor: string;
13848
13881
  dateSeparatorColor: string;
13849
13882
  dateSeparatorBackgroundColor: string;
@@ -14617,6 +14650,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
14617
14650
  serviceMessageTextColor: string;
14618
14651
  serviceMessageBackgroundColor: string;
14619
14652
  messageTitleColor: string;
14653
+ markdownQuoteBorderColorOwn: string;
14654
+ markdownQuoteBorderColorOther: string;
14655
+ markdownQuoteTextColor: string;
14656
+ markdownQuoteBackgroundColor: string;
14657
+ markdownQuoteMarkerColor: string;
14658
+ markdownDividerColorOwn: string;
14659
+ markdownDividerColorOther: string;
14660
+ markdownH1FontSize: string;
14661
+ markdownH2FontSize: string;
14662
+ markdownH3FontSize: string;
14663
+ markdownTextFontSize: string;
14620
14664
  }, {
14621
14665
  StatusIcon: import("./_mixins").Theme<"Icon", {
14622
14666
  color: string;
@@ -14699,6 +14743,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
14699
14743
  inputSuffixColor: string;
14700
14744
  unreadNotificationBackgroundColor: string;
14701
14745
  unreadNotificationTextColor: string;
14746
+ markdownQuoteBorderColorOwn: string;
14747
+ markdownQuoteBorderColorOther: string;
14748
+ markdownQuoteTextColor: string;
14749
+ markdownQuoteBackgroundColor: string;
14750
+ markdownQuoteMarkerColor: string;
14751
+ markdownDividerColorOwn: string;
14752
+ markdownDividerColorOther: string;
14702
14753
  typingIndicatorColor: string;
14703
14754
  dateSeparatorColor: string;
14704
14755
  dateSeparatorBackgroundColor: string;
@@ -15472,6 +15523,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
15472
15523
  serviceMessageTextColor: string;
15473
15524
  serviceMessageBackgroundColor: string;
15474
15525
  messageTitleColor: string;
15526
+ markdownQuoteBorderColorOwn: string;
15527
+ markdownQuoteBorderColorOther: string;
15528
+ markdownQuoteTextColor: string;
15529
+ markdownQuoteBackgroundColor: string;
15530
+ markdownQuoteMarkerColor: string;
15531
+ markdownDividerColorOwn: string;
15532
+ markdownDividerColorOther: string;
15533
+ markdownH1FontSize: string;
15534
+ markdownH2FontSize: string;
15535
+ markdownH3FontSize: string;
15536
+ markdownTextFontSize: string;
15475
15537
  }, {
15476
15538
  StatusIcon: import("./_mixins").Theme<"Icon", {
15477
15539
  color: string;
@@ -15558,6 +15620,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
15558
15620
  inputSuffixColor: string;
15559
15621
  unreadNotificationBackgroundColor: string;
15560
15622
  unreadNotificationTextColor: string;
15623
+ markdownQuoteBorderColorOwn: string;
15624
+ markdownQuoteBorderColorOther: string;
15625
+ markdownQuoteTextColor: string;
15626
+ markdownQuoteBackgroundColor: string;
15627
+ markdownQuoteMarkerColor: string;
15628
+ markdownDividerColorOwn: string;
15629
+ markdownDividerColorOther: string;
15561
15630
  typingIndicatorColor: string;
15562
15631
  dateSeparatorColor: string;
15563
15632
  dateSeparatorBackgroundColor: string;
@@ -16332,6 +16401,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
16332
16401
  serviceMessageTextColor: string;
16333
16402
  serviceMessageBackgroundColor: string;
16334
16403
  messageTitleColor: string;
16404
+ markdownQuoteBorderColorOwn: string;
16405
+ markdownQuoteBorderColorOther: string;
16406
+ markdownQuoteTextColor: string;
16407
+ markdownQuoteBackgroundColor: string;
16408
+ markdownQuoteMarkerColor: string;
16409
+ markdownDividerColorOwn: string;
16410
+ markdownDividerColorOther: string;
16411
+ markdownH1FontSize: string;
16412
+ markdownH2FontSize: string;
16413
+ markdownH3FontSize: string;
16414
+ markdownTextFontSize: string;
16335
16415
  }, {
16336
16416
  StatusIcon: import("./_mixins").Theme<"Icon", {
16337
16417
  color: string;
@@ -16922,6 +17002,14 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
16922
17002
  readonly type: StringConstructor;
16923
17003
  readonly default: undefined;
16924
17004
  };
17005
+ readonly markdown: {
17006
+ readonly type: BooleanConstructor;
17007
+ readonly default: true;
17008
+ };
17009
+ readonly markdownOptions: {
17010
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
17011
+ readonly default: undefined;
17012
+ };
16925
17013
  readonly bubbleActions: {
16926
17014
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
16927
17015
  readonly default: undefined;
@@ -17001,6 +17089,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
17001
17089
  inputSuffixColor: string;
17002
17090
  unreadNotificationBackgroundColor: string;
17003
17091
  unreadNotificationTextColor: string;
17092
+ markdownQuoteBorderColorOwn: string;
17093
+ markdownQuoteBorderColorOther: string;
17094
+ markdownQuoteTextColor: string;
17095
+ markdownQuoteBackgroundColor: string;
17096
+ markdownQuoteMarkerColor: string;
17097
+ markdownDividerColorOwn: string;
17098
+ markdownDividerColorOther: string;
17004
17099
  typingIndicatorColor: string;
17005
17100
  dateSeparatorColor: string;
17006
17101
  dateSeparatorBackgroundColor: string;
@@ -17774,6 +17869,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
17774
17869
  serviceMessageTextColor: string;
17775
17870
  serviceMessageBackgroundColor: string;
17776
17871
  messageTitleColor: string;
17872
+ markdownQuoteBorderColorOwn: string;
17873
+ markdownQuoteBorderColorOther: string;
17874
+ markdownQuoteTextColor: string;
17875
+ markdownQuoteBackgroundColor: string;
17876
+ markdownQuoteMarkerColor: string;
17877
+ markdownDividerColorOwn: string;
17878
+ markdownDividerColorOther: string;
17879
+ markdownH1FontSize: string;
17880
+ markdownH2FontSize: string;
17881
+ markdownH3FontSize: string;
17882
+ markdownTextFontSize: string;
17777
17883
  }, {
17778
17884
  StatusIcon: import("./_mixins").Theme<"Icon", {
17779
17885
  color: string;
@@ -17856,6 +17962,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
17856
17962
  inputSuffixColor: string;
17857
17963
  unreadNotificationBackgroundColor: string;
17858
17964
  unreadNotificationTextColor: string;
17965
+ markdownQuoteBorderColorOwn: string;
17966
+ markdownQuoteBorderColorOther: string;
17967
+ markdownQuoteTextColor: string;
17968
+ markdownQuoteBackgroundColor: string;
17969
+ markdownQuoteMarkerColor: string;
17970
+ markdownDividerColorOwn: string;
17971
+ markdownDividerColorOther: string;
17859
17972
  typingIndicatorColor: string;
17860
17973
  dateSeparatorColor: string;
17861
17974
  dateSeparatorBackgroundColor: string;
@@ -18629,6 +18742,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
18629
18742
  serviceMessageTextColor: string;
18630
18743
  serviceMessageBackgroundColor: string;
18631
18744
  messageTitleColor: string;
18745
+ markdownQuoteBorderColorOwn: string;
18746
+ markdownQuoteBorderColorOther: string;
18747
+ markdownQuoteTextColor: string;
18748
+ markdownQuoteBackgroundColor: string;
18749
+ markdownQuoteMarkerColor: string;
18750
+ markdownDividerColorOwn: string;
18751
+ markdownDividerColorOther: string;
18752
+ markdownH1FontSize: string;
18753
+ markdownH2FontSize: string;
18754
+ markdownH3FontSize: string;
18755
+ markdownTextFontSize: string;
18632
18756
  }, {
18633
18757
  StatusIcon: import("./_mixins").Theme<"Icon", {
18634
18758
  color: string;
@@ -18711,6 +18835,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
18711
18835
  inputSuffixColor: string;
18712
18836
  unreadNotificationBackgroundColor: string;
18713
18837
  unreadNotificationTextColor: string;
18838
+ markdownQuoteBorderColorOwn: string;
18839
+ markdownQuoteBorderColorOther: string;
18840
+ markdownQuoteTextColor: string;
18841
+ markdownQuoteBackgroundColor: string;
18842
+ markdownQuoteMarkerColor: string;
18843
+ markdownDividerColorOwn: string;
18844
+ markdownDividerColorOther: string;
18714
18845
  typingIndicatorColor: string;
18715
18846
  dateSeparatorColor: string;
18716
18847
  dateSeparatorBackgroundColor: string;
@@ -19484,6 +19615,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
19484
19615
  serviceMessageTextColor: string;
19485
19616
  serviceMessageBackgroundColor: string;
19486
19617
  messageTitleColor: string;
19618
+ markdownQuoteBorderColorOwn: string;
19619
+ markdownQuoteBorderColorOther: string;
19620
+ markdownQuoteTextColor: string;
19621
+ markdownQuoteBackgroundColor: string;
19622
+ markdownQuoteMarkerColor: string;
19623
+ markdownDividerColorOwn: string;
19624
+ markdownDividerColorOther: string;
19625
+ markdownH1FontSize: string;
19626
+ markdownH2FontSize: string;
19627
+ markdownH3FontSize: string;
19628
+ markdownTextFontSize: string;
19487
19629
  }, {
19488
19630
  StatusIcon: import("./_mixins").Theme<"Icon", {
19489
19631
  color: string;
@@ -19537,7 +19679,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
19537
19679
  }>>>;
19538
19680
  }>> & Readonly<{}>, {
19539
19681
  mergedClsPrefix: import("vue").Ref<string, string>;
19540
- mergedTheme: import("vue").Ref<{
19682
+ mergedTheme: import("vue").ComputedRef<{
19541
19683
  common: import("./config-provider").ThemeCommonVars;
19542
19684
  self: {
19543
19685
  backgroundColor: string;
@@ -19570,6 +19712,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
19570
19712
  inputSuffixColor: string;
19571
19713
  unreadNotificationBackgroundColor: string;
19572
19714
  unreadNotificationTextColor: string;
19715
+ markdownQuoteBorderColorOwn: string;
19716
+ markdownQuoteBorderColorOther: string;
19717
+ markdownQuoteTextColor: string;
19718
+ markdownQuoteBackgroundColor: string;
19719
+ markdownQuoteMarkerColor: string;
19720
+ markdownDividerColorOwn: string;
19721
+ markdownDividerColorOther: string;
19573
19722
  typingIndicatorColor: string;
19574
19723
  dateSeparatorColor: string;
19575
19724
  dateSeparatorBackgroundColor: string;
@@ -20344,6 +20493,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
20344
20493
  serviceMessageTextColor: string;
20345
20494
  serviceMessageBackgroundColor: string;
20346
20495
  messageTitleColor: string;
20496
+ markdownQuoteBorderColorOwn: string;
20497
+ markdownQuoteBorderColorOther: string;
20498
+ markdownQuoteTextColor: string;
20499
+ markdownQuoteBackgroundColor: string;
20500
+ markdownQuoteMarkerColor: string;
20501
+ markdownDividerColorOwn: string;
20502
+ markdownDividerColorOther: string;
20503
+ markdownH1FontSize: string;
20504
+ markdownH2FontSize: string;
20505
+ markdownH3FontSize: string;
20506
+ markdownTextFontSize: string;
20347
20507
  }, {
20348
20508
  StatusIcon: import("./_mixins").Theme<"Icon", {
20349
20509
  color: string;
@@ -20784,7 +20944,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
20784
20944
  } | undefined;
20785
20945
  } | undefined;
20786
20946
  };
20787
- }, {
20947
+ }> | import("vue").Ref<{
20788
20948
  common: import("./config-provider").ThemeCommonVars;
20789
20949
  self: {
20790
20950
  backgroundColor: string;
@@ -20817,6 +20977,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
20817
20977
  inputSuffixColor: string;
20818
20978
  unreadNotificationBackgroundColor: string;
20819
20979
  unreadNotificationTextColor: string;
20980
+ markdownQuoteBorderColorOwn: string;
20981
+ markdownQuoteBorderColorOther: string;
20982
+ markdownQuoteTextColor: string;
20983
+ markdownQuoteBackgroundColor: string;
20984
+ markdownQuoteMarkerColor: string;
20985
+ markdownDividerColorOwn: string;
20986
+ markdownDividerColorOther: string;
20820
20987
  typingIndicatorColor: string;
20821
20988
  dateSeparatorColor: string;
20822
20989
  dateSeparatorBackgroundColor: string;
@@ -21591,6 +21758,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
21591
21758
  serviceMessageTextColor: string;
21592
21759
  serviceMessageBackgroundColor: string;
21593
21760
  messageTitleColor: string;
21761
+ markdownQuoteBorderColorOwn: string;
21762
+ markdownQuoteBorderColorOther: string;
21763
+ markdownQuoteTextColor: string;
21764
+ markdownQuoteBackgroundColor: string;
21765
+ markdownQuoteMarkerColor: string;
21766
+ markdownDividerColorOwn: string;
21767
+ markdownDividerColorOther: string;
21768
+ markdownH1FontSize: string;
21769
+ markdownH2FontSize: string;
21770
+ markdownH3FontSize: string;
21771
+ markdownTextFontSize: string;
21594
21772
  }, {
21595
21773
  StatusIcon: import("./_mixins").Theme<"Icon", {
21596
21774
  color: string;
@@ -22031,7 +22209,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
22031
22209
  } | undefined;
22032
22210
  } | undefined;
22033
22211
  };
22034
- }> | import("vue").ComputedRef<{
22212
+ }, {
22035
22213
  common: import("./config-provider").ThemeCommonVars;
22036
22214
  self: {
22037
22215
  backgroundColor: string;
@@ -22064,6 +22242,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
22064
22242
  inputSuffixColor: string;
22065
22243
  unreadNotificationBackgroundColor: string;
22066
22244
  unreadNotificationTextColor: string;
22245
+ markdownQuoteBorderColorOwn: string;
22246
+ markdownQuoteBorderColorOther: string;
22247
+ markdownQuoteTextColor: string;
22248
+ markdownQuoteBackgroundColor: string;
22249
+ markdownQuoteMarkerColor: string;
22250
+ markdownDividerColorOwn: string;
22251
+ markdownDividerColorOther: string;
22067
22252
  typingIndicatorColor: string;
22068
22253
  dateSeparatorColor: string;
22069
22254
  dateSeparatorBackgroundColor: string;
@@ -22838,6 +23023,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
22838
23023
  serviceMessageTextColor: string;
22839
23024
  serviceMessageBackgroundColor: string;
22840
23025
  messageTitleColor: string;
23026
+ markdownQuoteBorderColorOwn: string;
23027
+ markdownQuoteBorderColorOther: string;
23028
+ markdownQuoteTextColor: string;
23029
+ markdownQuoteBackgroundColor: string;
23030
+ markdownQuoteMarkerColor: string;
23031
+ markdownDividerColorOwn: string;
23032
+ markdownDividerColorOther: string;
23033
+ markdownH1FontSize: string;
23034
+ markdownH2FontSize: string;
23035
+ markdownH3FontSize: string;
23036
+ markdownTextFontSize: string;
22841
23037
  }, {
22842
23038
  StatusIcon: import("./_mixins").Theme<"Icon", {
22843
23039
  color: string;
@@ -23307,6 +23503,8 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23307
23503
  readonly shareButtonTooltip: string;
23308
23504
  readonly profileButtonTooltip: string;
23309
23505
  readonly unreadNotificationText: string;
23506
+ readonly markdown: boolean;
23507
+ readonly markdownOptions: import("./message-bubble").MarkdownOptions;
23310
23508
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
23311
23509
  readonly inputValue: string;
23312
23510
  readonly messages: import("./chat").ChatMessageData[];
@@ -23333,11 +23531,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23333
23531
  readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
23334
23532
  readonly onMessagesScrollToTop: () => void;
23335
23533
  readonly onMessagesScrollToBottom: () => void;
23336
- readonly loadingCount: number;
23534
+ readonly 'onUpdate:inputValue': (value: string) => void;
23337
23535
  readonly selectedChat: import("./chat").ChatListItemData;
23536
+ readonly loadingCount: number;
23338
23537
  readonly showAttachButton: boolean;
23339
23538
  readonly onMessageSend: import("./chat").OnMessageSend;
23340
- readonly 'onUpdate:inputValue': (value: string) => void;
23341
23539
  }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
23342
23540
  P: {};
23343
23541
  B: {};
@@ -23454,6 +23652,14 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23454
23652
  readonly type: StringConstructor;
23455
23653
  readonly default: undefined;
23456
23654
  };
23655
+ readonly markdown: {
23656
+ readonly type: BooleanConstructor;
23657
+ readonly default: true;
23658
+ };
23659
+ readonly markdownOptions: {
23660
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
23661
+ readonly default: undefined;
23662
+ };
23457
23663
  readonly bubbleActions: {
23458
23664
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
23459
23665
  readonly default: undefined;
@@ -23533,6 +23739,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23533
23739
  inputSuffixColor: string;
23534
23740
  unreadNotificationBackgroundColor: string;
23535
23741
  unreadNotificationTextColor: string;
23742
+ markdownQuoteBorderColorOwn: string;
23743
+ markdownQuoteBorderColorOther: string;
23744
+ markdownQuoteTextColor: string;
23745
+ markdownQuoteBackgroundColor: string;
23746
+ markdownQuoteMarkerColor: string;
23747
+ markdownDividerColorOwn: string;
23748
+ markdownDividerColorOther: string;
23536
23749
  typingIndicatorColor: string;
23537
23750
  dateSeparatorColor: string;
23538
23751
  dateSeparatorBackgroundColor: string;
@@ -24306,6 +24519,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
24306
24519
  serviceMessageTextColor: string;
24307
24520
  serviceMessageBackgroundColor: string;
24308
24521
  messageTitleColor: string;
24522
+ markdownQuoteBorderColorOwn: string;
24523
+ markdownQuoteBorderColorOther: string;
24524
+ markdownQuoteTextColor: string;
24525
+ markdownQuoteBackgroundColor: string;
24526
+ markdownQuoteMarkerColor: string;
24527
+ markdownDividerColorOwn: string;
24528
+ markdownDividerColorOther: string;
24529
+ markdownH1FontSize: string;
24530
+ markdownH2FontSize: string;
24531
+ markdownH3FontSize: string;
24532
+ markdownTextFontSize: string;
24309
24533
  }, {
24310
24534
  StatusIcon: import("./_mixins").Theme<"Icon", {
24311
24535
  color: string;
@@ -24388,6 +24612,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
24388
24612
  inputSuffixColor: string;
24389
24613
  unreadNotificationBackgroundColor: string;
24390
24614
  unreadNotificationTextColor: string;
24615
+ markdownQuoteBorderColorOwn: string;
24616
+ markdownQuoteBorderColorOther: string;
24617
+ markdownQuoteTextColor: string;
24618
+ markdownQuoteBackgroundColor: string;
24619
+ markdownQuoteMarkerColor: string;
24620
+ markdownDividerColorOwn: string;
24621
+ markdownDividerColorOther: string;
24391
24622
  typingIndicatorColor: string;
24392
24623
  dateSeparatorColor: string;
24393
24624
  dateSeparatorBackgroundColor: string;
@@ -25161,6 +25392,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
25161
25392
  serviceMessageTextColor: string;
25162
25393
  serviceMessageBackgroundColor: string;
25163
25394
  messageTitleColor: string;
25395
+ markdownQuoteBorderColorOwn: string;
25396
+ markdownQuoteBorderColorOther: string;
25397
+ markdownQuoteTextColor: string;
25398
+ markdownQuoteBackgroundColor: string;
25399
+ markdownQuoteMarkerColor: string;
25400
+ markdownDividerColorOwn: string;
25401
+ markdownDividerColorOther: string;
25402
+ markdownH1FontSize: string;
25403
+ markdownH2FontSize: string;
25404
+ markdownH3FontSize: string;
25405
+ markdownTextFontSize: string;
25164
25406
  }, {
25165
25407
  StatusIcon: import("./_mixins").Theme<"Icon", {
25166
25408
  color: string;
@@ -25243,6 +25485,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
25243
25485
  inputSuffixColor: string;
25244
25486
  unreadNotificationBackgroundColor: string;
25245
25487
  unreadNotificationTextColor: string;
25488
+ markdownQuoteBorderColorOwn: string;
25489
+ markdownQuoteBorderColorOther: string;
25490
+ markdownQuoteTextColor: string;
25491
+ markdownQuoteBackgroundColor: string;
25492
+ markdownQuoteMarkerColor: string;
25493
+ markdownDividerColorOwn: string;
25494
+ markdownDividerColorOther: string;
25246
25495
  typingIndicatorColor: string;
25247
25496
  dateSeparatorColor: string;
25248
25497
  dateSeparatorBackgroundColor: string;
@@ -26016,6 +26265,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
26016
26265
  serviceMessageTextColor: string;
26017
26266
  serviceMessageBackgroundColor: string;
26018
26267
  messageTitleColor: string;
26268
+ markdownQuoteBorderColorOwn: string;
26269
+ markdownQuoteBorderColorOther: string;
26270
+ markdownQuoteTextColor: string;
26271
+ markdownQuoteBackgroundColor: string;
26272
+ markdownQuoteMarkerColor: string;
26273
+ markdownDividerColorOwn: string;
26274
+ markdownDividerColorOther: string;
26275
+ markdownH1FontSize: string;
26276
+ markdownH2FontSize: string;
26277
+ markdownH3FontSize: string;
26278
+ markdownTextFontSize: string;
26019
26279
  }, {
26020
26280
  StatusIcon: import("./_mixins").Theme<"Icon", {
26021
26281
  color: string;
@@ -26069,7 +26329,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
26069
26329
  }>>>;
26070
26330
  }>> & Readonly<{}>, {
26071
26331
  mergedClsPrefix: import("vue").Ref<string, string>;
26072
- mergedTheme: import("vue").Ref<{
26332
+ mergedTheme: import("vue").ComputedRef<{
26073
26333
  common: import("./config-provider").ThemeCommonVars;
26074
26334
  self: {
26075
26335
  backgroundColor: string;
@@ -26102,6 +26362,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
26102
26362
  inputSuffixColor: string;
26103
26363
  unreadNotificationBackgroundColor: string;
26104
26364
  unreadNotificationTextColor: string;
26365
+ markdownQuoteBorderColorOwn: string;
26366
+ markdownQuoteBorderColorOther: string;
26367
+ markdownQuoteTextColor: string;
26368
+ markdownQuoteBackgroundColor: string;
26369
+ markdownQuoteMarkerColor: string;
26370
+ markdownDividerColorOwn: string;
26371
+ markdownDividerColorOther: string;
26105
26372
  typingIndicatorColor: string;
26106
26373
  dateSeparatorColor: string;
26107
26374
  dateSeparatorBackgroundColor: string;
@@ -26876,6 +27143,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
26876
27143
  serviceMessageTextColor: string;
26877
27144
  serviceMessageBackgroundColor: string;
26878
27145
  messageTitleColor: string;
27146
+ markdownQuoteBorderColorOwn: string;
27147
+ markdownQuoteBorderColorOther: string;
27148
+ markdownQuoteTextColor: string;
27149
+ markdownQuoteBackgroundColor: string;
27150
+ markdownQuoteMarkerColor: string;
27151
+ markdownDividerColorOwn: string;
27152
+ markdownDividerColorOther: string;
27153
+ markdownH1FontSize: string;
27154
+ markdownH2FontSize: string;
27155
+ markdownH3FontSize: string;
27156
+ markdownTextFontSize: string;
26879
27157
  }, {
26880
27158
  StatusIcon: import("./_mixins").Theme<"Icon", {
26881
27159
  color: string;
@@ -27316,7 +27594,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
27316
27594
  } | undefined;
27317
27595
  } | undefined;
27318
27596
  };
27319
- }, {
27597
+ }> | import("vue").Ref<{
27320
27598
  common: import("./config-provider").ThemeCommonVars;
27321
27599
  self: {
27322
27600
  backgroundColor: string;
@@ -27349,6 +27627,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
27349
27627
  inputSuffixColor: string;
27350
27628
  unreadNotificationBackgroundColor: string;
27351
27629
  unreadNotificationTextColor: string;
27630
+ markdownQuoteBorderColorOwn: string;
27631
+ markdownQuoteBorderColorOther: string;
27632
+ markdownQuoteTextColor: string;
27633
+ markdownQuoteBackgroundColor: string;
27634
+ markdownQuoteMarkerColor: string;
27635
+ markdownDividerColorOwn: string;
27636
+ markdownDividerColorOther: string;
27352
27637
  typingIndicatorColor: string;
27353
27638
  dateSeparatorColor: string;
27354
27639
  dateSeparatorBackgroundColor: string;
@@ -28123,6 +28408,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
28123
28408
  serviceMessageTextColor: string;
28124
28409
  serviceMessageBackgroundColor: string;
28125
28410
  messageTitleColor: string;
28411
+ markdownQuoteBorderColorOwn: string;
28412
+ markdownQuoteBorderColorOther: string;
28413
+ markdownQuoteTextColor: string;
28414
+ markdownQuoteBackgroundColor: string;
28415
+ markdownQuoteMarkerColor: string;
28416
+ markdownDividerColorOwn: string;
28417
+ markdownDividerColorOther: string;
28418
+ markdownH1FontSize: string;
28419
+ markdownH2FontSize: string;
28420
+ markdownH3FontSize: string;
28421
+ markdownTextFontSize: string;
28126
28422
  }, {
28127
28423
  StatusIcon: import("./_mixins").Theme<"Icon", {
28128
28424
  color: string;
@@ -28563,7 +28859,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
28563
28859
  } | undefined;
28564
28860
  } | undefined;
28565
28861
  };
28566
- }> | import("vue").ComputedRef<{
28862
+ }, {
28567
28863
  common: import("./config-provider").ThemeCommonVars;
28568
28864
  self: {
28569
28865
  backgroundColor: string;
@@ -28596,6 +28892,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
28596
28892
  inputSuffixColor: string;
28597
28893
  unreadNotificationBackgroundColor: string;
28598
28894
  unreadNotificationTextColor: string;
28895
+ markdownQuoteBorderColorOwn: string;
28896
+ markdownQuoteBorderColorOther: string;
28897
+ markdownQuoteTextColor: string;
28898
+ markdownQuoteBackgroundColor: string;
28899
+ markdownQuoteMarkerColor: string;
28900
+ markdownDividerColorOwn: string;
28901
+ markdownDividerColorOther: string;
28599
28902
  typingIndicatorColor: string;
28600
28903
  dateSeparatorColor: string;
28601
28904
  dateSeparatorBackgroundColor: string;
@@ -29370,6 +29673,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29370
29673
  serviceMessageTextColor: string;
29371
29674
  serviceMessageBackgroundColor: string;
29372
29675
  messageTitleColor: string;
29676
+ markdownQuoteBorderColorOwn: string;
29677
+ markdownQuoteBorderColorOther: string;
29678
+ markdownQuoteTextColor: string;
29679
+ markdownQuoteBackgroundColor: string;
29680
+ markdownQuoteMarkerColor: string;
29681
+ markdownDividerColorOwn: string;
29682
+ markdownDividerColorOther: string;
29683
+ markdownH1FontSize: string;
29684
+ markdownH2FontSize: string;
29685
+ markdownH3FontSize: string;
29686
+ markdownTextFontSize: string;
29373
29687
  }, {
29374
29688
  StatusIcon: import("./_mixins").Theme<"Icon", {
29375
29689
  color: string;
@@ -29839,6 +30153,8 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29839
30153
  readonly shareButtonTooltip: string;
29840
30154
  readonly profileButtonTooltip: string;
29841
30155
  readonly unreadNotificationText: string;
30156
+ readonly markdown: boolean;
30157
+ readonly markdownOptions: import("./message-bubble").MarkdownOptions;
29842
30158
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
29843
30159
  readonly inputValue: string;
29844
30160
  readonly messages: import("./chat").ChatMessageData[];
@@ -29865,11 +30181,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29865
30181
  readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
29866
30182
  readonly onMessagesScrollToTop: () => void;
29867
30183
  readonly onMessagesScrollToBottom: () => void;
29868
- readonly loadingCount: number;
30184
+ readonly 'onUpdate:inputValue': (value: string) => void;
29869
30185
  readonly selectedChat: import("./chat").ChatListItemData;
30186
+ readonly loadingCount: number;
29870
30187
  readonly showAttachButton: boolean;
29871
30188
  readonly onMessageSend: import("./chat").OnMessageSend;
29872
- readonly 'onUpdate:inputValue': (value: string) => void;
29873
30189
  }> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
29874
30190
  readonly selectedChat: {
29875
30191
  readonly type: import("vue").PropType<import("./chat").ChatListItemData>;
@@ -29979,6 +30295,14 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29979
30295
  readonly type: StringConstructor;
29980
30296
  readonly default: undefined;
29981
30297
  };
30298
+ readonly markdown: {
30299
+ readonly type: BooleanConstructor;
30300
+ readonly default: true;
30301
+ };
30302
+ readonly markdownOptions: {
30303
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
30304
+ readonly default: undefined;
30305
+ };
29982
30306
  readonly bubbleActions: {
29983
30307
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
29984
30308
  readonly default: undefined;
@@ -30058,6 +30382,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
30058
30382
  inputSuffixColor: string;
30059
30383
  unreadNotificationBackgroundColor: string;
30060
30384
  unreadNotificationTextColor: string;
30385
+ markdownQuoteBorderColorOwn: string;
30386
+ markdownQuoteBorderColorOther: string;
30387
+ markdownQuoteTextColor: string;
30388
+ markdownQuoteBackgroundColor: string;
30389
+ markdownQuoteMarkerColor: string;
30390
+ markdownDividerColorOwn: string;
30391
+ markdownDividerColorOther: string;
30061
30392
  typingIndicatorColor: string;
30062
30393
  dateSeparatorColor: string;
30063
30394
  dateSeparatorBackgroundColor: string;
@@ -30831,6 +31162,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
30831
31162
  serviceMessageTextColor: string;
30832
31163
  serviceMessageBackgroundColor: string;
30833
31164
  messageTitleColor: string;
31165
+ markdownQuoteBorderColorOwn: string;
31166
+ markdownQuoteBorderColorOther: string;
31167
+ markdownQuoteTextColor: string;
31168
+ markdownQuoteBackgroundColor: string;
31169
+ markdownQuoteMarkerColor: string;
31170
+ markdownDividerColorOwn: string;
31171
+ markdownDividerColorOther: string;
31172
+ markdownH1FontSize: string;
31173
+ markdownH2FontSize: string;
31174
+ markdownH3FontSize: string;
31175
+ markdownTextFontSize: string;
30834
31176
  }, {
30835
31177
  StatusIcon: import("./_mixins").Theme<"Icon", {
30836
31178
  color: string;
@@ -30913,6 +31255,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
30913
31255
  inputSuffixColor: string;
30914
31256
  unreadNotificationBackgroundColor: string;
30915
31257
  unreadNotificationTextColor: string;
31258
+ markdownQuoteBorderColorOwn: string;
31259
+ markdownQuoteBorderColorOther: string;
31260
+ markdownQuoteTextColor: string;
31261
+ markdownQuoteBackgroundColor: string;
31262
+ markdownQuoteMarkerColor: string;
31263
+ markdownDividerColorOwn: string;
31264
+ markdownDividerColorOther: string;
30916
31265
  typingIndicatorColor: string;
30917
31266
  dateSeparatorColor: string;
30918
31267
  dateSeparatorBackgroundColor: string;
@@ -31686,6 +32035,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
31686
32035
  serviceMessageTextColor: string;
31687
32036
  serviceMessageBackgroundColor: string;
31688
32037
  messageTitleColor: string;
32038
+ markdownQuoteBorderColorOwn: string;
32039
+ markdownQuoteBorderColorOther: string;
32040
+ markdownQuoteTextColor: string;
32041
+ markdownQuoteBackgroundColor: string;
32042
+ markdownQuoteMarkerColor: string;
32043
+ markdownDividerColorOwn: string;
32044
+ markdownDividerColorOther: string;
32045
+ markdownH1FontSize: string;
32046
+ markdownH2FontSize: string;
32047
+ markdownH3FontSize: string;
32048
+ markdownTextFontSize: string;
31689
32049
  }, {
31690
32050
  StatusIcon: import("./_mixins").Theme<"Icon", {
31691
32051
  color: string;
@@ -31768,6 +32128,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
31768
32128
  inputSuffixColor: string;
31769
32129
  unreadNotificationBackgroundColor: string;
31770
32130
  unreadNotificationTextColor: string;
32131
+ markdownQuoteBorderColorOwn: string;
32132
+ markdownQuoteBorderColorOther: string;
32133
+ markdownQuoteTextColor: string;
32134
+ markdownQuoteBackgroundColor: string;
32135
+ markdownQuoteMarkerColor: string;
32136
+ markdownDividerColorOwn: string;
32137
+ markdownDividerColorOther: string;
31771
32138
  typingIndicatorColor: string;
31772
32139
  dateSeparatorColor: string;
31773
32140
  dateSeparatorBackgroundColor: string;
@@ -32541,6 +32908,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
32541
32908
  serviceMessageTextColor: string;
32542
32909
  serviceMessageBackgroundColor: string;
32543
32910
  messageTitleColor: string;
32911
+ markdownQuoteBorderColorOwn: string;
32912
+ markdownQuoteBorderColorOther: string;
32913
+ markdownQuoteTextColor: string;
32914
+ markdownQuoteBackgroundColor: string;
32915
+ markdownQuoteMarkerColor: string;
32916
+ markdownDividerColorOwn: string;
32917
+ markdownDividerColorOther: string;
32918
+ markdownH1FontSize: string;
32919
+ markdownH2FontSize: string;
32920
+ markdownH3FontSize: string;
32921
+ markdownTextFontSize: string;
32544
32922
  }, {
32545
32923
  StatusIcon: import("./_mixins").Theme<"Icon", {
32546
32924
  color: string;
@@ -32594,7 +32972,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
32594
32972
  }>>>;
32595
32973
  }>> & Readonly<{}>, {
32596
32974
  mergedClsPrefix: import("vue").Ref<string, string>;
32597
- mergedTheme: import("vue").Ref<{
32975
+ mergedTheme: import("vue").ComputedRef<{
32598
32976
  common: import("./config-provider").ThemeCommonVars;
32599
32977
  self: {
32600
32978
  backgroundColor: string;
@@ -32627,6 +33005,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
32627
33005
  inputSuffixColor: string;
32628
33006
  unreadNotificationBackgroundColor: string;
32629
33007
  unreadNotificationTextColor: string;
33008
+ markdownQuoteBorderColorOwn: string;
33009
+ markdownQuoteBorderColorOther: string;
33010
+ markdownQuoteTextColor: string;
33011
+ markdownQuoteBackgroundColor: string;
33012
+ markdownQuoteMarkerColor: string;
33013
+ markdownDividerColorOwn: string;
33014
+ markdownDividerColorOther: string;
32630
33015
  typingIndicatorColor: string;
32631
33016
  dateSeparatorColor: string;
32632
33017
  dateSeparatorBackgroundColor: string;
@@ -33401,6 +33786,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
33401
33786
  serviceMessageTextColor: string;
33402
33787
  serviceMessageBackgroundColor: string;
33403
33788
  messageTitleColor: string;
33789
+ markdownQuoteBorderColorOwn: string;
33790
+ markdownQuoteBorderColorOther: string;
33791
+ markdownQuoteTextColor: string;
33792
+ markdownQuoteBackgroundColor: string;
33793
+ markdownQuoteMarkerColor: string;
33794
+ markdownDividerColorOwn: string;
33795
+ markdownDividerColorOther: string;
33796
+ markdownH1FontSize: string;
33797
+ markdownH2FontSize: string;
33798
+ markdownH3FontSize: string;
33799
+ markdownTextFontSize: string;
33404
33800
  }, {
33405
33801
  StatusIcon: import("./_mixins").Theme<"Icon", {
33406
33802
  color: string;
@@ -33841,7 +34237,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
33841
34237
  } | undefined;
33842
34238
  } | undefined;
33843
34239
  };
33844
- }, {
34240
+ }> | import("vue").Ref<{
33845
34241
  common: import("./config-provider").ThemeCommonVars;
33846
34242
  self: {
33847
34243
  backgroundColor: string;
@@ -33874,6 +34270,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
33874
34270
  inputSuffixColor: string;
33875
34271
  unreadNotificationBackgroundColor: string;
33876
34272
  unreadNotificationTextColor: string;
34273
+ markdownQuoteBorderColorOwn: string;
34274
+ markdownQuoteBorderColorOther: string;
34275
+ markdownQuoteTextColor: string;
34276
+ markdownQuoteBackgroundColor: string;
34277
+ markdownQuoteMarkerColor: string;
34278
+ markdownDividerColorOwn: string;
34279
+ markdownDividerColorOther: string;
33877
34280
  typingIndicatorColor: string;
33878
34281
  dateSeparatorColor: string;
33879
34282
  dateSeparatorBackgroundColor: string;
@@ -34648,6 +35051,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
34648
35051
  serviceMessageTextColor: string;
34649
35052
  serviceMessageBackgroundColor: string;
34650
35053
  messageTitleColor: string;
35054
+ markdownQuoteBorderColorOwn: string;
35055
+ markdownQuoteBorderColorOther: string;
35056
+ markdownQuoteTextColor: string;
35057
+ markdownQuoteBackgroundColor: string;
35058
+ markdownQuoteMarkerColor: string;
35059
+ markdownDividerColorOwn: string;
35060
+ markdownDividerColorOther: string;
35061
+ markdownH1FontSize: string;
35062
+ markdownH2FontSize: string;
35063
+ markdownH3FontSize: string;
35064
+ markdownTextFontSize: string;
34651
35065
  }, {
34652
35066
  StatusIcon: import("./_mixins").Theme<"Icon", {
34653
35067
  color: string;
@@ -35088,7 +35502,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
35088
35502
  } | undefined;
35089
35503
  } | undefined;
35090
35504
  };
35091
- }> | import("vue").ComputedRef<{
35505
+ }, {
35092
35506
  common: import("./config-provider").ThemeCommonVars;
35093
35507
  self: {
35094
35508
  backgroundColor: string;
@@ -35121,6 +35535,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
35121
35535
  inputSuffixColor: string;
35122
35536
  unreadNotificationBackgroundColor: string;
35123
35537
  unreadNotificationTextColor: string;
35538
+ markdownQuoteBorderColorOwn: string;
35539
+ markdownQuoteBorderColorOther: string;
35540
+ markdownQuoteTextColor: string;
35541
+ markdownQuoteBackgroundColor: string;
35542
+ markdownQuoteMarkerColor: string;
35543
+ markdownDividerColorOwn: string;
35544
+ markdownDividerColorOther: string;
35124
35545
  typingIndicatorColor: string;
35125
35546
  dateSeparatorColor: string;
35126
35547
  dateSeparatorBackgroundColor: string;
@@ -35895,6 +36316,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
35895
36316
  serviceMessageTextColor: string;
35896
36317
  serviceMessageBackgroundColor: string;
35897
36318
  messageTitleColor: string;
36319
+ markdownQuoteBorderColorOwn: string;
36320
+ markdownQuoteBorderColorOther: string;
36321
+ markdownQuoteTextColor: string;
36322
+ markdownQuoteBackgroundColor: string;
36323
+ markdownQuoteMarkerColor: string;
36324
+ markdownDividerColorOwn: string;
36325
+ markdownDividerColorOther: string;
36326
+ markdownH1FontSize: string;
36327
+ markdownH2FontSize: string;
36328
+ markdownH3FontSize: string;
36329
+ markdownTextFontSize: string;
35898
36330
  }, {
35899
36331
  StatusIcon: import("./_mixins").Theme<"Icon", {
35900
36332
  color: string;
@@ -36364,6 +36796,8 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36364
36796
  readonly shareButtonTooltip: string;
36365
36797
  readonly profileButtonTooltip: string;
36366
36798
  readonly unreadNotificationText: string;
36799
+ readonly markdown: boolean;
36800
+ readonly markdownOptions: import("./message-bubble").MarkdownOptions;
36367
36801
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
36368
36802
  readonly inputValue: string;
36369
36803
  readonly messages: import("./chat").ChatMessageData[];
@@ -36390,11 +36824,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36390
36824
  readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
36391
36825
  readonly onMessagesScrollToTop: () => void;
36392
36826
  readonly onMessagesScrollToBottom: () => void;
36393
- readonly loadingCount: number;
36827
+ readonly 'onUpdate:inputValue': (value: string) => void;
36394
36828
  readonly selectedChat: import("./chat").ChatListItemData;
36829
+ readonly loadingCount: number;
36395
36830
  readonly showAttachButton: boolean;
36396
36831
  readonly onMessageSend: import("./chat").OnMessageSend;
36397
- readonly 'onUpdate:inputValue': (value: string) => void;
36398
36832
  }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
36399
36833
  P: {};
36400
36834
  B: {};
@@ -36511,6 +36945,14 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36511
36945
  readonly type: StringConstructor;
36512
36946
  readonly default: undefined;
36513
36947
  };
36948
+ readonly markdown: {
36949
+ readonly type: BooleanConstructor;
36950
+ readonly default: true;
36951
+ };
36952
+ readonly markdownOptions: {
36953
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
36954
+ readonly default: undefined;
36955
+ };
36514
36956
  readonly bubbleActions: {
36515
36957
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
36516
36958
  readonly default: undefined;
@@ -36590,6 +37032,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36590
37032
  inputSuffixColor: string;
36591
37033
  unreadNotificationBackgroundColor: string;
36592
37034
  unreadNotificationTextColor: string;
37035
+ markdownQuoteBorderColorOwn: string;
37036
+ markdownQuoteBorderColorOther: string;
37037
+ markdownQuoteTextColor: string;
37038
+ markdownQuoteBackgroundColor: string;
37039
+ markdownQuoteMarkerColor: string;
37040
+ markdownDividerColorOwn: string;
37041
+ markdownDividerColorOther: string;
36593
37042
  typingIndicatorColor: string;
36594
37043
  dateSeparatorColor: string;
36595
37044
  dateSeparatorBackgroundColor: string;
@@ -37363,6 +37812,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
37363
37812
  serviceMessageTextColor: string;
37364
37813
  serviceMessageBackgroundColor: string;
37365
37814
  messageTitleColor: string;
37815
+ markdownQuoteBorderColorOwn: string;
37816
+ markdownQuoteBorderColorOther: string;
37817
+ markdownQuoteTextColor: string;
37818
+ markdownQuoteBackgroundColor: string;
37819
+ markdownQuoteMarkerColor: string;
37820
+ markdownDividerColorOwn: string;
37821
+ markdownDividerColorOther: string;
37822
+ markdownH1FontSize: string;
37823
+ markdownH2FontSize: string;
37824
+ markdownH3FontSize: string;
37825
+ markdownTextFontSize: string;
37366
37826
  }, {
37367
37827
  StatusIcon: import("./_mixins").Theme<"Icon", {
37368
37828
  color: string;
@@ -37445,6 +37905,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
37445
37905
  inputSuffixColor: string;
37446
37906
  unreadNotificationBackgroundColor: string;
37447
37907
  unreadNotificationTextColor: string;
37908
+ markdownQuoteBorderColorOwn: string;
37909
+ markdownQuoteBorderColorOther: string;
37910
+ markdownQuoteTextColor: string;
37911
+ markdownQuoteBackgroundColor: string;
37912
+ markdownQuoteMarkerColor: string;
37913
+ markdownDividerColorOwn: string;
37914
+ markdownDividerColorOther: string;
37448
37915
  typingIndicatorColor: string;
37449
37916
  dateSeparatorColor: string;
37450
37917
  dateSeparatorBackgroundColor: string;
@@ -38218,6 +38685,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
38218
38685
  serviceMessageTextColor: string;
38219
38686
  serviceMessageBackgroundColor: string;
38220
38687
  messageTitleColor: string;
38688
+ markdownQuoteBorderColorOwn: string;
38689
+ markdownQuoteBorderColorOther: string;
38690
+ markdownQuoteTextColor: string;
38691
+ markdownQuoteBackgroundColor: string;
38692
+ markdownQuoteMarkerColor: string;
38693
+ markdownDividerColorOwn: string;
38694
+ markdownDividerColorOther: string;
38695
+ markdownH1FontSize: string;
38696
+ markdownH2FontSize: string;
38697
+ markdownH3FontSize: string;
38698
+ markdownTextFontSize: string;
38221
38699
  }, {
38222
38700
  StatusIcon: import("./_mixins").Theme<"Icon", {
38223
38701
  color: string;
@@ -38300,6 +38778,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
38300
38778
  inputSuffixColor: string;
38301
38779
  unreadNotificationBackgroundColor: string;
38302
38780
  unreadNotificationTextColor: string;
38781
+ markdownQuoteBorderColorOwn: string;
38782
+ markdownQuoteBorderColorOther: string;
38783
+ markdownQuoteTextColor: string;
38784
+ markdownQuoteBackgroundColor: string;
38785
+ markdownQuoteMarkerColor: string;
38786
+ markdownDividerColorOwn: string;
38787
+ markdownDividerColorOther: string;
38303
38788
  typingIndicatorColor: string;
38304
38789
  dateSeparatorColor: string;
38305
38790
  dateSeparatorBackgroundColor: string;
@@ -39073,6 +39558,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
39073
39558
  serviceMessageTextColor: string;
39074
39559
  serviceMessageBackgroundColor: string;
39075
39560
  messageTitleColor: string;
39561
+ markdownQuoteBorderColorOwn: string;
39562
+ markdownQuoteBorderColorOther: string;
39563
+ markdownQuoteTextColor: string;
39564
+ markdownQuoteBackgroundColor: string;
39565
+ markdownQuoteMarkerColor: string;
39566
+ markdownDividerColorOwn: string;
39567
+ markdownDividerColorOther: string;
39568
+ markdownH1FontSize: string;
39569
+ markdownH2FontSize: string;
39570
+ markdownH3FontSize: string;
39571
+ markdownTextFontSize: string;
39076
39572
  }, {
39077
39573
  StatusIcon: import("./_mixins").Theme<"Icon", {
39078
39574
  color: string;
@@ -39126,7 +39622,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
39126
39622
  }>>>;
39127
39623
  }>> & Readonly<{}>, {
39128
39624
  mergedClsPrefix: import("vue").Ref<string, string>;
39129
- mergedTheme: import("vue").Ref<{
39625
+ mergedTheme: import("vue").ComputedRef<{
39130
39626
  common: import("./config-provider").ThemeCommonVars;
39131
39627
  self: {
39132
39628
  backgroundColor: string;
@@ -39159,6 +39655,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
39159
39655
  inputSuffixColor: string;
39160
39656
  unreadNotificationBackgroundColor: string;
39161
39657
  unreadNotificationTextColor: string;
39658
+ markdownQuoteBorderColorOwn: string;
39659
+ markdownQuoteBorderColorOther: string;
39660
+ markdownQuoteTextColor: string;
39661
+ markdownQuoteBackgroundColor: string;
39662
+ markdownQuoteMarkerColor: string;
39663
+ markdownDividerColorOwn: string;
39664
+ markdownDividerColorOther: string;
39162
39665
  typingIndicatorColor: string;
39163
39666
  dateSeparatorColor: string;
39164
39667
  dateSeparatorBackgroundColor: string;
@@ -39933,6 +40436,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
39933
40436
  serviceMessageTextColor: string;
39934
40437
  serviceMessageBackgroundColor: string;
39935
40438
  messageTitleColor: string;
40439
+ markdownQuoteBorderColorOwn: string;
40440
+ markdownQuoteBorderColorOther: string;
40441
+ markdownQuoteTextColor: string;
40442
+ markdownQuoteBackgroundColor: string;
40443
+ markdownQuoteMarkerColor: string;
40444
+ markdownDividerColorOwn: string;
40445
+ markdownDividerColorOther: string;
40446
+ markdownH1FontSize: string;
40447
+ markdownH2FontSize: string;
40448
+ markdownH3FontSize: string;
40449
+ markdownTextFontSize: string;
39936
40450
  }, {
39937
40451
  StatusIcon: import("./_mixins").Theme<"Icon", {
39938
40452
  color: string;
@@ -40373,7 +40887,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
40373
40887
  } | undefined;
40374
40888
  } | undefined;
40375
40889
  };
40376
- }, {
40890
+ }> | import("vue").Ref<{
40377
40891
  common: import("./config-provider").ThemeCommonVars;
40378
40892
  self: {
40379
40893
  backgroundColor: string;
@@ -40406,6 +40920,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
40406
40920
  inputSuffixColor: string;
40407
40921
  unreadNotificationBackgroundColor: string;
40408
40922
  unreadNotificationTextColor: string;
40923
+ markdownQuoteBorderColorOwn: string;
40924
+ markdownQuoteBorderColorOther: string;
40925
+ markdownQuoteTextColor: string;
40926
+ markdownQuoteBackgroundColor: string;
40927
+ markdownQuoteMarkerColor: string;
40928
+ markdownDividerColorOwn: string;
40929
+ markdownDividerColorOther: string;
40409
40930
  typingIndicatorColor: string;
40410
40931
  dateSeparatorColor: string;
40411
40932
  dateSeparatorBackgroundColor: string;
@@ -41180,6 +41701,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
41180
41701
  serviceMessageTextColor: string;
41181
41702
  serviceMessageBackgroundColor: string;
41182
41703
  messageTitleColor: string;
41704
+ markdownQuoteBorderColorOwn: string;
41705
+ markdownQuoteBorderColorOther: string;
41706
+ markdownQuoteTextColor: string;
41707
+ markdownQuoteBackgroundColor: string;
41708
+ markdownQuoteMarkerColor: string;
41709
+ markdownDividerColorOwn: string;
41710
+ markdownDividerColorOther: string;
41711
+ markdownH1FontSize: string;
41712
+ markdownH2FontSize: string;
41713
+ markdownH3FontSize: string;
41714
+ markdownTextFontSize: string;
41183
41715
  }, {
41184
41716
  StatusIcon: import("./_mixins").Theme<"Icon", {
41185
41717
  color: string;
@@ -41620,7 +42152,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
41620
42152
  } | undefined;
41621
42153
  } | undefined;
41622
42154
  };
41623
- }> | import("vue").ComputedRef<{
42155
+ }, {
41624
42156
  common: import("./config-provider").ThemeCommonVars;
41625
42157
  self: {
41626
42158
  backgroundColor: string;
@@ -41653,6 +42185,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
41653
42185
  inputSuffixColor: string;
41654
42186
  unreadNotificationBackgroundColor: string;
41655
42187
  unreadNotificationTextColor: string;
42188
+ markdownQuoteBorderColorOwn: string;
42189
+ markdownQuoteBorderColorOther: string;
42190
+ markdownQuoteTextColor: string;
42191
+ markdownQuoteBackgroundColor: string;
42192
+ markdownQuoteMarkerColor: string;
42193
+ markdownDividerColorOwn: string;
42194
+ markdownDividerColorOther: string;
41656
42195
  typingIndicatorColor: string;
41657
42196
  dateSeparatorColor: string;
41658
42197
  dateSeparatorBackgroundColor: string;
@@ -42427,6 +42966,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
42427
42966
  serviceMessageTextColor: string;
42428
42967
  serviceMessageBackgroundColor: string;
42429
42968
  messageTitleColor: string;
42969
+ markdownQuoteBorderColorOwn: string;
42970
+ markdownQuoteBorderColorOther: string;
42971
+ markdownQuoteTextColor: string;
42972
+ markdownQuoteBackgroundColor: string;
42973
+ markdownQuoteMarkerColor: string;
42974
+ markdownDividerColorOwn: string;
42975
+ markdownDividerColorOther: string;
42976
+ markdownH1FontSize: string;
42977
+ markdownH2FontSize: string;
42978
+ markdownH3FontSize: string;
42979
+ markdownTextFontSize: string;
42430
42980
  }, {
42431
42981
  StatusIcon: import("./_mixins").Theme<"Icon", {
42432
42982
  color: string;
@@ -42896,6 +43446,8 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
42896
43446
  readonly shareButtonTooltip: string;
42897
43447
  readonly profileButtonTooltip: string;
42898
43448
  readonly unreadNotificationText: string;
43449
+ readonly markdown: boolean;
43450
+ readonly markdownOptions: import("./message-bubble").MarkdownOptions;
42899
43451
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
42900
43452
  readonly inputValue: string;
42901
43453
  readonly messages: import("./chat").ChatMessageData[];
@@ -42922,13 +43474,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
42922
43474
  readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
42923
43475
  readonly onMessagesScrollToTop: () => void;
42924
43476
  readonly onMessagesScrollToBottom: () => void;
42925
- readonly loadingCount: number;
43477
+ readonly 'onUpdate:inputValue': (value: string) => void;
42926
43478
  readonly selectedChat: import("./chat").ChatListItemData;
43479
+ readonly loadingCount: number;
42927
43480
  readonly showAttachButton: boolean;
42928
43481
  readonly onMessageSend: import("./chat").OnMessageSend;
42929
- readonly 'onUpdate:inputValue': (value: string) => void;
42930
43482
  }> | 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<{
43483
+ }, {}, {}, {}, 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
43484
  chatItems: {
42933
43485
  type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["chatItems"]>;
42934
43486
  default: () => never[];
@@ -43081,6 +43633,14 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
43081
43633
  type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["unreadNotificationText"]>;
43082
43634
  default: undefined;
43083
43635
  };
43636
+ markdown: {
43637
+ type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["markdown"]>;
43638
+ default: boolean;
43639
+ };
43640
+ markdownOptions: {
43641
+ type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["markdownOptions"]>;
43642
+ default: undefined;
43643
+ };
43084
43644
  chatItemsLoading: {
43085
43645
  type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["chatItemsLoading"]>;
43086
43646
  default: boolean;
@@ -43200,6 +43760,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
43200
43760
  inputSuffixColor: string;
43201
43761
  unreadNotificationBackgroundColor: string;
43202
43762
  unreadNotificationTextColor: string;
43763
+ markdownQuoteBorderColorOwn: string;
43764
+ markdownQuoteBorderColorOther: string;
43765
+ markdownQuoteTextColor: string;
43766
+ markdownQuoteBackgroundColor: string;
43767
+ markdownQuoteMarkerColor: string;
43768
+ markdownDividerColorOwn: string;
43769
+ markdownDividerColorOther: string;
43203
43770
  typingIndicatorColor: string;
43204
43771
  dateSeparatorColor: string;
43205
43772
  dateSeparatorBackgroundColor: string;
@@ -43973,6 +44540,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
43973
44540
  serviceMessageTextColor: string;
43974
44541
  serviceMessageBackgroundColor: string;
43975
44542
  messageTitleColor: string;
44543
+ markdownQuoteBorderColorOwn: string;
44544
+ markdownQuoteBorderColorOther: string;
44545
+ markdownQuoteTextColor: string;
44546
+ markdownQuoteBackgroundColor: string;
44547
+ markdownQuoteMarkerColor: string;
44548
+ markdownDividerColorOwn: string;
44549
+ markdownDividerColorOther: string;
44550
+ markdownH1FontSize: string;
44551
+ markdownH2FontSize: string;
44552
+ markdownH3FontSize: string;
44553
+ markdownTextFontSize: string;
43976
44554
  }, {
43977
44555
  StatusIcon: import("./_mixins").Theme<"Icon", {
43978
44556
  color: string;
@@ -44055,6 +44633,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
44055
44633
  inputSuffixColor: string;
44056
44634
  unreadNotificationBackgroundColor: string;
44057
44635
  unreadNotificationTextColor: string;
44636
+ markdownQuoteBorderColorOwn: string;
44637
+ markdownQuoteBorderColorOther: string;
44638
+ markdownQuoteTextColor: string;
44639
+ markdownQuoteBackgroundColor: string;
44640
+ markdownQuoteMarkerColor: string;
44641
+ markdownDividerColorOwn: string;
44642
+ markdownDividerColorOther: string;
44058
44643
  typingIndicatorColor: string;
44059
44644
  dateSeparatorColor: string;
44060
44645
  dateSeparatorBackgroundColor: string;
@@ -44828,6 +45413,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
44828
45413
  serviceMessageTextColor: string;
44829
45414
  serviceMessageBackgroundColor: string;
44830
45415
  messageTitleColor: string;
45416
+ markdownQuoteBorderColorOwn: string;
45417
+ markdownQuoteBorderColorOther: string;
45418
+ markdownQuoteTextColor: string;
45419
+ markdownQuoteBackgroundColor: string;
45420
+ markdownQuoteMarkerColor: string;
45421
+ markdownDividerColorOwn: string;
45422
+ markdownDividerColorOther: string;
45423
+ markdownH1FontSize: string;
45424
+ markdownH2FontSize: string;
45425
+ markdownH3FontSize: string;
45426
+ markdownTextFontSize: string;
44831
45427
  }, {
44832
45428
  StatusIcon: import("./_mixins").Theme<"Icon", {
44833
45429
  color: string;
@@ -44910,6 +45506,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
44910
45506
  inputSuffixColor: string;
44911
45507
  unreadNotificationBackgroundColor: string;
44912
45508
  unreadNotificationTextColor: string;
45509
+ markdownQuoteBorderColorOwn: string;
45510
+ markdownQuoteBorderColorOther: string;
45511
+ markdownQuoteTextColor: string;
45512
+ markdownQuoteBackgroundColor: string;
45513
+ markdownQuoteMarkerColor: string;
45514
+ markdownDividerColorOwn: string;
45515
+ markdownDividerColorOther: string;
44913
45516
  typingIndicatorColor: string;
44914
45517
  dateSeparatorColor: string;
44915
45518
  dateSeparatorBackgroundColor: string;
@@ -45683,6 +46286,17 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
45683
46286
  serviceMessageTextColor: string;
45684
46287
  serviceMessageBackgroundColor: string;
45685
46288
  messageTitleColor: string;
46289
+ markdownQuoteBorderColorOwn: string;
46290
+ markdownQuoteBorderColorOther: string;
46291
+ markdownQuoteTextColor: string;
46292
+ markdownQuoteBackgroundColor: string;
46293
+ markdownQuoteMarkerColor: string;
46294
+ markdownDividerColorOwn: string;
46295
+ markdownDividerColorOther: string;
46296
+ markdownH1FontSize: string;
46297
+ markdownH2FontSize: string;
46298
+ markdownH3FontSize: string;
46299
+ markdownTextFontSize: string;
45686
46300
  }, {
45687
46301
  StatusIcon: import("./_mixins").Theme<"Icon", {
45688
46302
  color: string;
@@ -45735,10 +46349,10 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
45735
46349
  }, any>;
45736
46350
  }>>>;
45737
46351
  }>> & Readonly<{
45738
- "onUpdate:inputValue"?: ((...args: any[]) => any) | undefined;
45739
- "onMessage-retry"?: ((...args: any[]) => any) | undefined;
45740
46352
  "onUpdate:selectedChatId"?: ((...args: any[]) => any) | undefined;
46353
+ "onUpdate:inputValue"?: ((...args: any[]) => any) | undefined;
45741
46354
  "onMessage-send"?: ((...args: any[]) => any) | undefined;
46355
+ "onMessage-retry"?: ((...args: any[]) => any) | undefined;
45742
46356
  "onAttachment-upload"?: ((...args: any[]) => any) | undefined;
45743
46357
  "onMark-messages-read"?: ((...args: any[]) => any) | undefined;
45744
46358
  "onFilter-change"?: ((...args: any[]) => any) | undefined;
@@ -45760,6 +46374,8 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
45760
46374
  height: string | number;
45761
46375
  disabled: boolean | undefined;
45762
46376
  emptyProps: Partial<Partial<import("./empty").EmptyProps> | undefined>;
46377
+ markdown: boolean | undefined;
46378
+ markdownOptions: import("./message-bubble").MarkdownOptions | undefined;
45763
46379
  onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload | undefined;
45764
46380
  chatItems: import("./chat").ChatListItemData[] | undefined;
45765
46381
  selectedChatId: import("./chat").ChatId | undefined;
@@ -45888,6 +46504,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
45888
46504
  inputSuffixColor: string;
45889
46505
  unreadNotificationBackgroundColor: string;
45890
46506
  unreadNotificationTextColor: string;
46507
+ markdownQuoteBorderColorOwn: string;
46508
+ markdownQuoteBorderColorOther: string;
46509
+ markdownQuoteTextColor: string;
46510
+ markdownQuoteBackgroundColor: string;
46511
+ markdownQuoteMarkerColor: string;
46512
+ markdownDividerColorOwn: string;
46513
+ markdownDividerColorOther: string;
45891
46514
  typingIndicatorColor: string;
45892
46515
  dateSeparatorColor: string;
45893
46516
  dateSeparatorBackgroundColor: string;
@@ -46661,6 +47284,17 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
46661
47284
  serviceMessageTextColor: string;
46662
47285
  serviceMessageBackgroundColor: string;
46663
47286
  messageTitleColor: string;
47287
+ markdownQuoteBorderColorOwn: string;
47288
+ markdownQuoteBorderColorOther: string;
47289
+ markdownQuoteTextColor: string;
47290
+ markdownQuoteBackgroundColor: string;
47291
+ markdownQuoteMarkerColor: string;
47292
+ markdownDividerColorOwn: string;
47293
+ markdownDividerColorOther: string;
47294
+ markdownH1FontSize: string;
47295
+ markdownH2FontSize: string;
47296
+ markdownH3FontSize: string;
47297
+ markdownTextFontSize: string;
46664
47298
  }, {
46665
47299
  StatusIcon: import("./_mixins").Theme<"Icon", {
46666
47300
  color: string;
@@ -46743,6 +47377,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
46743
47377
  inputSuffixColor: string;
46744
47378
  unreadNotificationBackgroundColor: string;
46745
47379
  unreadNotificationTextColor: string;
47380
+ markdownQuoteBorderColorOwn: string;
47381
+ markdownQuoteBorderColorOther: string;
47382
+ markdownQuoteTextColor: string;
47383
+ markdownQuoteBackgroundColor: string;
47384
+ markdownQuoteMarkerColor: string;
47385
+ markdownDividerColorOwn: string;
47386
+ markdownDividerColorOther: string;
46746
47387
  typingIndicatorColor: string;
46747
47388
  dateSeparatorColor: string;
46748
47389
  dateSeparatorBackgroundColor: string;
@@ -47516,6 +48157,17 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
47516
48157
  serviceMessageTextColor: string;
47517
48158
  serviceMessageBackgroundColor: string;
47518
48159
  messageTitleColor: string;
48160
+ markdownQuoteBorderColorOwn: string;
48161
+ markdownQuoteBorderColorOther: string;
48162
+ markdownQuoteTextColor: string;
48163
+ markdownQuoteBackgroundColor: string;
48164
+ markdownQuoteMarkerColor: string;
48165
+ markdownDividerColorOwn: string;
48166
+ markdownDividerColorOther: string;
48167
+ markdownH1FontSize: string;
48168
+ markdownH2FontSize: string;
48169
+ markdownH3FontSize: string;
48170
+ markdownTextFontSize: string;
47519
48171
  }, {
47520
48172
  StatusIcon: import("./_mixins").Theme<"Icon", {
47521
48173
  color: string;
@@ -47598,6 +48250,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
47598
48250
  inputSuffixColor: string;
47599
48251
  unreadNotificationBackgroundColor: string;
47600
48252
  unreadNotificationTextColor: string;
48253
+ markdownQuoteBorderColorOwn: string;
48254
+ markdownQuoteBorderColorOther: string;
48255
+ markdownQuoteTextColor: string;
48256
+ markdownQuoteBackgroundColor: string;
48257
+ markdownQuoteMarkerColor: string;
48258
+ markdownDividerColorOwn: string;
48259
+ markdownDividerColorOther: string;
47601
48260
  typingIndicatorColor: string;
47602
48261
  dateSeparatorColor: string;
47603
48262
  dateSeparatorBackgroundColor: string;
@@ -48371,6 +49030,17 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
48371
49030
  serviceMessageTextColor: string;
48372
49031
  serviceMessageBackgroundColor: string;
48373
49032
  messageTitleColor: string;
49033
+ markdownQuoteBorderColorOwn: string;
49034
+ markdownQuoteBorderColorOther: string;
49035
+ markdownQuoteTextColor: string;
49036
+ markdownQuoteBackgroundColor: string;
49037
+ markdownQuoteMarkerColor: string;
49038
+ markdownDividerColorOwn: string;
49039
+ markdownDividerColorOther: string;
49040
+ markdownH1FontSize: string;
49041
+ markdownH2FontSize: string;
49042
+ markdownH3FontSize: string;
49043
+ markdownTextFontSize: string;
48374
49044
  }, {
48375
49045
  StatusIcon: import("./_mixins").Theme<"Icon", {
48376
49046
  color: string;
@@ -48424,7 +49094,7 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
48424
49094
  }>>>;
48425
49095
  }>, {
48426
49096
  mergedClsPrefixRef: import("vue").Ref<string, string>;
48427
- mergedTheme: import("vue").Ref<{
49097
+ mergedTheme: import("vue").ComputedRef<{
48428
49098
  common: import("./config-provider").ThemeCommonVars;
48429
49099
  self: {
48430
49100
  backgroundColor: string;
@@ -48457,6 +49127,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
48457
49127
  inputSuffixColor: string;
48458
49128
  unreadNotificationBackgroundColor: string;
48459
49129
  unreadNotificationTextColor: string;
49130
+ markdownQuoteBorderColorOwn: string;
49131
+ markdownQuoteBorderColorOther: string;
49132
+ markdownQuoteTextColor: string;
49133
+ markdownQuoteBackgroundColor: string;
49134
+ markdownQuoteMarkerColor: string;
49135
+ markdownDividerColorOwn: string;
49136
+ markdownDividerColorOther: string;
48460
49137
  typingIndicatorColor: string;
48461
49138
  dateSeparatorColor: string;
48462
49139
  dateSeparatorBackgroundColor: string;
@@ -49231,6 +49908,17 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
49231
49908
  serviceMessageTextColor: string;
49232
49909
  serviceMessageBackgroundColor: string;
49233
49910
  messageTitleColor: string;
49911
+ markdownQuoteBorderColorOwn: string;
49912
+ markdownQuoteBorderColorOther: string;
49913
+ markdownQuoteTextColor: string;
49914
+ markdownQuoteBackgroundColor: string;
49915
+ markdownQuoteMarkerColor: string;
49916
+ markdownDividerColorOwn: string;
49917
+ markdownDividerColorOther: string;
49918
+ markdownH1FontSize: string;
49919
+ markdownH2FontSize: string;
49920
+ markdownH3FontSize: string;
49921
+ markdownTextFontSize: string;
49234
49922
  }, {
49235
49923
  StatusIcon: import("./_mixins").Theme<"Icon", {
49236
49924
  color: string;
@@ -49671,7 +50359,7 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
49671
50359
  } | undefined;
49672
50360
  } | undefined;
49673
50361
  };
49674
- }, {
50362
+ }> | import("vue").Ref<{
49675
50363
  common: import("./config-provider").ThemeCommonVars;
49676
50364
  self: {
49677
50365
  backgroundColor: string;
@@ -49704,6 +50392,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
49704
50392
  inputSuffixColor: string;
49705
50393
  unreadNotificationBackgroundColor: string;
49706
50394
  unreadNotificationTextColor: string;
50395
+ markdownQuoteBorderColorOwn: string;
50396
+ markdownQuoteBorderColorOther: string;
50397
+ markdownQuoteTextColor: string;
50398
+ markdownQuoteBackgroundColor: string;
50399
+ markdownQuoteMarkerColor: string;
50400
+ markdownDividerColorOwn: string;
50401
+ markdownDividerColorOther: string;
49707
50402
  typingIndicatorColor: string;
49708
50403
  dateSeparatorColor: string;
49709
50404
  dateSeparatorBackgroundColor: string;
@@ -50478,6 +51173,17 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
50478
51173
  serviceMessageTextColor: string;
50479
51174
  serviceMessageBackgroundColor: string;
50480
51175
  messageTitleColor: string;
51176
+ markdownQuoteBorderColorOwn: string;
51177
+ markdownQuoteBorderColorOther: string;
51178
+ markdownQuoteTextColor: string;
51179
+ markdownQuoteBackgroundColor: string;
51180
+ markdownQuoteMarkerColor: string;
51181
+ markdownDividerColorOwn: string;
51182
+ markdownDividerColorOther: string;
51183
+ markdownH1FontSize: string;
51184
+ markdownH2FontSize: string;
51185
+ markdownH3FontSize: string;
51186
+ markdownTextFontSize: string;
50481
51187
  }, {
50482
51188
  StatusIcon: import("./_mixins").Theme<"Icon", {
50483
51189
  color: string;
@@ -50918,7 +51624,7 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
50918
51624
  } | undefined;
50919
51625
  } | undefined;
50920
51626
  };
50921
- }> | import("vue").ComputedRef<{
51627
+ }, {
50922
51628
  common: import("./config-provider").ThemeCommonVars;
50923
51629
  self: {
50924
51630
  backgroundColor: string;
@@ -50951,6 +51657,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
50951
51657
  inputSuffixColor: string;
50952
51658
  unreadNotificationBackgroundColor: string;
50953
51659
  unreadNotificationTextColor: string;
51660
+ markdownQuoteBorderColorOwn: string;
51661
+ markdownQuoteBorderColorOther: string;
51662
+ markdownQuoteTextColor: string;
51663
+ markdownQuoteBackgroundColor: string;
51664
+ markdownQuoteMarkerColor: string;
51665
+ markdownDividerColorOwn: string;
51666
+ markdownDividerColorOther: string;
50954
51667
  typingIndicatorColor: string;
50955
51668
  dateSeparatorColor: string;
50956
51669
  dateSeparatorBackgroundColor: string;
@@ -51725,6 +52438,17 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
51725
52438
  serviceMessageTextColor: string;
51726
52439
  serviceMessageBackgroundColor: string;
51727
52440
  messageTitleColor: string;
52441
+ markdownQuoteBorderColorOwn: string;
52442
+ markdownQuoteBorderColorOther: string;
52443
+ markdownQuoteTextColor: string;
52444
+ markdownQuoteBackgroundColor: string;
52445
+ markdownQuoteMarkerColor: string;
52446
+ markdownDividerColorOwn: string;
52447
+ markdownDividerColorOther: string;
52448
+ markdownH1FontSize: string;
52449
+ markdownH2FontSize: string;
52450
+ markdownH3FontSize: string;
52451
+ markdownTextFontSize: string;
51728
52452
  }, {
51729
52453
  StatusIcon: import("./_mixins").Theme<"Icon", {
51730
52454
  color: string;
@@ -52267,6 +52991,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
52267
52991
  inputSuffixColor: string;
52268
52992
  unreadNotificationBackgroundColor: string;
52269
52993
  unreadNotificationTextColor: string;
52994
+ markdownQuoteBorderColorOwn: string;
52995
+ markdownQuoteBorderColorOther: string;
52996
+ markdownQuoteTextColor: string;
52997
+ markdownQuoteBackgroundColor: string;
52998
+ markdownQuoteMarkerColor: string;
52999
+ markdownDividerColorOwn: string;
53000
+ markdownDividerColorOther: string;
52270
53001
  typingIndicatorColor: string;
52271
53002
  dateSeparatorColor: string;
52272
53003
  dateSeparatorBackgroundColor: string;
@@ -53040,6 +53771,17 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
53040
53771
  serviceMessageTextColor: string;
53041
53772
  serviceMessageBackgroundColor: string;
53042
53773
  messageTitleColor: string;
53774
+ markdownQuoteBorderColorOwn: string;
53775
+ markdownQuoteBorderColorOther: string;
53776
+ markdownQuoteTextColor: string;
53777
+ markdownQuoteBackgroundColor: string;
53778
+ markdownQuoteMarkerColor: string;
53779
+ markdownDividerColorOwn: string;
53780
+ markdownDividerColorOther: string;
53781
+ markdownH1FontSize: string;
53782
+ markdownH2FontSize: string;
53783
+ markdownH3FontSize: string;
53784
+ markdownTextFontSize: string;
53043
53785
  }, {
53044
53786
  StatusIcon: import("./_mixins").Theme<"Icon", {
53045
53787
  color: string;
@@ -53122,6 +53864,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
53122
53864
  inputSuffixColor: string;
53123
53865
  unreadNotificationBackgroundColor: string;
53124
53866
  unreadNotificationTextColor: string;
53867
+ markdownQuoteBorderColorOwn: string;
53868
+ markdownQuoteBorderColorOther: string;
53869
+ markdownQuoteTextColor: string;
53870
+ markdownQuoteBackgroundColor: string;
53871
+ markdownQuoteMarkerColor: string;
53872
+ markdownDividerColorOwn: string;
53873
+ markdownDividerColorOther: string;
53125
53874
  typingIndicatorColor: string;
53126
53875
  dateSeparatorColor: string;
53127
53876
  dateSeparatorBackgroundColor: string;
@@ -53895,6 +54644,17 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
53895
54644
  serviceMessageTextColor: string;
53896
54645
  serviceMessageBackgroundColor: string;
53897
54646
  messageTitleColor: string;
54647
+ markdownQuoteBorderColorOwn: string;
54648
+ markdownQuoteBorderColorOther: string;
54649
+ markdownQuoteTextColor: string;
54650
+ markdownQuoteBackgroundColor: string;
54651
+ markdownQuoteMarkerColor: string;
54652
+ markdownDividerColorOwn: string;
54653
+ markdownDividerColorOther: string;
54654
+ markdownH1FontSize: string;
54655
+ markdownH2FontSize: string;
54656
+ markdownH3FontSize: string;
54657
+ markdownTextFontSize: string;
53898
54658
  }, {
53899
54659
  StatusIcon: import("./_mixins").Theme<"Icon", {
53900
54660
  color: string;
@@ -53977,6 +54737,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
53977
54737
  inputSuffixColor: string;
53978
54738
  unreadNotificationBackgroundColor: string;
53979
54739
  unreadNotificationTextColor: string;
54740
+ markdownQuoteBorderColorOwn: string;
54741
+ markdownQuoteBorderColorOther: string;
54742
+ markdownQuoteTextColor: string;
54743
+ markdownQuoteBackgroundColor: string;
54744
+ markdownQuoteMarkerColor: string;
54745
+ markdownDividerColorOwn: string;
54746
+ markdownDividerColorOther: string;
53980
54747
  typingIndicatorColor: string;
53981
54748
  dateSeparatorColor: string;
53982
54749
  dateSeparatorBackgroundColor: string;
@@ -54750,6 +55517,17 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
54750
55517
  serviceMessageTextColor: string;
54751
55518
  serviceMessageBackgroundColor: string;
54752
55519
  messageTitleColor: string;
55520
+ markdownQuoteBorderColorOwn: string;
55521
+ markdownQuoteBorderColorOther: string;
55522
+ markdownQuoteTextColor: string;
55523
+ markdownQuoteBackgroundColor: string;
55524
+ markdownQuoteMarkerColor: string;
55525
+ markdownDividerColorOwn: string;
55526
+ markdownDividerColorOther: string;
55527
+ markdownH1FontSize: string;
55528
+ markdownH2FontSize: string;
55529
+ markdownH3FontSize: string;
55530
+ markdownTextFontSize: string;
54753
55531
  }, {
54754
55532
  StatusIcon: import("./_mixins").Theme<"Icon", {
54755
55533
  color: string;
@@ -54809,9 +55587,9 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
54809
55587
  readonly selectedChatId: string | number | symbol;
54810
55588
  readonly onChatSelect: (chatId: string | number | symbol) => void;
54811
55589
  readonly typingChatIds: (string | number | symbol)[];
54812
- readonly loadingCount: number;
54813
55590
  readonly avatarProps: Partial<import("./avatar").AvatarProps>;
54814
55591
  readonly badgeProps: Partial<import("./badge").BadgeProps>;
55592
+ readonly loadingCount: number;
54815
55593
  readonly notificationsShown: Set<string | number | symbol>;
54816
55594
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
54817
55595
  export declare const UChatMainArea: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -54923,6 +55701,14 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
54923
55701
  readonly type: StringConstructor;
54924
55702
  readonly default: undefined;
54925
55703
  };
55704
+ readonly markdown: {
55705
+ readonly type: BooleanConstructor;
55706
+ readonly default: true;
55707
+ };
55708
+ readonly markdownOptions: {
55709
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
55710
+ readonly default: undefined;
55711
+ };
54926
55712
  readonly bubbleActions: {
54927
55713
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
54928
55714
  readonly default: undefined;
@@ -55002,6 +55788,13 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
55002
55788
  inputSuffixColor: string;
55003
55789
  unreadNotificationBackgroundColor: string;
55004
55790
  unreadNotificationTextColor: string;
55791
+ markdownQuoteBorderColorOwn: string;
55792
+ markdownQuoteBorderColorOther: string;
55793
+ markdownQuoteTextColor: string;
55794
+ markdownQuoteBackgroundColor: string;
55795
+ markdownQuoteMarkerColor: string;
55796
+ markdownDividerColorOwn: string;
55797
+ markdownDividerColorOther: string;
55005
55798
  typingIndicatorColor: string;
55006
55799
  dateSeparatorColor: string;
55007
55800
  dateSeparatorBackgroundColor: string;
@@ -55775,6 +56568,17 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
55775
56568
  serviceMessageTextColor: string;
55776
56569
  serviceMessageBackgroundColor: string;
55777
56570
  messageTitleColor: string;
56571
+ markdownQuoteBorderColorOwn: string;
56572
+ markdownQuoteBorderColorOther: string;
56573
+ markdownQuoteTextColor: string;
56574
+ markdownQuoteBackgroundColor: string;
56575
+ markdownQuoteMarkerColor: string;
56576
+ markdownDividerColorOwn: string;
56577
+ markdownDividerColorOther: string;
56578
+ markdownH1FontSize: string;
56579
+ markdownH2FontSize: string;
56580
+ markdownH3FontSize: string;
56581
+ markdownTextFontSize: string;
55778
56582
  }, {
55779
56583
  StatusIcon: import("./_mixins").Theme<"Icon", {
55780
56584
  color: string;
@@ -55857,6 +56661,13 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
55857
56661
  inputSuffixColor: string;
55858
56662
  unreadNotificationBackgroundColor: string;
55859
56663
  unreadNotificationTextColor: string;
56664
+ markdownQuoteBorderColorOwn: string;
56665
+ markdownQuoteBorderColorOther: string;
56666
+ markdownQuoteTextColor: string;
56667
+ markdownQuoteBackgroundColor: string;
56668
+ markdownQuoteMarkerColor: string;
56669
+ markdownDividerColorOwn: string;
56670
+ markdownDividerColorOther: string;
55860
56671
  typingIndicatorColor: string;
55861
56672
  dateSeparatorColor: string;
55862
56673
  dateSeparatorBackgroundColor: string;
@@ -56630,6 +57441,17 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
56630
57441
  serviceMessageTextColor: string;
56631
57442
  serviceMessageBackgroundColor: string;
56632
57443
  messageTitleColor: string;
57444
+ markdownQuoteBorderColorOwn: string;
57445
+ markdownQuoteBorderColorOther: string;
57446
+ markdownQuoteTextColor: string;
57447
+ markdownQuoteBackgroundColor: string;
57448
+ markdownQuoteMarkerColor: string;
57449
+ markdownDividerColorOwn: string;
57450
+ markdownDividerColorOther: string;
57451
+ markdownH1FontSize: string;
57452
+ markdownH2FontSize: string;
57453
+ markdownH3FontSize: string;
57454
+ markdownTextFontSize: string;
56633
57455
  }, {
56634
57456
  StatusIcon: import("./_mixins").Theme<"Icon", {
56635
57457
  color: string;
@@ -56712,6 +57534,13 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
56712
57534
  inputSuffixColor: string;
56713
57535
  unreadNotificationBackgroundColor: string;
56714
57536
  unreadNotificationTextColor: string;
57537
+ markdownQuoteBorderColorOwn: string;
57538
+ markdownQuoteBorderColorOther: string;
57539
+ markdownQuoteTextColor: string;
57540
+ markdownQuoteBackgroundColor: string;
57541
+ markdownQuoteMarkerColor: string;
57542
+ markdownDividerColorOwn: string;
57543
+ markdownDividerColorOther: string;
56715
57544
  typingIndicatorColor: string;
56716
57545
  dateSeparatorColor: string;
56717
57546
  dateSeparatorBackgroundColor: string;
@@ -57485,6 +58314,17 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
57485
58314
  serviceMessageTextColor: string;
57486
58315
  serviceMessageBackgroundColor: string;
57487
58316
  messageTitleColor: string;
58317
+ markdownQuoteBorderColorOwn: string;
58318
+ markdownQuoteBorderColorOther: string;
58319
+ markdownQuoteTextColor: string;
58320
+ markdownQuoteBackgroundColor: string;
58321
+ markdownQuoteMarkerColor: string;
58322
+ markdownDividerColorOwn: string;
58323
+ markdownDividerColorOther: string;
58324
+ markdownH1FontSize: string;
58325
+ markdownH2FontSize: string;
58326
+ markdownH3FontSize: string;
58327
+ markdownTextFontSize: string;
57488
58328
  }, {
57489
58329
  StatusIcon: import("./_mixins").Theme<"Icon", {
57490
58330
  color: string;
@@ -57538,7 +58378,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
57538
58378
  }>>>;
57539
58379
  }>, {
57540
58380
  mergedClsPrefix: import("vue").Ref<string, string>;
57541
- mergedTheme: import("vue").Ref<{
58381
+ mergedTheme: import("vue").ComputedRef<{
57542
58382
  common: import("./config-provider").ThemeCommonVars;
57543
58383
  self: {
57544
58384
  backgroundColor: string;
@@ -57571,6 +58411,13 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
57571
58411
  inputSuffixColor: string;
57572
58412
  unreadNotificationBackgroundColor: string;
57573
58413
  unreadNotificationTextColor: string;
58414
+ markdownQuoteBorderColorOwn: string;
58415
+ markdownQuoteBorderColorOther: string;
58416
+ markdownQuoteTextColor: string;
58417
+ markdownQuoteBackgroundColor: string;
58418
+ markdownQuoteMarkerColor: string;
58419
+ markdownDividerColorOwn: string;
58420
+ markdownDividerColorOther: string;
57574
58421
  typingIndicatorColor: string;
57575
58422
  dateSeparatorColor: string;
57576
58423
  dateSeparatorBackgroundColor: string;
@@ -58345,6 +59192,17 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
58345
59192
  serviceMessageTextColor: string;
58346
59193
  serviceMessageBackgroundColor: string;
58347
59194
  messageTitleColor: string;
59195
+ markdownQuoteBorderColorOwn: string;
59196
+ markdownQuoteBorderColorOther: string;
59197
+ markdownQuoteTextColor: string;
59198
+ markdownQuoteBackgroundColor: string;
59199
+ markdownQuoteMarkerColor: string;
59200
+ markdownDividerColorOwn: string;
59201
+ markdownDividerColorOther: string;
59202
+ markdownH1FontSize: string;
59203
+ markdownH2FontSize: string;
59204
+ markdownH3FontSize: string;
59205
+ markdownTextFontSize: string;
58348
59206
  }, {
58349
59207
  StatusIcon: import("./_mixins").Theme<"Icon", {
58350
59208
  color: string;
@@ -58785,7 +59643,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
58785
59643
  } | undefined;
58786
59644
  } | undefined;
58787
59645
  };
58788
- }, {
59646
+ }> | import("vue").Ref<{
58789
59647
  common: import("./config-provider").ThemeCommonVars;
58790
59648
  self: {
58791
59649
  backgroundColor: string;
@@ -58818,6 +59676,13 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
58818
59676
  inputSuffixColor: string;
58819
59677
  unreadNotificationBackgroundColor: string;
58820
59678
  unreadNotificationTextColor: string;
59679
+ markdownQuoteBorderColorOwn: string;
59680
+ markdownQuoteBorderColorOther: string;
59681
+ markdownQuoteTextColor: string;
59682
+ markdownQuoteBackgroundColor: string;
59683
+ markdownQuoteMarkerColor: string;
59684
+ markdownDividerColorOwn: string;
59685
+ markdownDividerColorOther: string;
58821
59686
  typingIndicatorColor: string;
58822
59687
  dateSeparatorColor: string;
58823
59688
  dateSeparatorBackgroundColor: string;
@@ -59592,6 +60457,17 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
59592
60457
  serviceMessageTextColor: string;
59593
60458
  serviceMessageBackgroundColor: string;
59594
60459
  messageTitleColor: string;
60460
+ markdownQuoteBorderColorOwn: string;
60461
+ markdownQuoteBorderColorOther: string;
60462
+ markdownQuoteTextColor: string;
60463
+ markdownQuoteBackgroundColor: string;
60464
+ markdownQuoteMarkerColor: string;
60465
+ markdownDividerColorOwn: string;
60466
+ markdownDividerColorOther: string;
60467
+ markdownH1FontSize: string;
60468
+ markdownH2FontSize: string;
60469
+ markdownH3FontSize: string;
60470
+ markdownTextFontSize: string;
59595
60471
  }, {
59596
60472
  StatusIcon: import("./_mixins").Theme<"Icon", {
59597
60473
  color: string;
@@ -60032,7 +60908,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
60032
60908
  } | undefined;
60033
60909
  } | undefined;
60034
60910
  };
60035
- }> | import("vue").ComputedRef<{
60911
+ }, {
60036
60912
  common: import("./config-provider").ThemeCommonVars;
60037
60913
  self: {
60038
60914
  backgroundColor: string;
@@ -60065,6 +60941,13 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
60065
60941
  inputSuffixColor: string;
60066
60942
  unreadNotificationBackgroundColor: string;
60067
60943
  unreadNotificationTextColor: string;
60944
+ markdownQuoteBorderColorOwn: string;
60945
+ markdownQuoteBorderColorOther: string;
60946
+ markdownQuoteTextColor: string;
60947
+ markdownQuoteBackgroundColor: string;
60948
+ markdownQuoteMarkerColor: string;
60949
+ markdownDividerColorOwn: string;
60950
+ markdownDividerColorOther: string;
60068
60951
  typingIndicatorColor: string;
60069
60952
  dateSeparatorColor: string;
60070
60953
  dateSeparatorBackgroundColor: string;
@@ -60839,6 +61722,17 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
60839
61722
  serviceMessageTextColor: string;
60840
61723
  serviceMessageBackgroundColor: string;
60841
61724
  messageTitleColor: string;
61725
+ markdownQuoteBorderColorOwn: string;
61726
+ markdownQuoteBorderColorOther: string;
61727
+ markdownQuoteTextColor: string;
61728
+ markdownQuoteBackgroundColor: string;
61729
+ markdownQuoteMarkerColor: string;
61730
+ markdownDividerColorOwn: string;
61731
+ markdownDividerColorOther: string;
61732
+ markdownH1FontSize: string;
61733
+ markdownH2FontSize: string;
61734
+ markdownH3FontSize: string;
61735
+ markdownTextFontSize: string;
60842
61736
  }, {
60843
61737
  StatusIcon: import("./_mixins").Theme<"Icon", {
60844
61738
  color: string;
@@ -61408,6 +62302,14 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
61408
62302
  readonly type: StringConstructor;
61409
62303
  readonly default: undefined;
61410
62304
  };
62305
+ readonly markdown: {
62306
+ readonly type: BooleanConstructor;
62307
+ readonly default: true;
62308
+ };
62309
+ readonly markdownOptions: {
62310
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
62311
+ readonly default: undefined;
62312
+ };
61411
62313
  readonly bubbleActions: {
61412
62314
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
61413
62315
  readonly default: undefined;
@@ -61487,6 +62389,13 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
61487
62389
  inputSuffixColor: string;
61488
62390
  unreadNotificationBackgroundColor: string;
61489
62391
  unreadNotificationTextColor: string;
62392
+ markdownQuoteBorderColorOwn: string;
62393
+ markdownQuoteBorderColorOther: string;
62394
+ markdownQuoteTextColor: string;
62395
+ markdownQuoteBackgroundColor: string;
62396
+ markdownQuoteMarkerColor: string;
62397
+ markdownDividerColorOwn: string;
62398
+ markdownDividerColorOther: string;
61490
62399
  typingIndicatorColor: string;
61491
62400
  dateSeparatorColor: string;
61492
62401
  dateSeparatorBackgroundColor: string;
@@ -62260,6 +63169,17 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
62260
63169
  serviceMessageTextColor: string;
62261
63170
  serviceMessageBackgroundColor: string;
62262
63171
  messageTitleColor: string;
63172
+ markdownQuoteBorderColorOwn: string;
63173
+ markdownQuoteBorderColorOther: string;
63174
+ markdownQuoteTextColor: string;
63175
+ markdownQuoteBackgroundColor: string;
63176
+ markdownQuoteMarkerColor: string;
63177
+ markdownDividerColorOwn: string;
63178
+ markdownDividerColorOther: string;
63179
+ markdownH1FontSize: string;
63180
+ markdownH2FontSize: string;
63181
+ markdownH3FontSize: string;
63182
+ markdownTextFontSize: string;
62263
63183
  }, {
62264
63184
  StatusIcon: import("./_mixins").Theme<"Icon", {
62265
63185
  color: string;
@@ -62342,6 +63262,13 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
62342
63262
  inputSuffixColor: string;
62343
63263
  unreadNotificationBackgroundColor: string;
62344
63264
  unreadNotificationTextColor: string;
63265
+ markdownQuoteBorderColorOwn: string;
63266
+ markdownQuoteBorderColorOther: string;
63267
+ markdownQuoteTextColor: string;
63268
+ markdownQuoteBackgroundColor: string;
63269
+ markdownQuoteMarkerColor: string;
63270
+ markdownDividerColorOwn: string;
63271
+ markdownDividerColorOther: string;
62345
63272
  typingIndicatorColor: string;
62346
63273
  dateSeparatorColor: string;
62347
63274
  dateSeparatorBackgroundColor: string;
@@ -63115,6 +64042,17 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
63115
64042
  serviceMessageTextColor: string;
63116
64043
  serviceMessageBackgroundColor: string;
63117
64044
  messageTitleColor: string;
64045
+ markdownQuoteBorderColorOwn: string;
64046
+ markdownQuoteBorderColorOther: string;
64047
+ markdownQuoteTextColor: string;
64048
+ markdownQuoteBackgroundColor: string;
64049
+ markdownQuoteMarkerColor: string;
64050
+ markdownDividerColorOwn: string;
64051
+ markdownDividerColorOther: string;
64052
+ markdownH1FontSize: string;
64053
+ markdownH2FontSize: string;
64054
+ markdownH3FontSize: string;
64055
+ markdownTextFontSize: string;
63118
64056
  }, {
63119
64057
  StatusIcon: import("./_mixins").Theme<"Icon", {
63120
64058
  color: string;
@@ -63197,6 +64135,13 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
63197
64135
  inputSuffixColor: string;
63198
64136
  unreadNotificationBackgroundColor: string;
63199
64137
  unreadNotificationTextColor: string;
64138
+ markdownQuoteBorderColorOwn: string;
64139
+ markdownQuoteBorderColorOther: string;
64140
+ markdownQuoteTextColor: string;
64141
+ markdownQuoteBackgroundColor: string;
64142
+ markdownQuoteMarkerColor: string;
64143
+ markdownDividerColorOwn: string;
64144
+ markdownDividerColorOther: string;
63200
64145
  typingIndicatorColor: string;
63201
64146
  dateSeparatorColor: string;
63202
64147
  dateSeparatorBackgroundColor: string;
@@ -63970,6 +64915,17 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
63970
64915
  serviceMessageTextColor: string;
63971
64916
  serviceMessageBackgroundColor: string;
63972
64917
  messageTitleColor: string;
64918
+ markdownQuoteBorderColorOwn: string;
64919
+ markdownQuoteBorderColorOther: string;
64920
+ markdownQuoteTextColor: string;
64921
+ markdownQuoteBackgroundColor: string;
64922
+ markdownQuoteMarkerColor: string;
64923
+ markdownDividerColorOwn: string;
64924
+ markdownDividerColorOther: string;
64925
+ markdownH1FontSize: string;
64926
+ markdownH2FontSize: string;
64927
+ markdownH3FontSize: string;
64928
+ markdownTextFontSize: string;
63973
64929
  }, {
63974
64930
  StatusIcon: import("./_mixins").Theme<"Icon", {
63975
64931
  color: string;
@@ -64030,6 +64986,8 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
64030
64986
  readonly shareButtonTooltip: string;
64031
64987
  readonly profileButtonTooltip: string;
64032
64988
  readonly unreadNotificationText: string;
64989
+ readonly markdown: boolean;
64990
+ readonly markdownOptions: import("./message-bubble").MarkdownOptions;
64033
64991
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
64034
64992
  readonly inputValue: string;
64035
64993
  readonly messages: import("./chat").ChatMessageData[];
@@ -64056,11 +65014,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
64056
65014
  readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
64057
65015
  readonly onMessagesScrollToTop: () => void;
64058
65016
  readonly onMessagesScrollToBottom: () => void;
64059
- readonly loadingCount: number;
65017
+ readonly 'onUpdate:inputValue': (value: string) => void;
64060
65018
  readonly selectedChat: import("./chat").ChatListItemData;
65019
+ readonly loadingCount: number;
64061
65020
  readonly showAttachButton: boolean;
64062
65021
  readonly onMessageSend: import("./chat").OnMessageSend;
64063
- readonly 'onUpdate:inputValue': (value: string) => void;
64064
65022
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
64065
65023
  export declare const UChatMessages: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
64066
65024
  readonly messages: {
@@ -64091,6 +65049,14 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
64091
65049
  readonly type: StringConstructor;
64092
65050
  readonly default: undefined;
64093
65051
  };
65052
+ readonly markdown: {
65053
+ readonly type: BooleanConstructor;
65054
+ readonly default: true;
65055
+ };
65056
+ readonly markdownOptions: {
65057
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
65058
+ readonly default: undefined;
65059
+ };
64094
65060
  readonly uploadProps: {
64095
65061
  readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
64096
65062
  readonly default: undefined;
@@ -64142,6 +65108,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
64142
65108
  inputSuffixColor: string;
64143
65109
  unreadNotificationBackgroundColor: string;
64144
65110
  unreadNotificationTextColor: string;
65111
+ markdownQuoteBorderColorOwn: string;
65112
+ markdownQuoteBorderColorOther: string;
65113
+ markdownQuoteTextColor: string;
65114
+ markdownQuoteBackgroundColor: string;
65115
+ markdownQuoteMarkerColor: string;
65116
+ markdownDividerColorOwn: string;
65117
+ markdownDividerColorOther: string;
64145
65118
  typingIndicatorColor: string;
64146
65119
  dateSeparatorColor: string;
64147
65120
  dateSeparatorBackgroundColor: string;
@@ -64915,6 +65888,17 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
64915
65888
  serviceMessageTextColor: string;
64916
65889
  serviceMessageBackgroundColor: string;
64917
65890
  messageTitleColor: string;
65891
+ markdownQuoteBorderColorOwn: string;
65892
+ markdownQuoteBorderColorOther: string;
65893
+ markdownQuoteTextColor: string;
65894
+ markdownQuoteBackgroundColor: string;
65895
+ markdownQuoteMarkerColor: string;
65896
+ markdownDividerColorOwn: string;
65897
+ markdownDividerColorOther: string;
65898
+ markdownH1FontSize: string;
65899
+ markdownH2FontSize: string;
65900
+ markdownH3FontSize: string;
65901
+ markdownTextFontSize: string;
64918
65902
  }, {
64919
65903
  StatusIcon: import("./_mixins").Theme<"Icon", {
64920
65904
  color: string;
@@ -64997,6 +65981,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
64997
65981
  inputSuffixColor: string;
64998
65982
  unreadNotificationBackgroundColor: string;
64999
65983
  unreadNotificationTextColor: string;
65984
+ markdownQuoteBorderColorOwn: string;
65985
+ markdownQuoteBorderColorOther: string;
65986
+ markdownQuoteTextColor: string;
65987
+ markdownQuoteBackgroundColor: string;
65988
+ markdownQuoteMarkerColor: string;
65989
+ markdownDividerColorOwn: string;
65990
+ markdownDividerColorOther: string;
65000
65991
  typingIndicatorColor: string;
65001
65992
  dateSeparatorColor: string;
65002
65993
  dateSeparatorBackgroundColor: string;
@@ -65770,6 +66761,17 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
65770
66761
  serviceMessageTextColor: string;
65771
66762
  serviceMessageBackgroundColor: string;
65772
66763
  messageTitleColor: string;
66764
+ markdownQuoteBorderColorOwn: string;
66765
+ markdownQuoteBorderColorOther: string;
66766
+ markdownQuoteTextColor: string;
66767
+ markdownQuoteBackgroundColor: string;
66768
+ markdownQuoteMarkerColor: string;
66769
+ markdownDividerColorOwn: string;
66770
+ markdownDividerColorOther: string;
66771
+ markdownH1FontSize: string;
66772
+ markdownH2FontSize: string;
66773
+ markdownH3FontSize: string;
66774
+ markdownTextFontSize: string;
65773
66775
  }, {
65774
66776
  StatusIcon: import("./_mixins").Theme<"Icon", {
65775
66777
  color: string;
@@ -65852,6 +66854,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
65852
66854
  inputSuffixColor: string;
65853
66855
  unreadNotificationBackgroundColor: string;
65854
66856
  unreadNotificationTextColor: string;
66857
+ markdownQuoteBorderColorOwn: string;
66858
+ markdownQuoteBorderColorOther: string;
66859
+ markdownQuoteTextColor: string;
66860
+ markdownQuoteBackgroundColor: string;
66861
+ markdownQuoteMarkerColor: string;
66862
+ markdownDividerColorOwn: string;
66863
+ markdownDividerColorOther: string;
65855
66864
  typingIndicatorColor: string;
65856
66865
  dateSeparatorColor: string;
65857
66866
  dateSeparatorBackgroundColor: string;
@@ -66625,6 +67634,17 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
66625
67634
  serviceMessageTextColor: string;
66626
67635
  serviceMessageBackgroundColor: string;
66627
67636
  messageTitleColor: string;
67637
+ markdownQuoteBorderColorOwn: string;
67638
+ markdownQuoteBorderColorOther: string;
67639
+ markdownQuoteTextColor: string;
67640
+ markdownQuoteBackgroundColor: string;
67641
+ markdownQuoteMarkerColor: string;
67642
+ markdownDividerColorOwn: string;
67643
+ markdownDividerColorOther: string;
67644
+ markdownH1FontSize: string;
67645
+ markdownH2FontSize: string;
67646
+ markdownH3FontSize: string;
67647
+ markdownTextFontSize: string;
66628
67648
  }, {
66629
67649
  StatusIcon: import("./_mixins").Theme<"Icon", {
66630
67650
  color: string;
@@ -66678,7 +67698,7 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
66678
67698
  }>>>;
66679
67699
  }>, {
66680
67700
  mergedClsPrefixRef: import("vue").Ref<string, string>;
66681
- mergedTheme: import("vue").Ref<{
67701
+ mergedTheme: import("vue").ComputedRef<{
66682
67702
  common: import("./config-provider").ThemeCommonVars;
66683
67703
  self: {
66684
67704
  backgroundColor: string;
@@ -66711,6 +67731,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
66711
67731
  inputSuffixColor: string;
66712
67732
  unreadNotificationBackgroundColor: string;
66713
67733
  unreadNotificationTextColor: string;
67734
+ markdownQuoteBorderColorOwn: string;
67735
+ markdownQuoteBorderColorOther: string;
67736
+ markdownQuoteTextColor: string;
67737
+ markdownQuoteBackgroundColor: string;
67738
+ markdownQuoteMarkerColor: string;
67739
+ markdownDividerColorOwn: string;
67740
+ markdownDividerColorOther: string;
66714
67741
  typingIndicatorColor: string;
66715
67742
  dateSeparatorColor: string;
66716
67743
  dateSeparatorBackgroundColor: string;
@@ -67485,6 +68512,17 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
67485
68512
  serviceMessageTextColor: string;
67486
68513
  serviceMessageBackgroundColor: string;
67487
68514
  messageTitleColor: string;
68515
+ markdownQuoteBorderColorOwn: string;
68516
+ markdownQuoteBorderColorOther: string;
68517
+ markdownQuoteTextColor: string;
68518
+ markdownQuoteBackgroundColor: string;
68519
+ markdownQuoteMarkerColor: string;
68520
+ markdownDividerColorOwn: string;
68521
+ markdownDividerColorOther: string;
68522
+ markdownH1FontSize: string;
68523
+ markdownH2FontSize: string;
68524
+ markdownH3FontSize: string;
68525
+ markdownTextFontSize: string;
67488
68526
  }, {
67489
68527
  StatusIcon: import("./_mixins").Theme<"Icon", {
67490
68528
  color: string;
@@ -67925,7 +68963,7 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
67925
68963
  } | undefined;
67926
68964
  } | undefined;
67927
68965
  };
67928
- }, {
68966
+ }> | import("vue").Ref<{
67929
68967
  common: import("./config-provider").ThemeCommonVars;
67930
68968
  self: {
67931
68969
  backgroundColor: string;
@@ -67958,6 +68996,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
67958
68996
  inputSuffixColor: string;
67959
68997
  unreadNotificationBackgroundColor: string;
67960
68998
  unreadNotificationTextColor: string;
68999
+ markdownQuoteBorderColorOwn: string;
69000
+ markdownQuoteBorderColorOther: string;
69001
+ markdownQuoteTextColor: string;
69002
+ markdownQuoteBackgroundColor: string;
69003
+ markdownQuoteMarkerColor: string;
69004
+ markdownDividerColorOwn: string;
69005
+ markdownDividerColorOther: string;
67961
69006
  typingIndicatorColor: string;
67962
69007
  dateSeparatorColor: string;
67963
69008
  dateSeparatorBackgroundColor: string;
@@ -68732,6 +69777,17 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
68732
69777
  serviceMessageTextColor: string;
68733
69778
  serviceMessageBackgroundColor: string;
68734
69779
  messageTitleColor: string;
69780
+ markdownQuoteBorderColorOwn: string;
69781
+ markdownQuoteBorderColorOther: string;
69782
+ markdownQuoteTextColor: string;
69783
+ markdownQuoteBackgroundColor: string;
69784
+ markdownQuoteMarkerColor: string;
69785
+ markdownDividerColorOwn: string;
69786
+ markdownDividerColorOther: string;
69787
+ markdownH1FontSize: string;
69788
+ markdownH2FontSize: string;
69789
+ markdownH3FontSize: string;
69790
+ markdownTextFontSize: string;
68735
69791
  }, {
68736
69792
  StatusIcon: import("./_mixins").Theme<"Icon", {
68737
69793
  color: string;
@@ -69172,7 +70228,7 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
69172
70228
  } | undefined;
69173
70229
  } | undefined;
69174
70230
  };
69175
- }> | import("vue").ComputedRef<{
70231
+ }, {
69176
70232
  common: import("./config-provider").ThemeCommonVars;
69177
70233
  self: {
69178
70234
  backgroundColor: string;
@@ -69205,6 +70261,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
69205
70261
  inputSuffixColor: string;
69206
70262
  unreadNotificationBackgroundColor: string;
69207
70263
  unreadNotificationTextColor: string;
70264
+ markdownQuoteBorderColorOwn: string;
70265
+ markdownQuoteBorderColorOther: string;
70266
+ markdownQuoteTextColor: string;
70267
+ markdownQuoteBackgroundColor: string;
70268
+ markdownQuoteMarkerColor: string;
70269
+ markdownDividerColorOwn: string;
70270
+ markdownDividerColorOther: string;
69208
70271
  typingIndicatorColor: string;
69209
70272
  dateSeparatorColor: string;
69210
70273
  dateSeparatorBackgroundColor: string;
@@ -69979,6 +71042,17 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
69979
71042
  serviceMessageTextColor: string;
69980
71043
  serviceMessageBackgroundColor: string;
69981
71044
  messageTitleColor: string;
71045
+ markdownQuoteBorderColorOwn: string;
71046
+ markdownQuoteBorderColorOther: string;
71047
+ markdownQuoteTextColor: string;
71048
+ markdownQuoteBackgroundColor: string;
71049
+ markdownQuoteMarkerColor: string;
71050
+ markdownDividerColorOwn: string;
71051
+ markdownDividerColorOther: string;
71052
+ markdownH1FontSize: string;
71053
+ markdownH2FontSize: string;
71054
+ markdownH3FontSize: string;
71055
+ markdownTextFontSize: string;
69982
71056
  }, {
69983
71057
  StatusIcon: import("./_mixins").Theme<"Icon", {
69984
71058
  color: string;
@@ -70457,6 +71531,14 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
70457
71531
  readonly type: StringConstructor;
70458
71532
  readonly default: undefined;
70459
71533
  };
71534
+ readonly markdown: {
71535
+ readonly type: BooleanConstructor;
71536
+ readonly default: true;
71537
+ };
71538
+ readonly markdownOptions: {
71539
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
71540
+ readonly default: undefined;
71541
+ };
70460
71542
  readonly uploadProps: {
70461
71543
  readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
70462
71544
  readonly default: undefined;
@@ -70508,6 +71590,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
70508
71590
  inputSuffixColor: string;
70509
71591
  unreadNotificationBackgroundColor: string;
70510
71592
  unreadNotificationTextColor: string;
71593
+ markdownQuoteBorderColorOwn: string;
71594
+ markdownQuoteBorderColorOther: string;
71595
+ markdownQuoteTextColor: string;
71596
+ markdownQuoteBackgroundColor: string;
71597
+ markdownQuoteMarkerColor: string;
71598
+ markdownDividerColorOwn: string;
71599
+ markdownDividerColorOther: string;
70511
71600
  typingIndicatorColor: string;
70512
71601
  dateSeparatorColor: string;
70513
71602
  dateSeparatorBackgroundColor: string;
@@ -71281,6 +72370,17 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
71281
72370
  serviceMessageTextColor: string;
71282
72371
  serviceMessageBackgroundColor: string;
71283
72372
  messageTitleColor: string;
72373
+ markdownQuoteBorderColorOwn: string;
72374
+ markdownQuoteBorderColorOther: string;
72375
+ markdownQuoteTextColor: string;
72376
+ markdownQuoteBackgroundColor: string;
72377
+ markdownQuoteMarkerColor: string;
72378
+ markdownDividerColorOwn: string;
72379
+ markdownDividerColorOther: string;
72380
+ markdownH1FontSize: string;
72381
+ markdownH2FontSize: string;
72382
+ markdownH3FontSize: string;
72383
+ markdownTextFontSize: string;
71284
72384
  }, {
71285
72385
  StatusIcon: import("./_mixins").Theme<"Icon", {
71286
72386
  color: string;
@@ -71363,6 +72463,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
71363
72463
  inputSuffixColor: string;
71364
72464
  unreadNotificationBackgroundColor: string;
71365
72465
  unreadNotificationTextColor: string;
72466
+ markdownQuoteBorderColorOwn: string;
72467
+ markdownQuoteBorderColorOther: string;
72468
+ markdownQuoteTextColor: string;
72469
+ markdownQuoteBackgroundColor: string;
72470
+ markdownQuoteMarkerColor: string;
72471
+ markdownDividerColorOwn: string;
72472
+ markdownDividerColorOther: string;
71366
72473
  typingIndicatorColor: string;
71367
72474
  dateSeparatorColor: string;
71368
72475
  dateSeparatorBackgroundColor: string;
@@ -72136,6 +73243,17 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
72136
73243
  serviceMessageTextColor: string;
72137
73244
  serviceMessageBackgroundColor: string;
72138
73245
  messageTitleColor: string;
73246
+ markdownQuoteBorderColorOwn: string;
73247
+ markdownQuoteBorderColorOther: string;
73248
+ markdownQuoteTextColor: string;
73249
+ markdownQuoteBackgroundColor: string;
73250
+ markdownQuoteMarkerColor: string;
73251
+ markdownDividerColorOwn: string;
73252
+ markdownDividerColorOther: string;
73253
+ markdownH1FontSize: string;
73254
+ markdownH2FontSize: string;
73255
+ markdownH3FontSize: string;
73256
+ markdownTextFontSize: string;
72139
73257
  }, {
72140
73258
  StatusIcon: import("./_mixins").Theme<"Icon", {
72141
73259
  color: string;
@@ -72218,6 +73336,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
72218
73336
  inputSuffixColor: string;
72219
73337
  unreadNotificationBackgroundColor: string;
72220
73338
  unreadNotificationTextColor: string;
73339
+ markdownQuoteBorderColorOwn: string;
73340
+ markdownQuoteBorderColorOther: string;
73341
+ markdownQuoteTextColor: string;
73342
+ markdownQuoteBackgroundColor: string;
73343
+ markdownQuoteMarkerColor: string;
73344
+ markdownDividerColorOwn: string;
73345
+ markdownDividerColorOther: string;
72221
73346
  typingIndicatorColor: string;
72222
73347
  dateSeparatorColor: string;
72223
73348
  dateSeparatorBackgroundColor: string;
@@ -72991,6 +74116,17 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
72991
74116
  serviceMessageTextColor: string;
72992
74117
  serviceMessageBackgroundColor: string;
72993
74118
  messageTitleColor: string;
74119
+ markdownQuoteBorderColorOwn: string;
74120
+ markdownQuoteBorderColorOther: string;
74121
+ markdownQuoteTextColor: string;
74122
+ markdownQuoteBackgroundColor: string;
74123
+ markdownQuoteMarkerColor: string;
74124
+ markdownDividerColorOwn: string;
74125
+ markdownDividerColorOther: string;
74126
+ markdownH1FontSize: string;
74127
+ markdownH2FontSize: string;
74128
+ markdownH3FontSize: string;
74129
+ markdownTextFontSize: string;
72994
74130
  }, {
72995
74131
  StatusIcon: import("./_mixins").Theme<"Icon", {
72996
74132
  color: string;
@@ -73047,6 +74183,8 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
73047
74183
  readonly typingText: string;
73048
74184
  readonly retryText: string;
73049
74185
  readonly unreadNotificationText: string;
74186
+ readonly markdown: boolean;
74187
+ readonly markdownOptions: import("./message-bubble").MarkdownOptions;
73050
74188
  readonly uploadProps: Partial<import("./upload").UploadProps>;
73051
74189
  readonly selectedChatId: string | number | symbol;
73052
74190
  readonly messages: import("./chat").ChatMessageData[];
@@ -118753,7 +119891,7 @@ export declare const ULayoutSider: import("vue").DefineComponent<import("vue").E
118753
119891
  nativeScrollbar: boolean;
118754
119892
  inverted: boolean;
118755
119893
  collapsedWidth: number;
118756
- showTrigger: boolean | "bar" | "sidebar" | "arrow-circle";
119894
+ showTrigger: boolean | "bar" | "arrow-circle" | "sidebar";
118757
119895
  collapseMode: "width" | "transform";
118758
119896
  defaultCollapsed: boolean;
118759
119897
  showCollapsedContent: boolean;
@@ -128732,6 +129870,14 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128732
129870
  readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleRenderContent>;
128733
129871
  readonly default: undefined;
128734
129872
  };
129873
+ readonly markdown: {
129874
+ readonly type: BooleanConstructor;
129875
+ readonly default: false;
129876
+ };
129877
+ readonly markdownOptions: {
129878
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
129879
+ readonly default: undefined;
129880
+ };
128735
129881
  readonly timestamp: {
128736
129882
  readonly type: import("vue").PropType<string | number | Date | (() => import("vue").VNodeChild)>;
128737
129883
  readonly default: undefined;
@@ -128781,6 +129927,17 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128781
129927
  serviceMessageTextColor: string;
128782
129928
  serviceMessageBackgroundColor: string;
128783
129929
  messageTitleColor: string;
129930
+ markdownQuoteBorderColorOwn: string;
129931
+ markdownQuoteBorderColorOther: string;
129932
+ markdownQuoteTextColor: string;
129933
+ markdownQuoteBackgroundColor: string;
129934
+ markdownQuoteMarkerColor: string;
129935
+ markdownDividerColorOwn: string;
129936
+ markdownDividerColorOther: string;
129937
+ markdownH1FontSize: string;
129938
+ markdownH2FontSize: string;
129939
+ markdownH3FontSize: string;
129940
+ markdownTextFontSize: string;
128784
129941
  }, {
128785
129942
  StatusIcon: import("./_mixins").Theme<"Icon", {
128786
129943
  color: string;
@@ -128808,6 +129965,17 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128808
129965
  serviceMessageTextColor: string;
128809
129966
  serviceMessageBackgroundColor: string;
128810
129967
  messageTitleColor: string;
129968
+ markdownQuoteBorderColorOwn: string;
129969
+ markdownQuoteBorderColorOther: string;
129970
+ markdownQuoteTextColor: string;
129971
+ markdownQuoteBackgroundColor: string;
129972
+ markdownQuoteMarkerColor: string;
129973
+ markdownDividerColorOwn: string;
129974
+ markdownDividerColorOther: string;
129975
+ markdownH1FontSize: string;
129976
+ markdownH2FontSize: string;
129977
+ markdownH3FontSize: string;
129978
+ markdownTextFontSize: string;
128811
129979
  }, {
128812
129980
  StatusIcon: import("./_mixins").Theme<"Icon", {
128813
129981
  color: string;
@@ -128835,6 +130003,17 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128835
130003
  serviceMessageTextColor: string;
128836
130004
  serviceMessageBackgroundColor: string;
128837
130005
  messageTitleColor: string;
130006
+ markdownQuoteBorderColorOwn: string;
130007
+ markdownQuoteBorderColorOther: string;
130008
+ markdownQuoteTextColor: string;
130009
+ markdownQuoteBackgroundColor: string;
130010
+ markdownQuoteMarkerColor: string;
130011
+ markdownDividerColorOwn: string;
130012
+ markdownDividerColorOther: string;
130013
+ markdownH1FontSize: string;
130014
+ markdownH2FontSize: string;
130015
+ markdownH3FontSize: string;
130016
+ markdownTextFontSize: string;
128838
130017
  }, {
128839
130018
  StatusIcon: import("./_mixins").Theme<"Icon", {
128840
130019
  color: string;
@@ -128878,6 +130057,14 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128878
130057
  readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleRenderContent>;
128879
130058
  readonly default: undefined;
128880
130059
  };
130060
+ readonly markdown: {
130061
+ readonly type: BooleanConstructor;
130062
+ readonly default: false;
130063
+ };
130064
+ readonly markdownOptions: {
130065
+ readonly type: import("vue").PropType<import("./message-bubble").MarkdownOptions>;
130066
+ readonly default: undefined;
130067
+ };
128881
130068
  readonly timestamp: {
128882
130069
  readonly type: import("vue").PropType<string | number | Date | (() => import("vue").VNodeChild)>;
128883
130070
  readonly default: undefined;
@@ -128927,6 +130114,17 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128927
130114
  serviceMessageTextColor: string;
128928
130115
  serviceMessageBackgroundColor: string;
128929
130116
  messageTitleColor: string;
130117
+ markdownQuoteBorderColorOwn: string;
130118
+ markdownQuoteBorderColorOther: string;
130119
+ markdownQuoteTextColor: string;
130120
+ markdownQuoteBackgroundColor: string;
130121
+ markdownQuoteMarkerColor: string;
130122
+ markdownDividerColorOwn: string;
130123
+ markdownDividerColorOther: string;
130124
+ markdownH1FontSize: string;
130125
+ markdownH2FontSize: string;
130126
+ markdownH3FontSize: string;
130127
+ markdownTextFontSize: string;
128930
130128
  }, {
128931
130129
  StatusIcon: import("./_mixins").Theme<"Icon", {
128932
130130
  color: string;
@@ -128954,6 +130152,17 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128954
130152
  serviceMessageTextColor: string;
128955
130153
  serviceMessageBackgroundColor: string;
128956
130154
  messageTitleColor: string;
130155
+ markdownQuoteBorderColorOwn: string;
130156
+ markdownQuoteBorderColorOther: string;
130157
+ markdownQuoteTextColor: string;
130158
+ markdownQuoteBackgroundColor: string;
130159
+ markdownQuoteMarkerColor: string;
130160
+ markdownDividerColorOwn: string;
130161
+ markdownDividerColorOther: string;
130162
+ markdownH1FontSize: string;
130163
+ markdownH2FontSize: string;
130164
+ markdownH3FontSize: string;
130165
+ markdownTextFontSize: string;
128957
130166
  }, {
128958
130167
  StatusIcon: import("./_mixins").Theme<"Icon", {
128959
130168
  color: string;
@@ -128981,6 +130190,17 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128981
130190
  serviceMessageTextColor: string;
128982
130191
  serviceMessageBackgroundColor: string;
128983
130192
  messageTitleColor: string;
130193
+ markdownQuoteBorderColorOwn: string;
130194
+ markdownQuoteBorderColorOther: string;
130195
+ markdownQuoteTextColor: string;
130196
+ markdownQuoteBackgroundColor: string;
130197
+ markdownQuoteMarkerColor: string;
130198
+ markdownDividerColorOwn: string;
130199
+ markdownDividerColorOther: string;
130200
+ markdownH1FontSize: string;
130201
+ markdownH2FontSize: string;
130202
+ markdownH3FontSize: string;
130203
+ markdownTextFontSize: string;
128984
130204
  }, {
128985
130205
  StatusIcon: import("./_mixins").Theme<"Icon", {
128986
130206
  color: string;
@@ -129002,6 +130222,8 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
129002
130222
  readonly serviceVariant: import("./message-bubble").MessageBubbleServiceVariant;
129003
130223
  readonly id: import("./message-bubble").MessageBubbleId;
129004
130224
  readonly isOwn: boolean;
130225
+ readonly markdown: boolean;
130226
+ readonly markdownOptions: import("./message-bubble").MarkdownOptions;
129005
130227
  readonly timestamp: string | number | Date | (() => import("vue").VNodeChild);
129006
130228
  readonly attachments: import("./message-bubble").MessageBubbleAttachment | import("./message-bubble").MessageBubbleAttachment[];
129007
130229
  readonly uploadProps: Partial<import("./upload").UploadProps>;