@turquoisehealth/pit-viper 2.222.1 → 2.223.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 (42) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +2 -1
  2. package/_site/assets/css/pit-viper-consumer.css +1 -0
  3. package/_site/assets/css/pit-viper-v2-scoped.css +1 -0
  4. package/_site/assets/css/pit-viper-v2.css +2 -1
  5. package/_site/assets/css/pit-viper.css +1 -0
  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-action-button-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-filter-modal-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
  12. package/pv-components/dist/stats/web/pv-hover-action-menu-stats.html +1 -1
  13. package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
  14. package/pv-components/dist/stats/web/pv-multi-select-button-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-query-builder-input-stats.html +1 -1
  17. package/pv-components/dist/stats/web/pv-segmented-control-stats.html +1 -1
  18. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  19. package/pv-components/dist/stats/web/pv-sidebar-v2-stats.html +1 -1
  20. package/pv-components/dist/stats/web/pv-split-button-stats.html +1 -1
  21. package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
  22. package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
  23. package/pv-components/dist/vue/base/pv-components-base.mjs +68 -56
  24. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  25. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1672 -1660
  26. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  27. package/pv-components/dist/web/components/pv-action-button/pv-action-button.js +86 -74
  28. package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +1881 -1869
  29. package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +89 -77
  30. package/pv-components/dist/web/components/pv-hover-action-menu/pv-hover-action-menu.js +495 -483
  31. package/pv-components/dist/web/components/pv-menu/pv-menu.js +1000 -988
  32. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1214 -1202
  33. package/pv-components/dist/web/components/pv-popover-v2/pv-popover-v2.js +98 -86
  34. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +68 -56
  35. package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +648 -636
  36. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +243 -231
  37. package/pv-components/dist/web/components/pv-sidebar-v2/pv-sidebar-v2.js +67 -55
  38. package/pv-components/dist/web/components/pv-split-button/pv-split-button.js +229 -217
  39. package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +86 -74
  40. package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +87 -75
  41. package/pv-components/dist/web/pv-components.iife.js +13 -13
  42. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -3492,6 +3492,7 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
3492
3492
  .pv-pagination :is(ul, ol) [aria-current=page] :is(button, a):focus-visible {
3493
3493
  color: var(--pagination-item-active-color, #FFFFFF);
3494
3494
  background-color: var(--pagination-item-active-background-color, #13595D);
3495
+ border: var(--pagination-item-active-border, none);
3495
3496
  }
3496
3497
  .pv-pagination[data-style=small] :where(button, a), .pv-pagination :is(ul, ol)[data-style=small] :where(button, a) {
3497
3498
  width: var(--pagination-small-item-width, 24px);
@@ -5268,7 +5269,7 @@ pv-sidebar {
5268
5269
  position: sticky;
5269
5270
  top: 0;
5270
5271
  height: 100vh;
5271
- z-index: 10;
5272
+ z-index: 5;
5272
5273
  overflow-x: clip;
5273
5274
  transition: width 0.3s ease-in-out;
5274
5275
  width: 64px;
@@ -3498,6 +3498,7 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
3498
3498
  .pv-pagination :is(ul, ol) [aria-current=page] :is(button, a):focus-visible {
3499
3499
  color: var(--pagination-item-active-color, #FFFFFF);
3500
3500
  background-color: var(--pagination-item-active-background-color, #073A46);
3501
+ border: var(--pagination-item-active-border, none);
3501
3502
  }
3502
3503
  .pv-pagination[data-style=small] :where(button, a), .pv-pagination :is(ul, ol)[data-style=small] :where(button, a) {
3503
3504
  width: var(--pagination-small-item-width, 24px);
@@ -3198,6 +3198,7 @@
3198
3198
  .pv-v2 .pv-pagination :is(ul, ol) [aria-current=page] :is(button, a):focus-visible {
3199
3199
  color: var(--pagination-item-active-color, #FFFFFF);
3200
3200
  background-color: var(--pagination-item-active-background-color, #16696D);
3201
+ border: var(--pagination-item-active-border, none);
3201
3202
  }
3202
3203
  .pv-v2 .pv-pagination[data-style=small] :where(button, a), .pv-v2 .pv-pagination :is(ul, ol)[data-style=small] :where(button, a) {
3203
3204
  width: var(--pagination-small-item-width, 24px);
@@ -3492,6 +3492,7 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
3492
3492
  .pv-pagination :is(ul, ol) [aria-current=page] :is(button, a):focus-visible {
3493
3493
  color: var(--pagination-item-active-color, #FFFFFF);
3494
3494
  background-color: var(--pagination-item-active-background-color, #16696D);
3495
+ border: var(--pagination-item-active-border, none);
3495
3496
  }
3496
3497
  .pv-pagination[data-style=small] :where(button, a), .pv-pagination :is(ul, ol)[data-style=small] :where(button, a) {
3497
3498
  width: var(--pagination-small-item-width, 24px);
@@ -5325,7 +5326,7 @@ pv-sidebar {
5325
5326
  position: sticky;
5326
5327
  top: 0;
5327
5328
  height: 100vh;
5328
- z-index: 10;
5329
+ z-index: 5;
5329
5330
  overflow-x: clip;
5330
5331
  transition: width 0.3s ease-in-out;
5331
5332
  width: 64px;
@@ -3497,6 +3497,7 @@ pv-dropdown-auto-close.pv-dropdown > [class*=pv-button][data-dropdown] {
3497
3497
  .pv-pagination :is(ul, ol) [aria-current=page] :is(button, a):focus-visible {
3498
3498
  color: var(--pagination-item-active-color, #FFFFFF);
3499
3499
  background-color: var(--pagination-item-active-background-color, #176F6F);
3500
+ border: var(--pagination-item-active-border, none);
3500
3501
  }
3501
3502
  .pv-pagination[data-style=small] :where(button, a), .pv-pagination :is(ul, ol)[data-style=small] :where(button, a) {
3502
3503
  width: var(--pagination-small-item-width, 24px);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turquoisehealth/pit-viper",
3
- "version": "2.222.1",
3
+ "version": "2.223.0",
4
4
  "description": "Turquoise Health's design system.",
5
5
  "main": "README.md",
6
6
  "publishConfig": {