@vgroup/dialbox 0.6.3-0.2 → 0.6.3-0.21
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 +118 -538
- package/esm2020/lib/dialbox.component.mjs +19 -69
- package/fesm2015/vgroup-dialbox.mjs +133 -562
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +135 -605
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +8 -3
- package/lib/dialbox.component.d.ts +1 -0
- package/package.json +1 -1
|
@@ -83,6 +83,8 @@ 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;
|
|
86
88
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
87
89
|
ngOnInit(): void;
|
|
88
90
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -109,6 +111,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
109
111
|
private formatTime;
|
|
110
112
|
private pad;
|
|
111
113
|
private handleError;
|
|
114
|
+
endConfereneceCall(): void;
|
|
112
115
|
endCall(isAllCallEnd?: boolean): Promise<void>;
|
|
113
116
|
toggleMute(isConference?: boolean): Promise<void>;
|
|
114
117
|
audioStream?: MediaStream;
|
|
@@ -116,7 +119,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
116
119
|
toggleMic(): Promise<void>;
|
|
117
120
|
toggleKeypad(): void;
|
|
118
121
|
toggleContactsPanel(callInfo?: any, isClose?: boolean): any;
|
|
119
|
-
addRemoveParticipant(): void
|
|
122
|
+
addRemoveParticipant(): Promise<void>;
|
|
120
123
|
add(data?: any): Promise<void>;
|
|
121
124
|
callContact(contact: any, isUnsavedNumber?: boolean): Promise<any>;
|
|
122
125
|
CallToUnsavedNumber(number: string, isNewConference?: boolean): Promise<boolean>;
|
|
@@ -124,11 +127,9 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
124
127
|
isInvalidNumber(number: string): Promise<boolean>;
|
|
125
128
|
showDialAlert(message: string): void;
|
|
126
129
|
getAllParticipants(conferenceSid: string): void;
|
|
127
|
-
acceptConcurrentCall(incomingCall: any): void;
|
|
128
130
|
swapCalls(callInfo: any, isConferenceCall?: boolean): Promise<void>;
|
|
129
131
|
isMergeCallAllowed(): boolean;
|
|
130
132
|
mergeCalls(): Promise<void>;
|
|
131
|
-
endHeldCall(): void;
|
|
132
133
|
hasDetailedInfo(callData: any): boolean;
|
|
133
134
|
onCallInputs(num: any): void;
|
|
134
135
|
onCallInputEnter(ev: any): void;
|
|
@@ -156,6 +157,10 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
156
157
|
applyFilter(): void;
|
|
157
158
|
checkTextHeight(): void;
|
|
158
159
|
toggleText(): void;
|
|
160
|
+
showDisconnectModal: boolean;
|
|
161
|
+
onCallDisconnected(): void;
|
|
162
|
+
endConference(): void;
|
|
163
|
+
leaveConference(): void;
|
|
159
164
|
ngOnDestroy(): void;
|
|
160
165
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
161
166
|
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;
|