@vgroup/dialbox 0.7.37 → 0.7.38
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 +27 -23
- package/fesm2015/vgroup-dialbox.mjs +26 -22
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +26 -22
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +7 -2
- package/package.json +1 -1
|
@@ -133,6 +133,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
133
133
|
showLeaveConfirmationModal: boolean;
|
|
134
134
|
leaveConfParticipant: any;
|
|
135
135
|
leaveConfConferenceName: string;
|
|
136
|
+
isParticipantPanelLoading: boolean;
|
|
136
137
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
137
138
|
ngOnInit(): void;
|
|
138
139
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -174,8 +175,12 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
174
175
|
addRemoveParticipant(): Promise<void>;
|
|
175
176
|
waitingCallAccept(incomingCallInfo: any): Promise<void>;
|
|
176
177
|
add(data?: any, ourNumberInfo?: any, capturedCall?: Call): Promise<void>;
|
|
177
|
-
callContact(contact: any, isUnsavedNumber?: boolean
|
|
178
|
-
|
|
178
|
+
callContact(contact: any, isUnsavedNumber?: boolean, options?: {
|
|
179
|
+
skipDuplicateCheck?: boolean;
|
|
180
|
+
}): Promise<any>;
|
|
181
|
+
CallToUnsavedNumber(number: string, isNewConference?: boolean, options?: {
|
|
182
|
+
skipDuplicateCheck?: boolean;
|
|
183
|
+
}): Promise<boolean>;
|
|
179
184
|
onAddNewCall(callData: any, isNewConferenceCall?: boolean): void;
|
|
180
185
|
confirmNewCall(): void;
|
|
181
186
|
cancelNewCall(): void;
|