@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.
- package/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +3 -3
- package/pv-components/dist/vue/base/pv-components-base.js +14 -14
- package/pv-components/dist/vue/base/pv-components-base.mjs +410 -405
- package/pv-components/dist/vue/base/pv-components-base.umd.js +8 -8
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +5 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +51 -51
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +20574 -20182
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +51 -51
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +3 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +41 -41
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +6616 -6558
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +40 -40
- package/pv-components/dist/web/pv-components.iife.js +17 -17
|
@@ -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< {
|