@vgroup/dialbox 0.6.84 → 0.6.86
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 +236 -131
- package/esm2020/lib/dialbox.component.mjs +19 -12
- package/esm2020/lib/environments/environments.mjs +10 -10
- package/esm2020/lib/service/twilio.service.mjs +2 -2
- package/fesm2015/vgroup-dialbox.mjs +282 -168
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +263 -151
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +7 -5
- 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;
|
|
@@ -39,7 +40,6 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
39
40
|
currentCall: any;
|
|
40
41
|
isConference: boolean;
|
|
41
42
|
isOutgoingCall: boolean;
|
|
42
|
-
incomingCallDiv: boolean;
|
|
43
43
|
incomingCallInitiated: EventEmitter<void>;
|
|
44
44
|
isLoadershown: EventEmitter<boolean>;
|
|
45
45
|
endIncomingCallEvent: EventEmitter<void>;
|
|
@@ -82,6 +82,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
82
82
|
leftParticipent: any;
|
|
83
83
|
conferenceCallList: any[];
|
|
84
84
|
isIncomingCallBtnDisable: boolean;
|
|
85
|
+
isConnecting: boolean;
|
|
85
86
|
hostnumber: any;
|
|
86
87
|
isNewAddedCall: boolean;
|
|
87
88
|
deviceNumberList: any;
|
|
@@ -107,10 +108,14 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
107
108
|
};
|
|
108
109
|
isUnholdConferenceCall: any;
|
|
109
110
|
conferenceCallNullCount: number;
|
|
111
|
+
allConParticipentList: any;
|
|
112
|
+
conferenceCallIDForParticipantList: any;
|
|
110
113
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
111
114
|
ngOnInit(): void;
|
|
112
115
|
ngOnChanges(changes: SimpleChanges): void;
|
|
113
116
|
rejoinHost(callInfo: any): Promise<void>;
|
|
117
|
+
updatedParticipantList(participant: any): void;
|
|
118
|
+
participantListIndo(participants: any): Promise<void>;
|
|
114
119
|
showCallingToast(number: string): void;
|
|
115
120
|
getStatus(res: any): boolean;
|
|
116
121
|
GetContactsList(): void;
|
|
@@ -171,11 +176,8 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
171
176
|
stopRecordingTimer(): void;
|
|
172
177
|
getFormattedTime(): string;
|
|
173
178
|
pollCallStatus(callAuthId: string): void;
|
|
174
|
-
getUserInformation(id: any): void;
|
|
175
179
|
selectedIncomingCallInfo(data: any): void;
|
|
176
|
-
getHoldCallList(): any[];
|
|
177
180
|
onClickExpand(data: any): void;
|
|
178
|
-
setIncomingCallStatus(data: any): void;
|
|
179
181
|
toggleSearch(): void;
|
|
180
182
|
applyFilter(): void;
|
|
181
183
|
checkTextHeight(): void;
|
|
@@ -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;
|