@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
|
@@ -519,7 +519,7 @@ function st(e) {
|
|
|
519
519
|
return !it() || typeof ShadowRoot > "u" ? !1 : e instanceof ShadowRoot || e instanceof F(e).ShadowRoot;
|
|
520
520
|
}
|
|
521
521
|
function ct(e) {
|
|
522
|
-
let { overflow: t, overflowX: n, overflowY: r, display: i } =
|
|
522
|
+
let { overflow: t, overflowX: n, overflowY: r, display: i } = z(e);
|
|
523
523
|
return /auto|scroll|overlay|hidden|clip/.test(t + r + n) && i !== "inline" && i !== "contents";
|
|
524
524
|
}
|
|
525
525
|
function lt(e) {
|
|
@@ -535,30 +535,30 @@ function ut(e) {
|
|
|
535
535
|
return !1;
|
|
536
536
|
}
|
|
537
537
|
}
|
|
538
|
-
var dt = /transform|translate|scale|rotate|perspective|filter/, ft = /paint|layout|strict|content/,
|
|
539
|
-
function mt(e) {
|
|
540
|
-
let t = L(e) ? B(e) : e;
|
|
541
|
-
return z(t.transform) || z(t.translate) || z(t.scale) || z(t.rotate) || z(t.perspective) || !gt() && (z(t.backdropFilter) || z(t.filter)) || dt.test(t.willChange || "") || ft.test(t.contain || "");
|
|
542
|
-
}
|
|
538
|
+
var dt = /transform|translate|scale|rotate|perspective|filter/, ft = /paint|layout|strict|content/, pt = (e) => !!e && e !== "none", mt;
|
|
543
539
|
function ht(e) {
|
|
544
|
-
let t =
|
|
545
|
-
|
|
546
|
-
|
|
540
|
+
let t = L(e) ? z(e) : e;
|
|
541
|
+
return pt(t.transform) || pt(t.translate) || pt(t.scale) || pt(t.rotate) || pt(t.perspective) || !_t() && (pt(t.backdropFilter) || pt(t.filter)) || dt.test(t.willChange || "") || ft.test(t.contain || "");
|
|
542
|
+
}
|
|
543
|
+
function gt(e) {
|
|
544
|
+
let t = B(e);
|
|
545
|
+
for (; R(t) && !vt(t);) {
|
|
546
|
+
if (ht(t)) return t;
|
|
547
547
|
if (ut(t)) return null;
|
|
548
|
-
t =
|
|
548
|
+
t = B(t);
|
|
549
549
|
}
|
|
550
550
|
return null;
|
|
551
551
|
}
|
|
552
|
-
function
|
|
553
|
-
return
|
|
552
|
+
function _t() {
|
|
553
|
+
return mt ??= typeof CSS < "u" && CSS.supports && CSS.supports("-webkit-backdrop-filter", "none"), mt;
|
|
554
554
|
}
|
|
555
|
-
function
|
|
555
|
+
function vt(e) {
|
|
556
556
|
return /^(html|body|#document)$/.test(at(e));
|
|
557
557
|
}
|
|
558
|
-
function
|
|
558
|
+
function z(e) {
|
|
559
559
|
return F(e).getComputedStyle(e);
|
|
560
560
|
}
|
|
561
|
-
function
|
|
561
|
+
function yt(e) {
|
|
562
562
|
return L(e) ? {
|
|
563
563
|
scrollLeft: e.scrollLeft,
|
|
564
564
|
scrollTop: e.scrollTop
|
|
@@ -567,69 +567,69 @@ function vt(e) {
|
|
|
567
567
|
scrollTop: e.scrollY
|
|
568
568
|
};
|
|
569
569
|
}
|
|
570
|
-
function
|
|
570
|
+
function B(e) {
|
|
571
571
|
if (at(e) === "html") return e;
|
|
572
572
|
let t = e.assignedSlot || e.parentNode || st(e) && e.host || I(e);
|
|
573
573
|
return st(t) ? t.host : t;
|
|
574
574
|
}
|
|
575
|
-
function
|
|
576
|
-
let t =
|
|
577
|
-
return
|
|
575
|
+
function bt(e) {
|
|
576
|
+
let t = B(e);
|
|
577
|
+
return vt(t) ? e.ownerDocument ? e.ownerDocument.body : e.body : R(t) && ct(t) ? t : bt(t);
|
|
578
578
|
}
|
|
579
|
-
function
|
|
579
|
+
function xt(e, t, n) {
|
|
580
580
|
t === void 0 && (t = []), n === void 0 && (n = !0);
|
|
581
|
-
let r =
|
|
581
|
+
let r = bt(e), i = r === e.ownerDocument?.body, a = F(r);
|
|
582
582
|
if (i) {
|
|
583
|
-
let e =
|
|
584
|
-
return t.concat(a, a.visualViewport || [], ct(r) ? r : [], e && n ?
|
|
585
|
-
} else return t.concat(r,
|
|
583
|
+
let e = St(a);
|
|
584
|
+
return t.concat(a, a.visualViewport || [], ct(r) ? r : [], e && n ? xt(e) : []);
|
|
585
|
+
} else return t.concat(r, xt(r, [], n));
|
|
586
586
|
}
|
|
587
|
-
function
|
|
587
|
+
function St(e) {
|
|
588
588
|
return e.parent && Object.getPrototypeOf(e.parent) ? e.frameElement : null;
|
|
589
589
|
}
|
|
590
590
|
//#endregion
|
|
591
591
|
//#region ../node_modules/.pnpm/@floating-ui+dom@1.7.6/node_modules/@floating-ui/dom/dist/floating-ui.dom.mjs
|
|
592
|
-
function
|
|
593
|
-
let t =
|
|
592
|
+
function Ct(e) {
|
|
593
|
+
let t = z(e), n = parseFloat(t.width) || 0, r = parseFloat(t.height) || 0, i = R(e), a = i ? e.offsetWidth : n, o = i ? e.offsetHeight : r, s = Oe(n) !== a || Oe(r) !== o;
|
|
594
594
|
return s && (n = a, r = o), {
|
|
595
595
|
width: n,
|
|
596
596
|
height: r,
|
|
597
597
|
$: s
|
|
598
598
|
};
|
|
599
599
|
}
|
|
600
|
-
function
|
|
600
|
+
function wt(e) {
|
|
601
601
|
return L(e) ? e : e.contextElement;
|
|
602
602
|
}
|
|
603
|
-
function
|
|
604
|
-
let t =
|
|
603
|
+
function Tt(e) {
|
|
604
|
+
let t = wt(e);
|
|
605
605
|
if (!R(t)) return P(1);
|
|
606
|
-
let n = t.getBoundingClientRect(), { width: r, height: i, $: a } =
|
|
606
|
+
let n = t.getBoundingClientRect(), { width: r, height: i, $: a } = Ct(t), o = (a ? Oe(n.width) : n.width) / r, s = (a ? Oe(n.height) : n.height) / i;
|
|
607
607
|
return (!o || !Number.isFinite(o)) && (o = 1), (!s || !Number.isFinite(s)) && (s = 1), {
|
|
608
608
|
x: o,
|
|
609
609
|
y: s
|
|
610
610
|
};
|
|
611
611
|
}
|
|
612
|
-
var
|
|
613
|
-
function
|
|
612
|
+
var Et = /* @__PURE__ */ P(0);
|
|
613
|
+
function Dt(e) {
|
|
614
614
|
let t = F(e);
|
|
615
|
-
return !
|
|
615
|
+
return !_t() || !t.visualViewport ? Et : {
|
|
616
616
|
x: t.visualViewport.offsetLeft,
|
|
617
617
|
y: t.visualViewport.offsetTop
|
|
618
618
|
};
|
|
619
619
|
}
|
|
620
|
-
function
|
|
620
|
+
function Ot(e, t, n) {
|
|
621
621
|
return t === void 0 && (t = !1), !n || t && n !== F(e) ? !1 : t;
|
|
622
622
|
}
|
|
623
|
-
function
|
|
623
|
+
function kt(e, t, n, r) {
|
|
624
624
|
t === void 0 && (t = !1), n === void 0 && (n = !1);
|
|
625
|
-
let i = e.getBoundingClientRect(), a =
|
|
626
|
-
t && (r ? L(r) && (o =
|
|
627
|
-
let s =
|
|
625
|
+
let i = e.getBoundingClientRect(), a = wt(e), o = P(1);
|
|
626
|
+
t && (r ? L(r) && (o = Tt(r)) : o = Tt(e));
|
|
627
|
+
let s = Ot(a, n, r) ? Dt(a) : P(0), c = (i.left + s.x) / o.x, l = (i.top + s.y) / o.y, u = i.width / o.x, d = i.height / o.y;
|
|
628
628
|
if (a) {
|
|
629
|
-
let e = F(a), t = r && L(r) ? F(r) : r, n = e, i =
|
|
629
|
+
let e = F(a), t = r && L(r) ? F(r) : r, n = e, i = St(n);
|
|
630
630
|
for (; i && r && t !== n;) {
|
|
631
|
-
let e =
|
|
632
|
-
c *= e.x, l *= e.y, u *= e.x, d *= e.y, c += a, l += o, n = F(i), i =
|
|
631
|
+
let e = Tt(i), t = i.getBoundingClientRect(), r = z(i), a = t.left + (i.clientLeft + parseFloat(r.paddingLeft)) * e.x, o = t.top + (i.clientTop + parseFloat(r.paddingTop)) * e.y;
|
|
632
|
+
c *= e.x, l *= e.y, u *= e.x, d *= e.y, c += a, l += o, n = F(i), i = St(n);
|
|
633
633
|
}
|
|
634
634
|
}
|
|
635
635
|
return Ye({
|
|
@@ -639,29 +639,29 @@ function Ot(e, t, n, r) {
|
|
|
639
639
|
y: l
|
|
640
640
|
});
|
|
641
641
|
}
|
|
642
|
-
function kt(e, t) {
|
|
643
|
-
let n = vt(e).scrollLeft;
|
|
644
|
-
return t ? t.left + n : Ot(I(e)).left + n;
|
|
645
|
-
}
|
|
646
642
|
function At(e, t) {
|
|
643
|
+
let n = yt(e).scrollLeft;
|
|
644
|
+
return t ? t.left + n : kt(I(e)).left + n;
|
|
645
|
+
}
|
|
646
|
+
function jt(e, t) {
|
|
647
647
|
let n = e.getBoundingClientRect();
|
|
648
648
|
return {
|
|
649
|
-
x: n.left + t.scrollLeft -
|
|
649
|
+
x: n.left + t.scrollLeft - At(e, n),
|
|
650
650
|
y: n.top + t.scrollTop
|
|
651
651
|
};
|
|
652
652
|
}
|
|
653
|
-
function
|
|
653
|
+
function Mt(e) {
|
|
654
654
|
let { elements: t, rect: n, offsetParent: r, strategy: i } = e, a = i === "fixed", o = I(r), s = t ? ut(t.floating) : !1;
|
|
655
655
|
if (r === o || s && a) return n;
|
|
656
656
|
let c = {
|
|
657
657
|
scrollLeft: 0,
|
|
658
658
|
scrollTop: 0
|
|
659
659
|
}, l = P(1), u = P(0), d = R(r);
|
|
660
|
-
if ((d || !d && !a) && ((at(r) !== "body" || ct(o)) && (c =
|
|
661
|
-
let e =
|
|
662
|
-
l =
|
|
660
|
+
if ((d || !d && !a) && ((at(r) !== "body" || ct(o)) && (c = yt(r)), d)) {
|
|
661
|
+
let e = kt(r);
|
|
662
|
+
l = Tt(r), u.x = e.x + r.clientLeft, u.y = e.y + r.clientTop;
|
|
663
663
|
}
|
|
664
|
-
let f = o && !d && !a ?
|
|
664
|
+
let f = o && !d && !a ? jt(o, c) : P(0);
|
|
665
665
|
return {
|
|
666
666
|
width: n.width * l.x,
|
|
667
667
|
height: n.height * l.y,
|
|
@@ -669,31 +669,31 @@ function jt(e) {
|
|
|
669
669
|
y: n.y * l.y - c.scrollTop * l.y + u.y + f.y
|
|
670
670
|
};
|
|
671
671
|
}
|
|
672
|
-
function
|
|
672
|
+
function Nt(e) {
|
|
673
673
|
return Array.from(e.getClientRects());
|
|
674
674
|
}
|
|
675
|
-
function
|
|
676
|
-
let t = I(e), n =
|
|
677
|
-
return
|
|
675
|
+
function Pt(e) {
|
|
676
|
+
let t = I(e), n = yt(e), r = e.ownerDocument.body, i = De(t.scrollWidth, t.clientWidth, r.scrollWidth, r.clientWidth), a = De(t.scrollHeight, t.clientHeight, r.scrollHeight, r.clientHeight), o = -n.scrollLeft + At(e), s = -n.scrollTop;
|
|
677
|
+
return z(r).direction === "rtl" && (o += De(t.clientWidth, r.clientWidth) - i), {
|
|
678
678
|
width: i,
|
|
679
679
|
height: a,
|
|
680
680
|
x: o,
|
|
681
681
|
y: s
|
|
682
682
|
};
|
|
683
683
|
}
|
|
684
|
-
var
|
|
685
|
-
function
|
|
684
|
+
var Ft = 25;
|
|
685
|
+
function It(e, t) {
|
|
686
686
|
let n = F(e), r = I(e), i = n.visualViewport, a = r.clientWidth, o = r.clientHeight, s = 0, c = 0;
|
|
687
687
|
if (i) {
|
|
688
688
|
a = i.width, o = i.height;
|
|
689
|
-
let e =
|
|
689
|
+
let e = _t();
|
|
690
690
|
(!e || e && t === "fixed") && (s = i.offsetLeft, c = i.offsetTop);
|
|
691
691
|
}
|
|
692
|
-
let l =
|
|
692
|
+
let l = At(r);
|
|
693
693
|
if (l <= 0) {
|
|
694
694
|
let e = r.ownerDocument, t = e.body, n = getComputedStyle(t), i = e.compatMode === "CSS1Compat" && parseFloat(n.marginLeft) + parseFloat(n.marginRight) || 0, o = Math.abs(r.clientWidth - t.clientWidth - i);
|
|
695
|
-
o <=
|
|
696
|
-
} else l <=
|
|
695
|
+
o <= Ft && (a -= o);
|
|
696
|
+
} else l <= Ft && (a += l);
|
|
697
697
|
return {
|
|
698
698
|
width: a,
|
|
699
699
|
height: o,
|
|
@@ -701,8 +701,8 @@ function Ft(e, t) {
|
|
|
701
701
|
y: c
|
|
702
702
|
};
|
|
703
703
|
}
|
|
704
|
-
function
|
|
705
|
-
let n =
|
|
704
|
+
function Lt(e, t) {
|
|
705
|
+
let n = kt(e, !0, t === "fixed"), r = n.top + e.clientTop, i = n.left + e.clientLeft, a = R(e) ? Tt(e) : P(1);
|
|
706
706
|
return {
|
|
707
707
|
width: e.clientWidth * a.x,
|
|
708
708
|
height: e.clientHeight * a.y,
|
|
@@ -710,13 +710,13 @@ function It(e, t) {
|
|
|
710
710
|
y: r * a.y
|
|
711
711
|
};
|
|
712
712
|
}
|
|
713
|
-
function
|
|
713
|
+
function Rt(e, t, n) {
|
|
714
714
|
let r;
|
|
715
|
-
if (t === "viewport") r =
|
|
716
|
-
else if (t === "document") r =
|
|
717
|
-
else if (L(t)) r =
|
|
715
|
+
if (t === "viewport") r = It(e, n);
|
|
716
|
+
else if (t === "document") r = Pt(I(e));
|
|
717
|
+
else if (L(t)) r = Lt(t, n);
|
|
718
718
|
else {
|
|
719
|
-
let n =
|
|
719
|
+
let n = Dt(e);
|
|
720
720
|
r = {
|
|
721
721
|
x: t.x - n.x,
|
|
722
722
|
y: t.y - n.y,
|
|
@@ -726,24 +726,24 @@ function Lt(e, t, n) {
|
|
|
726
726
|
}
|
|
727
727
|
return Ye(r);
|
|
728
728
|
}
|
|
729
|
-
function Rt(e, t) {
|
|
730
|
-
let n = V(e);
|
|
731
|
-
return n === t || !L(n) || _t(n) ? !1 : B(n).position === "fixed" || Rt(n, t);
|
|
732
|
-
}
|
|
733
729
|
function zt(e, t) {
|
|
730
|
+
let n = B(e);
|
|
731
|
+
return n === t || !L(n) || vt(n) ? !1 : z(n).position === "fixed" || zt(n, t);
|
|
732
|
+
}
|
|
733
|
+
function Bt(e, t) {
|
|
734
734
|
let n = t.get(e);
|
|
735
735
|
if (n) return n;
|
|
736
|
-
let r =
|
|
737
|
-
for (; L(o) && !
|
|
738
|
-
let t =
|
|
739
|
-
!n && t.position === "fixed" && (i = null), (a ? !n && !i : !n && t.position === "static" && i && (i.position === "absolute" || i.position === "fixed") || ct(o) && !n &&
|
|
736
|
+
let r = xt(e, [], !1).filter((e) => L(e) && at(e) !== "body"), i = null, a = z(e).position === "fixed", o = a ? B(e) : e;
|
|
737
|
+
for (; L(o) && !vt(o);) {
|
|
738
|
+
let t = z(o), n = ht(o);
|
|
739
|
+
!n && t.position === "fixed" && (i = null), (a ? !n && !i : !n && t.position === "static" && i && (i.position === "absolute" || i.position === "fixed") || ct(o) && !n && zt(e, o)) ? r = r.filter((e) => e !== o) : i = t, o = B(o);
|
|
740
740
|
}
|
|
741
741
|
return t.set(e, r), r;
|
|
742
742
|
}
|
|
743
|
-
function
|
|
744
|
-
let { element: t, boundary: n, rootBoundary: r, strategy: i } = e, a = [...n === "clippingAncestors" ? ut(t) ? [] :
|
|
743
|
+
function Vt(e) {
|
|
744
|
+
let { element: t, boundary: n, rootBoundary: r, strategy: i } = e, a = [...n === "clippingAncestors" ? ut(t) ? [] : Bt(t, this._c) : [].concat(n), r], o = Rt(t, a[0], i), s = o.top, c = o.right, l = o.bottom, u = o.left;
|
|
745
745
|
for (let e = 1; e < a.length; e++) {
|
|
746
|
-
let n =
|
|
746
|
+
let n = Rt(t, a[e], i);
|
|
747
747
|
s = De(n.top, s), c = Ee(n.right, c), l = Ee(n.bottom, l), u = De(n.left, u);
|
|
748
748
|
}
|
|
749
749
|
return {
|
|
@@ -753,27 +753,27 @@ function Bt(e) {
|
|
|
753
753
|
y: s
|
|
754
754
|
};
|
|
755
755
|
}
|
|
756
|
-
function
|
|
757
|
-
let { width: t, height: n } =
|
|
756
|
+
function Ht(e) {
|
|
757
|
+
let { width: t, height: n } = Ct(e);
|
|
758
758
|
return {
|
|
759
759
|
width: t,
|
|
760
760
|
height: n
|
|
761
761
|
};
|
|
762
762
|
}
|
|
763
|
-
function
|
|
764
|
-
let r = R(t), i = I(t), a = n === "fixed", o =
|
|
763
|
+
function Ut(e, t, n) {
|
|
764
|
+
let r = R(t), i = I(t), a = n === "fixed", o = kt(e, !0, a, t), s = {
|
|
765
765
|
scrollLeft: 0,
|
|
766
766
|
scrollTop: 0
|
|
767
767
|
}, c = P(0);
|
|
768
768
|
function l() {
|
|
769
|
-
c.x =
|
|
769
|
+
c.x = At(i);
|
|
770
770
|
}
|
|
771
|
-
if (r || !r && !a) if ((at(t) !== "body" || ct(i)) && (s =
|
|
772
|
-
let e =
|
|
771
|
+
if (r || !r && !a) if ((at(t) !== "body" || ct(i)) && (s = yt(t)), r) {
|
|
772
|
+
let e = kt(t, !0, a, t);
|
|
773
773
|
c.x = e.x + t.clientLeft, c.y = e.y + t.clientTop;
|
|
774
774
|
} else i && l();
|
|
775
775
|
a && !r && i && l();
|
|
776
|
-
let u = i && !r && !a ?
|
|
776
|
+
let u = i && !r && !a ? jt(i, s) : P(0);
|
|
777
777
|
return {
|
|
778
778
|
x: o.left + s.scrollLeft - c.x - u.x,
|
|
779
779
|
y: o.top + s.scrollTop - c.y - u.y,
|
|
@@ -781,34 +781,34 @@ function Ht(e, t, n) {
|
|
|
781
781
|
height: o.height
|
|
782
782
|
};
|
|
783
783
|
}
|
|
784
|
-
function
|
|
785
|
-
return
|
|
784
|
+
function Wt(e) {
|
|
785
|
+
return z(e).position === "static";
|
|
786
786
|
}
|
|
787
|
-
function
|
|
788
|
-
if (!R(e) ||
|
|
787
|
+
function Gt(e, t) {
|
|
788
|
+
if (!R(e) || z(e).position === "fixed") return null;
|
|
789
789
|
if (t) return t(e);
|
|
790
790
|
let n = e.offsetParent;
|
|
791
791
|
return I(e) === n && (n = n.ownerDocument.body), n;
|
|
792
792
|
}
|
|
793
|
-
function
|
|
793
|
+
function Kt(e, t) {
|
|
794
794
|
let n = F(e);
|
|
795
795
|
if (ut(e)) return n;
|
|
796
796
|
if (!R(e)) {
|
|
797
|
-
let t =
|
|
798
|
-
for (; t && !
|
|
799
|
-
if (L(t) && !
|
|
800
|
-
t =
|
|
797
|
+
let t = B(e);
|
|
798
|
+
for (; t && !vt(t);) {
|
|
799
|
+
if (L(t) && !Wt(t)) return t;
|
|
800
|
+
t = B(t);
|
|
801
801
|
}
|
|
802
802
|
return n;
|
|
803
803
|
}
|
|
804
|
-
let r =
|
|
805
|
-
for (; r && lt(r) &&
|
|
806
|
-
return r &&
|
|
804
|
+
let r = Gt(e, t);
|
|
805
|
+
for (; r && lt(r) && Wt(r);) r = Gt(r, t);
|
|
806
|
+
return r && vt(r) && Wt(r) && !ht(r) ? n : r || gt(e) || n;
|
|
807
807
|
}
|
|
808
|
-
var
|
|
809
|
-
let t = this.getOffsetParent ||
|
|
808
|
+
var qt = async function(e) {
|
|
809
|
+
let t = this.getOffsetParent || Kt, n = this.getDimensions, r = await n(e.floating);
|
|
810
810
|
return {
|
|
811
|
-
reference:
|
|
811
|
+
reference: Ut(e.reference, await t(e.floating), e.strategy),
|
|
812
812
|
floating: {
|
|
813
813
|
x: 0,
|
|
814
814
|
y: 0,
|
|
@@ -817,23 +817,23 @@ var Kt = async function(e) {
|
|
|
817
817
|
}
|
|
818
818
|
};
|
|
819
819
|
};
|
|
820
|
-
function
|
|
821
|
-
return
|
|
820
|
+
function Jt(e) {
|
|
821
|
+
return z(e).direction === "rtl";
|
|
822
822
|
}
|
|
823
|
-
var
|
|
824
|
-
convertOffsetParentRelativeRectToViewportRelativeRect:
|
|
823
|
+
var Yt = {
|
|
824
|
+
convertOffsetParentRelativeRectToViewportRelativeRect: Mt,
|
|
825
825
|
getDocumentElement: I,
|
|
826
|
-
getClippingRect:
|
|
827
|
-
getOffsetParent:
|
|
828
|
-
getElementRects:
|
|
829
|
-
getClientRects:
|
|
830
|
-
getDimensions:
|
|
831
|
-
getScale:
|
|
826
|
+
getClippingRect: Vt,
|
|
827
|
+
getOffsetParent: Kt,
|
|
828
|
+
getElementRects: qt,
|
|
829
|
+
getClientRects: Nt,
|
|
830
|
+
getDimensions: Ht,
|
|
831
|
+
getScale: Tt,
|
|
832
832
|
isElement: L,
|
|
833
|
-
isRTL:
|
|
834
|
-
},
|
|
833
|
+
isRTL: Jt
|
|
834
|
+
}, Xt = rt, Zt = et, Qt = (e, t, n) => {
|
|
835
835
|
let r = /* @__PURE__ */ new Map(), i = {
|
|
836
|
-
platform:
|
|
836
|
+
platform: Yt,
|
|
837
837
|
...n
|
|
838
838
|
}, a = {
|
|
839
839
|
...i.platform,
|
|
@@ -843,22 +843,22 @@ var Jt = {
|
|
|
843
843
|
...i,
|
|
844
844
|
platform: a
|
|
845
845
|
});
|
|
846
|
-
},
|
|
846
|
+
}, V = /* @__PURE__ */ le({
|
|
847
847
|
Vue: () => e,
|
|
848
848
|
Vue2: () => void 0,
|
|
849
|
-
del: () =>
|
|
850
|
-
install: () =>
|
|
849
|
+
del: () => nn,
|
|
850
|
+
install: () => en,
|
|
851
851
|
isVue2: () => !1,
|
|
852
852
|
isVue3: () => !0,
|
|
853
|
-
set: () =>
|
|
853
|
+
set: () => tn
|
|
854
854
|
});
|
|
855
|
-
import * as
|
|
856
|
-
de(
|
|
857
|
-
function
|
|
858
|
-
function
|
|
855
|
+
import * as $t from "vue";
|
|
856
|
+
de(V, $t);
|
|
857
|
+
function en() {}
|
|
858
|
+
function tn(e, t, n) {
|
|
859
859
|
return Array.isArray(e) ? (e.length = Math.max(e.length, t), e.splice(t, 1, n), n) : (e[t] = n, n);
|
|
860
860
|
}
|
|
861
|
-
function
|
|
861
|
+
function nn(e, t) {
|
|
862
862
|
if (Array.isArray(e)) {
|
|
863
863
|
e.splice(t, 1);
|
|
864
864
|
return;
|
|
@@ -867,40 +867,40 @@ function tn(e, t) {
|
|
|
867
867
|
}
|
|
868
868
|
//#endregion
|
|
869
869
|
//#region ../node_modules/.pnpm/@floating-ui+vue@1.1.11_vue@3.5.32_typescript@5.9.3_/node_modules/@floating-ui/vue/dist/floating-ui.vue.mjs
|
|
870
|
-
function
|
|
870
|
+
function rn(e) {
|
|
871
871
|
return typeof e == "object" && !!e && "$el" in e;
|
|
872
872
|
}
|
|
873
|
-
function
|
|
874
|
-
if (
|
|
873
|
+
function an(e) {
|
|
874
|
+
if (rn(e)) {
|
|
875
875
|
let t = e.$el;
|
|
876
876
|
return ot(t) && at(t) === "#comment" ? null : t;
|
|
877
877
|
}
|
|
878
878
|
return e;
|
|
879
879
|
}
|
|
880
|
-
function an(e) {
|
|
881
|
-
return typeof e == "function" ? e() : (0, H.unref)(e);
|
|
882
|
-
}
|
|
883
880
|
function on(e) {
|
|
881
|
+
return typeof e == "function" ? e() : (0, V.unref)(e);
|
|
882
|
+
}
|
|
883
|
+
function sn(e) {
|
|
884
884
|
return typeof window > "u" ? 1 : (e.ownerDocument.defaultView || window).devicePixelRatio || 1;
|
|
885
885
|
}
|
|
886
|
-
function
|
|
887
|
-
let n =
|
|
886
|
+
function cn(e, t) {
|
|
887
|
+
let n = sn(e);
|
|
888
888
|
return Math.round(t * n) / n;
|
|
889
889
|
}
|
|
890
|
-
function
|
|
890
|
+
function ln(e, t, n) {
|
|
891
891
|
n === void 0 && (n = {});
|
|
892
|
-
let r = n.whileElementsMounted, i = (0,
|
|
892
|
+
let r = n.whileElementsMounted, i = (0, V.computed)(() => on(n.open) ?? !0), a = (0, V.computed)(() => on(n.middleware)), o = (0, V.computed)(() => on(n.placement) ?? "bottom"), s = (0, V.computed)(() => on(n.strategy) ?? "absolute"), c = (0, V.computed)(() => on(n.transform) ?? !0), l = (0, V.computed)(() => an(e.value)), u = (0, V.computed)(() => an(t.value)), d = (0, V.ref)(0), f = (0, V.ref)(0), p = (0, V.ref)(s.value), m = (0, V.ref)(o.value), h = (0, V.shallowRef)({}), g = (0, V.ref)(!1), _ = (0, V.computed)(() => {
|
|
893
893
|
let e = {
|
|
894
894
|
position: p.value,
|
|
895
895
|
left: "0",
|
|
896
896
|
top: "0"
|
|
897
897
|
};
|
|
898
898
|
if (!u.value) return e;
|
|
899
|
-
let t =
|
|
899
|
+
let t = cn(u.value, d.value), n = cn(u.value, f.value);
|
|
900
900
|
return c.value ? {
|
|
901
901
|
...e,
|
|
902
902
|
transform: "translate(" + t + "px, " + n + "px)",
|
|
903
|
-
...
|
|
903
|
+
...sn(u.value) >= 1.5 && { willChange: "transform" }
|
|
904
904
|
} : {
|
|
905
905
|
position: p.value,
|
|
906
906
|
left: t + "px",
|
|
@@ -910,7 +910,7 @@ function cn(e, t, n) {
|
|
|
910
910
|
function y() {
|
|
911
911
|
if (l.value == null || u.value == null) return;
|
|
912
912
|
let e = i.value;
|
|
913
|
-
|
|
913
|
+
Qt(l.value, u.value, {
|
|
914
914
|
middleware: a.value,
|
|
915
915
|
placement: o.value,
|
|
916
916
|
strategy: s.value
|
|
@@ -934,34 +934,34 @@ function cn(e, t, n) {
|
|
|
934
934
|
function S() {
|
|
935
935
|
i.value || (g.value = !1);
|
|
936
936
|
}
|
|
937
|
-
return (0,
|
|
937
|
+
return (0, V.watch)([
|
|
938
938
|
a,
|
|
939
939
|
o,
|
|
940
940
|
s,
|
|
941
941
|
i
|
|
942
|
-
], y, { flush: "sync" }), (0,
|
|
943
|
-
x: (0,
|
|
944
|
-
y: (0,
|
|
945
|
-
strategy: (0,
|
|
946
|
-
placement: (0,
|
|
947
|
-
middlewareData: (0,
|
|
948
|
-
isPositioned: (0,
|
|
942
|
+
], y, { flush: "sync" }), (0, V.watch)([l, u], x, { flush: "sync" }), (0, V.watch)(i, S, { flush: "sync" }), (0, V.getCurrentScope)() && (0, V.onScopeDispose)(b), {
|
|
943
|
+
x: (0, V.shallowReadonly)(d),
|
|
944
|
+
y: (0, V.shallowReadonly)(f),
|
|
945
|
+
strategy: (0, V.shallowReadonly)(p),
|
|
946
|
+
placement: (0, V.shallowReadonly)(m),
|
|
947
|
+
middlewareData: (0, V.shallowReadonly)(h),
|
|
948
|
+
isPositioned: (0, V.shallowReadonly)(g),
|
|
949
949
|
floatingStyles: _,
|
|
950
950
|
update: y
|
|
951
951
|
};
|
|
952
952
|
}
|
|
953
953
|
//#endregion
|
|
954
954
|
//#region ../node_modules/.pnpm/@vueuse+shared@13.9.0_vue@3.5.32_typescript@5.9.3_/node_modules/@vueuse/shared/index.mjs
|
|
955
|
-
function
|
|
955
|
+
function un(e) {
|
|
956
956
|
return f() ? (b(e), !0) : !1;
|
|
957
957
|
}
|
|
958
|
-
var
|
|
958
|
+
var dn = typeof window < "u" && typeof document < "u";
|
|
959
959
|
typeof WorkerGlobalScope < "u" && globalThis instanceof WorkerGlobalScope;
|
|
960
|
-
var
|
|
961
|
-
function
|
|
962
|
-
return
|
|
960
|
+
var fn = (e) => e != null, pn = Object.prototype.toString, mn = (e) => pn.call(e) === "[object Object]", H = () => {}, hn = /* @__PURE__ */ gn();
|
|
961
|
+
function gn() {
|
|
962
|
+
return dn && (window == null ? void 0 : window.navigator)?.userAgent && (/iP(?:ad|hone|od)/.test(window.navigator.userAgent) || (window == null ? void 0 : window.navigator)?.maxTouchPoints > 2 && /iPad|Macintosh/.test(window == null ? void 0 : window.navigator.userAgent));
|
|
963
963
|
}
|
|
964
|
-
function
|
|
964
|
+
function _n(e, t) {
|
|
965
965
|
function n(...n) {
|
|
966
966
|
return new Promise((r, i) => {
|
|
967
967
|
Promise.resolve(e(() => t.apply(this, n), {
|
|
@@ -973,9 +973,9 @@ function gn(e, t) {
|
|
|
973
973
|
}
|
|
974
974
|
return n;
|
|
975
975
|
}
|
|
976
|
-
function
|
|
977
|
-
let n, r, i =
|
|
978
|
-
clearTimeout(e), i(), i =
|
|
976
|
+
function vn(e, t = {}) {
|
|
977
|
+
let n, r, i = H, a = (e) => {
|
|
978
|
+
clearTimeout(e), i(), i = H;
|
|
979
979
|
}, o;
|
|
980
980
|
return (s) => {
|
|
981
981
|
let c = k(e), l = k(t.maxWait);
|
|
@@ -988,20 +988,20 @@ function _n(e, t = {}) {
|
|
|
988
988
|
});
|
|
989
989
|
};
|
|
990
990
|
}
|
|
991
|
-
function
|
|
991
|
+
function yn(e) {
|
|
992
992
|
return Array.isArray(e) ? e : [e];
|
|
993
993
|
}
|
|
994
|
-
function
|
|
994
|
+
function bn(e) {
|
|
995
995
|
return e || d();
|
|
996
996
|
}
|
|
997
997
|
/* @__NO_SIDE_EFFECTS__ */
|
|
998
|
-
function
|
|
999
|
-
return
|
|
998
|
+
function xn(e, t = 200, n = {}) {
|
|
999
|
+
return _n(vn(t, n), e);
|
|
1000
1000
|
}
|
|
1001
|
-
function
|
|
1002
|
-
|
|
1001
|
+
function Sn(e, t = !0, n) {
|
|
1002
|
+
bn(n) ? y(e, n) : t ? e() : m(e);
|
|
1003
1003
|
}
|
|
1004
|
-
function
|
|
1004
|
+
function Cn(e, t, n) {
|
|
1005
1005
|
return M(e, t, {
|
|
1006
1006
|
...n,
|
|
1007
1007
|
immediate: !0
|
|
@@ -1009,49 +1009,49 @@ function Sn(e, t, n) {
|
|
|
1009
1009
|
}
|
|
1010
1010
|
//#endregion
|
|
1011
1011
|
//#region ../node_modules/.pnpm/@vueuse+core@13.9.0_vue@3.5.32_typescript@5.9.3_/node_modules/@vueuse/core/index.mjs
|
|
1012
|
-
var
|
|
1013
|
-
|
|
1014
|
-
function
|
|
1012
|
+
var wn = dn ? window : void 0;
|
|
1013
|
+
dn && window.document, dn && window.navigator, dn && window.location;
|
|
1014
|
+
function U(e) {
|
|
1015
1015
|
let t = k(e);
|
|
1016
1016
|
return t?.$el ?? t;
|
|
1017
1017
|
}
|
|
1018
|
-
function
|
|
1018
|
+
function W(...e) {
|
|
1019
1019
|
let t = [], n = () => {
|
|
1020
1020
|
t.forEach((e) => e()), t.length = 0;
|
|
1021
1021
|
}, i = (e, t, n, r) => (e.addEventListener(t, n, r), () => e.removeEventListener(t, n, r)), a = r(() => {
|
|
1022
|
-
let t =
|
|
1022
|
+
let t = yn(k(e[0])).filter((e) => e != null);
|
|
1023
1023
|
return t.every((e) => typeof e != "string") ? t : void 0;
|
|
1024
|
-
}), o =
|
|
1025
|
-
a.value?.map((e) =>
|
|
1026
|
-
|
|
1027
|
-
|
|
1024
|
+
}), o = Cn(() => [
|
|
1025
|
+
a.value?.map((e) => U(e)) ?? [wn].filter((e) => e != null),
|
|
1026
|
+
yn(k(a.value ? e[1] : e[0])),
|
|
1027
|
+
yn(A(a.value ? e[2] : e[1])),
|
|
1028
1028
|
k(a.value ? e[3] : e[2])
|
|
1029
1029
|
], ([e, r, a, o]) => {
|
|
1030
1030
|
if (n(), !e?.length || !r?.length || !a?.length) return;
|
|
1031
|
-
let s =
|
|
1031
|
+
let s = mn(o) ? { ...o } : o;
|
|
1032
1032
|
t.push(...e.flatMap((e) => r.flatMap((t) => a.map((n) => i(e, t, n, s)))));
|
|
1033
1033
|
}, { flush: "post" });
|
|
1034
|
-
return
|
|
1034
|
+
return un(n), () => {
|
|
1035
1035
|
o(), n();
|
|
1036
1036
|
};
|
|
1037
1037
|
}
|
|
1038
1038
|
var Tn = !1;
|
|
1039
1039
|
function En(e, t, n = {}) {
|
|
1040
|
-
let { window: r =
|
|
1040
|
+
let { window: r = wn, ignore: i = [], capture: a = !0, detectIframe: o = !1, controls: s = !1 } = n;
|
|
1041
1041
|
if (!r) return s ? {
|
|
1042
|
-
stop:
|
|
1043
|
-
cancel:
|
|
1044
|
-
trigger:
|
|
1045
|
-
} :
|
|
1046
|
-
if (
|
|
1042
|
+
stop: H,
|
|
1043
|
+
cancel: H,
|
|
1044
|
+
trigger: H
|
|
1045
|
+
} : H;
|
|
1046
|
+
if (hn && !Tn) {
|
|
1047
1047
|
Tn = !0;
|
|
1048
1048
|
let e = { passive: !0 };
|
|
1049
|
-
Array.from(r.document.body.children).forEach((t) => t.addEventListener("click",
|
|
1049
|
+
Array.from(r.document.body.children).forEach((t) => t.addEventListener("click", H, e)), r.document.documentElement.addEventListener("click", H, e);
|
|
1050
1050
|
}
|
|
1051
1051
|
let c = !0, l = (e) => k(i).some((t) => {
|
|
1052
1052
|
if (typeof t == "string") return Array.from(r.document.querySelectorAll(t)).some((t) => t === e.target || e.composedPath().includes(t));
|
|
1053
1053
|
{
|
|
1054
|
-
let n =
|
|
1054
|
+
let n = U(t);
|
|
1055
1055
|
return n && (e.target === n || e.composedPath().includes(n));
|
|
1056
1056
|
}
|
|
1057
1057
|
});
|
|
@@ -1064,7 +1064,7 @@ function En(e, t, n = {}) {
|
|
|
1064
1064
|
return r == null || !Array.isArray(r) ? !1 : r.some((e) => e.el === t.target || t.composedPath().includes(e.el));
|
|
1065
1065
|
}
|
|
1066
1066
|
let f = (n) => {
|
|
1067
|
-
let r =
|
|
1067
|
+
let r = U(e);
|
|
1068
1068
|
if (n.target != null && !(!(r instanceof Element) && u(e) && d(e, n)) && !(!r || r === n.target || n.composedPath().includes(r))) {
|
|
1069
1069
|
if ("detail" in n && n.detail === 0 && (c = !l(n)), !c) {
|
|
1070
1070
|
c = !0;
|
|
@@ -1073,7 +1073,7 @@ function En(e, t, n = {}) {
|
|
|
1073
1073
|
t(n);
|
|
1074
1074
|
}
|
|
1075
1075
|
}, p = !1, m = [
|
|
1076
|
-
|
|
1076
|
+
W(r, "click", (e) => {
|
|
1077
1077
|
p || (p = !0, setTimeout(() => {
|
|
1078
1078
|
p = !1;
|
|
1079
1079
|
}, 0), f(e));
|
|
@@ -1081,13 +1081,13 @@ function En(e, t, n = {}) {
|
|
|
1081
1081
|
passive: !0,
|
|
1082
1082
|
capture: a
|
|
1083
1083
|
}),
|
|
1084
|
-
|
|
1085
|
-
let n =
|
|
1084
|
+
W(r, "pointerdown", (t) => {
|
|
1085
|
+
let n = U(e);
|
|
1086
1086
|
c = !l(t) && !!(n && !t.composedPath().includes(n));
|
|
1087
1087
|
}, { passive: !0 }),
|
|
1088
|
-
o &&
|
|
1088
|
+
o && W(r, "blur", (n) => {
|
|
1089
1089
|
setTimeout(() => {
|
|
1090
|
-
let i =
|
|
1090
|
+
let i = U(e);
|
|
1091
1091
|
r.document.activeElement?.tagName === "IFRAME" && !i?.contains(r.document.activeElement) && t(n);
|
|
1092
1092
|
}, 0);
|
|
1093
1093
|
}, { passive: !0 })
|
|
@@ -1115,10 +1115,10 @@ function On(e) {
|
|
|
1115
1115
|
return r(() => (t.value, !!e()));
|
|
1116
1116
|
}
|
|
1117
1117
|
function kn(e, t, n = {}) {
|
|
1118
|
-
let { window: i =
|
|
1118
|
+
let { window: i = wn, ...a } = n, o, s = /* @__PURE__ */ On(() => i && "MutationObserver" in i), c = () => {
|
|
1119
1119
|
o &&= (o.disconnect(), void 0);
|
|
1120
1120
|
}, l = M(r(() => {
|
|
1121
|
-
let t =
|
|
1121
|
+
let t = yn(k(e)).map(U).filter(fn);
|
|
1122
1122
|
return new Set(t);
|
|
1123
1123
|
}), (e) => {
|
|
1124
1124
|
c(), s.value && e.size && (o = new MutationObserver(t), e.forEach((e) => o.observe(e, a)));
|
|
@@ -1128,19 +1128,19 @@ function kn(e, t, n = {}) {
|
|
|
1128
1128
|
}), u = () => o?.takeRecords(), d = () => {
|
|
1129
1129
|
l(), c();
|
|
1130
1130
|
};
|
|
1131
|
-
return
|
|
1131
|
+
return un(d), {
|
|
1132
1132
|
isSupported: s,
|
|
1133
1133
|
stop: d,
|
|
1134
1134
|
takeRecords: u
|
|
1135
1135
|
};
|
|
1136
1136
|
}
|
|
1137
1137
|
function An(e, t, n = {}) {
|
|
1138
|
-
let { window: r =
|
|
1139
|
-
if (!r || !i) return
|
|
1138
|
+
let { window: r = wn, document: i = r?.document, flush: a = "sync" } = n;
|
|
1139
|
+
if (!r || !i) return H;
|
|
1140
1140
|
let o, s = (e) => {
|
|
1141
1141
|
o?.(), o = e;
|
|
1142
1142
|
}, c = ne(() => {
|
|
1143
|
-
let n =
|
|
1143
|
+
let n = U(e);
|
|
1144
1144
|
if (n) {
|
|
1145
1145
|
let { stop: e } = kn(i, (e) => {
|
|
1146
1146
|
e.map((e) => [...e.removedNodes]).flat().some((e) => e === n || e.contains(n)) && t(e);
|
|
@@ -1154,14 +1154,14 @@ function An(e, t, n = {}) {
|
|
|
1154
1154
|
}, { flush: a }), l = () => {
|
|
1155
1155
|
c(), s();
|
|
1156
1156
|
};
|
|
1157
|
-
return
|
|
1157
|
+
return un(l), l;
|
|
1158
1158
|
}
|
|
1159
1159
|
function jn(e, t, n = {}) {
|
|
1160
|
-
let { window: i =
|
|
1160
|
+
let { window: i = wn, ...a } = n, o, s = /* @__PURE__ */ On(() => i && "ResizeObserver" in i), c = () => {
|
|
1161
1161
|
o &&= (o.disconnect(), void 0);
|
|
1162
1162
|
}, l = M(r(() => {
|
|
1163
1163
|
let t = k(e);
|
|
1164
|
-
return Array.isArray(t) ? t.map((e) =>
|
|
1164
|
+
return Array.isArray(t) ? t.map((e) => U(e)) : [U(t)];
|
|
1165
1165
|
}), (e) => {
|
|
1166
1166
|
if (c(), s.value && i) {
|
|
1167
1167
|
o = new ResizeObserver(t);
|
|
@@ -1173,7 +1173,7 @@ function jn(e, t, n = {}) {
|
|
|
1173
1173
|
}), u = () => {
|
|
1174
1174
|
c(), l();
|
|
1175
1175
|
};
|
|
1176
|
-
return
|
|
1176
|
+
return un(u), {
|
|
1177
1177
|
isSupported: s,
|
|
1178
1178
|
stop: u
|
|
1179
1179
|
};
|
|
@@ -1181,7 +1181,7 @@ function jn(e, t, n = {}) {
|
|
|
1181
1181
|
function Mn(e, t = {}) {
|
|
1182
1182
|
let { reset: n = !0, windowResize: r = !0, windowScroll: i = !0, immediate: a = !0, updateTiming: o = "sync" } = t, s = D(0), c = D(0), l = D(0), u = D(0), d = D(0), f = D(0), p = D(0), m = D(0);
|
|
1183
1183
|
function h() {
|
|
1184
|
-
let t =
|
|
1184
|
+
let t = U(e);
|
|
1185
1185
|
if (!t) {
|
|
1186
1186
|
n && (s.value = 0, c.value = 0, l.value = 0, u.value = 0, d.value = 0, f.value = 0, p.value = 0, m.value = 0);
|
|
1187
1187
|
return;
|
|
@@ -1192,10 +1192,10 @@ function Mn(e, t = {}) {
|
|
|
1192
1192
|
function g() {
|
|
1193
1193
|
o === "sync" ? h() : o === "next-frame" && requestAnimationFrame(() => h());
|
|
1194
1194
|
}
|
|
1195
|
-
return jn(e, g), M(() =>
|
|
1195
|
+
return jn(e, g), M(() => U(e), (e) => !e && g()), kn(e, g, { attributeFilter: ["style", "class"] }), i && W("scroll", g, {
|
|
1196
1196
|
capture: !0,
|
|
1197
1197
|
passive: !0
|
|
1198
|
-
}), r &&
|
|
1198
|
+
}), r && W("resize", g, { passive: !0 }), Sn(() => {
|
|
1199
1199
|
a && g();
|
|
1200
1200
|
}), {
|
|
1201
1201
|
height: s,
|
|
@@ -1210,11 +1210,11 @@ function Mn(e, t = {}) {
|
|
|
1210
1210
|
};
|
|
1211
1211
|
}
|
|
1212
1212
|
function Nn(e, t = {}) {
|
|
1213
|
-
let { delayEnter: n = 0, delayLeave: i = 0, triggerOnRemoval: a = !1, window: o =
|
|
1213
|
+
let { delayEnter: n = 0, delayLeave: i = 0, triggerOnRemoval: a = !1, window: o = wn } = t, s = D(!1), c, l = (e) => {
|
|
1214
1214
|
let t = e ? n : i;
|
|
1215
1215
|
c &&= (clearTimeout(c), void 0), t ? c = setTimeout(() => s.value = e, t) : s.value = e;
|
|
1216
1216
|
};
|
|
1217
|
-
return o ? (
|
|
1217
|
+
return o ? (W(e, "mouseenter", () => l(!0), { passive: !0 }), W(e, "mouseleave", () => l(!1), { passive: !0 }), a && An(r(() => U(e)), () => l(!1)), s) : s;
|
|
1218
1218
|
}
|
|
1219
1219
|
//#endregion
|
|
1220
1220
|
//#region src/composables/useSlotPresence.ts
|
|
@@ -1431,14 +1431,14 @@ var Rn = /* @__PURE__ */ new Set(), zn = (e, t) => !!t.root.value && !!e.root.va
|
|
|
1431
1431
|
}), fe = () => {}, pe = () => ({});
|
|
1432
1432
|
if (!_) {
|
|
1433
1433
|
let e = [];
|
|
1434
|
-
t.disableAutoPlacement || e.push(
|
|
1435
|
-
let n =
|
|
1434
|
+
t.disableAutoPlacement || e.push(Zt({ fallbackStrategy: "initialPlacement" })), t.offset && e.push(Xt(t.offset));
|
|
1435
|
+
let n = ln(w, D, {
|
|
1436
1436
|
placement: oe[t.position],
|
|
1437
1437
|
strategy: t.positioningStrategy,
|
|
1438
1438
|
middleware: e
|
|
1439
1439
|
});
|
|
1440
1440
|
fe = n.update, pe = () => n.floatingStyles.value;
|
|
1441
|
-
let i = Mn(w), a = /* @__PURE__ */
|
|
1441
|
+
let i = Mn(w), a = /* @__PURE__ */ xn(() => {
|
|
1442
1442
|
c.value && fe();
|
|
1443
1443
|
}, 5);
|
|
1444
1444
|
M([
|
|
@@ -1479,9 +1479,9 @@ var Rn = /* @__PURE__ */ new Set(), zn = (e, t) => !!t.root.value && !!e.root.va
|
|
|
1479
1479
|
!e && !t && !n && (re.value = !1);
|
|
1480
1480
|
});
|
|
1481
1481
|
let Se = ({ target: e }) => {
|
|
1482
|
-
j.value = e instanceof HTMLElement && e.matches(":focus-visible");
|
|
1482
|
+
j.value = !t.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
|
|
1483
1483
|
}, Ce = ({ target: e }) => {
|
|
1484
|
-
ne.value = e instanceof HTMLElement && e.matches(":focus-visible");
|
|
1484
|
+
ne.value = !t.disabled && e instanceof HTMLElement && e.matches(":focus-visible");
|
|
1485
1485
|
}, we = () => {
|
|
1486
1486
|
ne.value = !1;
|
|
1487
1487
|
}, Te = () => {
|
|
@@ -1519,7 +1519,11 @@ var Rn = /* @__PURE__ */ new Set(), zn = (e, t) => !!t.root.value && !!e.root.va
|
|
|
1519
1519
|
}), x(() => {
|
|
1520
1520
|
_e(), ve();
|
|
1521
1521
|
}), M(() => t.disabled, (e) => {
|
|
1522
|
-
|
|
1522
|
+
if (!e) {
|
|
1523
|
+
xe.value && N(!0);
|
|
1524
|
+
return;
|
|
1525
|
+
}
|
|
1526
|
+
j.value &&= !1, ne.value &&= !1, N(!1);
|
|
1523
1527
|
}), (r, l) => (S(), o("div", {
|
|
1524
1528
|
ref_key: "root",
|
|
1525
1529
|
ref: b,
|
|
@@ -1555,7 +1559,7 @@ var Rn = /* @__PURE__ */ new Set(), zn = (e, t) => !!t.root.value && !!e.root.va
|
|
|
1555
1559
|
onFocusout: we
|
|
1556
1560
|
}, [E(r.$slots, "content")], 36), [[te, c.value]])], 8, ["to", "disabled"])) : a("v-if", !0)], 36));
|
|
1557
1561
|
}
|
|
1558
|
-
}), [["styles", [".pv-floating-native[data-v-
|
|
1562
|
+
}), [["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 = { class: "pv-split-button pv-flex" }, Gn = {
|
|
1559
1563
|
class: "pv-split-button__menu-content pv-surface pv-bordered pv-radius pv-inset-square-8 pv-flex-vertical",
|
|
1560
1564
|
style: {
|
|
1561
1565
|
"--flex-gap": "4px",
|