@turquoisehealth/pit-viper 2.92.0 → 2.94.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 (23) hide show
  1. package/package.json +3 -4
  2. package/pv-components/dist/vue/base/components/base/PvActionBar/PvActionBar.vue.d.ts +12 -2
  3. package/pv-components/dist/vue/base/components/base/PvButton/types.d.ts +9 -1
  4. package/pv-components/dist/vue/base/components/base/PvCompanyLogo/types.d.ts +1 -1
  5. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuCheckboxItem.vue.d.ts +5 -1
  6. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItem.vue.d.ts +5 -1
  7. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuRadioItem.vue.d.ts +5 -1
  8. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +1 -1
  9. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectMenuItem.vue.d.ts +1 -1
  10. package/pv-components/dist/vue/base/components/base/PvPill/types.d.ts +1 -1
  11. package/pv-components/dist/vue/base/components/base/PvQueryBuilderInput/useQueryBuilder.d.ts +1 -1
  12. package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButton.vue.d.ts +5 -1
  13. package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButtonTrigger/PvSelectButtonTrigger.vue.d.ts +3 -1
  14. package/pv-components/dist/vue/base/components/base/PvTag/types.d.ts +1 -1
  15. package/pv-components/dist/vue/base/pv-components-base.js +82 -38
  16. package/pv-components/dist/vue/base/pv-components-base.mjs +5132 -4894
  17. package/pv-components/dist/vue/base/pv-components-base.umd.js +82 -38
  18. package/pv-components/dist/vue/base/types.d.ts +2 -1
  19. package/pv-components/dist/vue/visualizations/pv-components-visualizations.js +18 -18
  20. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +4960 -5063
  21. package/pv-components/dist/vue/visualizations/pv-components-visualizations.umd.js +14 -14
  22. package/pv-components/dist/vue/visualizations/types.d.ts +2 -1
  23. package/pv-components/dist/web/pv-components.iife.js +89 -45
@@ -14,7 +14,8 @@ export interface MenuOption {
14
14
  id: string;
15
15
  text: string;
16
16
  subText?: string;
17
- secondaryText?: string | number;
17
+ /** Value of the secondary text which appears on the menu item. Number shows up as a counter badge, string shows up as plain text */
18
+ secondaryText?: number | string;
18
19
  icon?: string;
19
20
  companyName?: string;
20
21
  avatar?: {