@turquoisehealth/pit-viper 2.71.1-dev.2 → 2.71.1-dev.4

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.
@@ -53,14 +53,19 @@ declare type ChartFilterOption = {
53
53
  filterValues: string[];
54
54
  };
55
55
 
56
- declare interface ChartStateChangedEvent {
57
- api: GridApi | null;
56
+ declare interface ChartState {
58
57
  seriesField?: string | null;
59
58
  chartType?: string | null;
60
59
  chartSort?: string | null;
61
60
  chartCategoryFields?: string[] | null;
62
61
  }
63
62
 
63
+ declare interface ChartStateChangedEvent {
64
+ api: GridApi | null;
65
+ newState: ChartState | null;
66
+ oldState: ChartState | null;
67
+ }
68
+
64
69
  declare interface FilterValueResponseOption {
65
70
  value: string;
66
71
  label?: string;
@@ -322,6 +327,7 @@ declare interface PvDataTableProps<T> {
322
327
  focusableColumns?: string[];
323
328
  tableSearchPlaceholder?: string;
324
329
  tableSearchStyle?: TableSearchStyle;
330
+ maxHorizontalFilters?: number;
325
331
  }
326
332
 
327
333
  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<{