@vgroup/dialbox 0.7.21 → 0.7.23
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 +8 -5
- package/esm2020/lib/dialbox.component.mjs +7 -4
- package/fesm2015/vgroup-dialbox.mjs +25 -19
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +13 -7
- 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
|
@@ -23,6 +23,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
23
23
|
deviceId: any;
|
|
24
24
|
callAction: any;
|
|
25
25
|
conferenceCallInfo: any;
|
|
26
|
+
incomingFromImage: string;
|
|
26
27
|
userId: any;
|
|
27
28
|
endCallEvent: EventEmitter<void>;
|
|
28
29
|
incomingCallsNewInfo: EventEmitter<any>;
|
|
@@ -230,5 +231,5 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
230
231
|
get activeParticipantsCount(): number;
|
|
231
232
|
ngOnDestroy(): void;
|
|
232
233
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
233
|
-
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"; "outgoingContactName": "outgoingContactName"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
234
|
+
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>;
|
|
234
235
|
}
|
|
@@ -87,6 +87,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
87
87
|
private isReloadConfirmed;
|
|
88
88
|
contactNameForLoader: string;
|
|
89
89
|
contactImgForLoader: string;
|
|
90
|
+
incomingFromImage: string;
|
|
90
91
|
handleRefreshShortcut(event: KeyboardEvent): void;
|
|
91
92
|
private confirmReloadDuringCall;
|
|
92
93
|
beforeUnloadHandler(event: BeforeUnloadEvent): true | undefined;
|