@turquoisehealth/pit-viper 2.189.1 → 2.190.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 (46) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +14 -0
  2. package/_site/assets/css/pit-viper-consumer.css +14 -0
  3. package/_site/assets/css/pit-viper-v2-scoped.css +11 -0
  4. package/_site/assets/css/pit-viper-v2.css +14 -0
  5. package/_site/assets/css/pit-viper.css +14 -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-avatar-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-modal-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-query-builder-input-stats.html +1 -1
  14. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  15. package/pv-components/dist/vue/base/components/base/PvAvatar/PvAvatar.vue.d.ts +2 -15
  16. package/pv-components/dist/vue/base/components/base/PvAvatar/types.d.ts +17 -0
  17. package/pv-components/dist/vue/base/components/base/PvMenu/cascadeUtils.d.ts +7 -0
  18. package/pv-components/dist/vue/base/components/base/PvMenu/types.d.ts +2 -0
  19. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -0
  20. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +2 -0
  21. package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButtonTrigger/PvSelectButtonTrigger.vue.d.ts +4 -21
  22. package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButtonTrigger/types.d.ts +25 -0
  23. package/pv-components/dist/vue/base/pv-components-base.mjs +439 -381
  24. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  25. package/pv-components/dist/vue/base/types.d.ts +3 -0
  26. package/pv-components/dist/vue/visualizations/components/base/PvAvatar/PvAvatar.vue.d.ts +2 -15
  27. package/pv-components/dist/vue/visualizations/components/base/PvAvatar/types.d.ts +17 -0
  28. package/pv-components/dist/vue/visualizations/components/base/PvMenu/cascadeUtils.d.ts +7 -0
  29. package/pv-components/dist/vue/visualizations/components/base/PvMenu/types.d.ts +2 -0
  30. package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +3 -0
  31. package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/types.d.ts +2 -0
  32. package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButtonTrigger/PvSelectButtonTrigger.vue.d.ts +4 -21
  33. package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButtonTrigger/types.d.ts +25 -0
  34. package/pv-components/dist/vue/visualizations/components/charts/PvChart/constants.d.ts +1 -0
  35. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useSetFilter.d.ts +9 -2
  36. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1419 -1324
  37. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  38. package/pv-components/dist/vue/visualizations/types.d.ts +3 -0
  39. package/pv-components/dist/web/components/pv-avatar/pv-avatar.js +8 -3
  40. package/pv-components/dist/web/components/pv-menu/pv-menu.js +870 -852
  41. package/pv-components/dist/web/components/pv-modal/pv-modal.js +2 -3
  42. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1162 -1108
  43. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +814 -799
  44. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +904 -847
  45. package/pv-components/dist/web/pv-components.iife.js +31 -31
  46. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -1810,6 +1810,20 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
1810
1810
  border-radius: 2px;
1811
1811
  }
1812
1812
 
1813
+ .pv-avatar-16[data-shape=square] {
1814
+ border-radius: 2px;
1815
+ }
1816
+
1817
+ .pv-avatar-20[data-shape=square],
1818
+ .pv-avatar-xs[data-shape=square],
1819
+ .pv-avatar-sm[data-shape=square] {
1820
+ border-radius: 4px;
1821
+ }
1822
+
1823
+ .pv-avatar-md[data-shape=square] {
1824
+ border-radius: 8px;
1825
+ }
1826
+
1813
1827
  [class*=pv-avatar][data-style="2"] {
1814
1828
  background-color: #16696D;
1815
1829
  }
@@ -1816,6 +1816,20 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
1816
1816
  border-radius: 2px;
1817
1817
  }
1818
1818
 
1819
+ .pv-avatar-16[data-shape=square] {
1820
+ border-radius: 2px;
1821
+ }
1822
+
1823
+ .pv-avatar-20[data-shape=square],
1824
+ .pv-avatar-xs[data-shape=square],
1825
+ .pv-avatar-sm[data-shape=square] {
1826
+ border-radius: 4px;
1827
+ }
1828
+
1829
+ .pv-avatar-md[data-shape=square] {
1830
+ border-radius: 8px;
1831
+ }
1832
+
1819
1833
  [class*=pv-avatar][data-style="2"] {
1820
1834
  background-color: #16696D;
1821
1835
  }
@@ -1669,6 +1669,17 @@
1669
1669
  width: 12px;
1670
1670
  border-radius: 2px;
1671
1671
  }
1672
+ .pv-v2 .pv-avatar-16[data-shape=square] {
1673
+ border-radius: 2px;
1674
+ }
1675
+ .pv-v2 .pv-avatar-20[data-shape=square],
1676
+ .pv-v2 .pv-avatar-xs[data-shape=square],
1677
+ .pv-v2 .pv-avatar-sm[data-shape=square] {
1678
+ border-radius: 4px;
1679
+ }
1680
+ .pv-v2 .pv-avatar-md[data-shape=square] {
1681
+ border-radius: 8px;
1682
+ }
1672
1683
  .pv-v2 [class*=pv-avatar][data-style="2"] {
1673
1684
  background-color: #16696D;
1674
1685
  }
@@ -1810,6 +1810,20 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
1810
1810
  border-radius: 2px;
1811
1811
  }
1812
1812
 
1813
+ .pv-avatar-16[data-shape=square] {
1814
+ border-radius: 2px;
1815
+ }
1816
+
1817
+ .pv-avatar-20[data-shape=square],
1818
+ .pv-avatar-xs[data-shape=square],
1819
+ .pv-avatar-sm[data-shape=square] {
1820
+ border-radius: 4px;
1821
+ }
1822
+
1823
+ .pv-avatar-md[data-shape=square] {
1824
+ border-radius: 8px;
1825
+ }
1826
+
1813
1827
  [class*=pv-avatar][data-style="2"] {
1814
1828
  background-color: #16696D;
1815
1829
  }
@@ -1815,6 +1815,20 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
1815
1815
  border-radius: 2px;
1816
1816
  }
1817
1817
 
1818
+ .pv-avatar-16[data-shape=square] {
1819
+ border-radius: 2px;
1820
+ }
1821
+
1822
+ .pv-avatar-20[data-shape=square],
1823
+ .pv-avatar-xs[data-shape=square],
1824
+ .pv-avatar-sm[data-shape=square] {
1825
+ border-radius: 4px;
1826
+ }
1827
+
1828
+ .pv-avatar-md[data-shape=square] {
1829
+ border-radius: 8px;
1830
+ }
1831
+
1818
1832
  [class*=pv-avatar][data-style="2"] {
1819
1833
  background-color: #16696D;
1820
1834
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turquoisehealth/pit-viper",
3
- "version": "2.189.1",
3
+ "version": "2.190.0",
4
4
  "description": "Turquoise Health's design system.",
5
5
  "main": "README.md",
6
6
  "publishConfig": {