@turquoisehealth/pit-viper 2.194.4 → 2.194.6-dev.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 (38) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +8 -0
  2. package/_site/assets/css/pit-viper-consumer.css +8 -0
  3. package/_site/assets/css/pit-viper-v2-scoped.css +7 -0
  4. package/_site/assets/css/pit-viper-v2.css +8 -0
  5. package/_site/assets/css/pit-viper.css +8 -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-filter-panel-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-split-button-stats.html +4950 -0
  11. package/pv-components/dist/vue/base/components/base/PvButton/types.d.ts +1 -1
  12. package/pv-components/dist/vue/base/components/base/PvDropdown/PvDropdown.vue.d.ts +2 -2
  13. package/pv-components/dist/vue/base/components/base/PvFilterPanel/PvFilterPanel.vue.d.ts +1 -0
  14. package/pv-components/dist/vue/base/components/base/PvFilterPanel/types.d.ts +8 -0
  15. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +5 -5
  16. package/pv-components/dist/vue/base/components/base/PvPopoverV2/PvPopoverV2.vue.d.ts +3 -3
  17. package/pv-components/dist/vue/base/components/base/PvRange/PvRange.vue.d.ts +2 -2
  18. package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButton.vue.d.ts +2 -2
  19. package/pv-components/dist/vue/base/components/base/PvSplitButton/PvSplitButton.vue.d.ts +27 -0
  20. package/pv-components/dist/vue/base/components/base/PvSplitButton/types.d.ts +12 -0
  21. package/pv-components/dist/vue/base/components/base/index.d.ts +1 -0
  22. package/pv-components/dist/vue/base/pv-components-base.mjs +1730 -1623
  23. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  24. package/pv-components/dist/vue/visualizations/components/base/PvButton/types.d.ts +1 -1
  25. package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/PvFilterPanel.vue.d.ts +1 -0
  26. package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/types.d.ts +8 -0
  27. package/pv-components/dist/vue/visualizations/components/base/PvSplitButton/PvSplitButton.vue.d.ts +27 -0
  28. package/pv-components/dist/vue/visualizations/components/base/PvSplitButton/types.d.ts +12 -0
  29. package/pv-components/dist/vue/visualizations/components/base/index.d.ts +1 -0
  30. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/types.d.ts +27 -138
  31. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useFilterStore.d.ts +115 -14
  32. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useSetFilter.d.ts +3 -0
  33. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +2200 -1885
  34. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  35. package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +1339 -1310
  36. package/pv-components/dist/web/components/pv-split-button/pv-split-button.js +7713 -0
  37. package/pv-components/dist/web/pv-components.iife.js +38 -38
  38. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -70,6 +70,7 @@
70
70
 
71
71
  :where(a),
72
72
  [class*=pv-button-link] {
73
+ cursor: pointer;
73
74
  font-weight: var(--link-font-weight, 500);
74
75
  text-decoration: none;
75
76
  color: var(--color-text-interactive, #13595D);
@@ -792,6 +793,13 @@
792
793
  color: var(--button-link-destructive-hover-color, #801A00);
793
794
  }
794
795
 
796
+ .pv-button-link-secondary {
797
+ color: var(--color-text-subdued, #4B595C);
798
+ }
799
+ .pv-button-link-secondary:not([aria-disabled=true]):hover, .pv-button-link-secondary:not([aria-disabled=true]):focus-visible {
800
+ color: var(--color-text-body, #121313);
801
+ }
802
+
795
803
  [class*=pv-segmented-control] {
796
804
  padding: 0.125rem;
797
805
  background-color: #F0F2F2;
@@ -76,6 +76,7 @@
76
76
 
77
77
  :where(a),
78
78
  [class*=pv-button-link] {
79
+ cursor: pointer;
79
80
  font-weight: var(--link-font-weight, 500);
80
81
  text-decoration: none;
81
82
  color: var(--color-text-interactive, #147F85);
@@ -798,6 +799,13 @@
798
799
  color: var(--button-link-destructive-hover-color, #801A00);
799
800
  }
800
801
 
802
+ .pv-button-link-secondary {
803
+ color: var(--color-text-subdued, #486161);
804
+ }
805
+ .pv-button-link-secondary:not([aria-disabled=true]):hover, .pv-button-link-secondary:not([aria-disabled=true]):focus-visible {
806
+ color: var(--color-text-body, #1A3A39);
807
+ }
808
+
801
809
  [class*=pv-segmented-control] {
802
810
  padding: 0.125rem;
803
811
  background-color: #F0F2F2;
@@ -71,6 +71,7 @@
71
71
  }
72
72
  .pv-v2 :where(a),
73
73
  .pv-v2 [class*=pv-button-link] {
74
+ cursor: pointer;
74
75
  font-weight: var(--link-font-weight, 500);
75
76
  text-decoration: none;
76
77
  color: var(--color-text-interactive, #16696D);
@@ -711,6 +712,12 @@
711
712
  .pv-v2 .pv-button-link-destructive:not(:disabled):hover, .pv-v2 .pv-button-link-destructive:not(:disabled):focus-visible {
712
713
  color: var(--button-link-destructive-hover-color, #801A00);
713
714
  }
715
+ .pv-v2 .pv-button-link-secondary {
716
+ color: var(--color-text-subdued, #4B595C);
717
+ }
718
+ .pv-v2 .pv-button-link-secondary:not([aria-disabled=true]):hover, .pv-v2 .pv-button-link-secondary:not([aria-disabled=true]):focus-visible {
719
+ color: var(--color-text-body, #121313);
720
+ }
714
721
  .pv-v2 [class*=pv-segmented-control] {
715
722
  padding: 0.125rem;
716
723
  background-color: #F0F2F2;
@@ -70,6 +70,7 @@
70
70
 
71
71
  :where(a),
72
72
  [class*=pv-button-link] {
73
+ cursor: pointer;
73
74
  font-weight: var(--link-font-weight, 500);
74
75
  text-decoration: none;
75
76
  color: var(--color-text-interactive, #16696D);
@@ -792,6 +793,13 @@
792
793
  color: var(--button-link-destructive-hover-color, #801A00);
793
794
  }
794
795
 
796
+ .pv-button-link-secondary {
797
+ color: var(--color-text-subdued, #4B595C);
798
+ }
799
+ .pv-button-link-secondary:not([aria-disabled=true]):hover, .pv-button-link-secondary:not([aria-disabled=true]):focus-visible {
800
+ color: var(--color-text-body, #121313);
801
+ }
802
+
795
803
  [class*=pv-segmented-control] {
796
804
  padding: 0.125rem;
797
805
  background-color: #F0F2F2;
@@ -75,6 +75,7 @@
75
75
 
76
76
  :where(a),
77
77
  [class*=pv-button-link] {
78
+ cursor: pointer;
78
79
  font-weight: var(--link-font-weight, 600);
79
80
  text-decoration: none;
80
81
  color: var(--color-text-interactive, #176F6F);
@@ -797,6 +798,13 @@
797
798
  color: var(--button-link-destructive-hover-color, #750E13);
798
799
  }
799
800
 
801
+ .pv-button-link-secondary {
802
+ color: var(--color-text-subdued, #6E7784);
803
+ }
804
+ .pv-button-link-secondary:not([aria-disabled=true]):hover, .pv-button-link-secondary:not([aria-disabled=true]):focus-visible {
805
+ color: var(--color-text-body, #02363D);
806
+ }
807
+
800
808
  [class*=pv-segmented-control] {
801
809
  padding: 0.25rem;
802
810
  background-color: #DCDFE4;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turquoisehealth/pit-viper",
3
- "version": "2.194.4",
3
+ "version": "2.194.6-dev.0",
4
4
  "description": "Turquoise Health's design system.",
5
5
  "main": "README.md",
6
6
  "publishConfig": {