@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.
- package/_site/assets/css/pit-viper-v2-scoped.css +13 -0
- package/_site/assets/css/pit-viper-v2.css +13 -0
- package/_site/assets/css/pit-viper.css +13 -0
- package/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +38 -1
- package/pv-components/dist/vue/base/pv-components-base.js +17 -17
- package/pv-components/dist/vue/base/pv-components-base.mjs +664 -618
- package/pv-components/dist/vue/base/pv-components-base.umd.js +15 -15
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +5 -1
- package/pv-components/dist/vue/charts/pv-components-charts.js +24 -24
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +1579 -1569
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +25 -25
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +4 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +21 -21
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +776 -764
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +20 -20
- package/pv-components/dist/web/pv-components.iife.js +17 -17
|
@@ -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< {
|