@vgroup/dialbox 0.7.4 → 0.7.5
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 +46 -20
- package/esm2020/lib/dialbox.component.mjs +23 -8
- package/fesm2015/vgroup-dialbox.mjs +67 -27
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +67 -26
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +2 -1
- package/lib/dialbox.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -17,6 +17,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
17
17
|
newIncomingCallData?: Call;
|
|
18
18
|
newIncomingCallsList: any;
|
|
19
19
|
callerIdList: any;
|
|
20
|
+
newCallConference: any;
|
|
20
21
|
missCallInfo: any;
|
|
21
22
|
deviceId: any;
|
|
22
23
|
callAction: any;
|
|
@@ -206,5 +207,5 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
206
207
|
get showEndAllButton(): boolean;
|
|
207
208
|
ngOnDestroy(): void;
|
|
208
209
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
209
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "missCallInfo": "missCallInfo"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
210
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "newCallConference": "newCallConference"; "missCallInfo": "missCallInfo"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
210
211
|
}
|
|
@@ -26,6 +26,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
26
26
|
deviceNumberList: any[];
|
|
27
27
|
missCallInfo: any;
|
|
28
28
|
connectingIncomingCallId: string;
|
|
29
|
+
newCallConference: any;
|
|
29
30
|
set isDialpadHidden(value: boolean);
|
|
30
31
|
incomingCallData: any;
|
|
31
32
|
incomingCallnotification: any;
|