@turquoisehealth/pit-viper 2.215.0 → 2.216.1-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 (208) hide show
  1. package/package.json +5 -1
  2. package/pv-components/dist/stats/vue/ai/stats.html +4950 -0
  3. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  4. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  5. package/pv-components/dist/stats/web/pv-confirmation-stats.html +4950 -0
  6. package/pv-components/dist/stats/web/pv-filter-modal-stats.html +1 -1
  7. package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
  8. package/pv-components/dist/stats/web/pv-prompt-input-stats.html +4950 -0
  9. package/pv-components/dist/stats/web/pv-question-stats.html +4950 -0
  10. package/pv-components/dist/stats/web/pv-reasoning-stats.html +4950 -0
  11. package/pv-components/dist/stats/web/pv-tool-stats.html +4950 -0
  12. package/pv-components/dist/vue/ai/components/ai/PvConfirmation/PvConfirmation.vue.d.ts +30 -0
  13. package/pv-components/dist/vue/ai/components/ai/PvConfirmation/types.d.ts +21 -0
  14. package/pv-components/dist/vue/ai/components/ai/PvPromptInput/PvPromptInput.vue.d.ts +46 -0
  15. package/pv-components/dist/vue/ai/components/ai/PvPromptInput/types.d.ts +20 -0
  16. package/pv-components/dist/vue/ai/components/ai/PvQuestion/PvQuestion.vue.d.ts +35 -0
  17. package/pv-components/dist/vue/ai/components/ai/PvQuestion/types.d.ts +24 -0
  18. package/pv-components/dist/vue/ai/components/ai/PvReasoning/PvReasoning.vue.d.ts +33 -0
  19. package/pv-components/dist/vue/ai/components/ai/PvReasoning/types.d.ts +14 -0
  20. package/pv-components/dist/vue/ai/components/ai/PvTool/PvTool.vue.d.ts +35 -0
  21. package/pv-components/dist/vue/ai/components/ai/PvTool/types.d.ts +15 -0
  22. package/pv-components/dist/vue/ai/components/ai/index.d.ts +15 -0
  23. package/pv-components/dist/vue/ai/components/ai/toolLifecycle.d.ts +21 -0
  24. package/pv-components/dist/vue/ai/components/ai/useStickToBottom.d.ts +19 -0
  25. package/pv-components/dist/vue/ai/components/base/PvAccordion/PvAccordion.vue.d.ts +60 -0
  26. package/pv-components/dist/vue/ai/components/base/PvAccordion/types.d.ts +5 -0
  27. package/pv-components/dist/vue/ai/components/base/PvActionBar/PvActionBar.vue.d.ts +36 -0
  28. package/pv-components/dist/vue/ai/components/base/PvActionBar/types.d.ts +2 -0
  29. package/pv-components/dist/vue/ai/components/base/PvActionButton/PvActionButton.vue.d.ts +22 -0
  30. package/pv-components/dist/vue/ai/components/base/PvAiButton/PvAiButton.vue.d.ts +20 -0
  31. package/pv-components/dist/vue/ai/components/base/PvAiButton/types.d.ts +2 -0
  32. package/pv-components/dist/vue/ai/components/base/PvAvatar/PvAvatar.vue.d.ts +7 -0
  33. package/pv-components/dist/vue/ai/components/base/PvAvatar/types.d.ts +20 -0
  34. package/pv-components/dist/vue/ai/components/base/PvAvatarGroup/PvAvatarGroup.vue.d.ts +12 -0
  35. package/pv-components/dist/vue/ai/components/base/PvAvatarGroup/types.d.ts +16 -0
  36. package/pv-components/dist/vue/ai/components/base/PvBanner/PvBanner.vue.d.ts +35 -0
  37. package/pv-components/dist/vue/ai/components/base/PvBanner/types.d.ts +11 -0
  38. package/pv-components/dist/vue/ai/components/base/PvBreadcrumbs/PvBreadcrumbs.vue.d.ts +8 -0
  39. package/pv-components/dist/vue/ai/components/base/PvBreadcrumbs/types.d.ts +6 -0
  40. package/pv-components/dist/vue/ai/components/base/PvButton/PvButton.vue.d.ts +10 -0
  41. package/pv-components/dist/vue/ai/components/base/PvButton/PvButtonWithTooltip.vue.d.ts +8 -0
  42. package/pv-components/dist/vue/ai/components/base/PvButton/helpers.d.ts +3 -0
  43. package/pv-components/dist/vue/ai/components/base/PvButton/types.d.ts +38 -0
  44. package/pv-components/dist/vue/ai/components/base/PvCard/PvCard.vue.d.ts +30 -0
  45. package/pv-components/dist/vue/ai/components/base/PvCard/types.d.ts +2 -0
  46. package/pv-components/dist/vue/ai/components/base/PvCheckbox/PvCheckbox.vue.d.ts +19 -0
  47. package/pv-components/dist/vue/ai/components/base/PvCompanyLabel/PvCompanyLabel.vue.d.ts +14 -0
  48. package/pv-components/dist/vue/ai/components/base/PvCompanyLabel/types.d.ts +2 -0
  49. package/pv-components/dist/vue/ai/components/base/PvCompanyLogo/PvCompanyLogo.vue.d.ts +17 -0
  50. package/pv-components/dist/vue/ai/components/base/PvCompanyLogo/types.d.ts +2 -0
  51. package/pv-components/dist/vue/ai/components/base/PvCompanyTag/PvCompanyTag.vue.d.ts +31 -0
  52. package/pv-components/dist/vue/ai/components/base/PvComponentsConfig/primeVue.config.d.ts +14 -0
  53. package/pv-components/dist/vue/ai/components/base/PvComponentsConfig/usePvComponents.d.ts +2 -0
  54. package/pv-components/dist/vue/ai/components/base/PvCounterBadge/PvCounterBadge.vue.d.ts +21 -0
  55. package/pv-components/dist/vue/ai/components/base/PvCounterBadge/types.d.ts +3 -0
  56. package/pv-components/dist/vue/ai/components/base/PvDatePicker/PvDatePicker.vue.d.ts +103 -0
  57. package/pv-components/dist/vue/ai/components/base/PvDateTime/PvDateTime.vue.d.ts +18 -0
  58. package/pv-components/dist/vue/ai/components/base/PvDateTime/useDateTime.d.ts +9 -0
  59. package/pv-components/dist/vue/ai/components/base/PvDistributionBar/PvDistributionBar.vue.d.ts +7 -0
  60. package/pv-components/dist/vue/ai/components/base/PvDrawer/PvDrawer.vue.d.ts +54 -0
  61. package/pv-components/dist/vue/ai/components/base/PvDropdown/PvDropdown.vue.d.ts +125 -0
  62. package/pv-components/dist/vue/ai/components/base/PvEmptyErrorState/PvEmptyErrorState.vue.d.ts +22 -0
  63. package/pv-components/dist/vue/ai/components/base/PvEmptyErrorState/types.d.ts +11 -0
  64. package/pv-components/dist/vue/ai/components/base/PvExpandableContent/PvExpandableContent.vue.d.ts +34 -0
  65. package/pv-components/dist/vue/ai/components/base/PvExpandableContent/types.d.ts +3 -0
  66. package/pv-components/dist/vue/ai/components/base/PvFilterModal/PvFilterModal.vue.d.ts +80 -0
  67. package/pv-components/dist/vue/ai/components/base/PvFilterModal/PvFilterModalSelectItem.vue.d.ts +33 -0
  68. package/pv-components/dist/vue/ai/components/base/PvFilterModal/types.d.ts +11 -0
  69. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/PvFilterPanel.vue.d.ts +78 -0
  70. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/PvFilterPanelAccordion.vue.d.ts +18 -0
  71. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/PvFilterPanelAppliedFiltersSection.vue.d.ts +12 -0
  72. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/PvFilterPanelCategoryButtonRow.vue.d.ts +14 -0
  73. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/PvFilterPanelOptionRow.vue.d.ts +35 -0
  74. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/advancedFilterModel.d.ts +26 -0
  75. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/aggregateFilterModel.d.ts +56 -0
  76. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/filterOptionDisplay.d.ts +28 -0
  77. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/filterOptionValue.d.ts +15 -0
  78. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/types.d.ts +525 -0
  79. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/usePvFilterPanel.d.ts +30 -0
  80. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/usePvFilterStore.d.ts +5 -0
  81. package/pv-components/dist/vue/ai/components/base/PvGhostInput/PvGhostInput.vue.d.ts +45 -0
  82. package/pv-components/dist/vue/ai/components/base/PvGhostInput/types.d.ts +2 -0
  83. package/pv-components/dist/vue/ai/components/base/PvHeader/PvHeader.vue.d.ts +36 -0
  84. package/pv-components/dist/vue/ai/components/base/PvHorizontalScroller/PvHorizontalScroller.vue.d.ts +36 -0
  85. package/pv-components/dist/vue/ai/components/base/PvHorizontalScroller/types.d.ts +21 -0
  86. package/pv-components/dist/vue/ai/components/base/PvHoverActionMenu/PvHoverActionMenu.vue.d.ts +42 -0
  87. package/pv-components/dist/vue/ai/components/base/PvHoverActionMenu/types.d.ts +15 -0
  88. package/pv-components/dist/vue/ai/components/base/PvIcon/PvIcon.vue.d.ts +14 -0
  89. package/pv-components/dist/vue/ai/components/base/PvInput/PvInput.vue.d.ts +59 -0
  90. package/pv-components/dist/vue/ai/components/base/PvInput/types.d.ts +3 -0
  91. package/pv-components/dist/vue/ai/components/base/PvInsightCard/PvInsightCard.vue.d.ts +29 -0
  92. package/pv-components/dist/vue/ai/components/base/PvMenu/PvMenu.vue.d.ts +57 -0
  93. package/pv-components/dist/vue/ai/components/base/PvMenu/PvMenuControlPanel.vue.d.ts +26 -0
  94. package/pv-components/dist/vue/ai/components/base/PvMenu/PvMenuEmptyState.vue.d.ts +3 -0
  95. package/pv-components/dist/vue/ai/components/base/PvMenu/cascadeUtils.d.ts +42 -0
  96. package/pv-components/dist/vue/ai/components/base/PvMenu/items/PvMenuBaseItem.vue.d.ts +11 -0
  97. package/pv-components/dist/vue/ai/components/base/PvMenu/items/PvMenuItem.vue.d.ts +26 -0
  98. package/pv-components/dist/vue/ai/components/base/PvMenu/items/PvMenuItemAction.vue.d.ts +9 -0
  99. package/pv-components/dist/vue/ai/components/base/PvMenu/items/PvMenuItemVariant.vue.d.ts +22 -0
  100. package/pv-components/dist/vue/ai/components/base/PvMenu/symbols.d.ts +11 -0
  101. package/pv-components/dist/vue/ai/components/base/PvMenu/types.d.ts +31 -0
  102. package/pv-components/dist/vue/ai/components/base/PvMenu/useMenuPosition.d.ts +66 -0
  103. package/pv-components/dist/vue/ai/components/base/PvModal/PvModal.vue.d.ts +31 -0
  104. package/pv-components/dist/vue/ai/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +170 -0
  105. package/pv-components/dist/vue/ai/components/base/PvMultiSelectButton/mocks.d.ts +20 -0
  106. package/pv-components/dist/vue/ai/components/base/PvMultiSelectButton/types.d.ts +129 -0
  107. package/pv-components/dist/vue/ai/components/base/PvPagination/PvPagination.vue.d.ts +24 -0
  108. package/pv-components/dist/vue/ai/components/base/PvPagination/types.d.ts +3 -0
  109. package/pv-components/dist/vue/ai/components/base/PvPagination/usePagination.d.ts +12 -0
  110. package/pv-components/dist/vue/ai/components/base/PvPill/PvPill.vue.d.ts +29 -0
  111. package/pv-components/dist/vue/ai/components/base/PvPill/types.d.ts +4 -0
  112. package/pv-components/dist/vue/ai/components/base/PvPopover/PvPopover.vue.d.ts +37 -0
  113. package/pv-components/dist/vue/ai/components/base/PvPopoverMenu/PvPopoverMenu.vue.d.ts +28 -0
  114. package/pv-components/dist/vue/ai/components/base/PvPopoverV2/PvPopoverV2.vue.d.ts +39 -0
  115. package/pv-components/dist/vue/ai/components/base/PvPopoverV2/types.d.ts +36 -0
  116. package/pv-components/dist/vue/ai/components/base/PvProgressBar/PvProgressBar.vue.d.ts +15 -0
  117. package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +73 -0
  118. package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/QueryBuilderMenuOptionRenderer.vue.d.ts +6 -0
  119. package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/QueryFormatter.vue.d.ts +20 -0
  120. package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/useQueryBuilder.d.ts +44 -0
  121. package/pv-components/dist/vue/ai/components/base/PvRadioGroup/PvRadioGroup.vue.d.ts +30 -0
  122. package/pv-components/dist/vue/ai/components/base/PvRadioGroup/types.d.ts +5 -0
  123. package/pv-components/dist/vue/ai/components/base/PvRange/PvRange.vue.d.ts +36 -0
  124. package/pv-components/dist/vue/ai/components/base/PvRange/types.d.ts +44 -0
  125. package/pv-components/dist/vue/ai/components/base/PvRating/PvRating.vue.d.ts +15 -0
  126. package/pv-components/dist/vue/ai/components/base/PvRating/types.d.ts +4 -0
  127. package/pv-components/dist/vue/ai/components/base/PvReleaseBadge/PvReleaseBadge.vue.d.ts +10 -0
  128. package/pv-components/dist/vue/ai/components/base/PvReleaseBadge/types.d.ts +1 -0
  129. package/pv-components/dist/vue/ai/components/base/PvSearchInput/PvSearchInput.vue.d.ts +33 -0
  130. package/pv-components/dist/vue/ai/components/base/PvSegmentedControl/PvSegmentedControl.vue.d.ts +23 -0
  131. package/pv-components/dist/vue/ai/components/base/PvSegmentedControl/types.d.ts +18 -0
  132. package/pv-components/dist/vue/ai/components/base/PvSelectButton/PvSelectButton.vue.d.ts +85 -0
  133. package/pv-components/dist/vue/ai/components/base/PvSelectButton/PvSelectButtonTrigger/PvSelectButtonTrigger.vue.d.ts +14 -0
  134. package/pv-components/dist/vue/ai/components/base/PvSelectButton/PvSelectButtonTrigger/types.d.ts +27 -0
  135. package/pv-components/dist/vue/ai/components/base/PvSelectButton/mocks.d.ts +21 -0
  136. package/pv-components/dist/vue/ai/components/base/PvSelectButton/types.d.ts +3 -0
  137. package/pv-components/dist/vue/ai/components/base/PvSelectableCard/PvSelectableCard.vue.d.ts +30 -0
  138. package/pv-components/dist/vue/ai/components/base/PvSidebar/PvSidebar.vue.d.ts +38 -0
  139. package/pv-components/dist/vue/ai/components/base/PvSkeleton/PvSkeleton.vue.d.ts +17 -0
  140. package/pv-components/dist/vue/ai/components/base/PvSkeleton/types.d.ts +8 -0
  141. package/pv-components/dist/vue/ai/components/base/PvSpinner/PvSpinner.vue.d.ts +13 -0
  142. package/pv-components/dist/vue/ai/components/base/PvSpinner/types.d.ts +3 -0
  143. package/pv-components/dist/vue/ai/components/base/PvSplitButton/PvSplitButton.vue.d.ts +27 -0
  144. package/pv-components/dist/vue/ai/components/base/PvSplitButton/types.d.ts +12 -0
  145. package/pv-components/dist/vue/ai/components/base/PvSprite/PvSprite.vue.d.ts +9 -0
  146. package/pv-components/dist/vue/ai/components/base/PvStepper/PvStepper.vue.d.ts +16 -0
  147. package/pv-components/dist/vue/ai/components/base/PvSuggestionTag/PvSuggestionTag.vue.d.ts +37 -0
  148. package/pv-components/dist/vue/ai/components/base/PvSwitch/PvSwitch.vue.d.ts +34 -0
  149. package/pv-components/dist/vue/ai/components/base/PvSwitch/types.d.ts +2 -0
  150. package/pv-components/dist/vue/ai/components/base/PvTabList/PvTabList.vue.d.ts +12 -0
  151. package/pv-components/dist/vue/ai/components/base/PvTableOfContents/PvTableOfContents.vue.d.ts +19 -0
  152. package/pv-components/dist/vue/ai/components/base/PvTableOfContents/types.d.ts +6 -0
  153. package/pv-components/dist/vue/ai/components/base/PvTabs/PvTabs.vue.d.ts +20 -0
  154. package/pv-components/dist/vue/ai/components/base/PvTabs/types.d.ts +10 -0
  155. package/pv-components/dist/vue/ai/components/base/PvTag/PvTag.vue.d.ts +53 -0
  156. package/pv-components/dist/vue/ai/components/base/PvTag/types.d.ts +3 -0
  157. package/pv-components/dist/vue/ai/components/base/PvTextArea/PvTextArea.vue.d.ts +51 -0
  158. package/pv-components/dist/vue/ai/components/base/PvTextArea/types.d.ts +2 -0
  159. package/pv-components/dist/vue/ai/components/base/PvToast/PvToast.vue.d.ts +33 -0
  160. package/pv-components/dist/vue/ai/components/base/PvToast/types.d.ts +1 -0
  161. package/pv-components/dist/vue/ai/components/base/PvToggleButton/PvToggleButton.vue.d.ts +48 -0
  162. package/pv-components/dist/vue/ai/components/base/PvToggleButton/types.d.ts +3 -0
  163. package/pv-components/dist/vue/ai/components/base/PvToggleGroup/PvToggleGroup.vue.d.ts +12 -0
  164. package/pv-components/dist/vue/ai/components/base/PvToggleGroup/types.d.ts +12 -0
  165. package/pv-components/dist/vue/ai/components/base/PvTooltip/PvTooltip.vue.d.ts +41 -0
  166. package/pv-components/dist/vue/ai/components/base/PvTooltip/types.d.ts +4 -0
  167. package/pv-components/dist/vue/ai/components/base/PvTooltipV2/PvTooltipV2.vue.d.ts +28 -0
  168. package/pv-components/dist/vue/ai/components/base/PvTooltipV2/types.d.ts +14 -0
  169. package/pv-components/dist/vue/ai/components/base/PvTree/PvButtonTreeItem.vue.d.ts +36 -0
  170. package/pv-components/dist/vue/ai/components/base/PvTree/PvCheckboxTreeItem.vue.d.ts +36 -0
  171. package/pv-components/dist/vue/ai/components/base/PvTree/PvSimpleItemTree.vue.d.ts +7 -0
  172. package/pv-components/dist/vue/ai/components/base/PvTree/PvSimpleNestedTree.vue.d.ts +31 -0
  173. package/pv-components/dist/vue/ai/components/base/PvTree/PvSimpleNestedTreeItem.vue.d.ts +35 -0
  174. package/pv-components/dist/vue/ai/components/base/PvTree/PvTree.vue.d.ts +31 -0
  175. package/pv-components/dist/vue/ai/components/base/PvTree/PvTreeGroup.vue.d.ts +18 -0
  176. package/pv-components/dist/vue/ai/components/base/PvTree/PvTreeItem.vue.d.ts +37 -0
  177. package/pv-components/dist/vue/ai/components/base/PvTree/PvTreeReorderIcon.vue.d.ts +3 -0
  178. package/pv-components/dist/vue/ai/components/base/PvTree/composables/useDragAndDrop.d.ts +23 -0
  179. package/pv-components/dist/vue/ai/components/base/PvTree/composables/useDragAndDropIndicator.d.ts +8 -0
  180. package/pv-components/dist/vue/ai/components/base/PvTree/composables/useDraggingState.d.ts +40 -0
  181. package/pv-components/dist/vue/ai/components/base/PvTree/composables/useHoverIcon.d.ts +6 -0
  182. package/pv-components/dist/vue/ai/components/base/PvTree/composables/useTreeUpdate.d.ts +8 -0
  183. package/pv-components/dist/vue/ai/components/base/PvTree/symbols.d.ts +12 -0
  184. package/pv-components/dist/vue/ai/components/base/PvTree/types.d.ts +61 -0
  185. package/pv-components/dist/vue/ai/components/base/PvWidget/PvWidget.vue.d.ts +18 -0
  186. package/pv-components/dist/vue/ai/components/base/baseProps.d.ts +18 -0
  187. package/pv-components/dist/vue/ai/components/base/index.d.ts +92 -0
  188. package/pv-components/dist/vue/ai/components/layout/PvSidePanel/PvSidePanel.vue.d.ts +24 -0
  189. package/pv-components/dist/vue/ai/pv-components-ai.mjs +951 -0
  190. package/pv-components/dist/vue/ai/pv-components-ai.mjs.map +1 -0
  191. package/pv-components/dist/vue/base/components/base/PvFilterPanel/types.d.ts +32 -0
  192. package/pv-components/dist/vue/base/pv-components-base.mjs +158 -136
  193. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  194. package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/types.d.ts +32 -0
  195. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/PvDataTableWithChart.vue.d.ts +2 -1
  196. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +1 -3
  197. package/pv-components/dist/vue/visualizations/components/visualizations/index.d.ts +1 -1
  198. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +40 -17
  199. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  200. package/pv-components/dist/web/components/pv-confirmation/pv-confirmation.js +6441 -0
  201. package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +950 -928
  202. package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +2 -0
  203. package/pv-components/dist/web/components/pv-prompt-input/pv-prompt-input.js +6541 -0
  204. package/pv-components/dist/web/components/pv-question/pv-question.js +6704 -0
  205. package/pv-components/dist/web/components/pv-reasoning/pv-reasoning.js +6418 -0
  206. package/pv-components/dist/web/components/pv-tool/pv-tool.js +6450 -0
  207. package/pv-components/dist/web/pv-components.iife.js +39 -39
  208. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -0,0 +1,8 @@
1
+ import { PvButtonWithTooltipProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ import { PvTooltipVariants } from '../PvTooltip/types';
4
+ declare const _default: DefineComponent<PvButtonWithTooltipProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvButtonWithTooltipProps> & Readonly<{}>, {
5
+ tooltipVariant: PvTooltipVariants;
6
+ delay: number;
7
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
8
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { PvButtonSize } from './types.ts';
2
+ export declare const supportedInverseButtonVariants: string[];
3
+ export declare const pvButtonSizeToClass: (size: PvButtonSize | null | undefined) => string | null;
@@ -0,0 +1,38 @@
1
+ import { PvSize, PvVariants } from '../baseProps';
2
+ import { PvTooltipPositions, PvTooltipVariants } from '../PvTooltip/types';
3
+ export type PvButtonSize = Extract<PvSize, "md" | "lg" | "xl">;
4
+ export type PvButtonVariant = Extract<PvVariants, "primary" | "secondary" | "ghost" | "destructive" | "tertiary"> | "link" | "link-secondary";
5
+ export interface PvButtonProps {
6
+ /** Visual style of the button */
7
+ variant?: PvButtonVariant;
8
+ /** Button cannot be pressed */
9
+ disabled?: boolean;
10
+ /** Size of the button */
11
+ size?: PvButtonSize;
12
+ /** Show loading spinner */
13
+ loading?: boolean;
14
+ /** Text within the button */
15
+ label?: string;
16
+ /** Optional icon on the left side of the button */
17
+ leftIcon?: string;
18
+ /** Optional icon on the right side of the button */
19
+ rightIcon?: string;
20
+ /** Inverse button colors for dark backgrounds */
21
+ inverse?: boolean;
22
+ /** Optional counter on the left side of the button */
23
+ leftCounterBadge?: number;
24
+ /** Optional counter on the right side of the button */
25
+ rightCounterBadge?: number;
26
+ /** Accessible name for icon-only buttons (no label). Required when label is omitted. */
27
+ ariaLabel?: string;
28
+ }
29
+ export interface PvButtonWithTooltipProps extends PvButtonProps {
30
+ /** Text to show within the tooltip */
31
+ tooltipText: string;
32
+ /** Color scheme of the tooltip */
33
+ tooltipVariant?: PvTooltipVariants;
34
+ /** Where the tooltip appears relative to the button */
35
+ tooltipPosition?: PvTooltipPositions;
36
+ /** Delay in milliseconds before showing the tooltip */
37
+ delay?: number;
38
+ }
@@ -0,0 +1,30 @@
1
+ import { PvCardVariant } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ interface PvCardProps {
4
+ /** URL to navigate to when the card is clicked. Renders the card as an anchor element. */
5
+ href?: string;
6
+ /** Visual style variant of the card. */
7
+ variant?: PvCardVariant;
8
+ /** When true, renders the card as a button element with interactive styling. */
9
+ interactive?: boolean;
10
+ }
11
+ declare function __VLS_template(): {
12
+ attrs: Partial<{}>;
13
+ slots: {
14
+ default?(_: {}): any;
15
+ };
16
+ refs: {};
17
+ rootEl: any;
18
+ };
19
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
20
+ declare const __VLS_component: DefineComponent<PvCardProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvCardProps> & Readonly<{}>, {
21
+ variant: PvCardVariant;
22
+ interactive: boolean;
23
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
24
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
25
+ export default _default;
26
+ type __VLS_WithTemplateSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
@@ -0,0 +1,2 @@
1
+ import { PvVariants } from '../baseProps';
2
+ export type PvCardVariant = Extract<PvVariants, "primary" | "secondary">;
@@ -0,0 +1,19 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ interface PvCheckboxProps {
3
+ /** Accessible name when no wrapping <label> is present. */
4
+ ariaLabel?: string;
5
+ /** When true, the checkbox is non-interactive and visually dimmed. */
6
+ disabled?: boolean;
7
+ /** When true, displays the checkbox in an indeterminate (mixed) state. */
8
+ indeterminate?: boolean;
9
+ }
10
+ type __VLS_Props = PvCheckboxProps;
11
+ type __VLS_PublicProps = {
12
+ modelValue?: boolean;
13
+ } & __VLS_Props;
14
+ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
15
+ "update:modelValue": (value: boolean) => any;
16
+ }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
17
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
18
+ }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLInputElement>;
19
+ export default _default;
@@ -0,0 +1,14 @@
1
+ import { PvCompanyLabelSize } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ interface PvCompanyLabelProps {
4
+ /** Display size of the label and logo */
5
+ size?: PvCompanyLabelSize;
6
+ /** Logo identifier to display; falls back to label if not provided */
7
+ logo?: string;
8
+ /** Text label to display alongside the logo */
9
+ label: string;
10
+ }
11
+ declare const _default: DefineComponent<PvCompanyLabelProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvCompanyLabelProps> & Readonly<{}>, {
12
+ size: PvCompanyLabelSize;
13
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
14
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import { PvSize } from '../baseProps';
2
+ export type PvCompanyLabelSize = Extract<PvSize, "xs" | "sm" | "md">;
@@ -0,0 +1,17 @@
1
+ import { PvCompanyLogoSize } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ type PvCompanyLogoProps = {
4
+ /** Base URL path where company logo SVGs are hosted. */
5
+ basePath?: string;
6
+ /** Company name used to resolve the logo filename. */
7
+ name: string;
8
+ /** Display size of the logo. Maps to a fixed pixel width. */
9
+ size?: PvCompanyLogoSize;
10
+ /** When provided, overrides the computed image URL entirely (ignores `name` and `basePath`). */
11
+ srcPathOverride?: string;
12
+ };
13
+ declare const _default: DefineComponent<PvCompanyLogoProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvCompanyLogoProps> & Readonly<{}>, {
14
+ size: PvCompanyLogoSize;
15
+ basePath: string;
16
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
17
+ export default _default;
@@ -0,0 +1,2 @@
1
+ import { PvSize } from '../baseProps';
2
+ export type PvCompanyLogoSize = PvSize;
@@ -0,0 +1,31 @@
1
+ import { TagSize } from '../PvTag/types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ export interface PvCompanyTag {
4
+ /**
5
+ * Company name. Displayed on the left
6
+ */
7
+ companyName: string;
8
+ /**
9
+ * Show clear (close) icon on the right
10
+ */
11
+ showClear?: boolean;
12
+ /**
13
+ * Tag size
14
+ */
15
+ size?: TagSize;
16
+ /**
17
+ * Spine - dotted underline state
18
+ */
19
+ spine?: boolean;
20
+ }
21
+ declare const _default: DefineComponent<PvCompanyTag, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
22
+ "handle-close": (companyName: string) => any;
23
+ "handle-click": (companyName: string) => any;
24
+ }, string, PublicProps, Readonly<PvCompanyTag> & Readonly<{
25
+ "onHandle-close"?: ((companyName: string) => any) | undefined;
26
+ "onHandle-click"?: ((companyName: string) => any) | undefined;
27
+ }>, {
28
+ size: TagSize;
29
+ showClear: boolean;
30
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLButtonElement>;
31
+ export default _default;
@@ -0,0 +1,14 @@
1
+ import { Preset } from '@primeuix/themes/types';
2
+ import { AuraBaseDesignTokens } from '@primeuix/themes/aura/base';
3
+ export declare const PvComponentsConfig: {
4
+ theme: {
5
+ preset: Preset<AuraBaseDesignTokens>;
6
+ options: {
7
+ darkModeSelector: string;
8
+ cssLayer: {
9
+ name: string;
10
+ order: string;
11
+ };
12
+ };
13
+ };
14
+ };
@@ -0,0 +1,2 @@
1
+ import { App } from 'vue';
2
+ export declare const usePvComponents: (app: App<Element>) => void;
@@ -0,0 +1,21 @@
1
+ import { PvCounterBadgeSize, PvCounterBadgeVariant } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ export interface PvCounterBadgeProps {
4
+ /** Maximum value before showing overflow indicator (e.g. "99+") */
5
+ maxValue?: number;
6
+ /** Text prefix displayed before the value */
7
+ prefix?: string;
8
+ /** Display size of the badge */
9
+ size?: PvCounterBadgeSize;
10
+ /** Numeric value to display */
11
+ value?: number;
12
+ /** Visual style variant */
13
+ variant?: PvCounterBadgeVariant;
14
+ }
15
+ declare const _default: DefineComponent<PvCounterBadgeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvCounterBadgeProps> & Readonly<{}>, {
16
+ size: PvCounterBadgeSize;
17
+ variant: PvCounterBadgeVariant;
18
+ maxValue: number;
19
+ prefix: string;
20
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
21
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import { PvVariants, PvSize } from '../baseProps';
2
+ export type PvCounterBadgeVariant = PvVariants;
3
+ export type PvCounterBadgeSize = Extract<PvSize, "sm" | "md">;
@@ -0,0 +1,103 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ export interface PvDatePickerProps {
3
+ /**
4
+ * Defines the quantity of the selection.
5
+ */
6
+ selectionMode?: "single" | "multiple" | "range" | undefined;
7
+ /**
8
+ * Format of the date. Defaults to PrimeVue Locale configuration.
9
+ */
10
+ dateFormat?: string | undefined;
11
+ /**
12
+ * When enabled, displays the datepicker as inline instead of an overlay.
13
+ */
14
+ inline?: boolean | undefined;
15
+ /**
16
+ * Whether days in other months shown before or after the current month are selectable. This only applies if the showOtherMonths option is set to true.
17
+ */
18
+ selectOtherMonths?: boolean | undefined;
19
+ /**
20
+ * Number of months to display.
21
+ */
22
+ numberOfMonths?: number | undefined;
23
+ /**
24
+ * Type of view to display.
25
+ */
26
+ view?: "date" | "month" | "year" | undefined;
27
+ /**
28
+ * The minimum selectable date.
29
+ */
30
+ minDate?: Date | undefined;
31
+ /**
32
+ * The maximum selectable date.
33
+ */
34
+ maxDate?: Date | undefined;
35
+ /**
36
+ * Array with dates to disable.
37
+ */
38
+ disabledDates?: Date[] | undefined;
39
+ /**
40
+ * Array with disabled weekday numbers.
41
+ */
42
+ disabledDays?: number[] | undefined;
43
+ /**
44
+ * Maximum number of selectable dates in multiple mode.
45
+ */
46
+ maxDateCount?: number | undefined;
47
+ /**
48
+ * Whether to display today and clear buttons at the footer.
49
+ */
50
+ showButtonBar?: boolean | undefined;
51
+ /**
52
+ * When enabled, datepicker will show week numbers.
53
+ */
54
+ showWeek?: boolean | undefined;
55
+ /**
56
+ * Whether to allow entering the date manually via typing.
57
+ */
58
+ manualInput?: boolean | undefined;
59
+ /**
60
+ * When present, it specifies that the component should be disabled.
61
+ */
62
+ disabled?: boolean | undefined;
63
+ /**
64
+ * When present, it specifies that the component should have invalid state style.
65
+ */
66
+ invalid?: boolean | undefined;
67
+ /**
68
+ * When present, it specifies that an input field is read-only.
69
+ */
70
+ readonly?: boolean | undefined;
71
+ /**
72
+ * Placeholder text for the input.
73
+ */
74
+ placeholder?: string | undefined;
75
+ /**
76
+ * When enabled, displays a button with icon next to input.
77
+ */
78
+ showIcon?: boolean;
79
+ /**
80
+ * When input should take 100% width
81
+ */
82
+ fullWidth?: boolean;
83
+ /**
84
+ * A valid query selector or an HTMLElement to specify where the overlay gets attached.
85
+ */
86
+ appendTo?: "body" | "self" | undefined;
87
+ /**
88
+ * Style class of the datepicker panel.
89
+ */
90
+ panelClass?: string | undefined;
91
+ }
92
+ type __VLS_Props = PvDatePickerProps;
93
+ type __VLS_PublicProps = {
94
+ modelValue: Date;
95
+ } & __VLS_Props;
96
+ declare const _default: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
97
+ "update:modelValue": (value: Date) => any;
98
+ }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
99
+ "onUpdate:modelValue"?: ((value: Date) => any) | undefined;
100
+ }>, {
101
+ appendTo: "body" | "self";
102
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
103
+ export default _default;
@@ -0,0 +1,18 @@
1
+ import { PvSize } from '../baseProps';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ type DateTimeSize = Extract<PvSize, "xs" | "sm">;
4
+ interface PvDateTimeProps {
5
+ /** Display format: "condensed" for MM/DD/YYYY, "time" for h:mm AM/PM */
6
+ variants?: "condensed" | "time";
7
+ /** IANA timezone identifier for time display (e.g. "America/New_York") */
8
+ timezone?: string;
9
+ /** Date object to format and display */
10
+ date: Date;
11
+ /** Text size of the displayed date/time */
12
+ size?: DateTimeSize;
13
+ }
14
+ declare const _default: DefineComponent<PvDateTimeProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvDateTimeProps> & Readonly<{}>, {
15
+ size: DateTimeSize;
16
+ variants: "condensed" | "time";
17
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLSpanElement>;
18
+ export default _default;
@@ -0,0 +1,9 @@
1
+ export declare const useDateTime: () => {
2
+ getCondensedDate: ({ date }: {
3
+ date: Date;
4
+ }) => string;
5
+ getTime: ({ date, timezone }: {
6
+ date: Date;
7
+ timezone?: string;
8
+ }) => string;
9
+ };
@@ -0,0 +1,7 @@
1
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ interface PvDistributionBarProps {
3
+ /** Array of numeric values representing each segment of the distribution bar. Values are rendered proportionally. Supports up to 7 color-coded segments. */
4
+ values?: number[];
5
+ }
6
+ declare const _default: DefineComponent<PvDistributionBarProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvDistributionBarProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
7
+ export default _default;
@@ -0,0 +1,54 @@
1
+ import { PvSearchInputProps } from '../PvSearchInput/PvSearchInput.vue';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ export interface PvDrawerProps {
4
+ closeOnClickOutside?: boolean;
5
+ header?: string;
6
+ searchInputProps?: PvSearchInputProps;
7
+ showSearchbar?: boolean;
8
+ subheader?: string;
9
+ }
10
+ /**
11
+ * @deprecated Use `PvDrawerProps` instead. Retained as an alias for backwards
12
+ * compatibility with any existing imports of the props interface.
13
+ */
14
+ export interface PvDrawer extends PvDrawerProps {
15
+ }
16
+ type __VLS_Props = PvDrawerProps;
17
+ type __VLS_PublicProps = {
18
+ "searchInput"?: string;
19
+ modelValue: boolean;
20
+ } & __VLS_Props;
21
+ declare function __VLS_template(): {
22
+ attrs: Partial<{}>;
23
+ slots: {
24
+ header?(_: {}): any;
25
+ default?(_: {}): any;
26
+ footer?(_: {}): any;
27
+ };
28
+ refs: {
29
+ sidePanel: HTMLDivElement;
30
+ };
31
+ rootEl: HTMLDivElement;
32
+ };
33
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
34
+ declare const __VLS_component: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
35
+ "update:modelValue": (value: boolean) => any;
36
+ "update:searchInput": (value: string) => any;
37
+ } & {
38
+ "click-outside": () => any;
39
+ }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
40
+ "onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
41
+ "onClick-outside"?: (() => any) | undefined;
42
+ "onUpdate:searchInput"?: ((value: string) => any) | undefined;
43
+ }>, {
44
+ closeOnClickOutside: boolean;
45
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
46
+ sidePanel: HTMLDivElement;
47
+ }, HTMLDivElement>;
48
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
49
+ export default _default;
50
+ type __VLS_WithTemplateSlots<T, S> = T & {
51
+ new (): {
52
+ $slots: S;
53
+ };
54
+ };
@@ -0,0 +1,125 @@
1
+ import { nextTick, CSSProperties, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Attrs, Slot, ComponentPublicInstance, ComponentOptionsBase, Ref, GlobalComponents, GlobalDirectives, DebuggerEvent, WatchOptions, WatchStopHandle, ComponentCustomProperties } from 'vue';
2
+ import { PvPopoverProps } from '../PvPopover/PvPopover.vue';
3
+ import { OnCleanup } from '@vue/reactivity';
4
+ export interface PvDropdownProps {
5
+ /**
6
+ * Accessible name for the trigger button, exposed as `aria-label`. Required
7
+ * for icon-only triggers (e.g. a report-actions menu) so the button is named
8
+ * in the accessibility tree; optional when the trigger slot already has text.
9
+ */
10
+ ariaLabel?: string;
11
+ defaultOpen?: boolean;
12
+ popoverCssProperties?: CSSProperties;
13
+ alignment?: "top" | "right" | "top right" | undefined;
14
+ isList?: boolean;
15
+ isSortable?: boolean;
16
+ icon?: boolean;
17
+ disabled?: boolean;
18
+ isLoading?: boolean;
19
+ useTeleport?: boolean;
20
+ teleportLocation?: string;
21
+ /** Custom CSS styles applied to the trigger button, e.g. { width: "100%" } to stretch it to its container. */
22
+ triggerCssProperties?: CSSProperties;
23
+ }
24
+ declare const _default: __VLS_WithTemplateSlots< DefineComponent<PvDropdownProps, {
25
+ closeDropdown: () => void;
26
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
27
+ "list-order-updated": (value: string[]) => any;
28
+ "dropdown-open": () => any;
29
+ "dropdown-closed": () => any;
30
+ }, string, PublicProps, Readonly<PvDropdownProps> & Readonly<{
31
+ "onList-order-updated"?: ((value: string[]) => any) | undefined;
32
+ "onDropdown-open"?: (() => any) | undefined;
33
+ "onDropdown-closed"?: (() => any) | undefined;
34
+ }>, {
35
+ disabled: boolean;
36
+ defaultOpen: boolean;
37
+ useTeleport: boolean;
38
+ teleportLocation: string;
39
+ alignment: "right" | "top" | "top right";
40
+ isList: boolean;
41
+ isLoading: boolean;
42
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
43
+ triggerRef: HTMLButtonElement;
44
+ popoverRef: ({
45
+ $: ComponentInternalInstance;
46
+ $data: {};
47
+ $props: {
48
+ readonly alignment?: "top" | "right" | "top right" | undefined | undefined;
49
+ readonly cssCustomListProperties?: CSSProperties | undefined;
50
+ readonly cssCustomProperties?: CSSProperties | undefined;
51
+ readonly isList?: boolean | undefined;
52
+ readonly isSortable?: boolean | undefined;
53
+ readonly "onList-order-updated"?: ((value: string[]) => any) | undefined;
54
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
55
+ $attrs: Attrs;
56
+ $refs: {
57
+ [x: string]: unknown;
58
+ } & {
59
+ popoverRoot: HTMLDivElement;
60
+ popoverList: HTMLUListElement;
61
+ };
62
+ $slots: Readonly<{
63
+ [name: string]: Slot<any> | undefined;
64
+ }>;
65
+ $root: ComponentPublicInstance | null;
66
+ $parent: ComponentPublicInstance | null;
67
+ $host: Element | null;
68
+ $emit: (event: "list-order-updated", value: string[]) => void;
69
+ $el: HTMLDivElement;
70
+ $options: ComponentOptionsBase<Readonly< PvPopoverProps> & Readonly<{
71
+ "onList-order-updated"?: ((value: string[]) => any) | undefined;
72
+ }>, {
73
+ popoverRoot: Ref<HTMLElement | null, HTMLElement | null>;
74
+ }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & {
75
+ "list-order-updated": (value: string[]) => any;
76
+ }, string, {
77
+ alignment: "right" | "top" | "top right";
78
+ cssCustomProperties: CSSProperties;
79
+ isList: boolean;
80
+ isSortable: boolean;
81
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
82
+ beforeCreate?: (() => void) | (() => void)[];
83
+ created?: (() => void) | (() => void)[];
84
+ beforeMount?: (() => void) | (() => void)[];
85
+ mounted?: (() => void) | (() => void)[];
86
+ beforeUpdate?: (() => void) | (() => void)[];
87
+ updated?: (() => void) | (() => void)[];
88
+ activated?: (() => void) | (() => void)[];
89
+ deactivated?: (() => void) | (() => void)[];
90
+ beforeDestroy?: (() => void) | (() => void)[];
91
+ beforeUnmount?: (() => void) | (() => void)[];
92
+ destroyed?: (() => void) | (() => void)[];
93
+ unmounted?: (() => void) | (() => void)[];
94
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
95
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
96
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
97
+ };
98
+ $forceUpdate: () => void;
99
+ $nextTick: typeof nextTick;
100
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
101
+ } & Readonly<{
102
+ alignment: "right" | "top" | "top right";
103
+ cssCustomProperties: CSSProperties;
104
+ isList: boolean;
105
+ isSortable: boolean;
106
+ }> & Omit<Readonly< PvPopoverProps> & Readonly<{
107
+ "onList-order-updated"?: ((value: string[]) => any) | undefined;
108
+ }>, "popoverRoot" | ("alignment" | "cssCustomProperties" | "isList" | "isSortable")> & {
109
+ popoverRoot: HTMLElement | null;
110
+ } & {} & ComponentCustomProperties & {} & {
111
+ $slots: {
112
+ default?(_: {}): any;
113
+ default?(_: {}): any;
114
+ };
115
+ }) | null;
116
+ }, HTMLDivElement>, {
117
+ trigger?(_: {}): any;
118
+ default?(_: {}): any;
119
+ }>;
120
+ export default _default;
121
+ type __VLS_WithTemplateSlots<T, S> = T & {
122
+ new (): {
123
+ $slots: S;
124
+ };
125
+ };
@@ -0,0 +1,22 @@
1
+ import { PvEmptyErrorStateProps } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ import { PvOrientations } from '../baseProps';
4
+ declare function __VLS_template(): {
5
+ attrs: Partial<{}>;
6
+ slots: {
7
+ actions?(_: {}): any;
8
+ };
9
+ refs: {};
10
+ rootEl: HTMLDivElement;
11
+ };
12
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
13
+ declare const __VLS_component: DefineComponent<PvEmptyErrorStateProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<PvEmptyErrorStateProps> & Readonly<{}>, {
14
+ orientation: PvOrientations;
15
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
16
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
17
+ export default _default;
18
+ type __VLS_WithTemplateSlots<T, S> = T & {
19
+ new (): {
20
+ $slots: S;
21
+ };
22
+ };
@@ -0,0 +1,11 @@
1
+ import { PvOrientations } from '../baseProps';
2
+ export interface PvEmptyErrorStateProps {
3
+ /** Secondary text displayed in the empty/error state */
4
+ description?: string;
5
+ /** Primary text displayed in the empty/error state */
6
+ header?: string;
7
+ /** Icon name to display alongside the empty/error state content */
8
+ icon?: string;
9
+ /** Layout orientation of the empty/error state */
10
+ orientation?: PvOrientations;
11
+ }
@@ -0,0 +1,34 @@
1
+ import { PvExpandableContentSizes, PvExpandableContentVariants } from './types';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
3
+ type __VLS_Props = {
4
+ /** Maximum number of visible lines before content is clamped. */
5
+ lines?: number;
6
+ /** Padding size applied to the container. */
7
+ size?: PvExpandableContentSizes;
8
+ /** Visual style variant. "ghost" applies an accent surface background. */
9
+ variant?: PvExpandableContentVariants;
10
+ /** When true, the content starts in the expanded state. */
11
+ defaultOpen?: boolean;
12
+ };
13
+ declare function __VLS_template(): {
14
+ attrs: Partial<{}>;
15
+ slots: {
16
+ default?(_: {}): any;
17
+ };
18
+ refs: {};
19
+ rootEl: HTMLDivElement;
20
+ };
21
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
22
+ declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
23
+ size: PvExpandableContentSizes;
24
+ variant: PvExpandableContentVariants;
25
+ defaultOpen: boolean;
26
+ lines: number;
27
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
28
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
29
+ export default _default;
30
+ type __VLS_WithTemplateSlots<T, S> = T & {
31
+ new (): {
32
+ $slots: S;
33
+ };
34
+ };
@@ -0,0 +1,3 @@
1
+ import { PvSize, PvVariants } from '../baseProps';
2
+ export type PvExpandableContentSizes = Extract<PvSize, "none" | "xs" | "sm" | "md" | "lg"> | "none";
3
+ export type PvExpandableContentVariants = Extract<PvVariants, "primary" | "ghost">;