@vgroup/dialbox 0.6.59 → 0.6.61
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 +11 -4
- package/esm2020/lib/dialbox.component.mjs +36 -5
- package/fesm2015/vgroup-dialbox.mjs +47 -7
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +45 -7
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +1 -0
- package/lib/dialbox.component.d.ts +5 -0
- package/package.json +1 -1
- package/vgroup-dialbox-0.6.60.tgz +0 -0
|
@@ -173,6 +173,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
173
173
|
isSelfNumber(participant: any): any;
|
|
174
174
|
getName(number: any): string | null;
|
|
175
175
|
getImg(number: any): any;
|
|
176
|
+
get showEndAllButton(): boolean;
|
|
176
177
|
ngOnDestroy(): void;
|
|
177
178
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
178
179
|
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
@@ -80,6 +80,8 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
80
80
|
callPreference: any;
|
|
81
81
|
shakeDedicatedBtn: boolean;
|
|
82
82
|
isSmartDialCall: boolean;
|
|
83
|
+
showNewCallWarning: boolean;
|
|
84
|
+
private _pendingCallResolve;
|
|
83
85
|
private isInitialized;
|
|
84
86
|
beforeUnloadHandler(event: Event): void;
|
|
85
87
|
constructor(twilioService: TwilioService, extService: ExtensionService, dialog: MatDialog, ipService: IpAddressService, extensionService: ExtensionService, cdk: ChangeDetectorRef, router: Router, incomeingCallSocketService: IncomeingCallSocketService);
|
|
@@ -105,6 +107,9 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
105
107
|
onContactSelect(contact: any): void;
|
|
106
108
|
endCall(): void;
|
|
107
109
|
initiateCall(): Promise<boolean | undefined>;
|
|
110
|
+
private showConferenceWarning;
|
|
111
|
+
confirmNewCall(): void;
|
|
112
|
+
cancelNewCall(): void;
|
|
108
113
|
isInvalidNumber(): Promise<boolean>;
|
|
109
114
|
saveLastDialed(): void;
|
|
110
115
|
isSavedContactDialled(): boolean;
|
package/package.json
CHANGED
|
Binary file
|