cnhis-design-vue 3.2.15-beta.5 → 3.2.15-beta.9
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/es/components/classification/src/index.vue2.js +1 -1
- package/es/components/fabric-chart/src/hooks/surgicalAnesthesia/useTop.js +1 -1
- package/es/components/fabric-chart/src/hooks/useDraw.js +1 -1
- package/es/components/iho-chat/index.d.ts +256 -18
- package/es/components/iho-chat/src/Index.vue.d.ts +256 -18
- package/es/components/iho-chat/src/Index.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatAdd.vue.d.ts +1 -0
- package/es/components/iho-chat/src/components/ChatFile.vue.d.ts +2 -0
- package/es/components/iho-chat/src/components/ChatFooter.vue.d.ts +2 -0
- package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +9 -0
- package/es/components/iho-chat/src/components/ChatMain.vue.d.ts +3 -0
- package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +1 -0
- package/es/components/iho-chat/src/components/ChatSearch.vue.d.ts +34 -34
- package/es/components/iho-chat/src/components/ChatSearch.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatSet.vue.d.ts +3 -0
- package/es/components/iho-chat/src/components/MultipleVideo.vue.d.ts +2 -0
- package/es/components/iho-chat/src/components/PersonProfile.vue.d.ts +1 -0
- package/es/components/iho-chat/src/components/SiderList.vue.d.ts +206 -3
- package/es/components/iho-chat/src/components/SiderList.vue2.js +1 -1
- package/es/components/iho-chat/src/components/Video.vue.d.ts +1 -0
- package/es/components/iho-chat/src/components/userItemRender.d.ts +18 -0
- package/es/components/iho-chat/src/components/userItemRender.js +1 -0
- package/es/components/iho-chat/src/hooks/useData.d.ts +2 -0
- package/es/components/iho-chat/src/hooks/useData.js +1 -1
- package/es/components/iho-chat/src/hooks/useVideo.d.ts +1 -0
- package/es/components/iho-chat/src/types/index.d.ts +2 -0
- package/es/components/iho-chat/style/index.css +1 -1
- package/es/components/index.css +1 -1
- package/es/shared/hooks/useLevelSearchCascader.js +1 -1
- package/es/shared/package.json.js +1 -1
- package/package.json +2 -2
@@ -31,6 +31,10 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
31
31
|
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
32
32
|
default: () => {};
|
33
33
|
};
|
34
|
+
filterable: {
|
35
|
+
type: BooleanConstructor;
|
36
|
+
default: boolean;
|
37
|
+
};
|
34
38
|
}, {
|
35
39
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
36
40
|
token: {
|
@@ -64,6 +68,10 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
64
68
|
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
65
69
|
default: () => {};
|
66
70
|
};
|
71
|
+
filterable: {
|
72
|
+
type: BooleanConstructor;
|
73
|
+
default: boolean;
|
74
|
+
};
|
67
75
|
}>> & {
|
68
76
|
"onTemplate-click"?: ((...args: any[]) => any) | undefined;
|
69
77
|
"onUnread-message-update"?: ((...args: any[]) => any) | undefined;
|
@@ -76,6 +84,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
76
84
|
cssVars: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
|
77
85
|
stompClient: import("vue").Ref<import("./src/utils/chatSock").ChatSock | undefined>;
|
78
86
|
state: {
|
87
|
+
filterable: boolean;
|
79
88
|
orgId: string | number;
|
80
89
|
currentSessionItem: import("../../shared/types").AnyObject;
|
81
90
|
id: string;
|
@@ -119,6 +128,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
119
128
|
};
|
120
129
|
cssVars: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
|
121
130
|
state: {
|
131
|
+
filterable: boolean;
|
122
132
|
orgId: string | number;
|
123
133
|
currentSessionItem: import("../../shared/types").AnyObject;
|
124
134
|
id: string;
|
@@ -155,8 +165,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
155
165
|
unreadSessionKeys: string[];
|
156
166
|
flexWidth: import("vue").Ref<number>;
|
157
167
|
listBoxRef: import("vue").Ref<HTMLElement | undefined>;
|
158
|
-
|
159
|
-
filterList: import("vue").Ref<{
|
168
|
+
filterListByTag: import("vue").Ref<{
|
160
169
|
label: string;
|
161
170
|
key: string;
|
162
171
|
}[]>;
|
@@ -165,7 +174,15 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
165
174
|
menuPosition: any;
|
166
175
|
sessionId: import("vue").Ref<any>;
|
167
176
|
currentFilterKey: import("vue").Ref<string>;
|
177
|
+
datePickerRef: import("vue").Ref<any>;
|
178
|
+
inputRef: import("vue").Ref<any>;
|
179
|
+
dateRange: import("vue").Ref<any>;
|
180
|
+
keyword: import("vue").Ref<string>;
|
181
|
+
showSearch: import("vue").Ref<boolean>;
|
182
|
+
filterList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
|
183
|
+
handleInput: () => void;
|
168
184
|
state: {
|
185
|
+
filterable: boolean;
|
169
186
|
orgId: string | number;
|
170
187
|
currentSessionItem: import("../../shared/types").AnyObject;
|
171
188
|
id: string;
|
@@ -196,10 +213,16 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
196
213
|
showSession: (item: import("../../shared/types").AnyObject, currentKey?: string) => boolean | undefined;
|
197
214
|
handleContextmenu: (event: MouseEvent, id: string) => Promise<void>;
|
198
215
|
handleSelect: (key: string, session: import("../../shared/types").AnyObject) => Promise<void>;
|
199
|
-
|
216
|
+
handleUpdateShow: (value: boolean) => void;
|
217
|
+
handleClickoutside: (e: Event) => void;
|
218
|
+
handleUpdateDate: (value: string[]) => void;
|
219
|
+
handleSearch: () => void;
|
200
220
|
NBadge: any;
|
201
221
|
NAvatar: any;
|
222
|
+
NInput: any;
|
202
223
|
NTag: any;
|
224
|
+
NIcon: any;
|
225
|
+
NPopover: any;
|
203
226
|
ContextMenu: import("vue").DefineComponent<{
|
204
227
|
type: {
|
205
228
|
type: StringConstructor;
|
@@ -243,9 +266,200 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
243
266
|
};
|
244
267
|
formatTime: typeof import("./src/utils").formatTime;
|
245
268
|
STATUS: typeof import("./src/constants").STATUS;
|
269
|
+
CDatePicker: SFCWithInstall<import("vue").DefineComponent<{
|
270
|
+
updateUnchangedValue: {
|
271
|
+
type: BooleanConstructor;
|
272
|
+
};
|
273
|
+
onConfirm: {
|
274
|
+
type: FunctionConstructor;
|
275
|
+
};
|
276
|
+
formattedValue: {
|
277
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
278
|
+
};
|
279
|
+
placeholder: {
|
280
|
+
type: StringConstructor;
|
281
|
+
};
|
282
|
+
allowedInvalidValue: {
|
283
|
+
type: StringConstructor;
|
284
|
+
};
|
285
|
+
to: {
|
286
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
287
|
+
default: string;
|
288
|
+
};
|
289
|
+
holidays: {
|
290
|
+
type: import("vue").PropType<Date[]>;
|
291
|
+
default: () => never[];
|
292
|
+
};
|
293
|
+
type: {
|
294
|
+
type: StringConstructor;
|
295
|
+
default: string;
|
296
|
+
};
|
297
|
+
}, {
|
298
|
+
attrs: {
|
299
|
+
[x: string]: unknown;
|
300
|
+
};
|
301
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
302
|
+
updateUnchangedValue: {
|
303
|
+
type: BooleanConstructor;
|
304
|
+
};
|
305
|
+
onConfirm: {
|
306
|
+
type: FunctionConstructor;
|
307
|
+
};
|
308
|
+
formattedValue: {
|
309
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
310
|
+
};
|
311
|
+
placeholder: {
|
312
|
+
type: StringConstructor;
|
313
|
+
};
|
314
|
+
allowedInvalidValue: {
|
315
|
+
type: StringConstructor;
|
316
|
+
};
|
317
|
+
to: {
|
318
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
319
|
+
default: string;
|
320
|
+
};
|
321
|
+
holidays: {
|
322
|
+
type: import("vue").PropType<Date[]>;
|
323
|
+
default: () => never[];
|
324
|
+
};
|
325
|
+
type: {
|
326
|
+
type: StringConstructor;
|
327
|
+
default: string;
|
328
|
+
};
|
329
|
+
}>> & {
|
330
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
331
|
+
}>>;
|
332
|
+
emit: (event: "update:formatted-value", ...args: any[]) => void;
|
333
|
+
datePickerRef: import("vue").Ref<import("../../shared/types").AnyObject | null>;
|
334
|
+
panelInstRef: import("vue").Ref<null>;
|
335
|
+
placeholderRef: import("vue").Ref<any>;
|
336
|
+
oldValue: string;
|
337
|
+
currentFormattedValue: import("vue").WritableComputedRef<(string | [string, string]) | null | undefined>;
|
338
|
+
isDateTime: import("vue").ComputedRef<boolean>;
|
339
|
+
formatRef: import("vue").ComputedRef<string>;
|
340
|
+
panelFormatRef: import("vue").ComputedRef<string | [string, string]>;
|
341
|
+
focus: () => any;
|
342
|
+
blur: () => any;
|
343
|
+
handleConfirm: (target: HTMLInputElement) => void;
|
344
|
+
onUpdateShow: (show: boolean) => Promise<void>;
|
345
|
+
watchers: import("../../shared/types").AnyFn[];
|
346
|
+
stopWatcher: () => void;
|
347
|
+
setHoliday: (show: boolean) => Promise<void>;
|
348
|
+
onConfirm: (...args: any[]) => Promise<void>;
|
349
|
+
isAllowedInvalidValue: (value: (string | [string, string]) | null | undefined) => boolean | "" | undefined;
|
350
|
+
setShortcutValue: (type: "month" | "week") => Promise<void>;
|
351
|
+
NDatePicker: any;
|
352
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:formatted-value"[], "update:formatted-value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
353
|
+
updateUnchangedValue: {
|
354
|
+
type: BooleanConstructor;
|
355
|
+
};
|
356
|
+
onConfirm: {
|
357
|
+
type: FunctionConstructor;
|
358
|
+
};
|
359
|
+
formattedValue: {
|
360
|
+
type: import("vue").PropType<(string | [string, string]) | null | undefined>;
|
361
|
+
};
|
362
|
+
placeholder: {
|
363
|
+
type: StringConstructor;
|
364
|
+
};
|
365
|
+
allowedInvalidValue: {
|
366
|
+
type: StringConstructor;
|
367
|
+
};
|
368
|
+
to: {
|
369
|
+
type: import("vue").PropType<string | false | HTMLElement>;
|
370
|
+
default: string;
|
371
|
+
};
|
372
|
+
holidays: {
|
373
|
+
type: import("vue").PropType<Date[]>;
|
374
|
+
default: () => never[];
|
375
|
+
};
|
376
|
+
type: {
|
377
|
+
type: StringConstructor;
|
378
|
+
default: string;
|
379
|
+
};
|
380
|
+
}>> & {
|
381
|
+
"onUpdate:formatted-value"?: ((...args: any[]) => any) | undefined;
|
382
|
+
}, {
|
383
|
+
type: string;
|
384
|
+
updateUnchangedValue: boolean;
|
385
|
+
to: string | false | HTMLElement;
|
386
|
+
holidays: Date[];
|
387
|
+
}>>;
|
388
|
+
SearchOutline: 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<{}>>, {}>;
|
389
|
+
userItemRender: import("vue").DefineComponent<{
|
390
|
+
item: {
|
391
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
392
|
+
default: () => {};
|
393
|
+
};
|
394
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "item-click"[], "item-click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
395
|
+
item: {
|
396
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
397
|
+
default: () => {};
|
398
|
+
};
|
399
|
+
}>> & {
|
400
|
+
"onItem-click"?: ((...args: any[]) => any) | undefined;
|
401
|
+
}, {
|
402
|
+
item: import("../../shared/types").AnyObject;
|
403
|
+
}>;
|
404
|
+
DefaultPage: SFCWithInstall<import("vue").DefineComponent<{
|
405
|
+
type: {
|
406
|
+
type: StringConstructor;
|
407
|
+
default: string;
|
408
|
+
};
|
409
|
+
config: {
|
410
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
411
|
+
default: () => {
|
412
|
+
title: string;
|
413
|
+
content: string;
|
414
|
+
};
|
415
|
+
};
|
416
|
+
}, {
|
417
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
418
|
+
type: {
|
419
|
+
type: StringConstructor;
|
420
|
+
default: string;
|
421
|
+
};
|
422
|
+
config: {
|
423
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
424
|
+
default: () => {
|
425
|
+
title: string;
|
426
|
+
content: string;
|
427
|
+
};
|
428
|
+
};
|
429
|
+
}>> & {
|
430
|
+
onReloadPage?: ((...args: any[]) => any) | undefined;
|
431
|
+
}>>;
|
432
|
+
emit: (event: "reloadPage", ...args: any[]) => void;
|
433
|
+
configResult: import("vue").ComputedRef<{
|
434
|
+
title: string;
|
435
|
+
content: string;
|
436
|
+
img: string;
|
437
|
+
}>;
|
438
|
+
reloadPage: () => void;
|
439
|
+
NIcon: any;
|
440
|
+
Refresh: 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<{}>>, {}>;
|
441
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "reloadPage"[], "reloadPage", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
442
|
+
type: {
|
443
|
+
type: StringConstructor;
|
444
|
+
default: string;
|
445
|
+
};
|
446
|
+
config: {
|
447
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
448
|
+
default: () => {
|
449
|
+
title: string;
|
450
|
+
content: string;
|
451
|
+
};
|
452
|
+
};
|
453
|
+
}>> & {
|
454
|
+
onReloadPage?: ((...args: any[]) => any) | undefined;
|
455
|
+
}, {
|
456
|
+
type: string;
|
457
|
+
config: import("../../shared/types").AnyObject;
|
458
|
+
}>>;
|
246
459
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
247
460
|
ChatHeader: import("vue").DefineComponent<{}, {
|
248
461
|
state: {
|
462
|
+
filterable: boolean;
|
249
463
|
orgId: string | number;
|
250
464
|
currentSessionItem: import("../../shared/types").AnyObject;
|
251
465
|
id: string;
|
@@ -315,6 +529,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
315
529
|
}>>;
|
316
530
|
emit: (event: "close", ...args: any[]) => void;
|
317
531
|
state: {
|
532
|
+
filterable: boolean;
|
318
533
|
orgId: string | number;
|
319
534
|
currentSessionItem: import("../../shared/types").AnyObject;
|
320
535
|
id: string;
|
@@ -381,6 +596,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
381
596
|
[x: string]: unknown;
|
382
597
|
};
|
383
598
|
state: {
|
599
|
+
filterable: boolean;
|
384
600
|
orgId: string | number;
|
385
601
|
currentSessionItem: import("../../shared/types").AnyObject;
|
386
602
|
id: string;
|
@@ -455,6 +671,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
455
671
|
}>>;
|
456
672
|
emit: (event: "close", ...args: any[]) => void;
|
457
673
|
state: {
|
674
|
+
filterable: boolean;
|
458
675
|
orgId: string | number;
|
459
676
|
currentSessionItem: import("../../shared/types").AnyObject;
|
460
677
|
id: string;
|
@@ -570,6 +787,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
570
787
|
}>>;
|
571
788
|
emit: (event: "comfirm", ...args: any[]) => void;
|
572
789
|
state: {
|
790
|
+
filterable: boolean;
|
573
791
|
orgId: string | number;
|
574
792
|
currentSessionItem: import("../../shared/types").AnyObject;
|
575
793
|
id: string;
|
@@ -681,6 +899,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
681
899
|
}>> & {}>>;
|
682
900
|
cssVars: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
|
683
901
|
state: {
|
902
|
+
filterable: boolean;
|
684
903
|
orgId: string | number;
|
685
904
|
currentSessionItem: import("../../shared/types").AnyObject;
|
686
905
|
id: string;
|
@@ -788,6 +1007,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
788
1007
|
}>>;
|
789
1008
|
emit: (event: "comfirm", ...args: any[]) => void;
|
790
1009
|
state: {
|
1010
|
+
filterable: boolean;
|
791
1011
|
orgId: string | number;
|
792
1012
|
currentSessionItem: import("../../shared/types").AnyObject;
|
793
1013
|
id: string;
|
@@ -905,6 +1125,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
905
1125
|
};
|
906
1126
|
}>> & {}>>;
|
907
1127
|
state: {
|
1128
|
+
filterable: boolean;
|
908
1129
|
orgId: string | number;
|
909
1130
|
currentSessionItem: import("../../shared/types").AnyObject;
|
910
1131
|
id: string;
|
@@ -1137,6 +1358,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1137
1358
|
}>>;
|
1138
1359
|
emit: (event: "comfirm", ...args: any[]) => void;
|
1139
1360
|
state: {
|
1361
|
+
filterable: boolean;
|
1140
1362
|
orgId: string | number;
|
1141
1363
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1142
1364
|
id: string;
|
@@ -1233,6 +1455,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1233
1455
|
ChatMain: import("vue").DefineComponent<{}, {
|
1234
1456
|
chatMainRef: import("vue").Ref<HTMLElement | undefined>;
|
1235
1457
|
state: {
|
1458
|
+
filterable: boolean;
|
1236
1459
|
orgId: string | number;
|
1237
1460
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1238
1461
|
id: string;
|
@@ -1323,6 +1546,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1323
1546
|
}>>;
|
1324
1547
|
emit: (event: "close", ...args: any[]) => void;
|
1325
1548
|
state: {
|
1549
|
+
filterable: boolean;
|
1326
1550
|
orgId: string | number;
|
1327
1551
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1328
1552
|
id: string;
|
@@ -1557,6 +1781,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1557
1781
|
}>>;
|
1558
1782
|
emit: (event: "comfirm", ...args: any[]) => void;
|
1559
1783
|
state: {
|
1784
|
+
filterable: boolean;
|
1560
1785
|
orgId: string | number;
|
1561
1786
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1562
1787
|
id: string;
|
@@ -1660,6 +1885,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1660
1885
|
ChatFooter: import("vue").DefineComponent<{}, {
|
1661
1886
|
inputRef: import("vue").Ref<HTMLDivElement | undefined>;
|
1662
1887
|
state: {
|
1888
|
+
filterable: boolean;
|
1663
1889
|
orgId: string | number;
|
1664
1890
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1665
1891
|
id: string;
|
@@ -1763,6 +1989,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1763
1989
|
}>>;
|
1764
1990
|
emit: (event: "comfirm", ...args: any[]) => void;
|
1765
1991
|
state: {
|
1992
|
+
filterable: boolean;
|
1766
1993
|
orgId: string | number;
|
1767
1994
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1768
1995
|
id: string;
|
@@ -1870,6 +2097,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1870
2097
|
keyword: import("vue").Ref<string>;
|
1871
2098
|
cssVars: import("vue").ComputedRef<import("../../shared/types").AnyObject>;
|
1872
2099
|
state: {
|
2100
|
+
filterable: boolean;
|
1873
2101
|
orgId: string | number;
|
1874
2102
|
currentSessionItem: import("../../shared/types").AnyObject;
|
1875
2103
|
id: string;
|
@@ -1888,28 +2116,14 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1888
2116
|
currentGroupUser: import("../../shared/types").AnyObject[];
|
1889
2117
|
showMultipleVideo: boolean;
|
1890
2118
|
};
|
1891
|
-
openSession: (session: string | import("../../shared/types").AnyObject) => Promise<void>;
|
1892
2119
|
userList: import("vue").Ref<import("../../shared/types").AnyObject[]>;
|
1893
2120
|
handleInput: () => void;
|
1894
2121
|
currentTabValue: import("vue").Ref<string>;
|
1895
|
-
userItemRender: import("vue").DefineComponent<{
|
1896
|
-
item: {
|
1897
|
-
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
1898
|
-
default: () => {};
|
1899
|
-
};
|
1900
|
-
}, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1901
|
-
item: {
|
1902
|
-
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
1903
|
-
default: () => {};
|
1904
|
-
};
|
1905
|
-
}>>, {
|
1906
|
-
item: import("../../shared/types").AnyObject;
|
1907
|
-
}>;
|
1908
2122
|
groupList: import("vue").ComputedRef<import("../../shared/types").AnyObject[]>;
|
1909
2123
|
showNoData: import("vue").ComputedRef<boolean>;
|
1910
2124
|
showAllNoData: import("vue").ComputedRef<boolean>;
|
1911
2125
|
showGroupNoData: import("vue").ComputedRef<boolean>;
|
1912
|
-
|
2126
|
+
handleClose: () => void;
|
1913
2127
|
NPopover: any;
|
1914
2128
|
NButton: any;
|
1915
2129
|
NInput: any;
|
@@ -1973,6 +2187,21 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
1973
2187
|
type: string;
|
1974
2188
|
config: import("../../shared/types").AnyObject;
|
1975
2189
|
}>>;
|
2190
|
+
userItemRender: import("vue").DefineComponent<{
|
2191
|
+
item: {
|
2192
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
2193
|
+
default: () => {};
|
2194
|
+
};
|
2195
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "item-click"[], "item-click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
2196
|
+
item: {
|
2197
|
+
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
2198
|
+
default: () => {};
|
2199
|
+
};
|
2200
|
+
}>> & {
|
2201
|
+
"onItem-click"?: ((...args: any[]) => any) | undefined;
|
2202
|
+
}, {
|
2203
|
+
item: import("../../shared/types").AnyObject;
|
2204
|
+
}>;
|
1976
2205
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1977
2206
|
ChatAdd: import("vue").DefineComponent<{
|
1978
2207
|
title: {
|
@@ -2028,6 +2257,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2028
2257
|
}>>;
|
2029
2258
|
emit: (event: "comfirm", ...args: any[]) => void;
|
2030
2259
|
state: {
|
2260
|
+
filterable: boolean;
|
2031
2261
|
orgId: string | number;
|
2032
2262
|
currentSessionItem: import("../../shared/types").AnyObject;
|
2033
2263
|
id: string;
|
@@ -2125,6 +2355,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2125
2355
|
receiver?: string | undefined;
|
2126
2356
|
}) => Promise<void>;
|
2127
2357
|
state: {
|
2358
|
+
filterable: boolean;
|
2128
2359
|
orgId: string | number;
|
2129
2360
|
currentSessionItem: import("../../shared/types").AnyObject;
|
2130
2361
|
id: string;
|
@@ -2206,6 +2437,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2206
2437
|
name: string;
|
2207
2438
|
}[]>;
|
2208
2439
|
state: {
|
2440
|
+
filterable: boolean;
|
2209
2441
|
orgId: string | number;
|
2210
2442
|
currentSessionItem: import("../../shared/types").AnyObject;
|
2211
2443
|
id: string;
|
@@ -2323,6 +2555,7 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2323
2555
|
}>>;
|
2324
2556
|
emit: (event: "comfirm", ...args: any[]) => void;
|
2325
2557
|
state: {
|
2558
|
+
filterable: boolean;
|
2326
2559
|
orgId: string | number;
|
2327
2560
|
currentSessionItem: import("../../shared/types").AnyObject;
|
2328
2561
|
id: string;
|
@@ -2453,6 +2686,10 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2453
2686
|
type: import("vue").PropType<import("../../shared/types").AnyObject>;
|
2454
2687
|
default: () => {};
|
2455
2688
|
};
|
2689
|
+
filterable: {
|
2690
|
+
type: BooleanConstructor;
|
2691
|
+
default: boolean;
|
2692
|
+
};
|
2456
2693
|
}>> & {
|
2457
2694
|
"onTemplate-click"?: ((...args: any[]) => any) | undefined;
|
2458
2695
|
"onUnread-message-update"?: ((...args: any[]) => any) | undefined;
|
@@ -2463,5 +2700,6 @@ declare const IhoChat: SFCWithInstall<import("vue").DefineComponent<{
|
|
2463
2700
|
showHeader: boolean;
|
2464
2701
|
baseURL: string;
|
2465
2702
|
extraParams: import("../../shared/types").AnyObject;
|
2703
|
+
filterable: boolean;
|
2466
2704
|
}>>;
|
2467
2705
|
export default IhoChat;
|