@turquoisehealth/pit-viper 2.130.2-dev.0 → 2.132.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/stats/vue/base/stats.html +1 -1
- package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/stats/web/pv-date-picker-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-distribution-bar-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-popover-v2-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
- package/pv-components/dist/vue/base/components/base/PvDatePicker/PvDatePicker.vue.d.ts +4 -0
- package/pv-components/dist/vue/base/components/base/PvPopoverV2/types.d.ts +1 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +171 -165
- package/pv-components/dist/vue/visualizations/components/base/PvDatePicker/PvDatePicker.vue.d.ts +4 -0
- package/pv-components/dist/vue/visualizations/components/base/PvPopoverV2/types.d.ts +1 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +663 -659
- package/pv-components/dist/web/components/pv-date-picker/pv-date-picker.js +2 -1
- package/pv-components/dist/web/components/pv-distribution-bar/pv-distribution-bar.js +44 -44
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +498 -494
- package/pv-components/dist/web/components/pv-popover-v2/pv-popover-v2.js +189 -185
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +331 -327
- package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +230 -225
- package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +510 -505
- package/pv-components/dist/web/pv-components.iife.js +8 -8
package/pv-components/dist/vue/visualizations/components/base/PvDatePicker/PvDatePicker.vue.d.ts
CHANGED
|
@@ -100,6 +100,10 @@ export interface PvDatePickerProps {
|
|
|
100
100
|
* A valid query selector or an HTMLElement to specify where the overlay gets attached.
|
|
101
101
|
*/
|
|
102
102
|
appendTo?: "body" | "self" | undefined;
|
|
103
|
+
/**
|
|
104
|
+
* Style class of the datepicker panel.
|
|
105
|
+
*/
|
|
106
|
+
panelClass?: string | undefined;
|
|
103
107
|
}
|
|
104
108
|
type __VLS_Props = PvDatePickerProps;
|
|
105
109
|
type __VLS_PublicProps = {
|