@uzum-tech/ui 2.3.3 → 2.3.4
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.
- package/dist/index.js +287 -242
- package/dist/index.mjs +287 -242
- package/dist/index.prod.js +2 -2
- package/dist/index.prod.mjs +2 -2
- package/es/chat/src/Chat.d.ts +363 -3120
- package/es/chat/src/Chat.mjs +13 -240
- package/es/chat/src/ChatListItems.d.ts +4 -4
- package/es/chat/src/ChatMainArea.d.ts +36 -10
- package/es/chat/src/ChatMainArea.mjs +49 -3
- package/es/chat/src/ChatMessages.d.ts +3 -3
- package/es/chat/src/interface.d.ts +2814 -2
- package/es/chat/src/interface.mjs +244 -1
- package/es/components.d.ts +251 -183
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/chat/src/Chat.d.ts +363 -3120
- package/lib/chat/src/Chat.js +15 -180
- package/lib/chat/src/ChatListItems.d.ts +4 -4
- package/lib/chat/src/ChatMainArea.d.ts +36 -10
- package/lib/chat/src/ChatMainArea.js +48 -3
- package/lib/chat/src/ChatMessages.d.ts +3 -3
- package/lib/chat/src/interface.d.ts +2814 -2
- package/lib/chat/src/interface.js +183 -1
- package/lib/components.d.ts +251 -183
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +9 -2
package/lib/components.d.ts
CHANGED
|
@@ -12719,15 +12719,19 @@ export type * from './chat';
|
|
|
12719
12719
|
export { ChatAttachmentStatus, ChatMarkType, ChatMessageType, MessageStatus } from './chat';
|
|
12720
12720
|
export declare const UChat: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
12721
12721
|
chatItems: {
|
|
12722
|
-
type: import("vue").PropType<import("./chat").
|
|
12722
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["chatItems"]>;
|
|
12723
12723
|
default: () => never[];
|
|
12724
12724
|
};
|
|
12725
12725
|
selectedChatId: {
|
|
12726
|
-
type: import("vue").PropType<import("./chat").
|
|
12726
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["selectedChatId"]>;
|
|
12727
|
+
default: undefined;
|
|
12728
|
+
};
|
|
12729
|
+
inputValue: {
|
|
12730
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["inputValue"]>;
|
|
12727
12731
|
default: undefined;
|
|
12728
12732
|
};
|
|
12729
12733
|
messages: {
|
|
12730
|
-
type: import("vue").PropType<import("./chat").
|
|
12734
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["messages"]>;
|
|
12731
12735
|
default: () => never[];
|
|
12732
12736
|
};
|
|
12733
12737
|
typingChatIds: {
|
|
@@ -12735,151 +12739,151 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
12735
12739
|
default: () => never[];
|
|
12736
12740
|
};
|
|
12737
12741
|
disabled: {
|
|
12738
|
-
type: import("vue").PropType<
|
|
12742
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["disabled"]>;
|
|
12739
12743
|
default: boolean;
|
|
12740
12744
|
};
|
|
12741
12745
|
listEmptyProps: {
|
|
12742
|
-
type: import("vue").PropType<Partial<
|
|
12746
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["listEmptyProps"]>>;
|
|
12743
12747
|
default: undefined;
|
|
12744
12748
|
};
|
|
12745
12749
|
listHeaderTitle: {
|
|
12746
|
-
type: import("vue").PropType<
|
|
12750
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["listHeaderTitle"]>;
|
|
12747
12751
|
default: string;
|
|
12748
12752
|
};
|
|
12749
12753
|
listHeaderActions: {
|
|
12750
|
-
type: import("vue").PropType<
|
|
12754
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["listHeaderActions"]>;
|
|
12751
12755
|
default: () => never[];
|
|
12752
12756
|
};
|
|
12753
12757
|
listHeaderButtonProps: {
|
|
12754
|
-
type: import("vue").PropType<Partial<
|
|
12758
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["listHeaderButtonProps"]>>;
|
|
12755
12759
|
default: undefined;
|
|
12756
12760
|
};
|
|
12757
12761
|
listHeaderIconProps: {
|
|
12758
|
-
type: import("vue").PropType<Partial<
|
|
12762
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["listHeaderIconProps"]>>;
|
|
12759
12763
|
default: undefined;
|
|
12760
12764
|
};
|
|
12761
12765
|
listItemAvatarProps: {
|
|
12762
|
-
type: import("vue").PropType<Partial<
|
|
12766
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["listItemAvatarProps"]>>;
|
|
12763
12767
|
default: undefined;
|
|
12764
12768
|
};
|
|
12765
12769
|
listItemBadgeProps: {
|
|
12766
|
-
type: import("vue").PropType<Partial<
|
|
12770
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["listItemBadgeProps"]>>;
|
|
12767
12771
|
default: undefined;
|
|
12768
12772
|
};
|
|
12769
12773
|
headerTitle: {
|
|
12770
|
-
type: import("vue").PropType<
|
|
12774
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["headerTitle"]>;
|
|
12771
12775
|
default: undefined;
|
|
12772
12776
|
};
|
|
12773
12777
|
headerActions: {
|
|
12774
|
-
type: import("vue").PropType<
|
|
12778
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["headerActions"]>;
|
|
12775
12779
|
default: () => never[];
|
|
12776
12780
|
};
|
|
12777
12781
|
headerButtonProps: {
|
|
12778
|
-
type: import("vue").PropType<Partial<
|
|
12782
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["headerButtonProps"]>>;
|
|
12779
12783
|
default: undefined;
|
|
12780
12784
|
};
|
|
12781
12785
|
headerIconProps: {
|
|
12782
|
-
type: import("vue").PropType<Partial<
|
|
12786
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["headerIconProps"]>>;
|
|
12783
12787
|
default: undefined;
|
|
12784
12788
|
};
|
|
12785
12789
|
headerShareButtonProps: {
|
|
12786
|
-
type: import("vue").PropType<Partial<
|
|
12790
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["headerShareButtonProps"]>>;
|
|
12787
12791
|
default: undefined;
|
|
12788
12792
|
};
|
|
12789
12793
|
headerProfileButtonProps: {
|
|
12790
|
-
type: import("vue").PropType<Partial<
|
|
12794
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["headerProfileButtonProps"]>>;
|
|
12791
12795
|
default: undefined;
|
|
12792
12796
|
};
|
|
12793
12797
|
headerCloseButtonProps: {
|
|
12794
|
-
type: import("vue").PropType<Partial<
|
|
12798
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["headerCloseButtonProps"]>>;
|
|
12795
12799
|
default: undefined;
|
|
12796
12800
|
};
|
|
12797
12801
|
headerShareIconProps: {
|
|
12798
|
-
type: import("vue").PropType<Partial<
|
|
12802
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["headerShareIconProps"]>>;
|
|
12799
12803
|
default: undefined;
|
|
12800
12804
|
};
|
|
12801
12805
|
headerProfileIconProps: {
|
|
12802
|
-
type: import("vue").PropType<Partial<
|
|
12806
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["headerProfileIconProps"]>>;
|
|
12803
12807
|
default: undefined;
|
|
12804
12808
|
};
|
|
12805
12809
|
messageSenderAvatarProps: {
|
|
12806
|
-
type: import("vue").PropType<Partial<
|
|
12810
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["messageSenderAvatarProps"]>>;
|
|
12807
12811
|
default: undefined;
|
|
12808
12812
|
};
|
|
12809
12813
|
messageUploadProps: {
|
|
12810
|
-
type: import("vue").PropType<Partial<
|
|
12814
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["messageUploadProps"]>>;
|
|
12811
12815
|
default: undefined;
|
|
12812
12816
|
};
|
|
12813
12817
|
messageButtonProps: {
|
|
12814
|
-
type: import("vue").PropType<Partial<
|
|
12818
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["messageButtonProps"]>>;
|
|
12815
12819
|
default: undefined;
|
|
12816
12820
|
};
|
|
12817
12821
|
footerInputProps: {
|
|
12818
|
-
type: import("vue").PropType<Partial<
|
|
12822
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["footerInputProps"]>>;
|
|
12819
12823
|
default: undefined;
|
|
12820
12824
|
};
|
|
12821
12825
|
footerButtonProps: {
|
|
12822
|
-
type: import("vue").PropType<Partial<
|
|
12826
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["footerButtonProps"]>>;
|
|
12823
12827
|
default: undefined;
|
|
12824
12828
|
};
|
|
12825
12829
|
footerUploadProps: {
|
|
12826
|
-
type: import("vue").PropType<Partial<
|
|
12830
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["footerUploadProps"]>>;
|
|
12827
12831
|
default: undefined;
|
|
12828
12832
|
};
|
|
12829
12833
|
footerUploadTriggerProps: {
|
|
12830
|
-
type: import("vue").PropType<
|
|
12834
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["footerUploadTriggerProps"]>;
|
|
12831
12835
|
default: undefined;
|
|
12832
12836
|
};
|
|
12833
12837
|
footerIconProps: {
|
|
12834
|
-
type: import("vue").PropType<Partial<
|
|
12838
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["footerIconProps"]>>;
|
|
12835
12839
|
default: undefined;
|
|
12836
12840
|
};
|
|
12837
12841
|
footerSuffixIconProps: {
|
|
12838
|
-
type: import("vue").PropType<Partial<
|
|
12842
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["footerSuffixIconProps"]>>;
|
|
12839
12843
|
default: undefined;
|
|
12840
12844
|
};
|
|
12841
12845
|
emptyProps: {
|
|
12842
|
-
type: import("vue").PropType<Partial<
|
|
12846
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["emptyProps"]>>;
|
|
12843
12847
|
default: undefined;
|
|
12844
12848
|
};
|
|
12845
12849
|
retryText: {
|
|
12846
|
-
type: import("vue").PropType<
|
|
12850
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["retryText"]>;
|
|
12847
12851
|
default: undefined;
|
|
12848
12852
|
};
|
|
12849
12853
|
typingText: {
|
|
12850
|
-
type: import("vue").PropType<
|
|
12854
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["typingText"]>;
|
|
12851
12855
|
default: undefined;
|
|
12852
12856
|
};
|
|
12853
12857
|
closeButtonText: {
|
|
12854
|
-
type: import("vue").PropType<
|
|
12858
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["closeButtonText"]>;
|
|
12855
12859
|
default: undefined;
|
|
12856
12860
|
};
|
|
12857
12861
|
shareButtonTooltip: {
|
|
12858
|
-
type: import("vue").PropType<
|
|
12862
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["shareButtonTooltip"]>;
|
|
12859
12863
|
default: undefined;
|
|
12860
12864
|
};
|
|
12861
12865
|
profileButtonTooltip: {
|
|
12862
|
-
type: import("vue").PropType<
|
|
12866
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["profileButtonTooltip"]>;
|
|
12863
12867
|
default: undefined;
|
|
12864
12868
|
};
|
|
12865
12869
|
unreadNotificationText: {
|
|
12866
|
-
type: import("vue").PropType<
|
|
12870
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["unreadNotificationText"]>;
|
|
12867
12871
|
default: undefined;
|
|
12868
12872
|
};
|
|
12869
12873
|
chatItemsLoading: {
|
|
12870
|
-
type: import("vue").PropType<
|
|
12874
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["chatItemsLoading"]>;
|
|
12871
12875
|
default: boolean;
|
|
12872
12876
|
};
|
|
12873
12877
|
chatItemsLoadingCount: {
|
|
12874
|
-
type: import("vue").PropType<
|
|
12878
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["chatItemsLoadingCount"]>;
|
|
12875
12879
|
default: number;
|
|
12876
12880
|
};
|
|
12877
12881
|
messagesLoading: {
|
|
12878
|
-
type: import("vue").PropType<
|
|
12882
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["messagesLoading"]>;
|
|
12879
12883
|
default: boolean;
|
|
12880
12884
|
};
|
|
12881
12885
|
messagesLoadingCount: {
|
|
12882
|
-
type: import("vue").PropType<
|
|
12886
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["messagesLoadingCount"]>;
|
|
12883
12887
|
default: number;
|
|
12884
12888
|
};
|
|
12885
12889
|
height: {
|
|
@@ -12887,15 +12891,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
12887
12891
|
default: number;
|
|
12888
12892
|
};
|
|
12889
12893
|
onChatSelect: {
|
|
12890
|
-
type: import("vue").PropType<import("./chat").
|
|
12894
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onChatSelect"]>;
|
|
12891
12895
|
default: undefined;
|
|
12892
12896
|
};
|
|
12893
12897
|
onMessageRetry: {
|
|
12894
|
-
type: import("vue").PropType<
|
|
12898
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onMessageRetry"]>;
|
|
12895
12899
|
default: undefined;
|
|
12896
12900
|
};
|
|
12897
12901
|
bubbleActions: {
|
|
12898
|
-
type: import("vue").PropType<import("./chat/src/interface").
|
|
12902
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["bubbleActions"]>;
|
|
12899
12903
|
default: undefined;
|
|
12900
12904
|
};
|
|
12901
12905
|
onChatClose: {
|
|
@@ -12911,15 +12915,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
12911
12915
|
default: undefined;
|
|
12912
12916
|
};
|
|
12913
12917
|
onAttachmentUpload: {
|
|
12914
|
-
type: import("vue").PropType<import("./chat").
|
|
12918
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onAttachmentUpload"]>;
|
|
12915
12919
|
default: undefined;
|
|
12916
12920
|
};
|
|
12917
12921
|
onAttachmentDownload: {
|
|
12918
|
-
type: import("vue").PropType<import("./chat/src/interface").
|
|
12922
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onAttachmentDownload"]>;
|
|
12919
12923
|
default: undefined;
|
|
12920
12924
|
};
|
|
12921
12925
|
onFilterChange: {
|
|
12922
|
-
type: import("vue").PropType<import("./chat").
|
|
12926
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onFilterChange"]>;
|
|
12923
12927
|
default: undefined;
|
|
12924
12928
|
};
|
|
12925
12929
|
onFooterInputChange: {
|
|
@@ -12927,15 +12931,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
12927
12931
|
default: undefined;
|
|
12928
12932
|
};
|
|
12929
12933
|
onNetworkError: {
|
|
12930
|
-
type: import("vue").PropType<import("./chat").
|
|
12934
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onNetworkError"]>;
|
|
12931
12935
|
default: undefined;
|
|
12932
12936
|
};
|
|
12933
12937
|
onUploadError: {
|
|
12934
|
-
type: import("vue").PropType<import("./chat").
|
|
12938
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onUploadError"]>;
|
|
12935
12939
|
default: undefined;
|
|
12936
12940
|
};
|
|
12937
12941
|
onSendError: {
|
|
12938
|
-
type: import("vue").PropType<import("./chat").
|
|
12942
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onSendError"]>;
|
|
12939
12943
|
default: undefined;
|
|
12940
12944
|
};
|
|
12941
12945
|
onChatItemsScrollToTop: {
|
|
@@ -16814,6 +16818,10 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
16814
16818
|
readonly type: import("vue").PropType<import("./chat").ChatListItemData>;
|
|
16815
16819
|
readonly default: undefined;
|
|
16816
16820
|
};
|
|
16821
|
+
readonly inputValue: {
|
|
16822
|
+
readonly type: StringConstructor;
|
|
16823
|
+
readonly default: undefined;
|
|
16824
|
+
};
|
|
16817
16825
|
readonly messages: {
|
|
16818
16826
|
readonly type: import("vue").PropType<import("./chat").ChatMessageData[]>;
|
|
16819
16827
|
readonly default: () => never[];
|
|
@@ -16930,6 +16938,10 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
16930
16938
|
readonly type: import("vue").PropType<(value: string, chatId: import("./chat").ChatId) => void>;
|
|
16931
16939
|
readonly default: undefined;
|
|
16932
16940
|
};
|
|
16941
|
+
readonly 'onUpdate:inputValue': {
|
|
16942
|
+
readonly type: import("vue").PropType<(value: string) => void>;
|
|
16943
|
+
readonly default: undefined;
|
|
16944
|
+
};
|
|
16933
16945
|
readonly onChatClose: {
|
|
16934
16946
|
readonly type: import("vue").PropType<() => void>;
|
|
16935
16947
|
readonly default: undefined;
|
|
@@ -23281,7 +23293,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
23281
23293
|
$el: HTMLElement;
|
|
23282
23294
|
} | undefined>;
|
|
23283
23295
|
inputRef: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
23284
|
-
inputValue: import("vue").
|
|
23296
|
+
inputValue: import("vue").WritableComputedRef<string, string>;
|
|
23285
23297
|
handleSendMessage: () => Promise<void>;
|
|
23286
23298
|
handleMessagesScroll: (e: Event) => void;
|
|
23287
23299
|
scrollToBottom: () => void;
|
|
@@ -23296,12 +23308,8 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
23296
23308
|
readonly profileButtonTooltip: string;
|
|
23297
23309
|
readonly unreadNotificationText: string;
|
|
23298
23310
|
readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
|
|
23299
|
-
readonly
|
|
23311
|
+
readonly inputValue: string;
|
|
23300
23312
|
readonly messages: import("./chat").ChatMessageData[];
|
|
23301
|
-
readonly loadingCount: number;
|
|
23302
|
-
readonly typingChatIds: (string | number | symbol)[];
|
|
23303
|
-
readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
|
|
23304
|
-
readonly selectedChat: import("./chat").ChatListItemData;
|
|
23305
23313
|
readonly headerButtonProps: Partial<import("./button").ButtonProps>;
|
|
23306
23314
|
readonly headerIconProps: Partial<import("./icon").IconProps>;
|
|
23307
23315
|
readonly headerShareButtonProps: Partial<import("./button").ButtonProps>;
|
|
@@ -23315,15 +23323,21 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
23315
23323
|
readonly footerUploadProps: Partial<import("./upload").UploadProps>;
|
|
23316
23324
|
readonly footerIconProps: Partial<import("./icon").IconProps>;
|
|
23317
23325
|
readonly footerSuffixIconProps: Partial<import("./icon").IconProps>;
|
|
23318
|
-
readonly
|
|
23319
|
-
readonly
|
|
23320
|
-
readonly
|
|
23326
|
+
readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
|
|
23327
|
+
readonly bubbleActions: import("./chat/src/interface").ChatBubbleAction[];
|
|
23328
|
+
readonly onAttachmentUpload: import("./chat").OnAttachmentUpload;
|
|
23329
|
+
readonly typingChatIds: (string | number | symbol)[];
|
|
23321
23330
|
readonly onChatClose: () => void;
|
|
23322
23331
|
readonly onChatShare: () => void;
|
|
23323
23332
|
readonly onUserProfile: () => void;
|
|
23324
|
-
readonly
|
|
23333
|
+
readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
|
|
23325
23334
|
readonly onMessagesScrollToTop: () => void;
|
|
23326
23335
|
readonly onMessagesScrollToBottom: () => void;
|
|
23336
|
+
readonly loadingCount: number;
|
|
23337
|
+
readonly selectedChat: import("./chat").ChatListItemData;
|
|
23338
|
+
readonly showAttachButton: boolean;
|
|
23339
|
+
readonly onMessageSend: import("./chat").OnMessageSend;
|
|
23340
|
+
readonly 'onUpdate:inputValue': (value: string) => void;
|
|
23327
23341
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
23328
23342
|
P: {};
|
|
23329
23343
|
B: {};
|
|
@@ -23336,6 +23350,10 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
23336
23350
|
readonly type: import("vue").PropType<import("./chat").ChatListItemData>;
|
|
23337
23351
|
readonly default: undefined;
|
|
23338
23352
|
};
|
|
23353
|
+
readonly inputValue: {
|
|
23354
|
+
readonly type: StringConstructor;
|
|
23355
|
+
readonly default: undefined;
|
|
23356
|
+
};
|
|
23339
23357
|
readonly messages: {
|
|
23340
23358
|
readonly type: import("vue").PropType<import("./chat").ChatMessageData[]>;
|
|
23341
23359
|
readonly default: () => never[];
|
|
@@ -23452,6 +23470,10 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
23452
23470
|
readonly type: import("vue").PropType<(value: string, chatId: import("./chat").ChatId) => void>;
|
|
23453
23471
|
readonly default: undefined;
|
|
23454
23472
|
};
|
|
23473
|
+
readonly 'onUpdate:inputValue': {
|
|
23474
|
+
readonly type: import("vue").PropType<(value: string) => void>;
|
|
23475
|
+
readonly default: undefined;
|
|
23476
|
+
};
|
|
23455
23477
|
readonly onChatClose: {
|
|
23456
23478
|
readonly type: import("vue").PropType<() => void>;
|
|
23457
23479
|
readonly default: undefined;
|
|
@@ -29803,7 +29825,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
29803
29825
|
$el: HTMLElement;
|
|
29804
29826
|
} | undefined>;
|
|
29805
29827
|
inputRef: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
29806
|
-
inputValue: import("vue").
|
|
29828
|
+
inputValue: import("vue").WritableComputedRef<string, string>;
|
|
29807
29829
|
handleSendMessage: () => Promise<void>;
|
|
29808
29830
|
handleMessagesScroll: (e: Event) => void;
|
|
29809
29831
|
scrollToBottom: () => void;
|
|
@@ -29818,12 +29840,8 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
29818
29840
|
readonly profileButtonTooltip: string;
|
|
29819
29841
|
readonly unreadNotificationText: string;
|
|
29820
29842
|
readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
|
|
29821
|
-
readonly
|
|
29843
|
+
readonly inputValue: string;
|
|
29822
29844
|
readonly messages: import("./chat").ChatMessageData[];
|
|
29823
|
-
readonly loadingCount: number;
|
|
29824
|
-
readonly typingChatIds: (string | number | symbol)[];
|
|
29825
|
-
readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
|
|
29826
|
-
readonly selectedChat: import("./chat").ChatListItemData;
|
|
29827
29845
|
readonly headerButtonProps: Partial<import("./button").ButtonProps>;
|
|
29828
29846
|
readonly headerIconProps: Partial<import("./icon").IconProps>;
|
|
29829
29847
|
readonly headerShareButtonProps: Partial<import("./button").ButtonProps>;
|
|
@@ -29837,20 +29855,30 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
29837
29855
|
readonly footerUploadProps: Partial<import("./upload").UploadProps>;
|
|
29838
29856
|
readonly footerIconProps: Partial<import("./icon").IconProps>;
|
|
29839
29857
|
readonly footerSuffixIconProps: Partial<import("./icon").IconProps>;
|
|
29840
|
-
readonly
|
|
29841
|
-
readonly
|
|
29842
|
-
readonly
|
|
29858
|
+
readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
|
|
29859
|
+
readonly bubbleActions: import("./chat/src/interface").ChatBubbleAction[];
|
|
29860
|
+
readonly onAttachmentUpload: import("./chat").OnAttachmentUpload;
|
|
29861
|
+
readonly typingChatIds: (string | number | symbol)[];
|
|
29843
29862
|
readonly onChatClose: () => void;
|
|
29844
29863
|
readonly onChatShare: () => void;
|
|
29845
29864
|
readonly onUserProfile: () => void;
|
|
29846
|
-
readonly
|
|
29865
|
+
readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
|
|
29847
29866
|
readonly onMessagesScrollToTop: () => void;
|
|
29848
29867
|
readonly onMessagesScrollToBottom: () => void;
|
|
29868
|
+
readonly loadingCount: number;
|
|
29869
|
+
readonly selectedChat: import("./chat").ChatListItemData;
|
|
29870
|
+
readonly showAttachButton: boolean;
|
|
29871
|
+
readonly onMessageSend: import("./chat").OnMessageSend;
|
|
29872
|
+
readonly 'onUpdate:inputValue': (value: string) => void;
|
|
29849
29873
|
}> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("vue").ExtractPropTypes<{
|
|
29850
29874
|
readonly selectedChat: {
|
|
29851
29875
|
readonly type: import("vue").PropType<import("./chat").ChatListItemData>;
|
|
29852
29876
|
readonly default: undefined;
|
|
29853
29877
|
};
|
|
29878
|
+
readonly inputValue: {
|
|
29879
|
+
readonly type: StringConstructor;
|
|
29880
|
+
readonly default: undefined;
|
|
29881
|
+
};
|
|
29854
29882
|
readonly messages: {
|
|
29855
29883
|
readonly type: import("vue").PropType<import("./chat").ChatMessageData[]>;
|
|
29856
29884
|
readonly default: () => never[];
|
|
@@ -29967,6 +29995,10 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
29967
29995
|
readonly type: import("vue").PropType<(value: string, chatId: import("./chat").ChatId) => void>;
|
|
29968
29996
|
readonly default: undefined;
|
|
29969
29997
|
};
|
|
29998
|
+
readonly 'onUpdate:inputValue': {
|
|
29999
|
+
readonly type: import("vue").PropType<(value: string) => void>;
|
|
30000
|
+
readonly default: undefined;
|
|
30001
|
+
};
|
|
29970
30002
|
readonly onChatClose: {
|
|
29971
30003
|
readonly type: import("vue").PropType<() => void>;
|
|
29972
30004
|
readonly default: undefined;
|
|
@@ -36318,7 +36350,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
36318
36350
|
$el: HTMLElement;
|
|
36319
36351
|
} | undefined>;
|
|
36320
36352
|
inputRef: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
36321
|
-
inputValue: import("vue").
|
|
36353
|
+
inputValue: import("vue").WritableComputedRef<string, string>;
|
|
36322
36354
|
handleSendMessage: () => Promise<void>;
|
|
36323
36355
|
handleMessagesScroll: (e: Event) => void;
|
|
36324
36356
|
scrollToBottom: () => void;
|
|
@@ -36333,12 +36365,8 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
36333
36365
|
readonly profileButtonTooltip: string;
|
|
36334
36366
|
readonly unreadNotificationText: string;
|
|
36335
36367
|
readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
|
|
36336
|
-
readonly
|
|
36368
|
+
readonly inputValue: string;
|
|
36337
36369
|
readonly messages: import("./chat").ChatMessageData[];
|
|
36338
|
-
readonly loadingCount: number;
|
|
36339
|
-
readonly typingChatIds: (string | number | symbol)[];
|
|
36340
|
-
readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
|
|
36341
|
-
readonly selectedChat: import("./chat").ChatListItemData;
|
|
36342
36370
|
readonly headerButtonProps: Partial<import("./button").ButtonProps>;
|
|
36343
36371
|
readonly headerIconProps: Partial<import("./icon").IconProps>;
|
|
36344
36372
|
readonly headerShareButtonProps: Partial<import("./button").ButtonProps>;
|
|
@@ -36352,15 +36380,21 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
36352
36380
|
readonly footerUploadProps: Partial<import("./upload").UploadProps>;
|
|
36353
36381
|
readonly footerIconProps: Partial<import("./icon").IconProps>;
|
|
36354
36382
|
readonly footerSuffixIconProps: Partial<import("./icon").IconProps>;
|
|
36355
|
-
readonly
|
|
36356
|
-
readonly
|
|
36357
|
-
readonly
|
|
36383
|
+
readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
|
|
36384
|
+
readonly bubbleActions: import("./chat/src/interface").ChatBubbleAction[];
|
|
36385
|
+
readonly onAttachmentUpload: import("./chat").OnAttachmentUpload;
|
|
36386
|
+
readonly typingChatIds: (string | number | symbol)[];
|
|
36358
36387
|
readonly onChatClose: () => void;
|
|
36359
36388
|
readonly onChatShare: () => void;
|
|
36360
36389
|
readonly onUserProfile: () => void;
|
|
36361
|
-
readonly
|
|
36390
|
+
readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
|
|
36362
36391
|
readonly onMessagesScrollToTop: () => void;
|
|
36363
36392
|
readonly onMessagesScrollToBottom: () => void;
|
|
36393
|
+
readonly loadingCount: number;
|
|
36394
|
+
readonly selectedChat: import("./chat").ChatListItemData;
|
|
36395
|
+
readonly showAttachButton: boolean;
|
|
36396
|
+
readonly onMessageSend: import("./chat").OnMessageSend;
|
|
36397
|
+
readonly 'onUpdate:inputValue': (value: string) => void;
|
|
36364
36398
|
}, true, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
36365
36399
|
P: {};
|
|
36366
36400
|
B: {};
|
|
@@ -36373,6 +36407,10 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
36373
36407
|
readonly type: import("vue").PropType<import("./chat").ChatListItemData>;
|
|
36374
36408
|
readonly default: undefined;
|
|
36375
36409
|
};
|
|
36410
|
+
readonly inputValue: {
|
|
36411
|
+
readonly type: StringConstructor;
|
|
36412
|
+
readonly default: undefined;
|
|
36413
|
+
};
|
|
36376
36414
|
readonly messages: {
|
|
36377
36415
|
readonly type: import("vue").PropType<import("./chat").ChatMessageData[]>;
|
|
36378
36416
|
readonly default: () => never[];
|
|
@@ -36489,6 +36527,10 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
36489
36527
|
readonly type: import("vue").PropType<(value: string, chatId: import("./chat").ChatId) => void>;
|
|
36490
36528
|
readonly default: undefined;
|
|
36491
36529
|
};
|
|
36530
|
+
readonly 'onUpdate:inputValue': {
|
|
36531
|
+
readonly type: import("vue").PropType<(value: string) => void>;
|
|
36532
|
+
readonly default: undefined;
|
|
36533
|
+
};
|
|
36492
36534
|
readonly onChatClose: {
|
|
36493
36535
|
readonly type: import("vue").PropType<() => void>;
|
|
36494
36536
|
readonly default: undefined;
|
|
@@ -42840,7 +42882,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
42840
42882
|
$el: HTMLElement;
|
|
42841
42883
|
} | undefined>;
|
|
42842
42884
|
inputRef: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
42843
|
-
inputValue: import("vue").
|
|
42885
|
+
inputValue: import("vue").WritableComputedRef<string, string>;
|
|
42844
42886
|
handleSendMessage: () => Promise<void>;
|
|
42845
42887
|
handleMessagesScroll: (e: Event) => void;
|
|
42846
42888
|
scrollToBottom: () => void;
|
|
@@ -42855,12 +42897,8 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
42855
42897
|
readonly profileButtonTooltip: string;
|
|
42856
42898
|
readonly unreadNotificationText: string;
|
|
42857
42899
|
readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
|
|
42858
|
-
readonly
|
|
42900
|
+
readonly inputValue: string;
|
|
42859
42901
|
readonly messages: import("./chat").ChatMessageData[];
|
|
42860
|
-
readonly loadingCount: number;
|
|
42861
|
-
readonly typingChatIds: (string | number | symbol)[];
|
|
42862
|
-
readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
|
|
42863
|
-
readonly selectedChat: import("./chat").ChatListItemData;
|
|
42864
42902
|
readonly headerButtonProps: Partial<import("./button").ButtonProps>;
|
|
42865
42903
|
readonly headerIconProps: Partial<import("./icon").IconProps>;
|
|
42866
42904
|
readonly headerShareButtonProps: Partial<import("./button").ButtonProps>;
|
|
@@ -42874,27 +42912,37 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
42874
42912
|
readonly footerUploadProps: Partial<import("./upload").UploadProps>;
|
|
42875
42913
|
readonly footerIconProps: Partial<import("./icon").IconProps>;
|
|
42876
42914
|
readonly footerSuffixIconProps: Partial<import("./icon").IconProps>;
|
|
42877
|
-
readonly
|
|
42878
|
-
readonly
|
|
42879
|
-
readonly
|
|
42915
|
+
readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
|
|
42916
|
+
readonly bubbleActions: import("./chat/src/interface").ChatBubbleAction[];
|
|
42917
|
+
readonly onAttachmentUpload: import("./chat").OnAttachmentUpload;
|
|
42918
|
+
readonly typingChatIds: (string | number | symbol)[];
|
|
42880
42919
|
readonly onChatClose: () => void;
|
|
42881
42920
|
readonly onChatShare: () => void;
|
|
42882
42921
|
readonly onUserProfile: () => void;
|
|
42883
|
-
readonly
|
|
42922
|
+
readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
|
|
42884
42923
|
readonly onMessagesScrollToTop: () => void;
|
|
42885
42924
|
readonly onMessagesScrollToBottom: () => void;
|
|
42925
|
+
readonly loadingCount: number;
|
|
42926
|
+
readonly selectedChat: import("./chat").ChatListItemData;
|
|
42927
|
+
readonly showAttachButton: boolean;
|
|
42928
|
+
readonly onMessageSend: import("./chat").OnMessageSend;
|
|
42929
|
+
readonly 'onUpdate:inputValue': (value: string) => void;
|
|
42886
42930
|
}> | null>;
|
|
42887
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("message-retry" | "update:selectedChatId" | "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" | "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<{
|
|
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<{
|
|
42888
42932
|
chatItems: {
|
|
42889
|
-
type: import("vue").PropType<import("./chat").
|
|
42933
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["chatItems"]>;
|
|
42890
42934
|
default: () => never[];
|
|
42891
42935
|
};
|
|
42892
42936
|
selectedChatId: {
|
|
42893
|
-
type: import("vue").PropType<import("./chat").
|
|
42937
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["selectedChatId"]>;
|
|
42938
|
+
default: undefined;
|
|
42939
|
+
};
|
|
42940
|
+
inputValue: {
|
|
42941
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["inputValue"]>;
|
|
42894
42942
|
default: undefined;
|
|
42895
42943
|
};
|
|
42896
42944
|
messages: {
|
|
42897
|
-
type: import("vue").PropType<import("./chat").
|
|
42945
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["messages"]>;
|
|
42898
42946
|
default: () => never[];
|
|
42899
42947
|
};
|
|
42900
42948
|
typingChatIds: {
|
|
@@ -42902,151 +42950,151 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
42902
42950
|
default: () => never[];
|
|
42903
42951
|
};
|
|
42904
42952
|
disabled: {
|
|
42905
|
-
type: import("vue").PropType<
|
|
42953
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["disabled"]>;
|
|
42906
42954
|
default: boolean;
|
|
42907
42955
|
};
|
|
42908
42956
|
listEmptyProps: {
|
|
42909
|
-
type: import("vue").PropType<Partial<
|
|
42957
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["listEmptyProps"]>>;
|
|
42910
42958
|
default: undefined;
|
|
42911
42959
|
};
|
|
42912
42960
|
listHeaderTitle: {
|
|
42913
|
-
type: import("vue").PropType<
|
|
42961
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["listHeaderTitle"]>;
|
|
42914
42962
|
default: string;
|
|
42915
42963
|
};
|
|
42916
42964
|
listHeaderActions: {
|
|
42917
|
-
type: import("vue").PropType<
|
|
42965
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["listHeaderActions"]>;
|
|
42918
42966
|
default: () => never[];
|
|
42919
42967
|
};
|
|
42920
42968
|
listHeaderButtonProps: {
|
|
42921
|
-
type: import("vue").PropType<Partial<
|
|
42969
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["listHeaderButtonProps"]>>;
|
|
42922
42970
|
default: undefined;
|
|
42923
42971
|
};
|
|
42924
42972
|
listHeaderIconProps: {
|
|
42925
|
-
type: import("vue").PropType<Partial<
|
|
42973
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["listHeaderIconProps"]>>;
|
|
42926
42974
|
default: undefined;
|
|
42927
42975
|
};
|
|
42928
42976
|
listItemAvatarProps: {
|
|
42929
|
-
type: import("vue").PropType<Partial<
|
|
42977
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["listItemAvatarProps"]>>;
|
|
42930
42978
|
default: undefined;
|
|
42931
42979
|
};
|
|
42932
42980
|
listItemBadgeProps: {
|
|
42933
|
-
type: import("vue").PropType<Partial<
|
|
42981
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["listItemBadgeProps"]>>;
|
|
42934
42982
|
default: undefined;
|
|
42935
42983
|
};
|
|
42936
42984
|
headerTitle: {
|
|
42937
|
-
type: import("vue").PropType<
|
|
42985
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["headerTitle"]>;
|
|
42938
42986
|
default: undefined;
|
|
42939
42987
|
};
|
|
42940
42988
|
headerActions: {
|
|
42941
|
-
type: import("vue").PropType<
|
|
42989
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["headerActions"]>;
|
|
42942
42990
|
default: () => never[];
|
|
42943
42991
|
};
|
|
42944
42992
|
headerButtonProps: {
|
|
42945
|
-
type: import("vue").PropType<Partial<
|
|
42993
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["headerButtonProps"]>>;
|
|
42946
42994
|
default: undefined;
|
|
42947
42995
|
};
|
|
42948
42996
|
headerIconProps: {
|
|
42949
|
-
type: import("vue").PropType<Partial<
|
|
42997
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["headerIconProps"]>>;
|
|
42950
42998
|
default: undefined;
|
|
42951
42999
|
};
|
|
42952
43000
|
headerShareButtonProps: {
|
|
42953
|
-
type: import("vue").PropType<Partial<
|
|
43001
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["headerShareButtonProps"]>>;
|
|
42954
43002
|
default: undefined;
|
|
42955
43003
|
};
|
|
42956
43004
|
headerProfileButtonProps: {
|
|
42957
|
-
type: import("vue").PropType<Partial<
|
|
43005
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["headerProfileButtonProps"]>>;
|
|
42958
43006
|
default: undefined;
|
|
42959
43007
|
};
|
|
42960
43008
|
headerCloseButtonProps: {
|
|
42961
|
-
type: import("vue").PropType<Partial<
|
|
43009
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["headerCloseButtonProps"]>>;
|
|
42962
43010
|
default: undefined;
|
|
42963
43011
|
};
|
|
42964
43012
|
headerShareIconProps: {
|
|
42965
|
-
type: import("vue").PropType<Partial<
|
|
43013
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["headerShareIconProps"]>>;
|
|
42966
43014
|
default: undefined;
|
|
42967
43015
|
};
|
|
42968
43016
|
headerProfileIconProps: {
|
|
42969
|
-
type: import("vue").PropType<Partial<
|
|
43017
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["headerProfileIconProps"]>>;
|
|
42970
43018
|
default: undefined;
|
|
42971
43019
|
};
|
|
42972
43020
|
messageSenderAvatarProps: {
|
|
42973
|
-
type: import("vue").PropType<Partial<
|
|
43021
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["messageSenderAvatarProps"]>>;
|
|
42974
43022
|
default: undefined;
|
|
42975
43023
|
};
|
|
42976
43024
|
messageUploadProps: {
|
|
42977
|
-
type: import("vue").PropType<Partial<
|
|
43025
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["messageUploadProps"]>>;
|
|
42978
43026
|
default: undefined;
|
|
42979
43027
|
};
|
|
42980
43028
|
messageButtonProps: {
|
|
42981
|
-
type: import("vue").PropType<Partial<
|
|
43029
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["messageButtonProps"]>>;
|
|
42982
43030
|
default: undefined;
|
|
42983
43031
|
};
|
|
42984
43032
|
footerInputProps: {
|
|
42985
|
-
type: import("vue").PropType<Partial<
|
|
43033
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["footerInputProps"]>>;
|
|
42986
43034
|
default: undefined;
|
|
42987
43035
|
};
|
|
42988
43036
|
footerButtonProps: {
|
|
42989
|
-
type: import("vue").PropType<Partial<
|
|
43037
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["footerButtonProps"]>>;
|
|
42990
43038
|
default: undefined;
|
|
42991
43039
|
};
|
|
42992
43040
|
footerUploadProps: {
|
|
42993
|
-
type: import("vue").PropType<Partial<
|
|
43041
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["footerUploadProps"]>>;
|
|
42994
43042
|
default: undefined;
|
|
42995
43043
|
};
|
|
42996
43044
|
footerUploadTriggerProps: {
|
|
42997
|
-
type: import("vue").PropType<
|
|
43045
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["footerUploadTriggerProps"]>;
|
|
42998
43046
|
default: undefined;
|
|
42999
43047
|
};
|
|
43000
43048
|
footerIconProps: {
|
|
43001
|
-
type: import("vue").PropType<Partial<
|
|
43049
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["footerIconProps"]>>;
|
|
43002
43050
|
default: undefined;
|
|
43003
43051
|
};
|
|
43004
43052
|
footerSuffixIconProps: {
|
|
43005
|
-
type: import("vue").PropType<Partial<
|
|
43053
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["footerSuffixIconProps"]>>;
|
|
43006
43054
|
default: undefined;
|
|
43007
43055
|
};
|
|
43008
43056
|
emptyProps: {
|
|
43009
|
-
type: import("vue").PropType<Partial<
|
|
43057
|
+
type: import("vue").PropType<Partial<import("./chat/src/interface").ChatPropsInterface["emptyProps"]>>;
|
|
43010
43058
|
default: undefined;
|
|
43011
43059
|
};
|
|
43012
43060
|
retryText: {
|
|
43013
|
-
type: import("vue").PropType<
|
|
43061
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["retryText"]>;
|
|
43014
43062
|
default: undefined;
|
|
43015
43063
|
};
|
|
43016
43064
|
typingText: {
|
|
43017
|
-
type: import("vue").PropType<
|
|
43065
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["typingText"]>;
|
|
43018
43066
|
default: undefined;
|
|
43019
43067
|
};
|
|
43020
43068
|
closeButtonText: {
|
|
43021
|
-
type: import("vue").PropType<
|
|
43069
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["closeButtonText"]>;
|
|
43022
43070
|
default: undefined;
|
|
43023
43071
|
};
|
|
43024
43072
|
shareButtonTooltip: {
|
|
43025
|
-
type: import("vue").PropType<
|
|
43073
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["shareButtonTooltip"]>;
|
|
43026
43074
|
default: undefined;
|
|
43027
43075
|
};
|
|
43028
43076
|
profileButtonTooltip: {
|
|
43029
|
-
type: import("vue").PropType<
|
|
43077
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["profileButtonTooltip"]>;
|
|
43030
43078
|
default: undefined;
|
|
43031
43079
|
};
|
|
43032
43080
|
unreadNotificationText: {
|
|
43033
|
-
type: import("vue").PropType<
|
|
43081
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["unreadNotificationText"]>;
|
|
43034
43082
|
default: undefined;
|
|
43035
43083
|
};
|
|
43036
43084
|
chatItemsLoading: {
|
|
43037
|
-
type: import("vue").PropType<
|
|
43085
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["chatItemsLoading"]>;
|
|
43038
43086
|
default: boolean;
|
|
43039
43087
|
};
|
|
43040
43088
|
chatItemsLoadingCount: {
|
|
43041
|
-
type: import("vue").PropType<
|
|
43089
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["chatItemsLoadingCount"]>;
|
|
43042
43090
|
default: number;
|
|
43043
43091
|
};
|
|
43044
43092
|
messagesLoading: {
|
|
43045
|
-
type: import("vue").PropType<
|
|
43093
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["messagesLoading"]>;
|
|
43046
43094
|
default: boolean;
|
|
43047
43095
|
};
|
|
43048
43096
|
messagesLoadingCount: {
|
|
43049
|
-
type: import("vue").PropType<
|
|
43097
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["messagesLoadingCount"]>;
|
|
43050
43098
|
default: number;
|
|
43051
43099
|
};
|
|
43052
43100
|
height: {
|
|
@@ -43054,15 +43102,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
43054
43102
|
default: number;
|
|
43055
43103
|
};
|
|
43056
43104
|
onChatSelect: {
|
|
43057
|
-
type: import("vue").PropType<import("./chat").
|
|
43105
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onChatSelect"]>;
|
|
43058
43106
|
default: undefined;
|
|
43059
43107
|
};
|
|
43060
43108
|
onMessageRetry: {
|
|
43061
|
-
type: import("vue").PropType<
|
|
43109
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onMessageRetry"]>;
|
|
43062
43110
|
default: undefined;
|
|
43063
43111
|
};
|
|
43064
43112
|
bubbleActions: {
|
|
43065
|
-
type: import("vue").PropType<import("./chat/src/interface").
|
|
43113
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["bubbleActions"]>;
|
|
43066
43114
|
default: undefined;
|
|
43067
43115
|
};
|
|
43068
43116
|
onChatClose: {
|
|
@@ -43078,15 +43126,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
43078
43126
|
default: undefined;
|
|
43079
43127
|
};
|
|
43080
43128
|
onAttachmentUpload: {
|
|
43081
|
-
type: import("vue").PropType<import("./chat").
|
|
43129
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onAttachmentUpload"]>;
|
|
43082
43130
|
default: undefined;
|
|
43083
43131
|
};
|
|
43084
43132
|
onAttachmentDownload: {
|
|
43085
|
-
type: import("vue").PropType<import("./chat/src/interface").
|
|
43133
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onAttachmentDownload"]>;
|
|
43086
43134
|
default: undefined;
|
|
43087
43135
|
};
|
|
43088
43136
|
onFilterChange: {
|
|
43089
|
-
type: import("vue").PropType<import("./chat").
|
|
43137
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onFilterChange"]>;
|
|
43090
43138
|
default: undefined;
|
|
43091
43139
|
};
|
|
43092
43140
|
onFooterInputChange: {
|
|
@@ -43094,15 +43142,15 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
43094
43142
|
default: undefined;
|
|
43095
43143
|
};
|
|
43096
43144
|
onNetworkError: {
|
|
43097
|
-
type: import("vue").PropType<import("./chat").
|
|
43145
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onNetworkError"]>;
|
|
43098
43146
|
default: undefined;
|
|
43099
43147
|
};
|
|
43100
43148
|
onUploadError: {
|
|
43101
|
-
type: import("vue").PropType<import("./chat").
|
|
43149
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onUploadError"]>;
|
|
43102
43150
|
default: undefined;
|
|
43103
43151
|
};
|
|
43104
43152
|
onSendError: {
|
|
43105
|
-
type: import("vue").PropType<import("./chat").
|
|
43153
|
+
type: import("vue").PropType<import("./chat/src/interface").ChatPropsInterface["onSendError"]>;
|
|
43106
43154
|
default: undefined;
|
|
43107
43155
|
};
|
|
43108
43156
|
onChatItemsScrollToTop: {
|
|
@@ -45687,6 +45735,7 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
45687
45735
|
}, any>;
|
|
45688
45736
|
}>>>;
|
|
45689
45737
|
}>> & Readonly<{
|
|
45738
|
+
"onUpdate:inputValue"?: ((...args: any[]) => any) | undefined;
|
|
45690
45739
|
"onMessage-retry"?: ((...args: any[]) => any) | undefined;
|
|
45691
45740
|
"onUpdate:selectedChatId"?: ((...args: any[]) => any) | undefined;
|
|
45692
45741
|
"onMessage-send"?: ((...args: any[]) => any) | undefined;
|
|
@@ -45712,11 +45761,19 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
45712
45761
|
disabled: boolean | undefined;
|
|
45713
45762
|
emptyProps: Partial<Partial<import("./empty").EmptyProps> | undefined>;
|
|
45714
45763
|
onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload | undefined;
|
|
45715
|
-
|
|
45716
|
-
messages: import("./chat").ChatMessageData[] | undefined;
|
|
45717
|
-
typingChatIds: (string | number | symbol)[];
|
|
45764
|
+
chatItems: import("./chat").ChatListItemData[] | undefined;
|
|
45718
45765
|
selectedChatId: import("./chat").ChatId | undefined;
|
|
45719
|
-
|
|
45766
|
+
inputValue: string | undefined;
|
|
45767
|
+
messages: import("./chat").ChatMessageData[] | undefined;
|
|
45768
|
+
listEmptyProps: Partial<Partial<import("./empty").EmptyProps> | undefined>;
|
|
45769
|
+
listHeaderTitle: string | (() => import("vue").VNodeChild) | undefined;
|
|
45770
|
+
listHeaderActions: (() => import("vue").VNodeChild)[] | undefined;
|
|
45771
|
+
listHeaderButtonProps: Partial<Partial<import("./button").ButtonProps> | undefined>;
|
|
45772
|
+
listHeaderIconProps: Partial<Partial<import("./icon").IconProps> | undefined>;
|
|
45773
|
+
listItemAvatarProps: Partial<Partial<import("./avatar").AvatarProps> | undefined>;
|
|
45774
|
+
listItemBadgeProps: Partial<Partial<import("./badge").BadgeProps> | undefined>;
|
|
45775
|
+
headerTitle: string | (() => import("vue").VNodeChild) | undefined;
|
|
45776
|
+
headerActions: (() => import("vue").VNodeChild)[] | undefined;
|
|
45720
45777
|
headerButtonProps: Partial<Partial<import("./button").ButtonProps> | undefined>;
|
|
45721
45778
|
headerIconProps: Partial<Partial<import("./icon").IconProps> | undefined>;
|
|
45722
45779
|
headerShareButtonProps: Partial<Partial<import("./button").ButtonProps> | undefined>;
|
|
@@ -45724,43 +45781,36 @@ export declare const UChat: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
45724
45781
|
headerCloseButtonProps: Partial<Partial<import("./button").ButtonProps> | undefined>;
|
|
45725
45782
|
headerShareIconProps: Partial<Partial<import("./icon").IconProps> | undefined>;
|
|
45726
45783
|
headerProfileIconProps: Partial<Partial<import("./icon").IconProps> | undefined>;
|
|
45784
|
+
messageSenderAvatarProps: Partial<Partial<import("./avatar").AvatarProps> | undefined>;
|
|
45727
45785
|
messageUploadProps: Partial<Partial<import("./upload").UploadProps> | undefined>;
|
|
45786
|
+
messageButtonProps: Partial<Partial<import("./button").ButtonProps> | undefined>;
|
|
45728
45787
|
footerInputProps: Partial<Partial<import("./input").InputProps> | undefined>;
|
|
45729
45788
|
footerButtonProps: Partial<Partial<import("./button").ButtonProps> | undefined>;
|
|
45730
45789
|
footerUploadProps: Partial<Partial<import("./upload").UploadProps> | undefined>;
|
|
45790
|
+
footerUploadTriggerProps: any;
|
|
45731
45791
|
footerIconProps: Partial<Partial<import("./icon").IconProps> | undefined>;
|
|
45732
45792
|
footerSuffixIconProps: Partial<Partial<import("./icon").IconProps> | undefined>;
|
|
45733
|
-
onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
|
|
45734
|
-
onChatClose: () => void;
|
|
45735
|
-
onChatShare: () => void;
|
|
45736
|
-
onUserProfile: () => void;
|
|
45737
|
-
onAttachmentUpload: import("./chat").OnAttachmentUpload | undefined;
|
|
45738
|
-
onMessagesScrollToTop: () => void;
|
|
45739
|
-
onMessagesScrollToBottom: () => void;
|
|
45740
|
-
headerActions: (() => import("vue").VNodeChild)[] | undefined;
|
|
45741
|
-
chatItems: import("./chat").ChatListItemData[] | undefined;
|
|
45742
|
-
onChatSelect: import("./chat").OnChatSelect | undefined;
|
|
45743
|
-
onChatItemsScrollToTop: () => void;
|
|
45744
|
-
onChatItemsScrollToBottom: () => void;
|
|
45745
|
-
listEmptyProps: Partial<Partial<import("./empty").EmptyProps> | undefined>;
|
|
45746
|
-
listHeaderTitle: string | (() => import("vue").VNodeChild) | undefined;
|
|
45747
|
-
listHeaderActions: (() => import("vue").VNodeChild)[] | undefined;
|
|
45748
|
-
listHeaderButtonProps: Partial<Partial<import("./button").ButtonProps> | undefined>;
|
|
45749
|
-
listHeaderIconProps: Partial<Partial<import("./icon").IconProps> | undefined>;
|
|
45750
|
-
listItemAvatarProps: Partial<Partial<import("./avatar").AvatarProps> | undefined>;
|
|
45751
|
-
listItemBadgeProps: Partial<Partial<import("./badge").BadgeProps> | undefined>;
|
|
45752
|
-
headerTitle: string | (() => import("vue").VNodeChild) | undefined;
|
|
45753
|
-
messageSenderAvatarProps: Partial<Partial<import("./avatar").AvatarProps> | undefined>;
|
|
45754
|
-
messageButtonProps: Partial<Partial<import("./button").ButtonProps> | undefined>;
|
|
45755
|
-
footerUploadTriggerProps: any;
|
|
45756
45793
|
chatItemsLoading: boolean | undefined;
|
|
45757
45794
|
chatItemsLoadingCount: number | undefined;
|
|
45758
45795
|
messagesLoading: boolean | undefined;
|
|
45759
45796
|
messagesLoadingCount: number | undefined;
|
|
45797
|
+
onChatSelect: import("./chat").OnChatSelect | undefined;
|
|
45798
|
+
onMessageRetry: ((message: import("./chat").ChatMessageData) => void) | undefined;
|
|
45799
|
+
bubbleActions: import("./chat/src/interface").ChatBubbleAction[] | undefined;
|
|
45800
|
+
onAttachmentUpload: import("./chat").OnAttachmentUpload | undefined;
|
|
45760
45801
|
onFilterChange: import("./chat").OnFilterChange | undefined;
|
|
45761
45802
|
onNetworkError: import("./chat").OnNetworkError | undefined;
|
|
45762
45803
|
onUploadError: import("./chat").OnUploadError | undefined;
|
|
45763
45804
|
onSendError: import("./chat").OnSendError | undefined;
|
|
45805
|
+
typingChatIds: (string | number | symbol)[];
|
|
45806
|
+
onChatClose: () => void;
|
|
45807
|
+
onChatShare: () => void;
|
|
45808
|
+
onUserProfile: () => void;
|
|
45809
|
+
onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
|
|
45810
|
+
onChatItemsScrollToTop: () => void;
|
|
45811
|
+
onChatItemsScrollToBottom: () => void;
|
|
45812
|
+
onMessagesScrollToTop: () => void;
|
|
45813
|
+
onMessagesScrollToBottom: () => void;
|
|
45764
45814
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
45765
45815
|
export declare const UChatListItems: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
45766
45816
|
readonly chatItems: {
|
|
@@ -54755,13 +54805,13 @@ export declare const UChatListItems: import("vue").DefineComponent<import("vue")
|
|
|
54755
54805
|
readonly loading: boolean;
|
|
54756
54806
|
readonly typingText: string;
|
|
54757
54807
|
readonly emptyProps: Partial<import("./empty").EmptyProps>;
|
|
54758
|
-
readonly loadingCount: number;
|
|
54759
|
-
readonly typingChatIds: (string | number | symbol)[];
|
|
54760
|
-
readonly selectedChatId: string | number | symbol;
|
|
54761
54808
|
readonly chatItems: import("./chat").ChatListItemData[];
|
|
54809
|
+
readonly selectedChatId: string | number | symbol;
|
|
54810
|
+
readonly onChatSelect: (chatId: string | number | symbol) => void;
|
|
54811
|
+
readonly typingChatIds: (string | number | symbol)[];
|
|
54812
|
+
readonly loadingCount: number;
|
|
54762
54813
|
readonly avatarProps: Partial<import("./avatar").AvatarProps>;
|
|
54763
54814
|
readonly badgeProps: Partial<import("./badge").BadgeProps>;
|
|
54764
|
-
readonly onChatSelect: (chatId: string | number | symbol) => void;
|
|
54765
54815
|
readonly notificationsShown: Set<string | number | symbol>;
|
|
54766
54816
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
54767
54817
|
export declare const UChatMainArea: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
@@ -54769,6 +54819,10 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
|
|
|
54769
54819
|
readonly type: import("vue").PropType<import("./chat").ChatListItemData>;
|
|
54770
54820
|
readonly default: undefined;
|
|
54771
54821
|
};
|
|
54822
|
+
readonly inputValue: {
|
|
54823
|
+
readonly type: StringConstructor;
|
|
54824
|
+
readonly default: undefined;
|
|
54825
|
+
};
|
|
54772
54826
|
readonly messages: {
|
|
54773
54827
|
readonly type: import("vue").PropType<import("./chat").ChatMessageData[]>;
|
|
54774
54828
|
readonly default: () => never[];
|
|
@@ -54885,6 +54939,10 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
|
|
|
54885
54939
|
readonly type: import("vue").PropType<(value: string, chatId: import("./chat").ChatId) => void>;
|
|
54886
54940
|
readonly default: undefined;
|
|
54887
54941
|
};
|
|
54942
|
+
readonly 'onUpdate:inputValue': {
|
|
54943
|
+
readonly type: import("vue").PropType<(value: string) => void>;
|
|
54944
|
+
readonly default: undefined;
|
|
54945
|
+
};
|
|
54888
54946
|
readonly onChatClose: {
|
|
54889
54947
|
readonly type: import("vue").PropType<() => void>;
|
|
54890
54948
|
readonly default: undefined;
|
|
@@ -61236,7 +61294,7 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
|
|
|
61236
61294
|
$el: HTMLElement;
|
|
61237
61295
|
} | undefined>;
|
|
61238
61296
|
inputRef: import("vue").Ref<HTMLInputElement | undefined, HTMLInputElement | undefined>;
|
|
61239
|
-
inputValue: import("vue").
|
|
61297
|
+
inputValue: import("vue").WritableComputedRef<string, string>;
|
|
61240
61298
|
handleSendMessage: () => Promise<void>;
|
|
61241
61299
|
handleMessagesScroll: (e: Event) => void;
|
|
61242
61300
|
scrollToBottom: () => void;
|
|
@@ -61246,6 +61304,10 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
|
|
|
61246
61304
|
readonly type: import("vue").PropType<import("./chat").ChatListItemData>;
|
|
61247
61305
|
readonly default: undefined;
|
|
61248
61306
|
};
|
|
61307
|
+
readonly inputValue: {
|
|
61308
|
+
readonly type: StringConstructor;
|
|
61309
|
+
readonly default: undefined;
|
|
61310
|
+
};
|
|
61249
61311
|
readonly messages: {
|
|
61250
61312
|
readonly type: import("vue").PropType<import("./chat").ChatMessageData[]>;
|
|
61251
61313
|
readonly default: () => never[];
|
|
@@ -61362,6 +61424,10 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
|
|
|
61362
61424
|
readonly type: import("vue").PropType<(value: string, chatId: import("./chat").ChatId) => void>;
|
|
61363
61425
|
readonly default: undefined;
|
|
61364
61426
|
};
|
|
61427
|
+
readonly 'onUpdate:inputValue': {
|
|
61428
|
+
readonly type: import("vue").PropType<(value: string) => void>;
|
|
61429
|
+
readonly default: undefined;
|
|
61430
|
+
};
|
|
61365
61431
|
readonly onChatClose: {
|
|
61366
61432
|
readonly type: import("vue").PropType<() => void>;
|
|
61367
61433
|
readonly default: undefined;
|
|
@@ -63965,12 +64031,8 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
|
|
|
63965
64031
|
readonly profileButtonTooltip: string;
|
|
63966
64032
|
readonly unreadNotificationText: string;
|
|
63967
64033
|
readonly onAttachmentDownload: import("./chat/src/interface").OnAttachmentDownload;
|
|
63968
|
-
readonly
|
|
64034
|
+
readonly inputValue: string;
|
|
63969
64035
|
readonly messages: import("./chat").ChatMessageData[];
|
|
63970
|
-
readonly loadingCount: number;
|
|
63971
|
-
readonly typingChatIds: (string | number | symbol)[];
|
|
63972
|
-
readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
|
|
63973
|
-
readonly selectedChat: import("./chat").ChatListItemData;
|
|
63974
64036
|
readonly headerButtonProps: Partial<import("./button").ButtonProps>;
|
|
63975
64037
|
readonly headerIconProps: Partial<import("./icon").IconProps>;
|
|
63976
64038
|
readonly headerShareButtonProps: Partial<import("./button").ButtonProps>;
|
|
@@ -63984,15 +64046,21 @@ export declare const UChatMainArea: import("vue").DefineComponent<import("vue").
|
|
|
63984
64046
|
readonly footerUploadProps: Partial<import("./upload").UploadProps>;
|
|
63985
64047
|
readonly footerIconProps: Partial<import("./icon").IconProps>;
|
|
63986
64048
|
readonly footerSuffixIconProps: Partial<import("./icon").IconProps>;
|
|
63987
|
-
readonly
|
|
63988
|
-
readonly
|
|
63989
|
-
readonly
|
|
64049
|
+
readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
|
|
64050
|
+
readonly bubbleActions: import("./chat/src/interface").ChatBubbleAction[];
|
|
64051
|
+
readonly onAttachmentUpload: import("./chat").OnAttachmentUpload;
|
|
64052
|
+
readonly typingChatIds: (string | number | symbol)[];
|
|
63990
64053
|
readonly onChatClose: () => void;
|
|
63991
64054
|
readonly onChatShare: () => void;
|
|
63992
64055
|
readonly onUserProfile: () => void;
|
|
63993
|
-
readonly
|
|
64056
|
+
readonly onFooterInputChange: (value: string, chatId: import("./chat").ChatId) => void;
|
|
63994
64057
|
readonly onMessagesScrollToTop: () => void;
|
|
63995
64058
|
readonly onMessagesScrollToBottom: () => void;
|
|
64059
|
+
readonly loadingCount: number;
|
|
64060
|
+
readonly selectedChat: import("./chat").ChatListItemData;
|
|
64061
|
+
readonly showAttachButton: boolean;
|
|
64062
|
+
readonly onMessageSend: import("./chat").OnMessageSend;
|
|
64063
|
+
readonly 'onUpdate:inputValue': (value: string) => void;
|
|
63996
64064
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
63997
64065
|
export declare const UChatMessages: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
63998
64066
|
readonly messages: {
|
|
@@ -72980,13 +73048,13 @@ export declare const UChatMessages: import("vue").DefineComponent<import("vue").
|
|
|
72980
73048
|
readonly retryText: string;
|
|
72981
73049
|
readonly unreadNotificationText: string;
|
|
72982
73050
|
readonly uploadProps: Partial<import("./upload").UploadProps>;
|
|
73051
|
+
readonly selectedChatId: string | number | symbol;
|
|
72983
73052
|
readonly messages: import("./chat").ChatMessageData[];
|
|
72984
|
-
readonly
|
|
73053
|
+
readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
|
|
72985
73054
|
readonly typingChatIds: (string | number | symbol)[];
|
|
72986
|
-
readonly
|
|
73055
|
+
readonly loadingCount: number;
|
|
72987
73056
|
readonly showUnreadNotification: boolean;
|
|
72988
73057
|
readonly unreadNotificationCount: number;
|
|
72989
|
-
readonly onMessageRetry: (message: import("./chat").ChatMessageData) => void;
|
|
72990
73058
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
72991
73059
|
export type * from './checkbox';
|
|
72992
73060
|
export { checkboxGroupProps, checkboxProps } from './checkbox';
|