cat-qw-lib 2.6.87-uw → 2.6.87

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.
@@ -0,0 +1,13 @@
1
+ /** Icon and colour configuration for a single valuation status shown in the queue "Val status" column. */
2
+ export interface ValuationStatusConfig {
3
+ icon: string;
4
+ iconClass: string;
5
+ textClass: string;
6
+ }
7
+ /**
8
+ * Maps a lowercased valuation/instruction status to its icon and colour configuration.
9
+ * Keys must be lowercase; lookups normalise the incoming status with `toLowerCase()`.
10
+ */
11
+ export declare const VALUATION_STATUS_CONFIG_MAP: Readonly<Record<string, ValuationStatusConfig>>;
12
+ /** Fallback configuration used when a status is not present in {@link VALUATION_STATUS_CONFIG_MAP}. */
13
+ export declare const VALUATION_STATUS_DEFAULT_CONFIG: ValuationStatusConfig;
@@ -19,9 +19,8 @@ import * as i17 from "../shared/shared.module";
19
19
  import * as i18 from "primeng/tag";
20
20
  import * as i19 from "../shared/table-secondary/components/table-secondary.component";
21
21
  import * as i20 from "../shared/components/skeleton/skeleton.component";
22
- import * as i21 from "primeng/tooltip";
23
22
  export declare class QueueModule {
24
23
  static ɵfac: i0.ɵɵFactoryDeclaration<QueueModule, never>;
25
- static ɵmod: i0.ɵɵNgModuleDeclaration<QueueModule, [typeof i1.QueueContainerComponent, typeof i2.QueueSearchComponent, typeof i3.QueueItemComponent, typeof i4.QueueListComponent, typeof i5.QueueRecordTableComponent, typeof i6.QueueFilterDropdownComponent], [typeof i7.CommonModule, typeof i8.QueueRoutingModule, typeof i9.FormsModule, typeof i10.DropdownModule, typeof i11.MultiSelectModule, typeof i12.RippleModule, typeof i13.ButtonModule, typeof i14.RouterModule, typeof i15.BadgeModule, typeof i16.PaginatorModule, typeof i17.SharedModule, typeof i18.TagModule, typeof i19.TableSecondaryComponent, typeof i20.SkeletonComponent, typeof i21.TooltipModule], [typeof i1.QueueContainerComponent]>;
24
+ static ɵmod: i0.ɵɵNgModuleDeclaration<QueueModule, [typeof i1.QueueContainerComponent, typeof i2.QueueSearchComponent, typeof i3.QueueItemComponent, typeof i4.QueueListComponent, typeof i5.QueueRecordTableComponent, typeof i6.QueueFilterDropdownComponent], [typeof i7.CommonModule, typeof i8.QueueRoutingModule, typeof i9.FormsModule, typeof i10.DropdownModule, typeof i11.MultiSelectModule, typeof i12.RippleModule, typeof i13.ButtonModule, typeof i14.RouterModule, typeof i15.BadgeModule, typeof i16.PaginatorModule, typeof i17.SharedModule, typeof i18.TagModule, typeof i19.TableSecondaryComponent, typeof i20.SkeletonComponent], [typeof i1.QueueContainerComponent]>;
26
25
  static ɵinj: i0.ɵɵInjectorDeclaration<QueueModule>;
27
26
  }
@@ -18,10 +18,6 @@ export declare class QueueRecordTableBuilderService extends TableBuilder {
18
18
  * @returns {string} Truncated text
19
19
  */
20
20
  private truncateText;
21
- /**
22
- * GBP display for queue currency columns: £ with thousands separator and 2 decimals; null/empty -> '-'.
23
- */
24
- private formatQueueCurrencyValue;
25
21
  private getColumnOrder;
26
22
  buildSecondaryTable(records: any[], headerWidths?: {
27
23
  [key: string]: string;
@@ -29,7 +29,6 @@ export declare class QueueService extends BaseService<QueueModel> {
29
29
  getQueueRecordsByApiConfig(apiConfig: string, params?: any): Observable<any>;
30
30
  /**
31
31
  * Fetches paginated queue records using the provided apiConfig URL with search and pagination support.
32
- * This is the unified method used for both initial data loading and search functionality.
33
32
  * Uses POST method with underwriterIds and unassigned in body, other params in query string.
34
33
  * @param {string} apiConfig - The full API endpoint to fetch records for the selected queue
35
34
  * @param {string} [searchKey] - Optional search term
@@ -124,8 +124,6 @@ export declare class SHARED {
124
124
  static REFERRED: string;
125
125
  static FINANCE: string;
126
126
  static TOTAL_FINANCE_AMOUNT: string;
127
- static BASE_PRICE: string;
128
- static MONTHLY_PAYMENT: string;
129
127
  static VALUATION_STATUS: string;
130
128
  static TASKS: string;
131
129
  static TASK_BROKER_LABEL: string;
@@ -301,7 +299,7 @@ export declare const QUEUE_RECORD_TABLE_COLUMN_WIDTH_LIST: {
301
299
  age: string;
302
300
  tasks: string;
303
301
  productName: string;
304
- basePrice: string;
302
+ baseRate: string;
305
303
  monthlyPayment: string;
306
304
  submittedDate: string;
307
305
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cat-qw-lib",
3
- "version": "2.6.87-uw",
3
+ "version": "2.6.87",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0",
6
6
  "@angular/core": "^19.0.0"