@vgroup/dialbox 0.7.76 → 0.7.77
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 +22 -10
- package/esm2020/lib/dialbox.component.mjs +2 -3
- package/esm2020/lib/environments/environments.mjs +12 -12
- package/fesm2015/vgroup-dialbox.mjs +47 -35
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +33 -22
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +2 -1
- package/package.json +1 -1
|
@@ -168,9 +168,10 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
168
168
|
private pad;
|
|
169
169
|
private handleError;
|
|
170
170
|
endConfereneceCall(conf?: any): void;
|
|
171
|
-
endCall(isAllCallEnd?: boolean): Promise<void>;
|
|
171
|
+
endCall(isAllCallEnd?: boolean, callDetail?: any): Promise<void>;
|
|
172
172
|
toggleMute(isConference?: boolean): Promise<void>;
|
|
173
173
|
getCurrentCallInfo(): any;
|
|
174
|
+
getCurrentCallIOwnInfo(call?: any): any;
|
|
174
175
|
toggleKeypad(): void;
|
|
175
176
|
toggleMuteIncomingCall(): void;
|
|
176
177
|
toggleContactsPanel(callInfo?: any, isClose?: boolean): any;
|