@turquoisehealth/pit-viper 2.60.0 → 2.61.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 +6 -2
- package/pv-components/dist/vue/charts/pv-components-charts.js +11 -11
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +245 -243
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +12 -12
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +6 -2
- package/pv-components/dist/vue/tables/pv-components-tables.js +10 -10
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +277 -276
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +10 -10
package/package.json
CHANGED
|
@@ -233,12 +233,16 @@ declare interface PvDataTableProps<T> {
|
|
|
233
233
|
*/
|
|
234
234
|
debugMode?: boolean;
|
|
235
235
|
/**
|
|
236
|
-
*
|
|
236
|
+
* If true, hide all row-grouped columns from the table.
|
|
237
237
|
*/
|
|
238
|
-
|
|
238
|
+
hideAllRowGroupedColumns?: boolean;
|
|
239
239
|
/**
|
|
240
240
|
* Specifies the column to pin to the left of the table if at least one row grouping is enabled.
|
|
241
241
|
*/
|
|
242
|
+
leftPinnedColumnName?: string;
|
|
243
|
+
/**
|
|
244
|
+
* Enables pagination
|
|
245
|
+
*/
|
|
242
246
|
pagination?: boolean;
|
|
243
247
|
/**
|
|
244
248
|
* Set the pagination page size. Defaults to 50.
|