@turquoisehealth/pit-viper 2.206.2 → 2.208.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 (48) hide show
  1. package/_site/assets/css/pit-viper-a11y.css +0 -5
  2. package/_site/assets/css/pit-viper-v2.css +0 -5
  3. package/package.json +1 -1
  4. package/pv-components/dist/stats/vue/base/stats.html +1 -1
  5. package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
  6. package/pv-components/dist/stats/web/pv-distribution-bar-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-menu-stats.html +1 -1
  9. package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
  10. package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
  11. package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
  12. package/pv-components/dist/stats/web/pv-tag-stats.html +1 -1
  13. package/pv-components/dist/vue/base/components/base/PvDrawer/PvDrawer.vue.d.ts +11 -5
  14. package/pv-components/dist/vue/base/components/base/PvMenu/PvMenuControlPanel.vue.d.ts +8 -0
  15. package/pv-components/dist/vue/base/components/base/PvMenu/items/PvMenuItemAction.vue.d.ts +1 -1
  16. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +14 -7
  17. package/pv-components/dist/vue/base/components/base/PvMultiSelectButton/types.d.ts +20 -3
  18. package/pv-components/dist/vue/base/components/base/PvSelectButton/PvSelectButton.vue.d.ts +5 -0
  19. package/pv-components/dist/vue/base/components/base/PvTag/PvTag.vue.d.ts +6 -0
  20. package/pv-components/dist/vue/base/components/base/index.d.ts +2 -0
  21. package/pv-components/dist/vue/base/pv-components-base.mjs +1099 -1045
  22. package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
  23. package/pv-components/dist/vue/base/types.d.ts +11 -5
  24. package/pv-components/dist/vue/visualizations/components/base/PvDrawer/PvDrawer.vue.d.ts +11 -5
  25. package/pv-components/dist/vue/visualizations/components/base/PvMenu/PvMenuControlPanel.vue.d.ts +8 -0
  26. package/pv-components/dist/vue/visualizations/components/base/PvMenu/items/PvMenuItemAction.vue.d.ts +1 -1
  27. package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/PvMultiSelectButton.vue.d.ts +14 -7
  28. package/pv-components/dist/vue/visualizations/components/base/PvMultiSelectButton/types.d.ts +20 -3
  29. package/pv-components/dist/vue/visualizations/components/base/PvSelectButton/PvSelectButton.vue.d.ts +5 -0
  30. package/pv-components/dist/vue/visualizations/components/base/PvTag/PvTag.vue.d.ts +6 -0
  31. package/pv-components/dist/vue/visualizations/components/base/index.d.ts +2 -0
  32. package/pv-components/dist/vue/visualizations/components/charts/PvDataTableWithChart/types.d.ts +2 -0
  33. package/pv-components/dist/vue/visualizations/components/charts/widgetOptions.d.ts +1 -0
  34. package/pv-components/dist/vue/visualizations/components/tables/PvDataTable/useSetFilter.d.ts +26 -2
  35. package/pv-components/dist/vue/visualizations/components/visualizations/index.d.ts +2 -0
  36. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +1668 -1416
  37. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  38. package/pv-components/dist/vue/visualizations/types.d.ts +11 -5
  39. package/pv-components/dist/web/components/pv-distribution-bar/pv-distribution-bar.js +177 -177
  40. package/pv-components/dist/web/components/pv-drawer/pv-drawer.js +13 -15
  41. package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +1145 -1146
  42. package/pv-components/dist/web/components/pv-menu/pv-menu.js +885 -866
  43. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +937 -906
  44. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +511 -489
  45. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +865 -843
  46. package/pv-components/dist/web/components/pv-tag/pv-tag.js +4 -2
  47. package/pv-components/dist/web/pv-components.iife.js +14 -14
  48. 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({