@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.
- 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 +11 -2
- package/pv-components/dist/vue/charts/pv-components-charts.js +51 -51
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +20486 -20092
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +51 -51
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +9 -2
- package/pv-components/dist/vue/tables/pv-components-tables.js +41 -41
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +6581 -6522
- 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[];
|
|
@@ -233,12 +235,16 @@ declare interface PvDataTableProps<T> {
|
|
|
233
235
|
*/
|
|
234
236
|
debugMode?: boolean;
|
|
235
237
|
/**
|
|
236
|
-
*
|
|
238
|
+
* If true, hide all row-grouped columns from the table.
|
|
237
239
|
*/
|
|
238
|
-
|
|
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< {
|