@vgroup/dialbox 0.6.9 → 0.6.11
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 -1
- package/esm2020/lib/dialbox.component.mjs +2 -2
- package/fesm2015/vgroup-dialbox.mjs +2 -1
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +2 -1
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -1995,6 +1995,7 @@ class CallProgressComponent {
|
|
|
1995
1995
|
this.incomeingCallSocketService.pause();
|
|
1996
1996
|
}
|
|
1997
1997
|
this.isRinging = false;
|
|
1998
|
+
this.isClickExpand = false;
|
|
1998
1999
|
this.isCallInProgress = false;
|
|
1999
2000
|
this.isConferenceCallHold = false;
|
|
2000
2001
|
this.call.disconnect();
|
|
@@ -3686,7 +3687,7 @@ class DialboxComponent {
|
|
|
3686
3687
|
ngOnChanges(changes) {
|
|
3687
3688
|
if (changes['incomingCallnotification']?.currentValue && this.incomingCallnotification) {
|
|
3688
3689
|
this.isIncomingCallnotification = true;
|
|
3689
|
-
if (this.incomingCallnotification.data.content == "IncomingCall") {
|
|
3690
|
+
if (this.incomingCallnotification.data.content == "IncomingCall" && this.incomingCallnotification.data.data.status != "rejected") {
|
|
3690
3691
|
let callerInfo;
|
|
3691
3692
|
let numberList = this.callerIdList.map((res) => res.number);
|
|
3692
3693
|
if (!numberList.includes(this.incomingCallnotification.data.data?.fromNumber)) {
|