@vgroup/dialbox 0.6.82 → 0.6.83
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 +45 -124
- package/esm2020/lib/dialbox.component.mjs +13 -62
- package/fesm2015/vgroup-dialbox.mjs +54 -184
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +53 -180
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +0 -2
- package/lib/dialbox.component.d.ts +1 -3
- package/package.json +1 -1
|
@@ -124,7 +124,6 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
124
124
|
onholdOrUnholdParticipant(payload: any): Promise<[] | undefined>;
|
|
125
125
|
private addParticipantToCall;
|
|
126
126
|
private addClientParticipant;
|
|
127
|
-
private getCallStatusOfParticipants;
|
|
128
127
|
private onMuteParticipant;
|
|
129
128
|
private getRemoveParticipants;
|
|
130
129
|
private getCallAuthId;
|
|
@@ -158,7 +157,6 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
158
157
|
hasDetailedInfo(callData: any): boolean;
|
|
159
158
|
onCallInputs(num: any): void;
|
|
160
159
|
onCallInputEnter(ev: any): void;
|
|
161
|
-
closeIncomingCall(data: any): void;
|
|
162
160
|
clearInputs(): void;
|
|
163
161
|
isMinimised: boolean;
|
|
164
162
|
minimiseDialpad(): void;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { TwilioService } from './service/twilio.service';
|
|
3
3
|
import { ExtensionService } from './service/extension.service';
|
|
4
|
-
import { MatDialog } from '@angular/material/dialog';
|
|
5
4
|
import { IpAddressService } from './service/ip-address.service';
|
|
6
5
|
import { Router } from '@angular/router';
|
|
7
6
|
import { Call } from '@twilio/voice-sdk';
|
|
@@ -10,7 +9,6 @@ import * as i0 from "@angular/core";
|
|
|
10
9
|
export declare class DialboxComponent implements OnInit, AfterViewInit, OnChanges {
|
|
11
10
|
private twilioService;
|
|
12
11
|
private extService;
|
|
13
|
-
private dialog;
|
|
14
12
|
private ipService;
|
|
15
13
|
private extensionService;
|
|
16
14
|
private cdk;
|
|
@@ -82,7 +80,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
82
80
|
isSmartDialCall: boolean;
|
|
83
81
|
private isInitialized;
|
|
84
82
|
beforeUnloadHandler(event: Event): void;
|
|
85
|
-
constructor(twilioService: TwilioService, extService: ExtensionService,
|
|
83
|
+
constructor(twilioService: TwilioService, extService: ExtensionService, ipService: IpAddressService, extensionService: ExtensionService, cdk: ChangeDetectorRef, router: Router, incomeingCallSocketService: IncomeingCallSocketService);
|
|
86
84
|
private getRemoveParticipants;
|
|
87
85
|
private initializeTwilio;
|
|
88
86
|
ngOnInit(): void;
|