@turquoisehealth/pit-viper 2.60.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[];
@@ -233,12 +235,16 @@ declare interface PvDataTableProps<T> {
233
235
  */
234
236
  debugMode?: boolean;
235
237
  /**
236
- * Enables pagination
238
+ * If true, hide all row-grouped columns from the table.
237
239
  */
238
- leftPinnedColumnName?: string;
240
+ hideAllRowGroupedColumns?: boolean;
239
241
  /**
240
242
  * Specifies the column to pin to the left of the table if at least one row grouping is enabled.
241
243
  */
244
+ leftPinnedColumnName?: string;
245
+ /**
246
+ * Enables pagination
247
+ */
242
248
  pagination?: boolean;
243
249
  /**
244
250
  * Set the pagination page size. Defaults to 50.
@@ -308,6 +314,8 @@ declare interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
308
314
  truncateLabelValues?: boolean;
309
315
  initialChartData?: AgChartOptions_2["data"];
310
316
  displayChartLoading?: boolean;
317
+ enableCombinedChartConfigPanel?: boolean;
318
+ chartConfigPanelOptions?: ChartConfigPanelType[];
311
319
  chartFilter?: ChartFilter;
312
320
  chartType?: supportedChartType;
313
321
  yKey?: string;
@@ -320,6 +328,7 @@ declare interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
320
328
  focuses: string[];
321
329
  focusType: string | null;
322
330
  };
331
+ percentOfFocusViewYKey?: string;
323
332
  }
324
333
 
325
334
  export declare const PvMapChart: DefineComponent< {