cnhis-design-vue 3.2.6-release.2 → 3.2.7-beta.0
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/button-print/src/utils/print.d.ts +4 -2
- package/es/components/button-print/src/utils/print.js +1 -1
- package/es/components/fabric-chart/src/constants/index.js +1 -1
- package/es/components/fabric-chart/src/hooks/temperature/useCenter.d.ts +1 -0
- package/es/components/fabric-chart/src/hooks/temperature/useCenter.js +1 -1
- package/es/components/fabric-chart/src/hooks/temperature/useOther.d.ts +2 -2
- package/es/components/fabric-chart/src/hooks/temperature/useOther.js +1 -1
- package/es/components/fabric-chart/src/hooks/temperature/useTemperatureChart.js +1 -1
- package/es/components/fabric-chart/src/hooks/useDraw.js +1 -1
- package/es/components/field-set/src/FieldSet.vue.d.ts +1 -1
- package/es/components/form-render/index.js +1 -1
- package/es/components/form-render/src/hooks/useFormEvent.js +1 -1
- package/es/components/form-render/src/utils/index.d.ts +1 -0
- package/es/components/form-render/src/utils/index.js +1 -1
- package/es/components/iho-chat/index.d.ts +497 -19
- package/es/components/iho-chat/src/Index.vue.d.ts +502 -24
- package/es/components/iho-chat/src/Index.vue2.js +1 -1
- package/es/components/iho-chat/src/api/index.d.ts +5 -0
- package/es/components/iho-chat/src/api/index.js +1 -1
- package/es/components/iho-chat/src/components/ChatAdd.vue.d.ts +89 -0
- package/es/components/iho-chat/src/components/ChatAdd.vue.js +1 -0
- package/es/components/iho-chat/src/components/ChatAdd.vue2.js +1 -0
- package/es/components/iho-chat/src/components/ChatFile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatFooter.vue.d.ts +94 -4
- package/es/components/iho-chat/src/components/ChatFooter.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatHeader.vue.d.ts +129 -3
- package/es/components/iho-chat/src/components/ChatHeader.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatMain.vue.d.ts +24 -2
- package/es/components/iho-chat/src/components/ChatMain.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatRecord.vue.d.ts +0 -1
- package/es/components/iho-chat/src/components/ChatRecord.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatSearch.vue2.js +1 -1
- package/es/components/iho-chat/src/components/ChatSet.vue.d.ts +16 -1
- package/es/components/iho-chat/src/components/ChatSet.vue2.js +1 -1
- package/es/components/iho-chat/src/components/MultipleVideo.vue.d.ts +133 -0
- package/es/components/iho-chat/src/components/MultipleVideo.vue.js +1 -0
- package/es/components/iho-chat/src/components/MultipleVideo.vue2.js +1 -0
- package/es/components/iho-chat/src/components/PersonProfile.vue.d.ts +15 -1
- package/es/components/iho-chat/src/components/PersonProfile.vue2.js +1 -1
- package/es/components/iho-chat/src/components/SiderList.vue2.js +1 -1
- package/es/components/iho-chat/src/components/Video.vue.d.ts +24 -13
- package/es/components/iho-chat/src/components/Video.vue2.js +1 -1
- package/es/components/iho-chat/src/constants/index.d.ts +10 -1
- package/es/components/iho-chat/src/constants/index.js +1 -1
- package/es/components/iho-chat/src/hooks/index.d.ts +1 -0
- package/es/components/iho-chat/src/hooks/index.js +1 -1
- package/es/components/iho-chat/src/hooks/useSession.d.ts +1 -0
- package/es/components/iho-chat/src/hooks/useSession.js +1 -1
- package/es/components/iho-chat/src/hooks/useState.d.ts +5 -0
- package/es/components/iho-chat/src/hooks/useState.js +1 -1
- package/es/components/iho-chat/src/hooks/useVideo.d.ts +24 -0
- package/es/components/iho-chat/src/hooks/useVideo.js +1 -0
- package/es/components/iho-chat/src/types/index.d.ts +3 -0
- package/es/components/iho-chat/src/utils/index.d.ts +2 -1
- package/es/components/iho-chat/src/utils/index.js +1 -1
- package/es/components/iho-chat/style/index.css +1 -1
- package/es/components/iho-table/src/IhoTable.vue2.js +1 -1
- package/es/components/index.css +1 -1
- package/es/components/index.js +1 -1
- package/es/shared/hooks/useLevelSearchCascader.js +1 -1
- package/es/shared/package.json.js +1 -1
- package/es/shared/utils/index.d.ts +1 -1
- package/package.json +2 -2
@@ -1,7 +1,7 @@
|
|
1
1
|
import { type PropType } from 'vue';
|
2
2
|
import { ChatSock } from './utils/chatSock';
|
3
3
|
import { AnyObject } from '../../../shared/types';
|
4
|
-
import {
|
4
|
+
import { AV_STATUS } from './constants';
|
5
5
|
import { IState } from './types';
|
6
6
|
import { isAudioOrVideoMessage } from './utils';
|
7
7
|
declare const _default: import("vue").DefineComponent<{
|
@@ -62,6 +62,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
62
62
|
currentReferenceMsg: AnyObject | null;
|
63
63
|
showVideo: boolean;
|
64
64
|
currentAVMsg: AnyObject;
|
65
|
+
userList: AnyObject[];
|
66
|
+
currentGroupUser: AnyObject[];
|
67
|
+
showMultipleVideo: boolean;
|
65
68
|
};
|
66
69
|
reConnention: number;
|
67
70
|
openSession: (item: AnyObject) => Promise<void>;
|
@@ -69,10 +72,19 @@ declare const _default: import("vue").DefineComponent<{
|
|
69
72
|
getCurrentSession: () => AnyObject | null;
|
70
73
|
setSessionList: (list: AnyObject[]) => void;
|
71
74
|
setUpdateSessionItem: (item: AnyObject) => void;
|
75
|
+
setCurrentSessionItem: (item: AnyObject) => void;
|
76
|
+
groupSessionList: AnyObject[];
|
72
77
|
init: () => Promise<void>;
|
78
|
+
handleUserSearch: () => Promise<void>;
|
73
79
|
initWebSocket: () => void;
|
74
80
|
subscribeSessionList: () => void;
|
81
|
+
subscribeGroupMessage: () => void;
|
75
82
|
subscribeMessage: () => void;
|
83
|
+
handleMessage: (messageVo: AnyObject, chatType: string) => Promise<void>;
|
84
|
+
handleSubscribeMessage: ({ body, chatType }: {
|
85
|
+
body: any;
|
86
|
+
chatType: string;
|
87
|
+
}) => Promise<void>;
|
76
88
|
getUnreadData: () => AnyObject[];
|
77
89
|
NLayout: any;
|
78
90
|
NLayoutContent: any;
|
@@ -114,24 +126,43 @@ declare const _default: import("vue").DefineComponent<{
|
|
114
126
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
115
127
|
ChatHeader: import("vue").DefineComponent<{}, {
|
116
128
|
state: IState;
|
129
|
+
isGroupChat: import("vue").ComputedRef<boolean>;
|
117
130
|
showChatSet: import("vue").Ref<boolean>;
|
118
131
|
showChatFile: import("vue").Ref<boolean>;
|
119
132
|
chatFileType: import("vue").Ref<string>;
|
120
133
|
showChatRecord: import("vue").Ref<boolean>;
|
134
|
+
chatAddProps: import("vue").ComputedRef<{
|
135
|
+
mode: string;
|
136
|
+
disabledIds: any[];
|
137
|
+
defaultValue?: undefined;
|
138
|
+
} | {
|
139
|
+
mode: string;
|
140
|
+
defaultValue: any[];
|
141
|
+
disabledIds?: undefined;
|
142
|
+
}>;
|
121
143
|
handleOpenChatFile: (type: string) => void;
|
122
144
|
NAvatar: any;
|
145
|
+
NIcon: any;
|
123
146
|
NButton: any;
|
124
147
|
PersonProfile: import("vue").DefineComponent<{
|
125
148
|
userId: {
|
126
149
|
type: StringConstructor;
|
127
150
|
required: true;
|
128
151
|
};
|
152
|
+
disabled: {
|
153
|
+
type: BooleanConstructor;
|
154
|
+
default: boolean;
|
155
|
+
};
|
129
156
|
}, {
|
130
157
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
131
158
|
userId: {
|
132
159
|
type: StringConstructor;
|
133
160
|
required: true;
|
134
161
|
};
|
162
|
+
disabled: {
|
163
|
+
type: BooleanConstructor;
|
164
|
+
default: boolean;
|
165
|
+
};
|
135
166
|
}>> & {
|
136
167
|
onClose?: ((...args: any[]) => any) | undefined;
|
137
168
|
}>>;
|
@@ -174,15 +205,22 @@ declare const _default: import("vue").DefineComponent<{
|
|
174
205
|
type: StringConstructor;
|
175
206
|
required: true;
|
176
207
|
};
|
208
|
+
disabled: {
|
209
|
+
type: BooleanConstructor;
|
210
|
+
default: boolean;
|
211
|
+
};
|
177
212
|
}>> & {
|
178
213
|
onClose?: ((...args: any[]) => any) | undefined;
|
179
|
-
}, {
|
214
|
+
}, {
|
215
|
+
disabled: boolean;
|
216
|
+
}>;
|
180
217
|
ChatSet: import("vue").DefineComponent<{}, {
|
181
218
|
attrs: {
|
182
219
|
[x: string]: unknown;
|
183
220
|
};
|
184
221
|
state: IState;
|
185
222
|
setCurrentSessionItem: (item: AnyObject) => void;
|
223
|
+
isGroupChat: import("vue").ComputedRef<boolean>;
|
186
224
|
handleTopping: (value: boolean) => Promise<void>;
|
187
225
|
closeUserDetail: () => void;
|
188
226
|
NDrawer: any;
|
@@ -196,12 +234,20 @@ declare const _default: import("vue").DefineComponent<{
|
|
196
234
|
type: StringConstructor;
|
197
235
|
required: true;
|
198
236
|
};
|
237
|
+
disabled: {
|
238
|
+
type: BooleanConstructor;
|
239
|
+
default: boolean;
|
240
|
+
};
|
199
241
|
}, {
|
200
242
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
201
243
|
userId: {
|
202
244
|
type: StringConstructor;
|
203
245
|
required: true;
|
204
246
|
};
|
247
|
+
disabled: {
|
248
|
+
type: BooleanConstructor;
|
249
|
+
default: boolean;
|
250
|
+
};
|
205
251
|
}>> & {
|
206
252
|
onClose?: ((...args: any[]) => any) | undefined;
|
207
253
|
}>>;
|
@@ -244,9 +290,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
244
290
|
type: StringConstructor;
|
245
291
|
required: true;
|
246
292
|
};
|
293
|
+
disabled: {
|
294
|
+
type: BooleanConstructor;
|
295
|
+
default: boolean;
|
296
|
+
};
|
247
297
|
}>> & {
|
248
298
|
onClose?: ((...args: any[]) => any) | undefined;
|
249
|
-
}, {
|
299
|
+
}, {
|
300
|
+
disabled: boolean;
|
301
|
+
}>;
|
250
302
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
251
303
|
ChatFile: import("vue").DefineComponent<{
|
252
304
|
type: {
|
@@ -337,7 +389,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
337
389
|
lastSendTime: string;
|
338
390
|
};
|
339
391
|
handleSearch: () => Promise<void>;
|
340
|
-
options: import("vue").ComputedRef<AnyObject[]>;
|
341
392
|
resetAndSearch: () => void;
|
342
393
|
startDateDisabled: (ts: number) => boolean;
|
343
394
|
endDateDisabled: (ts: number) => boolean;
|
@@ -430,7 +481,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
430
481
|
updateUnchangedValue: boolean;
|
431
482
|
}>>;
|
432
483
|
formatTime: typeof import("./utils").formatTime;
|
433
|
-
MESSAGE_TYPE: typeof MESSAGE_TYPE;
|
484
|
+
MESSAGE_TYPE: typeof import("./constants").MESSAGE_TYPE;
|
434
485
|
emojis: {
|
435
486
|
default: string[][];
|
436
487
|
findEmoji(name: string): any;
|
@@ -442,18 +493,110 @@ declare const _default: import("vue").DefineComponent<{
|
|
442
493
|
}>>, {
|
443
494
|
visible: boolean;
|
444
495
|
}>;
|
496
|
+
ChatAdd: import("vue").DefineComponent<{
|
497
|
+
title: {
|
498
|
+
type: StringConstructor;
|
499
|
+
default: string;
|
500
|
+
};
|
501
|
+
mode: {
|
502
|
+
type: StringConstructor;
|
503
|
+
default: string;
|
504
|
+
};
|
505
|
+
options: {
|
506
|
+
type: PropType<AnyObject[]>;
|
507
|
+
};
|
508
|
+
disabledIds: {
|
509
|
+
type: PropType<string[]>;
|
510
|
+
};
|
511
|
+
defaultValue: {
|
512
|
+
type: PropType<string[]>;
|
513
|
+
};
|
514
|
+
}, {
|
515
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
516
|
+
title: {
|
517
|
+
type: StringConstructor;
|
518
|
+
default: string;
|
519
|
+
};
|
520
|
+
mode: {
|
521
|
+
type: StringConstructor;
|
522
|
+
default: string;
|
523
|
+
};
|
524
|
+
options: {
|
525
|
+
type: PropType<AnyObject[]>;
|
526
|
+
};
|
527
|
+
disabledIds: {
|
528
|
+
type: PropType<string[]>;
|
529
|
+
};
|
530
|
+
defaultValue: {
|
531
|
+
type: PropType<string[]>;
|
532
|
+
};
|
533
|
+
}>> & {
|
534
|
+
onComfirm?: ((...args: any[]) => any) | undefined;
|
535
|
+
}>>;
|
536
|
+
emit: (event: "comfirm", ...args: any[]) => void;
|
537
|
+
state: IState;
|
538
|
+
showModal: import("vue").Ref<boolean>;
|
539
|
+
checkedIds: import("vue").Ref<(string | number)[]>;
|
540
|
+
options: import("vue").Ref<AnyObject[]>;
|
541
|
+
groupName: import("vue").Ref<string>;
|
542
|
+
btnDisabled: import("vue").ComputedRef<boolean>;
|
543
|
+
handlePositiveClick: () => Promise<void>;
|
544
|
+
renderSourceLabel: ({ option }: {
|
545
|
+
option: AnyObject;
|
546
|
+
}) => JSX.Element;
|
547
|
+
renderTargetList: (props: {
|
548
|
+
onCheck: (checkedValueList: (string | number)[]) => void;
|
549
|
+
checkedOptions: AnyObject[];
|
550
|
+
pattern: string;
|
551
|
+
}) => JSX.Element | null;
|
552
|
+
NModal: any;
|
553
|
+
NButton: any;
|
554
|
+
NTransfer: any;
|
555
|
+
NIcon: any;
|
556
|
+
NInput: any;
|
557
|
+
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<{}>>, {}>;
|
558
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
559
|
+
title: {
|
560
|
+
type: StringConstructor;
|
561
|
+
default: string;
|
562
|
+
};
|
563
|
+
mode: {
|
564
|
+
type: StringConstructor;
|
565
|
+
default: string;
|
566
|
+
};
|
567
|
+
options: {
|
568
|
+
type: PropType<AnyObject[]>;
|
569
|
+
};
|
570
|
+
disabledIds: {
|
571
|
+
type: PropType<string[]>;
|
572
|
+
};
|
573
|
+
defaultValue: {
|
574
|
+
type: PropType<string[]>;
|
575
|
+
};
|
576
|
+
}>> & {
|
577
|
+
onComfirm?: ((...args: any[]) => any) | undefined;
|
578
|
+
}, {
|
579
|
+
mode: string;
|
580
|
+
title: string;
|
581
|
+
}>;
|
582
|
+
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<{}>>, {}>;
|
445
583
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
446
584
|
ChatMain: import("vue").DefineComponent<{}, {
|
447
585
|
chatMainRef: import("vue").Ref<HTMLElement | undefined>;
|
448
586
|
state: IState;
|
449
587
|
setMsgList: (list?: AnyObject[]) => void;
|
450
588
|
setCurrentSessionItem: (item: AnyObject) => void;
|
589
|
+
isGroupChat: import("vue").ComputedRef<boolean>;
|
451
590
|
showMenu: import("vue").Ref<boolean>;
|
452
591
|
pageInfo: {
|
453
592
|
page: number;
|
454
593
|
hasMore: boolean;
|
455
594
|
lastSendTime: string;
|
456
595
|
};
|
596
|
+
styleProps: import("vue").ComputedRef<{
|
597
|
+
'--c-tip-top': string;
|
598
|
+
'--c-tip-gap': string;
|
599
|
+
}>;
|
457
600
|
getHistoryRecord: () => Promise<void>;
|
458
601
|
showMessage: (item: AnyObject) => boolean;
|
459
602
|
showTemplateMsg: (item: AnyObject, type: "template" | "system") => boolean | undefined;
|
@@ -473,12 +616,20 @@ declare const _default: import("vue").DefineComponent<{
|
|
473
616
|
type: StringConstructor;
|
474
617
|
required: true;
|
475
618
|
};
|
619
|
+
disabled: {
|
620
|
+
type: BooleanConstructor;
|
621
|
+
default: boolean;
|
622
|
+
};
|
476
623
|
}, {
|
477
624
|
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
478
625
|
userId: {
|
479
626
|
type: StringConstructor;
|
480
627
|
required: true;
|
481
628
|
};
|
629
|
+
disabled: {
|
630
|
+
type: BooleanConstructor;
|
631
|
+
default: boolean;
|
632
|
+
};
|
482
633
|
}>> & {
|
483
634
|
onClose?: ((...args: any[]) => any) | undefined;
|
484
635
|
}>>;
|
@@ -521,9 +672,15 @@ declare const _default: import("vue").DefineComponent<{
|
|
521
672
|
type: StringConstructor;
|
522
673
|
required: true;
|
523
674
|
};
|
675
|
+
disabled: {
|
676
|
+
type: BooleanConstructor;
|
677
|
+
default: boolean;
|
678
|
+
};
|
524
679
|
}>> & {
|
525
680
|
onClose?: ((...args: any[]) => any) | undefined;
|
526
|
-
}, {
|
681
|
+
}, {
|
682
|
+
disabled: boolean;
|
683
|
+
}>;
|
527
684
|
MessageTemplate: import("vue").DefineComponent<{
|
528
685
|
data: {
|
529
686
|
type: PropType<AnyObject>;
|
@@ -626,18 +783,25 @@ declare const _default: import("vue").DefineComponent<{
|
|
626
783
|
downloadFile: typeof import("./utils").downloadFile;
|
627
784
|
simplifyMessage: typeof import("./utils").simplifyMessage;
|
628
785
|
isAudioOrVideoMessage: typeof isAudioOrVideoMessage;
|
629
|
-
|
786
|
+
getAVTime: typeof import("./utils").getAVTime;
|
787
|
+
MESSAGE_TYPE: typeof import("./constants").MESSAGE_TYPE;
|
630
788
|
ChatbubbleEllipsesOutline: 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<{}>>, {}>;
|
631
789
|
EllipsisHorizontal: 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<{}>>, {}>;
|
790
|
+
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<{}>>, {}>;
|
791
|
+
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<{}>>, {}>;
|
632
792
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
633
793
|
ChatFooter: import("vue").DefineComponent<{}, {
|
634
794
|
inputRef: import("vue").Ref<HTMLDivElement | undefined>;
|
635
795
|
content: import("vue").Ref<string>;
|
636
796
|
state: IState;
|
637
|
-
|
638
|
-
|
797
|
+
sendMessage: (message: {
|
798
|
+
chatType?: string | undefined;
|
799
|
+
content: AnyObject;
|
800
|
+
receiver?: string | undefined;
|
801
|
+
}) => Promise<void>;
|
802
|
+
isGroupChat: import("vue").ComputedRef<boolean>;
|
639
803
|
showEmoji: import("vue").Ref<boolean>;
|
640
|
-
handleCall: (chatMessageType: string) => void;
|
804
|
+
handleCall: (chatMessageType: string, checkedIds?: never[]) => void;
|
641
805
|
handleKeyDown: (event: KeyboardEvent) => void;
|
642
806
|
isWrap: (event: KeyboardEvent) => boolean;
|
643
807
|
handleInput: () => void;
|
@@ -645,20 +809,106 @@ declare const _default: import("vue").DefineComponent<{
|
|
645
809
|
fileChange: (options: {
|
646
810
|
file: import("naive-ui").UploadFileInfo;
|
647
811
|
fileList: import("naive-ui").UploadFileInfo[];
|
648
|
-
}, chatMessageType: MESSAGE_TYPE) => Promise<void>;
|
812
|
+
}, chatMessageType: import("./constants").MESSAGE_TYPE) => Promise<void>;
|
649
813
|
handleMsgSend: () => void;
|
650
|
-
|
814
|
+
doSendMessage: (contentInfo: AnyObject) => Promise<void>;
|
651
815
|
NButton: any;
|
652
816
|
NPopover: any;
|
653
817
|
NTooltip: any;
|
654
818
|
NUpload: any;
|
655
819
|
NUploadTrigger: any;
|
656
820
|
NIcon: any;
|
821
|
+
ChatAdd: import("vue").DefineComponent<{
|
822
|
+
title: {
|
823
|
+
type: StringConstructor;
|
824
|
+
default: string;
|
825
|
+
};
|
826
|
+
mode: {
|
827
|
+
type: StringConstructor;
|
828
|
+
default: string;
|
829
|
+
};
|
830
|
+
options: {
|
831
|
+
type: PropType<AnyObject[]>;
|
832
|
+
};
|
833
|
+
disabledIds: {
|
834
|
+
type: PropType<string[]>;
|
835
|
+
};
|
836
|
+
defaultValue: {
|
837
|
+
type: PropType<string[]>;
|
838
|
+
};
|
839
|
+
}, {
|
840
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
841
|
+
title: {
|
842
|
+
type: StringConstructor;
|
843
|
+
default: string;
|
844
|
+
};
|
845
|
+
mode: {
|
846
|
+
type: StringConstructor;
|
847
|
+
default: string;
|
848
|
+
};
|
849
|
+
options: {
|
850
|
+
type: PropType<AnyObject[]>;
|
851
|
+
};
|
852
|
+
disabledIds: {
|
853
|
+
type: PropType<string[]>;
|
854
|
+
};
|
855
|
+
defaultValue: {
|
856
|
+
type: PropType<string[]>;
|
857
|
+
};
|
858
|
+
}>> & {
|
859
|
+
onComfirm?: ((...args: any[]) => any) | undefined;
|
860
|
+
}>>;
|
861
|
+
emit: (event: "comfirm", ...args: any[]) => void;
|
862
|
+
state: IState;
|
863
|
+
showModal: import("vue").Ref<boolean>;
|
864
|
+
checkedIds: import("vue").Ref<(string | number)[]>;
|
865
|
+
options: import("vue").Ref<AnyObject[]>;
|
866
|
+
groupName: import("vue").Ref<string>;
|
867
|
+
btnDisabled: import("vue").ComputedRef<boolean>;
|
868
|
+
handlePositiveClick: () => Promise<void>;
|
869
|
+
renderSourceLabel: ({ option }: {
|
870
|
+
option: AnyObject;
|
871
|
+
}) => JSX.Element;
|
872
|
+
renderTargetList: (props: {
|
873
|
+
onCheck: (checkedValueList: (string | number)[]) => void;
|
874
|
+
checkedOptions: AnyObject[];
|
875
|
+
pattern: string;
|
876
|
+
}) => JSX.Element | null;
|
877
|
+
NModal: any;
|
878
|
+
NButton: any;
|
879
|
+
NTransfer: any;
|
880
|
+
NIcon: any;
|
881
|
+
NInput: any;
|
882
|
+
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<{}>>, {}>;
|
883
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
884
|
+
title: {
|
885
|
+
type: StringConstructor;
|
886
|
+
default: string;
|
887
|
+
};
|
888
|
+
mode: {
|
889
|
+
type: StringConstructor;
|
890
|
+
default: string;
|
891
|
+
};
|
892
|
+
options: {
|
893
|
+
type: PropType<AnyObject[]>;
|
894
|
+
};
|
895
|
+
disabledIds: {
|
896
|
+
type: PropType<string[]>;
|
897
|
+
};
|
898
|
+
defaultValue: {
|
899
|
+
type: PropType<string[]>;
|
900
|
+
};
|
901
|
+
}>> & {
|
902
|
+
onComfirm?: ((...args: any[]) => any) | undefined;
|
903
|
+
}, {
|
904
|
+
mode: string;
|
905
|
+
title: string;
|
906
|
+
}>;
|
657
907
|
emojis: {
|
658
908
|
default: string[][];
|
659
909
|
findEmoji(name: string): any;
|
660
910
|
};
|
661
|
-
MESSAGE_TYPE: typeof MESSAGE_TYPE;
|
911
|
+
MESSAGE_TYPE: typeof import("./constants").MESSAGE_TYPE;
|
662
912
|
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<{}>>, {}>;
|
663
913
|
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<{}>>, {}>;
|
664
914
|
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<{}>>, {}>;
|
@@ -688,27 +938,127 @@ declare const _default: import("vue").DefineComponent<{
|
|
688
938
|
NIcon: any;
|
689
939
|
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<{}>>, {}>;
|
690
940
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
941
|
+
ChatAdd: import("vue").DefineComponent<{
|
942
|
+
title: {
|
943
|
+
type: StringConstructor;
|
944
|
+
default: string;
|
945
|
+
};
|
946
|
+
mode: {
|
947
|
+
type: StringConstructor;
|
948
|
+
default: string;
|
949
|
+
};
|
950
|
+
options: {
|
951
|
+
type: PropType<AnyObject[]>;
|
952
|
+
};
|
953
|
+
disabledIds: {
|
954
|
+
type: PropType<string[]>;
|
955
|
+
};
|
956
|
+
defaultValue: {
|
957
|
+
type: PropType<string[]>;
|
958
|
+
};
|
959
|
+
}, {
|
960
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
961
|
+
title: {
|
962
|
+
type: StringConstructor;
|
963
|
+
default: string;
|
964
|
+
};
|
965
|
+
mode: {
|
966
|
+
type: StringConstructor;
|
967
|
+
default: string;
|
968
|
+
};
|
969
|
+
options: {
|
970
|
+
type: PropType<AnyObject[]>;
|
971
|
+
};
|
972
|
+
disabledIds: {
|
973
|
+
type: PropType<string[]>;
|
974
|
+
};
|
975
|
+
defaultValue: {
|
976
|
+
type: PropType<string[]>;
|
977
|
+
};
|
978
|
+
}>> & {
|
979
|
+
onComfirm?: ((...args: any[]) => any) | undefined;
|
980
|
+
}>>;
|
981
|
+
emit: (event: "comfirm", ...args: any[]) => void;
|
982
|
+
state: IState;
|
983
|
+
showModal: import("vue").Ref<boolean>;
|
984
|
+
checkedIds: import("vue").Ref<(string | number)[]>;
|
985
|
+
options: import("vue").Ref<AnyObject[]>;
|
986
|
+
groupName: import("vue").Ref<string>;
|
987
|
+
btnDisabled: import("vue").ComputedRef<boolean>;
|
988
|
+
handlePositiveClick: () => Promise<void>;
|
989
|
+
renderSourceLabel: ({ option }: {
|
990
|
+
option: AnyObject;
|
991
|
+
}) => JSX.Element;
|
992
|
+
renderTargetList: (props: {
|
993
|
+
onCheck: (checkedValueList: (string | number)[]) => void;
|
994
|
+
checkedOptions: AnyObject[];
|
995
|
+
pattern: string;
|
996
|
+
}) => JSX.Element | null;
|
997
|
+
NModal: any;
|
998
|
+
NButton: any;
|
999
|
+
NTransfer: any;
|
1000
|
+
NIcon: any;
|
1001
|
+
NInput: any;
|
1002
|
+
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<{}>>, {}>;
|
1003
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1004
|
+
title: {
|
1005
|
+
type: StringConstructor;
|
1006
|
+
default: string;
|
1007
|
+
};
|
1008
|
+
mode: {
|
1009
|
+
type: StringConstructor;
|
1010
|
+
default: string;
|
1011
|
+
};
|
1012
|
+
options: {
|
1013
|
+
type: PropType<AnyObject[]>;
|
1014
|
+
};
|
1015
|
+
disabledIds: {
|
1016
|
+
type: PropType<string[]>;
|
1017
|
+
};
|
1018
|
+
defaultValue: {
|
1019
|
+
type: PropType<string[]>;
|
1020
|
+
};
|
1021
|
+
}>> & {
|
1022
|
+
onComfirm?: ((...args: any[]) => any) | undefined;
|
1023
|
+
}, {
|
1024
|
+
mode: string;
|
1025
|
+
title: string;
|
1026
|
+
}>;
|
691
1027
|
Video: import("vue").DefineComponent<{}, {
|
1028
|
+
sendMessage: (message: {
|
1029
|
+
chatType?: string | undefined;
|
1030
|
+
content: AnyObject;
|
1031
|
+
receiver?: string | undefined;
|
1032
|
+
}) => Promise<void>;
|
1033
|
+
state: IState;
|
1034
|
+
trtc: import("trtc-sdk-v5").default;
|
1035
|
+
timing: import("vue").Ref<string>;
|
1036
|
+
voiceOpen: import("vue").Ref<boolean>;
|
1037
|
+
isAudio: import("vue").ComputedRef<boolean>;
|
1038
|
+
isCall: import("vue").ComputedRef<boolean>;
|
1039
|
+
startTimer: () => void;
|
1040
|
+
resetTimer: () => void;
|
1041
|
+
toggleAudio: () => Promise<void>;
|
1042
|
+
messageTypeText: import("vue").ComputedRef<"语音" | "视频">;
|
692
1043
|
time: {
|
693
1044
|
timer: any;
|
694
1045
|
seconds: number;
|
695
1046
|
};
|
696
|
-
state: IState;
|
697
1047
|
videoRef: import("vue").Ref<any>;
|
698
1048
|
selfVideoRef: import("vue").Ref<any>;
|
699
|
-
tipContent: import("vue").Ref<any>;
|
700
1049
|
isConnect: import("vue").Ref<boolean>;
|
701
|
-
|
702
|
-
messageType: import("vue").ComputedRef<any>;
|
703
|
-
callMode: import("vue").ComputedRef<any>;
|
1050
|
+
timeout: any;
|
704
1051
|
info: import("vue").ComputedRef<{
|
705
|
-
sessionKey: any;
|
706
1052
|
avatar: any;
|
707
1053
|
name: any;
|
708
1054
|
userId: any;
|
709
1055
|
}>;
|
710
|
-
|
1056
|
+
tipContent: import("vue").ComputedRef<string>;
|
1057
|
+
status: import("vue").ComputedRef<any>;
|
1058
|
+
handleStatus: (status?: AV_STATUS) => Promise<void>;
|
1059
|
+
init: () => Promise<void>;
|
711
1060
|
handleEnter: () => Promise<void>;
|
1061
|
+
handleFinish: () => void;
|
712
1062
|
handleExit: () => Promise<void>;
|
713
1063
|
installEventHandlers: () => void;
|
714
1064
|
uninstallEventHandlers: () => void;
|
@@ -716,17 +1066,145 @@ declare const _default: import("vue").DefineComponent<{
|
|
716
1066
|
handleRemoteAudioAvailable: (event: any) => void;
|
717
1067
|
handleRemoteUserEnter: () => void;
|
718
1068
|
handleRemoteUserExit: (event: any) => void;
|
1069
|
+
handleError: (error: any) => void;
|
1070
|
+
NButton: any;
|
1071
|
+
NAvatar: any;
|
1072
|
+
NIcon: any;
|
1073
|
+
Call: 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<{}>>, {}>;
|
1074
|
+
MicOffCircle: 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<{}>>, {}>;
|
1075
|
+
Mic: 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<{}>>, {}>;
|
1076
|
+
AV_STATUS: typeof AV_STATUS;
|
1077
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
1078
|
+
MultipleVideo: import("vue").DefineComponent<{}, {
|
1079
|
+
selfVideoRef: import("vue").Ref<any>;
|
1080
|
+
remoteUsers: import("vue").Ref<string[]>;
|
1081
|
+
state: IState;
|
1082
|
+
sendMessage: (message: {
|
1083
|
+
chatType?: string | undefined;
|
1084
|
+
content: AnyObject;
|
1085
|
+
receiver?: string | undefined;
|
1086
|
+
}) => Promise<void>;
|
1087
|
+
trtc: import("trtc-sdk-v5").default;
|
1088
|
+
voiceOpen: import("vue").Ref<boolean>;
|
1089
|
+
isAudio: import("vue").ComputedRef<boolean>;
|
1090
|
+
isCall: import("vue").ComputedRef<boolean>;
|
719
1091
|
startTimer: () => void;
|
720
1092
|
resetTimer: () => void;
|
721
|
-
formatSeconds: (seconds: number) => string;
|
722
1093
|
toggleAudio: () => Promise<void>;
|
1094
|
+
messageTypeText: import("vue").ComputedRef<"语音" | "视频">;
|
1095
|
+
timing: import("vue").Ref<string>;
|
1096
|
+
toggleVideo: () => Promise<void>;
|
1097
|
+
videocamOpen: import("vue").Ref<boolean>;
|
1098
|
+
isConnect: import("vue").Ref<boolean>;
|
1099
|
+
callUser: import("vue").ComputedRef<any>;
|
1100
|
+
title: import("vue").ComputedRef<string>;
|
1101
|
+
handleAddPerson: (checkedIds: string[]) => void;
|
1102
|
+
handleCall: () => void;
|
1103
|
+
handleEnter: () => Promise<void>;
|
1104
|
+
handleExit: () => Promise<void>;
|
1105
|
+
installEventHandlers: () => void;
|
1106
|
+
uninstallEventHandlers: () => void;
|
1107
|
+
handleRemoteVideoAvailable: (event: any) => Promise<void>;
|
1108
|
+
handleRemoteAudioAvailable: (event: any) => void;
|
1109
|
+
handleRemoteUserEnter: (event: any) => void;
|
1110
|
+
handleRemoteUserExit: (event: any) => void;
|
1111
|
+
handleError: (error: any) => void;
|
1112
|
+
getName: (id: string) => any;
|
723
1113
|
NButton: any;
|
724
|
-
NAvatar: any;
|
725
1114
|
NIcon: any;
|
1115
|
+
ChatAdd: import("vue").DefineComponent<{
|
1116
|
+
title: {
|
1117
|
+
type: StringConstructor;
|
1118
|
+
default: string;
|
1119
|
+
};
|
1120
|
+
mode: {
|
1121
|
+
type: StringConstructor;
|
1122
|
+
default: string;
|
1123
|
+
};
|
1124
|
+
options: {
|
1125
|
+
type: PropType<AnyObject[]>;
|
1126
|
+
};
|
1127
|
+
disabledIds: {
|
1128
|
+
type: PropType<string[]>;
|
1129
|
+
};
|
1130
|
+
defaultValue: {
|
1131
|
+
type: PropType<string[]>;
|
1132
|
+
};
|
1133
|
+
}, {
|
1134
|
+
props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
|
1135
|
+
title: {
|
1136
|
+
type: StringConstructor;
|
1137
|
+
default: string;
|
1138
|
+
};
|
1139
|
+
mode: {
|
1140
|
+
type: StringConstructor;
|
1141
|
+
default: string;
|
1142
|
+
};
|
1143
|
+
options: {
|
1144
|
+
type: PropType<AnyObject[]>;
|
1145
|
+
};
|
1146
|
+
disabledIds: {
|
1147
|
+
type: PropType<string[]>;
|
1148
|
+
};
|
1149
|
+
defaultValue: {
|
1150
|
+
type: PropType<string[]>;
|
1151
|
+
};
|
1152
|
+
}>> & {
|
1153
|
+
onComfirm?: ((...args: any[]) => any) | undefined;
|
1154
|
+
}>>;
|
1155
|
+
emit: (event: "comfirm", ...args: any[]) => void;
|
1156
|
+
state: IState;
|
1157
|
+
showModal: import("vue").Ref<boolean>;
|
1158
|
+
checkedIds: import("vue").Ref<(string | number)[]>;
|
1159
|
+
options: import("vue").Ref<AnyObject[]>;
|
1160
|
+
groupName: import("vue").Ref<string>;
|
1161
|
+
btnDisabled: import("vue").ComputedRef<boolean>;
|
1162
|
+
handlePositiveClick: () => Promise<void>;
|
1163
|
+
renderSourceLabel: ({ option }: {
|
1164
|
+
option: AnyObject;
|
1165
|
+
}) => JSX.Element;
|
1166
|
+
renderTargetList: (props: {
|
1167
|
+
onCheck: (checkedValueList: (string | number)[]) => void;
|
1168
|
+
checkedOptions: AnyObject[];
|
1169
|
+
pattern: string;
|
1170
|
+
}) => JSX.Element | null;
|
1171
|
+
NModal: any;
|
1172
|
+
NButton: any;
|
1173
|
+
NTransfer: any;
|
1174
|
+
NIcon: any;
|
1175
|
+
NInput: any;
|
1176
|
+
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<{}>>, {}>;
|
1177
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "comfirm"[], "comfirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
1178
|
+
title: {
|
1179
|
+
type: StringConstructor;
|
1180
|
+
default: string;
|
1181
|
+
};
|
1182
|
+
mode: {
|
1183
|
+
type: StringConstructor;
|
1184
|
+
default: string;
|
1185
|
+
};
|
1186
|
+
options: {
|
1187
|
+
type: PropType<AnyObject[]>;
|
1188
|
+
};
|
1189
|
+
disabledIds: {
|
1190
|
+
type: PropType<string[]>;
|
1191
|
+
};
|
1192
|
+
defaultValue: {
|
1193
|
+
type: PropType<string[]>;
|
1194
|
+
};
|
1195
|
+
}>> & {
|
1196
|
+
onComfirm?: ((...args: any[]) => any) | undefined;
|
1197
|
+
}, {
|
1198
|
+
mode: string;
|
1199
|
+
title: string;
|
1200
|
+
}>;
|
726
1201
|
Call: 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<{}>>, {}>;
|
727
|
-
|
1202
|
+
Videocam: 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<{}>>, {}>;
|
1203
|
+
VideocamOff: 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<{}>>, {}>;
|
728
1204
|
Mic: 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<{}>>, {}>;
|
729
|
-
|
1205
|
+
PersonAdd: 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<{}>>, {}>;
|
1206
|
+
MicOff: 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<{}>>, {}>;
|
1207
|
+
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<{}>>, {}>;
|
730
1208
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
731
1209
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("template-click" | "unread-message-update")[], "template-click" | "unread-message-update", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
732
1210
|
token: {
|