@turquoisehealth/pit-viper 2.57.1 → 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/_site/assets/css/pit-viper-v2-scoped.css +29 -22
- package/_site/assets/css/pit-viper-v2.css +31 -23
- package/_site/assets/css/pit-viper.css +31 -23
- package/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +87 -0
- package/pv-components/dist/vue/base/pv-components-base.js +19 -19
- package/pv-components/dist/vue/base/pv-components-base.mjs +2153 -1988
- package/pv-components/dist/vue/base/pv-components-base.umd.js +19 -19
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +9 -0
- package/pv-components/dist/vue/charts/pv-components-charts.js +52 -52
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +20993 -20936
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +52 -52
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +8 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +39 -39
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +5805 -5791
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +38 -38
- package/pv-components/dist/web/pv-components.iife.js +24 -24
|
@@ -176,6 +176,10 @@ declare interface PvDataTableProps<T> {
|
|
|
176
176
|
/**
|
|
177
177
|
* Enables pagination
|
|
178
178
|
*/
|
|
179
|
+
leftPinnedColumnName?: string;
|
|
180
|
+
/**
|
|
181
|
+
* Specifies the column to pin to the left of the table if at least one row grouping is enabled.
|
|
182
|
+
*/
|
|
179
183
|
pagination?: boolean;
|
|
180
184
|
/**
|
|
181
185
|
* Set the pagination page size. Defaults to 50.
|
|
@@ -197,6 +201,10 @@ declare interface PvDataTableProps<T> {
|
|
|
197
201
|
* Hide the table rows (but still show the filter panel)
|
|
198
202
|
*/
|
|
199
203
|
hideTable?: boolean;
|
|
204
|
+
/**
|
|
205
|
+
* DOM location to use for relocating the filter panel
|
|
206
|
+
*/
|
|
207
|
+
filterTeleportLocation?: string;
|
|
200
208
|
}
|
|
201
209
|
|
|
202
210
|
declare interface PvDataTablePublicInterface {
|