cat-qw-lib 2.5.23 → 2.5.25
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/fesm2022/cat-qw-lib.mjs +38 -16
- package/fesm2022/cat-qw-lib.mjs.map +1 -1
- package/lib/queue/components/queue-filter-dropdown/queue-filter-dropdown.component.d.ts +1 -2
- package/lib/queue/services/queue-filter-dropdown.service.d.ts +11 -0
- package/lib/shared/constant/SHARED.d.ts +0 -1
- package/package.json +1 -1
|
@@ -17,7 +17,6 @@ export declare class QueueFilterDropdownComponent implements OnChanges, OnDestro
|
|
|
17
17
|
}>;
|
|
18
18
|
loadingUnderwriters: boolean;
|
|
19
19
|
filters: QueueFilter;
|
|
20
|
-
private searchSubject;
|
|
21
20
|
private searchSubscription?;
|
|
22
21
|
appliedFilters: any;
|
|
23
22
|
filterApplied: EventEmitter<any>;
|
|
@@ -28,7 +27,7 @@ export declare class QueueFilterDropdownComponent implements OnChanges, OnDestro
|
|
|
28
27
|
onUnderwriterFilter(event: any): void;
|
|
29
28
|
get filterCount(): number;
|
|
30
29
|
onFilterBtnClick(): void;
|
|
31
|
-
private
|
|
30
|
+
private loadUnderwriterOptions;
|
|
32
31
|
setRiskRating(rating: RiskRating): void;
|
|
33
32
|
setApplicationType(type: ApplicationType): void;
|
|
34
33
|
setPurchaseType(type: PurchaseType): void;
|
|
@@ -32,6 +32,7 @@ export declare const UNASSIGNED_UNDERWRITER_ID = "unassigned";
|
|
|
32
32
|
*/
|
|
33
33
|
export declare class QueueFilterDropdownService extends BaseService<any> {
|
|
34
34
|
private configService;
|
|
35
|
+
private searchSubject;
|
|
35
36
|
constructor(http: HttpClient, configService: AppConfigService, store: BaseStore<any>, listService: ListService);
|
|
36
37
|
/**
|
|
37
38
|
* Override apiUrl to use the main API URL instead of catQwUrl
|
|
@@ -65,6 +66,16 @@ export declare class QueueFilterDropdownService extends BaseService<any> {
|
|
|
65
66
|
* @returns {Observable<UnderwriterOption[]>} Observable of underwriter options array
|
|
66
67
|
*/
|
|
67
68
|
getUnderwritersList(searchKey?: string): Observable<UnderwriterOption[]>;
|
|
69
|
+
/**
|
|
70
|
+
* Triggers a search for underwriters with debounce
|
|
71
|
+
* @param {string} searchKey - The search term to filter underwriters
|
|
72
|
+
*/
|
|
73
|
+
searchUnderwriters(searchKey?: string): void;
|
|
74
|
+
/**
|
|
75
|
+
* Returns an Observable that emits underwriter options with debounce and distinctUntilChanged
|
|
76
|
+
* @returns {Observable<UnderwriterOption[]>} Observable of underwriter options array
|
|
77
|
+
*/
|
|
78
|
+
getUnderwritersSearchObservable(): Observable<UnderwriterOption[]>;
|
|
68
79
|
static ɵfac: i0.ɵɵFactoryDeclaration<QueueFilterDropdownService, never>;
|
|
69
80
|
static ɵprov: i0.ɵɵInjectableDeclaration<QueueFilterDropdownService>;
|
|
70
81
|
}
|