@caseparts-org/caseblocks 0.0.53 → 0.0.54
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/dist/molecules/Cart/Cart.js +21 -19
- package/dist/molecules/Tooltip/Tooltip.js +16 -14
- package/package.json +1 -1
|
@@ -7,35 +7,37 @@ import { Tooltip as f } from "../Tooltip/Tooltip.js";
|
|
|
7
7
|
import { Pricing as v } from "../Pricing/Pricing.js";
|
|
8
8
|
import { QuantityInput as w } from "../QuantityInput/QuantityInput.js";
|
|
9
9
|
import { Availability as b } from "../Availability/Availability.js";
|
|
10
|
-
import '../../assets/Cart.css';const y = "_cart_1uglw_2", N = "_count_1uglw_9",
|
|
10
|
+
import '../../assets/Cart.css';const y = "_cart_1uglw_2", N = "_count_1uglw_9", z = "_cartTooltip_1uglw_24", C = "_cartContainer_1uglw_27", k = "_cartItems_1uglw_35", x = "_topRow_1uglw_57", T = "_itemInfo_1uglw_63", R = "_purchaseInformation_1uglw_68", L = "_itemManagement_1uglw_75", M = "_removeItem_1uglw_93", P = "_noItems_1uglw_101", S = "_subtotal_1uglw_108", i = {
|
|
11
11
|
cart: y,
|
|
12
12
|
count: N,
|
|
13
|
-
cartTooltip:
|
|
14
|
-
cartContainer:
|
|
15
|
-
cartItems:
|
|
16
|
-
topRow:
|
|
13
|
+
cartTooltip: z,
|
|
14
|
+
cartContainer: C,
|
|
15
|
+
cartItems: k,
|
|
16
|
+
topRow: x,
|
|
17
17
|
itemInfo: T,
|
|
18
|
-
purchaseInformation:
|
|
19
|
-
itemManagement:
|
|
20
|
-
removeItem:
|
|
18
|
+
purchaseInformation: R,
|
|
19
|
+
itemManagement: L,
|
|
20
|
+
removeItem: M,
|
|
21
21
|
noItems: P,
|
|
22
22
|
subtotal: S
|
|
23
23
|
};
|
|
24
|
-
function
|
|
24
|
+
function O({
|
|
25
25
|
cart: n,
|
|
26
|
-
onItemQtyChange:
|
|
27
|
-
onItemDelete:
|
|
26
|
+
onItemQtyChange: m,
|
|
27
|
+
onItemDelete: c,
|
|
28
28
|
onCheckout: l,
|
|
29
29
|
subtotal: r,
|
|
30
30
|
contactHref: d,
|
|
31
|
-
contactLinkBehavior:
|
|
32
|
-
itemPriceLabel:
|
|
31
|
+
contactLinkBehavior: p,
|
|
32
|
+
itemPriceLabel: h,
|
|
33
33
|
...u
|
|
34
34
|
}) {
|
|
35
35
|
return n = n || { items: [] }, /* @__PURE__ */ t(
|
|
36
36
|
f,
|
|
37
37
|
{
|
|
38
38
|
tooltipClassName: i.cartTooltip,
|
|
39
|
+
repositionOnResize: !0,
|
|
40
|
+
keepTooltipInside: !0,
|
|
39
41
|
trigger: /* @__PURE__ */ o("button", { className: i.cart, tabIndex: 0, ...u, children: [
|
|
40
42
|
/* @__PURE__ */ t(
|
|
41
43
|
s,
|
|
@@ -47,7 +49,7 @@ function U({
|
|
|
47
49
|
),
|
|
48
50
|
n.items.length > 0 && /* @__PURE__ */ t("div", { className: i.count, children: /* @__PURE__ */ t(a, { size: "xxs", children: n.items.length }) })
|
|
49
51
|
] }),
|
|
50
|
-
position: "bottom
|
|
52
|
+
position: "bottom left",
|
|
51
53
|
on: "click",
|
|
52
54
|
children: /* @__PURE__ */ o("div", { className: i.cartContainer, children: [
|
|
53
55
|
/* @__PURE__ */ t(a, { size: "2xl", children: "Cart" }),
|
|
@@ -63,7 +65,7 @@ function U({
|
|
|
63
65
|
e.itemId
|
|
64
66
|
] })
|
|
65
67
|
] }),
|
|
66
|
-
/* @__PURE__ */ t("button", { onClick: () =>
|
|
68
|
+
/* @__PURE__ */ t("button", { onClick: () => c(e), className: i.removeItem, children: /* @__PURE__ */ t(s, { iconKey: "fa-regular fa-trash", size: "sm" }) })
|
|
67
69
|
] }),
|
|
68
70
|
/* @__PURE__ */ o("div", { className: i.itemManagement, children: [
|
|
69
71
|
/* @__PURE__ */ o("div", { className: i.purchaseInformation, children: [
|
|
@@ -73,12 +75,12 @@ function U({
|
|
|
73
75
|
availId: e.availabilityId || "",
|
|
74
76
|
availDescription: e.availability || "",
|
|
75
77
|
contactHref: d || "",
|
|
76
|
-
contactLinkBehavior:
|
|
78
|
+
contactLinkBehavior: p || "new-tab"
|
|
77
79
|
}
|
|
78
80
|
),
|
|
79
|
-
/* @__PURE__ */ t(v, { pricingLabel:
|
|
81
|
+
/* @__PURE__ */ t(v, { pricingLabel: h || "List Price", price: e.price })
|
|
80
82
|
] }),
|
|
81
|
-
/* @__PURE__ */ t(w, { quantity: e.quantity, onQuantityChange: (g) =>
|
|
83
|
+
/* @__PURE__ */ t(w, { quantity: e.quantity, onQuantityChange: (g) => m(e, g), size: "sm" })
|
|
82
84
|
] })
|
|
83
85
|
] })
|
|
84
86
|
] }, e.id)
|
|
@@ -93,5 +95,5 @@ function U({
|
|
|
93
95
|
);
|
|
94
96
|
}
|
|
95
97
|
export {
|
|
96
|
-
|
|
98
|
+
O as ShoppingCart
|
|
97
99
|
};
|
|
@@ -574,7 +574,7 @@ var Ze = function(a, c) {
|
|
|
574
574
|
}, lt = /* @__PURE__ */ Xe(function(s, a) {
|
|
575
575
|
var c = s.trigger, o = c === void 0 ? null : c, f = s.onOpen, d = f === void 0 ? function() {
|
|
576
576
|
} : f, p = s.onClose, m = p === void 0 ? function() {
|
|
577
|
-
} : p, n = s.defaultOpen, t = n === void 0 ? !1 : n, l = s.open, r = l === void 0 ? void 0 : l, e = s.disabled, i = e === void 0 ? !1 : e, y = s.nested, v = y === void 0 ? !1 : y, w = s.closeOnDocumentClick, R = w === void 0 ? !0 : w, k = s.repositionOnResize, we = k === void 0 ? !0 : k, W = s.closeOnEscape, Te = W === void 0 ? !0 : W, J = s.on, I = J === void 0 ? ["click"] : J, Q = s.contentStyle, Re = Q === void 0 ? {} : Q, Z = s.arrowStyle, X = Z === void 0 ? {} : Z, B = s.overlayStyle, De = B === void 0 ? {} : B, ee = s.className,
|
|
577
|
+
} : p, n = s.defaultOpen, t = n === void 0 ? !1 : n, l = s.open, r = l === void 0 ? void 0 : l, e = s.disabled, i = e === void 0 ? !1 : e, y = s.nested, v = y === void 0 ? !1 : y, w = s.closeOnDocumentClick, R = w === void 0 ? !0 : w, k = s.repositionOnResize, we = k === void 0 ? !0 : k, W = s.closeOnEscape, Te = W === void 0 ? !0 : W, J = s.on, I = J === void 0 ? ["click"] : J, Q = s.contentStyle, Re = Q === void 0 ? {} : Q, Z = s.arrowStyle, X = Z === void 0 ? {} : Z, B = s.overlayStyle, De = B === void 0 ? {} : B, ee = s.className, P = ee === void 0 ? "" : ee, te = s.position, ke = te === void 0 ? "bottom center" : te, re = s.modal, ne = re === void 0 ? !1 : re, oe = s.lockScroll, ie = oe === void 0 ? !1 : oe, ae = s.arrow, F = ae === void 0 ? !0 : ae, se = s.offsetX, Ce = se === void 0 ? 0 : se, ce = s.offsetY, Le = ce === void 0 ? 0 : ce, le = s.mouseEnterDelay, Me = le === void 0 ? 100 : le, ue = s.mouseLeaveDelay, Ae = ue === void 0 ? 100 : ue, fe = s.keepTooltipInside, Pe = fe === void 0 ? !1 : fe, z = s.children, de = Fe(r || t), D = de[0], pe = de[1], C = N(null), b = N(null), M = N(null), ye = N(null), ve = N("popup-" + ++st), S = ne ? !0 : !o, j = N(0);
|
|
578
578
|
rt(function() {
|
|
579
579
|
return D ? (ye.current = document.activeElement, ge(), je(), xe()) : Ie(), function() {
|
|
580
580
|
clearTimeout(j.current);
|
|
@@ -596,13 +596,13 @@ var Ze = function(a, c) {
|
|
|
596
596
|
}, G = function(u) {
|
|
597
597
|
clearTimeout(j.current), j.current = setTimeout(function() {
|
|
598
598
|
return U(u);
|
|
599
|
-
},
|
|
599
|
+
}, Me);
|
|
600
600
|
}, Ne = function(u) {
|
|
601
601
|
u == null || u.preventDefault(), V();
|
|
602
602
|
}, q = function(u) {
|
|
603
603
|
clearTimeout(j.current), j.current = setTimeout(function() {
|
|
604
604
|
return L(u);
|
|
605
|
-
},
|
|
605
|
+
}, Ae);
|
|
606
606
|
}, xe = function() {
|
|
607
607
|
S && ie && (document.getElementsByTagName("body")[0].style.overflow = "hidden");
|
|
608
608
|
}, Ie = function() {
|
|
@@ -629,10 +629,10 @@ var Ze = function(a, c) {
|
|
|
629
629
|
var u = C.current.getBoundingClientRect(), _ = b.current.getBoundingClientRect(), g = at(u, _, ke, F, {
|
|
630
630
|
offsetX: Ce,
|
|
631
631
|
offsetY: Le
|
|
632
|
-
},
|
|
633
|
-
if (b.current.style.top = g.top + window.scrollY + "px", b.current.style.left = g.left + window.scrollX + "px", F &&
|
|
634
|
-
var
|
|
635
|
-
|
|
632
|
+
}, Pe);
|
|
633
|
+
if (b.current.style.top = g.top + window.scrollY + "px", b.current.style.left = g.left + window.scrollX + "px", F && M.current) {
|
|
634
|
+
var A, $;
|
|
635
|
+
M.current.style.transform = g.transform, M.current.style.setProperty("-ms-transform", g.transform), M.current.style.setProperty("-webkit-transform", g.transform), M.current.style.top = ((A = X.top) === null || A === void 0 ? void 0 : A.toString()) || g.arrowTop, M.current.style.left = (($ = X.left) === null || $ === void 0 ? void 0 : $.toString()) || g.arrowLeft;
|
|
636
636
|
}
|
|
637
637
|
}
|
|
638
638
|
};
|
|
@@ -642,7 +642,7 @@ var Ze = function(a, c) {
|
|
|
642
642
|
key: "T",
|
|
643
643
|
ref: C,
|
|
644
644
|
"aria-describedby": ve.current
|
|
645
|
-
}, _ = Array.isArray(I) ? I : [I], g = 0,
|
|
645
|
+
}, _ = Array.isArray(I) ? I : [I], g = 0, A = _.length; g < A; g++)
|
|
646
646
|
switch (_[g]) {
|
|
647
647
|
case "click":
|
|
648
648
|
u.onClick = V;
|
|
@@ -664,15 +664,15 @@ var Ze = function(a, c) {
|
|
|
664
664
|
return !!o && T.cloneElement(o, u);
|
|
665
665
|
}, He = function() {
|
|
666
666
|
var u = S ? H.popupContent.modal : H.popupContent.tooltip, _ = {
|
|
667
|
-
className: "popup-content " + (
|
|
667
|
+
className: "popup-content " + (P !== "" ? P.split(" ").map(function(g) {
|
|
668
668
|
return g + "-content";
|
|
669
669
|
}).join(" ") : ""),
|
|
670
670
|
style: Y({}, u, Re, {
|
|
671
671
|
pointerEvents: "auto"
|
|
672
672
|
}),
|
|
673
673
|
ref: b,
|
|
674
|
-
onClick: function(
|
|
675
|
-
|
|
674
|
+
onClick: function(A) {
|
|
675
|
+
A.stopPropagation();
|
|
676
676
|
}
|
|
677
677
|
};
|
|
678
678
|
return !ne && I.indexOf("hover") >= 0 && (_.onMouseEnter = G, _.onMouseLeave = q), _;
|
|
@@ -682,11 +682,11 @@ var Ze = function(a, c) {
|
|
|
682
682
|
role: S ? "dialog" : "tooltip",
|
|
683
683
|
id: ve.current
|
|
684
684
|
}), F && !S && T.createElement("div", {
|
|
685
|
-
ref:
|
|
685
|
+
ref: M,
|
|
686
686
|
style: H.popupArrow
|
|
687
687
|
}, T.createElement("svg", {
|
|
688
688
|
"data-testid": "arrow",
|
|
689
|
-
className: "popup-arrow " + (
|
|
689
|
+
className: "popup-arrow " + (P !== "" ? P.split(" ").map(function(u) {
|
|
690
690
|
return u + "-arrow";
|
|
691
691
|
}).join(" ") : ""),
|
|
692
692
|
viewBox: "0 0 32 16",
|
|
@@ -701,7 +701,7 @@ var Ze = function(a, c) {
|
|
|
701
701
|
key: "O",
|
|
702
702
|
"data-testid": "overlay",
|
|
703
703
|
"data-popup": S ? "modal" : "tooltip",
|
|
704
|
-
className: "popup-overlay " + (
|
|
704
|
+
className: "popup-overlay " + (P !== "" ? P.split(" ").map(function(h) {
|
|
705
705
|
return h + "-overlay";
|
|
706
706
|
}).join(" ") : ""),
|
|
707
707
|
style: Y({}, ze, De, {
|
|
@@ -724,6 +724,8 @@ const ut = "_content_1wx0f_2", be = {
|
|
|
724
724
|
{
|
|
725
725
|
arrow: !0,
|
|
726
726
|
on: o.on ?? "hover",
|
|
727
|
+
repositionOnResize: o.repositionOnResize ?? !0,
|
|
728
|
+
keepTooltipInside: o.keepTooltipInside ?? !0,
|
|
727
729
|
...o,
|
|
728
730
|
className: Oe(be.tooltip, s),
|
|
729
731
|
children: /* @__PURE__ */ he("div", { className: Oe(be.content, a), children: c })
|