@vgroup/dialbox 0.6.3-0.4 → 0.6.3-0.6
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 +36 -7
- package/fesm2015/vgroup-dialbox.mjs +53 -22
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +35 -6
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +6 -0
- package/package.json +1 -1
|
@@ -83,6 +83,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
83
83
|
isIncomingCallBtnDisable: boolean;
|
|
84
84
|
hostnumber: any;
|
|
85
85
|
isNewAddedCall: boolean;
|
|
86
|
+
deviceNumberList: any;
|
|
86
87
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
87
88
|
ngOnInit(): void;
|
|
88
89
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -109,6 +110,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
109
110
|
private formatTime;
|
|
110
111
|
private pad;
|
|
111
112
|
private handleError;
|
|
113
|
+
endConfereneceCall(): void;
|
|
112
114
|
endCall(isAllCallEnd?: boolean): Promise<void>;
|
|
113
115
|
toggleMute(isConference?: boolean): Promise<void>;
|
|
114
116
|
audioStream?: MediaStream;
|
|
@@ -156,6 +158,10 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
156
158
|
applyFilter(): void;
|
|
157
159
|
checkTextHeight(): void;
|
|
158
160
|
toggleText(): void;
|
|
161
|
+
showDisconnectModal: boolean;
|
|
162
|
+
onCallDisconnected(): void;
|
|
163
|
+
endConference(): void;
|
|
164
|
+
leaveConference(): void;
|
|
159
165
|
ngOnDestroy(): void;
|
|
160
166
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
161
167
|
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>;
|