@caseparts-org/caseblocks 0.0.81 → 0.0.82
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/atoms/Image/Image.d.ts +0 -4
- package/dist/atoms/Image/Image.js +20 -9
- package/dist/atoms/Image/configureImage.d.ts +3 -0
- package/dist/atoms/Image/configureImage.js +8 -0
- package/dist/atoms/LinkButton/LinkButton.d.ts +2 -3
- package/dist/atoms/LinkButton/LinkButton.js +12 -14
- package/dist/main-client.js +52 -50
- package/dist/main-server.d.ts +2 -0
- package/dist/main-server.js +24 -22
- package/dist/organisms/NotFound/NotFound.d.ts +2 -3
- package/dist/organisms/NotFound/NotFound.js +24 -26
- package/dist/organisms/Product/Product.d.ts +2 -3
- package/dist/organisms/Product/Product.js +74 -76
- package/package.json +1 -1
|
@@ -7,10 +7,6 @@ export type ImageImplementation = React.ComponentType<{
|
|
|
7
7
|
alt: string;
|
|
8
8
|
className?: string;
|
|
9
9
|
} & Record<string, any>>;
|
|
10
|
-
export interface UsesImageImplementation {
|
|
11
|
-
imageImplementation?: ImageImplementation;
|
|
12
|
-
imageImplementationProps?: Record<string, any>;
|
|
13
|
-
}
|
|
14
10
|
/**
|
|
15
11
|
* Base + hybrid props.
|
|
16
12
|
* src is required here to satisfy external implementations.
|
|
@@ -1,13 +1,24 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import { jsx as l } from "react/jsx-runtime";
|
|
2
|
+
import { imageOverride as t } from "./configureImage.js";
|
|
3
|
+
function u({
|
|
4
|
+
implementation: e,
|
|
5
|
+
implementationProps: g,
|
|
6
|
+
src: a,
|
|
7
|
+
alt: i,
|
|
8
|
+
...o
|
|
8
9
|
}) {
|
|
9
|
-
|
|
10
|
+
const d = typeof globalThis < "u" && globalThis.__CASEBLOCKS_IMAGE_IMPL || null, r = e || t || d;
|
|
11
|
+
return r ? /* @__PURE__ */ l(
|
|
12
|
+
r,
|
|
13
|
+
{
|
|
14
|
+
src: a,
|
|
15
|
+
alt: i ?? "",
|
|
16
|
+
...o,
|
|
17
|
+
...g,
|
|
18
|
+
"data-image-adapter": e ? "explicit" : t ? "configured-module" : "configured-global"
|
|
19
|
+
}
|
|
20
|
+
) : /* @__PURE__ */ l("img", { src: a, alt: i, ...o, "data-image-adapter": "img" });
|
|
10
21
|
}
|
|
11
22
|
export {
|
|
12
|
-
|
|
23
|
+
u as Image
|
|
13
24
|
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { HideAtProps } from '../HideAt';
|
|
2
|
-
import { LinkProps
|
|
2
|
+
import { LinkProps } from '../Link/Link';
|
|
3
3
|
import { ButtonStyleProps } from '../Button/buttonClassName';
|
|
4
4
|
export interface LinkButtonProps extends LinkProps, HideAtProps, ButtonStyleProps {
|
|
5
|
-
implementation?: LinkImplementation;
|
|
6
5
|
}
|
|
7
|
-
export declare function LinkButton({ href, children, size, variant, hideAt, className, disabled,
|
|
6
|
+
export declare function LinkButton({ href, children, size, variant, hideAt, className, disabled, ...otherProps }: LinkButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import { Link as
|
|
3
|
-
import { buttonClassNames as
|
|
4
|
-
import { c as
|
|
5
|
-
function
|
|
1
|
+
import { jsx as i } from "react/jsx-runtime";
|
|
2
|
+
import { Link as u } from "../Link/Link.js";
|
|
3
|
+
import { buttonClassNames as f } from "../Button/buttonClassName.js";
|
|
4
|
+
import { c as p } from "../../clsx-OuTLNxxd.js";
|
|
5
|
+
function L({
|
|
6
6
|
href: o,
|
|
7
7
|
children: r,
|
|
8
8
|
size: m,
|
|
@@ -10,23 +10,21 @@ function g({
|
|
|
10
10
|
hideAt: n,
|
|
11
11
|
className: e,
|
|
12
12
|
disabled: t,
|
|
13
|
-
|
|
14
|
-
...c
|
|
13
|
+
...a
|
|
15
14
|
}) {
|
|
16
|
-
const
|
|
17
|
-
return /* @__PURE__ */
|
|
18
|
-
|
|
15
|
+
const c = f({ size: m, variant: s, hideAt: n, className: p(e), disabled: t });
|
|
16
|
+
return /* @__PURE__ */ i(
|
|
17
|
+
u,
|
|
19
18
|
{
|
|
20
19
|
href: o,
|
|
21
|
-
className:
|
|
20
|
+
className: c,
|
|
22
21
|
disabled: t,
|
|
23
|
-
implementation: a,
|
|
24
22
|
unstyled: !0,
|
|
25
|
-
...
|
|
23
|
+
...a,
|
|
26
24
|
children: r
|
|
27
25
|
}
|
|
28
26
|
);
|
|
29
27
|
}
|
|
30
28
|
export {
|
|
31
|
-
|
|
29
|
+
L as LinkButton
|
|
32
30
|
};
|
package/dist/main-client.js
CHANGED
|
@@ -1,70 +1,72 @@
|
|
|
1
1
|
import { Button as t } from "./atoms/Button/Button.js";
|
|
2
2
|
import { Flex as p } from "./atoms/Flex/Flex.js";
|
|
3
|
-
import { Column as
|
|
3
|
+
import { Column as f, Grid as x } from "./atoms/Grid/Grid.js";
|
|
4
4
|
import { Head as n } from "./atoms/Root/Head.js";
|
|
5
5
|
import { Icon as u } from "./atoms/Icon/Icon.js";
|
|
6
6
|
import { Root as c } from "./atoms/Root/Root.js";
|
|
7
7
|
import { Separator as C } from "./atoms/Separator/Separator.js";
|
|
8
|
-
import { Text as
|
|
8
|
+
import { Text as k } from "./atoms/Text/Text.js";
|
|
9
9
|
import { Input as B } from "./atoms/Input/Input.js";
|
|
10
10
|
import { Link as v } from "./atoms/Link/Link.js";
|
|
11
|
-
import { linkClassName as
|
|
12
|
-
import { configureLink as
|
|
11
|
+
import { linkClassName as L } from "./atoms/Link/linkClassName.js";
|
|
12
|
+
import { configureLink as T, routerOverride as s } from "./atoms/Link/configureLink.js";
|
|
13
13
|
import { LinkButton as N } from "./atoms/LinkButton/LinkButton.js";
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
14
|
+
import { configureImage as M } from "./atoms/Image/configureImage.js";
|
|
15
|
+
import { Logo as b } from "./molecules/Logo/Logo.js";
|
|
16
|
+
import { SearchBox as G } from "./molecules/SearchBox/SearchBox.js";
|
|
17
|
+
import { QuantityInput as O } from "./molecules/QuantityInput/QuantityInput.js";
|
|
18
|
+
import { Pricing as R } from "./molecules/Pricing/Pricing.js";
|
|
19
|
+
import { Tooltip as j } from "./molecules/Tooltip/Tooltip.js";
|
|
20
|
+
import { Account as z } from "./molecules/Account/Account.js";
|
|
21
|
+
import { Avatar as E } from "./molecules/Avatar/Avatar.js";
|
|
22
|
+
import { Chip as K } from "./molecules/Chip/Chip.js";
|
|
23
|
+
import { ToggleView as W } from "./molecules/ToggleView/ToggleView.js";
|
|
24
|
+
import { StatefulButton as Y } from "./molecules/StatefulButton/StatefulButton.js";
|
|
25
|
+
import { AnimatedCheckMark as _ } from "./molecules/StatefulButton/AnimatedCheckmark.js";
|
|
26
|
+
import { AddToCart as oo } from "./molecules/AddToCart/AddToCart.js";
|
|
27
|
+
import { Availability as to } from "./molecules/Availability/Availability.js";
|
|
28
|
+
import { BannerCard as po } from "./molecules/BannerCard/BannerCard.js";
|
|
29
|
+
import { MainNav as fo } from "./organisms/MainNav/MainNav.js";
|
|
30
|
+
import { ChipSelector as ao } from "./organisms/ChipSelector/ChipSelector.js";
|
|
31
|
+
import { Product as io } from "./organisms/Product/Product.js";
|
|
32
|
+
import { NotFound as lo } from "./organisms/NotFound/NotFound.js";
|
|
33
|
+
import { Carousel as Co } from "./organisms/Carousel/Carousel.js";
|
|
34
|
+
import { Footer as ko } from "./organisms/Footer/Footer.js";
|
|
34
35
|
export {
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
36
|
+
z as Account,
|
|
37
|
+
oo as AddToCart,
|
|
38
|
+
_ as AnimatedCheckMark,
|
|
39
|
+
to as Availability,
|
|
40
|
+
E as Avatar,
|
|
41
|
+
po as BannerCard,
|
|
41
42
|
t as Button,
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
Co as Carousel,
|
|
44
|
+
K as Chip,
|
|
45
|
+
ao as ChipSelector,
|
|
46
|
+
f as Column,
|
|
46
47
|
p as Flex,
|
|
47
|
-
|
|
48
|
-
|
|
48
|
+
ko as Footer,
|
|
49
|
+
x as Grid,
|
|
49
50
|
n as Head,
|
|
50
51
|
u as Icon,
|
|
51
52
|
B as Input,
|
|
52
53
|
v as Link,
|
|
53
54
|
N as LinkButton,
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
55
|
+
b as Logo,
|
|
56
|
+
fo as MainNav,
|
|
57
|
+
lo as NotFound,
|
|
58
|
+
R as Pricing,
|
|
59
|
+
io as Product,
|
|
60
|
+
O as QuantityInput,
|
|
60
61
|
c as Root,
|
|
61
|
-
|
|
62
|
+
G as SearchBox,
|
|
62
63
|
C as Separator,
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
64
|
+
Y as StatefulButton,
|
|
65
|
+
k as Text,
|
|
66
|
+
W as ToggleView,
|
|
67
|
+
j as Tooltip,
|
|
68
|
+
M as configureImage,
|
|
69
|
+
T as configureLink,
|
|
70
|
+
L as linkClassName,
|
|
71
|
+
s as routerOverride
|
|
70
72
|
};
|
package/dist/main-server.d.ts
CHANGED
|
@@ -19,6 +19,8 @@ export { linkClassName } from './atoms/Link/linkClassName';
|
|
|
19
19
|
export { configureLink, routerOverride } from './atoms/Link/configureLink';
|
|
20
20
|
export { LinkButton } from './atoms/LinkButton/LinkButton';
|
|
21
21
|
export type { LinkButtonProps } from './atoms/LinkButton/LinkButton';
|
|
22
|
+
export { configureImage } from './atoms/Image/configureImage';
|
|
23
|
+
export type { ImageProps, ImageImplementation } from './atoms/Image/Image';
|
|
22
24
|
export { Logo } from './molecules/Logo/Logo';
|
|
23
25
|
export type { LogoProps } from './molecules/Logo/Logo';
|
|
24
26
|
export { SearchBox } from './molecules/SearchBox/SearchBox';
|
package/dist/main-server.js
CHANGED
|
@@ -1,37 +1,39 @@
|
|
|
1
|
-
import { Button as
|
|
2
|
-
import { Flex as
|
|
3
|
-
import { Column as
|
|
1
|
+
import { Button as e } from "./atoms/Button/Button.js";
|
|
2
|
+
import { Flex as m } from "./atoms/Flex/Flex.js";
|
|
3
|
+
import { Column as x, Grid as f } from "./atoms/Grid/Grid.js";
|
|
4
4
|
import { Head as i } from "./atoms/Root/Head.js";
|
|
5
5
|
import { Icon as a } from "./atoms/Icon/Icon.js";
|
|
6
|
-
import { Root as
|
|
7
|
-
import { Separator as
|
|
8
|
-
import { Text as
|
|
9
|
-
import { Input as
|
|
6
|
+
import { Root as g } from "./atoms/Root/Root.js";
|
|
7
|
+
import { Separator as l } from "./atoms/Separator/Separator.js";
|
|
8
|
+
import { Text as L } from "./atoms/Text/Text.js";
|
|
9
|
+
import { Input as B } from "./atoms/Input/Input.js";
|
|
10
10
|
import { Link as C } from "./atoms/Link/Link.js";
|
|
11
11
|
import { linkClassName as h } from "./atoms/Link/linkClassName.js";
|
|
12
12
|
import { configureLink as y, routerOverride as F } from "./atoms/Link/configureLink.js";
|
|
13
13
|
import { LinkButton as H } from "./atoms/LinkButton/LinkButton.js";
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
14
|
+
import { configureImage as O } from "./atoms/Image/configureImage.js";
|
|
15
|
+
import { Logo as Q } from "./molecules/Logo/Logo.js";
|
|
16
|
+
import { SearchBox as T } from "./molecules/SearchBox/SearchBox.js";
|
|
17
|
+
import { QuantityInput as j } from "./molecules/QuantityInput/QuantityInput.js";
|
|
18
|
+
import { Pricing as w } from "./molecules/Pricing/Pricing.js";
|
|
18
19
|
export {
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
e as Button,
|
|
21
|
+
x as Column,
|
|
22
|
+
m as Flex,
|
|
22
23
|
f as Grid,
|
|
23
24
|
i as Head,
|
|
24
25
|
a as Icon,
|
|
25
|
-
|
|
26
|
+
B as Input,
|
|
26
27
|
C as Link,
|
|
27
28
|
H as LinkButton,
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
29
|
+
Q as Logo,
|
|
30
|
+
w as Pricing,
|
|
31
|
+
j as QuantityInput,
|
|
32
|
+
g as Root,
|
|
33
|
+
T as SearchBox,
|
|
34
|
+
l as Separator,
|
|
35
|
+
L as Text,
|
|
36
|
+
O as configureImage,
|
|
35
37
|
y as configureLink,
|
|
36
38
|
h as linkClassName,
|
|
37
39
|
F as routerOverride
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
export interface NotFoundProps extends UsesImageImplementation {
|
|
1
|
+
export interface NotFoundProps {
|
|
3
2
|
primaryLinkButtonProps: {
|
|
4
3
|
label: string;
|
|
5
4
|
href: string;
|
|
@@ -9,4 +8,4 @@ export interface NotFoundProps extends UsesImageImplementation {
|
|
|
9
8
|
href: string;
|
|
10
9
|
};
|
|
11
10
|
}
|
|
12
|
-
export declare function NotFound({ primaryLinkButtonProps, secondaryLinkButtonProps,
|
|
11
|
+
export declare function NotFound({ primaryLinkButtonProps, secondaryLinkButtonProps, }: NotFoundProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,39 +1,37 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { Image as
|
|
3
|
-
import { Text as
|
|
4
|
-
import { LinkButton as
|
|
5
|
-
import { Flex as
|
|
6
|
-
import { c as
|
|
7
|
-
import '../../assets/NotFound.css';const
|
|
8
|
-
main:
|
|
9
|
-
column:
|
|
10
|
-
description:
|
|
11
|
-
header:
|
|
12
|
-
links:
|
|
1
|
+
import { jsxs as s, jsx as A } from "react/jsx-runtime";
|
|
2
|
+
import { Image as l } from "../../atoms/Image/Image.js";
|
|
3
|
+
import { Text as n } from "../../atoms/Text/Text.js";
|
|
4
|
+
import { LinkButton as i } from "../../atoms/LinkButton/LinkButton.js";
|
|
5
|
+
import { Flex as t } from "../../atoms/Flex/Flex.js";
|
|
6
|
+
import { c as e } from "../../clsx-OuTLNxxd.js";
|
|
7
|
+
import '../../assets/NotFound.css';const d = "data:image/png;base64,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", a = "_main_1dfh4_1", h = "_column_1dfh4_10", c = "_description_1dfh4_14", b = "_header_1dfh4_19", p = "_links_1dfh4_24", r = {
|
|
8
|
+
main: a,
|
|
9
|
+
column: h,
|
|
10
|
+
description: c,
|
|
11
|
+
header: b,
|
|
12
|
+
links: p
|
|
13
13
|
};
|
|
14
|
-
function
|
|
14
|
+
function y({
|
|
15
15
|
primaryLinkButtonProps: o,
|
|
16
|
-
secondaryLinkButtonProps:
|
|
17
|
-
imageImplementation: f,
|
|
18
|
-
imageImplementationProps: l
|
|
16
|
+
secondaryLinkButtonProps: f
|
|
19
17
|
}) {
|
|
20
|
-
return /* @__PURE__ */
|
|
21
|
-
/* @__PURE__ */ A("div", { className:
|
|
22
|
-
/* @__PURE__ */
|
|
23
|
-
/* @__PURE__ */ A(
|
|
24
|
-
/* @__PURE__ */
|
|
18
|
+
return /* @__PURE__ */ s(t, { flexDirection: "row", alignItems: "center", justifyContent: "center", className: r.main, children: [
|
|
19
|
+
/* @__PURE__ */ A("div", { className: r.column, children: /* @__PURE__ */ A(l, { src: d, alt: "Not found image" }) }),
|
|
20
|
+
/* @__PURE__ */ s("div", { className: e(r.description, r.column), children: [
|
|
21
|
+
/* @__PURE__ */ A(n, { size: "6xl", variant: "display", as: "h1", className: r.header, children: "404" }),
|
|
22
|
+
/* @__PURE__ */ s(n, { size: "xl", children: [
|
|
25
23
|
"Oops! Well this is embarrassing...",
|
|
26
24
|
/* @__PURE__ */ A("br", {}),
|
|
27
25
|
"what you're looking for is missing or something is on the fritz."
|
|
28
26
|
] }),
|
|
29
|
-
/* @__PURE__ */ A(
|
|
30
|
-
/* @__PURE__ */
|
|
31
|
-
/* @__PURE__ */ A(
|
|
32
|
-
/* @__PURE__ */ A(
|
|
27
|
+
/* @__PURE__ */ A(n, { size: "xl", children: "Don't worry—for assistance call us at 1-800-421-0271" }),
|
|
28
|
+
/* @__PURE__ */ s("div", { className: r.links, children: [
|
|
29
|
+
/* @__PURE__ */ A(i, { variant: "primary", size: "md", href: o.href, children: o.label }),
|
|
30
|
+
/* @__PURE__ */ A(i, { variant: "secondary", size: "md", href: f.href, children: f.label })
|
|
33
31
|
] })
|
|
34
32
|
] })
|
|
35
33
|
] });
|
|
36
34
|
}
|
|
37
35
|
export {
|
|
38
|
-
|
|
36
|
+
y as NotFound
|
|
39
37
|
};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { UsesImageImplementation } from '../../atoms/Image/Image';
|
|
2
1
|
import { AvailabilityProps } from '../../molecules/Availability/Availability';
|
|
3
2
|
export type ProductView = "Card" | "Tile";
|
|
4
|
-
export interface ProductProps extends AvailabilityProps
|
|
3
|
+
export interface ProductProps extends AvailabilityProps {
|
|
5
4
|
productView: ProductView;
|
|
6
5
|
productDescription: string;
|
|
7
6
|
availDescription: string;
|
|
@@ -19,4 +18,4 @@ export interface ProductProps extends AvailabilityProps, UsesImageImplementation
|
|
|
19
18
|
onAddToCart: (_itemKey: number, _quantity: number) => void;
|
|
20
19
|
onClose?: (_itemKey: number) => void;
|
|
21
20
|
}
|
|
22
|
-
export declare function Product({ productView, itemKey, partNumber, productDescription, availDescription, availId, contactHref, contactLinkBehavior, productHref, priceLabel, price, imgSrc,
|
|
21
|
+
export declare function Product({ productView, itemKey, partNumber, productDescription, availDescription, availId, contactHref, contactLinkBehavior, productHref, priceLabel, price, imgSrc, attributes, className, onAddToCart, onClose, ...otherProps }: ProductProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,133 +1,131 @@
|
|
|
1
|
-
import { jsxs as a, jsx as
|
|
2
|
-
import { Image as
|
|
3
|
-
import { Link as
|
|
4
|
-
import { Text as
|
|
1
|
+
import { jsxs as a, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import { Image as T } from "../../atoms/Image/Image.js";
|
|
3
|
+
import { Link as g } from "../../atoms/Link/Link.js";
|
|
4
|
+
import { Text as e } from "../../atoms/Text/Text.js";
|
|
5
5
|
import { Availability as w } from "../../molecules/Availability/Availability.js";
|
|
6
|
-
import { Pricing as
|
|
7
|
-
import { AddToCart as
|
|
8
|
-
import { Icon as
|
|
9
|
-
import { c as
|
|
10
|
-
import '../../assets/Product.css';const
|
|
11
|
-
productCard:
|
|
12
|
-
productInformation:
|
|
13
|
-
purchaseInformation:
|
|
14
|
-
addToCart:
|
|
15
|
-
addToCartButton:
|
|
16
|
-
partNumber:
|
|
17
|
-
partNumberLabel:
|
|
18
|
-
productTile:
|
|
19
|
-
topRow:
|
|
20
|
-
productData:
|
|
21
|
-
purchase:
|
|
22
|
-
attributeContainer:
|
|
6
|
+
import { Pricing as v } from "../../molecules/Pricing/Pricing.js";
|
|
7
|
+
import { AddToCart as x } from "../../molecules/AddToCart/AddToCart.js";
|
|
8
|
+
import { Icon as L } from "../../atoms/Icon/Icon.js";
|
|
9
|
+
import { c as I } from "../../clsx-OuTLNxxd.js";
|
|
10
|
+
import '../../assets/Product.css';const P = "_productCard_10edn_1", R = "_productInformation_10edn_22", $ = "_purchaseInformation_10edn_29", A = "_addToCart_10edn_37", D = "_addToCartButton_10edn_40", j = "_partNumber_10edn_48", k = "_partNumberLabel_10edn_55", y = "_productTile_10edn_59", q = "_topRow_10edn_80", E = "_productData_10edn_111", F = "_purchase_10edn_29", G = "_attributeContainer_10edn_148", r = {
|
|
11
|
+
productCard: P,
|
|
12
|
+
productInformation: R,
|
|
13
|
+
purchaseInformation: $,
|
|
14
|
+
addToCart: A,
|
|
15
|
+
addToCartButton: D,
|
|
16
|
+
partNumber: j,
|
|
17
|
+
partNumberLabel: k,
|
|
18
|
+
productTile: y,
|
|
19
|
+
topRow: q,
|
|
20
|
+
productData: E,
|
|
21
|
+
purchase: F,
|
|
22
|
+
attributeContainer: G
|
|
23
23
|
};
|
|
24
|
-
function
|
|
25
|
-
productView:
|
|
24
|
+
function Z({
|
|
25
|
+
productView: z,
|
|
26
26
|
itemKey: s,
|
|
27
|
-
partNumber:
|
|
27
|
+
partNumber: o,
|
|
28
28
|
productDescription: l,
|
|
29
29
|
availDescription: m,
|
|
30
30
|
availId: d,
|
|
31
31
|
contactHref: u,
|
|
32
|
-
contactLinkBehavior:
|
|
33
|
-
productHref:
|
|
32
|
+
contactLinkBehavior: h,
|
|
33
|
+
productHref: p,
|
|
34
34
|
priceLabel: _,
|
|
35
35
|
price: n,
|
|
36
36
|
imgSrc: N,
|
|
37
|
-
imageImplementation: b,
|
|
38
|
-
imageImplementationProps: f,
|
|
39
37
|
attributes: c,
|
|
40
|
-
className:
|
|
41
|
-
onAddToCart:
|
|
42
|
-
onClose:
|
|
43
|
-
...
|
|
38
|
+
className: b,
|
|
39
|
+
onAddToCart: f,
|
|
40
|
+
onClose: C,
|
|
41
|
+
...B
|
|
44
42
|
}) {
|
|
45
|
-
return
|
|
46
|
-
/* @__PURE__ */
|
|
47
|
-
|
|
43
|
+
return z === "Card" ? /* @__PURE__ */ a("div", { className: I(r.productCard, b), children: [
|
|
44
|
+
/* @__PURE__ */ t(
|
|
45
|
+
T,
|
|
48
46
|
{
|
|
49
47
|
src: N,
|
|
50
|
-
alt: `${
|
|
51
|
-
|
|
52
|
-
|
|
48
|
+
alt: `${o} product image`,
|
|
49
|
+
height: 116,
|
|
50
|
+
width: 116
|
|
53
51
|
}
|
|
54
52
|
),
|
|
55
|
-
/* @__PURE__ */ a("div", { className:
|
|
56
|
-
/* @__PURE__ */
|
|
57
|
-
/* @__PURE__ */ a("div", { className:
|
|
58
|
-
/* @__PURE__ */
|
|
59
|
-
/* @__PURE__ */
|
|
53
|
+
/* @__PURE__ */ a("div", { className: r.productInformation, children: [
|
|
54
|
+
/* @__PURE__ */ t(g, { href: p, children: l }),
|
|
55
|
+
/* @__PURE__ */ a("div", { className: r.partNumber, children: [
|
|
56
|
+
/* @__PURE__ */ t(e, { size: "sm", className: r.partNumberLabel, children: "Part #" }),
|
|
57
|
+
/* @__PURE__ */ t(e, { size: "sm", weight: "semibold", children: o })
|
|
60
58
|
] })
|
|
61
59
|
] }),
|
|
62
|
-
/* @__PURE__ */ a("div", { className:
|
|
63
|
-
d && /* @__PURE__ */
|
|
60
|
+
/* @__PURE__ */ a("div", { className: r.purchaseInformation, children: [
|
|
61
|
+
d && /* @__PURE__ */ t(
|
|
64
62
|
w,
|
|
65
63
|
{
|
|
66
64
|
availId: d,
|
|
67
65
|
availDescription: m,
|
|
68
66
|
contactHref: u,
|
|
69
|
-
contactLinkBehavior:
|
|
67
|
+
contactLinkBehavior: h
|
|
70
68
|
}
|
|
71
69
|
),
|
|
72
|
-
n && /* @__PURE__ */
|
|
70
|
+
n && /* @__PURE__ */ t(v, { pricingLabel: _, price: n })
|
|
73
71
|
] }),
|
|
74
|
-
/* @__PURE__ */
|
|
75
|
-
|
|
72
|
+
/* @__PURE__ */ t(
|
|
73
|
+
x,
|
|
76
74
|
{
|
|
77
75
|
itemKey: s,
|
|
78
|
-
onAdd:
|
|
79
|
-
className:
|
|
80
|
-
addButtonClassName:
|
|
76
|
+
onAdd: f,
|
|
77
|
+
className: r.addToCart,
|
|
78
|
+
addButtonClassName: r.addToCartButton,
|
|
81
79
|
size: "md",
|
|
82
80
|
buttonDoneText: ""
|
|
83
81
|
}
|
|
84
82
|
)
|
|
85
|
-
] }) : /* @__PURE__ */ a("div", { className:
|
|
86
|
-
/* @__PURE__ */
|
|
87
|
-
|
|
83
|
+
] }) : /* @__PURE__ */ a("div", { className: I(r.productTile, b), ...B, children: [
|
|
84
|
+
/* @__PURE__ */ t(
|
|
85
|
+
T,
|
|
88
86
|
{
|
|
89
87
|
src: N,
|
|
90
|
-
alt: `${
|
|
91
|
-
|
|
92
|
-
|
|
88
|
+
alt: `${o} product image`,
|
|
89
|
+
height: 108,
|
|
90
|
+
width: 108
|
|
93
91
|
}
|
|
94
92
|
),
|
|
95
|
-
/* @__PURE__ */ a("div", { className:
|
|
96
|
-
/* @__PURE__ */ a("div", { className:
|
|
97
|
-
/* @__PURE__ */ a("div", { className:
|
|
98
|
-
/* @__PURE__ */
|
|
99
|
-
/* @__PURE__ */ a("div", { className:
|
|
100
|
-
/* @__PURE__ */
|
|
101
|
-
/* @__PURE__ */
|
|
93
|
+
/* @__PURE__ */ a("div", { className: r.productData, children: [
|
|
94
|
+
/* @__PURE__ */ a("div", { className: r.topRow, children: [
|
|
95
|
+
/* @__PURE__ */ a("div", { className: r.productInformation, children: [
|
|
96
|
+
/* @__PURE__ */ t(g, { href: p, children: l }),
|
|
97
|
+
/* @__PURE__ */ a("div", { className: r.partNumber, children: [
|
|
98
|
+
/* @__PURE__ */ t(e, { size: "sm", className: r.partNumberLabel, children: "Part #" }),
|
|
99
|
+
/* @__PURE__ */ t(e, { size: "sm", weight: "semibold", children: o })
|
|
102
100
|
] })
|
|
103
101
|
] }),
|
|
104
|
-
|
|
102
|
+
C && /* @__PURE__ */ t("button", { onClick: () => C(s), children: /* @__PURE__ */ t(L, { size: "sm", iconKey: "fa-light fa-xmark" }) })
|
|
105
103
|
] }),
|
|
106
|
-
/* @__PURE__ */ a("div", { className:
|
|
107
|
-
/* @__PURE__ */ a("div", { className:
|
|
108
|
-
d && /* @__PURE__ */
|
|
104
|
+
/* @__PURE__ */ a("div", { className: r.purchase, children: [
|
|
105
|
+
/* @__PURE__ */ a("div", { className: r.purchaseInformation, children: [
|
|
106
|
+
d && /* @__PURE__ */ t(
|
|
109
107
|
w,
|
|
110
108
|
{
|
|
111
109
|
availId: d,
|
|
112
110
|
availDescription: m,
|
|
113
111
|
contactHref: u,
|
|
114
|
-
contactLinkBehavior:
|
|
112
|
+
contactLinkBehavior: h
|
|
115
113
|
}
|
|
116
114
|
),
|
|
117
|
-
n && /* @__PURE__ */
|
|
115
|
+
n && /* @__PURE__ */ t(v, { pricingLabel: _, price: n })
|
|
118
116
|
] }),
|
|
119
|
-
/* @__PURE__ */
|
|
117
|
+
/* @__PURE__ */ t(x, { itemKey: s, onAdd: f, className: r.addToCart, addButtonClassName: r.addToCartButton })
|
|
120
118
|
] }),
|
|
121
|
-
c && c.length > 0 && /* @__PURE__ */
|
|
122
|
-
/* @__PURE__ */ a(
|
|
119
|
+
c && c.length > 0 && /* @__PURE__ */ t("ul", { className: r.attributeContainer, children: c.map((i) => /* @__PURE__ */ a("li", { children: [
|
|
120
|
+
/* @__PURE__ */ a(e, { size: "xs", weight: "light", children: [
|
|
123
121
|
i.label,
|
|
124
122
|
":"
|
|
125
123
|
] }),
|
|
126
|
-
/* @__PURE__ */
|
|
124
|
+
/* @__PURE__ */ t(e, { size: "xs", weight: "semibold", children: i.value })
|
|
127
125
|
] }, `${i.label}.${i.value}`)) })
|
|
128
126
|
] })
|
|
129
127
|
] });
|
|
130
128
|
}
|
|
131
129
|
export {
|
|
132
|
-
|
|
130
|
+
Z as Product
|
|
133
131
|
};
|