cnhis-design-vue 3.3.3-beta.33 → 3.3.3-beta.41
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/README.md +87 -87
- package/es/components/classification/src/components/table-modal/index.vue.d.ts +3 -0
- package/es/components/form-config/index.d.ts +10 -0
- package/es/components/form-config/src/FormConfig.vue.d.ts +10 -0
- package/es/components/form-config/src/components/FormConfigEdit.vue.d.ts +10 -0
- package/es/components/form-config/src/components/FormConfigEdit.vue2.js +2 -2
- package/es/components/form-config/src/constants/index.d.ts +3 -1
- package/es/components/form-config/src/constants/index.js +2 -0
- package/es/components/form-config/src/hooks/useConfigurationField.js +24 -4
- package/es/components/form-config/src/hooks/useLocale.d.ts +2 -0
- package/es/components/form-config/src/hooks/useLocale.js +2 -0
- package/es/components/form-config/src/types/index.d.ts +5 -0
- package/es/components/form-render/src/components/renderer/formItem.d.ts +2 -0
- package/es/components/form-render/src/components/renderer/formItem.js +9 -2
- package/es/components/form-render/src/components/renderer/levelSearchCascader/index.js +4 -2
- package/es/components/form-render/src/hooks/useFieldListAdaptor.js +5 -2
- package/es/components/iho-chat/index.d.ts +836 -44
- package/es/components/iho-chat/src/Index.vue.d.ts +836 -44
- package/es/components/iho-chat/src/components/ChatAdd.vue.d.ts +24 -1
- package/es/components/iho-chat/src/components/ChatFile.vue.d.ts +179 -6
- package/es/components/iho-chat/src/components/ChatFile.vue2.js +48 -28
- package/es/components/iho-chat/src/components/ChatFooter.vue.d.ts +61 -5
- package/es/components/iho-chat/src/components/ChatFooter.vue2.js +83 -38
- package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +327 -13
- package/es/components/iho-chat/src/components/ChatHeader.vue2.js +18 -17
- package/es/components/iho-chat/src/components/ChatMain.vue.d.ts +232 -17
- package/es/components/iho-chat/src/components/ChatMain.vue2.js +299 -272
- package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +49 -3
- package/es/components/iho-chat/src/components/ChatSearch.vue.d.ts +24 -1
- package/es/components/iho-chat/src/components/ChatSet.vue.d.ts +48 -2
- package/es/components/iho-chat/src/components/ImageLightbox.vue.d.ts +104 -0
- package/es/components/iho-chat/src/components/ImageLightbox.vue.js +6 -0
- package/es/components/iho-chat/src/components/ImageLightbox.vue2.js +307 -0
- package/es/components/iho-chat/src/components/MessageEvent.vue.d.ts +24 -1
- package/es/components/iho-chat/src/components/MessageMergeForward.vue.d.ts +51 -4
- package/es/components/iho-chat/src/components/MultipleVideo.vue.d.ts +48 -2
- package/es/components/iho-chat/src/components/PersonProfile.vue.d.ts +24 -1
- package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/SelectLabel.vue.d.ts +1 -1
- package/es/components/iho-chat/src/components/SiderList.vue.d.ts +24 -1
- package/es/components/iho-chat/src/components/Video.vue.d.ts +24 -1
- package/es/components/iho-chat/src/hooks/useData.d.ts +51 -4
- package/es/components/iho-chat/src/hooks/useVideo.d.ts +24 -1
- package/es/components/iho-chat/src/types/index.d.ts +37 -1
- package/es/components/iho-chat/src/utils/emoji.d.ts +1 -1
- package/es/components/iho-chat/src/utils/emoji.js +1 -1
- package/es/components/iho-chat/src/utils/index.d.ts +1 -0
- package/es/components/iho-chat/src/utils/index.js +8 -1
- package/es/components/iho-chat/style/index.css +1 -1
- package/es/components/index.css +1 -1
- package/es/components/info-header/src/components/infoDescription/DescriptionItem.vue2.js +20 -15
- package/es/env.d.ts +25 -25
- package/es/shared/hooks/useLevelSearchCascader.js +3 -3
- package/es/shared/package.json.js +1 -1
- package/package.json +3 -2
@@ -116,7 +116,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
116
116
|
currentSessionItem: import("../../shared/types").AnyObject;
|
117
117
|
id: string;
|
118
118
|
userInfo: import("../../shared/types").AnyObject;
|
119
|
-
msgList:
|
119
|
+
msgList: {
|
120
|
+
[x: string]: any;
|
121
|
+
id: string;
|
122
|
+
sessionKey: string;
|
123
|
+
content: {
|
124
|
+
[x: string]: any;
|
125
|
+
chatMessageType: string;
|
126
|
+
msg: string;
|
127
|
+
referenceContent?: any;
|
128
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
129
|
+
messageTemplate?: any;
|
130
|
+
messageTemplateData?: any;
|
131
|
+
fileUrl?: string | undefined;
|
132
|
+
avStatus?: string | undefined;
|
133
|
+
};
|
134
|
+
senderName: string;
|
135
|
+
sendTime: string;
|
136
|
+
sender: string;
|
137
|
+
status: string;
|
138
|
+
senderAvatar: string;
|
139
|
+
__content: string;
|
140
|
+
__time?: string | undefined;
|
141
|
+
__sendTime?: string | undefined;
|
142
|
+
}[];
|
120
143
|
currentMsg: import("../../shared/types").AnyObject;
|
121
144
|
isAppendMsg: boolean;
|
122
145
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -144,7 +167,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
144
167
|
isGroupChat: import("vue").ComputedRef<boolean>;
|
145
168
|
isGroupLeader: import("vue").ComputedRef<boolean>;
|
146
169
|
isEnded: import("vue").ComputedRef<boolean>;
|
147
|
-
setMsgList: (list?: import("../../shared/types").AnyObject[]) => void;
|
170
|
+
setMsgList: (list?: import("../../shared/types").AnyObject[] | import("./src/types").MsgListItem) => void;
|
148
171
|
sendMessage: (message: {
|
149
172
|
chatType?: string | undefined;
|
150
173
|
content: import("../../shared/types").AnyObject;
|
@@ -175,7 +198,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
175
198
|
currentSessionItem: import("../../shared/types").AnyObject;
|
176
199
|
id: string;
|
177
200
|
userInfo: import("../../shared/types").AnyObject;
|
178
|
-
msgList:
|
201
|
+
msgList: {
|
202
|
+
[x: string]: any;
|
203
|
+
id: string;
|
204
|
+
sessionKey: string;
|
205
|
+
content: {
|
206
|
+
[x: string]: any;
|
207
|
+
chatMessageType: string;
|
208
|
+
msg: string;
|
209
|
+
referenceContent?: any;
|
210
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
211
|
+
messageTemplate?: any;
|
212
|
+
messageTemplateData?: any;
|
213
|
+
fileUrl?: string | undefined;
|
214
|
+
avStatus?: string | undefined;
|
215
|
+
};
|
216
|
+
senderName: string;
|
217
|
+
sendTime: string;
|
218
|
+
sender: string;
|
219
|
+
status: string;
|
220
|
+
senderAvatar: string;
|
221
|
+
__content: string;
|
222
|
+
__time?: string | undefined;
|
223
|
+
__sendTime?: string | undefined;
|
224
|
+
}[];
|
179
225
|
currentMsg: import("../../shared/types").AnyObject;
|
180
226
|
isAppendMsg: boolean;
|
181
227
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -238,7 +284,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
238
284
|
currentSessionItem: import("../../shared/types").AnyObject;
|
239
285
|
id: string;
|
240
286
|
userInfo: import("../../shared/types").AnyObject;
|
241
|
-
msgList:
|
287
|
+
msgList: {
|
288
|
+
[x: string]: any;
|
289
|
+
id: string;
|
290
|
+
sessionKey: string;
|
291
|
+
content: {
|
292
|
+
[x: string]: any;
|
293
|
+
chatMessageType: string;
|
294
|
+
msg: string;
|
295
|
+
referenceContent?: any;
|
296
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
297
|
+
messageTemplate?: any;
|
298
|
+
messageTemplateData?: any;
|
299
|
+
fileUrl?: string | undefined;
|
300
|
+
avStatus?: string | undefined;
|
301
|
+
};
|
302
|
+
senderName: string;
|
303
|
+
sendTime: string;
|
304
|
+
sender: string;
|
305
|
+
status: string;
|
306
|
+
senderAvatar: string;
|
307
|
+
__content: string;
|
308
|
+
__time?: string | undefined;
|
309
|
+
__sendTime?: string | undefined;
|
310
|
+
}[];
|
242
311
|
currentMsg: import("../../shared/types").AnyObject;
|
243
312
|
isAppendMsg: boolean;
|
244
313
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -537,7 +606,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
537
606
|
currentSessionItem: import("../../shared/types").AnyObject;
|
538
607
|
id: string;
|
539
608
|
userInfo: import("../../shared/types").AnyObject;
|
540
|
-
msgList:
|
609
|
+
msgList: {
|
610
|
+
[x: string]: any;
|
611
|
+
id: string;
|
612
|
+
sessionKey: string;
|
613
|
+
content: {
|
614
|
+
[x: string]: any;
|
615
|
+
chatMessageType: string;
|
616
|
+
msg: string;
|
617
|
+
referenceContent?: any;
|
618
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
619
|
+
messageTemplate?: any;
|
620
|
+
messageTemplateData?: any;
|
621
|
+
fileUrl?: string | undefined;
|
622
|
+
avStatus?: string | undefined;
|
623
|
+
};
|
624
|
+
senderName: string;
|
625
|
+
sendTime: string;
|
626
|
+
sender: string;
|
627
|
+
status: string;
|
628
|
+
senderAvatar: string;
|
629
|
+
__content: string;
|
630
|
+
__time?: string | undefined;
|
631
|
+
__sendTime?: string | undefined;
|
632
|
+
}[];
|
541
633
|
currentMsg: import("../../shared/types").AnyObject;
|
542
634
|
isAppendMsg: boolean;
|
543
635
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -598,7 +690,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
598
690
|
currentSessionItem: import("../../shared/types").AnyObject;
|
599
691
|
id: string;
|
600
692
|
userInfo: import("../../shared/types").AnyObject;
|
601
|
-
msgList:
|
693
|
+
msgList: {
|
694
|
+
[x: string]: any;
|
695
|
+
id: string;
|
696
|
+
sessionKey: string;
|
697
|
+
content: {
|
698
|
+
[x: string]: any;
|
699
|
+
chatMessageType: string;
|
700
|
+
msg: string;
|
701
|
+
referenceContent?: any;
|
702
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
703
|
+
messageTemplate?: any;
|
704
|
+
messageTemplateData?: any;
|
705
|
+
fileUrl?: string | undefined;
|
706
|
+
avStatus?: string | undefined;
|
707
|
+
};
|
708
|
+
senderName: string;
|
709
|
+
sendTime: string;
|
710
|
+
sender: string;
|
711
|
+
status: string;
|
712
|
+
senderAvatar: string;
|
713
|
+
__content: string;
|
714
|
+
__time?: string | undefined;
|
715
|
+
__sendTime?: string | undefined;
|
716
|
+
}[];
|
602
717
|
currentMsg: import("../../shared/types").AnyObject;
|
603
718
|
isAppendMsg: boolean;
|
604
719
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -719,7 +834,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
719
834
|
currentSessionItem: import("../../shared/types").AnyObject;
|
720
835
|
id: string;
|
721
836
|
userInfo: import("../../shared/types").AnyObject;
|
722
|
-
msgList:
|
837
|
+
msgList: {
|
838
|
+
[x: string]: any;
|
839
|
+
id: string;
|
840
|
+
sessionKey: string;
|
841
|
+
content: {
|
842
|
+
[x: string]: any;
|
843
|
+
chatMessageType: string;
|
844
|
+
msg: string;
|
845
|
+
referenceContent?: any;
|
846
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
847
|
+
messageTemplate?: any;
|
848
|
+
messageTemplateData?: any;
|
849
|
+
fileUrl?: string | undefined;
|
850
|
+
avStatus?: string | undefined;
|
851
|
+
};
|
852
|
+
senderName: string;
|
853
|
+
sendTime: string;
|
854
|
+
sender: string;
|
855
|
+
status: string;
|
856
|
+
senderAvatar: string;
|
857
|
+
__content: string;
|
858
|
+
__time?: string | undefined;
|
859
|
+
__sendTime?: string | undefined;
|
860
|
+
}[];
|
723
861
|
currentMsg: import("../../shared/types").AnyObject;
|
724
862
|
isAppendMsg: boolean;
|
725
863
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -876,7 +1014,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
876
1014
|
currentSessionItem: import("../../shared/types").AnyObject;
|
877
1015
|
id: string;
|
878
1016
|
userInfo: import("../../shared/types").AnyObject;
|
879
|
-
msgList:
|
1017
|
+
msgList: {
|
1018
|
+
[x: string]: any;
|
1019
|
+
id: string;
|
1020
|
+
sessionKey: string;
|
1021
|
+
content: {
|
1022
|
+
[x: string]: any;
|
1023
|
+
chatMessageType: string;
|
1024
|
+
msg: string;
|
1025
|
+
referenceContent?: any;
|
1026
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
1027
|
+
messageTemplate?: any;
|
1028
|
+
messageTemplateData?: any;
|
1029
|
+
fileUrl?: string | undefined;
|
1030
|
+
avStatus?: string | undefined;
|
1031
|
+
};
|
1032
|
+
senderName: string;
|
1033
|
+
sendTime: string;
|
1034
|
+
sender: string;
|
1035
|
+
status: string;
|
1036
|
+
senderAvatar: string;
|
1037
|
+
__content: string;
|
1038
|
+
__time?: string | undefined;
|
1039
|
+
__sendTime?: string | undefined;
|
1040
|
+
}[];
|
880
1041
|
currentMsg: import("../../shared/types").AnyObject;
|
881
1042
|
isAppendMsg: boolean;
|
882
1043
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -905,11 +1066,26 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
905
1066
|
remark: string;
|
906
1067
|
contents: import("../../shared/types").AnyObject[];
|
907
1068
|
}) => Promise<void>;
|
908
|
-
imageList: import("vue").Ref<
|
1069
|
+
imageList: import("vue").Ref<{
|
1070
|
+
label: string;
|
1071
|
+
list: {
|
1072
|
+
[x: string]: any;
|
1073
|
+
id: string;
|
1074
|
+
fileUrl: string;
|
1075
|
+
senderName: string;
|
1076
|
+
fileSize: string;
|
1077
|
+
sendTime: string;
|
1078
|
+
fileName: string;
|
1079
|
+
width?: number | undefined;
|
1080
|
+
height?: number | undefined;
|
1081
|
+
}[];
|
1082
|
+
}[]>;
|
909
1083
|
fileList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
|
910
1084
|
imageRef: import("vue").Ref<any>;
|
911
1085
|
fileRef: import("vue").Ref<any>;
|
912
1086
|
keyword: import("vue").Ref<any>;
|
1087
|
+
currentImgId: import("vue").Ref<string | undefined>;
|
1088
|
+
showLightbox: import("vue").Ref<boolean>;
|
913
1089
|
handleInput: () => void;
|
914
1090
|
pageInfo: {
|
915
1091
|
page: number;
|
@@ -919,13 +1095,23 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
919
1095
|
handleSearch: () => Promise<void>;
|
920
1096
|
formatImageList: (data: import("../../shared/types").AnyObject[]) => {
|
921
1097
|
label: string;
|
922
|
-
list:
|
1098
|
+
list: import("./src/types").ImageItem[];
|
923
1099
|
}[];
|
924
1100
|
resetAndSearch: () => void;
|
1101
|
+
previewImg: (fileUrl: string) => void;
|
925
1102
|
title: import("vue").ComputedRef<"聊天图片" | "聊天文件">;
|
1103
|
+
images: import("vue").ComputedRef<{
|
1104
|
+
[x: string]: any;
|
1105
|
+
id: string;
|
1106
|
+
fileUrl: string;
|
1107
|
+
senderName: string;
|
1108
|
+
fileSize: string;
|
1109
|
+
sendTime: string;
|
1110
|
+
fileName: string;
|
1111
|
+
width?: number | undefined;
|
1112
|
+
height?: number | undefined;
|
1113
|
+
}[]>;
|
926
1114
|
NModal: any;
|
927
|
-
NImageGroup: any;
|
928
|
-
NImage: any;
|
929
1115
|
NInput: any;
|
930
1116
|
NIcon: any;
|
931
1117
|
NTooltip: any;
|
@@ -1000,7 +1186,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1000
1186
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1001
1187
|
id: string;
|
1002
1188
|
userInfo: import("../../shared/types").AnyObject;
|
1003
|
-
msgList:
|
1189
|
+
msgList: {
|
1190
|
+
[x: string]: any;
|
1191
|
+
id: string;
|
1192
|
+
sessionKey: string;
|
1193
|
+
content: {
|
1194
|
+
[x: string]: any;
|
1195
|
+
chatMessageType: string;
|
1196
|
+
msg: string;
|
1197
|
+
referenceContent?: any;
|
1198
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
1199
|
+
messageTemplate?: any;
|
1200
|
+
messageTemplateData?: any;
|
1201
|
+
fileUrl?: string | undefined;
|
1202
|
+
avStatus?: string | undefined;
|
1203
|
+
};
|
1204
|
+
senderName: string;
|
1205
|
+
sendTime: string;
|
1206
|
+
sender: string;
|
1207
|
+
status: string;
|
1208
|
+
senderAvatar: string;
|
1209
|
+
__content: string;
|
1210
|
+
__time?: string | undefined;
|
1211
|
+
__sendTime?: string | undefined;
|
1212
|
+
}[];
|
1004
1213
|
currentMsg: import("../../shared/types").AnyObject;
|
1005
1214
|
isAppendMsg: boolean;
|
1006
1215
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -1130,6 +1339,107 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1130
1339
|
mode: string;
|
1131
1340
|
disabledIds: string[];
|
1132
1341
|
}>;
|
1342
|
+
ImageLightbox: import("vue").DefineComponent<{
|
1343
|
+
images: {
|
1344
|
+
type: import("vue").PropType<import("./src/types").ImageItem[]>;
|
1345
|
+
default: () => never[];
|
1346
|
+
};
|
1347
|
+
visible: {
|
1348
|
+
type: BooleanConstructor;
|
1349
|
+
};
|
1350
|
+
currentId: {
|
1351
|
+
type: StringConstructor;
|
1352
|
+
default: string;
|
1353
|
+
};
|
1354
|
+
}, {
|
1355
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1356
|
+
images: {
|
1357
|
+
type: import("vue").PropType<import("./src/types").ImageItem[]>;
|
1358
|
+
default: () => never[];
|
1359
|
+
};
|
1360
|
+
visible: {
|
1361
|
+
type: BooleanConstructor;
|
1362
|
+
};
|
1363
|
+
currentId: {
|
1364
|
+
type: StringConstructor;
|
1365
|
+
default: string;
|
1366
|
+
};
|
1367
|
+
}>> & {
|
1368
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
1369
|
+
"onUpdate:currentId"?: ((...args: any[]) => any) | undefined;
|
1370
|
+
}>>;
|
1371
|
+
emit: (event: "update:visible" | "update:currentId", ...args: any[]) => void;
|
1372
|
+
imageEl: import("vue").Ref<HTMLImageElement | null>;
|
1373
|
+
naturalSize: import("vue").Ref<{
|
1374
|
+
width: number;
|
1375
|
+
height: number;
|
1376
|
+
}>;
|
1377
|
+
scale: import("vue").Ref<number>;
|
1378
|
+
rotation: import("vue").Ref<number>;
|
1379
|
+
isDragging: import("vue").Ref<boolean>;
|
1380
|
+
offset: import("vue").Ref<{
|
1381
|
+
x: number;
|
1382
|
+
y: number;
|
1383
|
+
}>;
|
1384
|
+
lastMouse: import("vue").Ref<{
|
1385
|
+
x: number;
|
1386
|
+
y: number;
|
1387
|
+
}>;
|
1388
|
+
idToIndexMap: import("vue").ComputedRef<Map<string, number>>;
|
1389
|
+
currentIndex: import("vue").ComputedRef<number>;
|
1390
|
+
currentImageData: import("vue").ComputedRef<import("./src/types").ImageItem>;
|
1391
|
+
hasNext: import("vue").ComputedRef<boolean>;
|
1392
|
+
hasPrev: import("vue").ComputedRef<boolean>;
|
1393
|
+
imageStyle: import("vue").ComputedRef<{
|
1394
|
+
left: string;
|
1395
|
+
top: string;
|
1396
|
+
transform: string;
|
1397
|
+
cursor: string;
|
1398
|
+
transition: string;
|
1399
|
+
}>;
|
1400
|
+
resetImageState: () => void;
|
1401
|
+
close: () => void;
|
1402
|
+
nextImage: () => void;
|
1403
|
+
prevImage: () => void;
|
1404
|
+
rotate: (degrees: number) => void;
|
1405
|
+
zoomIn: () => void;
|
1406
|
+
zoomOut: () => void;
|
1407
|
+
resetZoom: () => void;
|
1408
|
+
startDrag: (e: MouseEvent) => void;
|
1409
|
+
onDragMove: (e: MouseEvent) => void;
|
1410
|
+
endDrag: () => void;
|
1411
|
+
handleWheel: (e: WheelEvent) => void;
|
1412
|
+
handleImageLoad: () => void;
|
1413
|
+
download: () => void;
|
1414
|
+
Close: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1415
|
+
PlaySkipBackOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1416
|
+
PlaySkipForwardOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1417
|
+
DownloadOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1418
|
+
RefreshOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1419
|
+
AddOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1420
|
+
RemoveSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1421
|
+
NButton: any;
|
1422
|
+
NIcon: any;
|
1423
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:visible" | "update:currentId")[], "update:visible" | "update:currentId", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1424
|
+
images: {
|
1425
|
+
type: import("vue").PropType<import("./src/types").ImageItem[]>;
|
1426
|
+
default: () => never[];
|
1427
|
+
};
|
1428
|
+
visible: {
|
1429
|
+
type: BooleanConstructor;
|
1430
|
+
};
|
1431
|
+
currentId: {
|
1432
|
+
type: StringConstructor;
|
1433
|
+
default: string;
|
1434
|
+
};
|
1435
|
+
}>> & {
|
1436
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
1437
|
+
"onUpdate:currentId"?: ((...args: any[]) => any) | undefined;
|
1438
|
+
}, {
|
1439
|
+
visible: boolean;
|
1440
|
+
images: import("./src/types").ImageItem[];
|
1441
|
+
currentId: string;
|
1442
|
+
}>;
|
1133
1443
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1134
1444
|
type: {
|
1135
1445
|
type: StringConstructor;
|
@@ -1161,7 +1471,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1161
1471
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1162
1472
|
id: string;
|
1163
1473
|
userInfo: import("../../shared/types").AnyObject;
|
1164
|
-
msgList:
|
1474
|
+
msgList: {
|
1475
|
+
[x: string]: any;
|
1476
|
+
id: string;
|
1477
|
+
sessionKey: string;
|
1478
|
+
content: {
|
1479
|
+
[x: string]: any;
|
1480
|
+
chatMessageType: string;
|
1481
|
+
msg: string;
|
1482
|
+
referenceContent?: any;
|
1483
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
1484
|
+
messageTemplate?: any;
|
1485
|
+
messageTemplateData?: any;
|
1486
|
+
fileUrl?: string | undefined;
|
1487
|
+
avStatus?: string | undefined;
|
1488
|
+
};
|
1489
|
+
senderName: string;
|
1490
|
+
sendTime: string;
|
1491
|
+
sender: string;
|
1492
|
+
status: string;
|
1493
|
+
senderAvatar: string;
|
1494
|
+
__content: string;
|
1495
|
+
__time?: string | undefined;
|
1496
|
+
__sendTime?: string | undefined;
|
1497
|
+
}[];
|
1165
1498
|
currentMsg: import("../../shared/types").AnyObject;
|
1166
1499
|
isAppendMsg: boolean;
|
1167
1500
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -1362,7 +1695,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1362
1695
|
MESSAGE_TYPE: typeof import("./src/constants").MESSAGE_TYPE;
|
1363
1696
|
emojis: {
|
1364
1697
|
default: string[][];
|
1365
|
-
findEmoji(name: string):
|
1698
|
+
findEmoji(name: string): string | undefined;
|
1366
1699
|
};
|
1367
1700
|
MessageEvent: import("vue").DefineComponent<{
|
1368
1701
|
data: {
|
@@ -1381,7 +1714,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1381
1714
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1382
1715
|
id: string;
|
1383
1716
|
userInfo: import("../../shared/types").AnyObject;
|
1384
|
-
msgList:
|
1717
|
+
msgList: {
|
1718
|
+
[x: string]: any;
|
1719
|
+
id: string;
|
1720
|
+
sessionKey: string;
|
1721
|
+
content: {
|
1722
|
+
[x: string]: any;
|
1723
|
+
chatMessageType: string;
|
1724
|
+
msg: string;
|
1725
|
+
referenceContent?: any;
|
1726
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
1727
|
+
messageTemplate?: any;
|
1728
|
+
messageTemplateData?: any;
|
1729
|
+
fileUrl?: string | undefined;
|
1730
|
+
avStatus?: string | undefined;
|
1731
|
+
};
|
1732
|
+
senderName: string;
|
1733
|
+
sendTime: string;
|
1734
|
+
sender: string;
|
1735
|
+
status: string;
|
1736
|
+
senderAvatar: string;
|
1737
|
+
__content: string;
|
1738
|
+
__time?: string | undefined;
|
1739
|
+
__sendTime?: string | undefined;
|
1740
|
+
}[];
|
1385
1741
|
currentMsg: import("../../shared/types").AnyObject;
|
1386
1742
|
isAppendMsg: boolean;
|
1387
1743
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -1489,7 +1845,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1489
1845
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1490
1846
|
id: string;
|
1491
1847
|
userInfo: import("../../shared/types").AnyObject;
|
1492
|
-
msgList:
|
1848
|
+
msgList: {
|
1849
|
+
[x: string]: any;
|
1850
|
+
id: string;
|
1851
|
+
sessionKey: string;
|
1852
|
+
content: {
|
1853
|
+
[x: string]: any;
|
1854
|
+
chatMessageType: string;
|
1855
|
+
msg: string;
|
1856
|
+
referenceContent?: any;
|
1857
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
1858
|
+
messageTemplate?: any;
|
1859
|
+
messageTemplateData?: any;
|
1860
|
+
fileUrl?: string | undefined;
|
1861
|
+
avStatus?: string | undefined;
|
1862
|
+
};
|
1863
|
+
senderName: string;
|
1864
|
+
sendTime: string;
|
1865
|
+
sender: string;
|
1866
|
+
status: string;
|
1867
|
+
senderAvatar: string;
|
1868
|
+
__content: string;
|
1869
|
+
__time?: string | undefined;
|
1870
|
+
__sendTime?: string | undefined;
|
1871
|
+
}[];
|
1493
1872
|
currentMsg: import("../../shared/types").AnyObject;
|
1494
1873
|
isAppendMsg: boolean;
|
1495
1874
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -1621,6 +2000,10 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1621
2000
|
}>;
|
1622
2001
|
PersonAddOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1623
2002
|
CloseOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2003
|
+
FolderOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2004
|
+
ImageOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2005
|
+
SettingsOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2006
|
+
SearchLocate: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1624
2007
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1625
2008
|
ChatMain: import("vue").DefineComponent<{}, {
|
1626
2009
|
chatMainRef: import("vue").Ref<HTMLElement | undefined>;
|
@@ -1629,7 +2012,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1629
2012
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1630
2013
|
id: string;
|
1631
2014
|
userInfo: import("../../shared/types").AnyObject;
|
1632
|
-
msgList:
|
2015
|
+
msgList: {
|
2016
|
+
[x: string]: any;
|
2017
|
+
id: string;
|
2018
|
+
sessionKey: string;
|
2019
|
+
content: {
|
2020
|
+
[x: string]: any;
|
2021
|
+
chatMessageType: string;
|
2022
|
+
msg: string;
|
2023
|
+
referenceContent?: any;
|
2024
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
2025
|
+
messageTemplate?: any;
|
2026
|
+
messageTemplateData?: any;
|
2027
|
+
fileUrl?: string | undefined;
|
2028
|
+
avStatus?: string | undefined;
|
2029
|
+
};
|
2030
|
+
senderName: string;
|
2031
|
+
sendTime: string;
|
2032
|
+
sender: string;
|
2033
|
+
status: string;
|
2034
|
+
senderAvatar: string;
|
2035
|
+
__content: string;
|
2036
|
+
__time?: string | undefined;
|
2037
|
+
__sendTime?: string | undefined;
|
2038
|
+
}[];
|
1633
2039
|
currentMsg: import("../../shared/types").AnyObject;
|
1634
2040
|
isAppendMsg: boolean;
|
1635
2041
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -1653,7 +2059,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1653
2059
|
};
|
1654
2060
|
isForward: boolean;
|
1655
2061
|
};
|
1656
|
-
setMsgList: (list?: import("../../shared/types").AnyObject[]) => void;
|
2062
|
+
setMsgList: (list?: import("../../shared/types").AnyObject[] | import("./src/types").MsgListItem) => void;
|
1657
2063
|
relayMessage: (param: {
|
1658
2064
|
checkedIds: string[];
|
1659
2065
|
remark: string;
|
@@ -1678,6 +2084,8 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1678
2084
|
y: number;
|
1679
2085
|
};
|
1680
2086
|
showForwardDetail: import("vue").Ref<boolean>;
|
2087
|
+
currentImgId: import("vue").Ref<string | undefined>;
|
2088
|
+
showLightbox: import("vue").Ref<boolean>;
|
1681
2089
|
pageInfo: {
|
1682
2090
|
page: number;
|
1683
2091
|
hasMore: boolean;
|
@@ -1687,9 +2095,9 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1687
2095
|
'--c-tip-top': string;
|
1688
2096
|
'--c-tip-gap': string;
|
1689
2097
|
}>;
|
1690
|
-
|
1691
|
-
|
1692
|
-
|
2098
|
+
images: import("vue").ComputedRef<import("./src/types").ImageItem[]>;
|
2099
|
+
addImageItem: (list: import("./src/types").ImageItem[], item: import("../../shared/types").AnyObject) => void;
|
2100
|
+
processBlendContent: (list: import("./src/types").ImageItem[], item: import("../../shared/types").AnyObject) => void;
|
1693
2101
|
getHistoryRecord: () => Promise<void>;
|
1694
2102
|
handleSelectLabel: (event: MouseEvent, msgId: string) => void;
|
1695
2103
|
handleContextmenu: (event: MouseEvent, msgId: string) => Promise<void>;
|
@@ -1712,8 +2120,6 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1712
2120
|
reEdit: (item: import("../../shared/types").AnyObject) => void;
|
1713
2121
|
clickMergeMsg: (item: import("../../shared/types").AnyObject) => void;
|
1714
2122
|
NAvatar: any;
|
1715
|
-
NImageGroup: any;
|
1716
|
-
NImage: any;
|
1717
2123
|
NIcon: any;
|
1718
2124
|
NButtonGroup: any;
|
1719
2125
|
NButton: any;
|
@@ -1818,7 +2224,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1818
2224
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1819
2225
|
id: string;
|
1820
2226
|
userInfo: import("../../shared/types").AnyObject;
|
1821
|
-
msgList:
|
2227
|
+
msgList: {
|
2228
|
+
[x: string]: any;
|
2229
|
+
id: string;
|
2230
|
+
sessionKey: string;
|
2231
|
+
content: {
|
2232
|
+
[x: string]: any;
|
2233
|
+
chatMessageType: string;
|
2234
|
+
msg: string;
|
2235
|
+
referenceContent?: any;
|
2236
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
2237
|
+
messageTemplate?: any;
|
2238
|
+
messageTemplateData?: any;
|
2239
|
+
fileUrl?: string | undefined;
|
2240
|
+
avStatus?: string | undefined;
|
2241
|
+
};
|
2242
|
+
senderName: string;
|
2243
|
+
sendTime: string;
|
2244
|
+
sender: string;
|
2245
|
+
status: string;
|
2246
|
+
senderAvatar: string;
|
2247
|
+
__content: string;
|
2248
|
+
__time?: string | undefined;
|
2249
|
+
__sendTime?: string | undefined;
|
2250
|
+
}[];
|
1822
2251
|
currentMsg: import("../../shared/types").AnyObject;
|
1823
2252
|
isAppendMsg: boolean;
|
1824
2253
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -1870,7 +2299,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1870
2299
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1871
2300
|
id: string;
|
1872
2301
|
userInfo: import("../../shared/types").AnyObject;
|
1873
|
-
msgList:
|
2302
|
+
msgList: {
|
2303
|
+
[x: string]: any;
|
2304
|
+
id: string;
|
2305
|
+
sessionKey: string;
|
2306
|
+
content: {
|
2307
|
+
[x: string]: any;
|
2308
|
+
chatMessageType: string;
|
2309
|
+
msg: string;
|
2310
|
+
referenceContent?: any;
|
2311
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
2312
|
+
messageTemplate?: any;
|
2313
|
+
messageTemplateData?: any;
|
2314
|
+
fileUrl?: string | undefined;
|
2315
|
+
avStatus?: string | undefined;
|
2316
|
+
};
|
2317
|
+
senderName: string;
|
2318
|
+
sendTime: string;
|
2319
|
+
sender: string;
|
2320
|
+
status: string;
|
2321
|
+
senderAvatar: string;
|
2322
|
+
__content: string;
|
2323
|
+
__time?: string | undefined;
|
2324
|
+
__sendTime?: string | undefined;
|
2325
|
+
}[];
|
1874
2326
|
currentMsg: import("../../shared/types").AnyObject;
|
1875
2327
|
isAppendMsg: boolean;
|
1876
2328
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -1895,7 +2347,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1895
2347
|
isForward: boolean;
|
1896
2348
|
};
|
1897
2349
|
cssVars: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
|
1898
|
-
msgItem: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
|
2350
|
+
msgItem: import("vue").ComputedRef<import("../../shared/types").AnyObject | import("./src/types").MsgListItem>;
|
1899
2351
|
msgList: import("vue").ComputedRef<any>;
|
1900
2352
|
NModal: any;
|
1901
2353
|
NAvatar: any;
|
@@ -1916,7 +2368,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1916
2368
|
MESSAGE_TYPE: typeof import("./src/constants").MESSAGE_TYPE;
|
1917
2369
|
emojis: {
|
1918
2370
|
default: string[][];
|
1919
|
-
findEmoji(name: string):
|
2371
|
+
findEmoji(name: string): string | undefined;
|
1920
2372
|
};
|
1921
2373
|
MessageEvent: import("vue").DefineComponent<{
|
1922
2374
|
data: {
|
@@ -1935,7 +2387,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1935
2387
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1936
2388
|
id: string;
|
1937
2389
|
userInfo: import("../../shared/types").AnyObject;
|
1938
|
-
msgList:
|
2390
|
+
msgList: {
|
2391
|
+
[x: string]: any;
|
2392
|
+
id: string;
|
2393
|
+
sessionKey: string;
|
2394
|
+
content: {
|
2395
|
+
[x: string]: any;
|
2396
|
+
chatMessageType: string;
|
2397
|
+
msg: string;
|
2398
|
+
referenceContent?: any;
|
2399
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
2400
|
+
messageTemplate?: any;
|
2401
|
+
messageTemplateData?: any;
|
2402
|
+
fileUrl?: string | undefined;
|
2403
|
+
avStatus?: string | undefined;
|
2404
|
+
};
|
2405
|
+
senderName: string;
|
2406
|
+
sendTime: string;
|
2407
|
+
sender: string;
|
2408
|
+
status: string;
|
2409
|
+
senderAvatar: string;
|
2410
|
+
__content: string;
|
2411
|
+
__time?: string | undefined;
|
2412
|
+
__sendTime?: string | undefined;
|
2413
|
+
}[];
|
1939
2414
|
currentMsg: import("../../shared/types").AnyObject;
|
1940
2415
|
isAppendMsg: boolean;
|
1941
2416
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -2017,7 +2492,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2017
2492
|
NTooltip: any;
|
2018
2493
|
emojis: {
|
2019
2494
|
default: string[][];
|
2020
|
-
findEmoji(name: string):
|
2495
|
+
findEmoji(name: string): string | undefined;
|
2021
2496
|
};
|
2022
2497
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:show"[], "update:show", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
2023
2498
|
id: {
|
@@ -2034,7 +2509,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2034
2509
|
}>;
|
2035
2510
|
emojis: {
|
2036
2511
|
default: string[][];
|
2037
|
-
findEmoji(name: string):
|
2512
|
+
findEmoji(name: string): string | undefined;
|
2038
2513
|
};
|
2039
2514
|
ContextMenu: import("vue").DefineComponent<{
|
2040
2515
|
type: {
|
@@ -2137,7 +2612,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2137
2612
|
currentSessionItem: import("../../shared/types").AnyObject;
|
2138
2613
|
id: string;
|
2139
2614
|
userInfo: import("../../shared/types").AnyObject;
|
2140
|
-
msgList:
|
2615
|
+
msgList: {
|
2616
|
+
[x: string]: any;
|
2617
|
+
id: string;
|
2618
|
+
sessionKey: string;
|
2619
|
+
content: {
|
2620
|
+
[x: string]: any;
|
2621
|
+
chatMessageType: string;
|
2622
|
+
msg: string;
|
2623
|
+
referenceContent?: any;
|
2624
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
2625
|
+
messageTemplate?: any;
|
2626
|
+
messageTemplateData?: any;
|
2627
|
+
fileUrl?: string | undefined;
|
2628
|
+
avStatus?: string | undefined;
|
2629
|
+
};
|
2630
|
+
senderName: string;
|
2631
|
+
sendTime: string;
|
2632
|
+
sender: string;
|
2633
|
+
status: string;
|
2634
|
+
senderAvatar: string;
|
2635
|
+
__content: string;
|
2636
|
+
__time?: string | undefined;
|
2637
|
+
__sendTime?: string | undefined;
|
2638
|
+
}[];
|
2141
2639
|
currentMsg: import("../../shared/types").AnyObject;
|
2142
2640
|
isAppendMsg: boolean;
|
2143
2641
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -2278,7 +2776,107 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2278
2776
|
CallOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2279
2777
|
VideocamOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2280
2778
|
DocumentSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2281
|
-
|
2779
|
+
ImageLightbox: import("vue").DefineComponent<{
|
2780
|
+
images: {
|
2781
|
+
type: import("vue").PropType<import("./src/types").ImageItem[]>;
|
2782
|
+
default: () => never[];
|
2783
|
+
};
|
2784
|
+
visible: {
|
2785
|
+
type: BooleanConstructor;
|
2786
|
+
};
|
2787
|
+
currentId: {
|
2788
|
+
type: StringConstructor;
|
2789
|
+
default: string;
|
2790
|
+
};
|
2791
|
+
}, {
|
2792
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
2793
|
+
images: {
|
2794
|
+
type: import("vue").PropType<import("./src/types").ImageItem[]>;
|
2795
|
+
default: () => never[];
|
2796
|
+
};
|
2797
|
+
visible: {
|
2798
|
+
type: BooleanConstructor;
|
2799
|
+
};
|
2800
|
+
currentId: {
|
2801
|
+
type: StringConstructor;
|
2802
|
+
default: string;
|
2803
|
+
};
|
2804
|
+
}>> & {
|
2805
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
2806
|
+
"onUpdate:currentId"?: ((...args: any[]) => any) | undefined;
|
2807
|
+
}>>;
|
2808
|
+
emit: (event: "update:visible" | "update:currentId", ...args: any[]) => void;
|
2809
|
+
imageEl: import("vue").Ref<HTMLImageElement | null>;
|
2810
|
+
naturalSize: import("vue").Ref<{
|
2811
|
+
width: number;
|
2812
|
+
height: number;
|
2813
|
+
}>;
|
2814
|
+
scale: import("vue").Ref<number>;
|
2815
|
+
rotation: import("vue").Ref<number>;
|
2816
|
+
isDragging: import("vue").Ref<boolean>;
|
2817
|
+
offset: import("vue").Ref<{
|
2818
|
+
x: number;
|
2819
|
+
y: number;
|
2820
|
+
}>;
|
2821
|
+
lastMouse: import("vue").Ref<{
|
2822
|
+
x: number;
|
2823
|
+
y: number;
|
2824
|
+
}>;
|
2825
|
+
idToIndexMap: import("vue").ComputedRef<Map<string, number>>;
|
2826
|
+
currentIndex: import("vue").ComputedRef<number>;
|
2827
|
+
currentImageData: import("vue").ComputedRef<import("./src/types").ImageItem>;
|
2828
|
+
hasNext: import("vue").ComputedRef<boolean>;
|
2829
|
+
hasPrev: import("vue").ComputedRef<boolean>;
|
2830
|
+
imageStyle: import("vue").ComputedRef<{
|
2831
|
+
left: string;
|
2832
|
+
top: string;
|
2833
|
+
transform: string;
|
2834
|
+
cursor: string;
|
2835
|
+
transition: string;
|
2836
|
+
}>;
|
2837
|
+
resetImageState: () => void;
|
2838
|
+
close: () => void;
|
2839
|
+
nextImage: () => void;
|
2840
|
+
prevImage: () => void;
|
2841
|
+
rotate: (degrees: number) => void;
|
2842
|
+
zoomIn: () => void;
|
2843
|
+
zoomOut: () => void;
|
2844
|
+
resetZoom: () => void;
|
2845
|
+
startDrag: (e: MouseEvent) => void;
|
2846
|
+
onDragMove: (e: MouseEvent) => void;
|
2847
|
+
endDrag: () => void;
|
2848
|
+
handleWheel: (e: WheelEvent) => void;
|
2849
|
+
handleImageLoad: () => void;
|
2850
|
+
download: () => void;
|
2851
|
+
Close: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2852
|
+
PlaySkipBackOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2853
|
+
PlaySkipForwardOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2854
|
+
DownloadOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2855
|
+
RefreshOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2856
|
+
AddOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2857
|
+
RemoveSharp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2858
|
+
NButton: any;
|
2859
|
+
NIcon: any;
|
2860
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:visible" | "update:currentId")[], "update:visible" | "update:currentId", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
2861
|
+
images: {
|
2862
|
+
type: import("vue").PropType<import("./src/types").ImageItem[]>;
|
2863
|
+
default: () => never[];
|
2864
|
+
};
|
2865
|
+
visible: {
|
2866
|
+
type: BooleanConstructor;
|
2867
|
+
};
|
2868
|
+
currentId: {
|
2869
|
+
type: StringConstructor;
|
2870
|
+
default: string;
|
2871
|
+
};
|
2872
|
+
}>> & {
|
2873
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
2874
|
+
"onUpdate:currentId"?: ((...args: any[]) => any) | undefined;
|
2875
|
+
}, {
|
2876
|
+
visible: boolean;
|
2877
|
+
images: import("./src/types").ImageItem[];
|
2878
|
+
currentId: string;
|
2879
|
+
}>;
|
2282
2880
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2283
2881
|
ChatFooter: import("vue").DefineComponent<{}, {
|
2284
2882
|
SPACE_PLACEHOLDER: string;
|
@@ -2288,7 +2886,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2288
2886
|
currentSessionItem: import("../../shared/types").AnyObject;
|
2289
2887
|
id: string;
|
2290
2888
|
userInfo: import("../../shared/types").AnyObject;
|
2291
|
-
msgList:
|
2889
|
+
msgList: {
|
2890
|
+
[x: string]: any;
|
2891
|
+
id: string;
|
2892
|
+
sessionKey: string;
|
2893
|
+
content: {
|
2894
|
+
[x: string]: any;
|
2895
|
+
chatMessageType: string;
|
2896
|
+
msg: string;
|
2897
|
+
referenceContent?: any;
|
2898
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
2899
|
+
messageTemplate?: any;
|
2900
|
+
messageTemplateData?: any;
|
2901
|
+
fileUrl?: string | undefined;
|
2902
|
+
avStatus?: string | undefined;
|
2903
|
+
};
|
2904
|
+
senderName: string;
|
2905
|
+
sendTime: string;
|
2906
|
+
sender: string;
|
2907
|
+
status: string;
|
2908
|
+
senderAvatar: string;
|
2909
|
+
__content: string;
|
2910
|
+
__time?: string | undefined;
|
2911
|
+
__sendTime?: string | undefined;
|
2912
|
+
}[];
|
2292
2913
|
currentMsg: import("../../shared/types").AnyObject;
|
2293
2914
|
isAppendMsg: boolean;
|
2294
2915
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -2340,8 +2961,13 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2340
2961
|
handleInput: () => void;
|
2341
2962
|
selectEmoji: (name: string) => void;
|
2342
2963
|
insertSpace: () => void;
|
2343
|
-
doUpdateFile: (file: File) => Promise<
|
2344
|
-
fileChange: (options: import("./src/types").FileOptions
|
2964
|
+
doUpdateFile: (file: File) => Promise<any>;
|
2965
|
+
fileChange: (options: import("./src/types").FileOptions | {
|
2966
|
+
file: {
|
2967
|
+
file: File;
|
2968
|
+
name: string;
|
2969
|
+
};
|
2970
|
+
}, chatMessageType: import("./src/constants").MESSAGE_TYPE) => Promise<void>;
|
2345
2971
|
handleMsgSend: () => Promise<void>;
|
2346
2972
|
removeSpace: () => void;
|
2347
2973
|
doSendMessage: (contentInfo: import("../../shared/types").AnyObject) => Promise<void>;
|
@@ -2351,6 +2977,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2351
2977
|
remark: string;
|
2352
2978
|
}, type?: string) => void;
|
2353
2979
|
handlecancelForward: () => void;
|
2980
|
+
handleFilePaste: (event: ClipboardEvent) => void;
|
2354
2981
|
NButton: any;
|
2355
2982
|
NPopover: any;
|
2356
2983
|
NTooltip: any;
|
@@ -2421,7 +3048,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2421
3048
|
currentSessionItem: import("../../shared/types").AnyObject;
|
2422
3049
|
id: string;
|
2423
3050
|
userInfo: import("../../shared/types").AnyObject;
|
2424
|
-
msgList:
|
3051
|
+
msgList: {
|
3052
|
+
[x: string]: any;
|
3053
|
+
id: string;
|
3054
|
+
sessionKey: string;
|
3055
|
+
content: {
|
3056
|
+
[x: string]: any;
|
3057
|
+
chatMessageType: string;
|
3058
|
+
msg: string;
|
3059
|
+
referenceContent?: any;
|
3060
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
3061
|
+
messageTemplate?: any;
|
3062
|
+
messageTemplateData?: any;
|
3063
|
+
fileUrl?: string | undefined;
|
3064
|
+
avStatus?: string | undefined;
|
3065
|
+
};
|
3066
|
+
senderName: string;
|
3067
|
+
sendTime: string;
|
3068
|
+
sender: string;
|
3069
|
+
status: string;
|
3070
|
+
senderAvatar: string;
|
3071
|
+
__content: string;
|
3072
|
+
__time?: string | undefined;
|
3073
|
+
__sendTime?: string | undefined;
|
3074
|
+
}[];
|
2425
3075
|
currentMsg: import("../../shared/types").AnyObject;
|
2426
3076
|
isAppendMsg: boolean;
|
2427
3077
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -2553,13 +3203,17 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2553
3203
|
}>;
|
2554
3204
|
emojis: {
|
2555
3205
|
default: string[][];
|
2556
|
-
findEmoji(name: string):
|
3206
|
+
findEmoji(name: string): string | undefined;
|
2557
3207
|
};
|
2558
3208
|
MESSAGE_TYPE: typeof import("./src/constants").MESSAGE_TYPE;
|
2559
3209
|
CloseCircleOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2560
3210
|
CallOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2561
3211
|
VideocamOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2562
3212
|
CloseOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
3213
|
+
FolderOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
3214
|
+
ImageOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
3215
|
+
HappyOutline: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
3216
|
+
ThumbsUp: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2563
3217
|
simplifyMessage: typeof import("./src/utils").simplifyMessage;
|
2564
3218
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
2565
3219
|
ChatSearch: import("vue").DefineComponent<{}, {
|
@@ -2574,7 +3228,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2574
3228
|
currentSessionItem: import("../../shared/types").AnyObject;
|
2575
3229
|
id: string;
|
2576
3230
|
userInfo: import("../../shared/types").AnyObject;
|
2577
|
-
msgList:
|
3231
|
+
msgList: {
|
3232
|
+
[x: string]: any;
|
3233
|
+
id: string;
|
3234
|
+
sessionKey: string;
|
3235
|
+
content: {
|
3236
|
+
[x: string]: any;
|
3237
|
+
chatMessageType: string;
|
3238
|
+
msg: string;
|
3239
|
+
referenceContent?: any;
|
3240
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
3241
|
+
messageTemplate?: any;
|
3242
|
+
messageTemplateData?: any;
|
3243
|
+
fileUrl?: string | undefined;
|
3244
|
+
avStatus?: string | undefined;
|
3245
|
+
};
|
3246
|
+
senderName: string;
|
3247
|
+
sendTime: string;
|
3248
|
+
sender: string;
|
3249
|
+
status: string;
|
3250
|
+
senderAvatar: string;
|
3251
|
+
__content: string;
|
3252
|
+
__time?: string | undefined;
|
3253
|
+
__sendTime?: string | undefined;
|
3254
|
+
}[];
|
2578
3255
|
currentMsg: import("../../shared/types").AnyObject;
|
2579
3256
|
isAppendMsg: boolean;
|
2580
3257
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -2761,7 +3438,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2761
3438
|
currentSessionItem: import("../../shared/types").AnyObject;
|
2762
3439
|
id: string;
|
2763
3440
|
userInfo: import("../../shared/types").AnyObject;
|
2764
|
-
msgList:
|
3441
|
+
msgList: {
|
3442
|
+
[x: string]: any;
|
3443
|
+
id: string;
|
3444
|
+
sessionKey: string;
|
3445
|
+
content: {
|
3446
|
+
[x: string]: any;
|
3447
|
+
chatMessageType: string;
|
3448
|
+
msg: string;
|
3449
|
+
referenceContent?: any;
|
3450
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
3451
|
+
messageTemplate?: any;
|
3452
|
+
messageTemplateData?: any;
|
3453
|
+
fileUrl?: string | undefined;
|
3454
|
+
avStatus?: string | undefined;
|
3455
|
+
};
|
3456
|
+
senderName: string;
|
3457
|
+
sendTime: string;
|
3458
|
+
sender: string;
|
3459
|
+
status: string;
|
3460
|
+
senderAvatar: string;
|
3461
|
+
__content: string;
|
3462
|
+
__time?: string | undefined;
|
3463
|
+
__sendTime?: string | undefined;
|
3464
|
+
}[];
|
2765
3465
|
currentMsg: import("../../shared/types").AnyObject;
|
2766
3466
|
isAppendMsg: boolean;
|
2767
3467
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -2902,7 +3602,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2902
3602
|
currentSessionItem: import("../../shared/types").AnyObject;
|
2903
3603
|
id: string;
|
2904
3604
|
userInfo: import("../../shared/types").AnyObject;
|
2905
|
-
msgList:
|
3605
|
+
msgList: {
|
3606
|
+
[x: string]: any;
|
3607
|
+
id: string;
|
3608
|
+
sessionKey: string;
|
3609
|
+
content: {
|
3610
|
+
[x: string]: any;
|
3611
|
+
chatMessageType: string;
|
3612
|
+
msg: string;
|
3613
|
+
referenceContent?: any;
|
3614
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
3615
|
+
messageTemplate?: any;
|
3616
|
+
messageTemplateData?: any;
|
3617
|
+
fileUrl?: string | undefined;
|
3618
|
+
avStatus?: string | undefined;
|
3619
|
+
};
|
3620
|
+
senderName: string;
|
3621
|
+
sendTime: string;
|
3622
|
+
sender: string;
|
3623
|
+
status: string;
|
3624
|
+
senderAvatar: string;
|
3625
|
+
__content: string;
|
3626
|
+
__time?: string | undefined;
|
3627
|
+
__sendTime?: string | undefined;
|
3628
|
+
}[];
|
2906
3629
|
currentMsg: import("../../shared/types").AnyObject;
|
2907
3630
|
isAppendMsg: boolean;
|
2908
3631
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -2994,7 +3717,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2994
3717
|
currentSessionItem: import("../../shared/types").AnyObject;
|
2995
3718
|
id: string;
|
2996
3719
|
userInfo: import("../../shared/types").AnyObject;
|
2997
|
-
msgList:
|
3720
|
+
msgList: {
|
3721
|
+
[x: string]: any;
|
3722
|
+
id: string;
|
3723
|
+
sessionKey: string;
|
3724
|
+
content: {
|
3725
|
+
[x: string]: any;
|
3726
|
+
chatMessageType: string;
|
3727
|
+
msg: string;
|
3728
|
+
referenceContent?: any;
|
3729
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
3730
|
+
messageTemplate?: any;
|
3731
|
+
messageTemplateData?: any;
|
3732
|
+
fileUrl?: string | undefined;
|
3733
|
+
avStatus?: string | undefined;
|
3734
|
+
};
|
3735
|
+
senderName: string;
|
3736
|
+
sendTime: string;
|
3737
|
+
sender: string;
|
3738
|
+
status: string;
|
3739
|
+
senderAvatar: string;
|
3740
|
+
__content: string;
|
3741
|
+
__time?: string | undefined;
|
3742
|
+
__sendTime?: string | undefined;
|
3743
|
+
}[];
|
2998
3744
|
currentMsg: import("../../shared/types").AnyObject;
|
2999
3745
|
isAppendMsg: boolean;
|
3000
3746
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -3146,7 +3892,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
3146
3892
|
currentSessionItem: import("../../shared/types").AnyObject;
|
3147
3893
|
id: string;
|
3148
3894
|
userInfo: import("../../shared/types").AnyObject;
|
3149
|
-
msgList:
|
3895
|
+
msgList: {
|
3896
|
+
[x: string]: any;
|
3897
|
+
id: string;
|
3898
|
+
sessionKey: string;
|
3899
|
+
content: {
|
3900
|
+
[x: string]: any;
|
3901
|
+
chatMessageType: string;
|
3902
|
+
msg: string;
|
3903
|
+
referenceContent?: any;
|
3904
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
3905
|
+
messageTemplate?: any;
|
3906
|
+
messageTemplateData?: any;
|
3907
|
+
fileUrl?: string | undefined;
|
3908
|
+
avStatus?: string | undefined;
|
3909
|
+
};
|
3910
|
+
senderName: string;
|
3911
|
+
sendTime: string;
|
3912
|
+
sender: string;
|
3913
|
+
status: string;
|
3914
|
+
senderAvatar: string;
|
3915
|
+
__content: string;
|
3916
|
+
__time?: string | undefined;
|
3917
|
+
__sendTime?: string | undefined;
|
3918
|
+
}[];
|
3150
3919
|
currentMsg: import("../../shared/types").AnyObject;
|
3151
3920
|
isAppendMsg: boolean;
|
3152
3921
|
sessionList: import("../../shared/types").AnyObject[];
|
@@ -3291,7 +4060,30 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
3291
4060
|
currentSessionItem: import("../../shared/types").AnyObject;
|
3292
4061
|
id: string;
|
3293
4062
|
userInfo: import("../../shared/types").AnyObject;
|
3294
|
-
msgList:
|
4063
|
+
msgList: {
|
4064
|
+
[x: string]: any;
|
4065
|
+
id: string;
|
4066
|
+
sessionKey: string;
|
4067
|
+
content: {
|
4068
|
+
[x: string]: any;
|
4069
|
+
chatMessageType: string;
|
4070
|
+
msg: string;
|
4071
|
+
referenceContent?: any;
|
4072
|
+
forwardMessageList?: import("../../shared/types").AnyObject[] | undefined;
|
4073
|
+
messageTemplate?: any;
|
4074
|
+
messageTemplateData?: any;
|
4075
|
+
fileUrl?: string | undefined;
|
4076
|
+
avStatus?: string | undefined;
|
4077
|
+
};
|
4078
|
+
senderName: string;
|
4079
|
+
sendTime: string;
|
4080
|
+
sender: string;
|
4081
|
+
status: string;
|
4082
|
+
senderAvatar: string;
|
4083
|
+
__content: string;
|
4084
|
+
__time?: string | undefined;
|
4085
|
+
__sendTime?: string | undefined;
|
4086
|
+
}[];
|
3295
4087
|
currentMsg: import("../../shared/types").AnyObject;
|
3296
4088
|
isAppendMsg: boolean;
|
3297
4089
|
sessionList: import("../../shared/types").AnyObject[];
|