@turquoisehealth/pit-viper 2.48.1 → 2.49.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 +22 -0
- package/_site/assets/css/pit-viper-v2.css +25 -0
- package/_site/assets/css/pit-viper.css +25 -0
- package/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +50 -1
- package/pv-components/dist/vue/base/pv-components-base.js +21 -21
- package/pv-components/dist/vue/base/pv-components-base.mjs +1777 -1680
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +10 -5
- package/pv-components/dist/vue/charts/pv-components-charts.js +46 -46
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +14475 -14429
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +8 -4
- package/pv-components/dist/vue/tables/pv-components-tables.js +30 -30
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +3284 -3239
- package/pv-components/dist/web/pv-components.iife.js +21 -21
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AgChartInstance } from 'ag-charts-enterprise';
|
|
2
2
|
import { AgChartOptions } from 'ag-charts-types';
|
|
3
|
+
import { AgChartOptions as AgChartOptions_2 } from 'ag-charts-enterprise';
|
|
3
4
|
import { AgMapLineSeriesTooltipRendererParams } from 'ag-charts-enterprise';
|
|
4
5
|
import { AgSeriesVisibilityChange } from 'ag-charts-enterprise';
|
|
5
6
|
import { ColDef } from 'ag-grid-community';
|
|
@@ -155,18 +156,22 @@ declare interface PvDataTableProps<T> {
|
|
|
155
156
|
* Displays Icon on Preferences that emits handle-settings-icon event
|
|
156
157
|
*/
|
|
157
158
|
displayPreferencesIcon?: boolean;
|
|
158
|
-
/**
|
|
159
|
-
* Display button to open the vertical filter drawer
|
|
160
|
-
*/
|
|
161
|
-
enableVerticalFilterPanel?: boolean;
|
|
162
159
|
/**
|
|
163
160
|
* Display button to hide/show columns
|
|
164
161
|
*/
|
|
165
162
|
enableColumnVisibilitySelector?: boolean;
|
|
163
|
+
/**
|
|
164
|
+
* Display everything focus view related
|
|
165
|
+
*/
|
|
166
|
+
enableFocusView?: boolean;
|
|
166
167
|
/**
|
|
167
168
|
* Display button to group by columns
|
|
168
169
|
*/
|
|
169
170
|
enableGroupBySelector?: boolean;
|
|
171
|
+
/**
|
|
172
|
+
* Display button to open the vertical filter drawer
|
|
173
|
+
*/
|
|
174
|
+
enableVerticalFilterPanel?: boolean;
|
|
170
175
|
/**
|
|
171
176
|
* Number of groups to support (defaults to 2)
|
|
172
177
|
*/
|
|
@@ -279,7 +284,7 @@ declare interface PvDataTableWithChartProps<T> extends PvDataTableProps<T> {
|
|
|
279
284
|
overrideChartData?: boolean;
|
|
280
285
|
showSeriesLabels?: boolean;
|
|
281
286
|
truncateLabelValues?: boolean;
|
|
282
|
-
initialChartData?:
|
|
287
|
+
initialChartData?: AgChartOptions_2["data"];
|
|
283
288
|
displayChartLoading?: boolean;
|
|
284
289
|
chartFilter?: ChartFilter;
|
|
285
290
|
chartType?: supportedChartType;
|