@vgroup/dialbox 0.6.3-0.3 → 0.6.3-0.31
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 +284 -649
- package/esm2020/lib/dialbox.component.mjs +19 -69
- package/esm2020/lib/dialbox.module.mjs +1 -1
- package/esm2020/public-api.mjs +1 -1
- package/fesm2015/vgroup-dialbox.mjs +287 -667
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +301 -716
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +9 -2
- package/lib/dialbox.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -83,6 +83,9 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
83
83
|
isIncomingCallBtnDisable: boolean;
|
|
84
84
|
hostnumber: any;
|
|
85
85
|
isNewAddedCall: boolean;
|
|
86
|
+
deviceNumberList: any;
|
|
87
|
+
ourNumberInfo: any;
|
|
88
|
+
currentConferenceCall: any;
|
|
86
89
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
87
90
|
ngOnInit(): void;
|
|
88
91
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -109,11 +112,13 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
109
112
|
private formatTime;
|
|
110
113
|
private pad;
|
|
111
114
|
private handleError;
|
|
115
|
+
endConfereneceCall(): void;
|
|
112
116
|
endCall(isAllCallEnd?: boolean): Promise<void>;
|
|
113
117
|
toggleMute(isConference?: boolean): Promise<void>;
|
|
114
118
|
audioStream?: MediaStream;
|
|
115
119
|
micOn: boolean;
|
|
116
120
|
toggleMic(): Promise<void>;
|
|
121
|
+
getCurrentCallInfo(): any;
|
|
117
122
|
toggleKeypad(): void;
|
|
118
123
|
toggleContactsPanel(callInfo?: any, isClose?: boolean): any;
|
|
119
124
|
addRemoveParticipant(): Promise<void>;
|
|
@@ -124,11 +129,9 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
124
129
|
isInvalidNumber(number: string): Promise<boolean>;
|
|
125
130
|
showDialAlert(message: string): void;
|
|
126
131
|
getAllParticipants(conferenceSid: string): void;
|
|
127
|
-
acceptConcurrentCall(incomingCall: any): void;
|
|
128
132
|
swapCalls(callInfo: any, isConferenceCall?: boolean): Promise<void>;
|
|
129
133
|
isMergeCallAllowed(): boolean;
|
|
130
134
|
mergeCalls(): Promise<void>;
|
|
131
|
-
endHeldCall(): void;
|
|
132
135
|
hasDetailedInfo(callData: any): boolean;
|
|
133
136
|
onCallInputs(num: any): void;
|
|
134
137
|
onCallInputEnter(ev: any): void;
|
|
@@ -156,6 +159,10 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
156
159
|
applyFilter(): void;
|
|
157
160
|
checkTextHeight(): void;
|
|
158
161
|
toggleText(): void;
|
|
162
|
+
showDisconnectModal: boolean;
|
|
163
|
+
onCallDisconnected(): void;
|
|
164
|
+
endConference(): void;
|
|
165
|
+
leaveConference(): void;
|
|
159
166
|
ngOnDestroy(): void;
|
|
160
167
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
161
168
|
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "deviceId": "deviceId"; "conferenceCallInfo": "conferenceCallInfo"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershow": "isLoadershow"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
@@ -24,6 +24,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
24
24
|
isLoadershow: boolean;
|
|
25
25
|
isIncomingCallnotification: any;
|
|
26
26
|
notificationCallList: any;
|
|
27
|
+
deviceNumberList: any[];
|
|
27
28
|
set isDialpadHidden(value: boolean);
|
|
28
29
|
incomingCallData: any;
|
|
29
30
|
incomingCallnotification: any;
|