cat-qw-lib 2.1.23 → 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' | null;
3
- export type ApplicationType = 'BTL' | 'HPP' | null;
4
- export type PurchaseType = 'Purchase' | 'Refinance' | null;
5
- export type TaskStatus = 'Not Started' | 'In-progress' | 'Completed' | null;
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;
@@ -94,6 +94,7 @@ export declare class TableSecondaryComponent implements OnInit, OnChanges, OnDes
94
94
  * @param {number} id - The ID of the record to edit.
95
95
  */
96
96
  handleEditClick(id: number): void;
97
+ get isAllCurrentPageSelected(): boolean;
97
98
  handleSelectAllRowData(checked: boolean): void;
98
99
  /**
99
100
  * Logs row data intended for editing.
@@ -153,6 +154,8 @@ export declare class TableSecondaryComponent implements OnInit, OnChanges, OnDes
153
154
  onSort(event: any): void;
154
155
  /**
155
156
  * Utility: Check if value is array (for template use)
157
+ * @param {any} val - The value to check if it is an array.
158
+ * @returns {boolean} True if the value is an array, otherwise false.
156
159
  */
157
160
  isArray(val: any): boolean;
158
161
  shouldShowValue(col: any, rowData: any): boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cat-qw-lib",
3
- "version": "2.1.23",
3
+ "version": "2.1.27",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0",
6
6
  "@angular/core": "^19.0.0"