@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.
@@ -8,7 +8,6 @@ import { Column } from 'ag-grid-enterprise';
8
8
  import { ColumnMovedEvent } from 'ag-grid-enterprise';
9
9
  import { ColumnResizedEvent } from 'ag-grid-enterprise';
10
10
  import { ColumnRowGroupChangedEvent } from 'ag-grid-enterprise';
11
- import { Component } from 'vue';
12
11
  import { ComponentOptionsMixin } from 'vue';
13
12
  import { ComponentProvideOptions } from 'vue';
14
13
  import { CreateComponentPublicInstanceWithMixins } from 'vue';
@@ -73,26 +72,6 @@ declare interface FocusUpdateEvent {
73
72
 
74
73
  declare type MapTopologyType = "state" | "city" | "county" | "cbsa" | "zip_code";
75
74
 
76
- declare interface MenuOption {
77
- id: string;
78
- text: string;
79
- subText?: string;
80
- secondaryText?: string | number;
81
- icon?: string;
82
- companyName?: string;
83
- avatar?: {
84
- initials?: string;
85
- image?: string;
86
- icon?: boolean;
87
- };
88
- groupingLabel?: string;
89
- disabled?: boolean;
90
- renderer?: Component;
91
- rendererProps?: any;
92
- classList?: string[];
93
- searchText?: string;
94
- }
95
-
96
75
  export declare const PvChart: DefineComponent<PvChartProps, {
97
76
  getChartImageDataURL: (dimensions?: {
98
77
  width?: number;
@@ -103,10 +82,10 @@ height?: number;
103
82
  }, string, PublicProps, Readonly<PvChartProps> & Readonly<{
104
83
  "onSeries-visibility-change"?: ((event: AgSeriesVisibilityChange<unknown>) => any) | undefined;
105
84
  }>, {
106
- seriesFormatType: "none" | "currency" | "percent";
107
85
  isLoading: boolean;
108
- enableFocusView: boolean;
109
86
  minHeight: number;
87
+ enableFocusView: boolean;
88
+ seriesFormatType: "none" | "currency" | "percent";
110
89
  }, {}, {}, {}, string, ComponentProvideOptions, false, {
111
90
  chartRef: CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
112
91
  options: {
@@ -161,10 +140,6 @@ declare interface PvDataTableProps<T> {
161
140
  * Handler to fetch filter values for server-side filtering. Only used for server-side row model.
162
141
  */
163
142
  filterValuesSetHandler?: (params: FilterValuesSetHandlerParams<T>) => Promise<(FilterValueResponseOption | null)[]>;
164
- /**
165
- * Handler to return suggestions for applying search terms to the table.
166
- */
167
- tableSearchHandler?: (params: TableSearchHandlerParams<T>) => Promise<(QueryBuilderSuggestionMenuOption | null)[]>;
168
143
  /**
169
144
  * Specifies an initial set of filters/groups/sort/etc. to be applied to the table.
170
145
  */
@@ -205,10 +180,6 @@ declare interface PvDataTableProps<T> {
205
180
  * Display button to group by columns
206
181
  */
207
182
  enableGroupBySelector?: boolean;
208
- /**
209
- * Display input to search within the table
210
- */
211
- enableTableSearch?: boolean;
212
183
  /**
213
184
  * Display button to open the vertical filter drawer
214
185
  */
@@ -305,8 +276,6 @@ declare interface PvDataTableProps<T> {
305
276
  * List of column fields that can be focused
306
277
  */
307
278
  focusableColumns?: string[];
308
- tableSearchPlaceholder?: string;
309
- tableSearchStyle?: TableSearchStyle;
310
279
  }
311
280
 
312
281
  export declare const PvDataTableWithChart: <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<{
@@ -413,29 +382,10 @@ declare interface PvMapChartProps {
413
382
  tooltipRenderer?: (params: AgMapLineSeriesTooltipRendererParams<PvMapChartData>) => string | HTMLElement;
414
383
  }
415
384
 
416
- declare interface QueryBuilderSuggestionMenuOption extends MenuOption {
417
- queryTerm?: QueryTerm;
418
- }
419
-
420
- declare interface QueryTerm {
421
- queryField?: string;
422
- queryDisplayField?: string;
423
- exactMatch?: boolean;
424
- queryText?: string;
425
- }
426
-
427
385
  declare interface RegionSelectionChangedEvent {
428
386
  region: string | null | undefined;
429
387
  }
430
388
 
431
389
  declare type supportedChartType = "column" | "bar" | "column_stacked" | "bar_stacked" | "line" | "area" | "pie";
432
390
 
433
- declare interface TableSearchHandlerParams<T> {
434
- api: GridApi<T>;
435
- filterModel?: FilterModel | null;
436
- query?: string;
437
- }
438
-
439
- declare type TableSearchStyle = "query-builder" | "text";
440
-
441
391
  export { }