@uzum-tech/ui 2.3.5 → 2.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/dist/index.js +5967 -64
  2. package/dist/index.mjs +5967 -64
  3. package/dist/index.prod.js +4 -2
  4. package/dist/index.prod.mjs +4 -2
  5. package/es/_utils/markdown/constants.d.ts +27 -0
  6. package/es/_utils/markdown/constants.mjs +26 -0
  7. package/es/_utils/markdown/create-markdown-renderer.d.ts +3 -0
  8. package/es/_utils/markdown/create-markdown-renderer.mjs +65 -0
  9. package/es/_utils/markdown/index.d.ts +2 -0
  10. package/es/_utils/markdown/index.mjs +1 -0
  11. package/es/_utils/markdown/interface.d.ts +14 -0
  12. package/es/_utils/markdown/interface.mjs +7 -0
  13. package/es/_utils/markdown/render-markdown.d.ts +3 -0
  14. package/es/_utils/markdown/render-markdown.mjs +31 -0
  15. package/es/_utils/markdown/rulers/clamp-heading.d.ts +2 -0
  16. package/es/_utils/markdown/rulers/clamp-heading.mjs +25 -0
  17. package/es/_utils/markdown/rulers/equals-divider.d.ts +2 -0
  18. package/es/_utils/markdown/rulers/equals-divider.mjs +19 -0
  19. package/es/_utils/markdown/rulers/prune-empty-blocks.d.ts +2 -0
  20. package/es/_utils/markdown/rulers/prune-empty-blocks.mjs +31 -0
  21. package/es/_utils/markdown/rulers/strikethrough.d.ts +3 -0
  22. package/es/_utils/markdown/rulers/strikethrough.mjs +38 -0
  23. package/es/_utils/markdown/rulers/strip-html.d.ts +2 -0
  24. package/es/_utils/markdown/rulers/strip-html.mjs +7 -0
  25. package/es/chat/src/Chat.d.ts +515 -23
  26. package/es/chat/src/Chat.mjs +2 -0
  27. package/es/chat/src/ChatListItems.d.ts +172 -4
  28. package/es/chat/src/ChatListItems.mjs +3 -2
  29. package/es/chat/src/ChatMainArea.d.ts +200 -5
  30. package/es/chat/src/ChatMainArea.mjs +27 -13
  31. package/es/chat/src/ChatMessages.d.ts +198 -3
  32. package/es/chat/src/ChatMessages.mjs +20 -2
  33. package/es/chat/src/ChatParts/Sidebar.d.ts +28 -0
  34. package/es/chat/src/interface.d.ts +56 -0
  35. package/es/chat/src/interface.mjs +8 -0
  36. package/es/chat/styles/dark.d.ts +14 -0
  37. package/es/chat/styles/light.d.ts +19 -0
  38. package/es/chat/styles/light.mjs +5 -0
  39. package/es/components.d.ts +1396 -418
  40. package/es/data-table/src/HeaderButton/FilterButton.d.ts +1 -1
  41. package/es/data-table/src/TableParts/Header.mjs +1 -1
  42. package/es/data-table/src/use-sorter.d.ts +2 -5
  43. package/es/data-table/src/use-table-data.d.ts +1 -4
  44. package/es/layout/src/LayoutSider.d.ts +1 -1
  45. package/es/message-bubble/index.d.ts +1 -0
  46. package/es/message-bubble/src/MessageBubble.d.ts +78 -6
  47. package/es/message-bubble/src/MessageBubble.mjs +49 -7
  48. package/es/message-bubble/src/interface.d.ts +36 -0
  49. package/es/message-bubble/src/interface.mjs +8 -0
  50. package/es/message-bubble/src/styles/index.cssr.mjs +17 -1
  51. package/es/message-bubble/styles/dark.d.ts +9 -0
  52. package/es/message-bubble/styles/light.d.ts +18 -0
  53. package/es/message-bubble/styles/light.mjs +10 -1
  54. package/es/version.d.ts +1 -1
  55. package/es/version.mjs +1 -1
  56. package/lib/_utils/markdown/constants.d.ts +27 -0
  57. package/lib/_utils/markdown/constants.js +55 -0
  58. package/lib/_utils/markdown/create-markdown-renderer.d.ts +3 -0
  59. package/lib/_utils/markdown/create-markdown-renderer.js +84 -0
  60. package/lib/_utils/markdown/index.d.ts +2 -0
  61. package/lib/_utils/markdown/index.js +6 -0
  62. package/lib/_utils/markdown/interface.d.ts +14 -0
  63. package/lib/_utils/markdown/interface.js +10 -0
  64. package/lib/_utils/markdown/render-markdown.d.ts +3 -0
  65. package/lib/_utils/markdown/render-markdown.js +38 -0
  66. package/lib/_utils/markdown/rulers/clamp-heading.d.ts +2 -0
  67. package/lib/_utils/markdown/rulers/clamp-heading.js +30 -0
  68. package/lib/_utils/markdown/rulers/equals-divider.d.ts +2 -0
  69. package/lib/_utils/markdown/rulers/equals-divider.js +28 -0
  70. package/lib/_utils/markdown/rulers/prune-empty-blocks.d.ts +2 -0
  71. package/lib/_utils/markdown/rulers/prune-empty-blocks.js +40 -0
  72. package/lib/_utils/markdown/rulers/strikethrough.d.ts +3 -0
  73. package/lib/_utils/markdown/rulers/strikethrough.js +43 -0
  74. package/lib/_utils/markdown/rulers/strip-html.d.ts +2 -0
  75. package/lib/_utils/markdown/rulers/strip-html.js +15 -0
  76. package/lib/chat/src/Chat.d.ts +515 -23
  77. package/lib/chat/src/Chat.js +2 -0
  78. package/lib/chat/src/ChatListItems.d.ts +172 -4
  79. package/lib/chat/src/ChatListItems.js +7 -2
  80. package/lib/chat/src/ChatMainArea.d.ts +200 -5
  81. package/lib/chat/src/ChatMainArea.js +26 -14
  82. package/lib/chat/src/ChatMessages.d.ts +198 -3
  83. package/lib/chat/src/ChatMessages.js +11 -4
  84. package/lib/chat/src/ChatParts/Sidebar.d.ts +28 -0
  85. package/lib/chat/src/interface.d.ts +56 -0
  86. package/lib/chat/src/interface.js +6 -0
  87. package/lib/chat/styles/dark.d.ts +14 -0
  88. package/lib/chat/styles/light.d.ts +19 -0
  89. package/lib/chat/styles/light.js +5 -0
  90. package/lib/components.d.ts +1014 -36
  91. package/lib/data-table/src/HeaderButton/FilterButton.d.ts +1 -1
  92. package/lib/data-table/src/TableParts/Header.js +1 -1
  93. package/lib/data-table/src/use-sorter.d.ts +2 -5
  94. package/lib/data-table/src/use-table-data.d.ts +1 -4
  95. package/lib/layout/src/LayoutSider.d.ts +1 -1
  96. package/lib/message-bubble/index.d.ts +1 -0
  97. package/lib/message-bubble/src/MessageBubble.d.ts +78 -6
  98. package/lib/message-bubble/src/MessageBubble.js +39 -7
  99. package/lib/message-bubble/src/interface.d.ts +36 -0
  100. package/lib/message-bubble/src/interface.js +6 -0
  101. package/lib/message-bubble/src/styles/index.cssr.js +17 -1
  102. package/lib/message-bubble/styles/dark.d.ts +9 -0
  103. package/lib/message-bubble/styles/light.d.ts +18 -0
  104. package/lib/message-bubble/styles/light.js +10 -1
  105. package/lib/version.d.ts +1 -1
  106. package/lib/version.js +1 -1
  107. package/package.json +2 -1
  108. package/web-types.json +29 -1
@@ -2078,7 +2078,7 @@ export declare const UAutoComplete: import("vue").DefineComponent<import("vue").
2078
2078
  focusSearchInput: () => void;
2079
2079
  } | null>;
2080
2080
  triggerElRef: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
2081
- treeMate: import("vue").ComputedRef<import("treemate").TreeMate<import("./select/src/interface").SelectBaseOption<string | number, string | ((option: import("./select/src/interface").SelectBaseOption<string | number, string | /*elided*/ any>, selected: boolean) => import("vue").VNodeChild)>, import("./select").SelectGroupOption, import("./select/src/interface").SelectIgnoredOption>>;
2081
+ treeMate: import("vue").ComputedRef<import("treemate").TreeMate<import("./select/src/interface").SelectBaseOption<string | number, string | ((option: import("./select/src/interface").SelectBaseOption<string | number, string | /*elided*/ any>, selected: boolean) => import("vue").VNodeChild)>, import(".").SelectGroupOption, import("./select/src/interface").SelectIgnoredOption>>;
2082
2082
  mergedSize: import("vue").ComputedRef<"small" | "tiny" | "medium" | "large" | "huge">;
2083
2083
  mergedDisabled: import("vue").ComputedRef<boolean>;
2084
2084
  active: import("vue").ComputedRef<boolean>;
@@ -9325,7 +9325,7 @@ export declare const UCascader: import("vue").DefineComponent<import("vue").Extr
9325
9325
  };
9326
9326
  readonly placeholder: StringConstructor;
9327
9327
  readonly multiple: BooleanConstructor;
9328
- readonly size: import("vue").PropType<import("./select").SelectSize>;
9328
+ readonly size: import("vue").PropType<import(".").SelectSize>;
9329
9329
  readonly filterable: BooleanConstructor;
9330
9330
  readonly disabled: {
9331
9331
  readonly type: import("vue").PropType<boolean | undefined>;
@@ -11378,7 +11378,7 @@ export declare const UCascader: import("vue").DefineComponent<import("vue").Extr
11378
11378
  };
11379
11379
  readonly placeholder: StringConstructor;
11380
11380
  readonly multiple: BooleanConstructor;
11381
- readonly size: import("vue").PropType<import("./select").SelectSize>;
11381
+ readonly size: import("vue").PropType<import(".").SelectSize>;
11382
11382
  readonly filterable: BooleanConstructor;
11383
11383
  readonly disabled: {
11384
11384
  readonly type: import("vue").PropType<boolean | undefined>;
@@ -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;
@@ -12927,7 +12935,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
12927
12935
  default: undefined;
12928
12936
  };
12929
12937
  onFooterInputChange: {
12930
- type: import("vue").PropType<(value: string, chatId: import("./chat").ChatId) => void>;
12938
+ type: import("vue").PropType<(value: string, chatId: import(".").ChatId) => void>;
12931
12939
  default: undefined;
12932
12940
  };
12933
12941
  onNetworkError: {
@@ -12989,6 +12997,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
12989
12997
  inputSuffixColor: string;
12990
12998
  unreadNotificationBackgroundColor: string;
12991
12999
  unreadNotificationTextColor: string;
13000
+ markdownQuoteBorderColorOwn: string;
13001
+ markdownQuoteBorderColorOther: string;
13002
+ markdownQuoteTextColor: string;
13003
+ markdownDividerColorOwn: string;
13004
+ markdownDividerColorOther: string;
12992
13005
  typingIndicatorColor: string;
12993
13006
  dateSeparatorColor: string;
12994
13007
  dateSeparatorBackgroundColor: string;
@@ -13762,6 +13775,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
13762
13775
  serviceMessageTextColor: string;
13763
13776
  serviceMessageBackgroundColor: string;
13764
13777
  messageTitleColor: string;
13778
+ markdownQuoteBorderColorOwn: string;
13779
+ markdownQuoteBorderColorOther: string;
13780
+ markdownQuoteTextColor: string;
13781
+ markdownDividerColorOwn: string;
13782
+ markdownDividerColorOther: string;
13783
+ markdownH1FontSize: string;
13784
+ markdownH2FontSize: string;
13785
+ markdownH3FontSize: string;
13786
+ markdownTextFontSize: string;
13765
13787
  }, {
13766
13788
  StatusIcon: import("./_mixins").Theme<"Icon", {
13767
13789
  color: string;
@@ -13844,6 +13866,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
13844
13866
  inputSuffixColor: string;
13845
13867
  unreadNotificationBackgroundColor: string;
13846
13868
  unreadNotificationTextColor: string;
13869
+ markdownQuoteBorderColorOwn: string;
13870
+ markdownQuoteBorderColorOther: string;
13871
+ markdownQuoteTextColor: string;
13872
+ markdownDividerColorOwn: string;
13873
+ markdownDividerColorOther: string;
13847
13874
  typingIndicatorColor: string;
13848
13875
  dateSeparatorColor: string;
13849
13876
  dateSeparatorBackgroundColor: string;
@@ -14617,6 +14644,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
14617
14644
  serviceMessageTextColor: string;
14618
14645
  serviceMessageBackgroundColor: string;
14619
14646
  messageTitleColor: string;
14647
+ markdownQuoteBorderColorOwn: string;
14648
+ markdownQuoteBorderColorOther: string;
14649
+ markdownQuoteTextColor: string;
14650
+ markdownDividerColorOwn: string;
14651
+ markdownDividerColorOther: string;
14652
+ markdownH1FontSize: string;
14653
+ markdownH2FontSize: string;
14654
+ markdownH3FontSize: string;
14655
+ markdownTextFontSize: string;
14620
14656
  }, {
14621
14657
  StatusIcon: import("./_mixins").Theme<"Icon", {
14622
14658
  color: string;
@@ -14699,6 +14735,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
14699
14735
  inputSuffixColor: string;
14700
14736
  unreadNotificationBackgroundColor: string;
14701
14737
  unreadNotificationTextColor: string;
14738
+ markdownQuoteBorderColorOwn: string;
14739
+ markdownQuoteBorderColorOther: string;
14740
+ markdownQuoteTextColor: string;
14741
+ markdownDividerColorOwn: string;
14742
+ markdownDividerColorOther: string;
14702
14743
  typingIndicatorColor: string;
14703
14744
  dateSeparatorColor: string;
14704
14745
  dateSeparatorBackgroundColor: string;
@@ -15472,6 +15513,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
15472
15513
  serviceMessageTextColor: string;
15473
15514
  serviceMessageBackgroundColor: string;
15474
15515
  messageTitleColor: string;
15516
+ markdownQuoteBorderColorOwn: string;
15517
+ markdownQuoteBorderColorOther: string;
15518
+ markdownQuoteTextColor: string;
15519
+ markdownDividerColorOwn: string;
15520
+ markdownDividerColorOther: string;
15521
+ markdownH1FontSize: string;
15522
+ markdownH2FontSize: string;
15523
+ markdownH3FontSize: string;
15524
+ markdownTextFontSize: string;
15475
15525
  }, {
15476
15526
  StatusIcon: import("./_mixins").Theme<"Icon", {
15477
15527
  color: string;
@@ -15558,6 +15608,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
15558
15608
  inputSuffixColor: string;
15559
15609
  unreadNotificationBackgroundColor: string;
15560
15610
  unreadNotificationTextColor: string;
15611
+ markdownQuoteBorderColorOwn: string;
15612
+ markdownQuoteBorderColorOther: string;
15613
+ markdownQuoteTextColor: string;
15614
+ markdownDividerColorOwn: string;
15615
+ markdownDividerColorOther: string;
15561
15616
  typingIndicatorColor: string;
15562
15617
  dateSeparatorColor: string;
15563
15618
  dateSeparatorBackgroundColor: string;
@@ -16332,6 +16387,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
16332
16387
  serviceMessageTextColor: string;
16333
16388
  serviceMessageBackgroundColor: string;
16334
16389
  messageTitleColor: string;
16390
+ markdownQuoteBorderColorOwn: string;
16391
+ markdownQuoteBorderColorOther: string;
16392
+ markdownQuoteTextColor: string;
16393
+ markdownDividerColorOwn: string;
16394
+ markdownDividerColorOther: string;
16395
+ markdownH1FontSize: string;
16396
+ markdownH2FontSize: string;
16397
+ markdownH3FontSize: string;
16398
+ markdownTextFontSize: string;
16335
16399
  }, {
16336
16400
  StatusIcon: import("./_mixins").Theme<"Icon", {
16337
16401
  color: string;
@@ -16815,7 +16879,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
16815
16879
  onRender: () => void;
16816
16880
  mainAreaRef: import("vue").Ref<import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
16817
16881
  readonly selectedChat: {
16818
- readonly type: import("vue").PropType<import("./chat").ChatListItemData>;
16882
+ readonly type: import("vue").PropType<import(".").ChatListItemData>;
16819
16883
  readonly default: undefined;
16820
16884
  };
16821
16885
  readonly inputValue: {
@@ -16823,7 +16887,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
16823
16887
  readonly default: undefined;
16824
16888
  };
16825
16889
  readonly messages: {
16826
- readonly type: import("vue").PropType<import("./chat").ChatMessageData[]>;
16890
+ readonly type: import("vue").PropType<import(".").ChatMessageData[]>;
16827
16891
  readonly default: () => never[];
16828
16892
  };
16829
16893
  readonly typingChatIds: {
@@ -16867,7 +16931,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
16867
16931
  readonly default: undefined;
16868
16932
  };
16869
16933
  readonly messageUploadProps: {
16870
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
16934
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
16871
16935
  readonly default: undefined;
16872
16936
  };
16873
16937
  readonly footerInputProps: {
@@ -16879,7 +16943,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
16879
16943
  readonly default: undefined;
16880
16944
  };
16881
16945
  readonly footerUploadProps: {
16882
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
16946
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
16883
16947
  readonly default: undefined;
16884
16948
  };
16885
16949
  readonly footerIconProps: {
@@ -16922,20 +16986,28 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
16922
16986
  readonly type: StringConstructor;
16923
16987
  readonly default: undefined;
16924
16988
  };
16989
+ readonly markdown: {
16990
+ readonly type: BooleanConstructor;
16991
+ readonly default: true;
16992
+ };
16993
+ readonly markdownOptions: {
16994
+ readonly type: import("vue").PropType<import(".").MarkdownOptions>;
16995
+ readonly default: undefined;
16996
+ };
16925
16997
  readonly bubbleActions: {
16926
16998
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
16927
16999
  readonly default: undefined;
16928
17000
  };
16929
17001
  readonly onMessageSend: {
16930
- readonly type: import("vue").PropType<import("./chat").OnMessageSend>;
17002
+ readonly type: import("vue").PropType<import(".").OnMessageSend>;
16931
17003
  readonly default: undefined;
16932
17004
  };
16933
17005
  readonly onMessageRetry: {
16934
- readonly type: import("vue").PropType<(message: import("./chat").ChatMessageData) => void>;
17006
+ readonly type: import("vue").PropType<(message: import(".").ChatMessageData) => void>;
16935
17007
  readonly default: undefined;
16936
17008
  };
16937
17009
  readonly onFooterInputChange: {
16938
- readonly type: import("vue").PropType<(value: string, chatId: import("./chat").ChatId) => void>;
17010
+ readonly type: import("vue").PropType<(value: string, chatId: import(".").ChatId) => void>;
16939
17011
  readonly default: undefined;
16940
17012
  };
16941
17013
  readonly 'onUpdate:inputValue': {
@@ -16955,7 +17027,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
16955
17027
  readonly default: undefined;
16956
17028
  };
16957
17029
  readonly onAttachmentUpload: {
16958
- readonly type: import("vue").PropType<import("./chat").OnAttachmentUpload>;
17030
+ readonly type: import("vue").PropType<import(".").OnAttachmentUpload>;
16959
17031
  readonly default: undefined;
16960
17032
  };
16961
17033
  readonly onAttachmentDownload: {
@@ -17001,6 +17073,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
17001
17073
  inputSuffixColor: string;
17002
17074
  unreadNotificationBackgroundColor: string;
17003
17075
  unreadNotificationTextColor: string;
17076
+ markdownQuoteBorderColorOwn: string;
17077
+ markdownQuoteBorderColorOther: string;
17078
+ markdownQuoteTextColor: string;
17079
+ markdownDividerColorOwn: string;
17080
+ markdownDividerColorOther: string;
17004
17081
  typingIndicatorColor: string;
17005
17082
  dateSeparatorColor: string;
17006
17083
  dateSeparatorBackgroundColor: string;
@@ -17774,6 +17851,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
17774
17851
  serviceMessageTextColor: string;
17775
17852
  serviceMessageBackgroundColor: string;
17776
17853
  messageTitleColor: string;
17854
+ markdownQuoteBorderColorOwn: string;
17855
+ markdownQuoteBorderColorOther: string;
17856
+ markdownQuoteTextColor: string;
17857
+ markdownDividerColorOwn: string;
17858
+ markdownDividerColorOther: string;
17859
+ markdownH1FontSize: string;
17860
+ markdownH2FontSize: string;
17861
+ markdownH3FontSize: string;
17862
+ markdownTextFontSize: string;
17777
17863
  }, {
17778
17864
  StatusIcon: import("./_mixins").Theme<"Icon", {
17779
17865
  color: string;
@@ -17856,6 +17942,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
17856
17942
  inputSuffixColor: string;
17857
17943
  unreadNotificationBackgroundColor: string;
17858
17944
  unreadNotificationTextColor: string;
17945
+ markdownQuoteBorderColorOwn: string;
17946
+ markdownQuoteBorderColorOther: string;
17947
+ markdownQuoteTextColor: string;
17948
+ markdownDividerColorOwn: string;
17949
+ markdownDividerColorOther: string;
17859
17950
  typingIndicatorColor: string;
17860
17951
  dateSeparatorColor: string;
17861
17952
  dateSeparatorBackgroundColor: string;
@@ -18629,6 +18720,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
18629
18720
  serviceMessageTextColor: string;
18630
18721
  serviceMessageBackgroundColor: string;
18631
18722
  messageTitleColor: string;
18723
+ markdownQuoteBorderColorOwn: string;
18724
+ markdownQuoteBorderColorOther: string;
18725
+ markdownQuoteTextColor: string;
18726
+ markdownDividerColorOwn: string;
18727
+ markdownDividerColorOther: string;
18728
+ markdownH1FontSize: string;
18729
+ markdownH2FontSize: string;
18730
+ markdownH3FontSize: string;
18731
+ markdownTextFontSize: string;
18632
18732
  }, {
18633
18733
  StatusIcon: import("./_mixins").Theme<"Icon", {
18634
18734
  color: string;
@@ -18711,6 +18811,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
18711
18811
  inputSuffixColor: string;
18712
18812
  unreadNotificationBackgroundColor: string;
18713
18813
  unreadNotificationTextColor: string;
18814
+ markdownQuoteBorderColorOwn: string;
18815
+ markdownQuoteBorderColorOther: string;
18816
+ markdownQuoteTextColor: string;
18817
+ markdownDividerColorOwn: string;
18818
+ markdownDividerColorOther: string;
18714
18819
  typingIndicatorColor: string;
18715
18820
  dateSeparatorColor: string;
18716
18821
  dateSeparatorBackgroundColor: string;
@@ -19484,6 +19589,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
19484
19589
  serviceMessageTextColor: string;
19485
19590
  serviceMessageBackgroundColor: string;
19486
19591
  messageTitleColor: string;
19592
+ markdownQuoteBorderColorOwn: string;
19593
+ markdownQuoteBorderColorOther: string;
19594
+ markdownQuoteTextColor: string;
19595
+ markdownDividerColorOwn: string;
19596
+ markdownDividerColorOther: string;
19597
+ markdownH1FontSize: string;
19598
+ markdownH2FontSize: string;
19599
+ markdownH3FontSize: string;
19600
+ markdownTextFontSize: string;
19487
19601
  }, {
19488
19602
  StatusIcon: import("./_mixins").Theme<"Icon", {
19489
19603
  color: string;
@@ -19537,7 +19651,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
19537
19651
  }>>>;
19538
19652
  }>> & Readonly<{}>, {
19539
19653
  mergedClsPrefix: import("vue").Ref<string, string>;
19540
- mergedTheme: import("vue").Ref<{
19654
+ mergedTheme: import("vue").ComputedRef<{
19541
19655
  common: import("./config-provider").ThemeCommonVars;
19542
19656
  self: {
19543
19657
  backgroundColor: string;
@@ -19570,6 +19684,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
19570
19684
  inputSuffixColor: string;
19571
19685
  unreadNotificationBackgroundColor: string;
19572
19686
  unreadNotificationTextColor: string;
19687
+ markdownQuoteBorderColorOwn: string;
19688
+ markdownQuoteBorderColorOther: string;
19689
+ markdownQuoteTextColor: string;
19690
+ markdownDividerColorOwn: string;
19691
+ markdownDividerColorOther: string;
19573
19692
  typingIndicatorColor: string;
19574
19693
  dateSeparatorColor: string;
19575
19694
  dateSeparatorBackgroundColor: string;
@@ -20344,6 +20463,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
20344
20463
  serviceMessageTextColor: string;
20345
20464
  serviceMessageBackgroundColor: string;
20346
20465
  messageTitleColor: string;
20466
+ markdownQuoteBorderColorOwn: string;
20467
+ markdownQuoteBorderColorOther: string;
20468
+ markdownQuoteTextColor: string;
20469
+ markdownDividerColorOwn: string;
20470
+ markdownDividerColorOther: string;
20471
+ markdownH1FontSize: string;
20472
+ markdownH2FontSize: string;
20473
+ markdownH3FontSize: string;
20474
+ markdownTextFontSize: string;
20347
20475
  }, {
20348
20476
  StatusIcon: import("./_mixins").Theme<"Icon", {
20349
20477
  color: string;
@@ -20784,7 +20912,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
20784
20912
  } | undefined;
20785
20913
  } | undefined;
20786
20914
  };
20787
- }, {
20915
+ }> | import("vue").Ref<{
20788
20916
  common: import("./config-provider").ThemeCommonVars;
20789
20917
  self: {
20790
20918
  backgroundColor: string;
@@ -20817,6 +20945,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
20817
20945
  inputSuffixColor: string;
20818
20946
  unreadNotificationBackgroundColor: string;
20819
20947
  unreadNotificationTextColor: string;
20948
+ markdownQuoteBorderColorOwn: string;
20949
+ markdownQuoteBorderColorOther: string;
20950
+ markdownQuoteTextColor: string;
20951
+ markdownDividerColorOwn: string;
20952
+ markdownDividerColorOther: string;
20820
20953
  typingIndicatorColor: string;
20821
20954
  dateSeparatorColor: string;
20822
20955
  dateSeparatorBackgroundColor: string;
@@ -21591,6 +21724,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
21591
21724
  serviceMessageTextColor: string;
21592
21725
  serviceMessageBackgroundColor: string;
21593
21726
  messageTitleColor: string;
21727
+ markdownQuoteBorderColorOwn: string;
21728
+ markdownQuoteBorderColorOther: string;
21729
+ markdownQuoteTextColor: string;
21730
+ markdownDividerColorOwn: string;
21731
+ markdownDividerColorOther: string;
21732
+ markdownH1FontSize: string;
21733
+ markdownH2FontSize: string;
21734
+ markdownH3FontSize: string;
21735
+ markdownTextFontSize: string;
21594
21736
  }, {
21595
21737
  StatusIcon: import("./_mixins").Theme<"Icon", {
21596
21738
  color: string;
@@ -22031,7 +22173,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
22031
22173
  } | undefined;
22032
22174
  } | undefined;
22033
22175
  };
22034
- }> | import("vue").ComputedRef<{
22176
+ }, {
22035
22177
  common: import("./config-provider").ThemeCommonVars;
22036
22178
  self: {
22037
22179
  backgroundColor: string;
@@ -22064,6 +22206,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
22064
22206
  inputSuffixColor: string;
22065
22207
  unreadNotificationBackgroundColor: string;
22066
22208
  unreadNotificationTextColor: string;
22209
+ markdownQuoteBorderColorOwn: string;
22210
+ markdownQuoteBorderColorOther: string;
22211
+ markdownQuoteTextColor: string;
22212
+ markdownDividerColorOwn: string;
22213
+ markdownDividerColorOther: string;
22067
22214
  typingIndicatorColor: string;
22068
22215
  dateSeparatorColor: string;
22069
22216
  dateSeparatorBackgroundColor: string;
@@ -22838,6 +22985,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
22838
22985
  serviceMessageTextColor: string;
22839
22986
  serviceMessageBackgroundColor: string;
22840
22987
  messageTitleColor: string;
22988
+ markdownQuoteBorderColorOwn: string;
22989
+ markdownQuoteBorderColorOther: string;
22990
+ markdownQuoteTextColor: string;
22991
+ markdownDividerColorOwn: string;
22992
+ markdownDividerColorOther: string;
22993
+ markdownH1FontSize: string;
22994
+ markdownH2FontSize: string;
22995
+ markdownH3FontSize: string;
22996
+ markdownTextFontSize: string;
22841
22997
  }, {
22842
22998
  StatusIcon: import("./_mixins").Theme<"Icon", {
22843
22999
  color: string;
@@ -23297,7 +23453,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23297
23453
  handleSendMessage: () => Promise<void>;
23298
23454
  handleMessagesScroll: (e: Event) => void;
23299
23455
  scrollToBottom: () => void;
23300
- editingMessage: import("vue").Ref<import("./chat").ChatMessageData | null, import("./chat").ChatMessageData | null>;
23456
+ editingMessage: import("vue").Ref<import(".").ChatMessageData | null, import(".").ChatMessageData | null>;
23301
23457
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
23302
23458
  readonly loading: boolean;
23303
23459
  readonly inputPlaceholder: string;
@@ -23307,9 +23463,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23307
23463
  readonly shareButtonTooltip: string;
23308
23464
  readonly profileButtonTooltip: string;
23309
23465
  readonly unreadNotificationText: string;
23466
+ readonly markdown: boolean;
23467
+ readonly markdownOptions: import(".").MarkdownOptions;
23310
23468
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
23311
23469
  readonly inputValue: string;
23312
- readonly messages: import("./chat").ChatMessageData[];
23470
+ readonly messages: import(".").ChatMessageData[];
23313
23471
  readonly headerButtonProps: Partial<import("./button").ButtonProps>;
23314
23472
  readonly headerIconProps: Partial<import("./icon").IconProps>;
23315
23473
  readonly headerShareButtonProps: Partial<import("./button").ButtonProps>;
@@ -23317,27 +23475,27 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23317
23475
  readonly headerCloseButtonProps: Partial<import("./button").ButtonProps>;
23318
23476
  readonly headerShareIconProps: Partial<import("./icon").IconProps>;
23319
23477
  readonly headerProfileIconProps: Partial<import("./icon").IconProps>;
23320
- readonly messageUploadProps: Partial<import("./upload").UploadProps>;
23478
+ readonly messageUploadProps: Partial<import(".").UploadProps>;
23321
23479
  readonly footerInputProps: Partial<import("./input").InputProps>;
23322
23480
  readonly footerButtonProps: Partial<import("./button").ButtonProps>;
23323
- readonly footerUploadProps: Partial<import("./upload").UploadProps>;
23481
+ readonly footerUploadProps: Partial<import(".").UploadProps>;
23324
23482
  readonly footerIconProps: Partial<import("./icon").IconProps>;
23325
23483
  readonly footerSuffixIconProps: Partial<import("./icon").IconProps>;
23326
- readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
23484
+ readonly onMessageRetry: (message: import(".").ChatMessageData) => void;
23327
23485
  readonly bubbleActions: import("./chat/src/interface").ChatBubbleAction[];
23328
- readonly onAttachmentUpload: import("./chat").OnAttachmentUpload;
23486
+ readonly onAttachmentUpload: import(".").OnAttachmentUpload;
23329
23487
  readonly typingChatIds: (string | number | symbol)[];
23330
23488
  readonly onChatClose: () => void;
23331
23489
  readonly onChatShare: () => void;
23332
23490
  readonly onUserProfile: () => void;
23333
- readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
23491
+ readonly onFooterInputChange: (value: string, chatId: import(".").ChatId) => void;
23334
23492
  readonly onMessagesScrollToTop: () => void;
23335
23493
  readonly onMessagesScrollToBottom: () => void;
23494
+ readonly 'onUpdate:inputValue': (value: string) => void;
23495
+ readonly selectedChat: import(".").ChatListItemData;
23336
23496
  readonly loadingCount: number;
23337
- readonly selectedChat: import("./chat").ChatListItemData;
23338
23497
  readonly showAttachButton: boolean;
23339
- readonly onMessageSend: import("./chat").OnMessageSend;
23340
- readonly 'onUpdate:inputValue': (value: string) => void;
23498
+ readonly onMessageSend: import(".").OnMessageSend;
23341
23499
  }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
23342
23500
  P: {};
23343
23501
  B: {};
@@ -23347,7 +23505,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23347
23505
  Defaults: {};
23348
23506
  }, Readonly<import("vue").ExtractPropTypes<{
23349
23507
  readonly selectedChat: {
23350
- readonly type: import("vue").PropType<import("./chat").ChatListItemData>;
23508
+ readonly type: import("vue").PropType<import(".").ChatListItemData>;
23351
23509
  readonly default: undefined;
23352
23510
  };
23353
23511
  readonly inputValue: {
@@ -23355,7 +23513,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23355
23513
  readonly default: undefined;
23356
23514
  };
23357
23515
  readonly messages: {
23358
- readonly type: import("vue").PropType<import("./chat").ChatMessageData[]>;
23516
+ readonly type: import("vue").PropType<import(".").ChatMessageData[]>;
23359
23517
  readonly default: () => never[];
23360
23518
  };
23361
23519
  readonly typingChatIds: {
@@ -23399,7 +23557,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23399
23557
  readonly default: undefined;
23400
23558
  };
23401
23559
  readonly messageUploadProps: {
23402
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
23560
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
23403
23561
  readonly default: undefined;
23404
23562
  };
23405
23563
  readonly footerInputProps: {
@@ -23411,7 +23569,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23411
23569
  readonly default: undefined;
23412
23570
  };
23413
23571
  readonly footerUploadProps: {
23414
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
23572
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
23415
23573
  readonly default: undefined;
23416
23574
  };
23417
23575
  readonly footerIconProps: {
@@ -23454,20 +23612,28 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23454
23612
  readonly type: StringConstructor;
23455
23613
  readonly default: undefined;
23456
23614
  };
23615
+ readonly markdown: {
23616
+ readonly type: BooleanConstructor;
23617
+ readonly default: true;
23618
+ };
23619
+ readonly markdownOptions: {
23620
+ readonly type: import("vue").PropType<import(".").MarkdownOptions>;
23621
+ readonly default: undefined;
23622
+ };
23457
23623
  readonly bubbleActions: {
23458
23624
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
23459
23625
  readonly default: undefined;
23460
23626
  };
23461
23627
  readonly onMessageSend: {
23462
- readonly type: import("vue").PropType<import("./chat").OnMessageSend>;
23628
+ readonly type: import("vue").PropType<import(".").OnMessageSend>;
23463
23629
  readonly default: undefined;
23464
23630
  };
23465
23631
  readonly onMessageRetry: {
23466
- readonly type: import("vue").PropType<(message: import("./chat").ChatMessageData) => void>;
23632
+ readonly type: import("vue").PropType<(message: import(".").ChatMessageData) => void>;
23467
23633
  readonly default: undefined;
23468
23634
  };
23469
23635
  readonly onFooterInputChange: {
23470
- readonly type: import("vue").PropType<(value: string, chatId: import("./chat").ChatId) => void>;
23636
+ readonly type: import("vue").PropType<(value: string, chatId: import(".").ChatId) => void>;
23471
23637
  readonly default: undefined;
23472
23638
  };
23473
23639
  readonly 'onUpdate:inputValue': {
@@ -23487,7 +23653,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23487
23653
  readonly default: undefined;
23488
23654
  };
23489
23655
  readonly onAttachmentUpload: {
23490
- readonly type: import("vue").PropType<import("./chat").OnAttachmentUpload>;
23656
+ readonly type: import("vue").PropType<import(".").OnAttachmentUpload>;
23491
23657
  readonly default: undefined;
23492
23658
  };
23493
23659
  readonly onAttachmentDownload: {
@@ -23533,6 +23699,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
23533
23699
  inputSuffixColor: string;
23534
23700
  unreadNotificationBackgroundColor: string;
23535
23701
  unreadNotificationTextColor: string;
23702
+ markdownQuoteBorderColorOwn: string;
23703
+ markdownQuoteBorderColorOther: string;
23704
+ markdownQuoteTextColor: string;
23705
+ markdownDividerColorOwn: string;
23706
+ markdownDividerColorOther: string;
23536
23707
  typingIndicatorColor: string;
23537
23708
  dateSeparatorColor: string;
23538
23709
  dateSeparatorBackgroundColor: string;
@@ -24306,6 +24477,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
24306
24477
  serviceMessageTextColor: string;
24307
24478
  serviceMessageBackgroundColor: string;
24308
24479
  messageTitleColor: string;
24480
+ markdownQuoteBorderColorOwn: string;
24481
+ markdownQuoteBorderColorOther: string;
24482
+ markdownQuoteTextColor: string;
24483
+ markdownDividerColorOwn: string;
24484
+ markdownDividerColorOther: string;
24485
+ markdownH1FontSize: string;
24486
+ markdownH2FontSize: string;
24487
+ markdownH3FontSize: string;
24488
+ markdownTextFontSize: string;
24309
24489
  }, {
24310
24490
  StatusIcon: import("./_mixins").Theme<"Icon", {
24311
24491
  color: string;
@@ -24388,6 +24568,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
24388
24568
  inputSuffixColor: string;
24389
24569
  unreadNotificationBackgroundColor: string;
24390
24570
  unreadNotificationTextColor: string;
24571
+ markdownQuoteBorderColorOwn: string;
24572
+ markdownQuoteBorderColorOther: string;
24573
+ markdownQuoteTextColor: string;
24574
+ markdownDividerColorOwn: string;
24575
+ markdownDividerColorOther: string;
24391
24576
  typingIndicatorColor: string;
24392
24577
  dateSeparatorColor: string;
24393
24578
  dateSeparatorBackgroundColor: string;
@@ -25161,6 +25346,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
25161
25346
  serviceMessageTextColor: string;
25162
25347
  serviceMessageBackgroundColor: string;
25163
25348
  messageTitleColor: string;
25349
+ markdownQuoteBorderColorOwn: string;
25350
+ markdownQuoteBorderColorOther: string;
25351
+ markdownQuoteTextColor: string;
25352
+ markdownDividerColorOwn: string;
25353
+ markdownDividerColorOther: string;
25354
+ markdownH1FontSize: string;
25355
+ markdownH2FontSize: string;
25356
+ markdownH3FontSize: string;
25357
+ markdownTextFontSize: string;
25164
25358
  }, {
25165
25359
  StatusIcon: import("./_mixins").Theme<"Icon", {
25166
25360
  color: string;
@@ -25243,6 +25437,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
25243
25437
  inputSuffixColor: string;
25244
25438
  unreadNotificationBackgroundColor: string;
25245
25439
  unreadNotificationTextColor: string;
25440
+ markdownQuoteBorderColorOwn: string;
25441
+ markdownQuoteBorderColorOther: string;
25442
+ markdownQuoteTextColor: string;
25443
+ markdownDividerColorOwn: string;
25444
+ markdownDividerColorOther: string;
25246
25445
  typingIndicatorColor: string;
25247
25446
  dateSeparatorColor: string;
25248
25447
  dateSeparatorBackgroundColor: string;
@@ -26016,6 +26215,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
26016
26215
  serviceMessageTextColor: string;
26017
26216
  serviceMessageBackgroundColor: string;
26018
26217
  messageTitleColor: string;
26218
+ markdownQuoteBorderColorOwn: string;
26219
+ markdownQuoteBorderColorOther: string;
26220
+ markdownQuoteTextColor: string;
26221
+ markdownDividerColorOwn: string;
26222
+ markdownDividerColorOther: string;
26223
+ markdownH1FontSize: string;
26224
+ markdownH2FontSize: string;
26225
+ markdownH3FontSize: string;
26226
+ markdownTextFontSize: string;
26019
26227
  }, {
26020
26228
  StatusIcon: import("./_mixins").Theme<"Icon", {
26021
26229
  color: string;
@@ -26069,7 +26277,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
26069
26277
  }>>>;
26070
26278
  }>> & Readonly<{}>, {
26071
26279
  mergedClsPrefix: import("vue").Ref<string, string>;
26072
- mergedTheme: import("vue").Ref<{
26280
+ mergedTheme: import("vue").ComputedRef<{
26073
26281
  common: import("./config-provider").ThemeCommonVars;
26074
26282
  self: {
26075
26283
  backgroundColor: string;
@@ -26102,6 +26310,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
26102
26310
  inputSuffixColor: string;
26103
26311
  unreadNotificationBackgroundColor: string;
26104
26312
  unreadNotificationTextColor: string;
26313
+ markdownQuoteBorderColorOwn: string;
26314
+ markdownQuoteBorderColorOther: string;
26315
+ markdownQuoteTextColor: string;
26316
+ markdownDividerColorOwn: string;
26317
+ markdownDividerColorOther: string;
26105
26318
  typingIndicatorColor: string;
26106
26319
  dateSeparatorColor: string;
26107
26320
  dateSeparatorBackgroundColor: string;
@@ -26876,6 +27089,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
26876
27089
  serviceMessageTextColor: string;
26877
27090
  serviceMessageBackgroundColor: string;
26878
27091
  messageTitleColor: string;
27092
+ markdownQuoteBorderColorOwn: string;
27093
+ markdownQuoteBorderColorOther: string;
27094
+ markdownQuoteTextColor: string;
27095
+ markdownDividerColorOwn: string;
27096
+ markdownDividerColorOther: string;
27097
+ markdownH1FontSize: string;
27098
+ markdownH2FontSize: string;
27099
+ markdownH3FontSize: string;
27100
+ markdownTextFontSize: string;
26879
27101
  }, {
26880
27102
  StatusIcon: import("./_mixins").Theme<"Icon", {
26881
27103
  color: string;
@@ -27316,7 +27538,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
27316
27538
  } | undefined;
27317
27539
  } | undefined;
27318
27540
  };
27319
- }, {
27541
+ }> | import("vue").Ref<{
27320
27542
  common: import("./config-provider").ThemeCommonVars;
27321
27543
  self: {
27322
27544
  backgroundColor: string;
@@ -27349,6 +27571,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
27349
27571
  inputSuffixColor: string;
27350
27572
  unreadNotificationBackgroundColor: string;
27351
27573
  unreadNotificationTextColor: string;
27574
+ markdownQuoteBorderColorOwn: string;
27575
+ markdownQuoteBorderColorOther: string;
27576
+ markdownQuoteTextColor: string;
27577
+ markdownDividerColorOwn: string;
27578
+ markdownDividerColorOther: string;
27352
27579
  typingIndicatorColor: string;
27353
27580
  dateSeparatorColor: string;
27354
27581
  dateSeparatorBackgroundColor: string;
@@ -28123,6 +28350,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
28123
28350
  serviceMessageTextColor: string;
28124
28351
  serviceMessageBackgroundColor: string;
28125
28352
  messageTitleColor: string;
28353
+ markdownQuoteBorderColorOwn: string;
28354
+ markdownQuoteBorderColorOther: string;
28355
+ markdownQuoteTextColor: string;
28356
+ markdownDividerColorOwn: string;
28357
+ markdownDividerColorOther: string;
28358
+ markdownH1FontSize: string;
28359
+ markdownH2FontSize: string;
28360
+ markdownH3FontSize: string;
28361
+ markdownTextFontSize: string;
28126
28362
  }, {
28127
28363
  StatusIcon: import("./_mixins").Theme<"Icon", {
28128
28364
  color: string;
@@ -28563,7 +28799,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
28563
28799
  } | undefined;
28564
28800
  } | undefined;
28565
28801
  };
28566
- }> | import("vue").ComputedRef<{
28802
+ }, {
28567
28803
  common: import("./config-provider").ThemeCommonVars;
28568
28804
  self: {
28569
28805
  backgroundColor: string;
@@ -28596,6 +28832,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
28596
28832
  inputSuffixColor: string;
28597
28833
  unreadNotificationBackgroundColor: string;
28598
28834
  unreadNotificationTextColor: string;
28835
+ markdownQuoteBorderColorOwn: string;
28836
+ markdownQuoteBorderColorOther: string;
28837
+ markdownQuoteTextColor: string;
28838
+ markdownDividerColorOwn: string;
28839
+ markdownDividerColorOther: string;
28599
28840
  typingIndicatorColor: string;
28600
28841
  dateSeparatorColor: string;
28601
28842
  dateSeparatorBackgroundColor: string;
@@ -29370,6 +29611,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29370
29611
  serviceMessageTextColor: string;
29371
29612
  serviceMessageBackgroundColor: string;
29372
29613
  messageTitleColor: string;
29614
+ markdownQuoteBorderColorOwn: string;
29615
+ markdownQuoteBorderColorOther: string;
29616
+ markdownQuoteTextColor: string;
29617
+ markdownDividerColorOwn: string;
29618
+ markdownDividerColorOther: string;
29619
+ markdownH1FontSize: string;
29620
+ markdownH2FontSize: string;
29621
+ markdownH3FontSize: string;
29622
+ markdownTextFontSize: string;
29373
29623
  }, {
29374
29624
  StatusIcon: import("./_mixins").Theme<"Icon", {
29375
29625
  color: string;
@@ -29829,7 +30079,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29829
30079
  handleSendMessage: () => Promise<void>;
29830
30080
  handleMessagesScroll: (e: Event) => void;
29831
30081
  scrollToBottom: () => void;
29832
- editingMessage: import("vue").Ref<import("./chat").ChatMessageData | null, import("./chat").ChatMessageData | null>;
30082
+ editingMessage: import("vue").Ref<import(".").ChatMessageData | null, import(".").ChatMessageData | null>;
29833
30083
  }, {}, {}, {}, {
29834
30084
  readonly loading: boolean;
29835
30085
  readonly inputPlaceholder: string;
@@ -29839,9 +30089,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29839
30089
  readonly shareButtonTooltip: string;
29840
30090
  readonly profileButtonTooltip: string;
29841
30091
  readonly unreadNotificationText: string;
30092
+ readonly markdown: boolean;
30093
+ readonly markdownOptions: import(".").MarkdownOptions;
29842
30094
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
29843
30095
  readonly inputValue: string;
29844
- readonly messages: import("./chat").ChatMessageData[];
30096
+ readonly messages: import(".").ChatMessageData[];
29845
30097
  readonly headerButtonProps: Partial<import("./button").ButtonProps>;
29846
30098
  readonly headerIconProps: Partial<import("./icon").IconProps>;
29847
30099
  readonly headerShareButtonProps: Partial<import("./button").ButtonProps>;
@@ -29849,30 +30101,30 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29849
30101
  readonly headerCloseButtonProps: Partial<import("./button").ButtonProps>;
29850
30102
  readonly headerShareIconProps: Partial<import("./icon").IconProps>;
29851
30103
  readonly headerProfileIconProps: Partial<import("./icon").IconProps>;
29852
- readonly messageUploadProps: Partial<import("./upload").UploadProps>;
30104
+ readonly messageUploadProps: Partial<import(".").UploadProps>;
29853
30105
  readonly footerInputProps: Partial<import("./input").InputProps>;
29854
30106
  readonly footerButtonProps: Partial<import("./button").ButtonProps>;
29855
- readonly footerUploadProps: Partial<import("./upload").UploadProps>;
30107
+ readonly footerUploadProps: Partial<import(".").UploadProps>;
29856
30108
  readonly footerIconProps: Partial<import("./icon").IconProps>;
29857
30109
  readonly footerSuffixIconProps: Partial<import("./icon").IconProps>;
29858
- readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
30110
+ readonly onMessageRetry: (message: import(".").ChatMessageData) => void;
29859
30111
  readonly bubbleActions: import("./chat/src/interface").ChatBubbleAction[];
29860
- readonly onAttachmentUpload: import("./chat").OnAttachmentUpload;
30112
+ readonly onAttachmentUpload: import(".").OnAttachmentUpload;
29861
30113
  readonly typingChatIds: (string | number | symbol)[];
29862
30114
  readonly onChatClose: () => void;
29863
30115
  readonly onChatShare: () => void;
29864
30116
  readonly onUserProfile: () => void;
29865
- readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
30117
+ readonly onFooterInputChange: (value: string, chatId: import(".").ChatId) => void;
29866
30118
  readonly onMessagesScrollToTop: () => void;
29867
30119
  readonly onMessagesScrollToBottom: () => void;
30120
+ readonly 'onUpdate:inputValue': (value: string) => void;
30121
+ readonly selectedChat: import(".").ChatListItemData;
29868
30122
  readonly loadingCount: number;
29869
- readonly selectedChat: import("./chat").ChatListItemData;
29870
30123
  readonly showAttachButton: boolean;
29871
- readonly onMessageSend: import("./chat").OnMessageSend;
29872
- readonly 'onUpdate:inputValue': (value: string) => void;
30124
+ readonly onMessageSend: import(".").OnMessageSend;
29873
30125
  }> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
29874
30126
  readonly selectedChat: {
29875
- readonly type: import("vue").PropType<import("./chat").ChatListItemData>;
30127
+ readonly type: import("vue").PropType<import(".").ChatListItemData>;
29876
30128
  readonly default: undefined;
29877
30129
  };
29878
30130
  readonly inputValue: {
@@ -29880,7 +30132,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29880
30132
  readonly default: undefined;
29881
30133
  };
29882
30134
  readonly messages: {
29883
- readonly type: import("vue").PropType<import("./chat").ChatMessageData[]>;
30135
+ readonly type: import("vue").PropType<import(".").ChatMessageData[]>;
29884
30136
  readonly default: () => never[];
29885
30137
  };
29886
30138
  readonly typingChatIds: {
@@ -29924,7 +30176,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29924
30176
  readonly default: undefined;
29925
30177
  };
29926
30178
  readonly messageUploadProps: {
29927
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
30179
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
29928
30180
  readonly default: undefined;
29929
30181
  };
29930
30182
  readonly footerInputProps: {
@@ -29936,7 +30188,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29936
30188
  readonly default: undefined;
29937
30189
  };
29938
30190
  readonly footerUploadProps: {
29939
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
30191
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
29940
30192
  readonly default: undefined;
29941
30193
  };
29942
30194
  readonly footerIconProps: {
@@ -29979,20 +30231,28 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
29979
30231
  readonly type: StringConstructor;
29980
30232
  readonly default: undefined;
29981
30233
  };
30234
+ readonly markdown: {
30235
+ readonly type: BooleanConstructor;
30236
+ readonly default: true;
30237
+ };
30238
+ readonly markdownOptions: {
30239
+ readonly type: import("vue").PropType<import(".").MarkdownOptions>;
30240
+ readonly default: undefined;
30241
+ };
29982
30242
  readonly bubbleActions: {
29983
30243
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
29984
30244
  readonly default: undefined;
29985
30245
  };
29986
30246
  readonly onMessageSend: {
29987
- readonly type: import("vue").PropType<import("./chat").OnMessageSend>;
30247
+ readonly type: import("vue").PropType<import(".").OnMessageSend>;
29988
30248
  readonly default: undefined;
29989
30249
  };
29990
30250
  readonly onMessageRetry: {
29991
- readonly type: import("vue").PropType<(message: import("./chat").ChatMessageData) => void>;
30251
+ readonly type: import("vue").PropType<(message: import(".").ChatMessageData) => void>;
29992
30252
  readonly default: undefined;
29993
30253
  };
29994
30254
  readonly onFooterInputChange: {
29995
- readonly type: import("vue").PropType<(value: string, chatId: import("./chat").ChatId) => void>;
30255
+ readonly type: import("vue").PropType<(value: string, chatId: import(".").ChatId) => void>;
29996
30256
  readonly default: undefined;
29997
30257
  };
29998
30258
  readonly 'onUpdate:inputValue': {
@@ -30012,7 +30272,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
30012
30272
  readonly default: undefined;
30013
30273
  };
30014
30274
  readonly onAttachmentUpload: {
30015
- readonly type: import("vue").PropType<import("./chat").OnAttachmentUpload>;
30275
+ readonly type: import("vue").PropType<import(".").OnAttachmentUpload>;
30016
30276
  readonly default: undefined;
30017
30277
  };
30018
30278
  readonly onAttachmentDownload: {
@@ -30058,6 +30318,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
30058
30318
  inputSuffixColor: string;
30059
30319
  unreadNotificationBackgroundColor: string;
30060
30320
  unreadNotificationTextColor: string;
30321
+ markdownQuoteBorderColorOwn: string;
30322
+ markdownQuoteBorderColorOther: string;
30323
+ markdownQuoteTextColor: string;
30324
+ markdownDividerColorOwn: string;
30325
+ markdownDividerColorOther: string;
30061
30326
  typingIndicatorColor: string;
30062
30327
  dateSeparatorColor: string;
30063
30328
  dateSeparatorBackgroundColor: string;
@@ -30831,6 +31096,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
30831
31096
  serviceMessageTextColor: string;
30832
31097
  serviceMessageBackgroundColor: string;
30833
31098
  messageTitleColor: string;
31099
+ markdownQuoteBorderColorOwn: string;
31100
+ markdownQuoteBorderColorOther: string;
31101
+ markdownQuoteTextColor: string;
31102
+ markdownDividerColorOwn: string;
31103
+ markdownDividerColorOther: string;
31104
+ markdownH1FontSize: string;
31105
+ markdownH2FontSize: string;
31106
+ markdownH3FontSize: string;
31107
+ markdownTextFontSize: string;
30834
31108
  }, {
30835
31109
  StatusIcon: import("./_mixins").Theme<"Icon", {
30836
31110
  color: string;
@@ -30913,6 +31187,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
30913
31187
  inputSuffixColor: string;
30914
31188
  unreadNotificationBackgroundColor: string;
30915
31189
  unreadNotificationTextColor: string;
31190
+ markdownQuoteBorderColorOwn: string;
31191
+ markdownQuoteBorderColorOther: string;
31192
+ markdownQuoteTextColor: string;
31193
+ markdownDividerColorOwn: string;
31194
+ markdownDividerColorOther: string;
30916
31195
  typingIndicatorColor: string;
30917
31196
  dateSeparatorColor: string;
30918
31197
  dateSeparatorBackgroundColor: string;
@@ -31686,6 +31965,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
31686
31965
  serviceMessageTextColor: string;
31687
31966
  serviceMessageBackgroundColor: string;
31688
31967
  messageTitleColor: string;
31968
+ markdownQuoteBorderColorOwn: string;
31969
+ markdownQuoteBorderColorOther: string;
31970
+ markdownQuoteTextColor: string;
31971
+ markdownDividerColorOwn: string;
31972
+ markdownDividerColorOther: string;
31973
+ markdownH1FontSize: string;
31974
+ markdownH2FontSize: string;
31975
+ markdownH3FontSize: string;
31976
+ markdownTextFontSize: string;
31689
31977
  }, {
31690
31978
  StatusIcon: import("./_mixins").Theme<"Icon", {
31691
31979
  color: string;
@@ -31768,6 +32056,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
31768
32056
  inputSuffixColor: string;
31769
32057
  unreadNotificationBackgroundColor: string;
31770
32058
  unreadNotificationTextColor: string;
32059
+ markdownQuoteBorderColorOwn: string;
32060
+ markdownQuoteBorderColorOther: string;
32061
+ markdownQuoteTextColor: string;
32062
+ markdownDividerColorOwn: string;
32063
+ markdownDividerColorOther: string;
31771
32064
  typingIndicatorColor: string;
31772
32065
  dateSeparatorColor: string;
31773
32066
  dateSeparatorBackgroundColor: string;
@@ -32541,6 +32834,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
32541
32834
  serviceMessageTextColor: string;
32542
32835
  serviceMessageBackgroundColor: string;
32543
32836
  messageTitleColor: string;
32837
+ markdownQuoteBorderColorOwn: string;
32838
+ markdownQuoteBorderColorOther: string;
32839
+ markdownQuoteTextColor: string;
32840
+ markdownDividerColorOwn: string;
32841
+ markdownDividerColorOther: string;
32842
+ markdownH1FontSize: string;
32843
+ markdownH2FontSize: string;
32844
+ markdownH3FontSize: string;
32845
+ markdownTextFontSize: string;
32544
32846
  }, {
32545
32847
  StatusIcon: import("./_mixins").Theme<"Icon", {
32546
32848
  color: string;
@@ -32594,7 +32896,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
32594
32896
  }>>>;
32595
32897
  }>> & Readonly<{}>, {
32596
32898
  mergedClsPrefix: import("vue").Ref<string, string>;
32597
- mergedTheme: import("vue").Ref<{
32899
+ mergedTheme: import("vue").ComputedRef<{
32598
32900
  common: import("./config-provider").ThemeCommonVars;
32599
32901
  self: {
32600
32902
  backgroundColor: string;
@@ -32627,6 +32929,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
32627
32929
  inputSuffixColor: string;
32628
32930
  unreadNotificationBackgroundColor: string;
32629
32931
  unreadNotificationTextColor: string;
32932
+ markdownQuoteBorderColorOwn: string;
32933
+ markdownQuoteBorderColorOther: string;
32934
+ markdownQuoteTextColor: string;
32935
+ markdownDividerColorOwn: string;
32936
+ markdownDividerColorOther: string;
32630
32937
  typingIndicatorColor: string;
32631
32938
  dateSeparatorColor: string;
32632
32939
  dateSeparatorBackgroundColor: string;
@@ -33401,6 +33708,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
33401
33708
  serviceMessageTextColor: string;
33402
33709
  serviceMessageBackgroundColor: string;
33403
33710
  messageTitleColor: string;
33711
+ markdownQuoteBorderColorOwn: string;
33712
+ markdownQuoteBorderColorOther: string;
33713
+ markdownQuoteTextColor: string;
33714
+ markdownDividerColorOwn: string;
33715
+ markdownDividerColorOther: string;
33716
+ markdownH1FontSize: string;
33717
+ markdownH2FontSize: string;
33718
+ markdownH3FontSize: string;
33719
+ markdownTextFontSize: string;
33404
33720
  }, {
33405
33721
  StatusIcon: import("./_mixins").Theme<"Icon", {
33406
33722
  color: string;
@@ -33841,7 +34157,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
33841
34157
  } | undefined;
33842
34158
  } | undefined;
33843
34159
  };
33844
- }, {
34160
+ }> | import("vue").Ref<{
33845
34161
  common: import("./config-provider").ThemeCommonVars;
33846
34162
  self: {
33847
34163
  backgroundColor: string;
@@ -33874,6 +34190,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
33874
34190
  inputSuffixColor: string;
33875
34191
  unreadNotificationBackgroundColor: string;
33876
34192
  unreadNotificationTextColor: string;
34193
+ markdownQuoteBorderColorOwn: string;
34194
+ markdownQuoteBorderColorOther: string;
34195
+ markdownQuoteTextColor: string;
34196
+ markdownDividerColorOwn: string;
34197
+ markdownDividerColorOther: string;
33877
34198
  typingIndicatorColor: string;
33878
34199
  dateSeparatorColor: string;
33879
34200
  dateSeparatorBackgroundColor: string;
@@ -34648,6 +34969,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
34648
34969
  serviceMessageTextColor: string;
34649
34970
  serviceMessageBackgroundColor: string;
34650
34971
  messageTitleColor: string;
34972
+ markdownQuoteBorderColorOwn: string;
34973
+ markdownQuoteBorderColorOther: string;
34974
+ markdownQuoteTextColor: string;
34975
+ markdownDividerColorOwn: string;
34976
+ markdownDividerColorOther: string;
34977
+ markdownH1FontSize: string;
34978
+ markdownH2FontSize: string;
34979
+ markdownH3FontSize: string;
34980
+ markdownTextFontSize: string;
34651
34981
  }, {
34652
34982
  StatusIcon: import("./_mixins").Theme<"Icon", {
34653
34983
  color: string;
@@ -35088,7 +35418,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
35088
35418
  } | undefined;
35089
35419
  } | undefined;
35090
35420
  };
35091
- }> | import("vue").ComputedRef<{
35421
+ }, {
35092
35422
  common: import("./config-provider").ThemeCommonVars;
35093
35423
  self: {
35094
35424
  backgroundColor: string;
@@ -35121,6 +35451,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
35121
35451
  inputSuffixColor: string;
35122
35452
  unreadNotificationBackgroundColor: string;
35123
35453
  unreadNotificationTextColor: string;
35454
+ markdownQuoteBorderColorOwn: string;
35455
+ markdownQuoteBorderColorOther: string;
35456
+ markdownQuoteTextColor: string;
35457
+ markdownDividerColorOwn: string;
35458
+ markdownDividerColorOther: string;
35124
35459
  typingIndicatorColor: string;
35125
35460
  dateSeparatorColor: string;
35126
35461
  dateSeparatorBackgroundColor: string;
@@ -35895,6 +36230,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
35895
36230
  serviceMessageTextColor: string;
35896
36231
  serviceMessageBackgroundColor: string;
35897
36232
  messageTitleColor: string;
36233
+ markdownQuoteBorderColorOwn: string;
36234
+ markdownQuoteBorderColorOther: string;
36235
+ markdownQuoteTextColor: string;
36236
+ markdownDividerColorOwn: string;
36237
+ markdownDividerColorOther: string;
36238
+ markdownH1FontSize: string;
36239
+ markdownH2FontSize: string;
36240
+ markdownH3FontSize: string;
36241
+ markdownTextFontSize: string;
35898
36242
  }, {
35899
36243
  StatusIcon: import("./_mixins").Theme<"Icon", {
35900
36244
  color: string;
@@ -36354,7 +36698,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36354
36698
  handleSendMessage: () => Promise<void>;
36355
36699
  handleMessagesScroll: (e: Event) => void;
36356
36700
  scrollToBottom: () => void;
36357
- editingMessage: import("vue").Ref<import("./chat").ChatMessageData | null, import("./chat").ChatMessageData | null>;
36701
+ editingMessage: import("vue").Ref<import(".").ChatMessageData | null, import(".").ChatMessageData | null>;
36358
36702
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").PublicProps, {
36359
36703
  readonly loading: boolean;
36360
36704
  readonly inputPlaceholder: string;
@@ -36364,9 +36708,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36364
36708
  readonly shareButtonTooltip: string;
36365
36709
  readonly profileButtonTooltip: string;
36366
36710
  readonly unreadNotificationText: string;
36711
+ readonly markdown: boolean;
36712
+ readonly markdownOptions: import(".").MarkdownOptions;
36367
36713
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
36368
36714
  readonly inputValue: string;
36369
- readonly messages: import("./chat").ChatMessageData[];
36715
+ readonly messages: import(".").ChatMessageData[];
36370
36716
  readonly headerButtonProps: Partial<import("./button").ButtonProps>;
36371
36717
  readonly headerIconProps: Partial<import("./icon").IconProps>;
36372
36718
  readonly headerShareButtonProps: Partial<import("./button").ButtonProps>;
@@ -36374,27 +36720,27 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36374
36720
  readonly headerCloseButtonProps: Partial<import("./button").ButtonProps>;
36375
36721
  readonly headerShareIconProps: Partial<import("./icon").IconProps>;
36376
36722
  readonly headerProfileIconProps: Partial<import("./icon").IconProps>;
36377
- readonly messageUploadProps: Partial<import("./upload").UploadProps>;
36723
+ readonly messageUploadProps: Partial<import(".").UploadProps>;
36378
36724
  readonly footerInputProps: Partial<import("./input").InputProps>;
36379
36725
  readonly footerButtonProps: Partial<import("./button").ButtonProps>;
36380
- readonly footerUploadProps: Partial<import("./upload").UploadProps>;
36726
+ readonly footerUploadProps: Partial<import(".").UploadProps>;
36381
36727
  readonly footerIconProps: Partial<import("./icon").IconProps>;
36382
36728
  readonly footerSuffixIconProps: Partial<import("./icon").IconProps>;
36383
- readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
36729
+ readonly onMessageRetry: (message: import(".").ChatMessageData) => void;
36384
36730
  readonly bubbleActions: import("./chat/src/interface").ChatBubbleAction[];
36385
- readonly onAttachmentUpload: import("./chat").OnAttachmentUpload;
36731
+ readonly onAttachmentUpload: import(".").OnAttachmentUpload;
36386
36732
  readonly typingChatIds: (string | number | symbol)[];
36387
36733
  readonly onChatClose: () => void;
36388
36734
  readonly onChatShare: () => void;
36389
36735
  readonly onUserProfile: () => void;
36390
- readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
36736
+ readonly onFooterInputChange: (value: string, chatId: import(".").ChatId) => void;
36391
36737
  readonly onMessagesScrollToTop: () => void;
36392
36738
  readonly onMessagesScrollToBottom: () => void;
36739
+ readonly 'onUpdate:inputValue': (value: string) => void;
36740
+ readonly selectedChat: import(".").ChatListItemData;
36393
36741
  readonly loadingCount: number;
36394
- readonly selectedChat: import("./chat").ChatListItemData;
36395
36742
  readonly showAttachButton: boolean;
36396
- readonly onMessageSend: import("./chat").OnMessageSend;
36397
- readonly 'onUpdate:inputValue': (value: string) => void;
36743
+ readonly onMessageSend: import(".").OnMessageSend;
36398
36744
  }, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
36399
36745
  P: {};
36400
36746
  B: {};
@@ -36404,7 +36750,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36404
36750
  Defaults: {};
36405
36751
  }, Readonly<import("vue").ExtractPropTypes<{
36406
36752
  readonly selectedChat: {
36407
- readonly type: import("vue").PropType<import("./chat").ChatListItemData>;
36753
+ readonly type: import("vue").PropType<import(".").ChatListItemData>;
36408
36754
  readonly default: undefined;
36409
36755
  };
36410
36756
  readonly inputValue: {
@@ -36412,7 +36758,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36412
36758
  readonly default: undefined;
36413
36759
  };
36414
36760
  readonly messages: {
36415
- readonly type: import("vue").PropType<import("./chat").ChatMessageData[]>;
36761
+ readonly type: import("vue").PropType<import(".").ChatMessageData[]>;
36416
36762
  readonly default: () => never[];
36417
36763
  };
36418
36764
  readonly typingChatIds: {
@@ -36456,7 +36802,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36456
36802
  readonly default: undefined;
36457
36803
  };
36458
36804
  readonly messageUploadProps: {
36459
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
36805
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
36460
36806
  readonly default: undefined;
36461
36807
  };
36462
36808
  readonly footerInputProps: {
@@ -36468,7 +36814,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36468
36814
  readonly default: undefined;
36469
36815
  };
36470
36816
  readonly footerUploadProps: {
36471
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
36817
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
36472
36818
  readonly default: undefined;
36473
36819
  };
36474
36820
  readonly footerIconProps: {
@@ -36511,20 +36857,28 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36511
36857
  readonly type: StringConstructor;
36512
36858
  readonly default: undefined;
36513
36859
  };
36860
+ readonly markdown: {
36861
+ readonly type: BooleanConstructor;
36862
+ readonly default: true;
36863
+ };
36864
+ readonly markdownOptions: {
36865
+ readonly type: import("vue").PropType<import(".").MarkdownOptions>;
36866
+ readonly default: undefined;
36867
+ };
36514
36868
  readonly bubbleActions: {
36515
36869
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
36516
36870
  readonly default: undefined;
36517
36871
  };
36518
36872
  readonly onMessageSend: {
36519
- readonly type: import("vue").PropType<import("./chat").OnMessageSend>;
36873
+ readonly type: import("vue").PropType<import(".").OnMessageSend>;
36520
36874
  readonly default: undefined;
36521
36875
  };
36522
36876
  readonly onMessageRetry: {
36523
- readonly type: import("vue").PropType<(message: import("./chat").ChatMessageData) => void>;
36877
+ readonly type: import("vue").PropType<(message: import(".").ChatMessageData) => void>;
36524
36878
  readonly default: undefined;
36525
36879
  };
36526
36880
  readonly onFooterInputChange: {
36527
- readonly type: import("vue").PropType<(value: string, chatId: import("./chat").ChatId) => void>;
36881
+ readonly type: import("vue").PropType<(value: string, chatId: import(".").ChatId) => void>;
36528
36882
  readonly default: undefined;
36529
36883
  };
36530
36884
  readonly 'onUpdate:inputValue': {
@@ -36544,7 +36898,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36544
36898
  readonly default: undefined;
36545
36899
  };
36546
36900
  readonly onAttachmentUpload: {
36547
- readonly type: import("vue").PropType<import("./chat").OnAttachmentUpload>;
36901
+ readonly type: import("vue").PropType<import(".").OnAttachmentUpload>;
36548
36902
  readonly default: undefined;
36549
36903
  };
36550
36904
  readonly onAttachmentDownload: {
@@ -36590,6 +36944,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
36590
36944
  inputSuffixColor: string;
36591
36945
  unreadNotificationBackgroundColor: string;
36592
36946
  unreadNotificationTextColor: string;
36947
+ markdownQuoteBorderColorOwn: string;
36948
+ markdownQuoteBorderColorOther: string;
36949
+ markdownQuoteTextColor: string;
36950
+ markdownDividerColorOwn: string;
36951
+ markdownDividerColorOther: string;
36593
36952
  typingIndicatorColor: string;
36594
36953
  dateSeparatorColor: string;
36595
36954
  dateSeparatorBackgroundColor: string;
@@ -37363,6 +37722,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
37363
37722
  serviceMessageTextColor: string;
37364
37723
  serviceMessageBackgroundColor: string;
37365
37724
  messageTitleColor: string;
37725
+ markdownQuoteBorderColorOwn: string;
37726
+ markdownQuoteBorderColorOther: string;
37727
+ markdownQuoteTextColor: string;
37728
+ markdownDividerColorOwn: string;
37729
+ markdownDividerColorOther: string;
37730
+ markdownH1FontSize: string;
37731
+ markdownH2FontSize: string;
37732
+ markdownH3FontSize: string;
37733
+ markdownTextFontSize: string;
37366
37734
  }, {
37367
37735
  StatusIcon: import("./_mixins").Theme<"Icon", {
37368
37736
  color: string;
@@ -37445,6 +37813,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
37445
37813
  inputSuffixColor: string;
37446
37814
  unreadNotificationBackgroundColor: string;
37447
37815
  unreadNotificationTextColor: string;
37816
+ markdownQuoteBorderColorOwn: string;
37817
+ markdownQuoteBorderColorOther: string;
37818
+ markdownQuoteTextColor: string;
37819
+ markdownDividerColorOwn: string;
37820
+ markdownDividerColorOther: string;
37448
37821
  typingIndicatorColor: string;
37449
37822
  dateSeparatorColor: string;
37450
37823
  dateSeparatorBackgroundColor: string;
@@ -38218,6 +38591,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
38218
38591
  serviceMessageTextColor: string;
38219
38592
  serviceMessageBackgroundColor: string;
38220
38593
  messageTitleColor: string;
38594
+ markdownQuoteBorderColorOwn: string;
38595
+ markdownQuoteBorderColorOther: string;
38596
+ markdownQuoteTextColor: string;
38597
+ markdownDividerColorOwn: string;
38598
+ markdownDividerColorOther: string;
38599
+ markdownH1FontSize: string;
38600
+ markdownH2FontSize: string;
38601
+ markdownH3FontSize: string;
38602
+ markdownTextFontSize: string;
38221
38603
  }, {
38222
38604
  StatusIcon: import("./_mixins").Theme<"Icon", {
38223
38605
  color: string;
@@ -38300,6 +38682,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
38300
38682
  inputSuffixColor: string;
38301
38683
  unreadNotificationBackgroundColor: string;
38302
38684
  unreadNotificationTextColor: string;
38685
+ markdownQuoteBorderColorOwn: string;
38686
+ markdownQuoteBorderColorOther: string;
38687
+ markdownQuoteTextColor: string;
38688
+ markdownDividerColorOwn: string;
38689
+ markdownDividerColorOther: string;
38303
38690
  typingIndicatorColor: string;
38304
38691
  dateSeparatorColor: string;
38305
38692
  dateSeparatorBackgroundColor: string;
@@ -39073,6 +39460,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
39073
39460
  serviceMessageTextColor: string;
39074
39461
  serviceMessageBackgroundColor: string;
39075
39462
  messageTitleColor: string;
39463
+ markdownQuoteBorderColorOwn: string;
39464
+ markdownQuoteBorderColorOther: string;
39465
+ markdownQuoteTextColor: string;
39466
+ markdownDividerColorOwn: string;
39467
+ markdownDividerColorOther: string;
39468
+ markdownH1FontSize: string;
39469
+ markdownH2FontSize: string;
39470
+ markdownH3FontSize: string;
39471
+ markdownTextFontSize: string;
39076
39472
  }, {
39077
39473
  StatusIcon: import("./_mixins").Theme<"Icon", {
39078
39474
  color: string;
@@ -39126,7 +39522,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
39126
39522
  }>>>;
39127
39523
  }>> & Readonly<{}>, {
39128
39524
  mergedClsPrefix: import("vue").Ref<string, string>;
39129
- mergedTheme: import("vue").Ref<{
39525
+ mergedTheme: import("vue").ComputedRef<{
39130
39526
  common: import("./config-provider").ThemeCommonVars;
39131
39527
  self: {
39132
39528
  backgroundColor: string;
@@ -39159,6 +39555,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
39159
39555
  inputSuffixColor: string;
39160
39556
  unreadNotificationBackgroundColor: string;
39161
39557
  unreadNotificationTextColor: string;
39558
+ markdownQuoteBorderColorOwn: string;
39559
+ markdownQuoteBorderColorOther: string;
39560
+ markdownQuoteTextColor: string;
39561
+ markdownDividerColorOwn: string;
39562
+ markdownDividerColorOther: string;
39162
39563
  typingIndicatorColor: string;
39163
39564
  dateSeparatorColor: string;
39164
39565
  dateSeparatorBackgroundColor: string;
@@ -39933,6 +40334,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
39933
40334
  serviceMessageTextColor: string;
39934
40335
  serviceMessageBackgroundColor: string;
39935
40336
  messageTitleColor: string;
40337
+ markdownQuoteBorderColorOwn: string;
40338
+ markdownQuoteBorderColorOther: string;
40339
+ markdownQuoteTextColor: string;
40340
+ markdownDividerColorOwn: string;
40341
+ markdownDividerColorOther: string;
40342
+ markdownH1FontSize: string;
40343
+ markdownH2FontSize: string;
40344
+ markdownH3FontSize: string;
40345
+ markdownTextFontSize: string;
39936
40346
  }, {
39937
40347
  StatusIcon: import("./_mixins").Theme<"Icon", {
39938
40348
  color: string;
@@ -40373,7 +40783,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
40373
40783
  } | undefined;
40374
40784
  } | undefined;
40375
40785
  };
40376
- }, {
40786
+ }> | import("vue").Ref<{
40377
40787
  common: import("./config-provider").ThemeCommonVars;
40378
40788
  self: {
40379
40789
  backgroundColor: string;
@@ -40406,6 +40816,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
40406
40816
  inputSuffixColor: string;
40407
40817
  unreadNotificationBackgroundColor: string;
40408
40818
  unreadNotificationTextColor: string;
40819
+ markdownQuoteBorderColorOwn: string;
40820
+ markdownQuoteBorderColorOther: string;
40821
+ markdownQuoteTextColor: string;
40822
+ markdownDividerColorOwn: string;
40823
+ markdownDividerColorOther: string;
40409
40824
  typingIndicatorColor: string;
40410
40825
  dateSeparatorColor: string;
40411
40826
  dateSeparatorBackgroundColor: string;
@@ -41180,6 +41595,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
41180
41595
  serviceMessageTextColor: string;
41181
41596
  serviceMessageBackgroundColor: string;
41182
41597
  messageTitleColor: string;
41598
+ markdownQuoteBorderColorOwn: string;
41599
+ markdownQuoteBorderColorOther: string;
41600
+ markdownQuoteTextColor: string;
41601
+ markdownDividerColorOwn: string;
41602
+ markdownDividerColorOther: string;
41603
+ markdownH1FontSize: string;
41604
+ markdownH2FontSize: string;
41605
+ markdownH3FontSize: string;
41606
+ markdownTextFontSize: string;
41183
41607
  }, {
41184
41608
  StatusIcon: import("./_mixins").Theme<"Icon", {
41185
41609
  color: string;
@@ -41620,7 +42044,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
41620
42044
  } | undefined;
41621
42045
  } | undefined;
41622
42046
  };
41623
- }> | import("vue").ComputedRef<{
42047
+ }, {
41624
42048
  common: import("./config-provider").ThemeCommonVars;
41625
42049
  self: {
41626
42050
  backgroundColor: string;
@@ -41653,6 +42077,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
41653
42077
  inputSuffixColor: string;
41654
42078
  unreadNotificationBackgroundColor: string;
41655
42079
  unreadNotificationTextColor: string;
42080
+ markdownQuoteBorderColorOwn: string;
42081
+ markdownQuoteBorderColorOther: string;
42082
+ markdownQuoteTextColor: string;
42083
+ markdownDividerColorOwn: string;
42084
+ markdownDividerColorOther: string;
41656
42085
  typingIndicatorColor: string;
41657
42086
  dateSeparatorColor: string;
41658
42087
  dateSeparatorBackgroundColor: string;
@@ -42427,6 +42856,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
42427
42856
  serviceMessageTextColor: string;
42428
42857
  serviceMessageBackgroundColor: string;
42429
42858
  messageTitleColor: string;
42859
+ markdownQuoteBorderColorOwn: string;
42860
+ markdownQuoteBorderColorOther: string;
42861
+ markdownQuoteTextColor: string;
42862
+ markdownDividerColorOwn: string;
42863
+ markdownDividerColorOther: string;
42864
+ markdownH1FontSize: string;
42865
+ markdownH2FontSize: string;
42866
+ markdownH3FontSize: string;
42867
+ markdownTextFontSize: string;
42430
42868
  }, {
42431
42869
  StatusIcon: import("./_mixins").Theme<"Icon", {
42432
42870
  color: string;
@@ -42886,7 +43324,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
42886
43324
  handleSendMessage: () => Promise<void>;
42887
43325
  handleMessagesScroll: (e: Event) => void;
42888
43326
  scrollToBottom: () => void;
42889
- editingMessage: import("vue").Ref<import("./chat").ChatMessageData | null, import("./chat").ChatMessageData | null>;
43327
+ editingMessage: import("vue").Ref<import(".").ChatMessageData | null, import(".").ChatMessageData | null>;
42890
43328
  }, {}, {}, {}, {
42891
43329
  readonly loading: boolean;
42892
43330
  readonly inputPlaceholder: string;
@@ -42896,9 +43334,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
42896
43334
  readonly shareButtonTooltip: string;
42897
43335
  readonly profileButtonTooltip: string;
42898
43336
  readonly unreadNotificationText: string;
43337
+ readonly markdown: boolean;
43338
+ readonly markdownOptions: import(".").MarkdownOptions;
42899
43339
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
42900
43340
  readonly inputValue: string;
42901
- readonly messages: import("./chat").ChatMessageData[];
43341
+ readonly messages: import(".").ChatMessageData[];
42902
43342
  readonly headerButtonProps: Partial<import("./button").ButtonProps>;
42903
43343
  readonly headerIconProps: Partial<import("./icon").IconProps>;
42904
43344
  readonly headerShareButtonProps: Partial<import("./button").ButtonProps>;
@@ -42906,29 +43346,29 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
42906
43346
  readonly headerCloseButtonProps: Partial<import("./button").ButtonProps>;
42907
43347
  readonly headerShareIconProps: Partial<import("./icon").IconProps>;
42908
43348
  readonly headerProfileIconProps: Partial<import("./icon").IconProps>;
42909
- readonly messageUploadProps: Partial<import("./upload").UploadProps>;
43349
+ readonly messageUploadProps: Partial<import(".").UploadProps>;
42910
43350
  readonly footerInputProps: Partial<import("./input").InputProps>;
42911
43351
  readonly footerButtonProps: Partial<import("./button").ButtonProps>;
42912
- readonly footerUploadProps: Partial<import("./upload").UploadProps>;
43352
+ readonly footerUploadProps: Partial<import(".").UploadProps>;
42913
43353
  readonly footerIconProps: Partial<import("./icon").IconProps>;
42914
43354
  readonly footerSuffixIconProps: Partial<import("./icon").IconProps>;
42915
- readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
43355
+ readonly onMessageRetry: (message: import(".").ChatMessageData) => void;
42916
43356
  readonly bubbleActions: import("./chat/src/interface").ChatBubbleAction[];
42917
- readonly onAttachmentUpload: import("./chat").OnAttachmentUpload;
43357
+ readonly onAttachmentUpload: import(".").OnAttachmentUpload;
42918
43358
  readonly typingChatIds: (string | number | symbol)[];
42919
43359
  readonly onChatClose: () => void;
42920
43360
  readonly onChatShare: () => void;
42921
43361
  readonly onUserProfile: () => void;
42922
- readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
43362
+ readonly onFooterInputChange: (value: string, chatId: import(".").ChatId) => void;
42923
43363
  readonly onMessagesScrollToTop: () => void;
42924
43364
  readonly onMessagesScrollToBottom: () => void;
43365
+ readonly 'onUpdate:inputValue': (value: string) => void;
43366
+ readonly selectedChat: import(".").ChatListItemData;
42925
43367
  readonly loadingCount: number;
42926
- readonly selectedChat: import("./chat").ChatListItemData;
42927
43368
  readonly showAttachButton: boolean;
42928
- readonly onMessageSend: import("./chat").OnMessageSend;
42929
- readonly 'onUpdate:inputValue': (value: string) => void;
43369
+ readonly onMessageSend: import(".").OnMessageSend;
42930
43370
  }> | null>;
42931
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("message-retry" | "update:selectedChatId" | "update:inputValue" | "message-send" | "attachment-upload" | "mark-messages-read" | "filter-change" | "footer-input-change" | "network-error" | "upload-error" | "send-error" | "chat-items-scroll-to-top" | "chat-items-scroll-to-bottom" | "messages-scroll-to-top" | "messages-scroll-to-bottom")[], "message-retry" | "update:selectedChatId" | "update:inputValue" | "message-send" | "attachment-upload" | "mark-messages-read" | "filter-change" | "footer-input-change" | "network-error" | "upload-error" | "send-error" | "chat-items-scroll-to-top" | "chat-items-scroll-to-bottom" | "messages-scroll-to-top" | "messages-scroll-to-bottom", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
43371
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:selectedChatId" | "update:inputValue" | "message-send" | "message-retry" | "attachment-upload" | "mark-messages-read" | "filter-change" | "footer-input-change" | "network-error" | "upload-error" | "send-error" | "chat-items-scroll-to-top" | "chat-items-scroll-to-bottom" | "messages-scroll-to-top" | "messages-scroll-to-bottom")[], "update:selectedChatId" | "update:inputValue" | "message-send" | "message-retry" | "attachment-upload" | "mark-messages-read" | "filter-change" | "footer-input-change" | "network-error" | "upload-error" | "send-error" | "chat-items-scroll-to-top" | "chat-items-scroll-to-bottom" | "messages-scroll-to-top" | "messages-scroll-to-bottom", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
42932
43372
  chatItems: {
42933
43373
  type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["chatItems"]>;
42934
43374
  default: () => never[];
@@ -43081,6 +43521,14 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
43081
43521
  type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["unreadNotificationText"]>;
43082
43522
  default: undefined;
43083
43523
  };
43524
+ markdown: {
43525
+ type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["markdown"]>;
43526
+ default: boolean;
43527
+ };
43528
+ markdownOptions: {
43529
+ type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["markdownOptions"]>;
43530
+ default: undefined;
43531
+ };
43084
43532
  chatItemsLoading: {
43085
43533
  type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["chatItemsLoading"]>;
43086
43534
  default: boolean;
@@ -43138,7 +43586,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
43138
43586
  default: undefined;
43139
43587
  };
43140
43588
  onFooterInputChange: {
43141
- type: import("vue").PropType<(value: string, chatId: import("./chat").ChatId) => void>;
43589
+ type: import("vue").PropType<(value: string, chatId: import(".").ChatId) => void>;
43142
43590
  default: undefined;
43143
43591
  };
43144
43592
  onNetworkError: {
@@ -43200,6 +43648,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
43200
43648
  inputSuffixColor: string;
43201
43649
  unreadNotificationBackgroundColor: string;
43202
43650
  unreadNotificationTextColor: string;
43651
+ markdownQuoteBorderColorOwn: string;
43652
+ markdownQuoteBorderColorOther: string;
43653
+ markdownQuoteTextColor: string;
43654
+ markdownDividerColorOwn: string;
43655
+ markdownDividerColorOther: string;
43203
43656
  typingIndicatorColor: string;
43204
43657
  dateSeparatorColor: string;
43205
43658
  dateSeparatorBackgroundColor: string;
@@ -43973,6 +44426,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
43973
44426
  serviceMessageTextColor: string;
43974
44427
  serviceMessageBackgroundColor: string;
43975
44428
  messageTitleColor: string;
44429
+ markdownQuoteBorderColorOwn: string;
44430
+ markdownQuoteBorderColorOther: string;
44431
+ markdownQuoteTextColor: string;
44432
+ markdownDividerColorOwn: string;
44433
+ markdownDividerColorOther: string;
44434
+ markdownH1FontSize: string;
44435
+ markdownH2FontSize: string;
44436
+ markdownH3FontSize: string;
44437
+ markdownTextFontSize: string;
43976
44438
  }, {
43977
44439
  StatusIcon: import("./_mixins").Theme<"Icon", {
43978
44440
  color: string;
@@ -44055,6 +44517,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
44055
44517
  inputSuffixColor: string;
44056
44518
  unreadNotificationBackgroundColor: string;
44057
44519
  unreadNotificationTextColor: string;
44520
+ markdownQuoteBorderColorOwn: string;
44521
+ markdownQuoteBorderColorOther: string;
44522
+ markdownQuoteTextColor: string;
44523
+ markdownDividerColorOwn: string;
44524
+ markdownDividerColorOther: string;
44058
44525
  typingIndicatorColor: string;
44059
44526
  dateSeparatorColor: string;
44060
44527
  dateSeparatorBackgroundColor: string;
@@ -44828,6 +45295,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
44828
45295
  serviceMessageTextColor: string;
44829
45296
  serviceMessageBackgroundColor: string;
44830
45297
  messageTitleColor: string;
45298
+ markdownQuoteBorderColorOwn: string;
45299
+ markdownQuoteBorderColorOther: string;
45300
+ markdownQuoteTextColor: string;
45301
+ markdownDividerColorOwn: string;
45302
+ markdownDividerColorOther: string;
45303
+ markdownH1FontSize: string;
45304
+ markdownH2FontSize: string;
45305
+ markdownH3FontSize: string;
45306
+ markdownTextFontSize: string;
44831
45307
  }, {
44832
45308
  StatusIcon: import("./_mixins").Theme<"Icon", {
44833
45309
  color: string;
@@ -44910,6 +45386,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
44910
45386
  inputSuffixColor: string;
44911
45387
  unreadNotificationBackgroundColor: string;
44912
45388
  unreadNotificationTextColor: string;
45389
+ markdownQuoteBorderColorOwn: string;
45390
+ markdownQuoteBorderColorOther: string;
45391
+ markdownQuoteTextColor: string;
45392
+ markdownDividerColorOwn: string;
45393
+ markdownDividerColorOther: string;
44913
45394
  typingIndicatorColor: string;
44914
45395
  dateSeparatorColor: string;
44915
45396
  dateSeparatorBackgroundColor: string;
@@ -45683,6 +46164,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
45683
46164
  serviceMessageTextColor: string;
45684
46165
  serviceMessageBackgroundColor: string;
45685
46166
  messageTitleColor: string;
46167
+ markdownQuoteBorderColorOwn: string;
46168
+ markdownQuoteBorderColorOther: string;
46169
+ markdownQuoteTextColor: string;
46170
+ markdownDividerColorOwn: string;
46171
+ markdownDividerColorOther: string;
46172
+ markdownH1FontSize: string;
46173
+ markdownH2FontSize: string;
46174
+ markdownH3FontSize: string;
46175
+ markdownTextFontSize: string;
45686
46176
  }, {
45687
46177
  StatusIcon: import("./_mixins").Theme<"Icon", {
45688
46178
  color: string;
@@ -45735,10 +46225,10 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
45735
46225
  }, any>;
45736
46226
  }>>>;
45737
46227
  }>> & Readonly<{
45738
- "onUpdate:inputValue"?: ((...args: any[]) => any) | undefined;
45739
- "onMessage-retry"?: ((...args: any[]) => any) | undefined;
45740
46228
  "onUpdate:selectedChatId"?: ((...args: any[]) => any) | undefined;
46229
+ "onUpdate:inputValue"?: ((...args: any[]) => any) | undefined;
45741
46230
  "onMessage-send"?: ((...args: any[]) => any) | undefined;
46231
+ "onMessage-retry"?: ((...args: any[]) => any) | undefined;
45742
46232
  "onAttachment-upload"?: ((...args: any[]) => any) | undefined;
45743
46233
  "onMark-messages-read"?: ((...args: any[]) => any) | undefined;
45744
46234
  "onFilter-change"?: ((...args: any[]) => any) | undefined;
@@ -45760,11 +46250,13 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
45760
46250
  height: string | number;
45761
46251
  disabled: boolean | undefined;
45762
46252
  emptyProps: Partial<Partial<import("./empty").EmptyProps> | undefined>;
46253
+ markdown: boolean | undefined;
46254
+ markdownOptions: import(".").MarkdownOptions | undefined;
45763
46255
  onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload | undefined;
45764
- chatItems: import("./chat").ChatListItemData[] | undefined;
45765
- selectedChatId: import("./chat").ChatId | undefined;
46256
+ chatItems: import(".").ChatListItemData[] | undefined;
46257
+ selectedChatId: import(".").ChatId | undefined;
45766
46258
  inputValue: string | undefined;
45767
- messages: import("./chat").ChatMessageData[] | undefined;
46259
+ messages: import(".").ChatMessageData[] | undefined;
45768
46260
  listEmptyProps: Partial<Partial<import("./empty").EmptyProps> | undefined>;
45769
46261
  listHeaderTitle: string | (() => import("vue").VNodeChild) | undefined;
45770
46262
  listHeaderActions: (() => import("vue").VNodeChild)[] | undefined;
@@ -45782,11 +46274,11 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
45782
46274
  headerShareIconProps: Partial<Partial<import("./icon").IconProps> | undefined>;
45783
46275
  headerProfileIconProps: Partial<Partial<import("./icon").IconProps> | undefined>;
45784
46276
  messageSenderAvatarProps: Partial<Partial<import("./avatar").AvatarProps> | undefined>;
45785
- messageUploadProps: Partial<Partial<import("./upload").UploadProps> | undefined>;
46277
+ messageUploadProps: Partial<Partial<import(".").UploadProps> | undefined>;
45786
46278
  messageButtonProps: Partial<Partial<import("./button").ButtonProps> | undefined>;
45787
46279
  footerInputProps: Partial<Partial<import("./input").InputProps> | undefined>;
45788
46280
  footerButtonProps: Partial<Partial<import("./button").ButtonProps> | undefined>;
45789
- footerUploadProps: Partial<Partial<import("./upload").UploadProps> | undefined>;
46281
+ footerUploadProps: Partial<Partial<import(".").UploadProps> | undefined>;
45790
46282
  footerUploadTriggerProps: any;
45791
46283
  footerIconProps: Partial<Partial<import("./icon").IconProps> | undefined>;
45792
46284
  footerSuffixIconProps: Partial<Partial<import("./icon").IconProps> | undefined>;
@@ -45794,19 +46286,19 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
45794
46286
  chatItemsLoadingCount: number | undefined;
45795
46287
  messagesLoading: boolean | undefined;
45796
46288
  messagesLoadingCount: number | undefined;
45797
- onChatSelect: import("./chat").OnChatSelect | undefined;
45798
- onMessageRetry: ((message: import("./chat").ChatMessageData) => void) | undefined;
46289
+ onChatSelect: import(".").OnChatSelect | undefined;
46290
+ onMessageRetry: ((message: import(".").ChatMessageData) => void) | undefined;
45799
46291
  bubbleActions: import("./chat/src/interface").ChatBubbleAction[] | undefined;
45800
- onAttachmentUpload: import("./chat").OnAttachmentUpload | undefined;
45801
- onFilterChange: import("./chat").OnFilterChange | undefined;
45802
- onNetworkError: import("./chat").OnNetworkError | undefined;
45803
- onUploadError: import("./chat").OnUploadError | undefined;
45804
- onSendError: import("./chat").OnSendError | undefined;
46292
+ onAttachmentUpload: import(".").OnAttachmentUpload | undefined;
46293
+ onFilterChange: import(".").OnFilterChange | undefined;
46294
+ onNetworkError: import(".").OnNetworkError | undefined;
46295
+ onUploadError: import(".").OnUploadError | undefined;
46296
+ onSendError: import(".").OnSendError | undefined;
45805
46297
  typingChatIds: (string | number | symbol)[];
45806
46298
  onChatClose: () => void;
45807
46299
  onChatShare: () => void;
45808
46300
  onUserProfile: () => void;
45809
- onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
46301
+ onFooterInputChange: (value: string, chatId: import(".").ChatId) => void;
45810
46302
  onChatItemsScrollToTop: () => void;
45811
46303
  onChatItemsScrollToBottom: () => void;
45812
46304
  onMessagesScrollToTop: () => void;
@@ -45814,7 +46306,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
45814
46306
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
45815
46307
  export declare const UChatListItems: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
45816
46308
  readonly chatItems: {
45817
- readonly type: import("vue").PropType<import("./chat").ChatListItemData[]>;
46309
+ readonly type: import("vue").PropType<import(".").ChatListItemData[]>;
45818
46310
  readonly default: () => never[];
45819
46311
  };
45820
46312
  readonly selectedChatId: {
@@ -45888,6 +46380,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
45888
46380
  inputSuffixColor: string;
45889
46381
  unreadNotificationBackgroundColor: string;
45890
46382
  unreadNotificationTextColor: string;
46383
+ markdownQuoteBorderColorOwn: string;
46384
+ markdownQuoteBorderColorOther: string;
46385
+ markdownQuoteTextColor: string;
46386
+ markdownDividerColorOwn: string;
46387
+ markdownDividerColorOther: string;
45891
46388
  typingIndicatorColor: string;
45892
46389
  dateSeparatorColor: string;
45893
46390
  dateSeparatorBackgroundColor: string;
@@ -46661,6 +47158,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
46661
47158
  serviceMessageTextColor: string;
46662
47159
  serviceMessageBackgroundColor: string;
46663
47160
  messageTitleColor: string;
47161
+ markdownQuoteBorderColorOwn: string;
47162
+ markdownQuoteBorderColorOther: string;
47163
+ markdownQuoteTextColor: string;
47164
+ markdownDividerColorOwn: string;
47165
+ markdownDividerColorOther: string;
47166
+ markdownH1FontSize: string;
47167
+ markdownH2FontSize: string;
47168
+ markdownH3FontSize: string;
47169
+ markdownTextFontSize: string;
46664
47170
  }, {
46665
47171
  StatusIcon: import("./_mixins").Theme<"Icon", {
46666
47172
  color: string;
@@ -46743,6 +47249,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
46743
47249
  inputSuffixColor: string;
46744
47250
  unreadNotificationBackgroundColor: string;
46745
47251
  unreadNotificationTextColor: string;
47252
+ markdownQuoteBorderColorOwn: string;
47253
+ markdownQuoteBorderColorOther: string;
47254
+ markdownQuoteTextColor: string;
47255
+ markdownDividerColorOwn: string;
47256
+ markdownDividerColorOther: string;
46746
47257
  typingIndicatorColor: string;
46747
47258
  dateSeparatorColor: string;
46748
47259
  dateSeparatorBackgroundColor: string;
@@ -47516,6 +48027,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
47516
48027
  serviceMessageTextColor: string;
47517
48028
  serviceMessageBackgroundColor: string;
47518
48029
  messageTitleColor: string;
48030
+ markdownQuoteBorderColorOwn: string;
48031
+ markdownQuoteBorderColorOther: string;
48032
+ markdownQuoteTextColor: string;
48033
+ markdownDividerColorOwn: string;
48034
+ markdownDividerColorOther: string;
48035
+ markdownH1FontSize: string;
48036
+ markdownH2FontSize: string;
48037
+ markdownH3FontSize: string;
48038
+ markdownTextFontSize: string;
47519
48039
  }, {
47520
48040
  StatusIcon: import("./_mixins").Theme<"Icon", {
47521
48041
  color: string;
@@ -47598,6 +48118,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
47598
48118
  inputSuffixColor: string;
47599
48119
  unreadNotificationBackgroundColor: string;
47600
48120
  unreadNotificationTextColor: string;
48121
+ markdownQuoteBorderColorOwn: string;
48122
+ markdownQuoteBorderColorOther: string;
48123
+ markdownQuoteTextColor: string;
48124
+ markdownDividerColorOwn: string;
48125
+ markdownDividerColorOther: string;
47601
48126
  typingIndicatorColor: string;
47602
48127
  dateSeparatorColor: string;
47603
48128
  dateSeparatorBackgroundColor: string;
@@ -48371,6 +48896,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
48371
48896
  serviceMessageTextColor: string;
48372
48897
  serviceMessageBackgroundColor: string;
48373
48898
  messageTitleColor: string;
48899
+ markdownQuoteBorderColorOwn: string;
48900
+ markdownQuoteBorderColorOther: string;
48901
+ markdownQuoteTextColor: string;
48902
+ markdownDividerColorOwn: string;
48903
+ markdownDividerColorOther: string;
48904
+ markdownH1FontSize: string;
48905
+ markdownH2FontSize: string;
48906
+ markdownH3FontSize: string;
48907
+ markdownTextFontSize: string;
48374
48908
  }, {
48375
48909
  StatusIcon: import("./_mixins").Theme<"Icon", {
48376
48910
  color: string;
@@ -48424,7 +48958,7 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
48424
48958
  }>>>;
48425
48959
  }>, {
48426
48960
  mergedClsPrefixRef: import("vue").Ref<string, string>;
48427
- mergedTheme: import("vue").Ref<{
48961
+ mergedTheme: import("vue").ComputedRef<{
48428
48962
  common: import("./config-provider").ThemeCommonVars;
48429
48963
  self: {
48430
48964
  backgroundColor: string;
@@ -48457,6 +48991,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
48457
48991
  inputSuffixColor: string;
48458
48992
  unreadNotificationBackgroundColor: string;
48459
48993
  unreadNotificationTextColor: string;
48994
+ markdownQuoteBorderColorOwn: string;
48995
+ markdownQuoteBorderColorOther: string;
48996
+ markdownQuoteTextColor: string;
48997
+ markdownDividerColorOwn: string;
48998
+ markdownDividerColorOther: string;
48460
48999
  typingIndicatorColor: string;
48461
49000
  dateSeparatorColor: string;
48462
49001
  dateSeparatorBackgroundColor: string;
@@ -49231,6 +49770,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
49231
49770
  serviceMessageTextColor: string;
49232
49771
  serviceMessageBackgroundColor: string;
49233
49772
  messageTitleColor: string;
49773
+ markdownQuoteBorderColorOwn: string;
49774
+ markdownQuoteBorderColorOther: string;
49775
+ markdownQuoteTextColor: string;
49776
+ markdownDividerColorOwn: string;
49777
+ markdownDividerColorOther: string;
49778
+ markdownH1FontSize: string;
49779
+ markdownH2FontSize: string;
49780
+ markdownH3FontSize: string;
49781
+ markdownTextFontSize: string;
49234
49782
  }, {
49235
49783
  StatusIcon: import("./_mixins").Theme<"Icon", {
49236
49784
  color: string;
@@ -49671,7 +50219,7 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
49671
50219
  } | undefined;
49672
50220
  } | undefined;
49673
50221
  };
49674
- }, {
50222
+ }> | import("vue").Ref<{
49675
50223
  common: import("./config-provider").ThemeCommonVars;
49676
50224
  self: {
49677
50225
  backgroundColor: string;
@@ -49704,6 +50252,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
49704
50252
  inputSuffixColor: string;
49705
50253
  unreadNotificationBackgroundColor: string;
49706
50254
  unreadNotificationTextColor: string;
50255
+ markdownQuoteBorderColorOwn: string;
50256
+ markdownQuoteBorderColorOther: string;
50257
+ markdownQuoteTextColor: string;
50258
+ markdownDividerColorOwn: string;
50259
+ markdownDividerColorOther: string;
49707
50260
  typingIndicatorColor: string;
49708
50261
  dateSeparatorColor: string;
49709
50262
  dateSeparatorBackgroundColor: string;
@@ -50478,6 +51031,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
50478
51031
  serviceMessageTextColor: string;
50479
51032
  serviceMessageBackgroundColor: string;
50480
51033
  messageTitleColor: string;
51034
+ markdownQuoteBorderColorOwn: string;
51035
+ markdownQuoteBorderColorOther: string;
51036
+ markdownQuoteTextColor: string;
51037
+ markdownDividerColorOwn: string;
51038
+ markdownDividerColorOther: string;
51039
+ markdownH1FontSize: string;
51040
+ markdownH2FontSize: string;
51041
+ markdownH3FontSize: string;
51042
+ markdownTextFontSize: string;
50481
51043
  }, {
50482
51044
  StatusIcon: import("./_mixins").Theme<"Icon", {
50483
51045
  color: string;
@@ -50918,7 +51480,7 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
50918
51480
  } | undefined;
50919
51481
  } | undefined;
50920
51482
  };
50921
- }> | import("vue").ComputedRef<{
51483
+ }, {
50922
51484
  common: import("./config-provider").ThemeCommonVars;
50923
51485
  self: {
50924
51486
  backgroundColor: string;
@@ -50951,6 +51513,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
50951
51513
  inputSuffixColor: string;
50952
51514
  unreadNotificationBackgroundColor: string;
50953
51515
  unreadNotificationTextColor: string;
51516
+ markdownQuoteBorderColorOwn: string;
51517
+ markdownQuoteBorderColorOther: string;
51518
+ markdownQuoteTextColor: string;
51519
+ markdownDividerColorOwn: string;
51520
+ markdownDividerColorOther: string;
50954
51521
  typingIndicatorColor: string;
50955
51522
  dateSeparatorColor: string;
50956
51523
  dateSeparatorBackgroundColor: string;
@@ -51725,6 +52292,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
51725
52292
  serviceMessageTextColor: string;
51726
52293
  serviceMessageBackgroundColor: string;
51727
52294
  messageTitleColor: string;
52295
+ markdownQuoteBorderColorOwn: string;
52296
+ markdownQuoteBorderColorOther: string;
52297
+ markdownQuoteTextColor: string;
52298
+ markdownDividerColorOwn: string;
52299
+ markdownDividerColorOther: string;
52300
+ markdownH1FontSize: string;
52301
+ markdownH2FontSize: string;
52302
+ markdownH3FontSize: string;
52303
+ markdownTextFontSize: string;
51728
52304
  }, {
51729
52305
  StatusIcon: import("./_mixins").Theme<"Icon", {
51730
52306
  color: string;
@@ -52166,7 +52742,7 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
52166
52742
  } | undefined;
52167
52743
  };
52168
52744
  }>;
52169
- renderChatItem: (item: import("./chat").ChatListItemData) => JSX.Element;
52745
+ renderChatItem: (item: import(".").ChatListItemData) => JSX.Element;
52170
52746
  cssVars: import("vue").ComputedRef<{
52171
52747
  '--u-bezier': string;
52172
52748
  '--u-color-primary': string;
@@ -52193,7 +52769,7 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
52193
52769
  onRender: () => void;
52194
52770
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
52195
52771
  readonly chatItems: {
52196
- readonly type: import("vue").PropType<import("./chat").ChatListItemData[]>;
52772
+ readonly type: import("vue").PropType<import(".").ChatListItemData[]>;
52197
52773
  readonly default: () => never[];
52198
52774
  };
52199
52775
  readonly selectedChatId: {
@@ -52267,6 +52843,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
52267
52843
  inputSuffixColor: string;
52268
52844
  unreadNotificationBackgroundColor: string;
52269
52845
  unreadNotificationTextColor: string;
52846
+ markdownQuoteBorderColorOwn: string;
52847
+ markdownQuoteBorderColorOther: string;
52848
+ markdownQuoteTextColor: string;
52849
+ markdownDividerColorOwn: string;
52850
+ markdownDividerColorOther: string;
52270
52851
  typingIndicatorColor: string;
52271
52852
  dateSeparatorColor: string;
52272
52853
  dateSeparatorBackgroundColor: string;
@@ -53040,6 +53621,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
53040
53621
  serviceMessageTextColor: string;
53041
53622
  serviceMessageBackgroundColor: string;
53042
53623
  messageTitleColor: string;
53624
+ markdownQuoteBorderColorOwn: string;
53625
+ markdownQuoteBorderColorOther: string;
53626
+ markdownQuoteTextColor: string;
53627
+ markdownDividerColorOwn: string;
53628
+ markdownDividerColorOther: string;
53629
+ markdownH1FontSize: string;
53630
+ markdownH2FontSize: string;
53631
+ markdownH3FontSize: string;
53632
+ markdownTextFontSize: string;
53043
53633
  }, {
53044
53634
  StatusIcon: import("./_mixins").Theme<"Icon", {
53045
53635
  color: string;
@@ -53122,6 +53712,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
53122
53712
  inputSuffixColor: string;
53123
53713
  unreadNotificationBackgroundColor: string;
53124
53714
  unreadNotificationTextColor: string;
53715
+ markdownQuoteBorderColorOwn: string;
53716
+ markdownQuoteBorderColorOther: string;
53717
+ markdownQuoteTextColor: string;
53718
+ markdownDividerColorOwn: string;
53719
+ markdownDividerColorOther: string;
53125
53720
  typingIndicatorColor: string;
53126
53721
  dateSeparatorColor: string;
53127
53722
  dateSeparatorBackgroundColor: string;
@@ -53895,6 +54490,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
53895
54490
  serviceMessageTextColor: string;
53896
54491
  serviceMessageBackgroundColor: string;
53897
54492
  messageTitleColor: string;
54493
+ markdownQuoteBorderColorOwn: string;
54494
+ markdownQuoteBorderColorOther: string;
54495
+ markdownQuoteTextColor: string;
54496
+ markdownDividerColorOwn: string;
54497
+ markdownDividerColorOther: string;
54498
+ markdownH1FontSize: string;
54499
+ markdownH2FontSize: string;
54500
+ markdownH3FontSize: string;
54501
+ markdownTextFontSize: string;
53898
54502
  }, {
53899
54503
  StatusIcon: import("./_mixins").Theme<"Icon", {
53900
54504
  color: string;
@@ -53977,6 +54581,11 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
53977
54581
  inputSuffixColor: string;
53978
54582
  unreadNotificationBackgroundColor: string;
53979
54583
  unreadNotificationTextColor: string;
54584
+ markdownQuoteBorderColorOwn: string;
54585
+ markdownQuoteBorderColorOther: string;
54586
+ markdownQuoteTextColor: string;
54587
+ markdownDividerColorOwn: string;
54588
+ markdownDividerColorOther: string;
53980
54589
  typingIndicatorColor: string;
53981
54590
  dateSeparatorColor: string;
53982
54591
  dateSeparatorBackgroundColor: string;
@@ -54750,6 +55359,15 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
54750
55359
  serviceMessageTextColor: string;
54751
55360
  serviceMessageBackgroundColor: string;
54752
55361
  messageTitleColor: string;
55362
+ markdownQuoteBorderColorOwn: string;
55363
+ markdownQuoteBorderColorOther: string;
55364
+ markdownQuoteTextColor: string;
55365
+ markdownDividerColorOwn: string;
55366
+ markdownDividerColorOther: string;
55367
+ markdownH1FontSize: string;
55368
+ markdownH2FontSize: string;
55369
+ markdownH3FontSize: string;
55370
+ markdownTextFontSize: string;
54753
55371
  }, {
54754
55372
  StatusIcon: import("./_mixins").Theme<"Icon", {
54755
55373
  color: string;
@@ -54805,18 +55423,18 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
54805
55423
  readonly loading: boolean;
54806
55424
  readonly typingText: string;
54807
55425
  readonly emptyProps: Partial<import("./empty").EmptyProps>;
54808
- readonly chatItems: import("./chat").ChatListItemData[];
55426
+ readonly chatItems: import(".").ChatListItemData[];
54809
55427
  readonly selectedChatId: string | number | symbol;
54810
55428
  readonly onChatSelect: (chatId: string | number | symbol) => void;
54811
55429
  readonly typingChatIds: (string | number | symbol)[];
54812
- readonly loadingCount: number;
54813
55430
  readonly avatarProps: Partial<import("./avatar").AvatarProps>;
54814
55431
  readonly badgeProps: Partial<import("./badge").BadgeProps>;
55432
+ readonly loadingCount: number;
54815
55433
  readonly notificationsShown: Set<string | number | symbol>;
54816
55434
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
54817
55435
  export declare const UChatMainArea: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
54818
55436
  readonly selectedChat: {
54819
- readonly type: import("vue").PropType<import("./chat").ChatListItemData>;
55437
+ readonly type: import("vue").PropType<import(".").ChatListItemData>;
54820
55438
  readonly default: undefined;
54821
55439
  };
54822
55440
  readonly inputValue: {
@@ -54824,7 +55442,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
54824
55442
  readonly default: undefined;
54825
55443
  };
54826
55444
  readonly messages: {
54827
- readonly type: import("vue").PropType<import("./chat").ChatMessageData[]>;
55445
+ readonly type: import("vue").PropType<import(".").ChatMessageData[]>;
54828
55446
  readonly default: () => never[];
54829
55447
  };
54830
55448
  readonly typingChatIds: {
@@ -54868,7 +55486,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
54868
55486
  readonly default: undefined;
54869
55487
  };
54870
55488
  readonly messageUploadProps: {
54871
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
55489
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
54872
55490
  readonly default: undefined;
54873
55491
  };
54874
55492
  readonly footerInputProps: {
@@ -54880,7 +55498,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
54880
55498
  readonly default: undefined;
54881
55499
  };
54882
55500
  readonly footerUploadProps: {
54883
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
55501
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
54884
55502
  readonly default: undefined;
54885
55503
  };
54886
55504
  readonly footerIconProps: {
@@ -54923,20 +55541,28 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
54923
55541
  readonly type: StringConstructor;
54924
55542
  readonly default: undefined;
54925
55543
  };
55544
+ readonly markdown: {
55545
+ readonly type: BooleanConstructor;
55546
+ readonly default: true;
55547
+ };
55548
+ readonly markdownOptions: {
55549
+ readonly type: import("vue").PropType<import(".").MarkdownOptions>;
55550
+ readonly default: undefined;
55551
+ };
54926
55552
  readonly bubbleActions: {
54927
55553
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
54928
55554
  readonly default: undefined;
54929
55555
  };
54930
55556
  readonly onMessageSend: {
54931
- readonly type: import("vue").PropType<import("./chat").OnMessageSend>;
55557
+ readonly type: import("vue").PropType<import(".").OnMessageSend>;
54932
55558
  readonly default: undefined;
54933
55559
  };
54934
55560
  readonly onMessageRetry: {
54935
- readonly type: import("vue").PropType<(message: import("./chat").ChatMessageData) => void>;
55561
+ readonly type: import("vue").PropType<(message: import(".").ChatMessageData) => void>;
54936
55562
  readonly default: undefined;
54937
55563
  };
54938
55564
  readonly onFooterInputChange: {
54939
- readonly type: import("vue").PropType<(value: string, chatId: import("./chat").ChatId) => void>;
55565
+ readonly type: import("vue").PropType<(value: string, chatId: import(".").ChatId) => void>;
54940
55566
  readonly default: undefined;
54941
55567
  };
54942
55568
  readonly 'onUpdate:inputValue': {
@@ -54956,7 +55582,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
54956
55582
  readonly default: undefined;
54957
55583
  };
54958
55584
  readonly onAttachmentUpload: {
54959
- readonly type: import("vue").PropType<import("./chat").OnAttachmentUpload>;
55585
+ readonly type: import("vue").PropType<import(".").OnAttachmentUpload>;
54960
55586
  readonly default: undefined;
54961
55587
  };
54962
55588
  readonly onAttachmentDownload: {
@@ -55002,6 +55628,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
55002
55628
  inputSuffixColor: string;
55003
55629
  unreadNotificationBackgroundColor: string;
55004
55630
  unreadNotificationTextColor: string;
55631
+ markdownQuoteBorderColorOwn: string;
55632
+ markdownQuoteBorderColorOther: string;
55633
+ markdownQuoteTextColor: string;
55634
+ markdownDividerColorOwn: string;
55635
+ markdownDividerColorOther: string;
55005
55636
  typingIndicatorColor: string;
55006
55637
  dateSeparatorColor: string;
55007
55638
  dateSeparatorBackgroundColor: string;
@@ -55775,6 +56406,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
55775
56406
  serviceMessageTextColor: string;
55776
56407
  serviceMessageBackgroundColor: string;
55777
56408
  messageTitleColor: string;
56409
+ markdownQuoteBorderColorOwn: string;
56410
+ markdownQuoteBorderColorOther: string;
56411
+ markdownQuoteTextColor: string;
56412
+ markdownDividerColorOwn: string;
56413
+ markdownDividerColorOther: string;
56414
+ markdownH1FontSize: string;
56415
+ markdownH2FontSize: string;
56416
+ markdownH3FontSize: string;
56417
+ markdownTextFontSize: string;
55778
56418
  }, {
55779
56419
  StatusIcon: import("./_mixins").Theme<"Icon", {
55780
56420
  color: string;
@@ -55857,6 +56497,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
55857
56497
  inputSuffixColor: string;
55858
56498
  unreadNotificationBackgroundColor: string;
55859
56499
  unreadNotificationTextColor: string;
56500
+ markdownQuoteBorderColorOwn: string;
56501
+ markdownQuoteBorderColorOther: string;
56502
+ markdownQuoteTextColor: string;
56503
+ markdownDividerColorOwn: string;
56504
+ markdownDividerColorOther: string;
55860
56505
  typingIndicatorColor: string;
55861
56506
  dateSeparatorColor: string;
55862
56507
  dateSeparatorBackgroundColor: string;
@@ -56630,6 +57275,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
56630
57275
  serviceMessageTextColor: string;
56631
57276
  serviceMessageBackgroundColor: string;
56632
57277
  messageTitleColor: string;
57278
+ markdownQuoteBorderColorOwn: string;
57279
+ markdownQuoteBorderColorOther: string;
57280
+ markdownQuoteTextColor: string;
57281
+ markdownDividerColorOwn: string;
57282
+ markdownDividerColorOther: string;
57283
+ markdownH1FontSize: string;
57284
+ markdownH2FontSize: string;
57285
+ markdownH3FontSize: string;
57286
+ markdownTextFontSize: string;
56633
57287
  }, {
56634
57288
  StatusIcon: import("./_mixins").Theme<"Icon", {
56635
57289
  color: string;
@@ -56712,6 +57366,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
56712
57366
  inputSuffixColor: string;
56713
57367
  unreadNotificationBackgroundColor: string;
56714
57368
  unreadNotificationTextColor: string;
57369
+ markdownQuoteBorderColorOwn: string;
57370
+ markdownQuoteBorderColorOther: string;
57371
+ markdownQuoteTextColor: string;
57372
+ markdownDividerColorOwn: string;
57373
+ markdownDividerColorOther: string;
56715
57374
  typingIndicatorColor: string;
56716
57375
  dateSeparatorColor: string;
56717
57376
  dateSeparatorBackgroundColor: string;
@@ -57485,6 +58144,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
57485
58144
  serviceMessageTextColor: string;
57486
58145
  serviceMessageBackgroundColor: string;
57487
58146
  messageTitleColor: string;
58147
+ markdownQuoteBorderColorOwn: string;
58148
+ markdownQuoteBorderColorOther: string;
58149
+ markdownQuoteTextColor: string;
58150
+ markdownDividerColorOwn: string;
58151
+ markdownDividerColorOther: string;
58152
+ markdownH1FontSize: string;
58153
+ markdownH2FontSize: string;
58154
+ markdownH3FontSize: string;
58155
+ markdownTextFontSize: string;
57488
58156
  }, {
57489
58157
  StatusIcon: import("./_mixins").Theme<"Icon", {
57490
58158
  color: string;
@@ -57538,7 +58206,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
57538
58206
  }>>>;
57539
58207
  }>, {
57540
58208
  mergedClsPrefix: import("vue").Ref<string, string>;
57541
- mergedTheme: import("vue").Ref<{
58209
+ mergedTheme: import("vue").ComputedRef<{
57542
58210
  common: import("./config-provider").ThemeCommonVars;
57543
58211
  self: {
57544
58212
  backgroundColor: string;
@@ -57571,6 +58239,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
57571
58239
  inputSuffixColor: string;
57572
58240
  unreadNotificationBackgroundColor: string;
57573
58241
  unreadNotificationTextColor: string;
58242
+ markdownQuoteBorderColorOwn: string;
58243
+ markdownQuoteBorderColorOther: string;
58244
+ markdownQuoteTextColor: string;
58245
+ markdownDividerColorOwn: string;
58246
+ markdownDividerColorOther: string;
57574
58247
  typingIndicatorColor: string;
57575
58248
  dateSeparatorColor: string;
57576
58249
  dateSeparatorBackgroundColor: string;
@@ -58345,6 +59018,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
58345
59018
  serviceMessageTextColor: string;
58346
59019
  serviceMessageBackgroundColor: string;
58347
59020
  messageTitleColor: string;
59021
+ markdownQuoteBorderColorOwn: string;
59022
+ markdownQuoteBorderColorOther: string;
59023
+ markdownQuoteTextColor: string;
59024
+ markdownDividerColorOwn: string;
59025
+ markdownDividerColorOther: string;
59026
+ markdownH1FontSize: string;
59027
+ markdownH2FontSize: string;
59028
+ markdownH3FontSize: string;
59029
+ markdownTextFontSize: string;
58348
59030
  }, {
58349
59031
  StatusIcon: import("./_mixins").Theme<"Icon", {
58350
59032
  color: string;
@@ -58785,7 +59467,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
58785
59467
  } | undefined;
58786
59468
  } | undefined;
58787
59469
  };
58788
- }, {
59470
+ }> | import("vue").Ref<{
58789
59471
  common: import("./config-provider").ThemeCommonVars;
58790
59472
  self: {
58791
59473
  backgroundColor: string;
@@ -58818,6 +59500,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
58818
59500
  inputSuffixColor: string;
58819
59501
  unreadNotificationBackgroundColor: string;
58820
59502
  unreadNotificationTextColor: string;
59503
+ markdownQuoteBorderColorOwn: string;
59504
+ markdownQuoteBorderColorOther: string;
59505
+ markdownQuoteTextColor: string;
59506
+ markdownDividerColorOwn: string;
59507
+ markdownDividerColorOther: string;
58821
59508
  typingIndicatorColor: string;
58822
59509
  dateSeparatorColor: string;
58823
59510
  dateSeparatorBackgroundColor: string;
@@ -59592,6 +60279,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
59592
60279
  serviceMessageTextColor: string;
59593
60280
  serviceMessageBackgroundColor: string;
59594
60281
  messageTitleColor: string;
60282
+ markdownQuoteBorderColorOwn: string;
60283
+ markdownQuoteBorderColorOther: string;
60284
+ markdownQuoteTextColor: string;
60285
+ markdownDividerColorOwn: string;
60286
+ markdownDividerColorOther: string;
60287
+ markdownH1FontSize: string;
60288
+ markdownH2FontSize: string;
60289
+ markdownH3FontSize: string;
60290
+ markdownTextFontSize: string;
59595
60291
  }, {
59596
60292
  StatusIcon: import("./_mixins").Theme<"Icon", {
59597
60293
  color: string;
@@ -60032,7 +60728,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
60032
60728
  } | undefined;
60033
60729
  } | undefined;
60034
60730
  };
60035
- }> | import("vue").ComputedRef<{
60731
+ }, {
60036
60732
  common: import("./config-provider").ThemeCommonVars;
60037
60733
  self: {
60038
60734
  backgroundColor: string;
@@ -60065,6 +60761,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
60065
60761
  inputSuffixColor: string;
60066
60762
  unreadNotificationBackgroundColor: string;
60067
60763
  unreadNotificationTextColor: string;
60764
+ markdownQuoteBorderColorOwn: string;
60765
+ markdownQuoteBorderColorOther: string;
60766
+ markdownQuoteTextColor: string;
60767
+ markdownDividerColorOwn: string;
60768
+ markdownDividerColorOther: string;
60068
60769
  typingIndicatorColor: string;
60069
60770
  dateSeparatorColor: string;
60070
60771
  dateSeparatorBackgroundColor: string;
@@ -60839,6 +61540,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
60839
61540
  serviceMessageTextColor: string;
60840
61541
  serviceMessageBackgroundColor: string;
60841
61542
  messageTitleColor: string;
61543
+ markdownQuoteBorderColorOwn: string;
61544
+ markdownQuoteBorderColorOther: string;
61545
+ markdownQuoteTextColor: string;
61546
+ markdownDividerColorOwn: string;
61547
+ markdownDividerColorOther: string;
61548
+ markdownH1FontSize: string;
61549
+ markdownH2FontSize: string;
61550
+ markdownH3FontSize: string;
61551
+ markdownTextFontSize: string;
60842
61552
  }, {
60843
61553
  StatusIcon: import("./_mixins").Theme<"Icon", {
60844
61554
  color: string;
@@ -61298,10 +62008,10 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
61298
62008
  handleSendMessage: () => Promise<void>;
61299
62009
  handleMessagesScroll: (e: Event) => void;
61300
62010
  scrollToBottom: () => void;
61301
- editingMessage: import("vue").Ref<import("./chat").ChatMessageData | null, import("./chat").ChatMessageData | null>;
62011
+ editingMessage: import("vue").Ref<import(".").ChatMessageData | null, import(".").ChatMessageData | null>;
61302
62012
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
61303
62013
  readonly selectedChat: {
61304
- readonly type: import("vue").PropType<import("./chat").ChatListItemData>;
62014
+ readonly type: import("vue").PropType<import(".").ChatListItemData>;
61305
62015
  readonly default: undefined;
61306
62016
  };
61307
62017
  readonly inputValue: {
@@ -61309,7 +62019,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
61309
62019
  readonly default: undefined;
61310
62020
  };
61311
62021
  readonly messages: {
61312
- readonly type: import("vue").PropType<import("./chat").ChatMessageData[]>;
62022
+ readonly type: import("vue").PropType<import(".").ChatMessageData[]>;
61313
62023
  readonly default: () => never[];
61314
62024
  };
61315
62025
  readonly typingChatIds: {
@@ -61353,7 +62063,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
61353
62063
  readonly default: undefined;
61354
62064
  };
61355
62065
  readonly messageUploadProps: {
61356
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
62066
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
61357
62067
  readonly default: undefined;
61358
62068
  };
61359
62069
  readonly footerInputProps: {
@@ -61365,7 +62075,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
61365
62075
  readonly default: undefined;
61366
62076
  };
61367
62077
  readonly footerUploadProps: {
61368
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
62078
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
61369
62079
  readonly default: undefined;
61370
62080
  };
61371
62081
  readonly footerIconProps: {
@@ -61408,20 +62118,28 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
61408
62118
  readonly type: StringConstructor;
61409
62119
  readonly default: undefined;
61410
62120
  };
62121
+ readonly markdown: {
62122
+ readonly type: BooleanConstructor;
62123
+ readonly default: true;
62124
+ };
62125
+ readonly markdownOptions: {
62126
+ readonly type: import("vue").PropType<import(".").MarkdownOptions>;
62127
+ readonly default: undefined;
62128
+ };
61411
62129
  readonly bubbleActions: {
61412
62130
  readonly type: import("vue").PropType<import("./chat/src/interface").ChatBubbleAction[]>;
61413
62131
  readonly default: undefined;
61414
62132
  };
61415
62133
  readonly onMessageSend: {
61416
- readonly type: import("vue").PropType<import("./chat").OnMessageSend>;
62134
+ readonly type: import("vue").PropType<import(".").OnMessageSend>;
61417
62135
  readonly default: undefined;
61418
62136
  };
61419
62137
  readonly onMessageRetry: {
61420
- readonly type: import("vue").PropType<(message: import("./chat").ChatMessageData) => void>;
62138
+ readonly type: import("vue").PropType<(message: import(".").ChatMessageData) => void>;
61421
62139
  readonly default: undefined;
61422
62140
  };
61423
62141
  readonly onFooterInputChange: {
61424
- readonly type: import("vue").PropType<(value: string, chatId: import("./chat").ChatId) => void>;
62142
+ readonly type: import("vue").PropType<(value: string, chatId: import(".").ChatId) => void>;
61425
62143
  readonly default: undefined;
61426
62144
  };
61427
62145
  readonly 'onUpdate:inputValue': {
@@ -61441,7 +62159,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
61441
62159
  readonly default: undefined;
61442
62160
  };
61443
62161
  readonly onAttachmentUpload: {
61444
- readonly type: import("vue").PropType<import("./chat").OnAttachmentUpload>;
62162
+ readonly type: import("vue").PropType<import(".").OnAttachmentUpload>;
61445
62163
  readonly default: undefined;
61446
62164
  };
61447
62165
  readonly onAttachmentDownload: {
@@ -61487,6 +62205,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
61487
62205
  inputSuffixColor: string;
61488
62206
  unreadNotificationBackgroundColor: string;
61489
62207
  unreadNotificationTextColor: string;
62208
+ markdownQuoteBorderColorOwn: string;
62209
+ markdownQuoteBorderColorOther: string;
62210
+ markdownQuoteTextColor: string;
62211
+ markdownDividerColorOwn: string;
62212
+ markdownDividerColorOther: string;
61490
62213
  typingIndicatorColor: string;
61491
62214
  dateSeparatorColor: string;
61492
62215
  dateSeparatorBackgroundColor: string;
@@ -62260,6 +62983,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
62260
62983
  serviceMessageTextColor: string;
62261
62984
  serviceMessageBackgroundColor: string;
62262
62985
  messageTitleColor: string;
62986
+ markdownQuoteBorderColorOwn: string;
62987
+ markdownQuoteBorderColorOther: string;
62988
+ markdownQuoteTextColor: string;
62989
+ markdownDividerColorOwn: string;
62990
+ markdownDividerColorOther: string;
62991
+ markdownH1FontSize: string;
62992
+ markdownH2FontSize: string;
62993
+ markdownH3FontSize: string;
62994
+ markdownTextFontSize: string;
62263
62995
  }, {
62264
62996
  StatusIcon: import("./_mixins").Theme<"Icon", {
62265
62997
  color: string;
@@ -62342,6 +63074,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
62342
63074
  inputSuffixColor: string;
62343
63075
  unreadNotificationBackgroundColor: string;
62344
63076
  unreadNotificationTextColor: string;
63077
+ markdownQuoteBorderColorOwn: string;
63078
+ markdownQuoteBorderColorOther: string;
63079
+ markdownQuoteTextColor: string;
63080
+ markdownDividerColorOwn: string;
63081
+ markdownDividerColorOther: string;
62345
63082
  typingIndicatorColor: string;
62346
63083
  dateSeparatorColor: string;
62347
63084
  dateSeparatorBackgroundColor: string;
@@ -63115,6 +63852,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
63115
63852
  serviceMessageTextColor: string;
63116
63853
  serviceMessageBackgroundColor: string;
63117
63854
  messageTitleColor: string;
63855
+ markdownQuoteBorderColorOwn: string;
63856
+ markdownQuoteBorderColorOther: string;
63857
+ markdownQuoteTextColor: string;
63858
+ markdownDividerColorOwn: string;
63859
+ markdownDividerColorOther: string;
63860
+ markdownH1FontSize: string;
63861
+ markdownH2FontSize: string;
63862
+ markdownH3FontSize: string;
63863
+ markdownTextFontSize: string;
63118
63864
  }, {
63119
63865
  StatusIcon: import("./_mixins").Theme<"Icon", {
63120
63866
  color: string;
@@ -63197,6 +63943,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
63197
63943
  inputSuffixColor: string;
63198
63944
  unreadNotificationBackgroundColor: string;
63199
63945
  unreadNotificationTextColor: string;
63946
+ markdownQuoteBorderColorOwn: string;
63947
+ markdownQuoteBorderColorOther: string;
63948
+ markdownQuoteTextColor: string;
63949
+ markdownDividerColorOwn: string;
63950
+ markdownDividerColorOther: string;
63200
63951
  typingIndicatorColor: string;
63201
63952
  dateSeparatorColor: string;
63202
63953
  dateSeparatorBackgroundColor: string;
@@ -63970,6 +64721,15 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
63970
64721
  serviceMessageTextColor: string;
63971
64722
  serviceMessageBackgroundColor: string;
63972
64723
  messageTitleColor: string;
64724
+ markdownQuoteBorderColorOwn: string;
64725
+ markdownQuoteBorderColorOther: string;
64726
+ markdownQuoteTextColor: string;
64727
+ markdownDividerColorOwn: string;
64728
+ markdownDividerColorOther: string;
64729
+ markdownH1FontSize: string;
64730
+ markdownH2FontSize: string;
64731
+ markdownH3FontSize: string;
64732
+ markdownTextFontSize: string;
63973
64733
  }, {
63974
64734
  StatusIcon: import("./_mixins").Theme<"Icon", {
63975
64735
  color: string;
@@ -64030,9 +64790,11 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
64030
64790
  readonly shareButtonTooltip: string;
64031
64791
  readonly profileButtonTooltip: string;
64032
64792
  readonly unreadNotificationText: string;
64793
+ readonly markdown: boolean;
64794
+ readonly markdownOptions: import(".").MarkdownOptions;
64033
64795
  readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
64034
64796
  readonly inputValue: string;
64035
- readonly messages: import("./chat").ChatMessageData[];
64797
+ readonly messages: import(".").ChatMessageData[];
64036
64798
  readonly headerButtonProps: Partial<import("./button").ButtonProps>;
64037
64799
  readonly headerIconProps: Partial<import("./icon").IconProps>;
64038
64800
  readonly headerShareButtonProps: Partial<import("./button").ButtonProps>;
@@ -64040,31 +64802,31 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
64040
64802
  readonly headerCloseButtonProps: Partial<import("./button").ButtonProps>;
64041
64803
  readonly headerShareIconProps: Partial<import("./icon").IconProps>;
64042
64804
  readonly headerProfileIconProps: Partial<import("./icon").IconProps>;
64043
- readonly messageUploadProps: Partial<import("./upload").UploadProps>;
64805
+ readonly messageUploadProps: Partial<import(".").UploadProps>;
64044
64806
  readonly footerInputProps: Partial<import("./input").InputProps>;
64045
64807
  readonly footerButtonProps: Partial<import("./button").ButtonProps>;
64046
- readonly footerUploadProps: Partial<import("./upload").UploadProps>;
64808
+ readonly footerUploadProps: Partial<import(".").UploadProps>;
64047
64809
  readonly footerIconProps: Partial<import("./icon").IconProps>;
64048
64810
  readonly footerSuffixIconProps: Partial<import("./icon").IconProps>;
64049
- readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
64811
+ readonly onMessageRetry: (message: import(".").ChatMessageData) => void;
64050
64812
  readonly bubbleActions: import("./chat/src/interface").ChatBubbleAction[];
64051
- readonly onAttachmentUpload: import("./chat").OnAttachmentUpload;
64813
+ readonly onAttachmentUpload: import(".").OnAttachmentUpload;
64052
64814
  readonly typingChatIds: (string | number | symbol)[];
64053
64815
  readonly onChatClose: () => void;
64054
64816
  readonly onChatShare: () => void;
64055
64817
  readonly onUserProfile: () => void;
64056
- readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
64818
+ readonly onFooterInputChange: (value: string, chatId: import(".").ChatId) => void;
64057
64819
  readonly onMessagesScrollToTop: () => void;
64058
64820
  readonly onMessagesScrollToBottom: () => void;
64821
+ readonly 'onUpdate:inputValue': (value: string) => void;
64822
+ readonly selectedChat: import(".").ChatListItemData;
64059
64823
  readonly loadingCount: number;
64060
- readonly selectedChat: import("./chat").ChatListItemData;
64061
64824
  readonly showAttachButton: boolean;
64062
- readonly onMessageSend: import("./chat").OnMessageSend;
64063
- readonly 'onUpdate:inputValue': (value: string) => void;
64825
+ readonly onMessageSend: import(".").OnMessageSend;
64064
64826
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
64065
64827
  export declare const UChatMessages: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
64066
64828
  readonly messages: {
64067
- readonly type: import("vue").PropType<import("./chat").ChatMessageData[]>;
64829
+ readonly type: import("vue").PropType<import(".").ChatMessageData[]>;
64068
64830
  readonly default: () => never[];
64069
64831
  };
64070
64832
  readonly loading: {
@@ -64091,8 +64853,16 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
64091
64853
  readonly type: StringConstructor;
64092
64854
  readonly default: undefined;
64093
64855
  };
64856
+ readonly markdown: {
64857
+ readonly type: BooleanConstructor;
64858
+ readonly default: true;
64859
+ };
64860
+ readonly markdownOptions: {
64861
+ readonly type: import("vue").PropType<import(".").MarkdownOptions>;
64862
+ readonly default: undefined;
64863
+ };
64094
64864
  readonly uploadProps: {
64095
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
64865
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
64096
64866
  readonly default: undefined;
64097
64867
  };
64098
64868
  readonly showUnreadNotification: {
@@ -64108,7 +64878,7 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
64108
64878
  readonly default: undefined;
64109
64879
  };
64110
64880
  readonly onMessageRetry: {
64111
- readonly type: import("vue").PropType<(message: import("./chat").ChatMessageData) => void>;
64881
+ readonly type: import("vue").PropType<(message: import(".").ChatMessageData) => void>;
64112
64882
  readonly default: undefined;
64113
64883
  };
64114
64884
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"Chat", {
@@ -64142,6 +64912,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
64142
64912
  inputSuffixColor: string;
64143
64913
  unreadNotificationBackgroundColor: string;
64144
64914
  unreadNotificationTextColor: string;
64915
+ markdownQuoteBorderColorOwn: string;
64916
+ markdownQuoteBorderColorOther: string;
64917
+ markdownQuoteTextColor: string;
64918
+ markdownDividerColorOwn: string;
64919
+ markdownDividerColorOther: string;
64145
64920
  typingIndicatorColor: string;
64146
64921
  dateSeparatorColor: string;
64147
64922
  dateSeparatorBackgroundColor: string;
@@ -64915,6 +65690,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
64915
65690
  serviceMessageTextColor: string;
64916
65691
  serviceMessageBackgroundColor: string;
64917
65692
  messageTitleColor: string;
65693
+ markdownQuoteBorderColorOwn: string;
65694
+ markdownQuoteBorderColorOther: string;
65695
+ markdownQuoteTextColor: string;
65696
+ markdownDividerColorOwn: string;
65697
+ markdownDividerColorOther: string;
65698
+ markdownH1FontSize: string;
65699
+ markdownH2FontSize: string;
65700
+ markdownH3FontSize: string;
65701
+ markdownTextFontSize: string;
64918
65702
  }, {
64919
65703
  StatusIcon: import("./_mixins").Theme<"Icon", {
64920
65704
  color: string;
@@ -64997,6 +65781,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
64997
65781
  inputSuffixColor: string;
64998
65782
  unreadNotificationBackgroundColor: string;
64999
65783
  unreadNotificationTextColor: string;
65784
+ markdownQuoteBorderColorOwn: string;
65785
+ markdownQuoteBorderColorOther: string;
65786
+ markdownQuoteTextColor: string;
65787
+ markdownDividerColorOwn: string;
65788
+ markdownDividerColorOther: string;
65000
65789
  typingIndicatorColor: string;
65001
65790
  dateSeparatorColor: string;
65002
65791
  dateSeparatorBackgroundColor: string;
@@ -65770,6 +66559,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
65770
66559
  serviceMessageTextColor: string;
65771
66560
  serviceMessageBackgroundColor: string;
65772
66561
  messageTitleColor: string;
66562
+ markdownQuoteBorderColorOwn: string;
66563
+ markdownQuoteBorderColorOther: string;
66564
+ markdownQuoteTextColor: string;
66565
+ markdownDividerColorOwn: string;
66566
+ markdownDividerColorOther: string;
66567
+ markdownH1FontSize: string;
66568
+ markdownH2FontSize: string;
66569
+ markdownH3FontSize: string;
66570
+ markdownTextFontSize: string;
65773
66571
  }, {
65774
66572
  StatusIcon: import("./_mixins").Theme<"Icon", {
65775
66573
  color: string;
@@ -65852,6 +66650,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
65852
66650
  inputSuffixColor: string;
65853
66651
  unreadNotificationBackgroundColor: string;
65854
66652
  unreadNotificationTextColor: string;
66653
+ markdownQuoteBorderColorOwn: string;
66654
+ markdownQuoteBorderColorOther: string;
66655
+ markdownQuoteTextColor: string;
66656
+ markdownDividerColorOwn: string;
66657
+ markdownDividerColorOther: string;
65855
66658
  typingIndicatorColor: string;
65856
66659
  dateSeparatorColor: string;
65857
66660
  dateSeparatorBackgroundColor: string;
@@ -66625,6 +67428,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
66625
67428
  serviceMessageTextColor: string;
66626
67429
  serviceMessageBackgroundColor: string;
66627
67430
  messageTitleColor: string;
67431
+ markdownQuoteBorderColorOwn: string;
67432
+ markdownQuoteBorderColorOther: string;
67433
+ markdownQuoteTextColor: string;
67434
+ markdownDividerColorOwn: string;
67435
+ markdownDividerColorOther: string;
67436
+ markdownH1FontSize: string;
67437
+ markdownH2FontSize: string;
67438
+ markdownH3FontSize: string;
67439
+ markdownTextFontSize: string;
66628
67440
  }, {
66629
67441
  StatusIcon: import("./_mixins").Theme<"Icon", {
66630
67442
  color: string;
@@ -66678,7 +67490,7 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
66678
67490
  }>>>;
66679
67491
  }>, {
66680
67492
  mergedClsPrefixRef: import("vue").Ref<string, string>;
66681
- mergedTheme: import("vue").Ref<{
67493
+ mergedTheme: import("vue").ComputedRef<{
66682
67494
  common: import("./config-provider").ThemeCommonVars;
66683
67495
  self: {
66684
67496
  backgroundColor: string;
@@ -66711,6 +67523,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
66711
67523
  inputSuffixColor: string;
66712
67524
  unreadNotificationBackgroundColor: string;
66713
67525
  unreadNotificationTextColor: string;
67526
+ markdownQuoteBorderColorOwn: string;
67527
+ markdownQuoteBorderColorOther: string;
67528
+ markdownQuoteTextColor: string;
67529
+ markdownDividerColorOwn: string;
67530
+ markdownDividerColorOther: string;
66714
67531
  typingIndicatorColor: string;
66715
67532
  dateSeparatorColor: string;
66716
67533
  dateSeparatorBackgroundColor: string;
@@ -67485,6 +68302,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
67485
68302
  serviceMessageTextColor: string;
67486
68303
  serviceMessageBackgroundColor: string;
67487
68304
  messageTitleColor: string;
68305
+ markdownQuoteBorderColorOwn: string;
68306
+ markdownQuoteBorderColorOther: string;
68307
+ markdownQuoteTextColor: string;
68308
+ markdownDividerColorOwn: string;
68309
+ markdownDividerColorOther: string;
68310
+ markdownH1FontSize: string;
68311
+ markdownH2FontSize: string;
68312
+ markdownH3FontSize: string;
68313
+ markdownTextFontSize: string;
67488
68314
  }, {
67489
68315
  StatusIcon: import("./_mixins").Theme<"Icon", {
67490
68316
  color: string;
@@ -67925,7 +68751,7 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
67925
68751
  } | undefined;
67926
68752
  } | undefined;
67927
68753
  };
67928
- }, {
68754
+ }> | import("vue").Ref<{
67929
68755
  common: import("./config-provider").ThemeCommonVars;
67930
68756
  self: {
67931
68757
  backgroundColor: string;
@@ -67958,6 +68784,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
67958
68784
  inputSuffixColor: string;
67959
68785
  unreadNotificationBackgroundColor: string;
67960
68786
  unreadNotificationTextColor: string;
68787
+ markdownQuoteBorderColorOwn: string;
68788
+ markdownQuoteBorderColorOther: string;
68789
+ markdownQuoteTextColor: string;
68790
+ markdownDividerColorOwn: string;
68791
+ markdownDividerColorOther: string;
67961
68792
  typingIndicatorColor: string;
67962
68793
  dateSeparatorColor: string;
67963
68794
  dateSeparatorBackgroundColor: string;
@@ -68732,6 +69563,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
68732
69563
  serviceMessageTextColor: string;
68733
69564
  serviceMessageBackgroundColor: string;
68734
69565
  messageTitleColor: string;
69566
+ markdownQuoteBorderColorOwn: string;
69567
+ markdownQuoteBorderColorOther: string;
69568
+ markdownQuoteTextColor: string;
69569
+ markdownDividerColorOwn: string;
69570
+ markdownDividerColorOther: string;
69571
+ markdownH1FontSize: string;
69572
+ markdownH2FontSize: string;
69573
+ markdownH3FontSize: string;
69574
+ markdownTextFontSize: string;
68735
69575
  }, {
68736
69576
  StatusIcon: import("./_mixins").Theme<"Icon", {
68737
69577
  color: string;
@@ -69172,7 +70012,7 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
69172
70012
  } | undefined;
69173
70013
  } | undefined;
69174
70014
  };
69175
- }> | import("vue").ComputedRef<{
70015
+ }, {
69176
70016
  common: import("./config-provider").ThemeCommonVars;
69177
70017
  self: {
69178
70018
  backgroundColor: string;
@@ -69205,6 +70045,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
69205
70045
  inputSuffixColor: string;
69206
70046
  unreadNotificationBackgroundColor: string;
69207
70047
  unreadNotificationTextColor: string;
70048
+ markdownQuoteBorderColorOwn: string;
70049
+ markdownQuoteBorderColorOther: string;
70050
+ markdownQuoteTextColor: string;
70051
+ markdownDividerColorOwn: string;
70052
+ markdownDividerColorOther: string;
69208
70053
  typingIndicatorColor: string;
69209
70054
  dateSeparatorColor: string;
69210
70055
  dateSeparatorBackgroundColor: string;
@@ -69979,6 +70824,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
69979
70824
  serviceMessageTextColor: string;
69980
70825
  serviceMessageBackgroundColor: string;
69981
70826
  messageTitleColor: string;
70827
+ markdownQuoteBorderColorOwn: string;
70828
+ markdownQuoteBorderColorOther: string;
70829
+ markdownQuoteTextColor: string;
70830
+ markdownDividerColorOwn: string;
70831
+ markdownDividerColorOther: string;
70832
+ markdownH1FontSize: string;
70833
+ markdownH2FontSize: string;
70834
+ markdownH3FontSize: string;
70835
+ markdownTextFontSize: string;
69982
70836
  }, {
69983
70837
  StatusIcon: import("./_mixins").Theme<"Icon", {
69984
70838
  color: string;
@@ -70420,8 +71274,8 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
70420
71274
  } | undefined;
70421
71275
  };
70422
71276
  }>;
70423
- renderMessage: (message: import("./chat").ChatMessageData) => JSX.Element;
70424
- renderMarkMessage: (message: import("./chat").ChatMessageData) => JSX.Element;
71277
+ renderMessage: (message: import(".").ChatMessageData) => JSX.Element;
71278
+ renderMarkMessage: (message: import(".").ChatMessageData) => JSX.Element;
70425
71279
  renderSkeletonMessage: (isOwn: boolean, index: number) => JSX.Element;
70426
71280
  renderDateSeparator: (date: string) => JSX.Element;
70427
71281
  renderUnreadNotification: () => JSX.Element;
@@ -70430,7 +71284,7 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
70430
71284
  onRender: () => void;
70431
71285
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
70432
71286
  readonly messages: {
70433
- readonly type: import("vue").PropType<import("./chat").ChatMessageData[]>;
71287
+ readonly type: import("vue").PropType<import(".").ChatMessageData[]>;
70434
71288
  readonly default: () => never[];
70435
71289
  };
70436
71290
  readonly loading: {
@@ -70457,8 +71311,16 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
70457
71311
  readonly type: StringConstructor;
70458
71312
  readonly default: undefined;
70459
71313
  };
71314
+ readonly markdown: {
71315
+ readonly type: BooleanConstructor;
71316
+ readonly default: true;
71317
+ };
71318
+ readonly markdownOptions: {
71319
+ readonly type: import("vue").PropType<import(".").MarkdownOptions>;
71320
+ readonly default: undefined;
71321
+ };
70460
71322
  readonly uploadProps: {
70461
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
71323
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
70462
71324
  readonly default: undefined;
70463
71325
  };
70464
71326
  readonly showUnreadNotification: {
@@ -70474,7 +71336,7 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
70474
71336
  readonly default: undefined;
70475
71337
  };
70476
71338
  readonly onMessageRetry: {
70477
- readonly type: import("vue").PropType<(message: import("./chat").ChatMessageData) => void>;
71339
+ readonly type: import("vue").PropType<(message: import(".").ChatMessageData) => void>;
70478
71340
  readonly default: undefined;
70479
71341
  };
70480
71342
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"Chat", {
@@ -70508,6 +71370,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
70508
71370
  inputSuffixColor: string;
70509
71371
  unreadNotificationBackgroundColor: string;
70510
71372
  unreadNotificationTextColor: string;
71373
+ markdownQuoteBorderColorOwn: string;
71374
+ markdownQuoteBorderColorOther: string;
71375
+ markdownQuoteTextColor: string;
71376
+ markdownDividerColorOwn: string;
71377
+ markdownDividerColorOther: string;
70511
71378
  typingIndicatorColor: string;
70512
71379
  dateSeparatorColor: string;
70513
71380
  dateSeparatorBackgroundColor: string;
@@ -71281,6 +72148,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
71281
72148
  serviceMessageTextColor: string;
71282
72149
  serviceMessageBackgroundColor: string;
71283
72150
  messageTitleColor: string;
72151
+ markdownQuoteBorderColorOwn: string;
72152
+ markdownQuoteBorderColorOther: string;
72153
+ markdownQuoteTextColor: string;
72154
+ markdownDividerColorOwn: string;
72155
+ markdownDividerColorOther: string;
72156
+ markdownH1FontSize: string;
72157
+ markdownH2FontSize: string;
72158
+ markdownH3FontSize: string;
72159
+ markdownTextFontSize: string;
71284
72160
  }, {
71285
72161
  StatusIcon: import("./_mixins").Theme<"Icon", {
71286
72162
  color: string;
@@ -71363,6 +72239,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
71363
72239
  inputSuffixColor: string;
71364
72240
  unreadNotificationBackgroundColor: string;
71365
72241
  unreadNotificationTextColor: string;
72242
+ markdownQuoteBorderColorOwn: string;
72243
+ markdownQuoteBorderColorOther: string;
72244
+ markdownQuoteTextColor: string;
72245
+ markdownDividerColorOwn: string;
72246
+ markdownDividerColorOther: string;
71366
72247
  typingIndicatorColor: string;
71367
72248
  dateSeparatorColor: string;
71368
72249
  dateSeparatorBackgroundColor: string;
@@ -72136,6 +73017,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
72136
73017
  serviceMessageTextColor: string;
72137
73018
  serviceMessageBackgroundColor: string;
72138
73019
  messageTitleColor: string;
73020
+ markdownQuoteBorderColorOwn: string;
73021
+ markdownQuoteBorderColorOther: string;
73022
+ markdownQuoteTextColor: string;
73023
+ markdownDividerColorOwn: string;
73024
+ markdownDividerColorOther: string;
73025
+ markdownH1FontSize: string;
73026
+ markdownH2FontSize: string;
73027
+ markdownH3FontSize: string;
73028
+ markdownTextFontSize: string;
72139
73029
  }, {
72140
73030
  StatusIcon: import("./_mixins").Theme<"Icon", {
72141
73031
  color: string;
@@ -72218,6 +73108,11 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
72218
73108
  inputSuffixColor: string;
72219
73109
  unreadNotificationBackgroundColor: string;
72220
73110
  unreadNotificationTextColor: string;
73111
+ markdownQuoteBorderColorOwn: string;
73112
+ markdownQuoteBorderColorOther: string;
73113
+ markdownQuoteTextColor: string;
73114
+ markdownDividerColorOwn: string;
73115
+ markdownDividerColorOther: string;
72221
73116
  typingIndicatorColor: string;
72222
73117
  dateSeparatorColor: string;
72223
73118
  dateSeparatorBackgroundColor: string;
@@ -72991,6 +73886,15 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
72991
73886
  serviceMessageTextColor: string;
72992
73887
  serviceMessageBackgroundColor: string;
72993
73888
  messageTitleColor: string;
73889
+ markdownQuoteBorderColorOwn: string;
73890
+ markdownQuoteBorderColorOther: string;
73891
+ markdownQuoteTextColor: string;
73892
+ markdownDividerColorOwn: string;
73893
+ markdownDividerColorOther: string;
73894
+ markdownH1FontSize: string;
73895
+ markdownH2FontSize: string;
73896
+ markdownH3FontSize: string;
73897
+ markdownTextFontSize: string;
72994
73898
  }, {
72995
73899
  StatusIcon: import("./_mixins").Theme<"Icon", {
72996
73900
  color: string;
@@ -73047,10 +73951,12 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
73047
73951
  readonly typingText: string;
73048
73952
  readonly retryText: string;
73049
73953
  readonly unreadNotificationText: string;
73050
- readonly uploadProps: Partial<import("./upload").UploadProps>;
73954
+ readonly markdown: boolean;
73955
+ readonly markdownOptions: import(".").MarkdownOptions;
73956
+ readonly uploadProps: Partial<import(".").UploadProps>;
73051
73957
  readonly selectedChatId: string | number | symbol;
73052
- readonly messages: import("./chat").ChatMessageData[];
73053
- readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
73958
+ readonly messages: import(".").ChatMessageData[];
73959
+ readonly onMessageRetry: (message: import(".").ChatMessageData) => void;
73054
73960
  readonly typingChatIds: (string | number | symbol)[];
73055
73961
  readonly loadingCount: number;
73056
73962
  readonly showUnreadNotification: boolean;
@@ -76430,9 +77336,9 @@ export declare const UCrop: import("vue").DefineComponent<import("vue").ExtractP
76430
77336
  export type * from './data-table';
76431
77337
  export { dataTableProps } from './data-table';
76432
77338
  export declare const UDataTable: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
76433
- readonly onUnstableColumnResize: import("vue").PropType<(resizedWidth: number, limitedWidth: number, column: import("./data-table").DataTableBaseColumn, getColumnWidth: (key: import("./data-table").DataTableColumnKey) => number | undefined) => void>;
77339
+ readonly onUnstableColumnResize: import("vue").PropType<(resizedWidth: number, limitedWidth: number, column: import(".").DataTableBaseColumn, getColumnWidth: (key: import(".").DataTableColumnKey) => number | undefined) => void>;
76434
77340
  readonly pagination: {
76435
- readonly type: import("vue").PropType<false | import("./pagination").PaginationProps>;
77341
+ readonly type: import("vue").PropType<false | import(".").PaginationProps>;
76436
77342
  readonly default: false;
76437
77343
  };
76438
77344
  readonly paginateSinglePage: {
@@ -76442,15 +77348,15 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
76442
77348
  readonly minHeight: import("vue").PropType<string | number>;
76443
77349
  readonly maxHeight: import("vue").PropType<string | number>;
76444
77350
  readonly columns: {
76445
- readonly type: import("vue").PropType<import("./data-table").DataTableColumns<any>>;
77351
+ readonly type: import("vue").PropType<import(".").DataTableColumns<any>>;
76446
77352
  readonly default: () => never[];
76447
77353
  };
76448
- readonly rowClassName: import("vue").PropType<string | import("./data-table").DataTableCreateRowClassName<any>>;
76449
- readonly rowProps: import("vue").PropType<import("./data-table").DataTableCreateRowProps<any>>;
76450
- readonly rowKey: import("vue").PropType<import("./data-table").DataTableCreateRowKey<any>>;
76451
- readonly summary: import("vue").PropType<import("./data-table").DataTableCreateSummary<any>>;
77354
+ readonly rowClassName: import("vue").PropType<string | import(".").DataTableCreateRowClassName<any>>;
77355
+ readonly rowProps: import("vue").PropType<import(".").DataTableCreateRowProps<any>>;
77356
+ readonly rowKey: import("vue").PropType<import(".").DataTableCreateRowKey<any>>;
77357
+ readonly summary: import("vue").PropType<import(".").DataTableCreateSummary<any>>;
76452
77358
  readonly data: {
76453
- readonly type: import("vue").PropType<import("./data-table").DataTableRowData[]>;
77359
+ readonly type: import("vue").PropType<import(".").DataTableRowData[]>;
76454
77360
  readonly default: () => never[];
76455
77361
  };
76456
77362
  readonly loading: BooleanConstructor;
@@ -76466,26 +77372,26 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
76466
77372
  readonly striped: BooleanConstructor;
76467
77373
  readonly scrollX: import("vue").PropType<string | number>;
76468
77374
  readonly defaultCheckedRowKeys: {
76469
- readonly type: import("vue").PropType<import("./data-table").DataTableRowKey[]>;
77375
+ readonly type: import("vue").PropType<import(".").DataTableRowKey[]>;
76470
77376
  readonly default: () => never[];
76471
77377
  };
76472
- readonly checkedRowKeys: import("vue").PropType<import("./data-table").DataTableRowKey[]>;
77378
+ readonly checkedRowKeys: import("vue").PropType<import(".").DataTableRowKey[]>;
76473
77379
  readonly singleLine: {
76474
77380
  readonly type: BooleanConstructor;
76475
77381
  readonly default: true;
76476
77382
  };
76477
77383
  readonly singleColumn: BooleanConstructor;
76478
77384
  readonly size: {
76479
- readonly type: import("vue").PropType<import("./data-table").DataTableSize>;
77385
+ readonly type: import("vue").PropType<import(".").DataTableSize>;
76480
77386
  readonly default: "medium";
76481
77387
  };
76482
77388
  readonly remote: BooleanConstructor;
76483
77389
  readonly defaultExpandedRowKeys: {
76484
- readonly type: import("vue").PropType<import("./data-table").DataTableRowKey[]>;
77390
+ readonly type: import("vue").PropType<import(".").DataTableRowKey[]>;
76485
77391
  readonly default: readonly [];
76486
77392
  };
76487
77393
  readonly defaultExpandAll: BooleanConstructor;
76488
- readonly expandedRowKeys: import("vue").PropType<import("./data-table").DataTableRowKey[]>;
77394
+ readonly expandedRowKeys: import("vue").PropType<import(".").DataTableRowKey[]>;
76489
77395
  readonly stickyExpandedRows: BooleanConstructor;
76490
77396
  readonly virtualScroll: BooleanConstructor;
76491
77397
  readonly tableLayout: {
@@ -76523,9 +77429,9 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
76523
77429
  readonly type: import("vue").PropType<"first" | "current">;
76524
77430
  readonly default: "current";
76525
77431
  };
76526
- readonly scrollbarProps: import("vue").PropType<import("./scrollbar").ScrollbarProps>;
77432
+ readonly scrollbarProps: import("vue").PropType<import(".").ScrollbarProps>;
76527
77433
  readonly localStorageKey: StringConstructor;
76528
- readonly renderCell: import("vue").PropType<(value: any, rowData: object, column: import("./data-table").DataTableBaseColumn) => import("vue").VNodeChild>;
77434
+ readonly renderCell: import("vue").PropType<(value: any, rowData: object, column: import(".").DataTableBaseColumn) => import("vue").VNodeChild>;
76529
77435
  readonly defaultEmptyValue: import("vue").PropType<string | (() => import("vue").VNodeChild) | undefined>;
76530
77436
  readonly renderExpandIcon: import("vue").PropType<import("./data-table/src/interface").RenderExpandIcon>;
76531
77437
  readonly spinProps: {
@@ -76533,13 +77439,13 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
76533
77439
  readonly default: {};
76534
77440
  };
76535
77441
  readonly emptyProps: import("vue").PropType<Partial<import("./empty").EmptyProps>>;
76536
- readonly getCsvCell: import("vue").PropType<import("./data-table").DataTableGetCsvCell>;
76537
- readonly getCsvHeader: import("vue").PropType<import("./data-table").DataTableGetCsvHeader>;
77442
+ readonly getCsvCell: import("vue").PropType<import(".").DataTableGetCsvCell>;
77443
+ readonly getCsvHeader: import("vue").PropType<import(".").DataTableGetCsvHeader>;
76538
77444
  readonly onLoad: import("vue").PropType<import("./data-table/src/interface").DataTableOnLoad>;
76539
- readonly 'onUpdate:page': import("vue").PropType<import("./pagination").PaginationProps["onUpdate:page"]>;
76540
- readonly onUpdatePage: import("vue").PropType<import("./pagination").PaginationProps["onUpdate:page"]>;
76541
- readonly 'onUpdate:pageSize': import("vue").PropType<import("./pagination").PaginationProps["onUpdate:pageSize"]>;
76542
- readonly onUpdatePageSize: import("vue").PropType<import("./pagination").PaginationProps["onUpdate:pageSize"]>;
77445
+ readonly 'onUpdate:page': import("vue").PropType<import(".").PaginationProps["onUpdate:page"]>;
77446
+ readonly onUpdatePage: import("vue").PropType<import(".").PaginationProps["onUpdate:page"]>;
77447
+ readonly 'onUpdate:pageSize': import("vue").PropType<import(".").PaginationProps["onUpdate:pageSize"]>;
77448
+ readonly onUpdatePageSize: import("vue").PropType<import(".").PaginationProps["onUpdate:pageSize"]>;
76543
77449
  readonly 'onUpdate:sorter': import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateSorter>>;
76544
77450
  readonly onUpdateSorter: import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateSorter>>;
76545
77451
  readonly 'onUpdate:filters': import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateFilters>>;
@@ -76549,8 +77455,8 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
76549
77455
  readonly 'onUpdate:expandedRowKeys': import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateExpandedRowKeys>>;
76550
77456
  readonly onUpdateExpandedRowKeys: import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateExpandedRowKeys>>;
76551
77457
  readonly onScroll: import("vue").PropType<(e: Event) => void>;
76552
- readonly onPageChange: import("vue").PropType<import("./pagination").PaginationProps["onUpdate:page"]>;
76553
- readonly onPageSizeChange: import("vue").PropType<import("./pagination").PaginationProps["onUpdate:pageSize"]>;
77458
+ readonly onPageChange: import("vue").PropType<import(".").PaginationProps["onUpdate:page"]>;
77459
+ readonly onPageSizeChange: import("vue").PropType<import(".").PaginationProps["onUpdate:pageSize"]>;
76554
77460
  readonly onSorterChange: import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateSorter> | undefined>;
76555
77461
  readonly onFiltersChange: import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateFilters> | undefined>;
76556
77462
  readonly onCheckedRowKeysChange: import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateCheckedRowKeys> | undefined>;
@@ -80167,12 +81073,12 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
80167
81073
  }>;
80168
81074
  }>>>;
80169
81075
  }>, {
80170
- filter: (filters: import("./data-table").DataTableFilterState | null) => void;
80171
- filters: (filters: import("./data-table").DataTableFilterState | null) => void;
81076
+ filter: (filters: import(".").DataTableFilterState | null) => void;
81077
+ filters: (filters: import(".").DataTableFilterState | null) => void;
80172
81078
  clearFilters: () => void;
80173
81079
  clearSorter: () => void;
80174
81080
  page: (page: number) => void;
80175
- sort: (columnKey: import("./data-table").DataTableColumnKey, order: import("./data-table").DataTableSortOrder) => void;
81081
+ sort: (columnKey: import(".").DataTableColumnKey, order: import(".").DataTableSortOrder) => void;
80176
81082
  scrollTo: import("./scrollbar/src/Scrollbar").ScrollTo;
80177
81083
  downloadCsv: (options?: import("./data-table/src/interface").CsvOptionsType) => void;
80178
81084
  getData: () => {
@@ -82084,7 +82990,7 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
82084
82990
  paginatedData: import("vue").ComputedRef<import("./data-table/src/interface").TmNode[]>;
82085
82991
  mergedBordered: import("vue").ComputedRef<boolean>;
82086
82992
  mergedBottomBordered: import("vue").ComputedRef<boolean>;
82087
- mergedPagination: import("vue").ComputedRef<import("./pagination").PaginationProps>;
82993
+ mergedPagination: import("vue").ComputedRef<import(".").PaginationProps>;
82088
82994
  mergedShowPagination: import("vue").ComputedRef<boolean | 0 | undefined>;
82089
82995
  cssVars: import("vue").ComputedRef<{
82090
82996
  '--u-th-height': string;
@@ -82140,9 +83046,9 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
82140
83046
  themeClass: import("vue").Ref<string, string> | undefined;
82141
83047
  onRender: (() => void) | undefined;
82142
83048
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "edit"[], "edit", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
82143
- readonly onUnstableColumnResize: import("vue").PropType<(resizedWidth: number, limitedWidth: number, column: import("./data-table").DataTableBaseColumn, getColumnWidth: (key: import("./data-table").DataTableColumnKey) => number | undefined) => void>;
83049
+ readonly onUnstableColumnResize: import("vue").PropType<(resizedWidth: number, limitedWidth: number, column: import(".").DataTableBaseColumn, getColumnWidth: (key: import(".").DataTableColumnKey) => number | undefined) => void>;
82144
83050
  readonly pagination: {
82145
- readonly type: import("vue").PropType<false | import("./pagination").PaginationProps>;
83051
+ readonly type: import("vue").PropType<false | import(".").PaginationProps>;
82146
83052
  readonly default: false;
82147
83053
  };
82148
83054
  readonly paginateSinglePage: {
@@ -82152,15 +83058,15 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
82152
83058
  readonly minHeight: import("vue").PropType<string | number>;
82153
83059
  readonly maxHeight: import("vue").PropType<string | number>;
82154
83060
  readonly columns: {
82155
- readonly type: import("vue").PropType<import("./data-table").DataTableColumns<any>>;
83061
+ readonly type: import("vue").PropType<import(".").DataTableColumns<any>>;
82156
83062
  readonly default: () => never[];
82157
83063
  };
82158
- readonly rowClassName: import("vue").PropType<string | import("./data-table").DataTableCreateRowClassName<any>>;
82159
- readonly rowProps: import("vue").PropType<import("./data-table").DataTableCreateRowProps<any>>;
82160
- readonly rowKey: import("vue").PropType<import("./data-table").DataTableCreateRowKey<any>>;
82161
- readonly summary: import("vue").PropType<import("./data-table").DataTableCreateSummary<any>>;
83064
+ readonly rowClassName: import("vue").PropType<string | import(".").DataTableCreateRowClassName<any>>;
83065
+ readonly rowProps: import("vue").PropType<import(".").DataTableCreateRowProps<any>>;
83066
+ readonly rowKey: import("vue").PropType<import(".").DataTableCreateRowKey<any>>;
83067
+ readonly summary: import("vue").PropType<import(".").DataTableCreateSummary<any>>;
82162
83068
  readonly data: {
82163
- readonly type: import("vue").PropType<import("./data-table").DataTableRowData[]>;
83069
+ readonly type: import("vue").PropType<import(".").DataTableRowData[]>;
82164
83070
  readonly default: () => never[];
82165
83071
  };
82166
83072
  readonly loading: BooleanConstructor;
@@ -82176,26 +83082,26 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
82176
83082
  readonly striped: BooleanConstructor;
82177
83083
  readonly scrollX: import("vue").PropType<string | number>;
82178
83084
  readonly defaultCheckedRowKeys: {
82179
- readonly type: import("vue").PropType<import("./data-table").DataTableRowKey[]>;
83085
+ readonly type: import("vue").PropType<import(".").DataTableRowKey[]>;
82180
83086
  readonly default: () => never[];
82181
83087
  };
82182
- readonly checkedRowKeys: import("vue").PropType<import("./data-table").DataTableRowKey[]>;
83088
+ readonly checkedRowKeys: import("vue").PropType<import(".").DataTableRowKey[]>;
82183
83089
  readonly singleLine: {
82184
83090
  readonly type: BooleanConstructor;
82185
83091
  readonly default: true;
82186
83092
  };
82187
83093
  readonly singleColumn: BooleanConstructor;
82188
83094
  readonly size: {
82189
- readonly type: import("vue").PropType<import("./data-table").DataTableSize>;
83095
+ readonly type: import("vue").PropType<import(".").DataTableSize>;
82190
83096
  readonly default: "medium";
82191
83097
  };
82192
83098
  readonly remote: BooleanConstructor;
82193
83099
  readonly defaultExpandedRowKeys: {
82194
- readonly type: import("vue").PropType<import("./data-table").DataTableRowKey[]>;
83100
+ readonly type: import("vue").PropType<import(".").DataTableRowKey[]>;
82195
83101
  readonly default: readonly [];
82196
83102
  };
82197
83103
  readonly defaultExpandAll: BooleanConstructor;
82198
- readonly expandedRowKeys: import("vue").PropType<import("./data-table").DataTableRowKey[]>;
83104
+ readonly expandedRowKeys: import("vue").PropType<import(".").DataTableRowKey[]>;
82199
83105
  readonly stickyExpandedRows: BooleanConstructor;
82200
83106
  readonly virtualScroll: BooleanConstructor;
82201
83107
  readonly tableLayout: {
@@ -82233,9 +83139,9 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
82233
83139
  readonly type: import("vue").PropType<"first" | "current">;
82234
83140
  readonly default: "current";
82235
83141
  };
82236
- readonly scrollbarProps: import("vue").PropType<import("./scrollbar").ScrollbarProps>;
83142
+ readonly scrollbarProps: import("vue").PropType<import(".").ScrollbarProps>;
82237
83143
  readonly localStorageKey: StringConstructor;
82238
- readonly renderCell: import("vue").PropType<(value: any, rowData: object, column: import("./data-table").DataTableBaseColumn) => import("vue").VNodeChild>;
83144
+ readonly renderCell: import("vue").PropType<(value: any, rowData: object, column: import(".").DataTableBaseColumn) => import("vue").VNodeChild>;
82239
83145
  readonly defaultEmptyValue: import("vue").PropType<string | (() => import("vue").VNodeChild) | undefined>;
82240
83146
  readonly renderExpandIcon: import("vue").PropType<import("./data-table/src/interface").RenderExpandIcon>;
82241
83147
  readonly spinProps: {
@@ -82243,13 +83149,13 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
82243
83149
  readonly default: {};
82244
83150
  };
82245
83151
  readonly emptyProps: import("vue").PropType<Partial<import("./empty").EmptyProps>>;
82246
- readonly getCsvCell: import("vue").PropType<import("./data-table").DataTableGetCsvCell>;
82247
- readonly getCsvHeader: import("vue").PropType<import("./data-table").DataTableGetCsvHeader>;
83152
+ readonly getCsvCell: import("vue").PropType<import(".").DataTableGetCsvCell>;
83153
+ readonly getCsvHeader: import("vue").PropType<import(".").DataTableGetCsvHeader>;
82248
83154
  readonly onLoad: import("vue").PropType<import("./data-table/src/interface").DataTableOnLoad>;
82249
- readonly 'onUpdate:page': import("vue").PropType<import("./pagination").PaginationProps["onUpdate:page"]>;
82250
- readonly onUpdatePage: import("vue").PropType<import("./pagination").PaginationProps["onUpdate:page"]>;
82251
- readonly 'onUpdate:pageSize': import("vue").PropType<import("./pagination").PaginationProps["onUpdate:pageSize"]>;
82252
- readonly onUpdatePageSize: import("vue").PropType<import("./pagination").PaginationProps["onUpdate:pageSize"]>;
83155
+ readonly 'onUpdate:page': import("vue").PropType<import(".").PaginationProps["onUpdate:page"]>;
83156
+ readonly onUpdatePage: import("vue").PropType<import(".").PaginationProps["onUpdate:page"]>;
83157
+ readonly 'onUpdate:pageSize': import("vue").PropType<import(".").PaginationProps["onUpdate:pageSize"]>;
83158
+ readonly onUpdatePageSize: import("vue").PropType<import(".").PaginationProps["onUpdate:pageSize"]>;
82253
83159
  readonly 'onUpdate:sorter': import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateSorter>>;
82254
83160
  readonly onUpdateSorter: import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateSorter>>;
82255
83161
  readonly 'onUpdate:filters': import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateFilters>>;
@@ -82259,8 +83165,8 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
82259
83165
  readonly 'onUpdate:expandedRowKeys': import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateExpandedRowKeys>>;
82260
83166
  readonly onUpdateExpandedRowKeys: import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateExpandedRowKeys>>;
82261
83167
  readonly onScroll: import("vue").PropType<(e: Event) => void>;
82262
- readonly onPageChange: import("vue").PropType<import("./pagination").PaginationProps["onUpdate:page"]>;
82263
- readonly onPageSizeChange: import("vue").PropType<import("./pagination").PaginationProps["onUpdate:pageSize"]>;
83168
+ readonly onPageChange: import("vue").PropType<import(".").PaginationProps["onUpdate:page"]>;
83169
+ readonly onPageSizeChange: import("vue").PropType<import(".").PaginationProps["onUpdate:pageSize"]>;
82264
83170
  readonly onSorterChange: import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateSorter> | undefined>;
82265
83171
  readonly onFiltersChange: import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateFilters> | undefined>;
82266
83172
  readonly onCheckedRowKeysChange: import("vue").PropType<import("./_utils").MaybeArray<import("./data-table/src/interface").OnUpdateCheckedRowKeys> | undefined>;
@@ -85881,23 +86787,23 @@ export declare const UDataTable: import("vue").DefineComponent<import("vue").Ext
85881
86787
  }>, {
85882
86788
  readonly bordered: boolean | undefined;
85883
86789
  readonly loading: boolean;
85884
- readonly size: import("./data-table").DataTableSize;
85885
- readonly data: import("./data-table").DataTableRowData[];
86790
+ readonly size: import(".").DataTableSize;
86791
+ readonly data: import(".").DataTableRowData[];
85886
86792
  readonly loadingSkeleton: boolean;
85887
86793
  readonly spinProps: import("./_internal").BaseLoadingExposedProps;
85888
- readonly columns: import("./data-table").DataTableColumns<any>;
86794
+ readonly columns: import(".").DataTableColumns<any>;
85889
86795
  readonly allowCheckingNotLoaded: boolean;
85890
86796
  readonly remote: boolean;
85891
86797
  readonly cascade: boolean;
85892
86798
  readonly virtualScroll: boolean;
85893
- readonly pagination: false | import("./pagination").PaginationProps;
86799
+ readonly pagination: false | import(".").PaginationProps;
85894
86800
  readonly paginateSinglePage: boolean;
85895
86801
  readonly bottomBordered: boolean | undefined;
85896
86802
  readonly striped: boolean;
85897
- readonly defaultCheckedRowKeys: import("./data-table").DataTableRowKey[];
86803
+ readonly defaultCheckedRowKeys: import(".").DataTableRowKey[];
85898
86804
  readonly singleLine: boolean;
85899
86805
  readonly singleColumn: boolean;
85900
- readonly defaultExpandedRowKeys: import("./data-table").DataTableRowKey[];
86806
+ readonly defaultExpandedRowKeys: import(".").DataTableRowKey[];
85901
86807
  readonly defaultExpandAll: boolean;
85902
86808
  readonly stickyExpandedRows: boolean;
85903
86809
  readonly tableLayout: "fixed" | "auto";
@@ -92665,7 +93571,7 @@ export declare const UDatePicker: import("vue").DefineComponent<import("vue").Ex
92665
93571
  readonly panel: boolean;
92666
93572
  readonly bindCalendarMonths: boolean;
92667
93573
  readonly triggerPreset: import("./date-picker/src/interface").TriggerPreset;
92668
- }, import("vue").SlotsType<import("./date-picker").DatePickerSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
93574
+ }, import("vue").SlotsType<import(".").DatePickerSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
92669
93575
  export type * from './date-picker-v2';
92670
93576
  export { datePickerV2Dark, datePickerV2Light } from './date-picker-v2';
92671
93577
  export declare const UDatePickerV2: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -96137,7 +97043,7 @@ export declare const UDescriptions: import("vue").DefineComponent<import("vue").
96137
97043
  readonly type: StringConstructor;
96138
97044
  readonly default: ":";
96139
97045
  };
96140
- readonly size: import("vue").PropType<import("./descriptions").DescriptionsSize>;
97046
+ readonly size: import("vue").PropType<import(".").DescriptionsSize>;
96141
97047
  readonly bordered: BooleanConstructor;
96142
97048
  readonly loadingSkeleton: BooleanConstructor;
96143
97049
  readonly labelClass: StringConstructor;
@@ -96267,7 +97173,7 @@ export declare const UDescriptions: import("vue").DefineComponent<import("vue").
96267
97173
  onRender: (() => void) | undefined;
96268
97174
  compitableColumn: import("vue").ComputedRef<number>;
96269
97175
  inlineThemeDisabled: boolean | undefined;
96270
- mergedSize: import("vue").ComputedRef<import("./descriptions").DescriptionsSize>;
97176
+ mergedSize: import("vue").ComputedRef<import(".").DescriptionsSize>;
96271
97177
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
96272
97178
  readonly skeletonProps: {
96273
97179
  readonly type: import("vue").PropType<import("./_internal/skeleton").SkeletonProps>;
@@ -96295,7 +97201,7 @@ export declare const UDescriptions: import("vue").DefineComponent<import("vue").
96295
97201
  readonly type: StringConstructor;
96296
97202
  readonly default: ":";
96297
97203
  };
96298
- readonly size: import("vue").PropType<import("./descriptions").DescriptionsSize>;
97204
+ readonly size: import("vue").PropType<import(".").DescriptionsSize>;
96299
97205
  readonly bordered: BooleanConstructor;
96300
97206
  readonly loadingSkeleton: BooleanConstructor;
96301
97207
  readonly labelClass: StringConstructor;
@@ -96406,7 +97312,7 @@ export declare const UDescriptions: import("vue").DefineComponent<import("vue").
96406
97312
  readonly skeletonProps: import("./_internal/skeleton").SkeletonProps;
96407
97313
  readonly labelPlacement: "left" | "top";
96408
97314
  readonly labelAlign: "left" | "right" | "center";
96409
- }, import("vue").SlotsType<import("./descriptions").DescriptionsSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
97315
+ }, import("vue").SlotsType<import(".").DescriptionsSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
96410
97316
  export declare const UDescriptionsItem: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
96411
97317
  readonly label: StringConstructor;
96412
97318
  readonly span: {
@@ -96429,7 +97335,7 @@ export declare const UDescriptionsItem: import("vue").DefineComponent<import("vu
96429
97335
  readonly contentStyle: import("vue").PropType<string | import("vue").CSSProperties>;
96430
97336
  }>> & Readonly<{}>, {
96431
97337
  readonly span: number;
96432
- }, import("vue").SlotsType<import("./descriptions").DescriptionItemSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
97338
+ }, import("vue").SlotsType<import(".").DescriptionItemSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
96433
97339
  export type * from './dialog';
96434
97340
  export { dialogProps, dialogProviderProps, useDialog, useDialogReactiveList } from './dialog';
96435
97341
  export { UDialogProvider } from './dialog';
@@ -98321,7 +99227,7 @@ export declare const UDialog: import("vue").DefineComponent<import("vue").Extrac
98321
99227
  type: "default" | "info" | "warning" | "error" | "success";
98322
99228
  showIcon: boolean;
98323
99229
  closable: boolean;
98324
- }, import("vue").SlotsType<import("./dialog").DialogSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
99230
+ }, import("vue").SlotsType<import(".").DialogSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
98325
99231
  export type * from './discrete';
98326
99232
  export { createDiscreteApi } from './discrete';
98327
99233
  export type * from './divider';
@@ -98415,11 +99321,11 @@ export declare const UDrawer: import("vue").DefineComponent<import("vue").Extrac
98415
99321
  readonly disabled: BooleanConstructor;
98416
99322
  readonly loading: BooleanConstructor;
98417
99323
  readonly size: {
98418
- readonly type: import("vue").PropType<import("./drawer").DrawerSizes>;
99324
+ readonly type: import("vue").PropType<import(".").DrawerSizes>;
98419
99325
  readonly default: "medium";
98420
99326
  };
98421
99327
  readonly placement: {
98422
- readonly type: import("vue").PropType<import("./drawer").DrawerPlacement>;
99328
+ readonly type: import("vue").PropType<import(".").DrawerPlacement>;
98423
99329
  readonly default: "right";
98424
99330
  };
98425
99331
  readonly rounded: {
@@ -98731,11 +99637,11 @@ export declare const UDrawer: import("vue").DefineComponent<import("vue").Extrac
98731
99637
  readonly disabled: BooleanConstructor;
98732
99638
  readonly loading: BooleanConstructor;
98733
99639
  readonly size: {
98734
- readonly type: import("vue").PropType<import("./drawer").DrawerSizes>;
99640
+ readonly type: import("vue").PropType<import(".").DrawerSizes>;
98735
99641
  readonly default: "medium";
98736
99642
  };
98737
99643
  readonly placement: {
98738
- readonly type: import("vue").PropType<import("./drawer").DrawerPlacement>;
99644
+ readonly type: import("vue").PropType<import(".").DrawerPlacement>;
98739
99645
  readonly default: "right";
98740
99646
  };
98741
99647
  readonly rounded: {
@@ -98944,8 +99850,8 @@ export declare const UDrawer: import("vue").DefineComponent<import("vue").Extrac
98944
99850
  readonly loading: boolean;
98945
99851
  readonly rounded: boolean;
98946
99852
  readonly disabled: boolean;
98947
- readonly placement: import("./drawer").DrawerPlacement;
98948
- readonly size: import("./drawer").DrawerSizes;
99853
+ readonly placement: import(".").DrawerPlacement;
99854
+ readonly size: import(".").DrawerSizes;
98949
99855
  readonly show: boolean;
98950
99856
  readonly displayDirective: "show" | "if";
98951
99857
  readonly maskClosable: boolean;
@@ -99132,7 +100038,7 @@ export declare const UDrawerContent: import("vue").DefineComponent<import("vue")
99132
100038
  }>> & Readonly<{}>, {
99133
100039
  closable: boolean;
99134
100040
  nativeScrollbar: boolean;
99135
- }, import("vue").SlotsType<import("./drawer").DrawerContentSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
100041
+ }, import("vue").SlotsType<import(".").DrawerContentSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
99136
100042
  export type * from './dropdown';
99137
100043
  export { dropdownProps } from './dropdown';
99138
100044
  export declare const UDropdown: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -99357,7 +100263,7 @@ export declare const UDropdown: import("vue").DefineComponent<import("vue").Extr
99357
100263
  readonly type: BooleanConstructor;
99358
100264
  readonly default: true;
99359
100265
  };
99360
- readonly size: import("vue").PropType<import("./dropdown").DropdownSize>;
100266
+ readonly size: import("vue").PropType<import(".").DropdownSize>;
99361
100267
  readonly inverted: BooleanConstructor;
99362
100268
  readonly placement: {
99363
100269
  readonly type: import("vue").PropType<import("vueuc").FollowerPlacement>;
@@ -99368,12 +100274,12 @@ export declare const UDropdown: import("vue").DefineComponent<import("vue").Extr
99368
100274
  readonly type: import("vue").PropType<import("./dropdown/src/interface").DropdownMixedOption[]>;
99369
100275
  readonly default: () => never[];
99370
100276
  };
99371
- readonly menuProps: import("vue").PropType<import("./dropdown").DropdownMenuProps>;
100277
+ readonly menuProps: import("vue").PropType<import(".").DropdownMenuProps>;
99372
100278
  readonly showArrow: BooleanConstructor;
99373
100279
  readonly renderLabel: import("vue").PropType<import("./dropdown/src/interface").RenderLabel>;
99374
100280
  readonly renderIcon: import("vue").PropType<import("./dropdown/src/interface").RenderIcon>;
99375
100281
  readonly renderOption: import("vue").PropType<import("./dropdown/src/interface").RenderOption>;
99376
- readonly nodeProps: import("vue").PropType<import("./dropdown").DropdownNodeProps>;
100282
+ readonly nodeProps: import("vue").PropType<import(".").DropdownNodeProps>;
99377
100283
  readonly labelField: {
99378
100284
  readonly type: StringConstructor;
99379
100285
  readonly default: "label";
@@ -99549,7 +100455,7 @@ export declare const UDropdown: import("vue").DefineComponent<import("vue").Extr
99549
100455
  } | undefined;
99550
100456
  };
99551
100457
  }>;
99552
- mergedSize: import("vue").ComputedRef<import("./dropdown").DropdownSize>;
100458
+ mergedSize: import("vue").ComputedRef<import(".").DropdownSize>;
99553
100459
  tmNodes: import("vue").ComputedRef<import("treemate").TreeNode<import(".").MenuOption | import("./menu/src/interface").MenuRenderOption, import(".").MenuGroupOption, import("./menu/src/interface").MenuIgnoredOption>[]>;
99554
100460
  mergedShow: import("vue").ComputedRef<boolean>;
99555
100461
  handleAfterLeave: () => void;
@@ -99779,7 +100685,7 @@ export declare const UDropdown: import("vue").DefineComponent<import("vue").Extr
99779
100685
  readonly type: BooleanConstructor;
99780
100686
  readonly default: true;
99781
100687
  };
99782
- readonly size: import("vue").PropType<import("./dropdown").DropdownSize>;
100688
+ readonly size: import("vue").PropType<import(".").DropdownSize>;
99783
100689
  readonly inverted: BooleanConstructor;
99784
100690
  readonly placement: {
99785
100691
  readonly type: import("vue").PropType<import("vueuc").FollowerPlacement>;
@@ -99790,12 +100696,12 @@ export declare const UDropdown: import("vue").DefineComponent<import("vue").Extr
99790
100696
  readonly type: import("vue").PropType<import("./dropdown/src/interface").DropdownMixedOption[]>;
99791
100697
  readonly default: () => never[];
99792
100698
  };
99793
- readonly menuProps: import("vue").PropType<import("./dropdown").DropdownMenuProps>;
100699
+ readonly menuProps: import("vue").PropType<import(".").DropdownMenuProps>;
99794
100700
  readonly showArrow: BooleanConstructor;
99795
100701
  readonly renderLabel: import("vue").PropType<import("./dropdown/src/interface").RenderLabel>;
99796
100702
  readonly renderIcon: import("vue").PropType<import("./dropdown/src/interface").RenderIcon>;
99797
100703
  readonly renderOption: import("vue").PropType<import("./dropdown/src/interface").RenderOption>;
99798
- readonly nodeProps: import("vue").PropType<import("./dropdown").DropdownNodeProps>;
100704
+ readonly nodeProps: import("vue").PropType<import(".").DropdownNodeProps>;
99799
100705
  readonly labelField: {
99800
100706
  readonly type: StringConstructor;
99801
100707
  readonly default: "label";
@@ -102126,15 +103032,15 @@ export declare const UDynamicTags: import("vue").DefineComponent<import("vue").E
102126
103032
  default: boolean;
102127
103033
  };
102128
103034
  defaultValue: {
102129
- type: import("vue").PropType<Array<string | import("./dynamic-tags").DynamicTagsOption>>;
103035
+ type: import("vue").PropType<Array<string | import(".").DynamicTagsOption>>;
102130
103036
  default: () => never[];
102131
103037
  };
102132
- value: import("vue").PropType<Array<string | import("./dynamic-tags").DynamicTagsOption>>;
103038
+ value: import("vue").PropType<Array<string | import(".").DynamicTagsOption>>;
102133
103039
  inputStyle: import("vue").PropType<string | import("vue").CSSProperties>;
102134
103040
  inputProps: import("vue").PropType<import("./input").InputProps>;
102135
103041
  max: import("vue").PropType<number>;
102136
103042
  tagStyle: import("vue").PropType<string | import("vue").CSSProperties>;
102137
- renderTag: import("vue").PropType<((tag: string, index: number) => import("vue").VNodeChild) | ((tag: import("./dynamic-tags").DynamicTagsOption, index: number) => import("vue").VNodeChild)>;
103043
+ renderTag: import("vue").PropType<((tag: string, index: number) => import("vue").VNodeChild) | ((tag: import(".").DynamicTagsOption, index: number) => import("vue").VNodeChild)>;
102138
103044
  onCreate: {
102139
103045
  type: import("vue").PropType<import("./dynamic-tags/src/interface").OnCreate>;
102140
103046
  default: (label: string) => string;
@@ -103279,7 +104185,7 @@ export declare const UDynamicTags: import("vue").DefineComponent<import("vue").E
103279
104185
  inputValue: import("vue").Ref<string, string>;
103280
104186
  showInput: import("vue").Ref<boolean, boolean>;
103281
104187
  inputForceFocused: import("vue").Ref<boolean, boolean>;
103282
- mergedValue: import("vue").ComputedRef<(string | import("./dynamic-tags").DynamicTagsOption)[] | (string | {
104188
+ mergedValue: import("vue").ComputedRef<(string | import(".").DynamicTagsOption)[] | (string | {
103283
104189
  label: string;
103284
104190
  value: string;
103285
104191
  })[]>;
@@ -103693,15 +104599,15 @@ export declare const UDynamicTags: import("vue").DefineComponent<import("vue").E
103693
104599
  default: boolean;
103694
104600
  };
103695
104601
  defaultValue: {
103696
- type: import("vue").PropType<Array<string | import("./dynamic-tags").DynamicTagsOption>>;
104602
+ type: import("vue").PropType<Array<string | import(".").DynamicTagsOption>>;
103697
104603
  default: () => never[];
103698
104604
  };
103699
- value: import("vue").PropType<Array<string | import("./dynamic-tags").DynamicTagsOption>>;
104605
+ value: import("vue").PropType<Array<string | import(".").DynamicTagsOption>>;
103700
104606
  inputStyle: import("vue").PropType<string | import("vue").CSSProperties>;
103701
104607
  inputProps: import("vue").PropType<import("./input").InputProps>;
103702
104608
  max: import("vue").PropType<number>;
103703
104609
  tagStyle: import("vue").PropType<string | import("vue").CSSProperties>;
103704
- renderTag: import("vue").PropType<((tag: string, index: number) => import("vue").VNodeChild) | ((tag: import("./dynamic-tags").DynamicTagsOption, index: number) => import("vue").VNodeChild)>;
104610
+ renderTag: import("vue").PropType<((tag: string, index: number) => import("vue").VNodeChild) | ((tag: import(".").DynamicTagsOption, index: number) => import("vue").VNodeChild)>;
103705
104611
  onCreate: {
103706
104612
  type: import("vue").PropType<import("./dynamic-tags/src/interface").OnCreate>;
103707
104613
  default: (label: string) => string;
@@ -104805,12 +105711,12 @@ export declare const UDynamicTags: import("vue").DefineComponent<import("vue").E
104805
105711
  }>> & Readonly<{}>, {
104806
105712
  type: "default" | "tertiary";
104807
105713
  closable: boolean;
104808
- defaultValue: (string | import("./dynamic-tags").DynamicTagsOption)[];
105714
+ defaultValue: (string | import(".").DynamicTagsOption)[];
104809
105715
  disabled: boolean | undefined;
104810
105716
  size: import("./input").InputSize;
104811
105717
  round: boolean;
104812
105718
  onCreate: import("./dynamic-tags/src/interface").OnCreate;
104813
- }, import("vue").SlotsType<import("./dynamic-tags").DynamicTagsSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
105719
+ }, import("vue").SlotsType<import(".").DynamicTagsSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
104814
105720
  export type * from './element';
104815
105721
  export { elementProps } from './element';
104816
105722
  export declare const UElement: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -105566,9 +106472,9 @@ export declare const UEquation: import("vue").DefineComponent<import("vue").Extr
105566
106472
  export type * from './flex';
105567
106473
  export { flexProps } from './flex';
105568
106474
  export declare const UFlex: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
105569
- readonly align: import("vue").PropType<import("./flex").FlexAlign>;
106475
+ readonly align: import("vue").PropType<import(".").FlexAlign>;
105570
106476
  readonly justify: {
105571
- readonly type: import("vue").PropType<import("./flex").FlexJustify>;
106477
+ readonly type: import("vue").PropType<import(".").FlexJustify>;
105572
106478
  readonly default: "start";
105573
106479
  };
105574
106480
  readonly inline: BooleanConstructor;
@@ -105605,9 +106511,9 @@ export declare const UFlex: import("vue").DefineComponent<import("vue").ExtractP
105605
106511
  vertical: number;
105606
106512
  }>;
105607
106513
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
105608
- readonly align: import("vue").PropType<import("./flex").FlexAlign>;
106514
+ readonly align: import("vue").PropType<import(".").FlexAlign>;
105609
106515
  readonly justify: {
105610
- readonly type: import("vue").PropType<import("./flex").FlexJustify>;
106516
+ readonly type: import("vue").PropType<import(".").FlexJustify>;
105611
106517
  readonly default: "start";
105612
106518
  };
105613
106519
  readonly inline: BooleanConstructor;
@@ -105827,7 +106733,7 @@ export declare const UFloatButton: import("vue").DefineComponent<import("vue").E
105827
106733
  readonly showMenu: boolean;
105828
106734
  readonly onUpdateShowMenu: import("./_utils").MaybeArray<(value: boolean) => void>;
105829
106735
  readonly 'onUpdate:showMenu': import("./_utils").MaybeArray<(value: boolean) => void>;
105830
- }, import("vue").SlotsType<import("./float-button").FloatButtonSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
106736
+ }, import("vue").SlotsType<import(".").FloatButtonSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
105831
106737
  export type * from './float-button-group';
105832
106738
  export { floatButtonGroupProps } from './float-button-group';
105833
106739
  export declare const UFloatButtonGroup: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -105915,7 +106821,7 @@ export declare const UForm: import("vue").DefineComponent<import("vue").ExtractP
105915
106821
  readonly type: import("vue").PropType<Record<string, any>>;
105916
106822
  readonly default: () => void;
105917
106823
  };
105918
- readonly rules: import("vue").PropType<import("./form").FormRules>;
106824
+ readonly rules: import("vue").PropType<import(".").FormRules>;
105919
106825
  readonly disabled: BooleanConstructor;
105920
106826
  readonly size: import("vue").PropType<import("./form/src/interface").Size>;
105921
106827
  readonly showRequireMark: {
@@ -106038,7 +106944,7 @@ export declare const UForm: import("vue").DefineComponent<import("vue").ExtractP
106038
106944
  feedbackTextColorWarning: string;
106039
106945
  feedbackTextColor: string;
106040
106946
  }, any>>>;
106041
- }>, import("./form").FormInst & {
106947
+ }>, import(".").FormInst & {
106042
106948
  mergedClsPrefix: import("vue").Ref<string, string>;
106043
106949
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
106044
106950
  readonly inline: BooleanConstructor;
@@ -106052,7 +106958,7 @@ export declare const UForm: import("vue").DefineComponent<import("vue").ExtractP
106052
106958
  readonly type: import("vue").PropType<Record<string, any>>;
106053
106959
  readonly default: () => void;
106054
106960
  };
106055
- readonly rules: import("vue").PropType<import("./form").FormRules>;
106961
+ readonly rules: import("vue").PropType<import(".").FormRules>;
106056
106962
  readonly disabled: BooleanConstructor;
106057
106963
  readonly size: import("vue").PropType<import("./form/src/interface").Size>;
106058
106964
  readonly showRequireMark: {
@@ -106204,7 +107110,7 @@ export declare const UFormItem: import("vue").DefineComponent<import("vue").Extr
106204
107110
  readonly type: import("vue").PropType<boolean | undefined>;
106205
107111
  readonly default: undefined;
106206
107112
  };
106207
- readonly rule: import("vue").PropType<import("./form").FormItemRule | import("./form").FormItemRule[]>;
107113
+ readonly rule: import("vue").PropType<import(".").FormItemRule | import(".").FormItemRule[]>;
106208
107114
  readonly size: import("vue").PropType<"small" | "medium" | "large">;
106209
107115
  readonly ignorePathChange: BooleanConstructor;
106210
107116
  readonly validationStatus: import("vue").PropType<"error" | "warning" | "success">;
@@ -106349,7 +107255,7 @@ export declare const UFormItem: import("vue").DefineComponent<import("vue").Extr
106349
107255
  invalidateLabelWidth: () => void;
106350
107256
  path?: string;
106351
107257
  internalValidate: import("./form/src/interface").FormItemInternalValidate;
106352
- mergedSize: import("vue").ComputedRef<import("./form").FormItemSize>;
107258
+ mergedSize: import("vue").ComputedRef<import(".").FormItemSize>;
106353
107259
  validationErrored: import("vue").Ref<boolean, boolean>;
106354
107260
  validationWarned: import("vue").Ref<boolean, boolean>;
106355
107261
  mergedLabelStyle: import("vue").ComputedRef<import("vue").StyleValue[]>;
@@ -106395,7 +107301,7 @@ export declare const UFormItem: import("vue").DefineComponent<import("vue").Extr
106395
107301
  readonly type: import("vue").PropType<boolean | undefined>;
106396
107302
  readonly default: undefined;
106397
107303
  };
106398
- readonly rule: import("vue").PropType<import("./form").FormItemRule | import("./form").FormItemRule[]>;
107304
+ readonly rule: import("vue").PropType<import(".").FormItemRule | import(".").FormItemRule[]>;
106399
107305
  readonly size: import("vue").PropType<"small" | "medium" | "large">;
106400
107306
  readonly ignorePathChange: BooleanConstructor;
106401
107307
  readonly validationStatus: import("vue").PropType<"error" | "warning" | "success">;
@@ -106543,7 +107449,7 @@ export declare const UFormItemCol: import("vue").DefineComponent<import("vue").E
106543
107449
  readonly type: import("vue").PropType<boolean | undefined>;
106544
107450
  readonly default: undefined;
106545
107451
  };
106546
- readonly rule: import("vue").PropType<import("./form").FormItemRule | import("./form").FormItemRule[]>;
107452
+ readonly rule: import("vue").PropType<import(".").FormItemRule | import(".").FormItemRule[]>;
106547
107453
  readonly size: import("vue").PropType<"small" | "medium" | "large">;
106548
107454
  readonly ignorePathChange: BooleanConstructor;
106549
107455
  readonly validationStatus: import("vue").PropType<"error" | "warning" | "success">;
@@ -106686,7 +107592,7 @@ export declare const UFormItemCol: import("vue").DefineComponent<import("vue").E
106686
107592
  invalidateLabelWidth: () => void;
106687
107593
  path?: string | undefined;
106688
107594
  internalValidate: import("./form/src/interface").FormItemInternalValidate;
106689
- } | null, import("./form").FormItemInst | {
107595
+ } | null, import(".").FormItemInst | {
106690
107596
  validate: import("./form/src/interface").FormItemValidate;
106691
107597
  restoreValidation: () => void;
106692
107598
  invalidateLabelWidth: () => void;
@@ -106715,7 +107621,7 @@ export declare const UFormItemCol: import("vue").DefineComponent<import("vue").E
106715
107621
  readonly type: import("vue").PropType<boolean | undefined>;
106716
107622
  readonly default: undefined;
106717
107623
  };
106718
- readonly rule: import("vue").PropType<import("./form").FormItemRule | import("./form").FormItemRule[]>;
107624
+ readonly rule: import("vue").PropType<import(".").FormItemRule | import(".").FormItemRule[]>;
106719
107625
  readonly size: import("vue").PropType<"small" | "medium" | "large">;
106720
107626
  readonly ignorePathChange: BooleanConstructor;
106721
107627
  readonly validationStatus: import("vue").PropType<"error" | "warning" | "success">;
@@ -106883,7 +107789,7 @@ export declare const UFormItemGi: import("vue").DefineComponent<import("vue").Ex
106883
107789
  readonly type: import("vue").PropType<boolean | undefined>;
106884
107790
  readonly default: undefined;
106885
107791
  };
106886
- readonly rule: import("vue").PropType<import("./form").FormItemRule | import("./form").FormItemRule[]>;
107792
+ readonly rule: import("vue").PropType<import(".").FormItemRule | import(".").FormItemRule[]>;
106887
107793
  readonly size: import("vue").PropType<"small" | "medium" | "large">;
106888
107794
  readonly ignorePathChange: BooleanConstructor;
106889
107795
  readonly validationStatus: import("vue").PropType<"error" | "warning" | "success">;
@@ -107026,7 +107932,7 @@ export declare const UFormItemGi: import("vue").DefineComponent<import("vue").Ex
107026
107932
  invalidateLabelWidth: () => void;
107027
107933
  path?: string | undefined;
107028
107934
  internalValidate: import("./form/src/interface").FormItemInternalValidate;
107029
- } | null, import("./form").FormItemInst | {
107935
+ } | null, import(".").FormItemInst | {
107030
107936
  validate: import("./form/src/interface").FormItemValidate;
107031
107937
  restoreValidation: () => void;
107032
107938
  invalidateLabelWidth: () => void;
@@ -107055,7 +107961,7 @@ export declare const UFormItemGi: import("vue").DefineComponent<import("vue").Ex
107055
107961
  readonly type: import("vue").PropType<boolean | undefined>;
107056
107962
  readonly default: undefined;
107057
107963
  };
107058
- readonly rule: import("vue").PropType<import("./form").FormItemRule | import("./form").FormItemRule[]>;
107964
+ readonly rule: import("vue").PropType<import(".").FormItemRule | import(".").FormItemRule[]>;
107059
107965
  readonly size: import("vue").PropType<"small" | "medium" | "large">;
107060
107966
  readonly ignorePathChange: BooleanConstructor;
107061
107967
  readonly validationStatus: import("vue").PropType<"error" | "warning" | "success">;
@@ -107223,7 +108129,7 @@ export declare const UFormItemGridItem: import("vue").DefineComponent<import("vu
107223
108129
  readonly type: import("vue").PropType<boolean | undefined>;
107224
108130
  readonly default: undefined;
107225
108131
  };
107226
- readonly rule: import("vue").PropType<import("./form").FormItemRule | import("./form").FormItemRule[]>;
108132
+ readonly rule: import("vue").PropType<import(".").FormItemRule | import(".").FormItemRule[]>;
107227
108133
  readonly size: import("vue").PropType<"small" | "medium" | "large">;
107228
108134
  readonly ignorePathChange: BooleanConstructor;
107229
108135
  readonly validationStatus: import("vue").PropType<"error" | "warning" | "success">;
@@ -107366,7 +108272,7 @@ export declare const UFormItemGridItem: import("vue").DefineComponent<import("vu
107366
108272
  invalidateLabelWidth: () => void;
107367
108273
  path?: string | undefined;
107368
108274
  internalValidate: import("./form/src/interface").FormItemInternalValidate;
107369
- } | null, import("./form").FormItemInst | {
108275
+ } | null, import(".").FormItemInst | {
107370
108276
  validate: import("./form/src/interface").FormItemValidate;
107371
108277
  restoreValidation: () => void;
107372
108278
  invalidateLabelWidth: () => void;
@@ -107395,7 +108301,7 @@ export declare const UFormItemGridItem: import("vue").DefineComponent<import("vu
107395
108301
  readonly type: import("vue").PropType<boolean | undefined>;
107396
108302
  readonly default: undefined;
107397
108303
  };
107398
- readonly rule: import("vue").PropType<import("./form").FormItemRule | import("./form").FormItemRule[]>;
108304
+ readonly rule: import("vue").PropType<import(".").FormItemRule | import(".").FormItemRule[]>;
107399
108305
  readonly size: import("vue").PropType<"small" | "medium" | "large">;
107400
108306
  readonly ignorePathChange: BooleanConstructor;
107401
108307
  readonly validationStatus: import("vue").PropType<"error" | "warning" | "success">;
@@ -107563,7 +108469,7 @@ export declare const UFormItemRow: import("vue").DefineComponent<import("vue").E
107563
108469
  readonly type: import("vue").PropType<boolean | undefined>;
107564
108470
  readonly default: undefined;
107565
108471
  };
107566
- rule: import("vue").PropType<import("./form").FormItemRule | import("./form").FormItemRule[]>;
108472
+ rule: import("vue").PropType<import(".").FormItemRule | import(".").FormItemRule[]>;
107567
108473
  size: import("vue").PropType<"small" | "medium" | "large">;
107568
108474
  ignorePathChange: BooleanConstructor;
107569
108475
  validationStatus: import("vue").PropType<"error" | "warning" | "success">;
@@ -107712,7 +108618,7 @@ export declare const UFormItemRow: import("vue").DefineComponent<import("vue").E
107712
108618
  invalidateLabelWidth: () => void;
107713
108619
  path?: string | undefined;
107714
108620
  internalValidate: import("./form/src/interface").FormItemInternalValidate;
107715
- } | null, import("./form").FormItemInst | {
108621
+ } | null, import(".").FormItemInst | {
107716
108622
  validate: import("./form/src/interface").FormItemValidate;
107717
108623
  restoreValidation: () => void;
107718
108624
  invalidateLabelWidth: () => void;
@@ -107741,7 +108647,7 @@ export declare const UFormItemRow: import("vue").DefineComponent<import("vue").E
107741
108647
  readonly type: import("vue").PropType<boolean | undefined>;
107742
108648
  readonly default: undefined;
107743
108649
  };
107744
- rule: import("vue").PropType<import("./form").FormItemRule | import("./form").FormItemRule[]>;
108650
+ rule: import("vue").PropType<import(".").FormItemRule | import(".").FormItemRule[]>;
107745
108651
  size: import("vue").PropType<"small" | "medium" | "large">;
107746
108652
  ignorePathChange: BooleanConstructor;
107747
108653
  validationStatus: import("vue").PropType<"error" | "warning" | "success">;
@@ -108671,7 +109577,7 @@ export declare const UHeader: import("vue").DefineComponent<import("vue").Extrac
108671
109577
  langOptions: import(".").LangOption[] | undefined;
108672
109578
  menuPlacement: import(".").HeaderMenuPlacement | undefined;
108673
109579
  activeMenuKey: string | number | null | undefined;
108674
- menuTabsProps: Partial<import("./tabs").TabsProps> | undefined;
109580
+ menuTabsProps: Partial<import(".").TabsProps> | undefined;
108675
109581
  menuCardMinColumnWidth: string | number | undefined;
108676
109582
  logoSrc: string | undefined;
108677
109583
  logoAlt: string | undefined;
@@ -108822,7 +109728,7 @@ export declare const UHeaderNavigation: import("vue").DefineComponent<{
108822
109728
  readonly menuOptions: import(".").HeaderMenuOption[];
108823
109729
  readonly menuPlacement: import(".").HeaderMenuPlacement;
108824
109730
  readonly activeMenuKey: string | number | null;
108825
- readonly menuTabsProps: Partial<import("./tabs").TabsProps>;
109731
+ readonly menuTabsProps: Partial<import(".").TabsProps>;
108826
109732
  readonly menuCardMinColumnWidth: string | number;
108827
109733
  readonly menuPaneClass: string;
108828
109734
  readonly menuPaneWrapperClass: string;
@@ -109576,7 +110482,7 @@ export declare const UIconBar: import("vue").DefineComponent<import("vue").Extra
109576
110482
  readonly type: import("vue").PropType<Partial<import("./grid").GridProps>>;
109577
110483
  };
109578
110484
  readonly typographyProps: {
109579
- readonly type: import("vue").PropType<Partial<import("./typography").TextProps>>;
110485
+ readonly type: import("vue").PropType<Partial<import(".").TextProps>>;
109580
110486
  };
109581
110487
  readonly itemSize: import("vue").PropType<number | string>;
109582
110488
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"IconBar", {
@@ -109640,7 +110546,7 @@ export declare const UIconBar: import("vue").DefineComponent<import("vue").Extra
109640
110546
  readonly type: import("vue").PropType<Partial<import("./grid").GridProps>>;
109641
110547
  };
109642
110548
  readonly typographyProps: {
109643
- readonly type: import("vue").PropType<Partial<import("./typography").TextProps>>;
110549
+ readonly type: import("vue").PropType<Partial<import(".").TextProps>>;
109644
110550
  };
109645
110551
  readonly itemSize: import("vue").PropType<number | string>;
109646
110552
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"IconBar", {
@@ -109692,7 +110598,7 @@ export declare const UIconBarItem: import("vue").DefineComponent<import("vue").E
109692
110598
  readonly iconSize: import("vue").PropType<number | string>;
109693
110599
  readonly span: import("vue").PropType<number | string>;
109694
110600
  readonly typographyProps: {
109695
- readonly type: import("vue").PropType<Partial<import("./typography").TextProps>>;
110601
+ readonly type: import("vue").PropType<Partial<import(".").TextProps>>;
109696
110602
  };
109697
110603
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"IconBar", {
109698
110604
  itemSize: string;
@@ -109808,10 +110714,10 @@ export declare const UIconBarItem: import("vue").DefineComponent<import("vue").E
109808
110714
  color?: string | undefined;
109809
110715
  strong?: boolean | undefined;
109810
110716
  text?: string | undefined;
109811
- variant?: import("./typography").TypographyVariant | undefined;
110717
+ variant?: import(".").TypographyVariant | undefined;
109812
110718
  italic?: boolean | undefined;
109813
- variantOptions?: import("./typography").TypographyVariantOptions | undefined;
109814
- variantWeightsOptions?: import("./typography").TypographyVariantWeightsOptions | undefined;
110719
+ variantOptions?: import(".").TypographyVariantOptions | undefined;
110720
+ variantWeightsOptions?: import(".").TypographyVariantWeightsOptions | undefined;
109815
110721
  underline?: boolean | undefined;
109816
110722
  strikethrough?: boolean | undefined;
109817
110723
  }>;
@@ -109822,7 +110728,7 @@ export declare const UIconBarItem: import("vue").DefineComponent<import("vue").E
109822
110728
  readonly iconSize: import("vue").PropType<number | string>;
109823
110729
  readonly span: import("vue").PropType<number | string>;
109824
110730
  readonly typographyProps: {
109825
- readonly type: import("vue").PropType<Partial<import("./typography").TextProps>>;
110731
+ readonly type: import("vue").PropType<Partial<import(".").TextProps>>;
109826
110732
  };
109827
110733
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"IconBar", {
109828
110734
  itemSize: string;
@@ -109936,7 +110842,7 @@ export declare const UIconPack: import("vue").DefineComponent<import("vue").Extr
109936
110842
  readonly emptyText: StringConstructor;
109937
110843
  readonly emptyProps: import("vue").PropType<Partial<import("./empty").EmptyProps>>;
109938
110844
  readonly searchInputProps: import("vue").PropType<Partial<import("./input").InputProps>>;
109939
- readonly scrollbarProps: import("vue").PropType<Partial<import("./scrollbar").ScrollbarProps>>;
110845
+ readonly scrollbarProps: import("vue").PropType<Partial<import(".").ScrollbarProps>>;
109940
110846
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"IconPack", {
109941
110847
  containerColor: string;
109942
110848
  borderRadius: string;
@@ -110524,7 +111430,7 @@ export declare const UIconPack: import("vue").DefineComponent<import("vue").Extr
110524
111430
  readonly emptyText: StringConstructor;
110525
111431
  readonly emptyProps: import("vue").PropType<Partial<import("./empty").EmptyProps>>;
110526
111432
  readonly searchInputProps: import("vue").PropType<Partial<import("./input").InputProps>>;
110527
- readonly scrollbarProps: import("vue").PropType<Partial<import("./scrollbar").ScrollbarProps>>;
111433
+ readonly scrollbarProps: import("vue").PropType<Partial<import(".").ScrollbarProps>>;
110528
111434
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"IconPack", {
110529
111435
  containerColor: string;
110530
111436
  borderRadius: string;
@@ -110992,7 +111898,7 @@ export declare const UImage: import("vue").DefineComponent<import("vue").Extract
110992
111898
  default: boolean;
110993
111899
  };
110994
111900
  showToolbarTooltip: BooleanConstructor;
110995
- renderToolbar: import("vue").PropType<import("./image").ImageRenderToolbar>;
111901
+ renderToolbar: import("vue").PropType<import(".").ImageRenderToolbar>;
110996
111902
  theme: import("vue").PropType<import("./_mixins").Theme<"Image", {
110997
111903
  toolbarIconColor: string;
110998
111904
  toolbarColor: string;
@@ -111138,7 +112044,7 @@ export declare const UImage: import("vue").DefineComponent<import("vue").Extract
111138
112044
  groupId: string | undefined;
111139
112045
  previewInstRef: import("vue").Ref<{
111140
112046
  setThumbnailEl: (e: HTMLImageElement | null) => void;
111141
- } | null, import("./image").ImagePreviewInst | {
112047
+ } | null, import(".").ImagePreviewInst | {
111142
112048
  setThumbnailEl: (e: HTMLImageElement | null) => void;
111143
112049
  } | null>;
111144
112050
  imageRef: import("vue").Ref<HTMLImageElement | null, HTMLImageElement | null>;
@@ -111159,7 +112065,7 @@ export declare const UImage: import("vue").DefineComponent<import("vue").Extract
111159
112065
  default: boolean;
111160
112066
  };
111161
112067
  showToolbarTooltip: BooleanConstructor;
111162
- renderToolbar: import("vue").PropType<import("./image").ImageRenderToolbar>;
112068
+ renderToolbar: import("vue").PropType<import(".").ImageRenderToolbar>;
111163
112069
  theme: import("vue").PropType<import("./_mixins").Theme<"Image", {
111164
112070
  toolbarIconColor: string;
111165
112071
  toolbarColor: string;
@@ -111304,7 +112210,7 @@ export declare const UImage: import("vue").DefineComponent<import("vue").Extract
111304
112210
  showToolbar: boolean;
111305
112211
  showToolbarTooltip: boolean;
111306
112212
  previewDisabled: boolean;
111307
- }, import("vue").SlotsType<import("./image").ImageSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
112213
+ }, import("vue").SlotsType<import(".").ImageSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
111308
112214
  export declare const UImageGroup: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
111309
112215
  srcList: import("vue").PropType<string[]>;
111310
112216
  current: NumberConstructor;
@@ -111328,7 +112234,7 @@ export declare const UImageGroup: import("vue").DefineComponent<import("vue").Ex
111328
112234
  default: boolean;
111329
112235
  };
111330
112236
  showToolbarTooltip: BooleanConstructor;
111331
- renderToolbar: import("vue").PropType<import("./image").ImageRenderToolbar>;
112237
+ renderToolbar: import("vue").PropType<import(".").ImageRenderToolbar>;
111332
112238
  theme: import("vue").PropType<import("./_mixins").Theme<"Image", {
111333
112239
  toolbarIconColor: string;
111334
112240
  toolbarColor: string;
@@ -111453,7 +112359,7 @@ export declare const UImageGroup: import("vue").DefineComponent<import("vue").Ex
111453
112359
  mergedClsPrefix: import("vue").Ref<string, string>;
111454
112360
  previewInstRef: import("vue").Ref<{
111455
112361
  setThumbnailEl: (e: HTMLImageElement | null) => void;
111456
- } | null, import("./image").ImagePreviewInst | {
112362
+ } | null, import(".").ImagePreviewInst | {
111457
112363
  setThumbnailEl: (e: HTMLImageElement | null) => void;
111458
112364
  } | null>;
111459
112365
  mergedShow: import("vue").ComputedRef<boolean>;
@@ -111484,7 +112390,7 @@ export declare const UImageGroup: import("vue").DefineComponent<import("vue").Ex
111484
112390
  default: boolean;
111485
112391
  };
111486
112392
  showToolbarTooltip: BooleanConstructor;
111487
- renderToolbar: import("vue").PropType<import("./image").ImageRenderToolbar>;
112393
+ renderToolbar: import("vue").PropType<import(".").ImageRenderToolbar>;
111488
112394
  theme: import("vue").PropType<import("./_mixins").Theme<"Image", {
111489
112395
  toolbarIconColor: string;
111490
112396
  toolbarColor: string;
@@ -111639,7 +112545,7 @@ export declare const UImagePreview: import("vue").DefineComponent<import("vue").
111639
112545
  default: boolean;
111640
112546
  };
111641
112547
  readonly showToolbarTooltip: BooleanConstructor;
111642
- readonly renderToolbar: import("vue").PropType<import("./image").ImageRenderToolbar>;
112548
+ readonly renderToolbar: import("vue").PropType<import(".").ImageRenderToolbar>;
111643
112549
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"Image", {
111644
112550
  toolbarIconColor: string;
111645
112551
  toolbarColor: string;
@@ -111824,7 +112730,7 @@ export declare const UImagePreview: import("vue").DefineComponent<import("vue").
111824
112730
  default: boolean;
111825
112731
  };
111826
112732
  readonly showToolbarTooltip: BooleanConstructor;
111827
- readonly renderToolbar: import("vue").PropType<import("./image").ImageRenderToolbar>;
112733
+ readonly renderToolbar: import("vue").PropType<import(".").ImageRenderToolbar>;
111828
112734
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"Image", {
111829
112735
  toolbarIconColor: string;
111830
112736
  toolbarColor: string;
@@ -111952,7 +112858,7 @@ export declare const UImagePreview: import("vue").DefineComponent<import("vue").
111952
112858
  readonly defaultShow: boolean;
111953
112859
  readonly showToolbar: boolean;
111954
112860
  readonly showToolbarTooltip: boolean;
111955
- }, import("vue").SlotsType<import("./image").ImagePreviewSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
112861
+ }, import("vue").SlotsType<import(".").ImagePreviewSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
111956
112862
  export type * from './infinite-scroll';
111957
112863
  export { infiniteScrollProps } from './infinite-scroll';
111958
112864
  export declare const UInfiniteScroll: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -111966,7 +112872,7 @@ export declare const UInfiniteScroll: import("vue").DefineComponent<import("vue"
111966
112872
  };
111967
112873
  readonly onLoad: import("vue").PropType<() => Promise<void> | void>;
111968
112874
  readonly onLoadTop: import("vue").PropType<() => Promise<void> | void>;
111969
- readonly scrollbarProps: import("vue").PropType<import("./scrollbar").ScrollbarProps>;
112875
+ readonly scrollbarProps: import("vue").PropType<import(".").ScrollbarProps>;
111970
112876
  }>, {
111971
112877
  scrollbarInstRef: import("vue").Ref<{
111972
112878
  $el: HTMLElement;
@@ -112004,7 +112910,7 @@ export declare const UInfiniteScroll: import("vue").DefineComponent<import("vue"
112004
112910
  };
112005
112911
  readonly onLoad: import("vue").PropType<() => Promise<void> | void>;
112006
112912
  readonly onLoadTop: import("vue").PropType<() => Promise<void> | void>;
112007
- readonly scrollbarProps: import("vue").PropType<import("./scrollbar").ScrollbarProps>;
112913
+ readonly scrollbarProps: import("vue").PropType<import(".").ScrollbarProps>;
112008
112914
  }>> & Readonly<{}>, {
112009
112915
  readonly distance: number;
112010
112916
  readonly topDistance: number;
@@ -115684,7 +116590,7 @@ export declare const UInputOtp: import("vue").DefineComponent<import("vue").Extr
115684
116590
  disabled: BooleanConstructor;
115685
116591
  mask: BooleanConstructor;
115686
116592
  readonly: BooleanConstructor;
115687
- status: import("vue").PropType<import("./form").FormValidationStatus>;
116593
+ status: import("vue").PropType<import(".").FormValidationStatus>;
115688
116594
  gap: import("vue").PropType<string | number>;
115689
116595
  placeholder: {
115690
116596
  type: StringConstructor;
@@ -116100,7 +117006,7 @@ export declare const UInputOtp: import("vue").DefineComponent<import("vue").Extr
116100
117006
  disabled: BooleanConstructor;
116101
117007
  mask: BooleanConstructor;
116102
117008
  readonly: BooleanConstructor;
116103
- status: import("vue").PropType<import("./form").FormValidationStatus>;
117009
+ status: import("vue").PropType<import(".").FormValidationStatus>;
116104
117010
  gap: import("vue").PropType<string | number>;
116105
117011
  placeholder: {
116106
117012
  type: StringConstructor;
@@ -118753,7 +119659,7 @@ export declare const ULayoutSider: import("vue").DefineComponent<import("vue").E
118753
119659
  nativeScrollbar: boolean;
118754
119660
  inverted: boolean;
118755
119661
  collapsedWidth: number;
118756
- showTrigger: boolean | "bar" | "sidebar" | "arrow-circle";
119662
+ showTrigger: boolean | "bar" | "arrow-circle" | "sidebar";
118757
119663
  collapseMode: "width" | "transform";
118758
119664
  defaultCollapsed: boolean;
118759
119665
  showCollapsedContent: boolean;
@@ -124832,7 +125738,7 @@ export declare const UMappingCardList: import("vue").DefineComponent<import("vue
124832
125738
  readonly default: () => never[];
124833
125739
  };
124834
125740
  readonly pagination: {
124835
- readonly type: import("vue").PropType<import("./pagination").PaginationProps | false>;
125741
+ readonly type: import("vue").PropType<import(".").PaginationProps | false>;
124836
125742
  readonly default: false;
124837
125743
  };
124838
125744
  readonly gap: {
@@ -124842,14 +125748,14 @@ export declare const UMappingCardList: import("vue").DefineComponent<import("vue
124842
125748
  readonly emptyProps: import("vue").PropType<Partial<import("./empty").EmptyProps>>;
124843
125749
  }>, {
124844
125750
  mergedClsPrefix: import("vue").Ref<string, string>;
124845
- mergedPagination: import("vue").ComputedRef<import("./pagination").PaginationProps | null>;
125751
+ mergedPagination: import("vue").ComputedRef<import(".").PaginationProps | null>;
124846
125752
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
124847
125753
  readonly items: {
124848
125754
  readonly type: import("vue").PropType<import(".").MappingCardProps[]>;
124849
125755
  readonly default: () => never[];
124850
125756
  };
124851
125757
  readonly pagination: {
124852
- readonly type: import("vue").PropType<import("./pagination").PaginationProps | false>;
125758
+ readonly type: import("vue").PropType<import(".").PaginationProps | false>;
124853
125759
  readonly default: false;
124854
125760
  };
124855
125761
  readonly gap: {
@@ -124860,7 +125766,7 @@ export declare const UMappingCardList: import("vue").DefineComponent<import("vue
124860
125766
  }>> & Readonly<{}>, {
124861
125767
  readonly gap: number;
124862
125768
  readonly items: import(".").MappingCardProps[];
124863
- readonly pagination: false | import("./pagination").PaginationProps;
125769
+ readonly pagination: false | import(".").PaginationProps;
124864
125770
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
124865
125771
  export type * from './marquee';
124866
125772
  export declare const UMarquee: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -126191,7 +127097,7 @@ export declare const UMention: import("vue").DefineComponent<import("vue").Extra
126191
127097
  } | undefined;
126192
127098
  };
126193
127099
  }>;
126194
- treeMate: import("vue").ComputedRef<import("treemate").TreeMate<import("./select/src/interface").SelectBaseOption<string | number, string | ((option: import("./select/src/interface").SelectBaseOption<string | number, string | /*elided*/ any>, selected: boolean) => import("vue").VNodeChild)>, import("./select").SelectGroupOption, import("./select/src/interface").SelectIgnoredOption>>;
127100
+ treeMate: import("vue").ComputedRef<import("treemate").TreeMate<import("./select/src/interface").SelectBaseOption<string | number, string | ((option: import("./select/src/interface").SelectBaseOption<string | number, string | /*elided*/ any>, selected: boolean) => import("vue").VNodeChild)>, import(".").SelectGroupOption, import("./select/src/interface").SelectIgnoredOption>>;
126195
127101
  selectMenuInstRef: import("vue").Ref<{
126196
127102
  selfRef: HTMLElement | null;
126197
127103
  getPendingTmNode: () => import("treemate").TreeNode<import("./select/src/interface").SelectBaseOption> | null;
@@ -127211,7 +128117,7 @@ export declare const UMenu: import("vue").DefineComponent<import("vue").ExtractP
127211
128117
  readonly renderIcon: import("vue").PropType<(option: import(".").MenuOption) => import("vue").VNodeChild>;
127212
128118
  readonly renderLabel: import("vue").PropType<(option: import(".").MenuOption | import(".").MenuGroupOption) => import("vue").VNodeChild>;
127213
128119
  readonly renderExtra: import("vue").PropType<(option: import(".").MenuOption | import(".").MenuGroupOption) => import("vue").VNodeChild>;
127214
- readonly dropdownProps: import("vue").PropType<import("./dropdown").DropdownProps>;
128120
+ readonly dropdownProps: import("vue").PropType<import(".").DropdownProps>;
127215
128121
  readonly accordion: BooleanConstructor;
127216
128122
  readonly nodeProps: import("vue").PropType<import(".").MenuNodeProps>;
127217
128123
  readonly responsive: BooleanConstructor;
@@ -128110,7 +129016,7 @@ export declare const UMenu: import("vue").DefineComponent<import("vue").ExtractP
128110
129016
  readonly renderIcon: import("vue").PropType<(option: import(".").MenuOption) => import("vue").VNodeChild>;
128111
129017
  readonly renderLabel: import("vue").PropType<(option: import(".").MenuOption | import(".").MenuGroupOption) => import("vue").VNodeChild>;
128112
129018
  readonly renderExtra: import("vue").PropType<(option: import(".").MenuOption | import(".").MenuGroupOption) => import("vue").VNodeChild>;
128113
- readonly dropdownProps: import("vue").PropType<import("./dropdown").DropdownProps>;
129019
+ readonly dropdownProps: import("vue").PropType<import(".").DropdownProps>;
128114
129020
  readonly accordion: BooleanConstructor;
128115
129021
  readonly nodeProps: import("vue").PropType<import(".").MenuNodeProps>;
128116
129022
  readonly responsive: BooleanConstructor;
@@ -128709,15 +129615,15 @@ export { messageBubbleProps } from './message-bubble';
128709
129615
  export { MessageBubbleAttachmentStatus, MessageBubbleServiceVariant, MessageBubbleStatus, MessageBubbleType } from './message-bubble';
128710
129616
  export declare const UMessageBubble: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
128711
129617
  readonly type: {
128712
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleType>;
128713
- readonly default: import("./message-bubble").MessageBubbleType.MESSAGE;
129618
+ readonly type: import("vue").PropType<import(".").MessageBubbleType>;
129619
+ readonly default: import(".").MessageBubbleType.MESSAGE;
128714
129620
  };
128715
129621
  readonly serviceVariant: {
128716
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleServiceVariant>;
128717
- readonly default: import("./message-bubble").MessageBubbleServiceVariant.SYSTEM;
129622
+ readonly type: import("vue").PropType<import(".").MessageBubbleServiceVariant>;
129623
+ readonly default: import(".").MessageBubbleServiceVariant.SYSTEM;
128718
129624
  };
128719
129625
  readonly id: {
128720
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleId>;
129626
+ readonly type: import("vue").PropType<import(".").MessageBubbleId>;
128721
129627
  readonly default: undefined;
128722
129628
  };
128723
129629
  readonly isOwn: {
@@ -128725,11 +129631,19 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128725
129631
  readonly default: false;
128726
129632
  };
128727
129633
  readonly title: {
128728
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleRenderContent>;
129634
+ readonly type: import("vue").PropType<import(".").MessageBubbleRenderContent>;
128729
129635
  readonly default: undefined;
128730
129636
  };
128731
129637
  readonly content: {
128732
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleRenderContent>;
129638
+ readonly type: import("vue").PropType<import(".").MessageBubbleRenderContent>;
129639
+ readonly default: undefined;
129640
+ };
129641
+ readonly markdown: {
129642
+ readonly type: BooleanConstructor;
129643
+ readonly default: false;
129644
+ };
129645
+ readonly markdownOptions: {
129646
+ readonly type: import("vue").PropType<import(".").MarkdownOptions>;
128733
129647
  readonly default: undefined;
128734
129648
  };
128735
129649
  readonly timestamp: {
@@ -128737,19 +129651,19 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128737
129651
  readonly default: undefined;
128738
129652
  };
128739
129653
  readonly status: {
128740
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleStatus>;
129654
+ readonly type: import("vue").PropType<import(".").MessageBubbleStatus>;
128741
129655
  readonly default: undefined;
128742
129656
  };
128743
129657
  readonly attachments: {
128744
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleAttachment[] | import("./message-bubble").MessageBubbleAttachment>;
129658
+ readonly type: import("vue").PropType<import(".").MessageBubbleAttachment[] | import(".").MessageBubbleAttachment>;
128745
129659
  readonly default: undefined;
128746
129660
  };
128747
129661
  readonly uploadProps: {
128748
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
129662
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
128749
129663
  readonly default: undefined;
128750
129664
  };
128751
129665
  readonly actions: {
128752
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleAction[]>;
129666
+ readonly type: import("vue").PropType<import(".").MessageBubbleAction[]>;
128753
129667
  readonly default: undefined;
128754
129668
  };
128755
129669
  readonly retryText: {
@@ -128757,11 +129671,11 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128757
129671
  readonly default: undefined;
128758
129672
  };
128759
129673
  readonly onRetry: {
128760
- readonly type: import("vue").PropType<(message: import("./message-bubble").MessageBubbleMessagePayload) => void>;
129674
+ readonly type: import("vue").PropType<(message: import(".").MessageBubbleMessagePayload) => void>;
128761
129675
  readonly default: undefined;
128762
129676
  };
128763
129677
  readonly onAttachmentDownload: {
128764
- readonly type: import("vue").PropType<(attachment: import("./message-bubble").MessageBubbleAttachment) => Promise<void> | void>;
129678
+ readonly type: import("vue").PropType<(attachment: import(".").MessageBubbleAttachment) => Promise<void> | void>;
128765
129679
  readonly default: undefined;
128766
129680
  };
128767
129681
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"MessageBubble", {
@@ -128781,6 +129695,15 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128781
129695
  serviceMessageTextColor: string;
128782
129696
  serviceMessageBackgroundColor: string;
128783
129697
  messageTitleColor: string;
129698
+ markdownQuoteBorderColorOwn: string;
129699
+ markdownQuoteBorderColorOther: string;
129700
+ markdownQuoteTextColor: string;
129701
+ markdownDividerColorOwn: string;
129702
+ markdownDividerColorOther: string;
129703
+ markdownH1FontSize: string;
129704
+ markdownH2FontSize: string;
129705
+ markdownH3FontSize: string;
129706
+ markdownTextFontSize: string;
128784
129707
  }, {
128785
129708
  StatusIcon: import("./_mixins").Theme<"Icon", {
128786
129709
  color: string;
@@ -128808,6 +129731,15 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128808
129731
  serviceMessageTextColor: string;
128809
129732
  serviceMessageBackgroundColor: string;
128810
129733
  messageTitleColor: string;
129734
+ markdownQuoteBorderColorOwn: string;
129735
+ markdownQuoteBorderColorOther: string;
129736
+ markdownQuoteTextColor: string;
129737
+ markdownDividerColorOwn: string;
129738
+ markdownDividerColorOther: string;
129739
+ markdownH1FontSize: string;
129740
+ markdownH2FontSize: string;
129741
+ markdownH3FontSize: string;
129742
+ markdownTextFontSize: string;
128811
129743
  }, {
128812
129744
  StatusIcon: import("./_mixins").Theme<"Icon", {
128813
129745
  color: string;
@@ -128835,6 +129767,15 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128835
129767
  serviceMessageTextColor: string;
128836
129768
  serviceMessageBackgroundColor: string;
128837
129769
  messageTitleColor: string;
129770
+ markdownQuoteBorderColorOwn: string;
129771
+ markdownQuoteBorderColorOther: string;
129772
+ markdownQuoteTextColor: string;
129773
+ markdownDividerColorOwn: string;
129774
+ markdownDividerColorOther: string;
129775
+ markdownH1FontSize: string;
129776
+ markdownH2FontSize: string;
129777
+ markdownH3FontSize: string;
129778
+ markdownTextFontSize: string;
128838
129779
  }, {
128839
129780
  StatusIcon: import("./_mixins").Theme<"Icon", {
128840
129781
  color: string;
@@ -128855,15 +129796,15 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128855
129796
  renderService: () => import("vue").VNodeChild;
128856
129797
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
128857
129798
  readonly type: {
128858
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleType>;
128859
- readonly default: import("./message-bubble").MessageBubbleType.MESSAGE;
129799
+ readonly type: import("vue").PropType<import(".").MessageBubbleType>;
129800
+ readonly default: import(".").MessageBubbleType.MESSAGE;
128860
129801
  };
128861
129802
  readonly serviceVariant: {
128862
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleServiceVariant>;
128863
- readonly default: import("./message-bubble").MessageBubbleServiceVariant.SYSTEM;
129803
+ readonly type: import("vue").PropType<import(".").MessageBubbleServiceVariant>;
129804
+ readonly default: import(".").MessageBubbleServiceVariant.SYSTEM;
128864
129805
  };
128865
129806
  readonly id: {
128866
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleId>;
129807
+ readonly type: import("vue").PropType<import(".").MessageBubbleId>;
128867
129808
  readonly default: undefined;
128868
129809
  };
128869
129810
  readonly isOwn: {
@@ -128871,11 +129812,19 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128871
129812
  readonly default: false;
128872
129813
  };
128873
129814
  readonly title: {
128874
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleRenderContent>;
129815
+ readonly type: import("vue").PropType<import(".").MessageBubbleRenderContent>;
128875
129816
  readonly default: undefined;
128876
129817
  };
128877
129818
  readonly content: {
128878
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleRenderContent>;
129819
+ readonly type: import("vue").PropType<import(".").MessageBubbleRenderContent>;
129820
+ readonly default: undefined;
129821
+ };
129822
+ readonly markdown: {
129823
+ readonly type: BooleanConstructor;
129824
+ readonly default: false;
129825
+ };
129826
+ readonly markdownOptions: {
129827
+ readonly type: import("vue").PropType<import(".").MarkdownOptions>;
128879
129828
  readonly default: undefined;
128880
129829
  };
128881
129830
  readonly timestamp: {
@@ -128883,19 +129832,19 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128883
129832
  readonly default: undefined;
128884
129833
  };
128885
129834
  readonly status: {
128886
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleStatus>;
129835
+ readonly type: import("vue").PropType<import(".").MessageBubbleStatus>;
128887
129836
  readonly default: undefined;
128888
129837
  };
128889
129838
  readonly attachments: {
128890
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleAttachment[] | import("./message-bubble").MessageBubbleAttachment>;
129839
+ readonly type: import("vue").PropType<import(".").MessageBubbleAttachment[] | import(".").MessageBubbleAttachment>;
128891
129840
  readonly default: undefined;
128892
129841
  };
128893
129842
  readonly uploadProps: {
128894
- readonly type: import("vue").PropType<Partial<import("./upload").UploadProps>>;
129843
+ readonly type: import("vue").PropType<Partial<import(".").UploadProps>>;
128895
129844
  readonly default: undefined;
128896
129845
  };
128897
129846
  readonly actions: {
128898
- readonly type: import("vue").PropType<import("./message-bubble").MessageBubbleAction[]>;
129847
+ readonly type: import("vue").PropType<import(".").MessageBubbleAction[]>;
128899
129848
  readonly default: undefined;
128900
129849
  };
128901
129850
  readonly retryText: {
@@ -128903,11 +129852,11 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128903
129852
  readonly default: undefined;
128904
129853
  };
128905
129854
  readonly onRetry: {
128906
- readonly type: import("vue").PropType<(message: import("./message-bubble").MessageBubbleMessagePayload) => void>;
129855
+ readonly type: import("vue").PropType<(message: import(".").MessageBubbleMessagePayload) => void>;
128907
129856
  readonly default: undefined;
128908
129857
  };
128909
129858
  readonly onAttachmentDownload: {
128910
- readonly type: import("vue").PropType<(attachment: import("./message-bubble").MessageBubbleAttachment) => Promise<void> | void>;
129859
+ readonly type: import("vue").PropType<(attachment: import(".").MessageBubbleAttachment) => Promise<void> | void>;
128911
129860
  readonly default: undefined;
128912
129861
  };
128913
129862
  readonly theme: import("vue").PropType<import("./_mixins").Theme<"MessageBubble", {
@@ -128927,6 +129876,15 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128927
129876
  serviceMessageTextColor: string;
128928
129877
  serviceMessageBackgroundColor: string;
128929
129878
  messageTitleColor: string;
129879
+ markdownQuoteBorderColorOwn: string;
129880
+ markdownQuoteBorderColorOther: string;
129881
+ markdownQuoteTextColor: string;
129882
+ markdownDividerColorOwn: string;
129883
+ markdownDividerColorOther: string;
129884
+ markdownH1FontSize: string;
129885
+ markdownH2FontSize: string;
129886
+ markdownH3FontSize: string;
129887
+ markdownTextFontSize: string;
128930
129888
  }, {
128931
129889
  StatusIcon: import("./_mixins").Theme<"Icon", {
128932
129890
  color: string;
@@ -128954,6 +129912,15 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128954
129912
  serviceMessageTextColor: string;
128955
129913
  serviceMessageBackgroundColor: string;
128956
129914
  messageTitleColor: string;
129915
+ markdownQuoteBorderColorOwn: string;
129916
+ markdownQuoteBorderColorOther: string;
129917
+ markdownQuoteTextColor: string;
129918
+ markdownDividerColorOwn: string;
129919
+ markdownDividerColorOther: string;
129920
+ markdownH1FontSize: string;
129921
+ markdownH2FontSize: string;
129922
+ markdownH3FontSize: string;
129923
+ markdownTextFontSize: string;
128957
129924
  }, {
128958
129925
  StatusIcon: import("./_mixins").Theme<"Icon", {
128959
129926
  color: string;
@@ -128981,6 +129948,15 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128981
129948
  serviceMessageTextColor: string;
128982
129949
  serviceMessageBackgroundColor: string;
128983
129950
  messageTitleColor: string;
129951
+ markdownQuoteBorderColorOwn: string;
129952
+ markdownQuoteBorderColorOther: string;
129953
+ markdownQuoteTextColor: string;
129954
+ markdownDividerColorOwn: string;
129955
+ markdownDividerColorOther: string;
129956
+ markdownH1FontSize: string;
129957
+ markdownH2FontSize: string;
129958
+ markdownH3FontSize: string;
129959
+ markdownTextFontSize: string;
128984
129960
  }, {
128985
129961
  StatusIcon: import("./_mixins").Theme<"Icon", {
128986
129962
  color: string;
@@ -128992,21 +129968,23 @@ export declare const UMessageBubble: import("vue").DefineComponent<import("vue")
128992
129968
  }, any>;
128993
129969
  }>>>;
128994
129970
  }>> & Readonly<{}>, {
128995
- readonly title: import("./message-bubble").MessageBubbleRenderContent;
129971
+ readonly title: import(".").MessageBubbleRenderContent;
128996
129972
  readonly retryText: string;
128997
- readonly type: import("./message-bubble").MessageBubbleType;
128998
- readonly content: import("./message-bubble").MessageBubbleRenderContent;
128999
- readonly status: import("./message-bubble").MessageBubbleStatus;
129000
- readonly actions: import("./message-bubble").MessageBubbleAction[];
129001
- readonly onRetry: (message: import("./message-bubble").MessageBubbleMessagePayload) => void;
129002
- readonly serviceVariant: import("./message-bubble").MessageBubbleServiceVariant;
129003
- readonly id: import("./message-bubble").MessageBubbleId;
129973
+ readonly type: import(".").MessageBubbleType;
129974
+ readonly content: import(".").MessageBubbleRenderContent;
129975
+ readonly status: import(".").MessageBubbleStatus;
129976
+ readonly actions: import(".").MessageBubbleAction[];
129977
+ readonly onRetry: (message: import(".").MessageBubbleMessagePayload) => void;
129978
+ readonly serviceVariant: import(".").MessageBubbleServiceVariant;
129979
+ readonly id: import(".").MessageBubbleId;
129004
129980
  readonly isOwn: boolean;
129981
+ readonly markdown: boolean;
129982
+ readonly markdownOptions: import(".").MarkdownOptions;
129005
129983
  readonly timestamp: string | number | Date | (() => import("vue").VNodeChild);
129006
- readonly attachments: import("./message-bubble").MessageBubbleAttachment | import("./message-bubble").MessageBubbleAttachment[];
129007
- readonly uploadProps: Partial<import("./upload").UploadProps>;
129008
- readonly onAttachmentDownload: (attachment: import("./message-bubble").MessageBubbleAttachment) => Promise<void> | void;
129009
- }, import("vue").SlotsType<import("./message-bubble").MessageBubbleSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
129984
+ readonly attachments: import(".").MessageBubbleAttachment | import(".").MessageBubbleAttachment[];
129985
+ readonly uploadProps: Partial<import(".").UploadProps>;
129986
+ readonly onAttachmentDownload: (attachment: import(".").MessageBubbleAttachment) => Promise<void> | void;
129987
+ }, import("vue").SlotsType<import(".").MessageBubbleSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
129010
129988
  export type * from './modal';
129011
129989
  export { modalProps, modalProviderProps, useModal, useModalReactiveList } from './modal';
129012
129990
  export declare const UModal: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -132035,7 +133013,7 @@ export { paginationProps } from './pagination';
132035
133013
  export declare const UPagination: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
132036
133014
  readonly simple: BooleanConstructor;
132037
133015
  readonly variant: {
132038
- readonly type: import("vue").PropType<import("./pagination").PaginationVariant>;
133016
+ readonly type: import("vue").PropType<import(".").PaginationVariant>;
132039
133017
  readonly default: "default";
132040
133018
  };
132041
133019
  readonly hasPrev: {
@@ -132062,7 +133040,7 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
132062
133040
  readonly pageSize: NumberConstructor;
132063
133041
  readonly defaultPageSize: NumberConstructor;
132064
133042
  readonly pageSizes: {
132065
- readonly type: import("vue").PropType<Array<number | import("./pagination").PaginationSizeOption>>;
133043
+ readonly type: import("vue").PropType<Array<number | import(".").PaginationSizeOption>>;
132066
133044
  readonly default: () => number[];
132067
133045
  };
132068
133046
  readonly showQuickJumper: BooleanConstructor;
@@ -132075,15 +133053,15 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
132075
133053
  readonly type: NumberConstructor;
132076
133054
  readonly default: 9;
132077
133055
  };
132078
- readonly selectProps: import("vue").PropType<import("./select").SelectProps>;
133056
+ readonly selectProps: import("vue").PropType<import(".").SelectProps>;
132079
133057
  readonly prev: import("vue").PropType<import("./pagination/src/interface").RenderPrev>;
132080
133058
  readonly next: import("vue").PropType<import("./pagination/src/interface").RenderNext>;
132081
133059
  readonly goto: import("vue").PropType<import("./pagination/src/interface").RenderGoto>;
132082
133060
  readonly prefix: import("vue").PropType<import("./pagination/src/interface").RenderPrefix>;
132083
133061
  readonly suffix: import("vue").PropType<import("./pagination/src/interface").RenderSuffix>;
132084
- readonly label: import("vue").PropType<import("./pagination").PaginationRenderLabel>;
133062
+ readonly label: import("vue").PropType<import(".").PaginationRenderLabel>;
132085
133063
  readonly displayOrder: {
132086
- readonly type: import("vue").PropType<import("./pagination").PaginationDisplayOrder[]>;
133064
+ readonly type: import("vue").PropType<import(".").PaginationDisplayOrder[]>;
132087
133065
  readonly default: readonly ["size-picker", "pages", "quick-jumper"];
132088
133066
  };
132089
133067
  readonly to: {
@@ -134116,10 +135094,10 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
134116
135094
  pageItems: import("vue").ComputedRef<import("./pagination/src/utils").PageItem[]>;
134117
135095
  mergedItemCount: import("vue").ComputedRef<number>;
134118
135096
  jumperValue: import("vue").Ref<string, string>;
134119
- pageSizeOptions: import("vue").ComputedRef<import("./pagination").PaginationSizeOption[]>;
135097
+ pageSizeOptions: import("vue").ComputedRef<import(".").PaginationSizeOption[]>;
134120
135098
  mergedPageSize: import("vue").ComputedRef<number>;
134121
135099
  inputSize: import("vue").ComputedRef<import("./input").InputSize>;
134122
- selectSize: import("vue").ComputedRef<import("./select").SelectSize>;
135100
+ selectSize: import("vue").ComputedRef<import(".").SelectSize>;
134123
135101
  mergedTheme: import("vue").ComputedRef<{
134124
135102
  common: import("./config-provider").ThemeCommonVars;
134125
135103
  self: {
@@ -135389,7 +136367,7 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
135389
136367
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
135390
136368
  readonly simple: BooleanConstructor;
135391
136369
  readonly variant: {
135392
- readonly type: import("vue").PropType<import("./pagination").PaginationVariant>;
136370
+ readonly type: import("vue").PropType<import(".").PaginationVariant>;
135393
136371
  readonly default: "default";
135394
136372
  };
135395
136373
  readonly hasPrev: {
@@ -135416,7 +136394,7 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
135416
136394
  readonly pageSize: NumberConstructor;
135417
136395
  readonly defaultPageSize: NumberConstructor;
135418
136396
  readonly pageSizes: {
135419
- readonly type: import("vue").PropType<Array<number | import("./pagination").PaginationSizeOption>>;
136397
+ readonly type: import("vue").PropType<Array<number | import(".").PaginationSizeOption>>;
135420
136398
  readonly default: () => number[];
135421
136399
  };
135422
136400
  readonly showQuickJumper: BooleanConstructor;
@@ -135429,15 +136407,15 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
135429
136407
  readonly type: NumberConstructor;
135430
136408
  readonly default: 9;
135431
136409
  };
135432
- readonly selectProps: import("vue").PropType<import("./select").SelectProps>;
136410
+ readonly selectProps: import("vue").PropType<import(".").SelectProps>;
135433
136411
  readonly prev: import("vue").PropType<import("./pagination/src/interface").RenderPrev>;
135434
136412
  readonly next: import("vue").PropType<import("./pagination/src/interface").RenderNext>;
135435
136413
  readonly goto: import("vue").PropType<import("./pagination/src/interface").RenderGoto>;
135436
136414
  readonly prefix: import("vue").PropType<import("./pagination/src/interface").RenderPrefix>;
135437
136415
  readonly suffix: import("vue").PropType<import("./pagination/src/interface").RenderSuffix>;
135438
- readonly label: import("vue").PropType<import("./pagination").PaginationRenderLabel>;
136416
+ readonly label: import("vue").PropType<import(".").PaginationRenderLabel>;
135439
136417
  readonly displayOrder: {
135440
- readonly type: import("vue").PropType<import("./pagination").PaginationDisplayOrder[]>;
136418
+ readonly type: import("vue").PropType<import(".").PaginationDisplayOrder[]>;
135441
136419
  readonly default: readonly ["size-picker", "pages", "quick-jumper"];
135442
136420
  };
135443
136421
  readonly to: {
@@ -137458,17 +138436,17 @@ export declare const UPagination: import("vue").DefineComponent<import("vue").Ex
137458
138436
  readonly disabled: boolean;
137459
138437
  readonly size: import("./pagination/src/interface").Size;
137460
138438
  readonly simple: boolean;
137461
- readonly variant: import("./pagination").PaginationVariant;
138439
+ readonly variant: import(".").PaginationVariant;
137462
138440
  readonly hasPrev: boolean;
137463
138441
  readonly hasNext: boolean;
137464
138442
  readonly defaultPage: number;
137465
138443
  readonly defaultPageCount: number;
137466
138444
  readonly showSizePicker: boolean;
137467
- readonly pageSizes: (number | import("./pagination").PaginationSizeOption)[];
138445
+ readonly pageSizes: (number | import(".").PaginationSizeOption)[];
137468
138446
  readonly showQuickJumper: boolean;
137469
138447
  readonly pageSlot: number;
137470
- readonly displayOrder: import("./pagination").PaginationDisplayOrder[];
137471
- }, import("vue").SlotsType<import("./pagination").PaginationSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
138448
+ readonly displayOrder: import(".").PaginationDisplayOrder[];
138449
+ }, import("vue").SlotsType<import(".").PaginationSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
137472
138450
  export type * from './popconfirm';
137473
138451
  export { popconfirmProps } from './popconfirm';
137474
138452
  export declare const UPopconfirm: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -139733,7 +140711,7 @@ export declare const UPopselect: import("vue").DefineComponent<import("vue").Ext
139733
140711
  readonly default: () => never[];
139734
140712
  };
139735
140713
  size: {
139736
- readonly type: import("vue").PropType<import("./popselect").PopselectSize>;
140714
+ readonly type: import("vue").PropType<import(".").PopselectSize>;
139737
140715
  readonly default: "medium";
139738
140716
  };
139739
140717
  scrollable: BooleanConstructor;
@@ -139746,7 +140724,7 @@ export declare const UPopselect: import("vue").DefineComponent<import("vue").Ext
139746
140724
  readonly type: BooleanConstructor;
139747
140725
  readonly default: undefined;
139748
140726
  };
139749
- nodeProps: import("vue").PropType<import("./select").SelectNodeProps>;
140727
+ nodeProps: import("vue").PropType<import(".").SelectNodeProps>;
139750
140728
  virtualScroll: BooleanConstructor;
139751
140729
  onChange: import("vue").PropType<import("./_utils").MaybeArray<import("./select/src/interface").OnUpdateValue> | undefined>;
139752
140730
  placement: {
@@ -140845,7 +141823,7 @@ export declare const UPopselect: import("vue").DefineComponent<import("vue").Ext
140845
141823
  readonly default: () => never[];
140846
141824
  };
140847
141825
  size: {
140848
- readonly type: import("vue").PropType<import("./popselect").PopselectSize>;
141826
+ readonly type: import("vue").PropType<import(".").PopselectSize>;
140849
141827
  readonly default: "medium";
140850
141828
  };
140851
141829
  scrollable: BooleanConstructor;
@@ -140858,7 +141836,7 @@ export declare const UPopselect: import("vue").DefineComponent<import("vue").Ext
140858
141836
  readonly type: BooleanConstructor;
140859
141837
  readonly default: undefined;
140860
141838
  };
140861
- nodeProps: import("vue").PropType<import("./select").SelectNodeProps>;
141839
+ nodeProps: import("vue").PropType<import(".").SelectNodeProps>;
140862
141840
  virtualScroll: BooleanConstructor;
140863
141841
  onChange: import("vue").PropType<import("./_utils").MaybeArray<import("./select/src/interface").OnUpdateValue> | undefined>;
140864
141842
  placement: {
@@ -141570,7 +142548,7 @@ export declare const UPopselect: import("vue").DefineComponent<import("vue").Ext
141570
142548
  disabled: boolean;
141571
142549
  placement: import("vueuc").FollowerPlacement;
141572
142550
  value: import("./select/src/interface").Value | null;
141573
- size: import("./popselect").PopselectSize;
142551
+ size: import(".").PopselectSize;
141574
142552
  options: import("./select/src/interface").SelectMixedOption[];
141575
142553
  show: boolean | undefined;
141576
142554
  multiple: boolean;
@@ -141590,7 +142568,7 @@ export declare const UPopselect: import("vue").DefineComponent<import("vue").Ext
141590
142568
  internalExtraClass: string[];
141591
142569
  showCheckmark: boolean;
141592
142570
  cancelable: boolean;
141593
- }, import("vue").SlotsType<import("./popselect").PopselectSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
142571
+ }, import("vue").SlotsType<import(".").PopselectSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
141594
142572
  export type * from './progress';
141595
142573
  export { progressProps } from './progress';
141596
142574
  export declare const UProgress: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -142442,7 +143420,7 @@ export declare const URadioGroup: import("vue").DefineComponent<import("vue").Ex
142442
143420
  readonly type: import("vue").PropType<string | number | boolean | null>;
142443
143421
  readonly default: null;
142444
143422
  };
142445
- readonly size: import("vue").PropType<import("./radio").RadioSize>;
143423
+ readonly size: import("vue").PropType<import(".").RadioSize>;
142446
143424
  readonly disabled: {
142447
143425
  readonly type: import("vue").PropType<boolean | undefined>;
142448
143426
  readonly default: undefined;
@@ -142637,7 +143615,7 @@ export declare const URadioGroup: import("vue").DefineComponent<import("vue").Ex
142637
143615
  readonly type: import("vue").PropType<string | number | boolean | null>;
142638
143616
  readonly default: null;
142639
143617
  };
142640
- readonly size: import("vue").PropType<import("./radio").RadioSize>;
143618
+ readonly size: import("vue").PropType<import(".").RadioSize>;
142641
143619
  readonly disabled: {
142642
143620
  readonly type: import("vue").PropType<boolean | undefined>;
142643
143621
  readonly default: undefined;
@@ -143419,7 +144397,7 @@ export declare const USelect: import("vue").DefineComponent<import("vue").Extrac
143419
144397
  readonly placeholder: StringConstructor;
143420
144398
  readonly menuProps: import("vue").PropType<import("vue").HTMLAttributes>;
143421
144399
  readonly multiple: BooleanConstructor;
143422
- readonly size: import("vue").PropType<import("./select").SelectSize>;
144400
+ readonly size: import("vue").PropType<import(".").SelectSize>;
143423
144401
  readonly menuSize: {
143424
144402
  readonly type: import("vue").PropType<import("./_internal/select-menu/src/interface").Size>;
143425
144403
  };
@@ -143440,7 +144418,7 @@ export declare const USelect: import("vue").DefineComponent<import("vue").Extrac
143440
144418
  readonly remote: BooleanConstructor;
143441
144419
  readonly loading: BooleanConstructor;
143442
144420
  readonly loadingSkeleton: BooleanConstructor;
143443
- readonly filter: import("vue").PropType<import("./select").SelectFilter>;
144421
+ readonly filter: import("vue").PropType<import(".").SelectFilter>;
143444
144422
  readonly placement: {
143445
144423
  readonly type: import("vue").PropType<import("vueuc").FollowerPlacement>;
143446
144424
  readonly default: "bottom-start";
@@ -143450,7 +144428,7 @@ export declare const USelect: import("vue").DefineComponent<import("vue").Extrac
143450
144428
  readonly default: "trigger";
143451
144429
  };
143452
144430
  readonly tag: BooleanConstructor;
143453
- readonly onCreate: import("vue").PropType<(label: string) => import("./select").SelectOption>;
144431
+ readonly onCreate: import("vue").PropType<(label: string) => import(".").SelectOption>;
143454
144432
  readonly fallbackOption: {
143455
144433
  readonly type: import("vue").PropType<import("./select/src/interface").SelectFallbackOption | false | undefined>;
143456
144434
  readonly default: undefined;
@@ -143490,10 +144468,10 @@ export declare const USelect: import("vue").DefineComponent<import("vue").Extrac
143490
144468
  readonly renderTagLabel: import("vue").PropType<import("./_internal/select-menu/src/interface").RenderLabel>;
143491
144469
  readonly renderLabel: import("vue").PropType<import("./_internal/select-menu/src/interface").RenderLabel>;
143492
144470
  readonly renderOption: import("vue").PropType<import("./_internal/select-menu/src/interface").RenderOption>;
143493
- readonly renderTag: import("vue").PropType<import("./select").SelectRenderTag>;
144471
+ readonly renderTag: import("vue").PropType<import(".").SelectRenderTag>;
143494
144472
  readonly 'onUpdate:value': import("vue").PropType<import("./_utils").MaybeArray<import("./select/src/interface").OnUpdateValue> | undefined>;
143495
144473
  readonly inputProps: import("vue").PropType<import("vue").InputHTMLAttributes>;
143496
- readonly nodeProps: import("vue").PropType<import("./select").SelectNodeProps>;
144474
+ readonly nodeProps: import("vue").PropType<import(".").SelectNodeProps>;
143497
144475
  readonly ignoreComposition: {
143498
144476
  readonly type: BooleanConstructor;
143499
144477
  readonly default: true;
@@ -143524,8 +144502,8 @@ export declare const USelect: import("vue").DefineComponent<import("vue").Extrac
143524
144502
  readonly type: import("vue").PropType<boolean | undefined>;
143525
144503
  readonly default: undefined;
143526
144504
  };
143527
- readonly primaryButtonProps: import("vue").PropType<import("./select").SelectFooterButtonProps>;
143528
- readonly secondaryButtonProps: import("vue").PropType<import("./select").SelectFooterButtonProps>;
144505
+ readonly primaryButtonProps: import("vue").PropType<import(".").SelectFooterButtonProps>;
144506
+ readonly secondaryButtonProps: import("vue").PropType<import(".").SelectFooterButtonProps>;
143529
144507
  readonly scrollbarProps: import("vue").PropType<import("./_internal").ScrollbarProps>;
143530
144508
  readonly round: BooleanConstructor;
143531
144509
  readonly counter: BooleanConstructor;
@@ -144483,7 +145461,7 @@ export declare const USelect: import("vue").DefineComponent<import("vue").Extrac
144483
145461
  mergedClsPrefix: import("vue").Ref<string, string>;
144484
145462
  mergedBordered: import("vue").ComputedRef<boolean>;
144485
145463
  namespace: import("vue").ComputedRef<string | undefined>;
144486
- treeMate: import("vue").ComputedRef<import("treemate").TreeMate<import("./select").SelectOption, import("./select").SelectGroupOption, import("./select/src/interface").SelectIgnoredOption>>;
145464
+ treeMate: import("vue").ComputedRef<import("treemate").TreeMate<import(".").SelectOption, import(".").SelectGroupOption, import("./select/src/interface").SelectIgnoredOption>>;
144487
145465
  isMounted: Readonly<import("vue").Ref<boolean, boolean>>;
144488
145466
  triggerRef: import("vue").Ref<{
144489
145467
  isComposing: boolean;
@@ -144536,9 +145514,9 @@ export declare const USelect: import("vue").DefineComponent<import("vue").Extrac
144536
145514
  localizedSearchPlaceholder: import("vue").ComputedRef<string>;
144537
145515
  mergedTriggerFilterable: import("vue").ComputedRef<boolean>;
144538
145516
  mergedMenuFilterable: import("vue").ComputedRef<boolean>;
144539
- selectedOption: import("vue").ComputedRef<import("./select").SelectOption | null>;
144540
- selectedOptions: import("vue").ComputedRef<import("./select").SelectOption[] | null>;
144541
- mergedSize: import("vue").ComputedRef<import("./select").SelectSize>;
145517
+ selectedOption: import("vue").ComputedRef<import(".").SelectOption | null>;
145518
+ selectedOptions: import("vue").ComputedRef<import(".").SelectOption[] | null>;
145519
+ mergedSize: import("vue").ComputedRef<import(".").SelectSize>;
144542
145520
  mergedDisabled: import("vue").ComputedRef<boolean>;
144543
145521
  focused: import("vue").Ref<boolean, boolean>;
144544
145522
  activeWithoutMenuOpen: import("vue").Ref<boolean, boolean>;
@@ -144550,8 +145528,8 @@ export declare const USelect: import("vue").DefineComponent<import("vue").Extrac
144550
145528
  handleMenuBlur: (e: FocusEvent) => void;
144551
145529
  handleMenuTabOut: () => void;
144552
145530
  handleTriggerClick: () => void;
144553
- handleToggle: (tmNode: import("treemate").TreeNode<import("./select").SelectOption>) => void;
144554
- handleDeleteOption: (option: import("./select").SelectOption) => void;
145531
+ handleToggle: (tmNode: import("treemate").TreeNode<import(".").SelectOption>) => void;
145532
+ handleDeleteOption: (option: import(".").SelectOption) => void;
144555
145533
  handlePatternInput: (e: InputEvent) => void;
144556
145534
  handleMenuPatternInput: (value: string) => void;
144557
145535
  handleClear: (e: MouseEvent) => void;
@@ -144563,7 +145541,7 @@ export declare const USelect: import("vue").DefineComponent<import("vue").Extrac
144563
145541
  handleMenuScroll: (e: Event) => void;
144564
145542
  handleMenuKeydown: (event: KeyboardEvent) => void;
144565
145543
  handleMenuMousedown: (e: MouseEvent) => void;
144566
- handleFooterButtonClick: (buttonProps: import("./select").SelectFooterButtonProps, event: MouseEvent) => void;
145544
+ handleFooterButtonClick: (buttonProps: import(".").SelectFooterButtonProps, event: MouseEvent) => void;
144567
145545
  handleSelfKeydown: (event: KeyboardEvent) => void;
144568
145546
  openMenu: () => void;
144569
145547
  closeMenu: () => void;
@@ -145112,7 +146090,7 @@ export declare const USelect: import("vue").DefineComponent<import("vue").Extrac
145112
146090
  readonly placeholder: StringConstructor;
145113
146091
  readonly menuProps: import("vue").PropType<import("vue").HTMLAttributes>;
145114
146092
  readonly multiple: BooleanConstructor;
145115
- readonly size: import("vue").PropType<import("./select").SelectSize>;
146093
+ readonly size: import("vue").PropType<import(".").SelectSize>;
145116
146094
  readonly menuSize: {
145117
146095
  readonly type: import("vue").PropType<import("./_internal/select-menu/src/interface").Size>;
145118
146096
  };
@@ -145133,7 +146111,7 @@ export declare const USelect: import("vue").DefineComponent<import("vue").Extrac
145133
146111
  readonly remote: BooleanConstructor;
145134
146112
  readonly loading: BooleanConstructor;
145135
146113
  readonly loadingSkeleton: BooleanConstructor;
145136
- readonly filter: import("vue").PropType<import("./select").SelectFilter>;
146114
+ readonly filter: import("vue").PropType<import(".").SelectFilter>;
145137
146115
  readonly placement: {
145138
146116
  readonly type: import("vue").PropType<import("vueuc").FollowerPlacement>;
145139
146117
  readonly default: "bottom-start";
@@ -145143,7 +146121,7 @@ export declare const USelect: import("vue").DefineComponent<import("vue").Extrac
145143
146121
  readonly default: "trigger";
145144
146122
  };
145145
146123
  readonly tag: BooleanConstructor;
145146
- readonly onCreate: import("vue").PropType<(label: string) => import("./select").SelectOption>;
146124
+ readonly onCreate: import("vue").PropType<(label: string) => import(".").SelectOption>;
145147
146125
  readonly fallbackOption: {
145148
146126
  readonly type: import("vue").PropType<import("./select/src/interface").SelectFallbackOption | false | undefined>;
145149
146127
  readonly default: undefined;
@@ -145183,10 +146161,10 @@ export declare const USelect: import("vue").DefineComponent<import("vue").Extrac
145183
146161
  readonly renderTagLabel: import("vue").PropType<import("./_internal/select-menu/src/interface").RenderLabel>;
145184
146162
  readonly renderLabel: import("vue").PropType<import("./_internal/select-menu/src/interface").RenderLabel>;
145185
146163
  readonly renderOption: import("vue").PropType<import("./_internal/select-menu/src/interface").RenderOption>;
145186
- readonly renderTag: import("vue").PropType<import("./select").SelectRenderTag>;
146164
+ readonly renderTag: import("vue").PropType<import(".").SelectRenderTag>;
145187
146165
  readonly 'onUpdate:value': import("vue").PropType<import("./_utils").MaybeArray<import("./select/src/interface").OnUpdateValue> | undefined>;
145188
146166
  readonly inputProps: import("vue").PropType<import("vue").InputHTMLAttributes>;
145189
- readonly nodeProps: import("vue").PropType<import("./select").SelectNodeProps>;
146167
+ readonly nodeProps: import("vue").PropType<import(".").SelectNodeProps>;
145190
146168
  readonly ignoreComposition: {
145191
146169
  readonly type: BooleanConstructor;
145192
146170
  readonly default: true;
@@ -145217,8 +146195,8 @@ export declare const USelect: import("vue").DefineComponent<import("vue").Extrac
145217
146195
  readonly type: import("vue").PropType<boolean | undefined>;
145218
146196
  readonly default: undefined;
145219
146197
  };
145220
- readonly primaryButtonProps: import("vue").PropType<import("./select").SelectFooterButtonProps>;
145221
- readonly secondaryButtonProps: import("vue").PropType<import("./select").SelectFooterButtonProps>;
146198
+ readonly primaryButtonProps: import("vue").PropType<import(".").SelectFooterButtonProps>;
146199
+ readonly secondaryButtonProps: import("vue").PropType<import(".").SelectFooterButtonProps>;
145222
146200
  readonly scrollbarProps: import("vue").PropType<import("./_internal").ScrollbarProps>;
145223
146201
  readonly round: BooleanConstructor;
145224
146202
  readonly counter: BooleanConstructor;
@@ -148413,7 +149391,7 @@ export declare const UTabPane: import("vue").DefineComponent<import("vue").Extra
148413
149391
  readonly closable: boolean | undefined;
148414
149392
  readonly disabled: boolean;
148415
149393
  readonly displayDirective: "show" | "if" | "show:lazy";
148416
- }, import("vue").SlotsType<import("./tabs").TabPaneSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
149394
+ }, import("vue").SlotsType<import(".").TabPaneSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
148417
149395
  export declare const UTabs: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
148418
149396
  readonly value: import("vue").PropType<string | number>;
148419
149397
  readonly defaultValue: import("vue").PropType<string | number>;
@@ -149198,7 +150176,7 @@ export declare const UTabs: import("vue").DefineComponent<import("vue").ExtractP
149198
150176
  readonly placement: "left" | "right" | "top" | "bottom";
149199
150177
  readonly animated: boolean;
149200
150178
  readonly tabsPadding: number;
149201
- }, import("vue").SlotsType<import("./tabs").TabsSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
150179
+ }, import("vue").SlotsType<import(".").TabsSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
149202
150180
  export type * from './tag';
149203
150181
  export { tagProps } from './tag';
149204
150182
  export declare const UTag: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
@@ -150301,7 +151279,7 @@ export declare const UTimePicker: import("vue").DefineComponent<import("vue").Ex
150301
151279
  isSecondDisabled: import("vue").PropType<import("./time-picker/src/interface").IsSecondDisabled>;
150302
151280
  inputReadonly: BooleanConstructor;
150303
151281
  clearable: BooleanConstructor;
150304
- status: import("vue").PropType<import("./form").FormValidationStatus>;
151282
+ status: import("vue").PropType<import(".").FormValidationStatus>;
150305
151283
  'onUpdate:value': import("vue").PropType<import("./_utils").MaybeArray<import("./time-picker/src/interface").OnUpdateValue>>;
150306
151284
  onUpdateValue: import("vue").PropType<import("./_utils").MaybeArray<import("./time-picker/src/interface").OnUpdateValue>>;
150307
151285
  'onUpdate:show': import("vue").PropType<import("./_utils").MaybeArray<(show: boolean) => void>>;
@@ -151898,7 +152876,7 @@ export declare const UTimePicker: import("vue").DefineComponent<import("vue").Ex
151898
152876
  isSecondDisabled: import("vue").PropType<import("./time-picker/src/interface").IsSecondDisabled>;
151899
152877
  inputReadonly: BooleanConstructor;
151900
152878
  clearable: BooleanConstructor;
151901
- status: import("vue").PropType<import("./form").FormValidationStatus>;
152879
+ status: import("vue").PropType<import(".").FormValidationStatus>;
151902
152880
  'onUpdate:value': import("vue").PropType<import("./_utils").MaybeArray<import("./time-picker/src/interface").OnUpdateValue>>;
151903
152881
  onUpdateValue: import("vue").PropType<import("./_utils").MaybeArray<import("./time-picker/src/interface").OnUpdateValue>>;
151904
152882
  'onUpdate:show': import("vue").PropType<import("./_utils").MaybeArray<(show: boolean) => void>>;
@@ -157180,7 +158158,7 @@ export declare const UTree: import("vue").DefineComponent<import("vue").ExtractP
157180
158158
  readonly type: BooleanConstructor;
157181
158159
  readonly default: true;
157182
158160
  };
157183
- readonly scrollbarProps: import("vue").PropType<import("./scrollbar").ScrollbarProps>;
158161
+ readonly scrollbarProps: import("vue").PropType<import(".").ScrollbarProps>;
157184
158162
  readonly indent: {
157185
158163
  readonly type: NumberConstructor;
157186
158164
  readonly default: 36;
@@ -158072,7 +159050,7 @@ export declare const UTree: import("vue").DefineComponent<import("vue").ExtractP
158072
159050
  readonly type: BooleanConstructor;
158073
159051
  readonly default: true;
158074
159052
  };
158075
- readonly scrollbarProps: import("vue").PropType<import("./scrollbar").ScrollbarProps>;
159053
+ readonly scrollbarProps: import("vue").PropType<import(".").ScrollbarProps>;
158076
159054
  readonly indent: {
158077
159055
  readonly type: NumberConstructor;
158078
159056
  readonly default: 36;
@@ -158557,7 +159535,7 @@ export declare const UTreeSelect: import("vue").DefineComponent<import("vue").Ex
158557
159535
  readonly type: import("vue").PropType<boolean | undefined>;
158558
159536
  readonly default: undefined;
158559
159537
  };
158560
- readonly size: import("vue").PropType<import("./select").SelectSize>;
159538
+ readonly size: import("vue").PropType<import(".").SelectSize>;
158561
159539
  readonly value: import("vue").PropType<string | number | Array<string | number> | null>;
158562
159540
  readonly to: {
158563
159541
  type: import("vue").PropType<HTMLElement | string | boolean>;
@@ -159386,7 +160364,7 @@ export declare const UTreeSelect: import("vue").DefineComponent<import("vue").Ex
159386
160364
  mergedCascade: import("vue").ComputedRef<boolean>;
159387
160365
  mergedFilter: import("vue").ComputedRef<import("./tree-select/src/interface").FilterHandler>;
159388
160366
  selectionRenderTag: import("vue").ComputedRef<(({ option, handleClose }: {
159389
- option: import("./select").SelectOption;
160367
+ option: import(".").SelectOption;
159390
160368
  handleClose: () => void;
159391
160369
  }) => import("vue").VNodeChild) | undefined>;
159392
160370
  handleTriggerOrMenuResize: () => void;
@@ -159908,7 +160886,7 @@ export declare const UTreeSelect: import("vue").DefineComponent<import("vue").Ex
159908
160886
  readonly type: import("vue").PropType<boolean | undefined>;
159909
160887
  readonly default: undefined;
159910
160888
  };
159911
- readonly size: import("vue").PropType<import("./select").SelectSize>;
160889
+ readonly size: import("vue").PropType<import(".").SelectSize>;
159912
160890
  readonly value: import("vue").PropType<string | number | Array<string | number> | null>;
159913
160891
  readonly to: {
159914
160892
  type: import("vue").PropType<HTMLElement | string | boolean>;
@@ -164703,7 +165681,7 @@ export declare const UText: import("vue").DefineComponent<import("vue").ExtractP
164703
165681
  validator: (value: unknown) => true;
164704
165682
  };
164705
165683
  variant: {
164706
- readonly type: import("vue").PropType<import("./typography").TypographyVariant>;
165684
+ readonly type: import("vue").PropType<import(".").TypographyVariant>;
164707
165685
  readonly default: undefined;
164708
165686
  };
164709
165687
  tag: {
@@ -164723,11 +165701,11 @@ export declare const UText: import("vue").DefineComponent<import("vue").ExtractP
164723
165701
  readonly default: undefined;
164724
165702
  };
164725
165703
  variantOptions: {
164726
- readonly type: import("vue").PropType<import("./typography").TypographyVariantOptions>;
165704
+ readonly type: import("vue").PropType<import(".").TypographyVariantOptions>;
164727
165705
  readonly default: () => {};
164728
165706
  };
164729
165707
  variantWeightsOptions: {
164730
- readonly type: import("vue").PropType<import("./typography").TypographyVariantWeightsOptions>;
165708
+ readonly type: import("vue").PropType<import(".").TypographyVariantWeightsOptions>;
164731
165709
  readonly default: () => {};
164732
165710
  };
164733
165711
  strong: BooleanConstructor;
@@ -164809,7 +165787,7 @@ export declare const UText: import("vue").DefineComponent<import("vue").ExtractP
164809
165787
  validator: (value: unknown) => true;
164810
165788
  };
164811
165789
  variant: {
164812
- readonly type: import("vue").PropType<import("./typography").TypographyVariant>;
165790
+ readonly type: import("vue").PropType<import(".").TypographyVariant>;
164813
165791
  readonly default: undefined;
164814
165792
  };
164815
165793
  tag: {
@@ -164829,11 +165807,11 @@ export declare const UText: import("vue").DefineComponent<import("vue").ExtractP
164829
165807
  readonly default: undefined;
164830
165808
  };
164831
165809
  variantOptions: {
164832
- readonly type: import("vue").PropType<import("./typography").TypographyVariantOptions>;
165810
+ readonly type: import("vue").PropType<import(".").TypographyVariantOptions>;
164833
165811
  readonly default: () => {};
164834
165812
  };
164835
165813
  variantWeightsOptions: {
164836
- readonly type: import("vue").PropType<import("./typography").TypographyVariantWeightsOptions>;
165814
+ readonly type: import("vue").PropType<import(".").TypographyVariantWeightsOptions>;
164837
165815
  readonly default: () => {};
164838
165816
  };
164839
165817
  strong: BooleanConstructor;
@@ -164903,10 +165881,10 @@ export declare const UText: import("vue").DefineComponent<import("vue").ExtractP
164903
165881
  strong: boolean;
164904
165882
  text: string;
164905
165883
  delete: boolean;
164906
- variant: import("./typography").TypographyVariant;
165884
+ variant: import(".").TypographyVariant;
164907
165885
  italic: boolean;
164908
- variantOptions: import("./typography").TypographyVariantOptions;
164909
- variantWeightsOptions: import("./typography").TypographyVariantWeightsOptions;
165886
+ variantOptions: import(".").TypographyVariantOptions;
165887
+ variantWeightsOptions: import(".").TypographyVariantWeightsOptions;
164910
165888
  underline: boolean;
164911
165889
  strikethrough: boolean;
164912
165890
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
@@ -165368,8 +166346,8 @@ export declare const UUpload: import("vue").DefineComponent<import("vue").Extrac
165368
166346
  readonly type: BooleanConstructor;
165369
166347
  readonly default: true;
165370
166348
  };
165371
- readonly data: import("vue").PropType<import("./upload").FuncOrRecordOrUndef<string | Blob>>;
165372
- readonly headers: import("vue").PropType<import("./upload").FuncOrRecordOrUndef>;
166349
+ readonly data: import("vue").PropType<import(".").FuncOrRecordOrUndef<string | Blob>>;
166350
+ readonly headers: import("vue").PropType<import(".").FuncOrRecordOrUndef>;
165373
166351
  readonly withCredentials: BooleanConstructor;
165374
166352
  readonly responseType: {
165375
166353
  readonly type: import("vue").PropType<XMLHttpRequestResponseType>;
@@ -165396,13 +166374,13 @@ export declare const UUpload: import("vue").DefineComponent<import("vue").Extrac
165396
166374
  readonly type: BooleanConstructor;
165397
166375
  readonly default: true;
165398
166376
  };
165399
- readonly fileList: import("vue").PropType<import("./upload").UploadFileInfo[]>;
166377
+ readonly fileList: import("vue").PropType<import(".").UploadFileInfo[]>;
165400
166378
  readonly 'onUpdate:fileList': import("vue").PropType<import("./_utils").MaybeArray<import("./upload/src/interface").OnUpdateFileList>>;
165401
166379
  readonly onUpdateFileList: import("vue").PropType<import("./_utils").MaybeArray<import("./upload/src/interface").OnUpdateFileList>>;
165402
166380
  readonly fileListClass: StringConstructor;
165403
166381
  readonly fileListStyle: import("vue").PropType<string | import("vue").CSSProperties>;
165404
166382
  readonly defaultFileList: {
165405
- readonly type: import("vue").PropType<import("./upload").UploadFileInfo[]>;
166383
+ readonly type: import("vue").PropType<import(".").UploadFileInfo[]>;
165406
166384
  readonly default: () => never[];
165407
166385
  };
165408
166386
  readonly showCancelButton: {
@@ -165430,7 +166408,7 @@ export declare const UUpload: import("vue").DefineComponent<import("vue").Extrac
165430
166408
  readonly onPreview: import("vue").PropType<import("./upload/src/interface").OnPreview>;
165431
166409
  readonly shouldUseThumbnailUrl: {
165432
166410
  readonly type: import("vue").PropType<import("./upload/src/interface").ShouldUseThumbnailUrl>;
165433
- readonly default: (file: import("./upload").UploadSettledFileInfo) => boolean;
166411
+ readonly default: (file: import(".").UploadSettledFileInfo) => boolean;
165434
166412
  };
165435
166413
  readonly createThumbnailUrl: import("vue").PropType<import("./upload/src/interface").CreateThumbnailUrl>;
165436
166414
  readonly abstract: BooleanConstructor;
@@ -165440,14 +166418,14 @@ export declare const UUpload: import("vue").DefineComponent<import("vue").Extrac
165440
166418
  readonly type: BooleanConstructor;
165441
166419
  readonly default: true;
165442
166420
  };
165443
- readonly imageGroupProps: import("vue").PropType<import("./image").ImageGroupProps>;
166421
+ readonly imageGroupProps: import("vue").PropType<import(".").ImageGroupProps>;
165444
166422
  readonly inputProps: import("vue").PropType<import("vue").InputHTMLAttributes>;
165445
166423
  readonly triggerClass: StringConstructor;
165446
166424
  readonly triggerStyle: import("vue").PropType<import("vue").CSSProperties | string>;
165447
166425
  readonly renderIcon: import("vue").PropType<import("./upload/src/interface").RenderIcon>;
165448
166426
  readonly label: StringConstructor;
165449
166427
  readonly size: {
165450
- readonly type: import("vue").PropType<import("./upload").UploadSize>;
166428
+ readonly type: import("vue").PropType<import(".").UploadSize>;
165451
166429
  readonly default: "medium";
165452
166430
  };
165453
166431
  readonly title: StringConstructor;
@@ -166611,8 +167589,8 @@ export declare const UUpload: import("vue").DefineComponent<import("vue").Extrac
166611
167589
  readonly type: BooleanConstructor;
166612
167590
  readonly default: true;
166613
167591
  };
166614
- readonly data: import("vue").PropType<import("./upload").FuncOrRecordOrUndef<string | Blob>>;
166615
- readonly headers: import("vue").PropType<import("./upload").FuncOrRecordOrUndef>;
167592
+ readonly data: import("vue").PropType<import(".").FuncOrRecordOrUndef<string | Blob>>;
167593
+ readonly headers: import("vue").PropType<import(".").FuncOrRecordOrUndef>;
166616
167594
  readonly withCredentials: BooleanConstructor;
166617
167595
  readonly responseType: {
166618
167596
  readonly type: import("vue").PropType<XMLHttpRequestResponseType>;
@@ -166639,13 +167617,13 @@ export declare const UUpload: import("vue").DefineComponent<import("vue").Extrac
166639
167617
  readonly type: BooleanConstructor;
166640
167618
  readonly default: true;
166641
167619
  };
166642
- readonly fileList: import("vue").PropType<import("./upload").UploadFileInfo[]>;
167620
+ readonly fileList: import("vue").PropType<import(".").UploadFileInfo[]>;
166643
167621
  readonly 'onUpdate:fileList': import("vue").PropType<import("./_utils").MaybeArray<import("./upload/src/interface").OnUpdateFileList>>;
166644
167622
  readonly onUpdateFileList: import("vue").PropType<import("./_utils").MaybeArray<import("./upload/src/interface").OnUpdateFileList>>;
166645
167623
  readonly fileListClass: StringConstructor;
166646
167624
  readonly fileListStyle: import("vue").PropType<string | import("vue").CSSProperties>;
166647
167625
  readonly defaultFileList: {
166648
- readonly type: import("vue").PropType<import("./upload").UploadFileInfo[]>;
167626
+ readonly type: import("vue").PropType<import(".").UploadFileInfo[]>;
166649
167627
  readonly default: () => never[];
166650
167628
  };
166651
167629
  readonly showCancelButton: {
@@ -166673,7 +167651,7 @@ export declare const UUpload: import("vue").DefineComponent<import("vue").Extrac
166673
167651
  readonly onPreview: import("vue").PropType<import("./upload/src/interface").OnPreview>;
166674
167652
  readonly shouldUseThumbnailUrl: {
166675
167653
  readonly type: import("vue").PropType<import("./upload/src/interface").ShouldUseThumbnailUrl>;
166676
- readonly default: (file: import("./upload").UploadSettledFileInfo) => boolean;
167654
+ readonly default: (file: import(".").UploadSettledFileInfo) => boolean;
166677
167655
  };
166678
167656
  readonly createThumbnailUrl: import("vue").PropType<import("./upload/src/interface").CreateThumbnailUrl>;
166679
167657
  readonly abstract: BooleanConstructor;
@@ -166683,14 +167661,14 @@ export declare const UUpload: import("vue").DefineComponent<import("vue").Extrac
166683
167661
  readonly type: BooleanConstructor;
166684
167662
  readonly default: true;
166685
167663
  };
166686
- readonly imageGroupProps: import("vue").PropType<import("./image").ImageGroupProps>;
167664
+ readonly imageGroupProps: import("vue").PropType<import(".").ImageGroupProps>;
166687
167665
  readonly inputProps: import("vue").PropType<import("vue").InputHTMLAttributes>;
166688
167666
  readonly triggerClass: StringConstructor;
166689
167667
  readonly triggerStyle: import("vue").PropType<import("vue").CSSProperties | string>;
166690
167668
  readonly renderIcon: import("vue").PropType<import("./upload/src/interface").RenderIcon>;
166691
167669
  readonly label: StringConstructor;
166692
167670
  readonly size: {
166693
- readonly type: import("vue").PropType<import("./upload").UploadSize>;
167671
+ readonly type: import("vue").PropType<import(".").UploadSize>;
166694
167672
  readonly default: "medium";
166695
167673
  };
166696
167674
  readonly title: StringConstructor;
@@ -167522,7 +168500,7 @@ export declare const UUpload: import("vue").DefineComponent<import("vue").Extrac
167522
168500
  readonly name: string;
167523
168501
  readonly abstract: boolean;
167524
168502
  readonly disabled: boolean | undefined;
167525
- readonly size: import("./upload").UploadSize;
168503
+ readonly size: import(".").UploadSize;
167526
168504
  readonly vertical: boolean;
167527
168505
  readonly multiple: boolean;
167528
168506
  readonly directory: boolean;
@@ -167532,7 +168510,7 @@ export declare const UUpload: import("vue").DefineComponent<import("vue").Extrac
167532
168510
  readonly withCredentials: boolean;
167533
168511
  readonly responseType: XMLHttpRequestResponseType;
167534
168512
  readonly defaultUpload: boolean;
167535
- readonly defaultFileList: import("./upload").UploadFileInfo[];
168513
+ readonly defaultFileList: import(".").UploadFileInfo[];
167536
168514
  readonly showCancelButton: boolean;
167537
168515
  readonly showRemoveButton: boolean;
167538
168516
  readonly showDownloadButton: boolean;
@@ -167553,11 +168531,11 @@ export declare const UUploadTrigger: import("vue").DefineComponent<import("vue")
167553
168531
  abstract: BooleanConstructor;
167554
168532
  }>> & Readonly<{}>, {
167555
168533
  abstract: boolean;
167556
- }, import("vue").SlotsType<import("./upload").UploadTriggerSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
168534
+ }, import("vue").SlotsType<import(".").UploadTriggerSlots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
167557
168535
  export type * from './virtual-list';
167558
168536
  export { virtualListProps } from './virtual-list';
167559
168537
  export declare const UVirtualList: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
167560
- readonly scrollbarProps: import("vue").PropType<import("./scrollbar").ScrollbarProps>;
168538
+ readonly scrollbarProps: import("vue").PropType<import(".").ScrollbarProps>;
167561
168539
  readonly items: {
167562
168540
  readonly type: import("vue").PropType<import("vueuc").VVirtualListItemData[]>;
167563
168541
  readonly default: () => never[];
@@ -167631,7 +168609,7 @@ export declare const UVirtualList: import("vue").DefineComponent<import("vue").E
167631
168609
  handleResize: (e: ResizeObserverEntry) => void;
167632
168610
  handleWheel: (e: WheelEvent) => void;
167633
168611
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
167634
- readonly scrollbarProps: import("vue").PropType<import("./scrollbar").ScrollbarProps>;
168612
+ readonly scrollbarProps: import("vue").PropType<import(".").ScrollbarProps>;
167635
168613
  readonly items: {
167636
168614
  readonly type: import("vue").PropType<import("vueuc").VVirtualListItemData[]>;
167637
168615
  readonly default: () => never[];