@vgroup/dialbox 0.7.23 → 0.7.25
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 +25 -17
- package/esm2020/lib/dialbox.component.mjs +42 -30
- package/esm2020/lib/service/twilio.service.mjs +7 -5
- package/fesm2015/vgroup-dialbox.mjs +84 -65
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +71 -49
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +1 -0
- package/lib/dialbox.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -221,6 +221,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
221
221
|
onRejectCall(callInfo: any): void;
|
|
222
222
|
isSelfNumber(participant: any): any;
|
|
223
223
|
shouldShowSeparator(index: number): boolean;
|
|
224
|
+
onCloseC2CInfoPanel(): void;
|
|
224
225
|
getName(number: any): string | null;
|
|
225
226
|
getImg(number: any): any;
|
|
226
227
|
get showEndAllButton(): boolean;
|
|
@@ -102,7 +102,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
102
102
|
ngAfterViewInit(): void;
|
|
103
103
|
ngOnChanges(changes: SimpleChanges): void;
|
|
104
104
|
private registerDragElement;
|
|
105
|
-
incomingCallNotification(callerInfo: any): Promise<void>;
|
|
105
|
+
incomingCallNotification(callerInfo: any, notification: any): Promise<void>;
|
|
106
106
|
addNumber(num: any): void;
|
|
107
107
|
hideDialpad(): void;
|
|
108
108
|
onDialInputChange(inputVal: any): void;
|