@vgroup/dialbox 0.6.1 → 0.6.4
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 +12 -6
- package/esm2020/lib/dialbox.component.mjs +33 -5
- package/fesm2015/vgroup-dialbox.mjs +60 -23
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +43 -9
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +2 -1
- package/lib/dialbox.component.d.ts +4 -0
- package/package.json +1 -1
|
@@ -37,6 +37,7 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
37
37
|
isOutgoingCall: boolean;
|
|
38
38
|
incomingCallDiv: boolean;
|
|
39
39
|
incomingCallInitiated: EventEmitter<void>;
|
|
40
|
+
isLoadershow: EventEmitter<boolean>;
|
|
40
41
|
endIncomingCallEvent: EventEmitter<void>;
|
|
41
42
|
callSid: any;
|
|
42
43
|
isRecording: boolean;
|
|
@@ -139,5 +140,5 @@ export declare class CallProgressComponent implements OnInit, OnChanges {
|
|
|
139
140
|
toggleText(): void;
|
|
140
141
|
ngOnDestroy(): void;
|
|
141
142
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
142
|
-
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"; "endIncomingCallEvent": "endIncomingCallEvent"; }, never, never, false, never>;
|
|
143
|
+
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>;
|
|
143
144
|
}
|
|
@@ -21,6 +21,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
21
21
|
contactInfo: any;
|
|
22
22
|
deviceId: any;
|
|
23
23
|
userId: any;
|
|
24
|
+
isLoadershow: boolean;
|
|
24
25
|
isIncomingCallnotification: any;
|
|
25
26
|
notificationCallList: any;
|
|
26
27
|
set isDialpadHidden(value: boolean);
|
|
@@ -76,7 +77,9 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
76
77
|
shakeDedicatedBtn: boolean;
|
|
77
78
|
isSmartDialCall: boolean;
|
|
78
79
|
private isInitialized;
|
|
80
|
+
beforeUnloadHandler(event: Event): void;
|
|
79
81
|
constructor(twilioService: TwilioService, extService: ExtensionService, dialog: MatDialog, ipService: IpAddressService, extensionService: ExtensionService, cdk: ChangeDetectorRef, router: Router, incomeingCallSocketService: IncomeingCallSocketService);
|
|
82
|
+
private getRemoveParticipants;
|
|
80
83
|
private initializeTwilio;
|
|
81
84
|
ngOnInit(): void;
|
|
82
85
|
getUserInformation(incomingCallData: any): void;
|
|
@@ -112,6 +115,7 @@ export declare class DialboxComponent implements OnInit, AfterViewInit, OnChange
|
|
|
112
115
|
isMinimised: boolean;
|
|
113
116
|
onMinimise(isMinimised: boolean): void;
|
|
114
117
|
handleNumberPaste(event: ClipboardEvent): void;
|
|
118
|
+
onLoadershow(event: any): void;
|
|
115
119
|
onEnter(num: string): void;
|
|
116
120
|
getUserCallSetting(): void;
|
|
117
121
|
onDedicatedNumSelect(id: any): void;
|