@vgroup/dialbox 0.6.46 → 0.6.48
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 +62 -46
- package/esm2020/lib/dialbox.component.mjs +35 -20
- package/esm2020/lib/service/extension.service.mjs +3 -1
- package/fesm2015/vgroup-dialbox.mjs +116 -83
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +97 -64
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +4 -1
- package/lib/service/extension.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -99,7 +99,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
99
99
|
addRes: any;
|
|
100
100
|
startCall(callData: any, isNewConference?: boolean): Promise<any>;
|
|
101
101
|
onMuteUser(c: any): Promise<void>;
|
|
102
|
-
onHoldCall(c: any): void
|
|
102
|
+
onHoldCall(c: any): Promise<void>;
|
|
103
103
|
onEndIncomingCall(): Promise<void>;
|
|
104
104
|
onEndCall(c: any, isAllCallEnd?: boolean, isContect?: boolean): Promise<boolean>;
|
|
105
105
|
private initiateCall;
|
|
@@ -125,6 +125,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
125
125
|
toggleKeypad(): void;
|
|
126
126
|
toggleContactsPanel(callInfo?: any, isClose?: boolean): any;
|
|
127
127
|
addRemoveParticipant(): Promise<void>;
|
|
128
|
+
waitingCallAccept(incomingCallInfo: any): Promise<void>;
|
|
128
129
|
add(data?: any): Promise<void>;
|
|
129
130
|
callContact(contact: any, isUnsavedNumber?: boolean): Promise<any>;
|
|
130
131
|
CallToUnsavedNumber(number: string, isNewConference?: boolean): Promise<boolean>;
|
|
@@ -169,6 +170,8 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
169
170
|
convertHHMMToMinutes(time: string): number;
|
|
170
171
|
onRejectCall(callInfo: any): void;
|
|
171
172
|
isSelfNumber(participant: any): any;
|
|
173
|
+
getName(number: any): string | null;
|
|
174
|
+
getImg(number: any): any;
|
|
172
175
|
ngOnDestroy(): void;
|
|
173
176
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
174
177
|
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>;
|
|
@@ -29,6 +29,8 @@ export declare class ExtensionService {
|
|
|
29
29
|
isInputFocus$: BehaviorSubject<boolean>;
|
|
30
30
|
token: string;
|
|
31
31
|
isNewContactAdded: BehaviorSubject<boolean>;
|
|
32
|
+
isAcceptIIncomingCall: BehaviorSubject<string>;
|
|
33
|
+
isLoadershow: BehaviorSubject<boolean>;
|
|
32
34
|
isProfileUpdated: BehaviorSubject<boolean>;
|
|
33
35
|
private callerIdSubject;
|
|
34
36
|
callerId$: Observable<any>;
|