@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
@@ -1182,16 +1182,19 @@ var $t = ["data-align"], en = /* @__PURE__ */ ((e, t) => {
1182
1182
  default: void 0,
1183
1183
  type: null
1184
1184
  },
1185
+ cssCustomListProperties: { type: Object },
1185
1186
  cssCustomProperties: {
1186
1187
  default: () => ({}),
1187
1188
  type: Object
1188
1189
  },
1189
- cssCustomListProperties: { type: Object },
1190
1190
  isList: {
1191
1191
  type: Boolean,
1192
1192
  default: !1
1193
1193
  },
1194
- isSortable: { type: Boolean }
1194
+ isSortable: {
1195
+ type: Boolean,
1196
+ default: !1
1197
+ }
1195
1198
  },
1196
1199
  emits: ["list-order-updated"],
1197
1200
  setup(t, { expose: n, emit: r }) {
@@ -1216,7 +1219,7 @@ var $t = ["data-align"], en = /* @__PURE__ */ ((e, t) => {
1216
1219
  style: s(t.cssCustomListProperties)
1217
1220
  }, [m(n.$slots, "default", {}, void 0, !0)], 4)) : m(n.$slots, "default", { key: 1 }, void 0, !0)], 12, $t));
1218
1221
  }
1219
- }), [["styles", [".pv-popover-list[data-v-c6181252]{font-size:14px}"]], ["__scopeId", "data-v-c6181252"]]), tn = Object.defineProperty, nn = Object.getOwnPropertySymbols, rn = Object.prototype.hasOwnProperty, an = Object.prototype.propertyIsEnumerable, on = (e, t, n) => t in e ? tn(e, t, {
1222
+ }), [["styles", [".pv-popover-list[data-v-246a9400]{font-size:14px}"]], ["__scopeId", "data-v-246a9400"]]), tn = Object.defineProperty, nn = Object.getOwnPropertySymbols, rn = Object.prototype.hasOwnProperty, an = Object.prototype.propertyIsEnumerable, on = (e, t, n) => t in e ? tn(e, t, {
1220
1223
  enumerable: !0,
1221
1224
  configurable: !0,
1222
1225
  writable: !0,
@@ -1182,16 +1182,19 @@ var nn = ["data-align"], rn = /* @__PURE__ */ ((e, t) => {
1182
1182
  default: void 0,
1183
1183
  type: null
1184
1184
  },
1185
+ cssCustomListProperties: { type: Object },
1185
1186
  cssCustomProperties: {
1186
1187
  default: () => ({}),
1187
1188
  type: Object
1188
1189
  },
1189
- cssCustomListProperties: { type: Object },
1190
1190
  isList: {
1191
1191
  type: Boolean,
1192
1192
  default: !1
1193
1193
  },
1194
- isSortable: { type: Boolean }
1194
+ isSortable: {
1195
+ type: Boolean,
1196
+ default: !1
1197
+ }
1195
1198
  },
1196
1199
  emits: ["list-order-updated"],
1197
1200
  setup(t, { expose: n, emit: r }) {
@@ -1216,7 +1219,7 @@ var nn = ["data-align"], rn = /* @__PURE__ */ ((e, t) => {
1216
1219
  style: c(t.cssCustomListProperties)
1217
1220
  }, [h(n.$slots, "default", {}, void 0, !0)], 4)) : h(n.$slots, "default", { key: 1 }, void 0, !0)], 12, nn));
1218
1221
  }
1219
- }), [["styles", [".pv-popover-list[data-v-c6181252]{font-size:14px}"]], ["__scopeId", "data-v-c6181252"]]), an = { class: "pv-popover-menu" }, on = /* @__PURE__ */ n({
1222
+ }), [["styles", [".pv-popover-list[data-v-246a9400]{font-size:14px}"]], ["__scopeId", "data-v-246a9400"]]), an = { class: "pv-popover-menu" }, on = /* @__PURE__ */ n({
1220
1223
  __name: "PvPopoverMenu",
1221
1224
  props: {
1222
1225
  alignment: {