@vgroup/dialbox 0.7.68 → 0.7.69
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 +6 -59
- package/esm2020/lib/dialbox.component.mjs +5 -3
- package/esm2020/lib/environments/environments.mjs +12 -12
- package/fesm2015/vgroup-dialbox.mjs +20 -71
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +20 -71
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +0 -5
- package/package.json +1 -1
|
@@ -135,8 +135,6 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
135
135
|
leaveConfConferenceName: string;
|
|
136
136
|
isParticipantPanelLoading: boolean;
|
|
137
137
|
isConnectingIncomingCallId: any;
|
|
138
|
-
pendingNewCallHeldParticipant: any;
|
|
139
|
-
isCallCancelled: boolean;
|
|
140
138
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
141
139
|
ngOnInit(): void;
|
|
142
140
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -180,7 +178,6 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
180
178
|
add(data?: any, ourNumberInfo?: any, capturedCall?: Call): Promise<void>;
|
|
181
179
|
callContact(contact: any, isUnsavedNumber?: boolean, options?: {
|
|
182
180
|
skipDuplicateCheck?: boolean;
|
|
183
|
-
alreadyNormalized?: boolean;
|
|
184
181
|
}): Promise<any>;
|
|
185
182
|
CallToUnsavedNumber(number: string, isNewConference?: boolean, options?: {
|
|
186
183
|
skipDuplicateCheck?: boolean;
|
|
@@ -188,7 +185,6 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
188
185
|
onAddNewCall(callData: any, isNewConferenceCall?: boolean): void;
|
|
189
186
|
confirmNewCall(): void;
|
|
190
187
|
cancelNewCall(): void;
|
|
191
|
-
cancelCallToast(): void;
|
|
192
188
|
getToNumber(dialedNumber: string): Promise<any>;
|
|
193
189
|
isInvalidNumber(number: string): Promise<boolean>;
|
|
194
190
|
showDialAlert(message: string): void;
|
|
@@ -244,7 +240,6 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
244
240
|
get totalParticipantsCount(): number;
|
|
245
241
|
onReasonCheckChanged(newValue: boolean): void;
|
|
246
242
|
resetLeaveTimer(): void;
|
|
247
|
-
private unholdPendingConference;
|
|
248
243
|
ngOnDestroy(): void;
|
|
249
244
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
250
245
|
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>;
|