@turquoisehealth/pit-viper 2.26.1 → 2.27.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/charts/pv-components-charts.d.ts +5 -1
- package/pv-components/dist/vue/charts/pv-components-charts.js +39 -39
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +7427 -7385
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +5 -1
- package/pv-components/dist/vue/tables/pv-components-tables.js +29 -29
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +3435 -3394
package/package.json
CHANGED
|
@@ -122,9 +122,13 @@ declare interface PvDataTableProps<T> {
|
|
|
122
122
|
*/
|
|
123
123
|
enableColumnVisibilitySelector?: boolean;
|
|
124
124
|
/**
|
|
125
|
-
* Display button to group by columns
|
|
125
|
+
* Display button to group by columns
|
|
126
126
|
*/
|
|
127
127
|
enableGroupBySelector?: boolean;
|
|
128
|
+
/**
|
|
129
|
+
* Number of groups to support (defaults to 2)
|
|
130
|
+
*/
|
|
131
|
+
rowGroupLimit?: number;
|
|
128
132
|
/**
|
|
129
133
|
* Display button to export table data as CSV
|
|
130
134
|
*/
|