@turquoisehealth/pit-viper 2.160.0 → 2.160.2

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 (37) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +1 -1
  2. package/_site/assets/css/pit-viper-consumer.css +5 -5
  3. package/_site/assets/css/pit-viper-v2-scoped.css +1 -1
  4. package/_site/assets/css/pit-viper-v2.css +1 -1
  5. package/package.json +1 -1
  6. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  7. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  8. package/pv-components/dist/stats/web/pv-company-label-stats.html +1 -1
  9. package/pv-components/dist/stats/web/pv-company-logo-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-company-tag-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-date-picker-stats.html +1 -1
  12. package/pv-components/dist/stats/web/pv-date-time-stats.html +1 -1
  13. package/pv-components/dist/stats/web/pv-drawer-stats.html +1 -1
  14. package/pv-components/dist/stats/web/pv-dropdown-stats.html +1 -1
  15. package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
  16. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  17. package/pv-components/dist/stats/web/pv-popover-menu-stats.html +1 -1
  18. package/pv-components/dist/stats/web/pv-popover-stats.html +1 -1
  19. package/pv-components/dist/stats/web/pv-popover-v2-stats.html +1 -1
  20. package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
  21. package/pv-components/dist/stats/web/pv-search-input-stats.html +1 -1
  22. package/pv-components/dist/stats/web/pv-segmented-control-stats.html +1 -1
  23. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  24. package/pv-components/dist/stats/web/pv-skeleton-stats.html +1 -1
  25. package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
  26. package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
  27. package/pv-components/dist/stats/web/pv-tree-stats.html +1 -1
  28. package/pv-components/dist/vue/charts/pv-components-charts.d.ts +491 -0
  29. package/pv-components/dist/vue/charts/pv-components-charts.js +259 -0
  30. package/pv-components/dist/vue/charts/pv-components-charts.mjs +121834 -0
  31. package/pv-components/dist/vue/charts/pv-components-charts.umd.js +259 -0
  32. package/pv-components/dist/vue/tables/pv-components-tables.d.ts +299 -0
  33. package/pv-components/dist/vue/tables/pv-components-tables.js +223 -0
  34. package/pv-components/dist/vue/tables/pv-components-tables.mjs +47028 -0
  35. package/pv-components/dist/vue/tables/pv-components-tables.umd.js +223 -0
  36. package/pv-components/dist/web/pv-components.iife.js +1 -1
  37. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -155,7 +155,7 @@
155
155
  }
156
156
 
157
157
  [class*=pv-heading] {
158
- font-family: var(--font-family-body, HK Grotesk, sans-serif);
158
+ font-family: var(--font-family-body, Inter, sans-serif);
159
159
  font-weight: 600;
160
160
  letter-spacing: 0.2px;
161
161
  }
@@ -988,8 +988,8 @@
988
988
  .pv-select-multiple {
989
989
  color: #1A3A39;
990
990
  padding: var(--text-input-padding, calc(0.5rem - 1px) 0.75rem);
991
- font-size: var(--text-input-font-size, 1rem);
992
- line-height: var(--text-input-line-height, 1.5);
991
+ font-size: var(--text-input-font-size, 0.875rem);
992
+ line-height: var(--text-input-line-height, 1.4285714286);
993
993
  border: var(--text-input-border-width, 1px) solid var(--text-input-border-color, #E8EBEB);
994
994
  border-radius: var(--text-input-radius, 6px);
995
995
  appearance: none;
@@ -1412,7 +1412,7 @@ label:has(input:not(:disabled)).pv-label-hover:hover {
1412
1412
  }
1413
1413
 
1414
1414
  .pv-input-small {
1415
- padding: var(--text-input-small-padding, calc(0.25rem - 1px) 0.5rem);
1415
+ padding: var(--text-input-small-padding, 0.3125rem 1rem);
1416
1416
  }
1417
1417
  .pv-input-small.pv-select-multiple, .pv-input-small.pv-select {
1418
1418
  padding-inline-end: 2rem;
@@ -1439,8 +1439,8 @@ div:has(> .pv-input-text[data-suffix]) {
1439
1439
  div:has(> .pv-input-text[data-prefix]):after,
1440
1440
  div:has(> .pv-input-text[data-suffix]):after {
1441
1441
  position: absolute;
1442
- font-size: 1rem;
1443
- line-height: 1.5;
1442
+ font-size: 0.875rem;
1443
+ line-height: 1.4285714286;
1444
1444
  top: 50%;
1445
1445
  transform: translateY(-50%);
1446
1446
  }
@@ -139,7 +139,7 @@
139
139
  letter-spacing: 0.01em;
140
140
  }
141
141
  .pv-v2 [class*=pv-heading] {
142
- font-family: var(--font-family-body, HK Grotesk, sans-serif);
142
+ font-family: var(--font-family-body, Inter, sans-serif);
143
143
  font-weight: 600;
144
144
  letter-spacing: 0.2px;
145
145
  }
@@ -155,7 +155,7 @@
155
155
  }
156
156
 
157
157
  [class*=pv-heading] {
158
- font-family: var(--font-family-body, HK Grotesk, sans-serif);
158
+ font-family: var(--font-family-body, Inter, sans-serif);
159
159
  font-weight: 600;
160
160
  letter-spacing: 0.2px;
161
161
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turquoisehealth/pit-viper",
3
- "version": "2.160.0",
3
+ "version": "2.160.2",
4
4
  "description": "Turquoise Health's design system.",
5
5
  "main": "README.md",
6
6
  "publishConfig": {