@vgroup/dialbox 0.6.2-9.2 → 0.6.2-9.21
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/esm2020/lib/components/call-progress/call-progress.component.mjs +245 -199
- package/esm2020/lib/dialbox.component.mjs +3 -3
- package/fesm2015/vgroup-dialbox.mjs +224 -177
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +246 -200
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +7 -3
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
16
16
|
selectedCallerId: any;
|
|
17
17
|
newIncomingCallData?: Call;
|
|
18
18
|
newIncomingCallsList: any;
|
|
19
|
+
callerIdList: any;
|
|
19
20
|
deviceId: any;
|
|
20
21
|
conferenceCallInfo: any;
|
|
21
22
|
userId: any;
|
|
@@ -78,13 +79,16 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
78
79
|
show: boolean;
|
|
79
80
|
};
|
|
80
81
|
leftParticipent: any;
|
|
82
|
+
conferenceCallList: any[];
|
|
83
|
+
isIncomingCallBtnDisable: boolean;
|
|
84
|
+
hostnumber: any;
|
|
81
85
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
82
86
|
ngOnInit(): void;
|
|
83
87
|
ngOnChanges(changes: SimpleChanges): void;
|
|
84
88
|
getStatus(res: any): any;
|
|
85
89
|
GetContactsList(): void;
|
|
86
90
|
addRes: any;
|
|
87
|
-
startCall(callData: any): Promise<any>;
|
|
91
|
+
startCall(callData: any, isNewConference?: boolean): Promise<any>;
|
|
88
92
|
onMuteUser(c: any): Promise<void>;
|
|
89
93
|
onHoldCall(c: any): void;
|
|
90
94
|
onEndIncomingCall(): Promise<void>;
|
|
@@ -110,7 +114,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
110
114
|
micOn: boolean;
|
|
111
115
|
toggleMic(): Promise<void>;
|
|
112
116
|
toggleKeypad(): void;
|
|
113
|
-
toggleContactsPanel(
|
|
117
|
+
toggleContactsPanel(callInfo?: any, isClose?: boolean): any;
|
|
114
118
|
addRemoveParticipant(): void;
|
|
115
119
|
add(data?: any): Promise<void>;
|
|
116
120
|
callContact(contact: any, isUnsavedNumber?: boolean): Promise<any>;
|
|
@@ -153,5 +157,5 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
153
157
|
toggleText(): void;
|
|
154
158
|
ngOnDestroy(): void;
|
|
155
159
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
156
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "deviceId": "deviceId"; "conferenceCallInfo": "conferenceCallInfo"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershow": "isLoadershow"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
160
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "deviceId": "deviceId"; "conferenceCallInfo": "conferenceCallInfo"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershow": "isLoadershow"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
157
161
|
}
|