@caseparts-org/caseblocks 0.0.81 → 0.0.83

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