@turquoisehealth/pit-viper 2.61.0 → 2.61.1-dev.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.
@@ -36,6 +36,8 @@ declare type __VLS_PrettifyLocal<T> = {
36
36
  [K in keyof T]: T[K];
37
37
  } & {};
38
38
 
39
+ declare type ChartConfigPanelType = "y-axis" | "x-axis" | "sort" | "chart-type";
40
+
39
41
  declare interface ChartFilter {
40
42
  colId: string;
41
43
  options: ChartFilterOption[];
@@ -312,6 +314,8 @@ declare interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
312
314
  truncateLabelValues?: boolean;
313
315
  initialChartData?: AgChartOptions_2["data"];
314
316
  displayChartLoading?: boolean;
317
+ enableCombinedChartConfigPanel?: boolean;
318
+ chartConfigPanelOptions?: ChartConfigPanelType[];
315
319
  chartFilter?: ChartFilter;
316
320
  chartType?: supportedChartType;
317
321
  yKey?: string;
@@ -324,6 +328,7 @@ declare interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
324
328
  focuses: string[];
325
329
  focusType: string | null;
326
330
  };
331
+ percentOfFocusViewYKey?: string;
327
332
  }
328
333
 
329
334
  export declare const PvMapChart: DefineComponent< {