@zenpatient-org/healthspan-marketing-ui 0.1.75 → 0.1.76
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/healthspan-marketing-ui.css +1 -1
- package/dist/modules/ContentHighlight/ContentHighlight.cjs.js +1 -0
- package/dist/modules/ContentHighlight/ContentHighlight.d.ts +14 -0
- package/dist/modules/ContentHighlight/ContentHighlight.es.js +36 -0
- package/dist/modules/ContentHighlight/contentHighlight.module.css.cjs.js +1 -0
- package/dist/modules/ContentHighlight/contentHighlight.module.css.es.js +25 -0
- package/dist/modules/ContentHighlight/index.d.ts +1 -0
- package/dist/modules/TextTwoImages/TextTwoImages.cjs.js +1 -0
- package/dist/modules/TextTwoImages/TextTwoImages.d.ts +11 -0
- package/dist/modules/TextTwoImages/TextTwoImages.es.js +18 -0
- package/dist/modules/TextTwoImages/index.d.ts +1 -0
- package/dist/modules/TextTwoImages/textTwoImages.module.css.cjs.js +1 -0
- package/dist/modules/TextTwoImages/textTwoImages.module.css.es.js +25 -0
- package/dist/modules/ThreeCardsWithHero/ThreeCardsWithHero.cjs.js +1 -0
- package/dist/modules/ThreeCardsWithHero/ThreeCardsWithHero.d.ts +12 -0
- package/dist/modules/ThreeCardsWithHero/ThreeCardsWithHero.es.js +31 -0
- package/dist/modules/ThreeCardsWithHero/components/TransparentCard/TransparentCard.cjs.js +1 -0
- package/dist/modules/ThreeCardsWithHero/components/TransparentCard/TransparentCard.d.ts +7 -0
- package/dist/modules/ThreeCardsWithHero/components/TransparentCard/TransparentCard.es.js +13 -0
- package/dist/modules/ThreeCardsWithHero/components/TransparentCard/index.d.ts +1 -0
- package/dist/modules/ThreeCardsWithHero/components/TransparentCard/transparentCard.module.css.cjs.js +1 -0
- package/dist/modules/ThreeCardsWithHero/components/TransparentCard/transparentCard.module.css.es.js +15 -0
- package/dist/modules/ThreeCardsWithHero/intex.d.ts +1 -0
- package/dist/modules/ThreeCardsWithHero/threeCardsWithHero.module.css.cjs.js +1 -0
- package/dist/modules/ThreeCardsWithHero/threeCardsWithHero.module.css.es.js +23 -0
- package/package.json +16 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),a=require("../../components/Typography/Typography.cjs.js"),t=require("./contentHighlight.module.css.cjs.js"),r=require("../../components/HighlightedTitle/HighlightedTitle.cjs.js"),n=require("../../components/Button/Button.cjs.js"),d=({label:l,title:s,content:i})=>e.jsx("section",{className:t.default.root,children:e.jsxs("div",{className:t.default.container,children:[e.jsx("div",{className:t.default.topContainer,children:e.jsx(r.HighlightedTitle,{title:s,label:l,as:"div",defaultVariant:"displayMd",className:t.default.title})}),e.jsxs("div",{className:t.default.card,children:[e.jsx("img",{src:i.image,alt:i.title,className:t.default.image}),e.jsxs("div",{className:t.default.content,children:[e.jsx(a.Typography,{defaultVariant:"headingLg",mobileVariant:"headingSm",className:t.default.contentTitle,children:i.title}),e.jsx(a.Typography,{defaultVariant:"bodySm",mobileVariant:"bodySm",className:t.default.description,children:i.description}),e.jsx("div",{className:t.default.button,children:e.jsx(n.Button,{as:"a",href:i.link,target:"_blank",rel:"noopener noreferrer",size:"sm",children:i.buttonLabel})})]})]})]})});exports.ContentHighlight=d;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
export type ContentHighlightProps = {
|
|
4
|
+
label?: string;
|
|
5
|
+
title: React.ReactNode;
|
|
6
|
+
content: {
|
|
7
|
+
title: string;
|
|
8
|
+
description: string;
|
|
9
|
+
image: string;
|
|
10
|
+
buttonLabel: string;
|
|
11
|
+
link: string;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
export declare const ContentHighlight: ({ label, title, content }: ContentHighlightProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { jsx as e, jsxs as r } from "react/jsx-runtime";
|
|
2
|
+
import { Typography as t } from "../../components/Typography/Typography.es.js";
|
|
3
|
+
import i from "./contentHighlight.module.css.es.js";
|
|
4
|
+
import { HighlightedTitle as m } from "../../components/HighlightedTitle/HighlightedTitle.es.js";
|
|
5
|
+
import { Button as n } from "../../components/Button/Button.es.js";
|
|
6
|
+
const g = ({ label: l, title: s, content: a }) => /* @__PURE__ */ e("section", { className: i.root, children: /* @__PURE__ */ r("div", { className: i.container, children: [
|
|
7
|
+
/* @__PURE__ */ e("div", { className: i.topContainer, children: /* @__PURE__ */ e(
|
|
8
|
+
m,
|
|
9
|
+
{
|
|
10
|
+
title: s,
|
|
11
|
+
label: l,
|
|
12
|
+
as: "div",
|
|
13
|
+
defaultVariant: "displayMd",
|
|
14
|
+
className: i.title
|
|
15
|
+
}
|
|
16
|
+
) }),
|
|
17
|
+
/* @__PURE__ */ r("div", { className: i.card, children: [
|
|
18
|
+
/* @__PURE__ */ e("img", { src: a.image, alt: a.title, className: i.image }),
|
|
19
|
+
/* @__PURE__ */ r("div", { className: i.content, children: [
|
|
20
|
+
/* @__PURE__ */ e(
|
|
21
|
+
t,
|
|
22
|
+
{
|
|
23
|
+
defaultVariant: "headingLg",
|
|
24
|
+
mobileVariant: "headingSm",
|
|
25
|
+
className: i.contentTitle,
|
|
26
|
+
children: a.title
|
|
27
|
+
}
|
|
28
|
+
),
|
|
29
|
+
/* @__PURE__ */ e(t, { defaultVariant: "bodySm", mobileVariant: "bodySm", className: i.description, children: a.description }),
|
|
30
|
+
/* @__PURE__ */ e("div", { className: i.button, children: /* @__PURE__ */ e(n, { as: "a", href: a.link, target: "_blank", rel: "noopener noreferrer", size: "sm", children: a.buttonLabel }) })
|
|
31
|
+
] })
|
|
32
|
+
] })
|
|
33
|
+
] }) });
|
|
34
|
+
export {
|
|
35
|
+
g as ContentHighlight
|
|
36
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const t="contentHighlight-module__root___ZQQyH",n="contentHighlight-module__container___5zJBm",o="contentHighlight-module__topContainer___48PT2",e="contentHighlight-module__title___1xyYU",i="contentHighlight-module__card___JCJ0i",_="contentHighlight-module__image___5a40m",c="contentHighlight-module__content___Ea26d",l="contentHighlight-module__button___VB7Nd",g="contentHighlight-module__description___nt9X3",r="contentHighlight-module__contentTitle___l-v1Y",d={root:t,container:n,topContainer:o,title:e,card:i,image:_,content:c,button:l,description:g,contentTitle:r};exports.button=l;exports.card=i;exports.container=n;exports.content=c;exports.contentTitle=r;exports.default=d;exports.description=g;exports.image=_;exports.root=t;exports.title=e;exports.topContainer=o;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
const t = "contentHighlight-module__root___ZQQyH", n = "contentHighlight-module__container___5zJBm", o = "contentHighlight-module__topContainer___48PT2", _ = "contentHighlight-module__title___1xyYU", e = "contentHighlight-module__card___JCJ0i", i = "contentHighlight-module__image___5a40m", c = "contentHighlight-module__content___Ea26d", l = "contentHighlight-module__button___VB7Nd", g = "contentHighlight-module__description___nt9X3", h = "contentHighlight-module__contentTitle___l-v1Y", d = {
|
|
2
|
+
root: t,
|
|
3
|
+
container: n,
|
|
4
|
+
topContainer: o,
|
|
5
|
+
title: _,
|
|
6
|
+
card: e,
|
|
7
|
+
image: i,
|
|
8
|
+
content: c,
|
|
9
|
+
button: l,
|
|
10
|
+
description: g,
|
|
11
|
+
contentTitle: h
|
|
12
|
+
};
|
|
13
|
+
export {
|
|
14
|
+
l as button,
|
|
15
|
+
e as card,
|
|
16
|
+
n as container,
|
|
17
|
+
c as content,
|
|
18
|
+
h as contentTitle,
|
|
19
|
+
d as default,
|
|
20
|
+
g as description,
|
|
21
|
+
i as image,
|
|
22
|
+
t as root,
|
|
23
|
+
_ as title,
|
|
24
|
+
o as topContainer
|
|
25
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ContentHighlight } from './ContentHighlight';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),l=require("../../components/Typography/Typography.cjs.js"),s=require("../../utils/cn/cn.cjs.js"),a=require("./textTwoImages.module.css.cjs.js"),n=({label:r,title:t,bigImage:i,smallImage:d,subscribe:c})=>e.jsx("div",{className:a.default.root,children:e.jsxs("div",{className:a.default.container,children:[e.jsxs("div",{className:a.default.leftBlock,children:[e.jsx(l.Typography,{defaultVariant:"labelMd",mobileVariant:"labelMd",emphasis:!0,children:t}),e.jsx(l.Typography,{defaultVariant:"displayXs",mobileVariant:"headingLg",className:a.default.label,children:r}),e.jsx(l.Typography,{as:"p",defaultVariant:"labelLg",className:a.default.subscribe,children:c})]}),e.jsx("div",{className:a.default.rightBlock,children:e.jsxs("div",{className:a.default.galleryImageOverlay,children:[e.jsx("div",{className:s.cn(a.default.galleryItem,a.default.galleryImageBig),children:e.jsx("img",{src:i,alt:"big"})}),e.jsx("div",{className:s.cn(a.default.galleryItem,a.default.galleryImageSmall),children:e.jsx("img",{src:d,alt:"small"})})]})})]})});exports.TextTwoImages=n;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
interface TextTwoImagesProps {
|
|
4
|
+
title: string;
|
|
5
|
+
label?: string;
|
|
6
|
+
subscribe?: React.ReactNode;
|
|
7
|
+
bigImage: string;
|
|
8
|
+
smallImage: string;
|
|
9
|
+
}
|
|
10
|
+
export declare const TextTwoImages: ({ label, title, bigImage, smallImage, subscribe }: TextTwoImagesProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { jsx as l, jsxs as e } from "react/jsx-runtime";
|
|
2
|
+
import { Typography as i } from "../../components/Typography/Typography.es.js";
|
|
3
|
+
import { cn as r } from "../../utils/cn/cn.es.js";
|
|
4
|
+
import a from "./textTwoImages.module.css.es.js";
|
|
5
|
+
const p = ({ label: s, title: m, bigImage: c, smallImage: t, subscribe: d }) => /* @__PURE__ */ l("div", { className: a.root, children: /* @__PURE__ */ e("div", { className: a.container, children: [
|
|
6
|
+
/* @__PURE__ */ e("div", { className: a.leftBlock, children: [
|
|
7
|
+
/* @__PURE__ */ l(i, { defaultVariant: "labelMd", mobileVariant: "labelMd", emphasis: !0, children: m }),
|
|
8
|
+
/* @__PURE__ */ l(i, { defaultVariant: "displayXs", mobileVariant: "headingLg", className: a.label, children: s }),
|
|
9
|
+
/* @__PURE__ */ l(i, { as: "p", defaultVariant: "labelLg", className: a.subscribe, children: d })
|
|
10
|
+
] }),
|
|
11
|
+
/* @__PURE__ */ l("div", { className: a.rightBlock, children: /* @__PURE__ */ e("div", { className: a.galleryImageOverlay, children: [
|
|
12
|
+
/* @__PURE__ */ l("div", { className: r(a.galleryItem, a.galleryImageBig), children: /* @__PURE__ */ l("img", { src: c, alt: "big" }) }),
|
|
13
|
+
/* @__PURE__ */ l("div", { className: r(a.galleryItem, a.galleryImageSmall), children: /* @__PURE__ */ l("img", { src: t, alt: "small" }) })
|
|
14
|
+
] }) })
|
|
15
|
+
] }) });
|
|
16
|
+
export {
|
|
17
|
+
p as TextTwoImages
|
|
18
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { TextTwoImages } from './TextTwoImages';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="textTwoImages-module__root___z2HqM",l="textTwoImages-module__container___h7yEM",t="textTwoImages-module__leftBlock___jJmUZ",a="textTwoImages-module__subscribe___gmPpo",o="textTwoImages-module__rightBlock___LbHrw",_="textTwoImages-module__galleryImageOverlay___XhYtJ",g="textTwoImages-module__galleryItem___k3C5F",m="textTwoImages-module__galleryImageBig___4p-1o",r="textTwoImages-module__galleryImageSmall___3FbxE",s="textTwoImages-module__label___lfrhn",c={root:e,container:l,leftBlock:t,subscribe:a,rightBlock:o,galleryImageOverlay:_,galleryItem:g,galleryImageBig:m,galleryImageSmall:r,label:s};exports.container=l;exports.default=c;exports.galleryImageBig=m;exports.galleryImageOverlay=_;exports.galleryImageSmall=r;exports.galleryItem=g;exports.label=s;exports.leftBlock=t;exports.rightBlock=o;exports.root=e;exports.subscribe=a;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
const e = "textTwoImages-module__root___z2HqM", l = "textTwoImages-module__container___h7yEM", t = "textTwoImages-module__leftBlock___jJmUZ", _ = "textTwoImages-module__subscribe___gmPpo", o = "textTwoImages-module__rightBlock___LbHrw", a = "textTwoImages-module__galleryImageOverlay___XhYtJ", g = "textTwoImages-module__galleryItem___k3C5F", m = "textTwoImages-module__galleryImageBig___4p-1o", r = "textTwoImages-module__galleryImageSmall___3FbxE", s = "textTwoImages-module__label___lfrhn", c = {
|
|
2
|
+
root: e,
|
|
3
|
+
container: l,
|
|
4
|
+
leftBlock: t,
|
|
5
|
+
subscribe: _,
|
|
6
|
+
rightBlock: o,
|
|
7
|
+
galleryImageOverlay: a,
|
|
8
|
+
galleryItem: g,
|
|
9
|
+
galleryImageBig: m,
|
|
10
|
+
galleryImageSmall: r,
|
|
11
|
+
label: s
|
|
12
|
+
};
|
|
13
|
+
export {
|
|
14
|
+
l as container,
|
|
15
|
+
c as default,
|
|
16
|
+
m as galleryImageBig,
|
|
17
|
+
a as galleryImageOverlay,
|
|
18
|
+
r as galleryImageSmall,
|
|
19
|
+
g as galleryItem,
|
|
20
|
+
s as label,
|
|
21
|
+
t as leftBlock,
|
|
22
|
+
o as rightBlock,
|
|
23
|
+
e as root,
|
|
24
|
+
_ as subscribe
|
|
25
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),i=require("../../components/Typography/Typography.cjs.js"),n=require("./components/TransparentCard/TransparentCard.cjs.js"),a=require("./threeCardsWithHero.module.css.cjs.js"),o=({label:r,title:t,cards:l})=>e.jsxs("section",{className:a.default.bgWrapper,children:[e.jsx("div",{className:a.default.root,children:e.jsx("div",{className:a.default.topContainer,children:e.jsx("div",{className:a.default.imageContainer,children:e.jsxs("div",{className:a.default.imageTextContainer,children:[r&&e.jsx(i.Typography,{className:a.default.imageLabel,emphasis:!0,defaultVariant:"labelMd",children:r}),e.jsx("div",{className:a.default.imageTitle,children:e.jsx(i.Typography,{className:a.default.imageTitle,as:"p",defaultVariant:"displayXl",mobileVariant:"displayXs",children:t})})]})})})}),e.jsx("div",{className:a.default.bottomContainer,children:e.jsx("div",{className:a.default.root,children:e.jsx("div",{className:a.default.cardsContainer,children:l.slice(0,3).map((s,d)=>e.jsx(n.TransparentCard,{title:s.title,description:s.description,number:d+1},s.title))})})})]});exports.ThreeCardsWithHero=o;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
|
|
3
|
+
export type Card = {
|
|
4
|
+
title: string;
|
|
5
|
+
description: string;
|
|
6
|
+
};
|
|
7
|
+
export type ThreeCardsWithHeroProps = {
|
|
8
|
+
label?: string;
|
|
9
|
+
title: React.ReactNode;
|
|
10
|
+
cards: Array<Card>;
|
|
11
|
+
};
|
|
12
|
+
export declare const ThreeCardsWithHero: ({ label, title, cards }: ThreeCardsWithHeroProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { jsxs as s, jsx as i } from "react/jsx-runtime";
|
|
2
|
+
import { Typography as t } from "../../components/Typography/Typography.es.js";
|
|
3
|
+
import { TransparentCard as o } from "./components/TransparentCard/TransparentCard.es.js";
|
|
4
|
+
import e from "./threeCardsWithHero.module.css.es.js";
|
|
5
|
+
const N = ({ label: r, title: l, cards: n }) => /* @__PURE__ */ s("section", { className: e.bgWrapper, children: [
|
|
6
|
+
/* @__PURE__ */ i("div", { className: e.root, children: /* @__PURE__ */ i("div", { className: e.topContainer, children: /* @__PURE__ */ i("div", { className: e.imageContainer, children: /* @__PURE__ */ s("div", { className: e.imageTextContainer, children: [
|
|
7
|
+
r && /* @__PURE__ */ i(t, { className: e.imageLabel, emphasis: !0, defaultVariant: "labelMd", children: r }),
|
|
8
|
+
/* @__PURE__ */ i("div", { className: e.imageTitle, children: /* @__PURE__ */ i(
|
|
9
|
+
t,
|
|
10
|
+
{
|
|
11
|
+
className: e.imageTitle,
|
|
12
|
+
as: "p",
|
|
13
|
+
defaultVariant: "displayXl",
|
|
14
|
+
mobileVariant: "displayXs",
|
|
15
|
+
children: l
|
|
16
|
+
}
|
|
17
|
+
) })
|
|
18
|
+
] }) }) }) }),
|
|
19
|
+
/* @__PURE__ */ i("div", { className: e.bottomContainer, children: /* @__PURE__ */ i("div", { className: e.root, children: /* @__PURE__ */ i("div", { className: e.cardsContainer, children: n.slice(0, 3).map((a, m) => /* @__PURE__ */ i(
|
|
20
|
+
o,
|
|
21
|
+
{
|
|
22
|
+
title: a.title,
|
|
23
|
+
description: a.description,
|
|
24
|
+
number: m + 1
|
|
25
|
+
},
|
|
26
|
+
a.title
|
|
27
|
+
)) }) }) })
|
|
28
|
+
] });
|
|
29
|
+
export {
|
|
30
|
+
N as ThreeCardsWithHero
|
|
31
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),r=require("../../../../components/Typography/Typography.cjs.js"),a=require("./transparentCard.module.css.cjs.js"),d=({title:t,description:n,number:s})=>e.jsx("div",{className:a.default.root,children:e.jsxs("div",{className:a.default.contentContainer,children:[e.jsxs("div",{className:a.default.topContainer,children:[e.jsx(r.Typography,{defaultVariant:"headingSm",children:t}),e.jsx(r.Typography,{className:a.default.number,defaultVariant:"headingXxs",children:`(0${s})`})]}),e.jsx("div",{className:a.default.bottomContainer,children:e.jsx(r.Typography,{className:a.default.description,defaultVariant:"bodyLg",mobileVariant:"bodyMd",children:n})})]})});exports.TransparentCard=d;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { jsx as e, jsxs as i } from "react/jsx-runtime";
|
|
2
|
+
import { Typography as r } from "../../../../components/Typography/Typography.es.js";
|
|
3
|
+
import a from "./transparentCard.module.css.es.js";
|
|
4
|
+
const c = ({ title: n, description: t, number: o }) => /* @__PURE__ */ e("div", { className: a.root, children: /* @__PURE__ */ i("div", { className: a.contentContainer, children: [
|
|
5
|
+
/* @__PURE__ */ i("div", { className: a.topContainer, children: [
|
|
6
|
+
/* @__PURE__ */ e(r, { defaultVariant: "headingSm", children: n }),
|
|
7
|
+
/* @__PURE__ */ e(r, { className: a.number, defaultVariant: "headingXxs", children: `(0${o})` })
|
|
8
|
+
] }),
|
|
9
|
+
/* @__PURE__ */ e("div", { className: a.bottomContainer, children: /* @__PURE__ */ e(r, { className: a.description, defaultVariant: "bodyLg", mobileVariant: "bodyMd", children: t }) })
|
|
10
|
+
] }) });
|
|
11
|
+
export {
|
|
12
|
+
c as TransparentCard
|
|
13
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { TransparentCard } from './TransparentCard';
|
package/dist/modules/ThreeCardsWithHero/components/TransparentCard/transparentCard.module.css.cjs.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const t="transparentCard-module__root___lPvYM",n="transparentCard-module__number___5vqO-",e="transparentCard-module__contentContainer___w6KM4",o="transparentCard-module__topContainer___SRrvK",r="transparentCard-module__description___66Ugz",a={root:t,number:n,contentContainer:e,topContainer:o,description:r};exports.contentContainer=e;exports.default=a;exports.description=r;exports.number=n;exports.root=t;exports.topContainer=o;
|
package/dist/modules/ThreeCardsWithHero/components/TransparentCard/transparentCard.module.css.es.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
const n = "transparentCard-module__root___lPvYM", t = "transparentCard-module__number___5vqO-", o = "transparentCard-module__contentContainer___w6KM4", r = "transparentCard-module__topContainer___SRrvK", e = "transparentCard-module__description___66Ugz", _ = {
|
|
2
|
+
root: n,
|
|
3
|
+
number: t,
|
|
4
|
+
contentContainer: o,
|
|
5
|
+
topContainer: r,
|
|
6
|
+
description: e
|
|
7
|
+
};
|
|
8
|
+
export {
|
|
9
|
+
o as contentContainer,
|
|
10
|
+
_ as default,
|
|
11
|
+
e as description,
|
|
12
|
+
t as number,
|
|
13
|
+
n as root,
|
|
14
|
+
r as topContainer
|
|
15
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { ThreeCardsWithHero } from './ThreeCardsWithHero';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="threeCardsWithHero-module__bgWrapper___RPwWL",t="threeCardsWithHero-module__root___GUdZT",o="threeCardsWithHero-module__topContainer___YFVTm",r="threeCardsWithHero-module__imageContainer___UUGDW",a="threeCardsWithHero-module__bottomContainer___Qx2a-",i="threeCardsWithHero-module__cardsContainer___3H19i",n="threeCardsWithHero-module__imageTextContainer___vYcF7",_="threeCardsWithHero-module__imageLabel___mbWfD",m="threeCardsWithHero-module__imageTitle___0bhY-",s={bgWrapper:e,root:t,topContainer:o,imageContainer:r,bottomContainer:a,cardsContainer:i,imageTextContainer:n,imageLabel:_,imageTitle:m};exports.bgWrapper=e;exports.bottomContainer=a;exports.cardsContainer=i;exports.default=s;exports.imageContainer=r;exports.imageLabel=_;exports.imageTextContainer=n;exports.imageTitle=m;exports.root=t;exports.topContainer=o;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
const e = "threeCardsWithHero-module__bgWrapper___RPwWL", t = "threeCardsWithHero-module__root___GUdZT", o = "threeCardsWithHero-module__topContainer___YFVTm", r = "threeCardsWithHero-module__imageContainer___UUGDW", a = "threeCardsWithHero-module__bottomContainer___Qx2a-", _ = "threeCardsWithHero-module__cardsContainer___3H19i", i = "threeCardsWithHero-module__imageTextContainer___vYcF7", n = "threeCardsWithHero-module__imageLabel___mbWfD", m = "threeCardsWithHero-module__imageTitle___0bhY-", s = {
|
|
2
|
+
bgWrapper: e,
|
|
3
|
+
root: t,
|
|
4
|
+
topContainer: o,
|
|
5
|
+
imageContainer: r,
|
|
6
|
+
bottomContainer: a,
|
|
7
|
+
cardsContainer: _,
|
|
8
|
+
imageTextContainer: i,
|
|
9
|
+
imageLabel: n,
|
|
10
|
+
imageTitle: m
|
|
11
|
+
};
|
|
12
|
+
export {
|
|
13
|
+
e as bgWrapper,
|
|
14
|
+
a as bottomContainer,
|
|
15
|
+
_ as cardsContainer,
|
|
16
|
+
s as default,
|
|
17
|
+
r as imageContainer,
|
|
18
|
+
n as imageLabel,
|
|
19
|
+
i as imageTextContainer,
|
|
20
|
+
m as imageTitle,
|
|
21
|
+
t as root,
|
|
22
|
+
o as topContainer
|
|
23
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenpatient-org/healthspan-marketing-ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.76",
|
|
4
4
|
"description": "Design system",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -356,6 +356,11 @@
|
|
|
356
356
|
"import": "./dist/modules/OurProcess/OurProcess.es.js",
|
|
357
357
|
"require": "./dist/modules/OurProcess/OurProcess.cjs.js"
|
|
358
358
|
},
|
|
359
|
+
"./ThreeCardsWithHero": {
|
|
360
|
+
"types": "./dist/modules/ThreeCardsWithHero/ThreeCardsWithHero.d.ts",
|
|
361
|
+
"import": "./dist/modules/ThreeCardsWithHero/ThreeCardsWithHero.es.js",
|
|
362
|
+
"require": "./dist/modules/ThreeCardsWithHero/ThreeCardsWithHero.cjs.js"
|
|
363
|
+
},
|
|
359
364
|
"./ProductsDisplay": {
|
|
360
365
|
"types": "./dist/modules/ProductsDisplay/ProductsDisplay.d.ts",
|
|
361
366
|
"import": "./dist/modules/ProductsDisplay/ProductsDisplay.es.js",
|
|
@@ -511,11 +516,21 @@
|
|
|
511
516
|
"import": "./dist/modules/CallToAction/CallToAction.es.js",
|
|
512
517
|
"require": "./dist/modules/CallToAction/CallToAction.cjs.js"
|
|
513
518
|
},
|
|
519
|
+
"./TextTwoImages": {
|
|
520
|
+
"types": "./dist/modules/TextTwoImages/TextTwoImages.d.ts",
|
|
521
|
+
"import": "./dist/modules/TextTwoImages/TextTwoImages.es.js",
|
|
522
|
+
"require": "./dist/modules/TextTwoImages/TextTwoImages.cjs.js"
|
|
523
|
+
},
|
|
514
524
|
"./ProgramsDetailsHero": {
|
|
515
525
|
"types": "./dist/modules/ProgramsDetailsHero/ProgramsDetailsHero.d.ts",
|
|
516
526
|
"import": "./dist/modules/ProgramsDetailsHero/ProgramsDetailsHero.es.js",
|
|
517
527
|
"require": "./dist/modules/ProgramsDetailsHero/ProgramsDetailsHero.cjs.js"
|
|
518
528
|
},
|
|
529
|
+
"./ContentHighlight": {
|
|
530
|
+
"types": "./dist/modules/ContentHighlight/ContentHighlight.d.ts",
|
|
531
|
+
"import": "./dist/modules/ContentHighlight/ContentHighlight.es.js",
|
|
532
|
+
"require": "./dist/modules/ContentHighlight/ContentHighlight.cjs.js"
|
|
533
|
+
},
|
|
519
534
|
"./Bubbles": {
|
|
520
535
|
"types": "./dist/pageComponents/Bubbles/Bubbles.d.ts",
|
|
521
536
|
"import": "./dist/pageComponents/Bubbles/Bubbles.es.js",
|