@turquoisehealth/pit-viper 2.194.3-dev.0 → 2.194.3-dev.1

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.
@@ -192,11 +192,6 @@ export interface FilterValuesSetHandlerParams<T> {
192
192
  limit?: number;
193
193
  /** When loading more children of a specific cascade parent */
194
194
  parentId?: string;
195
- /**
196
- * When true, only resolve labels for `selectedValues` — skip the full enumeration.
197
- * Handlers should issue a bounded lookup (e.g. WHERE id IN (selectedValues)).
198
- */
199
- selectedValuesOnly?: boolean;
200
195
  }
201
196
  export interface TableSearchHandlerParams<T> {
202
197
  api?: GridApi<T>;
@@ -31,10 +31,6 @@ export declare const createFilterStore: () => {
31
31
  parentId?: string;
32
32
  useStaged?: boolean;
33
33
  }) => Promise<(string | null)[]>;
34
- fetchSelectedValueMetadata: (colDef: ColDef, selectedValues: (string | null)[], options?: {
35
- api?: GridApi;
36
- filterModel?: FilterModel | AdvancedFilterModel;
37
- }) => Promise<void>;
38
34
  filterValueContext: (colField: string, value: string | null) => FilterValueResponseOption | null | undefined;
39
35
  filterModelEmpty: ComputedRef<boolean>;
40
36
  getFilterSelectedValues: (colField: string) => (string | null)[];
@@ -91,10 +87,6 @@ export declare const createPvDataTableFilterStore: () => {
91
87
  parentId?: string;
92
88
  useStaged?: boolean;
93
89
  }) => Promise<(string | null)[]>;
94
- fetchSelectedValueMetadata: (colDef: ColDef, selectedValues: (string | null)[], options?: {
95
- api?: GridApi;
96
- filterModel?: FilterModel | AdvancedFilterModel;
97
- }) => Promise<void>;
98
90
  filterValueContext: (colField: string, value: string | null) => FilterValueResponseOption | null | undefined;
99
91
  filterModelEmpty: ComputedRef<boolean>;
100
92
  getFilterSelectedValues: (colField: string) => (string | null)[];
@@ -151,10 +143,6 @@ export declare const useFilterStore: () => {
151
143
  parentId?: string;
152
144
  useStaged?: boolean;
153
145
  }) => Promise<(string | null)[]>;
154
- fetchSelectedValueMetadata: (colDef: ColDef, selectedValues: (string | null)[], options?: {
155
- api?: GridApi;
156
- filterModel?: FilterModel | AdvancedFilterModel;
157
- }) => Promise<void>;
158
146
  filterValueContext: (colField: string, value: string | null) => FilterValueResponseOption | null | undefined;
159
147
  filterModelEmpty: ComputedRef<boolean>;
160
148
  getFilterSelectedValues: (colField: string) => (string | null)[];
@@ -210,10 +198,6 @@ export declare const usePvDataTableFilterStore: () => {
210
198
  parentId?: string;
211
199
  useStaged?: boolean;
212
200
  }) => Promise<(string | null)[]>;
213
- fetchSelectedValueMetadata: (colDef: ColDef, selectedValues: (string | null)[], options?: {
214
- api?: GridApi;
215
- filterModel?: FilterModel | AdvancedFilterModel;
216
- }) => Promise<void>;
217
201
  filterValueContext: (colField: string, value: string | null) => FilterValueResponseOption | null | undefined;
218
202
  filterModelEmpty: ComputedRef<boolean>;
219
203
  getFilterSelectedValues: (colField: string) => (string | null)[];