@turquoisehealth/pit-viper 2.207.0 → 2.209.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 (90) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +5 -0
  2. package/_site/assets/css/pit-viper-v2.css +5 -0
  3. package/_src/assets/sprite-v2.svg +1 -1
  4. package/_src/assets/sprite.svg +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-action-button-stats.html +1 -1
  9. package/pv-components/dist/stats/web/pv-distribution-bar-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-dropdown-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-menu-stats.html +1 -1
  17. package/pv-components/dist/stats/web/pv-popover-stats.html +1 -1
  18. package/pv-components/dist/stats/web/pv-popover-v2-stats.html +1 -1
  19. package/pv-components/dist/stats/web/pv-progress-bar-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-segmented-control-stats.html +1 -1
  22. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  23. package/pv-components/dist/stats/web/pv-sidebar-stats.html +1 -1
  24. package/pv-components/dist/stats/web/pv-split-button-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-stats.html +1 -1
  27. package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
  28. package/pv-components/dist/vue/base/components/base/PvDrawer/PvDrawer.vue.d.ts +11 -5
  29. package/pv-components/dist/vue/base/components/base/PvDropdown/PvDropdown.vue.d.ts +10 -2
  30. package/pv-components/dist/vue/base/components/base/PvFilterModal/PvFilterModal.vue.d.ts +3 -0
  31. package/pv-components/dist/vue/base/components/base/PvFilterPanel/PvFilterPanel.vue.d.ts +3 -0
  32. package/pv-components/dist/vue/base/components/base/PvFilterPanel/PvFilterPanelOptionRow.vue.d.ts +1 -0
  33. package/pv-components/dist/vue/base/components/base/PvFilterPanel/types.d.ts +22 -1
  34. package/pv-components/dist/vue/base/components/base/PvHoverActionMenu/PvHoverActionMenu.vue.d.ts +1 -1
  35. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItemAction.vue.d.ts +1 -1
  36. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +4 -4
  37. package/pv-components/dist/vue/base/components/base/PvPopover/PvPopover.vue.d.ts +3 -2
  38. package/pv-components/dist/vue/base/components/base/PvPopoverV2/PvPopoverV2.vue.d.ts +11 -20
  39. package/pv-components/dist/vue/base/components/base/PvPopoverV2/types.d.ts +9 -16
  40. package/pv-components/dist/vue/base/components/base/PvProgressBar/PvProgressBar.vue.d.ts +7 -3
  41. package/pv-components/dist/vue/base/components/base/PvRadioGroup/PvRadioGroup.vue.d.ts +8 -8
  42. package/pv-components/dist/vue/base/components/base/PvRange/PvRange.vue.d.ts +2 -2
  43. package/pv-components/dist/vue/base/components/base/PvSidebar/PvSidebar.vue.d.ts +1 -1
  44. package/pv-components/dist/vue/base/pv-components-base.mjs +2163 -2001
  45. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  46. package/pv-components/dist/vue/base/types.d.ts +11 -5
  47. package/pv-components/dist/vue/visualizations/components/base/PvDrawer/PvDrawer.vue.d.ts +11 -5
  48. package/pv-components/dist/vue/visualizations/components/base/PvDropdown/PvDropdown.vue.d.ts +10 -2
  49. package/pv-components/dist/vue/visualizations/components/base/PvFilterModal/PvFilterModal.vue.d.ts +3 -0
  50. package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/PvFilterPanel.vue.d.ts +3 -0
  51. package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/PvFilterPanelOptionRow.vue.d.ts +1 -0
  52. package/pv-components/dist/vue/visualizations/components/base/PvFilterPanel/types.d.ts +22 -1
  53. package/pv-components/dist/vue/visualizations/components/base/PvMenu/items/PvMenuItemAction.vue.d.ts +1 -1
  54. package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +5 -5
  55. package/pv-components/dist/vue/visualizations/components/base/PvPopover/PvPopover.vue.d.ts +3 -2
  56. package/pv-components/dist/vue/visualizations/components/base/PvPopoverV2/PvPopoverV2.vue.d.ts +11 -20
  57. package/pv-components/dist/vue/visualizations/components/base/PvPopoverV2/types.d.ts +9 -16
  58. package/pv-components/dist/vue/visualizations/components/base/PvProgressBar/PvProgressBar.vue.d.ts +7 -3
  59. package/pv-components/dist/vue/visualizations/components/base/PvRadioGroup/PvRadioGroup.vue.d.ts +8 -8
  60. package/pv-components/dist/vue/visualizations/components/base/PvSidebar/PvSidebar.vue.d.ts +1 -1
  61. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/table-chart-components/PvTableOptionsPanel.vue.d.ts +4 -2
  62. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/table-components/FilterGroupMenu.vue.d.ts +4 -2
  63. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/types.d.ts +5 -0
  64. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +2700 -2586
  65. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  66. package/pv-components/dist/vue/visualizations/types.d.ts +11 -5
  67. package/pv-components/dist/web/components/pv-action-button/pv-action-button.js +1062 -1026
  68. package/pv-components/dist/web/components/pv-distribution-bar/pv-distribution-bar.js +177 -177
  69. package/pv-components/dist/web/components/pv-drawer/pv-drawer.js +13 -15
  70. package/pv-components/dist/web/components/pv-dropdown/pv-dropdown.js +953 -934
  71. package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +1631 -1556
  72. package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +1866 -1794
  73. package/pv-components/dist/web/components/pv-hover-action-menu/pv-hover-action-menu.js +939 -907
  74. package/pv-components/dist/web/components/pv-menu/pv-menu.js +1169 -1118
  75. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +1039 -1047
  76. package/pv-components/dist/web/components/pv-popover/pv-popover.js +6 -3
  77. package/pv-components/dist/web/components/pv-popover-menu/pv-popover-menu.js +6 -3
  78. package/pv-components/dist/web/components/pv-popover-v2/pv-popover-v2.js +1054 -1013
  79. package/pv-components/dist/web/components/pv-progress-bar/pv-progress-bar.js +485 -476
  80. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +1744 -1519
  81. package/pv-components/dist/web/components/pv-radio-group/pv-radio-group.js +8 -8
  82. package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +986 -954
  83. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +1298 -1306
  84. package/pv-components/dist/web/components/pv-sidebar/pv-sidebar.js +359 -359
  85. package/pv-components/dist/web/components/pv-split-button/pv-split-button.js +942 -911
  86. package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +892 -856
  87. package/pv-components/dist/web/components/pv-tooltip/pv-tooltip.js +414 -410
  88. package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +903 -861
  89. package/pv-components/dist/web/pv-components.iife.js +19 -19
  90. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -379,14 +379,14 @@ var Se = [
379
379
  }, Le = /* @__PURE__ */ s({
380
380
  __name: "PvDrawer",
381
381
  props: /* @__PURE__ */ d({
382
- header: { type: String },
383
- subheader: { type: String },
384
- showSearchbar: { type: Boolean },
385
382
  closeOnClickOutside: {
386
383
  type: Boolean,
387
384
  default: !1
388
385
  },
389
- searchInputProps: { type: Object }
386
+ header: { type: String },
387
+ searchInputProps: { type: Object },
388
+ showSearchbar: { type: Boolean },
389
+ subheader: { type: String }
390
390
  }, {
391
391
  searchInput: { required: !1 },
392
392
  searchInputModifiers: {},
@@ -398,21 +398,19 @@ var Se = [
398
398
  }),
399
399
  emits: /* @__PURE__ */ d(["click-outside"], ["update:searchInput", "update:modelValue"]),
400
400
  setup(t, { emit: n }) {
401
- let s = t, c = n, l = D("sidePanel"), u = E(t, "searchInput"), d = E(t, "modelValue");
402
- g(() => {
403
- d.value && l?.value?.setAttribute("open", "true"), s.closeOnClickOutside && p();
404
- });
405
- let p = () => {
401
+ let s = t, c = n, l = D("sidePanel"), u = E(t, "searchInput"), d = E(t, "modelValue"), p = () => {
402
+ l?.value?.removeAttribute("open"), d.value = !1;
403
+ }, m = () => {
406
404
  l.value && le(l.value, () => {
407
- d.value && (c("click-outside"), m());
405
+ d.value && (c("click-outside"), p());
408
406
  }, { ignore: [".pv-click-outside-ignore"] });
409
- }, m = () => {
410
- l?.value?.removeAttribute("open"), d.value = !1;
411
407
  };
412
- return k(() => d.value, () => {
408
+ return g(() => {
409
+ d.value && l?.value?.setAttribute("open", "true"), s.closeOnClickOutside && m();
410
+ }), k(() => d.value, () => {
413
411
  d.value ? l?.value?.setAttribute("open", "true") : l?.value?.removeAttribute("open");
414
412
  }), de("Escape", () => {
415
- l.value && d.value && m();
413
+ l.value && d.value && p();
416
414
  }), (n, c) => (v(), i("div", {
417
415
  class: "pv-drawer pv-surface",
418
416
  ref_key: "sidePanel",
@@ -429,7 +427,7 @@ var Se = [
429
427
  "left-icon": "close",
430
428
  ariaLabel: "Close",
431
429
  size: "md",
432
- onClick: m,
430
+ onClick: p,
433
431
  "data-testid": "pv-side-panel-close-button",
434
432
  variant: "ghost"
435
433
  })]), t.subheader ? (v(), i("span", Ne, C(t.subheader), 1)) : r("v-if", !0)]), t.showSearchbar && u.value !== void 0 ? (v(), i("div", Pe, [o(ge, f({