@zenpatient-org/healthspan-marketing-ui 0.1.60 → 0.1.61

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.
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),t=require("../../components/Typography/Typography.cjs.js"),o=require("./components/Features/Features.cjs.js"),a=require("./programDetails.module.css.cjs.js"),n=({label:r,description:l,image:i,features:s})=>e.jsx("section",{className:a.default.root,children:e.jsxs("div",{className:a.default.container,children:[e.jsxs("div",{className:a.default.header,children:[r&&e.jsx(t.Typography,{as:"p",defaultVariant:"labelMd",mobileVariant:"labelSm",emphasis:!0,children:r}),e.jsx(t.Typography,{as:"p",defaultVariant:"preambleLg",mobileVariant:"preambleSm",children:l})]}),e.jsxs("div",{className:a.default.content,children:[e.jsx("img",{className:a.default.image,src:i,alt:"program detatils"}),s.length>0&&e.jsx(o.Features,{features:s})]})]})});exports.ProgramDetails=n;
@@ -0,0 +1,10 @@
1
+ import { TProgramDetailsFeature } from './types';
2
+
3
+ type ProgramDetailsProps = {
4
+ label?: string;
5
+ description: string;
6
+ image: string;
7
+ features: Array<TProgramDetailsFeature>;
8
+ };
9
+ export declare const ProgramDetails: ({ label, description, image, features }: ProgramDetailsProps) => import("react/jsx-runtime").JSX.Element;
10
+ export {};
@@ -0,0 +1,17 @@
1
+ import { jsx as a, jsxs as r } from "react/jsx-runtime";
2
+ import { Typography as l } from "../../components/Typography/Typography.es.js";
3
+ import { Features as o } from "./components/Features/Features.es.js";
4
+ import e from "./programDetails.module.css.es.js";
5
+ const h = ({ label: i, description: m, image: s, features: t }) => /* @__PURE__ */ a("section", { className: e.root, children: /* @__PURE__ */ r("div", { className: e.container, children: [
6
+ /* @__PURE__ */ r("div", { className: e.header, children: [
7
+ i && /* @__PURE__ */ a(l, { as: "p", defaultVariant: "labelMd", mobileVariant: "labelSm", emphasis: !0, children: i }),
8
+ /* @__PURE__ */ a(l, { as: "p", defaultVariant: "preambleLg", mobileVariant: "preambleSm", children: m })
9
+ ] }),
10
+ /* @__PURE__ */ r("div", { className: e.content, children: [
11
+ /* @__PURE__ */ a("img", { className: e.image, src: s, alt: "program detatils" }),
12
+ t.length > 0 && /* @__PURE__ */ a(o, { features: t })
13
+ ] })
14
+ ] }) });
15
+ export {
16
+ h as ProgramDetails
17
+ };
@@ -0,0 +1 @@
1
+ "use client";"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),u=require("react"),r=require("../../../../utils/cn/cn.cjs.js"),c=require("../../../../components/Typography/Typography.cjs.js"),h=require("../../../../components/IconBracket/IconBracket.cjs.js"),p=require("../../../../components/Label/Label.cjs.js"),a=require("./features.module.css.cjs.js"),m=({features:i})=>{const[l,o]=u.useState(0);return e.jsx("div",{className:a.default.root,children:i.map((s,n)=>e.jsxs("div",{className:a.default.feature,children:[e.jsxs("button",{className:a.default.header,onClick:()=>o(t=>n===t?null:n),children:[e.jsx(c.Typography,{as:"h4",defaultVariant:"headingSm",mobileVariant:"headingSm",weight:"regular",children:s.label}),s.description&&e.jsx(h.IconBracket,{variant:l===n?"close":"plus",size:"sm"})]}),e.jsx("div",{className:r.cn(a.default.content,l===n&&a.default.contentActive),children:e.jsxs("div",{className:r.cn(a.default.contentInner),children:[s.description&&e.jsx(c.Typography,{as:"p",defaultVariant:"bodyXs",weight:"regular",children:s.description}),s.info&&e.jsxs("div",{className:a.default.info,children:[e.jsx(c.Typography,{defaultVariant:"bodyXs",children:s.info.label}),e.jsx("div",{className:a.default.labels,children:s.info.labels.map((t,d)=>e.jsx(p.Label,{color:"black",size:"sm",children:t},`${t}-${d}`))})]})]})})]},`${s.label}-${n}`))})};exports.Features=m;
@@ -0,0 +1,7 @@
1
+ import { TProgramDetailsFeature } from '../../types';
2
+
3
+ type FeaturesProps = {
4
+ features: Array<TProgramDetailsFeature>;
5
+ };
6
+ export declare const Features: ({ features }: FeaturesProps) => import("react/jsx-runtime").JSX.Element;
7
+ export {};
@@ -0,0 +1,34 @@
1
+ "use client";
2
+ import { jsx as i, jsxs as n } from "react/jsx-runtime";
3
+ import { useState as h } from "react";
4
+ import { cn as t } from "../../../../utils/cn/cn.es.js";
5
+ import { Typography as s } from "../../../../components/Typography/Typography.es.js";
6
+ import { IconBracket as p } from "../../../../components/IconBracket/IconBracket.es.js";
7
+ import { Label as b } from "../../../../components/Label/Label.es.js";
8
+ import a from "./features.module.css.es.js";
9
+ const V = ({ features: c }) => {
10
+ const [o, m] = h(0);
11
+ return /* @__PURE__ */ i("div", { className: a.root, children: c.map((e, r) => /* @__PURE__ */ n("div", { className: a.feature, children: [
12
+ /* @__PURE__ */ n(
13
+ "button",
14
+ {
15
+ className: a.header,
16
+ onClick: () => m((l) => r === l ? null : r),
17
+ children: [
18
+ /* @__PURE__ */ i(s, { as: "h4", defaultVariant: "headingSm", mobileVariant: "headingSm", weight: "regular", children: e.label }),
19
+ e.description && /* @__PURE__ */ i(p, { variant: o === r ? "close" : "plus", size: "sm" })
20
+ ]
21
+ }
22
+ ),
23
+ /* @__PURE__ */ i("div", { className: t(a.content, o === r && a.contentActive), children: /* @__PURE__ */ n("div", { className: t(a.contentInner), children: [
24
+ e.description && /* @__PURE__ */ i(s, { as: "p", defaultVariant: "bodyXs", weight: "regular", children: e.description }),
25
+ e.info && /* @__PURE__ */ n("div", { className: a.info, children: [
26
+ /* @__PURE__ */ i(s, { defaultVariant: "bodyXs", children: e.info.label }),
27
+ /* @__PURE__ */ i("div", { className: a.labels, children: e.info.labels.map((l, d) => /* @__PURE__ */ i(b, { color: "black", size: "sm", children: l }, `${l}-${d}`)) })
28
+ ] })
29
+ ] }) })
30
+ ] }, `${e.label}-${r}`)) });
31
+ };
32
+ export {
33
+ V as Features
34
+ };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="features-module__root___z1Nk2",t="features-module__feature___WIRc6",n="features-module__header___FV9hQ",o="features-module__content___EeU69",_="features-module__contentActive___g9qRq",r="features-module__contentInner___187za",c="features-module__info___JbCA-",s="features-module__labels___1h3JU",u={root:e,feature:t,header:n,content:o,contentActive:_,contentInner:r,info:c,labels:s};exports.content=o;exports.contentActive=_;exports.contentInner=r;exports.default=u;exports.feature=t;exports.header=n;exports.info=c;exports.labels=s;exports.root=e;
@@ -0,0 +1,21 @@
1
+ const e = "features-module__root___z1Nk2", t = "features-module__feature___WIRc6", _ = "features-module__header___FV9hQ", n = "features-module__content___EeU69", o = "features-module__contentActive___g9qRq", s = "features-module__contentInner___187za", c = "features-module__info___JbCA-", r = "features-module__labels___1h3JU", a = {
2
+ root: e,
3
+ feature: t,
4
+ header: _,
5
+ content: n,
6
+ contentActive: o,
7
+ contentInner: s,
8
+ info: c,
9
+ labels: r
10
+ };
11
+ export {
12
+ n as content,
13
+ o as contentActive,
14
+ s as contentInner,
15
+ a as default,
16
+ t as feature,
17
+ _ as header,
18
+ c as info,
19
+ r as labels,
20
+ e as root
21
+ };
@@ -0,0 +1 @@
1
+ export { Features } from './Features';
@@ -0,0 +1 @@
1
+ export { ProgramDetails } from './ProgramDetails';
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="programDetails-module__root___vJGKv",t="programDetails-module__container___PbyNG",o="programDetails-module__header___tQr9F",r="programDetails-module__content___uOXWt",_="programDetails-module__image___K0f68",a={root:e,container:t,header:o,content:r,image:_};exports.container=t;exports.content=r;exports.default=a;exports.header=o;exports.image=_;exports.root=e;
@@ -0,0 +1,15 @@
1
+ const o = "programDetails-module__root___vJGKv", e = "programDetails-module__container___PbyNG", t = "programDetails-module__header___tQr9F", _ = "programDetails-module__content___uOXWt", a = "programDetails-module__image___K0f68", r = {
2
+ root: o,
3
+ container: e,
4
+ header: t,
5
+ content: _,
6
+ image: a
7
+ };
8
+ export {
9
+ e as container,
10
+ _ as content,
11
+ r as default,
12
+ t as header,
13
+ a as image,
14
+ o as root
15
+ };
@@ -0,0 +1,8 @@
1
+ export type TProgramDetailsFeature = {
2
+ label: string;
3
+ description?: string;
4
+ info?: {
5
+ label: string;
6
+ labels: Array<string>;
7
+ };
8
+ };
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const _="typography-module__displayXl___dx4Dh",l="typography-module__displayLg___3BQI2",o="typography-module__displayMd___-bNBw",e="typography-module__displaySm___BswNI",i="typography-module__displayXs___jcmVJ",d="typography-module__headingXl___nAQFD",m="typography-module__headingLg___Idt-Z",a="typography-module__headingMd___c-Q0B",b="typography-module__headingSm___Q6zoR",y="typography-module__headingXs___fwDFl",p="typography-module__headingXxs___ghw1N",g="typography-module__preambleMd___CbYgI",s="typography-module__preambleSm___yKGjq",n="typography-module__bodyXl___m92AP",t="typography-module__bodyLg___Fz-Fo",h="typography-module__bodyMd___aH0Ph",r="typography-module__bodySm___4-7TJ",X="typography-module__bodyXs___uTpSs",u="typography-module__linkLg___xVngm",c="typography-module__linkMd___82MQD",M="typography-module__linkSm___LZ94B",S="typography-module__linkXs___-6Kd5",L="typography-module__labelXl___jmHEl",k="typography-module__labelLg___31xPj",w="typography-module__labelMd___e3ni6",x="typography-module__labelSm___AsYEH",z="typography-module__labelXs___zgCHL",R="typography-module__labelEmphasis___nbkyG",f="typography-module__weightRegular___F3ND2",E="typography-module__weightMedium___XpDfI",I="typography-module__mobile__displayXl___8eyMz",P="typography-module__mobile__displayLg___OxrWl",D="typography-module__mobile__displayMd___ZTVhR",F="typography-module__mobile__displaySm___P5do8",J="typography-module__mobile__displayXs___3nZMf",V="typography-module__mobile__headingXl___fuylU",Z="typography-module__mobile__headingLg___poZZo",j="typography-module__mobile__headingMd___UA7hK",q="typography-module__mobile__headingSm___9StAl",A="typography-module__mobile__headingXs___zRqq3",B="typography-module__mobile__headingXxs___I6k7k",H="typography-module__mobile__preambleMd___OsCic",Q="typography-module__mobile__preambleSm___VVrnq",K="typography-module__mobile__bodyXl___WKi87",N="typography-module__mobile__bodyLg___JR512",T="typography-module__mobile__bodyMd___h5hFh",W="typography-module__mobile__bodySm___J3fX2",v="typography-module__mobile__bodyXs___rbvEo",C="typography-module__mobile__linkLg___JWgXg",G="typography-module__mobile__linkMd___Humhz",O="typography-module__mobile__linkSm___pJwma",U="typography-module__mobile__linkXs___o01Lz",Y="typography-module__mobile__labelXl___q4W0-",$="typography-module__mobile__labelLg___1wguG",__="typography-module__mobile__labelMd___PInk-",l_="typography-module__mobile__labelSm___yPUV0",o_="typography-module__mobile__labelXs___80zt0",e_={displayXl:_,displayLg:l,displayMd:o,displaySm:e,displayXs:i,headingXl:d,headingLg:m,headingMd:a,headingSm:b,headingXs:y,headingXxs:p,preambleMd:g,preambleSm:s,bodyXl:n,bodyLg:t,bodyMd:h,bodySm:r,bodyXs:X,linkLg:u,linkMd:c,linkSm:M,linkXs:S,labelXl:L,labelLg:k,labelMd:w,labelSm:x,labelXs:z,labelEmphasis:R,weightRegular:f,weightMedium:E,mobile__displayXl:I,mobile__displayLg:P,mobile__displayMd:D,mobile__displaySm:F,mobile__displayXs:J,mobile__headingXl:V,mobile__headingLg:Z,mobile__headingMd:j,mobile__headingSm:q,mobile__headingXs:A,mobile__headingXxs:B,mobile__preambleMd:H,mobile__preambleSm:Q,mobile__bodyXl:K,mobile__bodyLg:N,mobile__bodyMd:T,mobile__bodySm:W,mobile__bodyXs:v,mobile__linkLg:C,mobile__linkMd:G,mobile__linkSm:O,mobile__linkXs:U,mobile__labelXl:Y,mobile__labelLg:$,mobile__labelMd:__,mobile__labelSm:l_,mobile__labelXs:o_};exports.bodyLg=t;exports.bodyMd=h;exports.bodySm=r;exports.bodyXl=n;exports.bodyXs=X;exports.default=e_;exports.displayLg=l;exports.displayMd=o;exports.displaySm=e;exports.displayXl=_;exports.displayXs=i;exports.headingLg=m;exports.headingMd=a;exports.headingSm=b;exports.headingXl=d;exports.headingXs=y;exports.headingXxs=p;exports.labelEmphasis=R;exports.labelLg=k;exports.labelMd=w;exports.labelSm=x;exports.labelXl=L;exports.labelXs=z;exports.linkLg=u;exports.linkMd=c;exports.linkSm=M;exports.linkXs=S;exports.mobile__bodyLg=N;exports.mobile__bodyMd=T;exports.mobile__bodySm=W;exports.mobile__bodyXl=K;exports.mobile__bodyXs=v;exports.mobile__displayLg=P;exports.mobile__displayMd=D;exports.mobile__displaySm=F;exports.mobile__displayXl=I;exports.mobile__displayXs=J;exports.mobile__headingLg=Z;exports.mobile__headingMd=j;exports.mobile__headingSm=q;exports.mobile__headingXl=V;exports.mobile__headingXs=A;exports.mobile__headingXxs=B;exports.mobile__labelLg=$;exports.mobile__labelMd=__;exports.mobile__labelSm=l_;exports.mobile__labelXl=Y;exports.mobile__labelXs=o_;exports.mobile__linkLg=C;exports.mobile__linkMd=G;exports.mobile__linkSm=O;exports.mobile__linkXs=U;exports.mobile__preambleMd=H;exports.mobile__preambleSm=Q;exports.preambleMd=g;exports.preambleSm=s;exports.weightMedium=E;exports.weightRegular=f;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const _="typography-module__displayXl___dx4Dh",l="typography-module__displayLg___3BQI2",e="typography-module__displayMd___-bNBw",o="typography-module__displaySm___BswNI",m="typography-module__displayXs___jcmVJ",i="typography-module__headingXl___nAQFD",d="typography-module__headingLg___Idt-Z",a="typography-module__headingMd___c-Q0B",b="typography-module__headingSm___Q6zoR",y="typography-module__headingXs___fwDFl",p="typography-module__headingXxs___ghw1N",g="typography-module__preambleLg___wcfye",s="typography-module__preambleMd___CbYgI",n="typography-module__preambleSm___yKGjq",t="typography-module__bodyXl___m92AP",h="typography-module__bodyLg___Fz-Fo",r="typography-module__bodyMd___aH0Ph",X="typography-module__bodySm___4-7TJ",u="typography-module__bodyXs___uTpSs",c="typography-module__linkLg___xVngm",M="typography-module__linkMd___82MQD",S="typography-module__linkSm___LZ94B",L="typography-module__linkXs___-6Kd5",k="typography-module__labelXl___jmHEl",w="typography-module__labelLg___31xPj",x="typography-module__labelMd___e3ni6",I="typography-module__labelSm___AsYEH",f="typography-module__labelXs___zgCHL",z="typography-module__labelEmphasis___nbkyG",R="typography-module__weightRegular___F3ND2",E="typography-module__weightMedium___XpDfI",P="typography-module__mobile__displayXl___8eyMz",D="typography-module__mobile__displayLg___OxrWl",F="typography-module__mobile__displayMd___ZTVhR",J="typography-module__mobile__displaySm___P5do8",V="typography-module__mobile__displayXs___3nZMf",Z="typography-module__mobile__headingXl___fuylU",j="typography-module__mobile__headingLg___poZZo",q="typography-module__mobile__headingMd___UA7hK",A="typography-module__mobile__headingSm___9StAl",B="typography-module__mobile__headingXs___zRqq3",H="typography-module__mobile__headingXxs___I6k7k",Q="typography-module__mobile__preambleLg___bItII",K="typography-module__mobile__preambleMd___OsCic",N="typography-module__mobile__preambleSm___VVrnq",T="typography-module__mobile__bodyXl___WKi87",W="typography-module__mobile__bodyLg___JR512",v="typography-module__mobile__bodyMd___h5hFh",C="typography-module__mobile__bodySm___J3fX2",G="typography-module__mobile__bodyXs___rbvEo",O="typography-module__mobile__linkLg___JWgXg",U="typography-module__mobile__linkMd___Humhz",Y="typography-module__mobile__linkSm___pJwma",$="typography-module__mobile__linkXs___o01Lz",__="typography-module__mobile__labelXl___q4W0-",l_="typography-module__mobile__labelLg___1wguG",e_="typography-module__mobile__labelMd___PInk-",o_="typography-module__mobile__labelSm___yPUV0",m_="typography-module__mobile__labelXs___80zt0",i_={displayXl:_,displayLg:l,displayMd:e,displaySm:o,displayXs:m,headingXl:i,headingLg:d,headingMd:a,headingSm:b,headingXs:y,headingXxs:p,preambleLg:g,preambleMd:s,preambleSm:n,bodyXl:t,bodyLg:h,bodyMd:r,bodySm:X,bodyXs:u,linkLg:c,linkMd:M,linkSm:S,linkXs:L,labelXl:k,labelLg:w,labelMd:x,labelSm:I,labelXs:f,labelEmphasis:z,weightRegular:R,weightMedium:E,mobile__displayXl:P,mobile__displayLg:D,mobile__displayMd:F,mobile__displaySm:J,mobile__displayXs:V,mobile__headingXl:Z,mobile__headingLg:j,mobile__headingMd:q,mobile__headingSm:A,mobile__headingXs:B,mobile__headingXxs:H,mobile__preambleLg:Q,mobile__preambleMd:K,mobile__preambleSm:N,mobile__bodyXl:T,mobile__bodyLg:W,mobile__bodyMd:v,mobile__bodySm:C,mobile__bodyXs:G,mobile__linkLg:O,mobile__linkMd:U,mobile__linkSm:Y,mobile__linkXs:$,mobile__labelXl:__,mobile__labelLg:l_,mobile__labelMd:e_,mobile__labelSm:o_,mobile__labelXs:m_};exports.bodyLg=h;exports.bodyMd=r;exports.bodySm=X;exports.bodyXl=t;exports.bodyXs=u;exports.default=i_;exports.displayLg=l;exports.displayMd=e;exports.displaySm=o;exports.displayXl=_;exports.displayXs=m;exports.headingLg=d;exports.headingMd=a;exports.headingSm=b;exports.headingXl=i;exports.headingXs=y;exports.headingXxs=p;exports.labelEmphasis=z;exports.labelLg=w;exports.labelMd=x;exports.labelSm=I;exports.labelXl=k;exports.labelXs=f;exports.linkLg=c;exports.linkMd=M;exports.linkSm=S;exports.linkXs=L;exports.mobile__bodyLg=W;exports.mobile__bodyMd=v;exports.mobile__bodySm=C;exports.mobile__bodyXl=T;exports.mobile__bodyXs=G;exports.mobile__displayLg=D;exports.mobile__displayMd=F;exports.mobile__displaySm=J;exports.mobile__displayXl=P;exports.mobile__displayXs=V;exports.mobile__headingLg=j;exports.mobile__headingMd=q;exports.mobile__headingSm=A;exports.mobile__headingXl=Z;exports.mobile__headingXs=B;exports.mobile__headingXxs=H;exports.mobile__labelLg=l_;exports.mobile__labelMd=e_;exports.mobile__labelSm=o_;exports.mobile__labelXl=__;exports.mobile__labelXs=m_;exports.mobile__linkLg=O;exports.mobile__linkMd=U;exports.mobile__linkSm=Y;exports.mobile__linkXs=$;exports.mobile__preambleLg=Q;exports.mobile__preambleMd=K;exports.mobile__preambleSm=N;exports.preambleLg=g;exports.preambleMd=s;exports.preambleSm=n;exports.weightMedium=E;exports.weightRegular=R;
@@ -1,4 +1,4 @@
1
- const _ = "typography-module__displayXl___dx4Dh", l = "typography-module__displayLg___3BQI2", o = "typography-module__displayMd___-bNBw", e = "typography-module__displaySm___BswNI", m = "typography-module__displayXs___jcmVJ", d = "typography-module__headingXl___nAQFD", i = "typography-module__headingLg___Idt-Z", y = "typography-module__headingMd___c-Q0B", a = "typography-module__headingSm___Q6zoR", p = "typography-module__headingXs___fwDFl", b = "typography-module__headingXxs___ghw1N", g = "typography-module__preambleMd___CbYgI", s = "typography-module__preambleSm___yKGjq", t = "typography-module__bodyXl___m92AP", n = "typography-module__bodyLg___Fz-Fo", h = "typography-module__bodyMd___aH0Ph", r = "typography-module__bodySm___4-7TJ", u = "typography-module__bodyXs___uTpSs", X = "typography-module__linkLg___xVngm", c = "typography-module__linkMd___82MQD", M = "typography-module__linkSm___LZ94B", S = "typography-module__linkXs___-6Kd5", L = "typography-module__labelXl___jmHEl", k = "typography-module__labelLg___31xPj", w = "typography-module__labelMd___e3ni6", x = "typography-module__labelSm___AsYEH", z = "typography-module__labelXs___zgCHL", I = "typography-module__labelEmphasis___nbkyG", R = "typography-module__weightRegular___F3ND2", f = "typography-module__weightMedium___XpDfI", D = "typography-module__mobile__displayXl___8eyMz", E = "typography-module__mobile__displayLg___OxrWl", F = "typography-module__mobile__displayMd___ZTVhR", J = "typography-module__mobile__displaySm___P5do8", P = "typography-module__mobile__displayXs___3nZMf", V = "typography-module__mobile__headingXl___fuylU", Z = "typography-module__mobile__headingLg___poZZo", q = "typography-module__mobile__headingMd___UA7hK", A = "typography-module__mobile__headingSm___9StAl", B = "typography-module__mobile__headingXs___zRqq3", H = "typography-module__mobile__headingXxs___I6k7k", Q = "typography-module__mobile__preambleMd___OsCic", j = "typography-module__mobile__preambleSm___VVrnq", K = "typography-module__mobile__bodyXl___WKi87", N = "typography-module__mobile__bodyLg___JR512", W = "typography-module__mobile__bodyMd___h5hFh", C = "typography-module__mobile__bodySm___J3fX2", G = "typography-module__mobile__bodyXs___rbvEo", T = "typography-module__mobile__linkLg___JWgXg", U = "typography-module__mobile__linkMd___Humhz", O = "typography-module__mobile__linkSm___pJwma", Y = "typography-module__mobile__linkXs___o01Lz", v = "typography-module__mobile__labelXl___q4W0-", $ = "typography-module__mobile__labelLg___1wguG", __ = "typography-module__mobile__labelMd___PInk-", l_ = "typography-module__mobile__labelSm___yPUV0", o_ = "typography-module__mobile__labelXs___80zt0", e_ = {
1
+ const _ = "typography-module__displayXl___dx4Dh", l = "typography-module__displayLg___3BQI2", o = "typography-module__displayMd___-bNBw", e = "typography-module__displaySm___BswNI", m = "typography-module__displayXs___jcmVJ", d = "typography-module__headingXl___nAQFD", i = "typography-module__headingLg___Idt-Z", a = "typography-module__headingMd___c-Q0B", y = "typography-module__headingSm___Q6zoR", p = "typography-module__headingXs___fwDFl", b = "typography-module__headingXxs___ghw1N", g = "typography-module__preambleLg___wcfye", s = "typography-module__preambleMd___CbYgI", t = "typography-module__preambleSm___yKGjq", n = "typography-module__bodyXl___m92AP", h = "typography-module__bodyLg___Fz-Fo", r = "typography-module__bodyMd___aH0Ph", u = "typography-module__bodySm___4-7TJ", c = "typography-module__bodyXs___uTpSs", X = "typography-module__linkLg___xVngm", M = "typography-module__linkMd___82MQD", L = "typography-module__linkSm___LZ94B", S = "typography-module__linkXs___-6Kd5", k = "typography-module__labelXl___jmHEl", w = "typography-module__labelLg___31xPj", x = "typography-module__labelMd___e3ni6", I = "typography-module__labelSm___AsYEH", z = "typography-module__labelXs___zgCHL", f = "typography-module__labelEmphasis___nbkyG", R = "typography-module__weightRegular___F3ND2", D = "typography-module__weightMedium___XpDfI", E = "typography-module__mobile__displayXl___8eyMz", F = "typography-module__mobile__displayLg___OxrWl", J = "typography-module__mobile__displayMd___ZTVhR", P = "typography-module__mobile__displaySm___P5do8", V = "typography-module__mobile__displayXs___3nZMf", Z = "typography-module__mobile__headingXl___fuylU", q = "typography-module__mobile__headingLg___poZZo", A = "typography-module__mobile__headingMd___UA7hK", B = "typography-module__mobile__headingSm___9StAl", H = "typography-module__mobile__headingXs___zRqq3", Q = "typography-module__mobile__headingXxs___I6k7k", j = "typography-module__mobile__preambleLg___bItII", K = "typography-module__mobile__preambleMd___OsCic", N = "typography-module__mobile__preambleSm___VVrnq", W = "typography-module__mobile__bodyXl___WKi87", C = "typography-module__mobile__bodyLg___JR512", G = "typography-module__mobile__bodyMd___h5hFh", T = "typography-module__mobile__bodySm___J3fX2", U = "typography-module__mobile__bodyXs___rbvEo", O = "typography-module__mobile__linkLg___JWgXg", Y = "typography-module__mobile__linkMd___Humhz", v = "typography-module__mobile__linkSm___pJwma", $ = "typography-module__mobile__linkXs___o01Lz", __ = "typography-module__mobile__labelXl___q4W0-", l_ = "typography-module__mobile__labelLg___1wguG", o_ = "typography-module__mobile__labelMd___PInk-", e_ = "typography-module__mobile__labelSm___yPUV0", m_ = "typography-module__mobile__labelXs___80zt0", d_ = {
2
2
  displayXl: _,
3
3
  displayLg: l,
4
4
  displayMd: o,
@@ -6,114 +6,118 @@ const _ = "typography-module__displayXl___dx4Dh", l = "typography-module__displa
6
6
  displayXs: m,
7
7
  headingXl: d,
8
8
  headingLg: i,
9
- headingMd: y,
10
- headingSm: a,
9
+ headingMd: a,
10
+ headingSm: y,
11
11
  headingXs: p,
12
12
  headingXxs: b,
13
- preambleMd: g,
14
- preambleSm: s,
15
- bodyXl: t,
16
- bodyLg: n,
17
- bodyMd: h,
18
- bodySm: r,
19
- bodyXs: u,
13
+ preambleLg: g,
14
+ preambleMd: s,
15
+ preambleSm: t,
16
+ bodyXl: n,
17
+ bodyLg: h,
18
+ bodyMd: r,
19
+ bodySm: u,
20
+ bodyXs: c,
20
21
  linkLg: X,
21
- linkMd: c,
22
- linkSm: M,
22
+ linkMd: M,
23
+ linkSm: L,
23
24
  linkXs: S,
24
- labelXl: L,
25
- labelLg: k,
26
- labelMd: w,
27
- labelSm: x,
25
+ labelXl: k,
26
+ labelLg: w,
27
+ labelMd: x,
28
+ labelSm: I,
28
29
  labelXs: z,
29
- labelEmphasis: I,
30
+ labelEmphasis: f,
30
31
  weightRegular: R,
31
- weightMedium: f,
32
- mobile__displayXl: D,
33
- mobile__displayLg: E,
34
- mobile__displayMd: F,
35
- mobile__displaySm: J,
36
- mobile__displayXs: P,
37
- mobile__headingXl: V,
38
- mobile__headingLg: Z,
39
- mobile__headingMd: q,
40
- mobile__headingSm: A,
41
- mobile__headingXs: B,
42
- mobile__headingXxs: H,
43
- mobile__preambleMd: Q,
44
- mobile__preambleSm: j,
45
- mobile__bodyXl: K,
46
- mobile__bodyLg: N,
47
- mobile__bodyMd: W,
48
- mobile__bodySm: C,
49
- mobile__bodyXs: G,
50
- mobile__linkLg: T,
51
- mobile__linkMd: U,
52
- mobile__linkSm: O,
53
- mobile__linkXs: Y,
54
- mobile__labelXl: v,
55
- mobile__labelLg: $,
56
- mobile__labelMd: __,
57
- mobile__labelSm: l_,
58
- mobile__labelXs: o_
32
+ weightMedium: D,
33
+ mobile__displayXl: E,
34
+ mobile__displayLg: F,
35
+ mobile__displayMd: J,
36
+ mobile__displaySm: P,
37
+ mobile__displayXs: V,
38
+ mobile__headingXl: Z,
39
+ mobile__headingLg: q,
40
+ mobile__headingMd: A,
41
+ mobile__headingSm: B,
42
+ mobile__headingXs: H,
43
+ mobile__headingXxs: Q,
44
+ mobile__preambleLg: j,
45
+ mobile__preambleMd: K,
46
+ mobile__preambleSm: N,
47
+ mobile__bodyXl: W,
48
+ mobile__bodyLg: C,
49
+ mobile__bodyMd: G,
50
+ mobile__bodySm: T,
51
+ mobile__bodyXs: U,
52
+ mobile__linkLg: O,
53
+ mobile__linkMd: Y,
54
+ mobile__linkSm: v,
55
+ mobile__linkXs: $,
56
+ mobile__labelXl: __,
57
+ mobile__labelLg: l_,
58
+ mobile__labelMd: o_,
59
+ mobile__labelSm: e_,
60
+ mobile__labelXs: m_
59
61
  };
60
62
  export {
61
- n as bodyLg,
62
- h as bodyMd,
63
- r as bodySm,
64
- t as bodyXl,
65
- u as bodyXs,
66
- e_ as default,
63
+ h as bodyLg,
64
+ r as bodyMd,
65
+ u as bodySm,
66
+ n as bodyXl,
67
+ c as bodyXs,
68
+ d_ as default,
67
69
  l as displayLg,
68
70
  o as displayMd,
69
71
  e as displaySm,
70
72
  _ as displayXl,
71
73
  m as displayXs,
72
74
  i as headingLg,
73
- y as headingMd,
74
- a as headingSm,
75
+ a as headingMd,
76
+ y as headingSm,
75
77
  d as headingXl,
76
78
  p as headingXs,
77
79
  b as headingXxs,
78
- I as labelEmphasis,
79
- k as labelLg,
80
- w as labelMd,
81
- x as labelSm,
82
- L as labelXl,
80
+ f as labelEmphasis,
81
+ w as labelLg,
82
+ x as labelMd,
83
+ I as labelSm,
84
+ k as labelXl,
83
85
  z as labelXs,
84
86
  X as linkLg,
85
- c as linkMd,
86
- M as linkSm,
87
+ M as linkMd,
88
+ L as linkSm,
87
89
  S as linkXs,
88
- N as mobile__bodyLg,
89
- W as mobile__bodyMd,
90
- C as mobile__bodySm,
91
- K as mobile__bodyXl,
92
- G as mobile__bodyXs,
93
- E as mobile__displayLg,
94
- F as mobile__displayMd,
95
- J as mobile__displaySm,
96
- D as mobile__displayXl,
97
- P as mobile__displayXs,
98
- Z as mobile__headingLg,
99
- q as mobile__headingMd,
100
- A as mobile__headingSm,
101
- V as mobile__headingXl,
102
- B as mobile__headingXs,
103
- H as mobile__headingXxs,
104
- $ as mobile__labelLg,
105
- __ as mobile__labelMd,
106
- l_ as mobile__labelSm,
107
- v as mobile__labelXl,
108
- o_ as mobile__labelXs,
109
- T as mobile__linkLg,
110
- U as mobile__linkMd,
111
- O as mobile__linkSm,
112
- Y as mobile__linkXs,
113
- Q as mobile__preambleMd,
114
- j as mobile__preambleSm,
115
- g as preambleMd,
116
- s as preambleSm,
117
- f as weightMedium,
90
+ C as mobile__bodyLg,
91
+ G as mobile__bodyMd,
92
+ T as mobile__bodySm,
93
+ W as mobile__bodyXl,
94
+ U as mobile__bodyXs,
95
+ F as mobile__displayLg,
96
+ J as mobile__displayMd,
97
+ P as mobile__displaySm,
98
+ E as mobile__displayXl,
99
+ V as mobile__displayXs,
100
+ q as mobile__headingLg,
101
+ A as mobile__headingMd,
102
+ B as mobile__headingSm,
103
+ Z as mobile__headingXl,
104
+ H as mobile__headingXs,
105
+ Q as mobile__headingXxs,
106
+ l_ as mobile__labelLg,
107
+ o_ as mobile__labelMd,
108
+ e_ as mobile__labelSm,
109
+ __ as mobile__labelXl,
110
+ m_ as mobile__labelXs,
111
+ O as mobile__linkLg,
112
+ Y as mobile__linkMd,
113
+ v as mobile__linkSm,
114
+ $ as mobile__linkXs,
115
+ j as mobile__preambleLg,
116
+ K as mobile__preambleMd,
117
+ N as mobile__preambleSm,
118
+ g as preambleLg,
119
+ s as preambleMd,
120
+ t as preambleSm,
121
+ D as weightMedium,
118
122
  R as weightRegular
119
123
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zenpatient-org/healthspan-marketing-ui",
3
- "version": "0.1.60",
3
+ "version": "0.1.61",
4
4
  "description": "Design system",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",
@@ -496,6 +496,11 @@
496
496
  "import": "./dist/modules/WhatIs/WhatIs.es.js",
497
497
  "require": "./dist/modules/WhatIs/WhatIs.cjs.js"
498
498
  },
499
+ "./ProgramDetails": {
500
+ "types": "./dist/modules/ProgramDetails/index.d.ts",
501
+ "import": "./dist/modules/ProgramDetails/ProgramDetails.es.js",
502
+ "require": "./dist/modules/ProgramDetails/ProgramDetails.cjs.js"
503
+ },
499
504
  "./Bubbles": {
500
505
  "types": "./dist/pageComponents/Bubbles/Bubbles.d.ts",
501
506
  "import": "./dist/pageComponents/Bubbles/Bubbles.es.js",