@cqa-lib/cqa-ui 1.0.82 → 1.0.84
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/esm2020/lib/filters/dynamic-filter/dynamic-filter.component.mjs +6 -1
- package/fesm2015/cqa-lib-cqa-ui.mjs +5 -0
- package/fesm2015/cqa-lib-cqa-ui.mjs.map +1 -1
- package/fesm2020/cqa-lib-cqa-ui.mjs +5 -0
- package/fesm2020/cqa-lib-cqa-ui.mjs.map +1 -1
- package/lib/filters/dynamic-filter/dynamic-filter.component.d.ts +9 -0
- package/package.json +1 -1
|
@@ -25,6 +25,15 @@ export interface DynamicFilterItem {
|
|
|
25
25
|
showSelectAll?: boolean;
|
|
26
26
|
selectAllLabel?: string;
|
|
27
27
|
selectedValue?: any | any[];
|
|
28
|
+
serverSearch?: boolean;
|
|
29
|
+
/** More results available server-side for infinite scroll */
|
|
30
|
+
hasMore?: boolean;
|
|
31
|
+
/** External loading state for async fetching */
|
|
32
|
+
isLoading?: boolean;
|
|
33
|
+
/** Callback when search text changes (server mode) */
|
|
34
|
+
onSearch?: (query: string) => void;
|
|
35
|
+
/** Callback when more data is requested (infinite scroll) */
|
|
36
|
+
onLoadMore?: (query?: string) => void;
|
|
28
37
|
selectedStartDate?: Date | string;
|
|
29
38
|
selectedEndDate?: Date | string;
|
|
30
39
|
onDateChange?: (value: {
|