@turquoisehealth/pit-viper 2.58.0 → 2.59.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 +25 -0
- package/pv-components/dist/vue/base/pv-components-base.js +13 -13
- package/pv-components/dist/vue/base/pv-components-base.mjs +1493 -1457
- package/pv-components/dist/vue/base/pv-components-base.umd.js +14 -14
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +4 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +47 -47
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +18542 -18529
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +50 -50
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +4 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +24 -24
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +3419 -3419
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +22 -22
- package/pv-components/dist/web/pv-components.iife.js +22 -22
|
@@ -230,6 +230,10 @@ declare interface PvDataTableProps<T> {
|
|
|
230
230
|
/**
|
|
231
231
|
* Enables pagination
|
|
232
232
|
*/
|
|
233
|
+
leftPinnedColumnName?: string;
|
|
234
|
+
/**
|
|
235
|
+
* Specifies the column to pin to the left of the table if at least one row grouping is enabled.
|
|
236
|
+
*/
|
|
233
237
|
pagination?: boolean;
|
|
234
238
|
/**
|
|
235
239
|
* Set the pagination page size. Defaults to 50.
|