@turquoisehealth/pit-viper 2.9.0 → 2.9.3
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 +8 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +28 -28
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +357 -348
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +8 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +2 -2
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +537 -530
- package/pv-components/dist/web/pv-components.iife.js +12 -12
package/package.json
CHANGED
|
@@ -98,6 +98,14 @@ declare interface PvDataTableProps<T> {
|
|
|
98
98
|
* Display Row Number in the first column
|
|
99
99
|
*/
|
|
100
100
|
displayRowNumber?: boolean;
|
|
101
|
+
/**
|
|
102
|
+
* Display Counts on Grouped Rows (requires allChildrenCount on the object)
|
|
103
|
+
*/
|
|
104
|
+
displayGroupCount?: boolean;
|
|
105
|
+
/**
|
|
106
|
+
* Displays Icon on Preferences that emits handle-settings-icon event
|
|
107
|
+
*/
|
|
108
|
+
displayPreferencesIcon?: boolean;
|
|
101
109
|
/**
|
|
102
110
|
* Display button to open the vertical filter drawer
|
|
103
111
|
*/
|