@vgroup/dialbox 0.7.89 → 0.7.91
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 +51 -42
- package/esm2020/lib/dialbox.component.mjs +37 -6
- package/esm2020/lib/environments/environments.mjs +12 -12
- package/fesm2015/vgroup-dialbox.mjs +130 -90
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +97 -57
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +3 -1
- package/lib/dialbox.component.d.ts +2 -0
- package/package.json +1 -1
|
@@ -24,6 +24,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
24
24
|
callAction: any;
|
|
25
25
|
conferenceCallInfo: any;
|
|
26
26
|
incomingFromImage: string;
|
|
27
|
+
cancelConnectingAction: any;
|
|
27
28
|
userId: any;
|
|
28
29
|
endCallEvent: EventEmitter<void>;
|
|
29
30
|
incomingCallsNewInfo: EventEmitter<any>;
|
|
@@ -190,6 +191,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
190
191
|
confirmNewCall(): void;
|
|
191
192
|
cancelNewCall(): void;
|
|
192
193
|
cancelCallToast(): void;
|
|
194
|
+
cancelConnectingCall(): void;
|
|
193
195
|
getToNumber(dialedNumber: string): Promise<any>;
|
|
194
196
|
isInvalidNumber(number: string): Promise<boolean>;
|
|
195
197
|
showDialAlert(message: string): void;
|
|
@@ -248,5 +250,5 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
248
250
|
private unholdPendingConference;
|
|
249
251
|
ngOnDestroy(): void;
|
|
250
252
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
251
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "newCallConference": "newCallConference"; "missCallInfo": "missCallInfo"; "userSettingInfo": "userSettingInfo"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; "incomingFromImage": "incomingFromImage"; "outgoingContactName": "outgoingContactName"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
253
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "newCallConference": "newCallConference"; "missCallInfo": "missCallInfo"; "userSettingInfo": "userSettingInfo"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; "incomingFromImage": "incomingFromImage"; "cancelConnectingAction": "cancelConnectingAction"; "outgoingContactName": "outgoingContactName"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
252
254
|
}
|
|
@@ -44,6 +44,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
44
44
|
conferenceCallList: EventEmitter<void>;
|
|
45
45
|
dialInputElement: ElementRef;
|
|
46
46
|
numberDialed: EventEmitter<string>;
|
|
47
|
+
cancelConnectingAction: any;
|
|
47
48
|
isCallInProgress: boolean;
|
|
48
49
|
keypadVal: any[];
|
|
49
50
|
showInputClearBtn: boolean;
|
|
@@ -113,6 +114,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
113
114
|
outgoingContactName: string;
|
|
114
115
|
onContactSelect(contact: any): void;
|
|
115
116
|
endCall(): void;
|
|
117
|
+
cancelConnectingCall(): void;
|
|
116
118
|
initiateCall(): Promise<boolean | undefined>;
|
|
117
119
|
isInvalidNumber(): Promise<boolean>;
|
|
118
120
|
saveLastDialed(): void;
|