@vgroup/dialbox 0.7.15 → 0.7.17
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 +53 -18
- package/esm2020/lib/dialbox.component.mjs +13 -3
- package/fesm2015/vgroup-dialbox.mjs +81 -36
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +64 -19
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +8 -1
- package/lib/dialbox.component.d.ts +2 -0
- package/package.json +1 -1
- package/vgroup-dialbox-0.7.15.tgz +0 -0
|
@@ -19,6 +19,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
19
19
|
callerIdList: any;
|
|
20
20
|
newCallConference: any;
|
|
21
21
|
missCallInfo: any;
|
|
22
|
+
userSettingInfo: any;
|
|
22
23
|
deviceId: any;
|
|
23
24
|
callAction: any;
|
|
24
25
|
conferenceCallInfo: any;
|
|
@@ -121,6 +122,12 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
121
122
|
selectedConfName: any;
|
|
122
123
|
pendingMuteParticipants: Set<string>;
|
|
123
124
|
intendedMuteStates: Map<string, boolean>;
|
|
125
|
+
showNewCallLoader: boolean;
|
|
126
|
+
newCallLoaderData: {
|
|
127
|
+
name: string;
|
|
128
|
+
phone: string;
|
|
129
|
+
img?: string;
|
|
130
|
+
};
|
|
124
131
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService, ipService: IpAddressService, incomeingCallSocketService: IncomeingCallSocketService);
|
|
125
132
|
ngOnInit(): void;
|
|
126
133
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -212,5 +219,5 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
212
219
|
get showEndAllButton(): boolean;
|
|
213
220
|
ngOnDestroy(): void;
|
|
214
221
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
215
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "newCallConference": "newCallConference"; "missCallInfo": "missCallInfo"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
222
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "callerIdList": "callerIdList"; "newCallConference": "newCallConference"; "missCallInfo": "missCallInfo"; "userSettingInfo": "userSettingInfo"; "deviceId": "deviceId"; "callAction": "callAction"; "conferenceCallInfo": "conferenceCallInfo"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; "isLoadershown": "isLoadershown"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
216
223
|
}
|
|
@@ -27,6 +27,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
27
27
|
missCallInfo: any;
|
|
28
28
|
connectingIncomingCallId: string;
|
|
29
29
|
newCallConference: any;
|
|
30
|
+
userSettingInfo: any;
|
|
30
31
|
set isDialpadHidden(value: boolean);
|
|
31
32
|
incomingCallData: any;
|
|
32
33
|
incomingCallnotification: any;
|
|
@@ -135,6 +136,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
135
136
|
rejectNewIncomingCall(call: Call): void;
|
|
136
137
|
newIncomingCallInitiated(): void;
|
|
137
138
|
incomingCallsNewInfo(data: any): void;
|
|
139
|
+
getUserSettings(): void;
|
|
138
140
|
ngOnDestroy(): void;
|
|
139
141
|
static ɵfac: i0.ɵɵFactoryDeclaration<DialboxComponent, never>;
|
|
140
142
|
static ɵcmp: i0.ɵɵComponentDeclaration<DialboxComponent, "lib-dialbox", never, { "autoOpenOnIncoming": "autoOpenOnIncoming"; "contactInfo": "contactInfo"; "deviceId": "deviceId"; "userId": "userId"; "callAction": "callAction"; "isDialpadHidden": "isDialpadHidden"; "incomingCallData": "incomingCallData"; "incomingCallnotification": "incomingCallnotification"; "updatedTwilioToken": "updatedTwilioToken"; }, { "closeDialpadEvent": "closeDialpadEvent"; "callInitiated": "callInitiated"; "endCallEvent": "endCallEvent"; "minimiseEvent": "minimiseEvent"; "incomingCallsNewInfoEvent": "incomingCallsNewInfoEvent"; "incomingCallInitiated": "incomingCallInitiated"; "conferenceCallList": "conferenceCallList"; "numberDialed": "numberDialed"; }, never, never, false, never>;
|
package/package.json
CHANGED
|
Binary file
|