@vgroup/dialbox 0.0.40 → 0.0.41
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 +2 -7
- package/esm2020/lib/dialbox.component.mjs +3 -3
- package/fesm2015/vgroup-dialbox.mjs +3 -8
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +3 -8
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1736,17 +1736,12 @@ class CallProgressComponent {
|
|
|
1736
1736
|
console.log('Call Progress Component');
|
|
1737
1737
|
}
|
|
1738
1738
|
ngOnChanges(changes) {
|
|
1739
|
-
// console.log('Call Progress Component ngOnChanges');
|
|
1740
|
-
// console.log('Call Progress Component ngOnChanges changes', changes);
|
|
1741
1739
|
if (changes['callData']) {
|
|
1742
|
-
// console.log('Call Progress Component ngOnChanges callData', changes['callData'].currentValue);
|
|
1743
1740
|
if (changes['callData'].currentValue?.isIncomingCall) {
|
|
1744
|
-
// console.log('Incoming call detected, showing incoming call UI');
|
|
1745
1741
|
this.incomingCallDiv = true;
|
|
1746
|
-
this.cdr.detectChanges();
|
|
1742
|
+
this.cdr.detectChanges();
|
|
1747
1743
|
}
|
|
1748
1744
|
else {
|
|
1749
|
-
// For outgoing call
|
|
1750
1745
|
this.startCall(changes['callData'].currentValue);
|
|
1751
1746
|
}
|
|
1752
1747
|
}
|
|
@@ -3038,11 +3033,11 @@ class DialboxComponent {
|
|
|
3038
3033
|
newIncomingCallInitiated() {
|
|
3039
3034
|
this.isCallInProgress = true;
|
|
3040
3035
|
this.newIncomingCalls = [];
|
|
3041
|
-
this.incomingCallInitiated.emit();
|
|
3036
|
+
// this.incomingCallInitiated.emit();
|
|
3042
3037
|
}
|
|
3043
3038
|
incomingCallsNewInfo(data) {
|
|
3044
3039
|
this.incomingCallsList = data;
|
|
3045
|
-
this.incomingCallsNewInfoEvent.emit(data);
|
|
3040
|
+
// this.incomingCallsNewInfoEvent.emit(data);
|
|
3046
3041
|
}
|
|
3047
3042
|
ngOnDestroy() {
|
|
3048
3043
|
try {
|