@vgroup/dialbox 0.4.49 → 0.4.51
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 +22 -3
- package/fesm2015/vgroup-dialbox.mjs +21 -2
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +21 -2
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +4 -0
- package/package.json +1 -1
|
@@ -58,9 +58,11 @@ export declare class CallProgressComponent implements OnInit, OnChanges, AfterVi
|
|
|
58
58
|
isConferenceCallHold: boolean;
|
|
59
59
|
selectedUserInfo: any;
|
|
60
60
|
isSearchVisible: boolean;
|
|
61
|
+
isExpanded: boolean;
|
|
61
62
|
searchText: string;
|
|
62
63
|
filteredList: any;
|
|
63
64
|
filteredParticipentList: any;
|
|
65
|
+
showButton: boolean;
|
|
64
66
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService);
|
|
65
67
|
ngOnInit(): void;
|
|
66
68
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -125,6 +127,8 @@ export declare class CallProgressComponent implements OnInit, OnChanges, AfterVi
|
|
|
125
127
|
setIncomingCallStatus(data: any): void;
|
|
126
128
|
toggleSearch(): void;
|
|
127
129
|
applyFilter(): void;
|
|
130
|
+
checkTextHeight(): void;
|
|
131
|
+
toggleText(): void;
|
|
128
132
|
ngOnDestroy(): void;
|
|
129
133
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
130
134
|
static ɵcmp: i0.ɵɵComponentDeclaration<CallProgressComponent, "lib-call-progress", never, { "callData": "callData"; "selectedCallerId": "selectedCallerId"; "newIncomingCallData": "newIncomingCallData"; "newIncomingCallsList": "newIncomingCallsList"; "deviceId": "deviceId"; }, { "endCallEvent": "endCallEvent"; "incomingCallsNewInfo": "incomingCallsNewInfo"; "minimiseEvent": "minimiseEvent"; "incomingCallInitiated": "incomingCallInitiated"; }, never, never, false, never>;
|