@turquoisehealth/pit-viper 2.139.1-dev.1 → 2.139.1-dev.3
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/package.json +1 -1
- package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/filters/filterHelpers.d.ts +2 -1
- package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useFilterStore.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +2426 -2392
|
@@ -21,7 +21,8 @@ export declare const mapQueryToFilterModel: (query: QueryBuilderOutput | null) =
|
|
|
21
21
|
* Different fields are combined with AND logic at the top level.
|
|
22
22
|
*/
|
|
23
23
|
export declare const mapQueryToAdvancedFilterModel: (query: QueryBuilderOutput | null) => AdvancedFilterModel | null;
|
|
24
|
-
export declare const
|
|
24
|
+
export declare const filterModelContainsColId: (filterModel: FilterModel | AdvancedFilterModel | null | undefined, colId: string) => boolean;
|
|
25
|
+
export declare const mergeFilterModels: (colDefs: ColDef[], primaryModel: FilterModel | null | undefined, secondaryModel: FilterModel | null | undefined) => FilterModel;
|
|
25
26
|
export declare const hasSetFilter: (colDef: ColDef) => boolean;
|
|
26
27
|
export declare const addHandlerToSetFilter: <T>(colDef: ColDef, handler: (params: SetFilterValuesFuncParams<T, FilterValueResponseOption>) => void) => ColDef<T>;
|
|
27
28
|
export declare const getSetFilter: (gridApi: GridApi, colDef: ColDef) => Promise<SetFilter | null>;
|
package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useFilterStore.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ export declare const createFilterStore: () => {
|
|
|
26
26
|
setFilterSelectedValues: (colField: string, selectedValues: (string | null)[]) => (string | null)[];
|
|
27
27
|
setFilterValueSearchText: (colField: string, searchText: string | null) => void;
|
|
28
28
|
tableSearchFilterModel: Ref<FilterModel | AdvancedFilterModel | null, FilterModel | AdvancedFilterModel | null>;
|
|
29
|
+
tableSearchFilterModelEmpty: ComputedRef<boolean>;
|
|
29
30
|
tableSearchHandler: Ref<((params: TableSearchHandlerParams<unknown>) => Promise<(QueryTerm | null)[]>) | undefined, ((params: TableSearchHandlerParams<unknown>) => Promise<(QueryTerm | null)[]>) | undefined>;
|
|
30
31
|
};
|
|
31
32
|
export declare const useFilterStore: () => {
|
|
@@ -47,5 +48,6 @@ export declare const useFilterStore: () => {
|
|
|
47
48
|
setFilterSelectedValues: (colField: string, selectedValues: (string | null)[]) => (string | null)[];
|
|
48
49
|
setFilterValueSearchText: (colField: string, searchText: string | null) => void;
|
|
49
50
|
tableSearchFilterModel: Ref<FilterModel | AdvancedFilterModel | null, FilterModel | AdvancedFilterModel | null>;
|
|
51
|
+
tableSearchFilterModelEmpty: ComputedRef<boolean>;
|
|
50
52
|
tableSearchHandler: Ref<((params: TableSearchHandlerParams<unknown>) => Promise<(QueryTerm | null)[]>) | undefined, ((params: TableSearchHandlerParams<unknown>) => Promise<(QueryTerm | null)[]>) | undefined>;
|
|
51
53
|
};
|