@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.
- package/_site/assets/css/pit-viper-a11y.css +79 -1
- package/_site/assets/css/pit-viper-consumer.css +79 -1
- package/_site/assets/css/pit-viper-v2-scoped.css +68 -1
- package/_site/assets/css/pit-viper-v2.css +118 -1
- package/_site/assets/css/pit-viper.css +79 -1
- package/package.json +1 -1
- package/pv-components/dist/stats/vue/ai/stats.html +1 -1
- package/pv-components/dist/stats/vue/base/stats.html +1 -1
- package/pv-components/dist/stats/vue/visualizations/stats.html +1 -1
- package/pv-components/dist/stats/web/pv-action-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-filter-modal-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-filter-panel-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-hover-action-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-menu-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-multi-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-popover-v2-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-query-builder-input-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-reasoning-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-segmented-control-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-select-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-sidebar-v2-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-split-button-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-step-list-stats.html +4950 -0
- package/pv-components/dist/stats/web/pv-toggle-group-stats.html +1 -1
- package/pv-components/dist/stats/web/pv-tooltip-v2-stats.html +1 -1
- package/pv-components/dist/vue/ai/components/ai/PvReasoning/PvReasoning.vue.d.ts +11 -3
- package/pv-components/dist/vue/ai/components/ai/PvReasoning/types.d.ts +3 -0
- package/pv-components/dist/vue/ai/components/ai/PvStepList/PvStepList.vue.d.ts +7 -0
- package/pv-components/dist/vue/ai/components/ai/PvStepList/types.d.ts +42 -0
- package/pv-components/dist/vue/ai/components/ai/index.d.ts +2 -0
- package/pv-components/dist/vue/ai/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
- package/pv-components/dist/vue/ai/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
- package/pv-components/dist/vue/ai/components/base/PvSidebarV2/types.d.ts +2 -0
- package/pv-components/dist/vue/ai/pv-components-ai.mjs +490 -327
- package/pv-components/dist/vue/ai/pv-components-ai.mjs.map +1 -1
- package/pv-components/dist/vue/base/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
- package/pv-components/dist/vue/base/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
- package/pv-components/dist/vue/base/components/base/PvSidebarV2/types.d.ts +2 -0
- package/pv-components/dist/vue/base/pv-components-base.mjs +1091 -983
- package/pv-components/dist/vue/base/pv-components-base.mjs.map +1 -1
- package/pv-components/dist/vue/visualizations/components/base/PvQueryBuilderInput/PvQueryBuilderInput.vue.d.ts +4 -0
- package/pv-components/dist/vue/visualizations/components/base/PvSidebarV2/PvSidebarV2.vue.d.ts +3 -1
- package/pv-components/dist/vue/visualizations/components/base/PvSidebarV2/types.d.ts +2 -0
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs +13 -8
- package/pv-components/dist/vue/visualizations/pv-components-visualizations.mjs.map +1 -1
- package/pv-components/dist/web/components/pv-action-button/pv-action-button.js +8 -4
- package/pv-components/dist/web/components/pv-filter-modal/pv-filter-modal.js +8 -4
- package/pv-components/dist/web/components/pv-filter-panel/pv-filter-panel.js +8 -4
- package/pv-components/dist/web/components/pv-hover-action-menu/pv-hover-action-menu.js +197 -193
- package/pv-components/dist/web/components/pv-menu/pv-menu.js +8 -4
- package/pv-components/dist/web/components/pv-multi-select-button/pv-multi-select-button.js +8 -4
- package/pv-components/dist/web/components/pv-popover-v2/pv-popover-v2.js +8 -4
- package/pv-components/dist/web/components/pv-query-builder-input/pv-query-builder-input.js +16 -8
- package/pv-components/dist/web/components/pv-reasoning/pv-reasoning.js +640 -466
- package/pv-components/dist/web/components/pv-segmented-control/pv-segmented-control.js +230 -226
- package/pv-components/dist/web/components/pv-select-button/pv-select-button.js +8 -4
- package/pv-components/dist/web/components/pv-sidebar-v2/pv-sidebar-v2.js +1431 -1322
- package/pv-components/dist/web/components/pv-split-button/pv-split-button.js +213 -209
- package/pv-components/dist/web/components/pv-step-list/pv-step-list.js +6309 -0
- package/pv-components/dist/web/components/pv-toggle-group/pv-toggle-group.js +8 -4
- package/pv-components/dist/web/components/pv-tooltip-v2/pv-tooltip-v2.js +8 -4
- package/pv-components/dist/web/pv-components.iife.js +39 -39
- package/pv-components/dist/web/pv-components.iife.js.map +1 -1
|
@@ -1335,9 +1335,9 @@ var An = /* @__PURE__ */ new Set(), jn = (e, t) => !!t.root.value && !!e.root.va
|
|
|
1335
1335
|
!e && !t && !n && (j.value = !1);
|
|
1336
1336
|
});
|
|
1337
1337
|
let I = ({ target: e }) => {
|
|
1338
|
-
k.value = e instanceof HTMLElement && e.matches(":focus-visible");
|
|
1338
|
+
k.value = !s.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
|
|
1339
1339
|
}, be = ({ target: e }) => {
|
|
1340
|
-
A.value = e instanceof HTMLElement && e.matches(":focus-visible");
|
|
1340
|
+
A.value = !s.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
|
|
1341
1341
|
}, xe = () => {
|
|
1342
1342
|
A.value = !1;
|
|
1343
1343
|
}, Se = () => {
|
|
@@ -1375,7 +1375,11 @@ var An = /* @__PURE__ */ new Set(), jn = (e, t) => !!t.root.value && !!e.root.va
|
|
|
1375
1375
|
}), w(() => {
|
|
1376
1376
|
ge(), _e();
|
|
1377
1377
|
}), N(() => s.disabled, (e) => {
|
|
1378
|
-
|
|
1378
|
+
if (!e) {
|
|
1379
|
+
ye.value && P(!0);
|
|
1380
|
+
return;
|
|
1381
|
+
}
|
|
1382
|
+
k.value &&= !1, A.value &&= !1, P(!1);
|
|
1379
1383
|
}), (n, l) => (T(), a("div", {
|
|
1380
1384
|
ref_key: "root",
|
|
1381
1385
|
ref: v,
|
|
@@ -1411,7 +1415,7 @@ var An = /* @__PURE__ */ new Set(), jn = (e, t) => !!t.root.value && !!e.root.va
|
|
|
1411
1415
|
onFocusout: xe
|
|
1412
1416
|
}, [O(n.$slots, "content")], 36), [[re, c.value]])], 8, ["to", "disabled"])) : i("v-if", !0)], 36));
|
|
1413
1417
|
}
|
|
1414
|
-
}), [["styles", [".pv-floating-native[data-v-
|
|
1418
|
+
}), [["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"]]), In = ["data-variant"], Ln = /* @__PURE__ */ u({
|
|
1415
1419
|
__name: "PvTooltipV2",
|
|
1416
1420
|
props: {
|
|
1417
1421
|
variant: {
|
|
@@ -2256,9 +2256,9 @@ var Zr = {
|
|
|
2256
2256
|
!e && !t && !n && (A.value = !1);
|
|
2257
2257
|
});
|
|
2258
2258
|
let H = ({ target: e }) => {
|
|
2259
|
-
T.value = e instanceof HTMLElement && e.matches(":focus-visible");
|
|
2259
|
+
T.value = !t.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
|
|
2260
2260
|
}, me = ({ target: e }) => {
|
|
2261
|
-
D.value = e instanceof HTMLElement && e.matches(":focus-visible");
|
|
2261
|
+
D.value = !t.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
|
|
2262
2262
|
}, he = () => {
|
|
2263
2263
|
D.value = !1;
|
|
2264
2264
|
}, ge = () => {
|
|
@@ -2296,7 +2296,11 @@ var Zr = {
|
|
|
2296
2296
|
}), O(() => {
|
|
2297
2297
|
se(), B();
|
|
2298
2298
|
}), V(() => t.disabled, (e) => {
|
|
2299
|
-
|
|
2299
|
+
if (!e) {
|
|
2300
|
+
pe.value && ce(!0);
|
|
2301
|
+
return;
|
|
2302
|
+
}
|
|
2303
|
+
T.value &&= !1, D.value &&= !1, ce(!1);
|
|
2300
2304
|
}), (r, l) => (k(), o("div", {
|
|
2301
2305
|
ref_key: "root",
|
|
2302
2306
|
ref: _,
|
|
@@ -2332,7 +2336,7 @@ var Zr = {
|
|
|
2332
2336
|
onFocusout: he
|
|
2333
2337
|
}, [P(r.$slots, "content")], 36), [[le, c.value]])], 8, ["to", "disabled"])) : a("v-if", !0)], 36));
|
|
2334
2338
|
}
|
|
2335
|
-
}), [["styles", [".pv-floating-native[data-v-
|
|
2339
|
+
}), [["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"]]), fi = ["data-variant"], pi = /* @__PURE__ */ d({
|
|
2336
2340
|
__name: "PvTooltipV2",
|
|
2337
2341
|
props: {
|
|
2338
2342
|
variant: {
|
|
@@ -1553,9 +1553,9 @@ var ar = /* @__PURE__ */ new Set(), or = (e, t) => !!t.root.value && !!e.root.va
|
|
|
1553
1553
|
!e && !t && !n && (k.value = !1);
|
|
1554
1554
|
});
|
|
1555
1555
|
let K = ({ target: e }) => {
|
|
1556
|
-
E.value = e instanceof HTMLElement && e.matches(":focus-visible");
|
|
1556
|
+
E.value = !t.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
|
|
1557
1557
|
}, ue = ({ target: e }) => {
|
|
1558
|
-
D.value = e instanceof HTMLElement && e.matches(":focus-visible");
|
|
1558
|
+
D.value = !t.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
|
|
1559
1559
|
}, de = () => {
|
|
1560
1560
|
D.value = !1;
|
|
1561
1561
|
}, fe = () => {
|
|
@@ -1593,7 +1593,11 @@ var ar = /* @__PURE__ */ new Set(), or = (e, t) => !!t.root.value && !!e.root.va
|
|
|
1593
1593
|
}), ee(() => {
|
|
1594
1594
|
oe(), U();
|
|
1595
1595
|
}), H(() => t.disabled, (e) => {
|
|
1596
|
-
|
|
1596
|
+
if (!e) {
|
|
1597
|
+
le.value && W(!0);
|
|
1598
|
+
return;
|
|
1599
|
+
}
|
|
1600
|
+
E.value &&= !1, D.value &&= !1, W(!1);
|
|
1597
1601
|
}), (r, l) => (O(), o("div", {
|
|
1598
1602
|
ref_key: "root",
|
|
1599
1603
|
ref: _,
|
|
@@ -1629,7 +1633,7 @@ var ar = /* @__PURE__ */ new Set(), or = (e, t) => !!t.root.value && !!e.root.va
|
|
|
1629
1633
|
onFocusout: de
|
|
1630
1634
|
}, [M(r.$slots, "content")], 36), [[ae, c.value]])], 8, ["to", "disabled"])) : a("v-if", !0)], 36));
|
|
1631
1635
|
}
|
|
1632
|
-
}), [["styles", [".pv-floating-native[data-v-
|
|
1636
|
+
}), [["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"]]), dr = ["data-variant"], fr = /* @__PURE__ */ d({
|
|
1633
1637
|
__name: "PvTooltipV2",
|
|
1634
1638
|
props: {
|
|
1635
1639
|
variant: {
|