cat-qw-lib 2.6.86 → 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cat-qw-lib",
3
- "version": "2.6.86",
3
+ "version": "2.6.87",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^19.0.0",
6
6
  "@angular/core": "^19.0.0"