@vgroup/dialbox 0.6.29 → 0.6.30
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 +382 -236
- package/esm2020/lib/dialbox.component.mjs +5 -5
- package/fesm2015/vgroup-dialbox.mjs +371 -217
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +385 -239
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +9 -4
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
16
16
|
selectedCallerId: any;
|
|
17
17
|
newIncomingCallData?: Call;
|
|
18
18
|
newIncomingCallsList: any;
|
|
19
|
+
callerIdList: any;
|
|
19
20
|
deviceId: any;
|
|
20
21
|
conferenceCallInfo: any;
|
|
21
22
|
userId: any;
|
|
@@ -78,13 +79,17 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
78
79
|
show: boolean;
|
|
79
80
|
};
|
|
80
81
|
leftParticipent: any;
|
|
82
|
+
conferenceCallList: any[];
|
|
83
|
+
isIncomingCallBtnDisable: boolean;
|
|
84
|
+
hostnumber: any;
|
|
85
|
+
isNewAddedCall: boolean;
|
|
81
86
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
82
87
|
ngOnInit(): void;
|
|
83
88
|
ngOnChanges(changes: SimpleChanges): void;
|
|
84
89
|
getStatus(res: any): any;
|
|
85
90
|
GetContactsList(): void;
|
|
86
91
|
addRes: any;
|
|
87
|
-
startCall(callData: any): Promise<any>;
|
|
92
|
+
startCall(callData: any, isNewConference?: boolean): Promise<any>;
|
|
88
93
|
onMuteUser(c: any): Promise<void>;
|
|
89
94
|
onHoldCall(c: any): void;
|
|
90
95
|
onEndIncomingCall(): Promise<void>;
|
|
@@ -110,11 +115,11 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
110
115
|
micOn: boolean;
|
|
111
116
|
toggleMic(): Promise<void>;
|
|
112
117
|
toggleKeypad(): void;
|
|
113
|
-
toggleContactsPanel(
|
|
118
|
+
toggleContactsPanel(callInfo?: any, isClose?: boolean): any;
|
|
114
119
|
addRemoveParticipant(): void;
|
|
115
120
|
add(data?: any): Promise<void>;
|
|
116
121
|
callContact(contact: any, isUnsavedNumber?: boolean): Promise<any>;
|
|
117
|
-
CallToUnsavedNumber(number: string): Promise<boolean>;
|
|
122
|
+
CallToUnsavedNumber(number: string, isNewConference?: boolean): Promise<boolean>;
|
|
118
123
|
getToNumber(dialedNumber: string): Promise<any>;
|
|
119
124
|
isInvalidNumber(number: string): Promise<boolean>;
|
|
120
125
|
showDialAlert(message: string): void;
|
|
@@ -153,5 +158,5 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
153
158
|
toggleText(): void;
|
|
154
159
|
ngOnDestroy(): void;
|
|
155
160
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
156
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "deviceId": "deviceId"; "conferenceCallInfo": "conferenceCallInfo"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershow": "isLoadershow"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
161
|
+
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>;
|
|
157
162
|
}
|