@turquoisehealth/pit-viper 2.210.1 → 2.211.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 (49) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +3 -1
  2. package/_site/assets/css/pit-viper-consumer.css +3 -1
  3. package/_site/assets/css/pit-viper-v2-scoped.css +3 -1
  4. package/_site/assets/css/pit-viper-v2.css +3 -1
  5. package/_site/assets/css/pit-viper.css +3 -1
  6. package/package.json +1 -1
  7. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  8. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  9. package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
  12. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  13. package/pv-components/dist/vue/base/components/base/PvFilterPanel/types.d.ts +5 -0
  14. package/pv-components/dist/vue/base/components/base/PvMenu/PvMenu.vue.d.ts +43 -4
  15. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItemAction.vue.d.ts +1 -0
  16. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItemVariant.vue.d.ts +1 -1
  17. package/pv-components/dist/vue/base/components/base/PvMenu/symbols.d.ts +2 -0
  18. package/pv-components/dist/vue/base/components/base/PvMenu/types.d.ts +8 -1
  19. package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButton.vue.d.ts +3 -0
  20. package/pv-components/dist/vue/base/components/base/index.d.ts +2 -1
  21. package/pv-components/dist/vue/base/pv-components-base.mjs +2192 -1757
  22. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  23. package/pv-components/dist/vue/base/types.d.ts +4 -0
  24. package/pv-components/dist/vue/visualizations/components/base/PvDropdown/PvDropdown.vue.d.ts +2 -2
  25. package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/types.d.ts +5 -0
  26. package/pv-components/dist/vue/visualizations/components/base/PvMenu/PvMenu.vue.d.ts +43 -4
  27. package/pv-components/dist/vue/visualizations/components/base/PvMenu/items/PvMenuItemAction.vue.d.ts +1 -0
  28. package/pv-components/dist/vue/visualizations/components/base/PvMenu/items/PvMenuItemVariant.vue.d.ts +1 -1
  29. package/pv-components/dist/vue/visualizations/components/base/PvMenu/symbols.d.ts +2 -0
  30. package/pv-components/dist/vue/visualizations/components/base/PvMenu/types.d.ts +8 -1
  31. package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButton.vue.d.ts +3 -0
  32. package/pv-components/dist/vue/visualizations/components/base/index.d.ts +2 -1
  33. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/PvDataTableWithChart.vue.d.ts +4 -2
  34. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvChartOptionMenuItemRenderer.vue.d.ts +2 -1
  35. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvChartOptionsPanel.vue.d.ts +6 -3
  36. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +17 -2
  37. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/PvDataTable.vue.d.ts +4 -2
  38. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/types.d.ts +8 -2
  39. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useFilterStore.d.ts +12 -0
  40. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useSetFilter.d.ts +1 -1
  41. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +3016 -2313
  42. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  43. package/pv-components/dist/vue/visualizations/types.d.ts +4 -0
  44. package/pv-components/dist/web/components/pv-menu/pv-menu.js +3695 -2074
  45. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +3109 -1491
  46. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +1381 -1332
  47. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +2751 -1118
  48. package/pv-components/dist/web/pv-components.iife.js +36 -36
  49. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -80,7 +80,7 @@
80
80
  text-decoration: underline;
81
81
  }
82
82
 
83
- :is(ul, ol):not([role=list]) {
83
+ :is(ul, ol):not([role=list]):not(.pv-popover-list) {
84
84
  padding-inline-start: 1em;
85
85
  }
86
86
 
@@ -2860,7 +2860,9 @@ td:not([rowspan]) > .pv-responsive-cell {
2860
2860
  }
2861
2861
 
2862
2862
  .pv-popover-list {
2863
+ margin: 0;
2863
2864
  padding: 0.5rem;
2865
+ list-style: none;
2864
2866
  }
2865
2867
  .pv-popover-list :where(li[data-active]) > :where(a, label) {
2866
2868
  background-color: var(--popover-list-selected-item-background-color, #E4F8F6);
@@ -86,7 +86,7 @@
86
86
  text-decoration: underline;
87
87
  }
88
88
 
89
- :is(ul, ol):not([role=list]) {
89
+ :is(ul, ol):not([role=list]):not(.pv-popover-list) {
90
90
  padding-inline-start: 1em;
91
91
  }
92
92
 
@@ -2866,7 +2866,9 @@ td:not([rowspan]) > .pv-responsive-cell {
2866
2866
  }
2867
2867
 
2868
2868
  .pv-popover-list {
2869
+ margin: 0;
2869
2870
  padding: 0.5rem;
2871
+ list-style: none;
2870
2872
  }
2871
2873
  .pv-popover-list :where(li[data-active]) > :where(a, label) {
2872
2874
  background-color: var(--popover-list-selected-item-background-color, #E4F8F6);
@@ -80,7 +80,7 @@
80
80
  .pv-v2 [class*=pv-button-link]:hover {
81
81
  text-decoration: underline;
82
82
  }
83
- .pv-v2 :is(ul, ol):not([role=list]) {
83
+ .pv-v2 :is(ul, ol):not([role=list]):not(.pv-popover-list) {
84
84
  padding-inline-start: 1em;
85
85
  }
86
86
  .pv-v2 :where(ol) > ::marker {
@@ -2620,7 +2620,9 @@
2620
2620
  bottom: 100%;
2621
2621
  }
2622
2622
  .pv-v2 .pv-popover-list {
2623
+ margin: 0;
2623
2624
  padding: 0.5rem;
2625
+ list-style: none;
2624
2626
  }
2625
2627
  .pv-v2 .pv-popover-list :where(li[data-active]) > :where(a, label) {
2626
2628
  background-color: var(--popover-list-selected-item-background-color, #E4F8F6);
@@ -80,7 +80,7 @@
80
80
  text-decoration: underline;
81
81
  }
82
82
 
83
- :is(ul, ol):not([role=list]) {
83
+ :is(ul, ol):not([role=list]):not(.pv-popover-list) {
84
84
  padding-inline-start: 1em;
85
85
  }
86
86
 
@@ -2860,7 +2860,9 @@ td:not([rowspan]) > .pv-responsive-cell {
2860
2860
  }
2861
2861
 
2862
2862
  .pv-popover-list {
2863
+ margin: 0;
2863
2864
  padding: 0.5rem;
2865
+ list-style: none;
2864
2866
  }
2865
2867
  .pv-popover-list :where(li[data-active]) > :where(a, label) {
2866
2868
  background-color: var(--popover-list-selected-item-background-color, #E4F8F6);
@@ -85,7 +85,7 @@
85
85
  text-decoration: underline;
86
86
  }
87
87
 
88
- :is(ul, ol):not([role=list]) {
88
+ :is(ul, ol):not([role=list]):not(.pv-popover-list) {
89
89
  padding-inline-start: 1em;
90
90
  }
91
91
 
@@ -2865,7 +2865,9 @@ td:not([rowspan]) > .pv-responsive-cell {
2865
2865
  }
2866
2866
 
2867
2867
  .pv-popover-list {
2868
+ margin: 0;
2868
2869
  padding: 0.5rem;
2870
+ list-style: none;
2869
2871
  }
2870
2872
  .pv-popover-list :where(li[data-active]) > :where(a, label) {
2871
2873
  background-color: var(--popover-list-selected-item-background-color, #E4F8F6);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turquoisehealth/pit-viper",
3
- "version": "2.210.1",
3
+ "version": "2.211.0",
4
4
  "description": "Turquoise Health's design system.",
5
5
  "main": "README.md",
6
6
  "publishConfig": {