@turquoisehealth/pit-viper 2.48.1 → 2.50.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 +22 -0
- package/_site/assets/css/pit-viper-v2.css +25 -0
- package/_site/assets/css/pit-viper.css +25 -0
- package/package.json +1 -1
- package/pv-components/dist/vue/base/pv-components-base.d.ts +50 -1
- package/pv-components/dist/vue/base/pv-components-base.js +21 -21
- package/pv-components/dist/vue/base/pv-components-base.mjs +1777 -1680
- package/pv-components/dist/vue/charts/pv-components-charts.d.ts +10 -5
- package/pv-components/dist/vue/charts/pv-components-charts.js +46 -46
- package/pv-components/dist/vue/charts/pv-components-charts.mjs +13631 -13570
- package/pv-components/dist/vue/tables/pv-components-tables.d.ts +8 -4
- package/pv-components/dist/vue/tables/pv-components-tables.js +32 -32
- package/pv-components/dist/vue/tables/pv-components-tables.mjs +4316 -4256
- package/pv-components/dist/web/pv-components.iife.js +21 -21
|
@@ -103,18 +103,22 @@ declare interface PvDataTableProps<T> {
|
|
|
103
103
|
* Displays Icon on Preferences that emits handle-settings-icon event
|
|
104
104
|
*/
|
|
105
105
|
displayPreferencesIcon?: boolean;
|
|
106
|
-
/**
|
|
107
|
-
* Display button to open the vertical filter drawer
|
|
108
|
-
*/
|
|
109
|
-
enableVerticalFilterPanel?: boolean;
|
|
110
106
|
/**
|
|
111
107
|
* Display button to hide/show columns
|
|
112
108
|
*/
|
|
113
109
|
enableColumnVisibilitySelector?: boolean;
|
|
110
|
+
/**
|
|
111
|
+
* Display everything focus view related
|
|
112
|
+
*/
|
|
113
|
+
enableFocusView?: boolean;
|
|
114
114
|
/**
|
|
115
115
|
* Display button to group by columns
|
|
116
116
|
*/
|
|
117
117
|
enableGroupBySelector?: boolean;
|
|
118
|
+
/**
|
|
119
|
+
* Display button to open the vertical filter drawer
|
|
120
|
+
*/
|
|
121
|
+
enableVerticalFilterPanel?: boolean;
|
|
118
122
|
/**
|
|
119
123
|
* Number of groups to support (defaults to 2)
|
|
120
124
|
*/
|