@vgroup/dialbox 0.6.85 → 0.6.87
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 +84 -18
- package/esm2020/lib/dialbox.component.mjs +23 -17
- package/esm2020/lib/environments/environments.mjs +10 -10
- package/fesm2015/vgroup-dialbox.mjs +133 -59
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +114 -42
- 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 +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
|
+
missCallInfo: any;
|
|
20
21
|
deviceId: any;
|
|
21
22
|
callAction: any;
|
|
22
23
|
conferenceCallInfo: any;
|
|
@@ -81,6 +82,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
81
82
|
leftParticipent: any;
|
|
82
83
|
conferenceCallList: any[];
|
|
83
84
|
isIncomingCallBtnDisable: boolean;
|
|
85
|
+
isConnecting: boolean;
|
|
84
86
|
hostnumber: any;
|
|
85
87
|
isNewAddedCall: boolean;
|
|
86
88
|
deviceNumberList: any;
|
|
@@ -198,5 +200,5 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
198
200
|
get showEndAllButton(): boolean;
|
|
199
201
|
ngOnDestroy(): void;
|
|
200
202
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
201
|
-
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>;
|
|
203
|
+
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>;
|
|
202
204
|
}
|
|
@@ -24,6 +24,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
24
24
|
isIncomingCallnotification: any;
|
|
25
25
|
notificationCallList: any;
|
|
26
26
|
deviceNumberList: any[];
|
|
27
|
+
missCallInfo: any;
|
|
27
28
|
set isDialpadHidden(value: boolean);
|
|
28
29
|
incomingCallData: any;
|
|
29
30
|
incomingCallnotification: any;
|