@turquoisehealth/pit-viper 2.61.1-dev.1 → 2.62.1-dev.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 +13 -0
- package/_site/assets/css/pit-viper-v2.css +13 -0
- package/_site/assets/css/pit-viper.css +13 -0
- package/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +38 -1
- package/pv-components/dist/vue/base/pv-components-base.js +17 -17
- package/pv-components/dist/vue/base/pv-components-base.mjs +664 -618
- package/pv-components/dist/vue/base/pv-components-base.umd.js +15 -15
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +5 -1
- package/pv-components/dist/vue/charts/pv-components-charts.js +24 -24
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +1579 -1569
- package/pv-components/dist/vue/charts/pv-components-charts.umd.js +25 -25
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +4 -0
- package/pv-components/dist/vue/tables/pv-components-tables.js +21 -21
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +776 -764
- package/pv-components/dist/vue/tables/pv-components-tables.umd.js +20 -20
- package/pv-components/dist/web/pv-components.iife.js +17 -17
|
@@ -215,6 +215,10 @@ declare interface PvDataTableProps<T> {
|
|
|
215
215
|
* DOM location to use for relocating the filter panel
|
|
216
216
|
*/
|
|
217
217
|
filterTeleportLocation?: string;
|
|
218
|
+
/**
|
|
219
|
+
* List of column fields that can be focused
|
|
220
|
+
*/
|
|
221
|
+
focusableColumns?: string[];
|
|
218
222
|
}
|
|
219
223
|
|
|
220
224
|
declare interface PvDataTablePublicInterface {
|