@turquoisehealth/pit-viper 2.216.0 → 2.217.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 (203) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +45 -9
  2. package/_site/assets/css/pit-viper-consumer.css +40 -4
  3. package/_site/assets/css/pit-viper-v2-scoped.css +45 -14
  4. package/_site/assets/css/pit-viper-v2.css +50 -14
  5. package/_site/assets/css/pit-viper.css +37 -1
  6. package/_src/assets/sprite-v2.svg +1 -1
  7. package/_src/assets/sprite.svg +1 -1
  8. package/package.json +5 -1
  9. package/pv-components/dist/stats/vue/ai/stats.html +4950 -0
  10. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-confirmation-stats.html +4950 -0
  12. package/pv-components/dist/stats/web/pv-prompt-input-stats.html +4950 -0
  13. package/pv-components/dist/stats/web/pv-question-stats.html +4950 -0
  14. package/pv-components/dist/stats/web/pv-reasoning-stats.html +4950 -0
  15. package/pv-components/dist/stats/web/pv-tool-stats.html +4950 -0
  16. package/pv-components/dist/vue/ai/components/ai/PvConfirmation/PvConfirmation.vue.d.ts +30 -0
  17. package/pv-components/dist/vue/ai/components/ai/PvConfirmation/types.d.ts +21 -0
  18. package/pv-components/dist/vue/ai/components/ai/PvPromptInput/PvPromptInput.vue.d.ts +46 -0
  19. package/pv-components/dist/vue/ai/components/ai/PvPromptInput/types.d.ts +20 -0
  20. package/pv-components/dist/vue/ai/components/ai/PvQuestion/PvQuestion.vue.d.ts +35 -0
  21. package/pv-components/dist/vue/ai/components/ai/PvQuestion/types.d.ts +24 -0
  22. package/pv-components/dist/vue/ai/components/ai/PvReasoning/PvReasoning.vue.d.ts +33 -0
  23. package/pv-components/dist/vue/ai/components/ai/PvReasoning/types.d.ts +14 -0
  24. package/pv-components/dist/vue/ai/components/ai/PvTool/PvTool.vue.d.ts +35 -0
  25. package/pv-components/dist/vue/ai/components/ai/PvTool/types.d.ts +15 -0
  26. package/pv-components/dist/vue/ai/components/ai/index.d.ts +15 -0
  27. package/pv-components/dist/vue/ai/components/ai/toolLifecycle.d.ts +21 -0
  28. package/pv-components/dist/vue/ai/components/ai/useStickToBottom.d.ts +19 -0
  29. package/pv-components/dist/vue/ai/components/base/PvAccordion/PvAccordion.vue.d.ts +60 -0
  30. package/pv-components/dist/vue/ai/components/base/PvAccordion/types.d.ts +5 -0
  31. package/pv-components/dist/vue/ai/components/base/PvActionBar/PvActionBar.vue.d.ts +36 -0
  32. package/pv-components/dist/vue/ai/components/base/PvActionBar/types.d.ts +2 -0
  33. package/pv-components/dist/vue/ai/components/base/PvActionButton/PvActionButton.vue.d.ts +22 -0
  34. package/pv-components/dist/vue/ai/components/base/PvAiButton/PvAiButton.vue.d.ts +20 -0
  35. package/pv-components/dist/vue/ai/components/base/PvAiButton/types.d.ts +2 -0
  36. package/pv-components/dist/vue/ai/components/base/PvAvatar/PvAvatar.vue.d.ts +7 -0
  37. package/pv-components/dist/vue/ai/components/base/PvAvatar/types.d.ts +20 -0
  38. package/pv-components/dist/vue/ai/components/base/PvAvatarGroup/PvAvatarGroup.vue.d.ts +12 -0
  39. package/pv-components/dist/vue/ai/components/base/PvAvatarGroup/types.d.ts +16 -0
  40. package/pv-components/dist/vue/ai/components/base/PvBanner/PvBanner.vue.d.ts +35 -0
  41. package/pv-components/dist/vue/ai/components/base/PvBanner/types.d.ts +11 -0
  42. package/pv-components/dist/vue/ai/components/base/PvBreadcrumbs/PvBreadcrumbs.vue.d.ts +8 -0
  43. package/pv-components/dist/vue/ai/components/base/PvBreadcrumbs/types.d.ts +6 -0
  44. package/pv-components/dist/vue/ai/components/base/PvButton/PvButton.vue.d.ts +10 -0
  45. package/pv-components/dist/vue/ai/components/base/PvButton/PvButtonWithTooltip.vue.d.ts +8 -0
  46. package/pv-components/dist/vue/ai/components/base/PvButton/helpers.d.ts +3 -0
  47. package/pv-components/dist/vue/ai/components/base/PvButton/types.d.ts +38 -0
  48. package/pv-components/dist/vue/ai/components/base/PvCard/PvCard.vue.d.ts +30 -0
  49. package/pv-components/dist/vue/ai/components/base/PvCard/types.d.ts +2 -0
  50. package/pv-components/dist/vue/ai/components/base/PvCheckbox/PvCheckbox.vue.d.ts +19 -0
  51. package/pv-components/dist/vue/ai/components/base/PvCompanyLabel/PvCompanyLabel.vue.d.ts +14 -0
  52. package/pv-components/dist/vue/ai/components/base/PvCompanyLabel/types.d.ts +2 -0
  53. package/pv-components/dist/vue/ai/components/base/PvCompanyLogo/PvCompanyLogo.vue.d.ts +17 -0
  54. package/pv-components/dist/vue/ai/components/base/PvCompanyLogo/types.d.ts +2 -0
  55. package/pv-components/dist/vue/ai/components/base/PvCompanyTag/PvCompanyTag.vue.d.ts +31 -0
  56. package/pv-components/dist/vue/ai/components/base/PvComponentsConfig/primeVue.config.d.ts +14 -0
  57. package/pv-components/dist/vue/ai/components/base/PvComponentsConfig/usePvComponents.d.ts +2 -0
  58. package/pv-components/dist/vue/ai/components/base/PvCounterBadge/PvCounterBadge.vue.d.ts +21 -0
  59. package/pv-components/dist/vue/ai/components/base/PvCounterBadge/types.d.ts +3 -0
  60. package/pv-components/dist/vue/ai/components/base/PvDatePicker/PvDatePicker.vue.d.ts +103 -0
  61. package/pv-components/dist/vue/ai/components/base/PvDateTime/PvDateTime.vue.d.ts +18 -0
  62. package/pv-components/dist/vue/ai/components/base/PvDateTime/useDateTime.d.ts +9 -0
  63. package/pv-components/dist/vue/ai/components/base/PvDistributionBar/PvDistributionBar.vue.d.ts +7 -0
  64. package/pv-components/dist/vue/ai/components/base/PvDrawer/PvDrawer.vue.d.ts +54 -0
  65. package/pv-components/dist/vue/ai/components/base/PvDropdown/PvDropdown.vue.d.ts +125 -0
  66. package/pv-components/dist/vue/ai/components/base/PvEmptyErrorState/PvEmptyErrorState.vue.d.ts +22 -0
  67. package/pv-components/dist/vue/ai/components/base/PvEmptyErrorState/types.d.ts +11 -0
  68. package/pv-components/dist/vue/ai/components/base/PvExpandableContent/PvExpandableContent.vue.d.ts +34 -0
  69. package/pv-components/dist/vue/ai/components/base/PvExpandableContent/types.d.ts +3 -0
  70. package/pv-components/dist/vue/ai/components/base/PvFilterModal/PvFilterModal.vue.d.ts +80 -0
  71. package/pv-components/dist/vue/ai/components/base/PvFilterModal/PvFilterModalSelectItem.vue.d.ts +33 -0
  72. package/pv-components/dist/vue/ai/components/base/PvFilterModal/types.d.ts +11 -0
  73. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/PvFilterPanel.vue.d.ts +78 -0
  74. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/PvFilterPanelAccordion.vue.d.ts +18 -0
  75. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/PvFilterPanelAppliedFiltersSection.vue.d.ts +12 -0
  76. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/PvFilterPanelCategoryButtonRow.vue.d.ts +14 -0
  77. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/PvFilterPanelOptionRow.vue.d.ts +35 -0
  78. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/advancedFilterModel.d.ts +26 -0
  79. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/aggregateFilterModel.d.ts +56 -0
  80. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/filterOptionDisplay.d.ts +28 -0
  81. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/filterOptionValue.d.ts +15 -0
  82. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/types.d.ts +525 -0
  83. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/usePvFilterPanel.d.ts +30 -0
  84. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/usePvFilterStore.d.ts +5 -0
  85. package/pv-components/dist/vue/ai/components/base/PvGhostInput/PvGhostInput.vue.d.ts +45 -0
  86. package/pv-components/dist/vue/ai/components/base/PvGhostInput/types.d.ts +2 -0
  87. package/pv-components/dist/vue/ai/components/base/PvHeader/PvHeader.vue.d.ts +36 -0
  88. package/pv-components/dist/vue/ai/components/base/PvHorizontalScroller/PvHorizontalScroller.vue.d.ts +36 -0
  89. package/pv-components/dist/vue/ai/components/base/PvHorizontalScroller/types.d.ts +21 -0
  90. package/pv-components/dist/vue/ai/components/base/PvHoverActionMenu/PvHoverActionMenu.vue.d.ts +42 -0
  91. package/pv-components/dist/vue/ai/components/base/PvHoverActionMenu/types.d.ts +15 -0
  92. package/pv-components/dist/vue/ai/components/base/PvIcon/PvIcon.vue.d.ts +14 -0
  93. package/pv-components/dist/vue/ai/components/base/PvInput/PvInput.vue.d.ts +59 -0
  94. package/pv-components/dist/vue/ai/components/base/PvInput/types.d.ts +3 -0
  95. package/pv-components/dist/vue/ai/components/base/PvInsightCard/PvInsightCard.vue.d.ts +29 -0
  96. package/pv-components/dist/vue/ai/components/base/PvMenu/PvMenu.vue.d.ts +57 -0
  97. package/pv-components/dist/vue/ai/components/base/PvMenu/PvMenuControlPanel.vue.d.ts +26 -0
  98. package/pv-components/dist/vue/ai/components/base/PvMenu/PvMenuEmptyState.vue.d.ts +3 -0
  99. package/pv-components/dist/vue/ai/components/base/PvMenu/cascadeUtils.d.ts +42 -0
  100. package/pv-components/dist/vue/ai/components/base/PvMenu/items/PvMenuBaseItem.vue.d.ts +11 -0
  101. package/pv-components/dist/vue/ai/components/base/PvMenu/items/PvMenuItem.vue.d.ts +26 -0
  102. package/pv-components/dist/vue/ai/components/base/PvMenu/items/PvMenuItemAction.vue.d.ts +9 -0
  103. package/pv-components/dist/vue/ai/components/base/PvMenu/items/PvMenuItemVariant.vue.d.ts +22 -0
  104. package/pv-components/dist/vue/ai/components/base/PvMenu/symbols.d.ts +11 -0
  105. package/pv-components/dist/vue/ai/components/base/PvMenu/types.d.ts +31 -0
  106. package/pv-components/dist/vue/ai/components/base/PvMenu/useMenuPosition.d.ts +66 -0
  107. package/pv-components/dist/vue/ai/components/base/PvModal/PvModal.vue.d.ts +31 -0
  108. package/pv-components/dist/vue/ai/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +170 -0
  109. package/pv-components/dist/vue/ai/components/base/PvMultiSelectButton/mocks.d.ts +20 -0
  110. package/pv-components/dist/vue/ai/components/base/PvMultiSelectButton/types.d.ts +129 -0
  111. package/pv-components/dist/vue/ai/components/base/PvPagination/PvPagination.vue.d.ts +24 -0
  112. package/pv-components/dist/vue/ai/components/base/PvPagination/types.d.ts +3 -0
  113. package/pv-components/dist/vue/ai/components/base/PvPagination/usePagination.d.ts +12 -0
  114. package/pv-components/dist/vue/ai/components/base/PvPill/PvPill.vue.d.ts +29 -0
  115. package/pv-components/dist/vue/ai/components/base/PvPill/types.d.ts +4 -0
  116. package/pv-components/dist/vue/ai/components/base/PvPopover/PvPopover.vue.d.ts +37 -0
  117. package/pv-components/dist/vue/ai/components/base/PvPopoverMenu/PvPopoverMenu.vue.d.ts +28 -0
  118. package/pv-components/dist/vue/ai/components/base/PvPopoverV2/PvPopoverV2.vue.d.ts +39 -0
  119. package/pv-components/dist/vue/ai/components/base/PvPopoverV2/types.d.ts +36 -0
  120. package/pv-components/dist/vue/ai/components/base/PvProgressBar/PvProgressBar.vue.d.ts +15 -0
  121. package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +73 -0
  122. package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/QueryBuilderMenuOptionRenderer.vue.d.ts +6 -0
  123. package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/QueryFormatter.vue.d.ts +20 -0
  124. package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/useQueryBuilder.d.ts +44 -0
  125. package/pv-components/dist/vue/ai/components/base/PvRadioGroup/PvRadioGroup.vue.d.ts +30 -0
  126. package/pv-components/dist/vue/ai/components/base/PvRadioGroup/types.d.ts +5 -0
  127. package/pv-components/dist/vue/ai/components/base/PvRange/PvRange.vue.d.ts +36 -0
  128. package/pv-components/dist/vue/ai/components/base/PvRange/types.d.ts +44 -0
  129. package/pv-components/dist/vue/ai/components/base/PvRating/PvRating.vue.d.ts +15 -0
  130. package/pv-components/dist/vue/ai/components/base/PvRating/types.d.ts +4 -0
  131. package/pv-components/dist/vue/ai/components/base/PvReleaseBadge/PvReleaseBadge.vue.d.ts +10 -0
  132. package/pv-components/dist/vue/ai/components/base/PvReleaseBadge/types.d.ts +1 -0
  133. package/pv-components/dist/vue/ai/components/base/PvSearchInput/PvSearchInput.vue.d.ts +33 -0
  134. package/pv-components/dist/vue/ai/components/base/PvSegmentedControl/PvSegmentedControl.vue.d.ts +23 -0
  135. package/pv-components/dist/vue/ai/components/base/PvSegmentedControl/types.d.ts +18 -0
  136. package/pv-components/dist/vue/ai/components/base/PvSelectButton/PvSelectButton.vue.d.ts +85 -0
  137. package/pv-components/dist/vue/ai/components/base/PvSelectButton/PvSelectButtonTrigger/PvSelectButtonTrigger.vue.d.ts +14 -0
  138. package/pv-components/dist/vue/ai/components/base/PvSelectButton/PvSelectButtonTrigger/types.d.ts +27 -0
  139. package/pv-components/dist/vue/ai/components/base/PvSelectButton/mocks.d.ts +21 -0
  140. package/pv-components/dist/vue/ai/components/base/PvSelectButton/types.d.ts +3 -0
  141. package/pv-components/dist/vue/ai/components/base/PvSelectableCard/PvSelectableCard.vue.d.ts +30 -0
  142. package/pv-components/dist/vue/ai/components/base/PvSidebar/PvSidebar.vue.d.ts +38 -0
  143. package/pv-components/dist/vue/ai/components/base/PvSkeleton/PvSkeleton.vue.d.ts +17 -0
  144. package/pv-components/dist/vue/ai/components/base/PvSkeleton/types.d.ts +8 -0
  145. package/pv-components/dist/vue/ai/components/base/PvSpinner/PvSpinner.vue.d.ts +13 -0
  146. package/pv-components/dist/vue/ai/components/base/PvSpinner/types.d.ts +3 -0
  147. package/pv-components/dist/vue/ai/components/base/PvSplitButton/PvSplitButton.vue.d.ts +27 -0
  148. package/pv-components/dist/vue/ai/components/base/PvSplitButton/types.d.ts +12 -0
  149. package/pv-components/dist/vue/ai/components/base/PvSprite/PvSprite.vue.d.ts +9 -0
  150. package/pv-components/dist/vue/ai/components/base/PvStepper/PvStepper.vue.d.ts +16 -0
  151. package/pv-components/dist/vue/ai/components/base/PvSuggestionTag/PvSuggestionTag.vue.d.ts +37 -0
  152. package/pv-components/dist/vue/ai/components/base/PvSwitch/PvSwitch.vue.d.ts +34 -0
  153. package/pv-components/dist/vue/ai/components/base/PvSwitch/types.d.ts +2 -0
  154. package/pv-components/dist/vue/ai/components/base/PvTabList/PvTabList.vue.d.ts +12 -0
  155. package/pv-components/dist/vue/ai/components/base/PvTableOfContents/PvTableOfContents.vue.d.ts +19 -0
  156. package/pv-components/dist/vue/ai/components/base/PvTableOfContents/types.d.ts +6 -0
  157. package/pv-components/dist/vue/ai/components/base/PvTabs/PvTabs.vue.d.ts +20 -0
  158. package/pv-components/dist/vue/ai/components/base/PvTabs/types.d.ts +10 -0
  159. package/pv-components/dist/vue/ai/components/base/PvTag/PvTag.vue.d.ts +53 -0
  160. package/pv-components/dist/vue/ai/components/base/PvTag/types.d.ts +3 -0
  161. package/pv-components/dist/vue/ai/components/base/PvTextArea/PvTextArea.vue.d.ts +51 -0
  162. package/pv-components/dist/vue/ai/components/base/PvTextArea/types.d.ts +2 -0
  163. package/pv-components/dist/vue/ai/components/base/PvToast/PvToast.vue.d.ts +33 -0
  164. package/pv-components/dist/vue/ai/components/base/PvToast/types.d.ts +1 -0
  165. package/pv-components/dist/vue/ai/components/base/PvToggleButton/PvToggleButton.vue.d.ts +48 -0
  166. package/pv-components/dist/vue/ai/components/base/PvToggleButton/types.d.ts +3 -0
  167. package/pv-components/dist/vue/ai/components/base/PvToggleGroup/PvToggleGroup.vue.d.ts +12 -0
  168. package/pv-components/dist/vue/ai/components/base/PvToggleGroup/types.d.ts +12 -0
  169. package/pv-components/dist/vue/ai/components/base/PvTooltip/PvTooltip.vue.d.ts +41 -0
  170. package/pv-components/dist/vue/ai/components/base/PvTooltip/types.d.ts +4 -0
  171. package/pv-components/dist/vue/ai/components/base/PvTooltipV2/PvTooltipV2.vue.d.ts +28 -0
  172. package/pv-components/dist/vue/ai/components/base/PvTooltipV2/types.d.ts +14 -0
  173. package/pv-components/dist/vue/ai/components/base/PvTree/PvButtonTreeItem.vue.d.ts +36 -0
  174. package/pv-components/dist/vue/ai/components/base/PvTree/PvCheckboxTreeItem.vue.d.ts +36 -0
  175. package/pv-components/dist/vue/ai/components/base/PvTree/PvSimpleItemTree.vue.d.ts +7 -0
  176. package/pv-components/dist/vue/ai/components/base/PvTree/PvSimpleNestedTree.vue.d.ts +31 -0
  177. package/pv-components/dist/vue/ai/components/base/PvTree/PvSimpleNestedTreeItem.vue.d.ts +35 -0
  178. package/pv-components/dist/vue/ai/components/base/PvTree/PvTree.vue.d.ts +31 -0
  179. package/pv-components/dist/vue/ai/components/base/PvTree/PvTreeGroup.vue.d.ts +18 -0
  180. package/pv-components/dist/vue/ai/components/base/PvTree/PvTreeItem.vue.d.ts +37 -0
  181. package/pv-components/dist/vue/ai/components/base/PvTree/PvTreeReorderIcon.vue.d.ts +3 -0
  182. package/pv-components/dist/vue/ai/components/base/PvTree/composables/useDragAndDrop.d.ts +23 -0
  183. package/pv-components/dist/vue/ai/components/base/PvTree/composables/useDragAndDropIndicator.d.ts +8 -0
  184. package/pv-components/dist/vue/ai/components/base/PvTree/composables/useDraggingState.d.ts +40 -0
  185. package/pv-components/dist/vue/ai/components/base/PvTree/composables/useHoverIcon.d.ts +6 -0
  186. package/pv-components/dist/vue/ai/components/base/PvTree/composables/useTreeUpdate.d.ts +8 -0
  187. package/pv-components/dist/vue/ai/components/base/PvTree/symbols.d.ts +12 -0
  188. package/pv-components/dist/vue/ai/components/base/PvTree/types.d.ts +61 -0
  189. package/pv-components/dist/vue/ai/components/base/PvWidget/PvWidget.vue.d.ts +18 -0
  190. package/pv-components/dist/vue/ai/components/base/baseProps.d.ts +18 -0
  191. package/pv-components/dist/vue/ai/components/base/index.d.ts +92 -0
  192. package/pv-components/dist/vue/ai/components/layout/PvSidePanel/PvSidePanel.vue.d.ts +24 -0
  193. package/pv-components/dist/vue/ai/pv-components-ai.mjs +951 -0
  194. package/pv-components/dist/vue/ai/pv-components-ai.mjs.map +1 -0
  195. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1 -1
  196. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  197. package/pv-components/dist/web/components/pv-confirmation/pv-confirmation.js +6441 -0
  198. package/pv-components/dist/web/components/pv-prompt-input/pv-prompt-input.js +6541 -0
  199. package/pv-components/dist/web/components/pv-question/pv-question.js +6704 -0
  200. package/pv-components/dist/web/components/pv-reasoning/pv-reasoning.js +6418 -0
  201. package/pv-components/dist/web/components/pv-tool/pv-tool.js +6450 -0
  202. package/pv-components/dist/web/pv-components.iife.js +37 -37
  203. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -158,7 +158,6 @@
158
158
  [class*=pv-heading] {
159
159
  font-family: var(--font-family-body, Inter, sans-serif);
160
160
  font-weight: 600;
161
- letter-spacing: 0.2px;
162
161
  }
163
162
 
164
163
  [class*=pv-text-body] {
@@ -189,57 +188,73 @@
189
188
  .pv-heading-1 {
190
189
  font-size: var(--font-size-heading-1, 1.25rem);
191
190
  line-height: var(--line-height-heading-1, 1.2);
191
+ letter-spacing: 0.2px;
192
192
  }
193
193
 
194
194
  .pv-heading-2 {
195
195
  font-size: var(--font-size-heading-2, 1rem);
196
196
  line-height: var(--line-height-heading-2, 1.5);
197
+ letter-spacing: 0.16px;
197
198
  }
198
199
 
199
200
  .pv-heading-3 {
200
201
  font-size: var(--font-size-heading-3, 0.875rem);
201
202
  line-height: var(--line-height-heading-3, 1.4285714);
203
+ letter-spacing: 0.14px;
202
204
  }
203
205
 
204
206
  .pv-heading-4 {
205
207
  font-size: var(--font-size-heading-4, 0.75rem);
206
208
  line-height: var(--line-height-heading-4, 1.3333333);
209
+ letter-spacing: 0.12px;
207
210
  }
208
211
 
209
212
  .pv-heading-5 {
210
213
  font-size: var(--font-size-heading-5, 0.75rem);
211
214
  line-height: var(--line-height-heading-5, 1.3333333);
215
+ letter-spacing: 0.12px;
212
216
  }
213
217
 
214
218
  .pv-text-body-xl {
215
219
  font-size: var(--font-size-xl, 0.875rem);
216
- line-height: var(--line-height-xl, 1.1428571);
220
+ line-height: var(--line-height-xl, 1.4285714);
221
+ letter-spacing: 0.14px;
217
222
  }
218
223
 
219
224
  .pv-text-body-lg, .pv-chart-chip-value {
220
225
  font-size: var(--font-size-l, 0.875rem);
221
- line-height: var(--line-height-l, 1.1428571);
226
+ line-height: var(--line-height-l, 1.4285714);
227
+ letter-spacing: 0.14px;
222
228
  }
223
229
 
224
230
  .pv-text-body-md, .pv-chart-chip-label, .pv-chart-chip-section-label {
225
231
  font-size: var(--font-size-m, 0.75rem);
226
232
  line-height: var(--line-height-m, 1.33333333);
233
+ letter-spacing: 0.12px;
227
234
  }
228
235
 
229
236
  .pv-text-body-sm, .pv-chart-tooltip-value, .pv-chart-tooltip-label {
230
237
  font-size: var(--font-size-s, 0.6875rem);
231
238
  line-height: var(--line-height-s, 1.45454545);
239
+ letter-spacing: 0.11px;
232
240
  }
233
241
 
234
242
  .pv-text-body-xs {
235
243
  font-size: var(--font-size-xs, 0.6875rem);
236
244
  line-height: var(--line-height-xs, 1.45454545);
245
+ letter-spacing: 0.11px;
237
246
  }
238
247
 
239
248
  .pv-text-body-xxs {
240
249
  font-size: var(--font-size-xxs, 0.6875rem);
241
250
  line-height: var(--line-height-xxs, 1.45454545);
242
- letter-spacing: 0.12px;
251
+ letter-spacing: 0.11px;
252
+ }
253
+
254
+ .pv-text-caption {
255
+ font-size: var(--font-size-s, 0.6875rem);
256
+ line-height: var(--line-height-caption, 1.09090909);
257
+ letter-spacing: 0.11px;
243
258
  }
244
259
 
245
260
  .pv-text-medium, .pv-chart-chip-value, .pv-chart-chip-label, .pv-chart-chip-section-label, .pv-chart-tooltip-value {
@@ -253,26 +268,31 @@
253
268
  .pv-text-title-xl {
254
269
  font-size: var(--font-size-title-xl, 0.875rem);
255
270
  line-height: var(--line-height-title-xl, 1.1428571);
271
+ letter-spacing: 0.14px;
256
272
  }
257
273
 
258
274
  .pv-text-title-lg {
259
275
  font-size: var(--font-size-title-l, 0.875rem);
260
276
  line-height: var(--line-height-title-l, 1.1428571);
277
+ letter-spacing: 0.14px;
261
278
  }
262
279
 
263
280
  .pv-text-title-md {
264
281
  font-size: var(--font-size-title-m, 0.75rem);
265
282
  line-height: var(--line-height-title-m, 1.33333333);
283
+ letter-spacing: 0.12px;
266
284
  }
267
285
 
268
286
  .pv-text-title-sm {
269
287
  font-size: var(--font-size-title-s, 0.6875rem);
270
288
  line-height: var(--line-height-title-s, 1.45454545);
289
+ letter-spacing: 0.11px;
271
290
  }
272
291
 
273
292
  .pv-text-title-xs {
274
293
  font-size: var(--font-size-title-xs, 0.6875rem);
275
294
  line-height: var(--line-height-title-xs, 1.45454545);
295
+ letter-spacing: 0.11px;
276
296
  }
277
297
 
278
298
  .pv-text-eyebrow-lg {
@@ -368,14 +388,14 @@
368
388
  position: relative;
369
389
  padding-bottom: var(--display-list-padding-bottom, 0.5rem);
370
390
  font-size: var(--display-list-font-size, 0.875rem);
371
- line-height: var(--display-list-line-height, 1.1428571);
391
+ line-height: var(--display-list-line-height, 1.4285714);
372
392
  }
373
393
  [data-list-style=display]::before {
374
394
  content: counter(display) ".";
375
395
  color: #16696D;
376
396
  font-family: "Inter", sans-serif;
377
397
  font-size: var(--display-counter-list-font-size, 0.875rem);
378
- line-height: var(--display-counter-list-line-height, 1.1428571);
398
+ line-height: var(--display-counter-list-line-height, 1.4285714);
379
399
  }
380
400
 
381
401
  [data-list-incomplete] {
@@ -702,8 +722,8 @@
702
722
  }
703
723
 
704
724
  .pv-button-small {
705
- font-size: var(--button-small-font-size, 0.75rem);
706
- line-height: var(--button-small-line-height, 1.33333333);
725
+ font-size: var(--button-small-font-size, 0.6875rem);
726
+ line-height: var(--button-small-line-height, 1.45454545);
707
727
  padding: var(--button-small-padding, calc(0.125rem - 1px) 0.25rem);
708
728
  }
709
729
  .pv-button-small.pv-button-primary-outline {
@@ -786,8 +806,8 @@
786
806
  color: var(--button-link-inverse-hover-color, #A8E6E1);
787
807
  }
788
808
  [class*=pv-button-link].pv-button-xsmall, [class*=pv-button-link].pv-button-small, [class*=pv-button-link].pv-button-large {
789
- font-size: var(--button-small-font-size, 0.75rem);
790
- line-height: var(--button-small-line-height, 1.33333333);
809
+ font-size: var(--button-small-font-size, 0.6875rem);
810
+ line-height: var(--button-small-line-height, 1.45454545);
791
811
  }
792
812
 
793
813
  .pv-button-link-destructive {
@@ -1156,7 +1176,7 @@
1156
1176
  .pv-input-group > label {
1157
1177
  font-size: var(--label-font-size, 0.6875rem);
1158
1178
  font-weight: var(--label-font-weight, 400);
1159
- letter-spacing: 0.12px;
1179
+ letter-spacing: 0.11px;
1160
1180
  position: relative;
1161
1181
  z-index: 1;
1162
1182
  }
@@ -1562,7 +1582,7 @@ div:has(> .pv-input-text[data-suffix="%"]) .pv-input-text {
1562
1582
  .pv-ghost-input[data-style=text-large] input {
1563
1583
  font-weight: 400;
1564
1584
  font-size: 0.875rem;
1565
- line-height: 1.1428571;
1585
+ line-height: 1.4285714;
1566
1586
  }
1567
1587
  .pv-ghost-input[data-style=text-medium] input {
1568
1588
  font-weight: 400;
@@ -4313,7 +4333,7 @@ div:has(> pv-figure-details) {
4313
4333
  background-position: 0.75rem 50%;
4314
4334
  border-radius: 4px;
4315
4335
  font-size: 0.875rem;
4316
- line-height: 1.1428571;
4336
+ line-height: 1.4285714;
4317
4337
  }
4318
4338
 
4319
4339
  .pv-alert-warning {
@@ -6446,6 +6466,22 @@ svg.pv-text-inherit {
6446
6466
  vertical-align: top;
6447
6467
  }
6448
6468
 
6469
+ .pv-text-regular {
6470
+ font-weight: var(--font-weight-regular, 400);
6471
+ }
6472
+
6473
+ .pv-text-medium, .pv-chart-tooltip-value, .pv-chart-chip-section-label, .pv-chart-chip-label, .pv-chart-chip-value {
6474
+ font-weight: var(--font-weight-medium, 500);
6475
+ }
6476
+
6477
+ .pv-text-semibold {
6478
+ font-weight: var(--font-weight-semibold, 600);
6479
+ }
6480
+
6481
+ .pv-text-bold {
6482
+ font-weight: var(--font-weight-bold, 700);
6483
+ }
6484
+
6449
6485
  .select2-container {
6450
6486
  position: relative;
6451
6487
  display: block;
@@ -6848,7 +6884,7 @@ input.select2-search__field::placeholder {
6848
6884
  .p-datepicker-input {
6849
6885
  font-size: var(--datepicker-text-size, 0.6875rem);
6850
6886
  line-height: var(--datepicker-line-height, 1.45454545);
6851
- letter-spacing: 0.12px;
6887
+ letter-spacing: 0.11px;
6852
6888
  padding: calc(0.5rem - 1px) 0.5rem;
6853
6889
  }
6854
6890
 
@@ -163,7 +163,6 @@
163
163
  [class*=pv-heading] {
164
164
  font-family: var(--font-family-body, HK Grotesk, sans-serif);
165
165
  font-weight: 700;
166
- letter-spacing: 0;
167
166
  }
168
167
 
169
168
  [class*=pv-text-body] {
@@ -194,51 +193,61 @@
194
193
  .pv-heading-1 {
195
194
  font-size: var(--font-size-heading-1, 2.75rem);
196
195
  line-height: var(--line-height-heading-1, 1.18181818);
196
+ letter-spacing: 0;
197
197
  }
198
198
 
199
199
  .pv-heading-2 {
200
200
  font-size: var(--font-size-heading-2, 2.25rem);
201
201
  line-height: var(--line-height-heading-2, 1.2222222);
202
+ letter-spacing: 0;
202
203
  }
203
204
 
204
205
  .pv-heading-3 {
205
206
  font-size: var(--font-size-heading-3, 1.75rem);
206
207
  line-height: var(--line-height-heading-3, 1.1428571);
208
+ letter-spacing: 0;
207
209
  }
208
210
 
209
211
  .pv-heading-4 {
210
212
  font-size: var(--font-size-heading-4, 1.5rem);
211
213
  line-height: var(--line-height-heading-4, 1.16666666);
214
+ letter-spacing: 0;
212
215
  }
213
216
 
214
217
  .pv-heading-5 {
215
218
  font-size: var(--font-size-heading-5, 1.25rem);
216
219
  line-height: var(--line-height-heading-5, 1.2);
220
+ letter-spacing: 0;
217
221
  }
218
222
 
219
223
  .pv-text-body-xl {
220
224
  font-size: var(--font-size-xl, 1.375rem);
221
225
  line-height: var(--line-height-xl, 1.45454545);
226
+ letter-spacing: 0;
222
227
  }
223
228
 
224
229
  .pv-text-body-lg {
225
230
  font-size: var(--font-size-l, 1.25rem);
226
231
  line-height: var(--line-height-l, 1.6);
232
+ letter-spacing: 0;
227
233
  }
228
234
 
229
235
  .pv-text-body-md {
230
236
  font-size: var(--font-size-m, 1.125rem);
231
237
  line-height: var(--line-height-m, 1.55555555);
238
+ letter-spacing: 0;
232
239
  }
233
240
 
234
241
  .pv-text-body-sm {
235
242
  font-size: var(--font-size-s, 1rem);
236
243
  line-height: var(--line-height-s, 1.5);
244
+ letter-spacing: 0;
237
245
  }
238
246
 
239
247
  .pv-text-body-xs {
240
248
  font-size: var(--font-size-xs, 0.875rem);
241
249
  line-height: var(--line-height-xs, 1.42857143);
250
+ letter-spacing: 0;
242
251
  }
243
252
 
244
253
  .pv-text-body-xxs {
@@ -247,6 +256,12 @@
247
256
  letter-spacing: 0;
248
257
  }
249
258
 
259
+ .pv-text-caption {
260
+ font-size: var(--font-size-s, 1rem);
261
+ line-height: var(--line-height-caption, 1.09090909);
262
+ letter-spacing: 0;
263
+ }
264
+
250
265
  .pv-text-medium {
251
266
  font-weight: 500;
252
267
  }
@@ -258,26 +273,31 @@
258
273
  .pv-text-title-xl {
259
274
  font-size: var(--font-size-title-xl, 1.375rem);
260
275
  line-height: var(--line-height-title-xl, 1.27272727);
276
+ letter-spacing: 0;
261
277
  }
262
278
 
263
279
  .pv-text-title-lg {
264
280
  font-size: var(--font-size-title-l, 1.25rem);
265
281
  line-height: var(--line-height-title-l, 1.2);
282
+ letter-spacing: 0;
266
283
  }
267
284
 
268
285
  .pv-text-title-md {
269
286
  font-size: var(--font-size-title-m, 1.125rem);
270
287
  line-height: var(--line-height-title-m, 1.33333333);
288
+ letter-spacing: 0;
271
289
  }
272
290
 
273
291
  .pv-text-title-sm {
274
292
  font-size: var(--font-size-title-s, 1rem);
275
293
  line-height: var(--line-height-title-s, 1.25);
294
+ letter-spacing: 0;
276
295
  }
277
296
 
278
297
  .pv-text-title-xs {
279
298
  font-size: var(--font-size-title-xs, 0.875rem);
280
299
  line-height: var(--line-height-title-xs, 1.66666666);
300
+ letter-spacing: 0;
281
301
  }
282
302
 
283
303
  .pv-text-eyebrow-lg {
@@ -6058,6 +6078,22 @@ svg.pv-text-inherit {
6058
6078
  vertical-align: top;
6059
6079
  }
6060
6080
 
6081
+ .pv-text-regular {
6082
+ font-weight: var(--font-weight-regular, 400);
6083
+ }
6084
+
6085
+ .pv-text-medium {
6086
+ font-weight: var(--font-weight-medium, 500);
6087
+ }
6088
+
6089
+ .pv-text-semibold {
6090
+ font-weight: var(--font-weight-semibold, 600);
6091
+ }
6092
+
6093
+ .pv-text-bold {
6094
+ font-weight: var(--font-weight-bold, 700);
6095
+ }
6096
+
6061
6097
  .select2-container {
6062
6098
  position: relative;
6063
6099
  display: block;