@turquoisehealth/pit-viper 2.224.1-dev.2 → 2.224.1-dev.3

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 (63) 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/pv-components-visualizations.mjs +13 -8
  45. package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
  46. package/pv-components/dist/web/components/pv-action-button/pv-action-button.js +8 -4
  47. package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +8 -4
  48. package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +8 -4
  49. package/pv-components/dist/web/components/pv-hover-action-menu/pv-hover-action-menu.js +197 -193
  50. package/pv-components/dist/web/components/pv-menu/pv-menu.js +8 -4
  51. package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +8 -4
  52. package/pv-components/dist/web/components/pv-popover-v2/pv-popover-v2.js +8 -4
  53. package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +16 -8
  54. package/pv-components/dist/web/components/pv-reasoning/pv-reasoning.js +640 -466
  55. package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +230 -226
  56. package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +8 -4
  57. package/pv-components/dist/web/components/pv-sidebar-v2/pv-sidebar-v2.js +1431 -1322
  58. package/pv-components/dist/web/components/pv-split-button/pv-split-button.js +213 -209
  59. package/pv-components/dist/web/components/pv-step-list/pv-step-list.js +6309 -0
  60. package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +8 -4
  61. package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +8 -4
  62. package/pv-components/dist/web/pv-components.iife.js +39 -39
  63. package/pv-components/dist/web/pv-components.iife.js.map +1 -1
@@ -1747,9 +1747,9 @@ var Dr = /* @__PURE__ */ new Set(), Or = (e, t) => !!t.root.value && !!e.root.va
1747
1747
  !e && !t && !n && (A.value = !1);
1748
1748
  });
1749
1749
  let ye = ({ target: e }) => {
1750
- T.value = e instanceof HTMLElement && e.matches(":focus-visible");
1750
+ T.value = !t.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
1751
1751
  }, be = ({ target: e }) => {
1752
- D.value = e instanceof HTMLElement && e.matches(":focus-visible");
1752
+ D.value = !t.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
1753
1753
  }, xe = () => {
1754
1754
  D.value = !1;
1755
1755
  }, Se = () => {
@@ -1787,7 +1787,11 @@ var Dr = /* @__PURE__ */ new Set(), Or = (e, t) => !!t.root.value && !!e.root.va
1787
1787
  }), O(() => {
1788
1788
  de(), pe();
1789
1789
  }), I(() => t.disabled, (e) => {
1790
- e && (T.value &&= !1, D.value &&= !1, me(!1));
1790
+ if (!e) {
1791
+ ve.value && me(!0);
1792
+ return;
1793
+ }
1794
+ T.value &&= !1, D.value &&= !1, me(!1);
1791
1795
  }), (r, l) => (k(), o("div", {
1792
1796
  ref_key: "root",
1793
1797
  ref: _,
@@ -1823,7 +1827,7 @@ var Dr = /* @__PURE__ */ new Set(), Or = (e, t) => !!t.root.value && !!e.root.va
1823
1827
  onFocusout: xe
1824
1828
  }, [ne(r.$slots, "content")], 36), [[fe, c.value]])], 8, ["to", "disabled"])) : a("v-if", !0)], 36));
1825
1829
  }
1826
- }), [["styles", [".pv-floating-native[data-v-c13d6b59]{width:max-content;color:inherit;position-visibility:anchors-visible;background:0 0;border:0;margin:0;padding:0;position:fixed;inset:auto;overflow:visible}.pv-floating-native[data-v-c13d6b59]>.pv-popover,.pv-floating-native>slot[name=content][data-v-c13d6b59]::slotted(.pv-popover){position:static!important}"]], ["__scopeId", "data-v-c13d6b59"]]), Nr = ["data-variant"], Pr = /* @__PURE__ */ d({
1830
+ }), [["styles", [".pv-floating-native[data-v-e1e654f2]{width:max-content;color:inherit;position-visibility:anchors-visible;background:0 0;border:0;margin:0;padding:0;position:fixed;inset:auto;overflow:visible}.pv-floating-native[data-v-e1e654f2]>.pv-popover,.pv-floating-native>slot[name=content][data-v-e1e654f2]::slotted(.pv-popover){position:static!important}"]], ["__scopeId", "data-v-e1e654f2"]]), Nr = ["data-variant"], Pr = /* @__PURE__ */ d({
1827
1831
  __name: "PvTooltipV2",
1828
1832
  props: {
1829
1833
  variant: {
@@ -2228,9 +2228,9 @@ var Jr = {
2228
2228
  !e && !t && !n && (k.value = !1);
2229
2229
  });
2230
2230
  let ge = ({ target: e }) => {
2231
- T.value = e instanceof HTMLElement && e.matches(":focus-visible");
2231
+ T.value = !t.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
2232
2232
  }, _e = ({ target: e }) => {
2233
- ee.value = e instanceof HTMLElement && e.matches(":focus-visible");
2233
+ ee.value = !t.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
2234
2234
  }, ve = () => {
2235
2235
  ee.value = !1;
2236
2236
  }, ye = () => {
@@ -2268,7 +2268,11 @@ var Jr = {
2268
2268
  }), D(() => {
2269
2269
  ce(), le();
2270
2270
  }), z(() => t.disabled, (e) => {
2271
- e && (T.value &&= !1, ee.value &&= !1, de(!1));
2271
+ if (!e) {
2272
+ he.value && de(!0);
2273
+ return;
2274
+ }
2275
+ T.value &&= !1, ee.value &&= !1, de(!1);
2272
2276
  }), (r, l) => (O(), o("div", {
2273
2277
  ref_key: "root",
2274
2278
  ref: _,
@@ -2304,7 +2308,7 @@ var Jr = {
2304
2308
  onFocusout: ve
2305
2309
  }, [N(r.$slots, "content")], 36), [[ue, c.value]])], 8, ["to", "disabled"])) : a("v-if", !0)], 36));
2306
2310
  }
2307
- }), [["styles", [".pv-floating-native[data-v-c13d6b59]{width:max-content;color:inherit;position-visibility:anchors-visible;background:0 0;border:0;margin:0;padding:0;position:fixed;inset:auto;overflow:visible}.pv-floating-native[data-v-c13d6b59]>.pv-popover,.pv-floating-native>slot[name=content][data-v-c13d6b59]::slotted(.pv-popover){position:static!important}"]], ["__scopeId", "data-v-c13d6b59"]]), li = ["data-variant"], ui = /* @__PURE__ */ d({
2311
+ }), [["styles", [".pv-floating-native[data-v-e1e654f2]{width:max-content;color:inherit;position-visibility:anchors-visible;background:0 0;border:0;margin:0;padding:0;position:fixed;inset:auto;overflow:visible}.pv-floating-native[data-v-e1e654f2]>.pv-popover,.pv-floating-native>slot[name=content][data-v-e1e654f2]::slotted(.pv-popover){position:static!important}"]], ["__scopeId", "data-v-e1e654f2"]]), li = ["data-variant"], ui = /* @__PURE__ */ d({
2308
2312
  __name: "PvTooltipV2",
2309
2313
  props: {
2310
2314
  variant: {
@@ -1307,9 +1307,9 @@ var vn = /* @__PURE__ */ new Set(), yn = (e, t) => !!t.root.value && !!e.root.va
1307
1307
  !e && !t && !n && (ae.value = !1);
1308
1308
  });
1309
1309
  let ye = ({ target: e }) => {
1310
- j.value = e instanceof HTMLElement && e.matches(":focus-visible");
1310
+ j.value = !s.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
1311
1311
  }, be = ({ target: e }) => {
1312
- ie.value = e instanceof HTMLElement && e.matches(":focus-visible");
1312
+ ie.value = !s.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
1313
1313
  }, xe = () => {
1314
1314
  ie.value = !1;
1315
1315
  }, Se = () => {
@@ -1347,7 +1347,11 @@ var vn = /* @__PURE__ */ new Set(), yn = (e, t) => !!t.root.value && !!e.root.va
1347
1347
  }), v(() => {
1348
1348
  F(), he();
1349
1349
  }), O(() => s.disabled, (e) => {
1350
- e && (j.value &&= !1, ie.value &&= !1, I(!1));
1350
+ if (!e) {
1351
+ ve.value && I(!0);
1352
+ return;
1353
+ }
1354
+ j.value &&= !1, ie.value &&= !1, I(!1);
1351
1355
  }), (n, l) => (y(), a("div", {
1352
1356
  ref_key: "root",
1353
1357
  ref: w,
@@ -1383,7 +1387,7 @@ var vn = /* @__PURE__ */ new Set(), yn = (e, t) => !!t.root.value && !!e.root.va
1383
1387
  onFocusout: xe
1384
1388
  }, [C(n.$slots, "content")], 36), [[te, c.value]])], 8, ["to", "disabled"])) : i("v-if", !0)], 36));
1385
1389
  }
1386
- }), [["styles", [".pv-floating-native[data-v-c13d6b59]{width:max-content;color:inherit;position-visibility:anchors-visible;background:0 0;border:0;margin:0;padding:0;position:fixed;inset:auto;overflow:visible}.pv-floating-native[data-v-c13d6b59]>.pv-popover,.pv-floating-native>slot[name=content][data-v-c13d6b59]::slotted(.pv-popover){position:static!important}"]], ["__scopeId", "data-v-c13d6b59"]]), wn = Object.defineProperty, Tn = Object.getOwnPropertySymbols, En = Object.prototype.hasOwnProperty, Dn = Object.prototype.propertyIsEnumerable, On = (e, t, n) => t in e ? wn(e, t, {
1390
+ }), [["styles", [".pv-floating-native[data-v-e1e654f2]{width:max-content;color:inherit;position-visibility:anchors-visible;background:0 0;border:0;margin:0;padding:0;position:fixed;inset:auto;overflow:visible}.pv-floating-native[data-v-e1e654f2]>.pv-popover,.pv-floating-native>slot[name=content][data-v-e1e654f2]::slotted(.pv-popover){position:static!important}"]], ["__scopeId", "data-v-e1e654f2"]]), wn = Object.defineProperty, Tn = Object.getOwnPropertySymbols, En = Object.prototype.hasOwnProperty, Dn = Object.prototype.propertyIsEnumerable, On = (e, t, n) => t in e ? wn(e, t, {
1387
1391
  enumerable: !0,
1388
1392
  configurable: !0,
1389
1393
  writable: !0,
@@ -2865,9 +2865,9 @@ var Va = /* @__PURE__ */ new Set(), Ha = (e, t) => !!t.root.value && !!e.root.va
2865
2865
  !e && !t && !n && (O.value = !1);
2866
2866
  });
2867
2867
  let be = ({ target: e }) => {
2868
- T.value = e instanceof HTMLElement && e.matches(":focus-visible");
2868
+ T.value = !t.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
2869
2869
  }, xe = ({ target: e }) => {
2870
- E.value = e instanceof HTMLElement && e.matches(":focus-visible");
2870
+ E.value = !t.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
2871
2871
  }, Se = () => {
2872
2872
  E.value = !1;
2873
2873
  }, Ce = () => {
@@ -2905,7 +2905,11 @@ var Va = /* @__PURE__ */ new Set(), Ha = (e, t) => !!t.root.value && !!e.root.va
2905
2905
  }), k(() => {
2906
2906
  fe(), pe();
2907
2907
  }), F(() => t.disabled, (e) => {
2908
- e && (T.value &&= !1, E.value &&= !1, me(!1));
2908
+ if (!e) {
2909
+ ye.value && me(!0);
2910
+ return;
2911
+ }
2912
+ T.value &&= !1, E.value &&= !1, me(!1);
2909
2913
  }), (r, l) => (A(), o("div", {
2910
2914
  ref_key: "root",
2911
2915
  ref: _,
@@ -2941,7 +2945,7 @@ var Va = /* @__PURE__ */ new Set(), Ha = (e, t) => !!t.root.value && !!e.root.va
2941
2945
  onFocusout: Se
2942
2946
  }, [ne(r.$slots, "content")], 36), [[he, c.value]])], 8, ["to", "disabled"])) : a("v-if", !0)], 36));
2943
2947
  }
2944
- }), [["styles", [".pv-floating-native[data-v-c13d6b59]{width:max-content;color:inherit;position-visibility:anchors-visible;background:0 0;border:0;margin:0;padding:0;position:fixed;inset:auto;overflow:visible}.pv-floating-native[data-v-c13d6b59]>.pv-popover,.pv-floating-native>slot[name=content][data-v-c13d6b59]::slotted(.pv-popover){position:static!important}"]], ["__scopeId", "data-v-c13d6b59"]]), qa = ["data-variant"], Ja = /* @__PURE__ */ f({
2948
+ }), [["styles", [".pv-floating-native[data-v-e1e654f2]{width:max-content;color:inherit;position-visibility:anchors-visible;background:0 0;border:0;margin:0;padding:0;position:fixed;inset:auto;overflow:visible}.pv-floating-native[data-v-e1e654f2]>.pv-popover,.pv-floating-native>slot[name=content][data-v-e1e654f2]::slotted(.pv-popover){position:static!important}"]], ["__scopeId", "data-v-e1e654f2"]]), qa = ["data-variant"], Ja = /* @__PURE__ */ f({
2945
2949
  __name: "PvTooltipV2",
2946
2950
  props: {
2947
2951
  variant: {
@@ -3394,7 +3398,7 @@ var Va = /* @__PURE__ */ new Set(), Ha = (e, t) => !!t.root.value && !!e.root.va
3394
3398
  avatar: { type: Object },
3395
3399
  groupingLabel: { type: String },
3396
3400
  disabled: { type: Boolean },
3397
- context: { type: null },
3401
+ context: { type: Object },
3398
3402
  classList: { type: Array },
3399
3403
  action: { type: Object },
3400
3404
  searchText: { type: String },
@@ -3928,6 +3932,10 @@ var Lo = { class: "pv-flex" }, Ro = { class: "pv-text-body-md" }, zo = ["textCon
3928
3932
  type: Boolean,
3929
3933
  default: !1
3930
3934
  },
3935
+ size: {
3936
+ default: "xl",
3937
+ type: String
3938
+ },
3931
3939
  enableCustomOptionsInput: {
3932
3940
  type: Boolean,
3933
3941
  default: !1
@@ -4035,7 +4043,7 @@ var Lo = { class: "pv-flex" }, Ro = { class: "pv-text-body-md" }, zo = ["textCon
4035
4043
  };
4036
4044
  return (n, r) => ve((A(), o("div", {
4037
4045
  ref: "query-builder-input",
4038
- class: "pv-relative pv-query-builder-input-wrapper",
4046
+ class: S(["pv-relative pv-query-builder-input-wrapper", { "pv-query-builder-input-small": e.size === "lg" }]),
4039
4047
  onFocus: ne,
4040
4048
  onClick: ee
4041
4049
  }, [
@@ -4097,9 +4105,9 @@ var Lo = { class: "pv-flex" }, Ro = { class: "pv-text-body-md" }, zo = ["textCon
4097
4105
  }), null, 16, ["onHandleSelected"]))), 128))]),
4098
4106
  _: 1
4099
4107
  }, 8, ["class"])) : a("v-if", !0)
4100
- ], 32)), [[se(Ao), k]]);
4108
+ ], 34)), [[se(Ao), k]]);
4101
4109
  }
4102
- }), [["styles", [".pv-query-builder-input-wrapper[data-v-37925d70]{background:var(--secondary-lighten-8,#f7f8f8);border-radius:var(--corner-radius-L,8px);border:1px solid var(--stroke-light,#e3e7ea);cursor:text;align-items:center;width:100%;min-height:2.25rem;padding:.25rem;font-size:.75rem;display:flex;position:relative}.pv-query-builder-input[data-v-37925d70]{justify-content:start;overflow-x:hidden}.pv-query-builder-input-wrapper input[data-v-37925d70]{background:0 0;border:none;outline:none;flex:1rem;min-width:1rem;font-size:.75rem}.pv-query-builder-input-wrapper[data-v-37925d70]:focus-within{border:2px solid #36c5ba}"]], ["__scopeId", "data-v-37925d70"]]), Zo = Object.defineProperty, Qo = Object.getOwnPropertySymbols, $o = Object.prototype.hasOwnProperty, es = Object.prototype.propertyIsEnumerable, ts = (e, t, n) => t in e ? Zo(e, t, {
4110
+ }), [["styles", [".pv-query-builder-input-wrapper[data-v-97679942]{background:var(--secondary-lighten-8,#f7f8f8);border-radius:var(--corner-radius-M,4px);border:1px solid var(--stroke-light,#e3e7ea);cursor:text;--button-small-icon-only-padding:.1875rem;align-items:center;width:100%;min-height:2rem;padding:.1875rem .25rem;font-size:.75rem;display:flex;position:relative}.pv-query-builder-input-small[data-v-97679942]{--button-small-icon-only-padding:.0625rem;min-height:1.5rem;padding-block:.0625rem}.pv-query-builder-input[data-v-97679942]{justify-content:start;overflow-x:hidden}.pv-query-builder-input-wrapper input[data-v-97679942]{background:0 0;border:none;outline:none;flex:1rem;min-width:1rem;font-size:.75rem}.pv-query-builder-input-wrapper[data-v-97679942]:focus-within{border-color:var(--text-input-focus-border-color,#36c5ba)}"]], ["__scopeId", "data-v-97679942"]]), Zo = Object.defineProperty, Qo = Object.getOwnPropertySymbols, $o = Object.prototype.hasOwnProperty, es = Object.prototype.propertyIsEnumerable, ts = (e, t, n) => t in e ? Zo(e, t, {
4103
4111
  enumerable: !0,
4104
4112
  configurable: !0,
4105
4113
  writable: !0,