cat-qw-lib 2.1.25 → 2.1.27
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.
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
2
|
import { QueueFilterDropdownService, RiskRating, ApplicationType, PurchaseType, TaskStatus } from '../../services/queue-filter-dropdown.service';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
/**
|
|
5
|
+
*
|
|
6
|
+
*/
|
|
4
7
|
export declare class QueueFilterDropdownComponent implements OnChanges {
|
|
5
8
|
filterService: QueueFilterDropdownService;
|
|
6
9
|
showDropdown: boolean;
|
|
@@ -1,17 +1,20 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
|
-
export type RiskRating = 'Low' | 'Medium' | 'High'
|
|
3
|
-
export type ApplicationType = 'BTL' | 'HPP'
|
|
4
|
-
export type PurchaseType = 'Purchase' | 'Refinance'
|
|
5
|
-
export type TaskStatus = 'Not Started' | 'In-progress' | 'Completed'
|
|
2
|
+
export type RiskRating = 'Low' | 'Medium' | 'High';
|
|
3
|
+
export type ApplicationType = 'BTL' | 'HPP';
|
|
4
|
+
export type PurchaseType = 'Purchase' | 'Refinance';
|
|
5
|
+
export type TaskStatus = 'Not Started' | 'In-progress' | 'Completed';
|
|
6
6
|
export interface QueueFilter {
|
|
7
|
-
riskRating: RiskRating;
|
|
8
|
-
applicationType: ApplicationType;
|
|
9
|
-
purchaseType: PurchaseType;
|
|
10
|
-
taskStatus: TaskStatus;
|
|
7
|
+
riskRating: RiskRating[];
|
|
8
|
+
applicationType: ApplicationType[];
|
|
9
|
+
purchaseType: PurchaseType[];
|
|
10
|
+
taskStatus: TaskStatus[];
|
|
11
11
|
financeMin: number | null;
|
|
12
12
|
financeMax: number | null;
|
|
13
13
|
pendingDays: number | null;
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
*/
|
|
15
18
|
export declare class QueueFilterDropdownService {
|
|
16
19
|
private filter;
|
|
17
20
|
setRiskRating(rating: RiskRating): void;
|