@vgroup/dialbox 0.4.21 → 0.4.23
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 +32 -5
- package/fesm2015/vgroup-dialbox.mjs +32 -4
- package/fesm2015/vgroup-dialbox.mjs.map +1 -1
- package/fesm2020/vgroup-dialbox.mjs +31 -4
- package/fesm2020/vgroup-dialbox.mjs.map +1 -1
- package/lib/components/call-progress/call-progress.component.d.ts +6 -0
- package/package.json +1 -1
|
@@ -56,6 +56,10 @@ export declare class CallProgressComponent implements OnInit, OnChanges, AfterVi
|
|
|
56
56
|
isCallInProgress: boolean;
|
|
57
57
|
isCurrentIncomingCallList: any;
|
|
58
58
|
isConferenceCallHold: boolean;
|
|
59
|
+
selectedUserInfo: any;
|
|
60
|
+
isSearchVisible: boolean;
|
|
61
|
+
searchText: string;
|
|
62
|
+
filteredList: never[];
|
|
59
63
|
constructor(extensionService: ExtensionService, cdr: ChangeDetectorRef, twilioService: TwilioService);
|
|
60
64
|
ngOnInit(): void;
|
|
61
65
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -118,6 +122,8 @@ export declare class CallProgressComponent implements OnInit, OnChanges, AfterVi
|
|
|
118
122
|
selectedIncomingCallInfo(data: any): void;
|
|
119
123
|
getHoldCallList(): any[];
|
|
120
124
|
onClickExpand(data: any): void;
|
|
125
|
+
toggleSearch(): void;
|
|
126
|
+
applyFilter(): void;
|
|
121
127
|
ngOnDestroy(): void;
|
|
122
128
|
static ɵfac: i0.ɵɵFactoryDeclaration<CallProgressComponent, never>;
|
|
123
129
|
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>;
|