@turquoisehealth/pit-viper 2.130.1 → 2.131.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.
Files changed (22) hide show
  1. package/package.json +1 -1
  2. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  3. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  4. package/pv-components/dist/stats/web/pv-date-picker-stats.html +1 -1
  5. package/pv-components/dist/stats/web/pv-distribution-bar-stats.html +1 -1
  6. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  7. package/pv-components/dist/stats/web/pv-popover-v2-stats.html +1 -1
  8. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  9. package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
  11. package/pv-components/dist/vue/base/components/base/PvDatePicker/PvDatePicker.vue.d.ts +4 -0
  12. package/pv-components/dist/vue/base/components/base/PvPopoverV2/types.d.ts +1 -0
  13. package/pv-components/dist/vue/base/pv-components-base.mjs +171 -165
  14. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +666 -662
  15. package/pv-components/dist/web/components/pv-date-picker/pv-date-picker.js +2 -1
  16. package/pv-components/dist/web/components/pv-distribution-bar/pv-distribution-bar.js +44 -44
  17. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +498 -494
  18. package/pv-components/dist/web/components/pv-popover-v2/pv-popover-v2.js +189 -185
  19. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +331 -327
  20. package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +230 -225
  21. package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +510 -505
  22. package/pv-components/dist/web/pv-components.iife.js +8 -8
@@ -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 = {
@@ -17,4 +17,5 @@ export interface PvPopoverV2Props {
17
17
  * placement axis): positive values move the popover further away from the reference element, and negative values move
18
18
  */
19
19
  offset?: number;
20
+ ignoreClickOutsideClasses?: string[];
20
21
  }