@turquoisehealth/pit-viper 2.61.1-dev.1 → 2.62.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.
@@ -270,6 +270,10 @@ declare interface PvDataTableProps<T> {
270
270
  * DOM location to use for relocating the filter panel
271
271
  */
272
272
  filterTeleportLocation?: string;
273
+ /**
274
+ * List of column fields that can be focused
275
+ */
276
+ focusableColumns?: string[];
273
277
  }
274
278
 
275
279
  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<{
@@ -319,7 +323,6 @@ declare interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
319
323
  chartFilter?: ChartFilter;
320
324
  chartType?: supportedChartType;
321
325
  yKey?: string;
322
- focusCategory?: string;
323
326
  hideChart?: boolean;
324
327
  hideTable?: boolean;
325
328
  filterPanelAboveChart?: boolean;
@@ -329,6 +332,7 @@ declare interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
329
332
  focusType: string | null;
330
333
  };
331
334
  percentOfFocusViewYKey?: string;
335
+ focusableColumns?: string[];
332
336
  }
333
337
 
334
338
  export declare const PvMapChart: DefineComponent< {