@turquoisehealth/pit-viper 2.130.0 → 2.130.1

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 (43) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +5945 -0
  2. package/package.json +3 -1
  3. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  4. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  5. package/pv-components/dist/stats/web/pv-company-label-stats.html +1 -1
  6. package/pv-components/dist/stats/web/pv-company-logo-stats.html +1 -1
  7. package/pv-components/dist/stats/web/pv-company-tag-stats.html +1 -1
  8. package/pv-components/dist/stats/web/pv-date-picker-stats.html +1 -1
  9. package/pv-components/dist/stats/web/pv-date-time-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-drawer-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-dropdown-stats.html +1 -1
  12. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  13. package/pv-components/dist/stats/web/pv-popover-menu-stats.html +1 -1
  14. package/pv-components/dist/stats/web/pv-popover-stats.html +1 -1
  15. package/pv-components/dist/stats/web/pv-popover-v2-stats.html +1 -1
  16. package/pv-components/dist/stats/web/pv-search-input-stats.html +1 -1
  17. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  18. package/pv-components/dist/stats/web/pv-skeleton-stats.html +1 -1
  19. package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
  20. package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
  21. package/pv-components/dist/stats/web/pv-tree-stats.html +1 -1
  22. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuBaseItem.spec.d.ts +1 -0
  23. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuBaseItem.vue.d.ts +5 -1
  24. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItem.vue.d.ts +4 -2
  25. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItemVariant.vue.d.ts +4 -2
  26. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +19 -10
  27. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +11 -3
  28. package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButton.vue.d.ts +2 -0
  29. package/pv-components/dist/vue/base/pv-components-base.mjs +866 -816
  30. package/pv-components/dist/vue/base/types.d.ts +4 -3
  31. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1056 -1004
  32. package/pv-components/dist/vue/visualizations/types.d.ts +4 -3
  33. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1374 -1328
  34. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +964 -911
  35. package/pv-components/dist/web/pv-components.iife.js +29 -29
  36. package/pv-components/dist/vue/charts/pv-components-charts.d.ts +0 -491
  37. package/pv-components/dist/vue/charts/pv-components-charts.js +0 -259
  38. package/pv-components/dist/vue/charts/pv-components-charts.mjs +0 -121834
  39. package/pv-components/dist/vue/charts/pv-components-charts.umd.js +0 -259
  40. package/pv-components/dist/vue/tables/pv-components-tables.d.ts +0 -299
  41. package/pv-components/dist/vue/tables/pv-components-tables.js +0 -223
  42. package/pv-components/dist/vue/tables/pv-components-tables.mjs +0 -47028
  43. package/pv-components/dist/vue/tables/pv-components-tables.umd.js +0 -223
@@ -16,7 +16,7 @@ export interface MenuAction<T> {
16
16
  isDisabled: boolean | ((option: MenuOption<T>) => boolean);
17
17
  tooltipText: string | ((option: MenuOption<T>) => string);
18
18
  action: (option: MenuOption<T>) => void;
19
- alwaysShow?: boolean;
19
+ alwaysShow?: boolean | ((option: MenuOption<T>) => boolean);
20
20
  }
21
21
  export interface MenuOption<T = unknown> {
22
22
  id: string;
@@ -24,6 +24,7 @@ export interface MenuOption<T = unknown> {
24
24
  subText?: string;
25
25
  /** Value of the secondary text which appears on the menu item. Number shows up as a counter badge, string shows up as plain text */
26
26
  secondaryText?: number | string;
27
+ subduedText?: string;
27
28
  icon?: string;
28
29
  companyName?: string;
29
30
  avatar?: {
@@ -44,8 +45,8 @@ export interface MenuOptionConfig {
44
45
  variant?: MenuOptionsVariant;
45
46
  counterBadgeVariant?: PvCounterBadgeVariant;
46
47
  }
47
- export interface MenuOptionSelectedEvent {
48
- option: MenuOption;
48
+ export interface MenuOptionSelectedEvent<T> {
49
+ option: MenuOption<T>;
49
50
  event: Event;
50
51
  }
51
52
  export declare enum MenuItemType {