@turquoisehealth/pit-viper 2.224.1-dev.2 → 2.225.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 (67) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +79 -1
  2. package/_site/assets/css/pit-viper-consumer.css +79 -1
  3. package/_site/assets/css/pit-viper-v2-scoped.css +68 -1
  4. package/_site/assets/css/pit-viper-v2.css +118 -1
  5. package/_site/assets/css/pit-viper.css +79 -1
  6. package/package.json +1 -1
  7. package/pv-components/dist/stats/vue/ai/stats.html +1 -1
  8. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  9. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-action-button-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-filter-modal-stats.html +1 -1
  12. package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
  13. package/pv-components/dist/stats/web/pv-hover-action-menu-stats.html +1 -1
  14. package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
  15. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  16. package/pv-components/dist/stats/web/pv-popover-v2-stats.html +1 -1
  17. package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
  18. package/pv-components/dist/stats/web/pv-reasoning-stats.html +1 -1
  19. package/pv-components/dist/stats/web/pv-segmented-control-stats.html +1 -1
  20. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  21. package/pv-components/dist/stats/web/pv-sidebar-v2-stats.html +1 -1
  22. package/pv-components/dist/stats/web/pv-split-button-stats.html +1 -1
  23. package/pv-components/dist/stats/web/pv-step-list-stats.html +4950 -0
  24. package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
  25. package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
  26. package/pv-components/dist/vue/ai/components/ai/PvReasoning/PvReasoning.vue.d.ts +11 -3
  27. package/pv-components/dist/vue/ai/components/ai/PvReasoning/types.d.ts +3 -0
  28. package/pv-components/dist/vue/ai/components/ai/PvStepList/PvStepList.vue.d.ts +7 -0
  29. package/pv-components/dist/vue/ai/components/ai/PvStepList/types.d.ts +42 -0
  30. package/pv-components/dist/vue/ai/components/ai/index.d.ts +2 -0
  31. package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
  32. package/pv-components/dist/vue/ai/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
  33. package/pv-components/dist/vue/ai/components/base/PvSidebarV2/types.d.ts +2 -0
  34. package/pv-components/dist/vue/ai/pv-components-ai.mjs +490 -327
  35. package/pv-components/dist/vue/ai/pv-components-ai.mjs.map +1 -1
  36. package/pv-components/dist/vue/base/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
  37. package/pv-components/dist/vue/base/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
  38. package/pv-components/dist/vue/base/components/base/PvSidebarV2/types.d.ts +2 -0
  39. package/pv-components/dist/vue/base/pv-components-base.mjs +1091 -983
  40. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  41. package/pv-components/dist/vue/visualizations/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
  42. package/pv-components/dist/vue/visualizations/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
  43. package/pv-components/dist/vue/visualizations/components/base/PvSidebarV2/types.d.ts +2 -0
  44. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/crosslineHelpers.d.ts +1 -2
  45. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/helpers.d.ts +2 -3
  46. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +0 -6
  47. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/useBenchmarkOverlays.d.ts +0 -1
  48. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +73 -73
  49. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  50. package/pv-components/dist/web/components/pv-action-button/pv-action-button.js +8 -4
  51. package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +8 -4
  52. package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +8 -4
  53. package/pv-components/dist/web/components/pv-hover-action-menu/pv-hover-action-menu.js +197 -193
  54. package/pv-components/dist/web/components/pv-menu/pv-menu.js +8 -4
  55. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +8 -4
  56. package/pv-components/dist/web/components/pv-popover-v2/pv-popover-v2.js +8 -4
  57. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +15 -7
  58. package/pv-components/dist/web/components/pv-reasoning/pv-reasoning.js +640 -466
  59. package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +230 -226
  60. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +8 -4
  61. package/pv-components/dist/web/components/pv-sidebar-v2/pv-sidebar-v2.js +1431 -1322
  62. package/pv-components/dist/web/components/pv-split-button/pv-split-button.js +213 -209
  63. package/pv-components/dist/web/components/pv-step-list/pv-step-list.js +6309 -0
  64. package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +8 -4
  65. package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +8 -4
  66. package/pv-components/dist/web/pv-components.iife.js +39 -39
  67. package/pv-components/dist/web/pv-components.iife.js.map +1 -1

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.