@turquoisehealth/pit-viper 2.238.0 → 2.238.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 (60) hide show
  1. package/package.json +1 -1
  2. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  3. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  4. package/pv-components/dist/stats/web/pv-dropdown-stats.html +1 -1
  5. package/pv-components/dist/stats/web/pv-filter-modal-stats.html +1 -1
  6. package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
  7. package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
  8. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  9. package/pv-components/dist/stats/web/pv-popover-menu-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-popover-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
  12. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  13. package/pv-components/dist/vue/ai/components/base/PvDropdown/PvDropdown.vue.d.ts +9 -1
  14. package/pv-components/dist/vue/ai/components/base/PvFilterModal/PvFilterModal.vue.d.ts +2 -0
  15. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/PvFilterPanel.vue.d.ts +4 -1
  16. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/PvFilterPanelAppliedFiltersSection.vue.d.ts +4 -1
  17. package/pv-components/dist/vue/ai/components/base/PvFilterPanel/types.d.ts +25 -0
  18. package/pv-components/dist/vue/ai/components/base/PvPopover/PvPopover.vue.d.ts +8 -0
  19. package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +21 -1
  20. package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/useQueryBuilder.d.ts +1 -1
  21. package/pv-components/dist/vue/base/components/base/PvDropdown/PvDropdown.vue.d.ts +9 -1
  22. package/pv-components/dist/vue/base/components/base/PvFilterModal/PvFilterModal.vue.d.ts +2 -0
  23. package/pv-components/dist/vue/base/components/base/PvFilterPanel/PvFilterPanel.vue.d.ts +4 -1
  24. package/pv-components/dist/vue/base/components/base/PvFilterPanel/PvFilterPanelAppliedFiltersSection.vue.d.ts +4 -1
  25. package/pv-components/dist/vue/base/components/base/PvFilterPanel/types.d.ts +25 -0
  26. package/pv-components/dist/vue/base/components/base/PvPopover/PvPopover.vue.d.ts +8 -0
  27. package/pv-components/dist/vue/base/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +21 -1
  28. package/pv-components/dist/vue/base/components/base/PvQueryBuilderInput/useQueryBuilder.d.ts +1 -1
  29. package/pv-components/dist/vue/base/pv-components-base.mjs +1931 -1817
  30. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  31. package/pv-components/dist/vue/base/types.d.ts +6 -0
  32. package/pv-components/dist/vue/visualizations/components/base/PvDropdown/PvDropdown.vue.d.ts +9 -1
  33. package/pv-components/dist/vue/visualizations/components/base/PvFilterModal/PvFilterModal.vue.d.ts +2 -0
  34. package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/PvFilterPanel.vue.d.ts +4 -1
  35. package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/PvFilterPanelAppliedFiltersSection.vue.d.ts +4 -1
  36. package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/types.d.ts +25 -0
  37. package/pv-components/dist/vue/visualizations/components/base/PvPopover/PvPopover.vue.d.ts +8 -0
  38. package/pv-components/dist/vue/visualizations/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +21 -1
  39. package/pv-components/dist/vue/visualizations/components/base/PvQueryBuilderInput/useQueryBuilder.d.ts +1 -1
  40. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvTableOptionsPanel.vue.d.ts +9 -1
  41. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/table-components/FilterGroupMenu.vue.d.ts +9 -1
  42. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/types.d.ts +2 -1
  43. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1789 -1759
  44. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  45. package/pv-components/dist/vue/visualizations/types.d.ts +6 -0
  46. package/pv-components/dist/web/components/pv-dropdown/pv-dropdown.js +947 -933
  47. package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +1457 -1383
  48. package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +715 -677
  49. package/pv-components/dist/web/components/pv-menu/pv-menu.js +1533 -1461
  50. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1820 -1748
  51. package/pv-components/dist/web/components/pv-popover/pv-popover.js +952 -938
  52. package/pv-components/dist/web/components/pv-popover-menu/pv-popover-menu.js +944 -930
  53. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +1948 -1861
  54. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +1777 -1705
  55. package/pv-components/dist/web/pv-components.iife.js +36 -36
  56. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
  57. package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/QueryBuilderMenuOptionRenderer.vue.d.ts +0 -6
  58. package/pv-components/dist/vue/base/components/base/PvQueryBuilderInput/QueryBuilderMenuOptionRenderer.vue.d.ts +0 -6
  59. package/pv-components/dist/vue/visualizations/components/base/PvQueryBuilderInput/QueryBuilderMenuOptionRenderer.vue.d.ts +0 -6
  60. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvChartOptionMenuItemRenderer.vue.d.ts +0 -10
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turquoisehealth/pit-viper",
3
- "version": "2.238.0",
3
+ "version": "2.238.1-dev.0",
4
4
  "description": "Turquoise Health's design system.",
5
5
  "main": "README.md",
6
6
  "publishConfig": {