@turquoisehealth/pit-viper 2.66.1-dev.0 → 2.68.0

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.
@@ -3,7 +3,6 @@ import { Column } from 'ag-grid-enterprise';
3
3
  import { ColumnMovedEvent } from 'ag-grid-enterprise';
4
4
  import { ColumnResizedEvent } from 'ag-grid-enterprise';
5
5
  import { ColumnRowGroupChangedEvent } from 'ag-grid-enterprise';
6
- import { Component } from 'vue';
7
6
  import { ComputedRef } from 'vue';
8
7
  import { FilterChangedEvent } from 'ag-grid-enterprise';
9
8
  import { FilterModel } from 'ag-grid-enterprise';
@@ -46,26 +45,6 @@ export declare interface FocusUpdateEvent {
46
45
  filterField?: string | null | undefined;
47
46
  }
48
47
 
49
- declare interface MenuOption {
50
- id: string;
51
- text: string;
52
- subText?: string;
53
- secondaryText?: string | number;
54
- icon?: string;
55
- companyName?: string;
56
- avatar?: {
57
- initials?: string;
58
- image?: string;
59
- icon?: boolean;
60
- };
61
- groupingLabel?: string;
62
- disabled?: boolean;
63
- renderer?: Component;
64
- rendererProps?: any;
65
- classList?: string[];
66
- searchText?: string;
67
- }
68
-
69
48
  export declare const PvDataTable: <T>(__VLS_props: NonNullable<Awaited<typeof __VLS_setup>>["props"], __VLS_ctx?: __VLS_PrettifyLocal<Pick<NonNullable<Awaited<typeof __VLS_setup>>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
70
49
  props: __VLS_PrettifyLocal<any & PvDataTableProps<T> & Partial<{}>> & PublicProps;
71
50
  expose(exposed: ShallowUnwrapRef<PvDataTablePublicInterface>): void;
@@ -104,10 +83,6 @@ declare interface PvDataTableProps<T> {
104
83
  * Handler to fetch filter values for server-side filtering. Only used for server-side row model.
105
84
  */
106
85
  filterValuesSetHandler?: (params: FilterValuesSetHandlerParams<T>) => Promise<(FilterValueResponseOption | null)[]>;
107
- /**
108
- * Handler to return suggestions for applying search terms to the table.
109
- */
110
- tableSearchHandler?: (params: TableSearchHandlerParams<T>) => Promise<(QueryBuilderSuggestionMenuOption | null)[]>;
111
86
  /**
112
87
  * Specifies an initial set of filters/groups/sort/etc. to be applied to the table.
113
88
  */
@@ -148,10 +123,6 @@ declare interface PvDataTableProps<T> {
148
123
  * Display button to group by columns
149
124
  */
150
125
  enableGroupBySelector?: boolean;
151
- /**
152
- * Display input to search within the table
153
- */
154
- enableTableSearch?: boolean;
155
126
  /**
156
127
  * Display button to open the vertical filter drawer
157
128
  */
@@ -248,8 +219,6 @@ declare interface PvDataTableProps<T> {
248
219
  * List of column fields that can be focused
249
220
  */
250
221
  focusableColumns?: string[];
251
- tableSearchPlaceholder?: string;
252
- tableSearchStyle?: TableSearchStyle;
253
222
  }
254
223
 
255
224
  declare interface PvDataTablePublicInterface {
@@ -260,23 +229,4 @@ declare interface PvDataTablePublicInterface {
260
229
  availableAggFuncColumns: ComputedRef<ColDef[]>;
261
230
  }
262
231
 
263
- declare interface QueryBuilderSuggestionMenuOption extends MenuOption {
264
- queryTerm?: QueryTerm;
265
- }
266
-
267
- declare interface QueryTerm {
268
- queryField?: string;
269
- queryDisplayField?: string;
270
- exactMatch?: boolean;
271
- queryText?: string;
272
- }
273
-
274
- declare interface TableSearchHandlerParams<T> {
275
- api: GridApi<T>;
276
- filterModel?: FilterModel | null;
277
- query?: string;
278
- }
279
-
280
- declare type TableSearchStyle = "query-builder" | "text";
281
-
282
232
  export { }