@zenpatient-org/healthspan-marketing-ui 0.1.25 → 0.1.26
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/SlidingTabsGallery/SlidingTabsGallery.cjs.js +1 -1
- package/dist/modules/SlidingTabsGallery/SlidingTabsGallery.d.ts +3 -2
- package/dist/modules/SlidingTabsGallery/SlidingTabsGallery.es.js +93 -89
- package/dist/modules/SlidingTabsGallery/SlidingTabsGallery.module.css.cjs.js +1 -1
- package/dist/modules/SlidingTabsGallery/SlidingTabsGallery.module.css.es.js +23 -21
- package/dist/modules/Testimonial/Testimonial.cjs.js +1 -1
- package/dist/modules/Testimonial/Testimonial.es.js +15 -15
- package/dist/modules/Testimonial/components/TextCard/TextCard.cjs.js +1 -1
- package/dist/modules/Testimonial/components/TextCard/TextCard.es.js +32 -29
- package/dist/modules/Testimonial/components/VideoCard/VideoCard.cjs.js +1 -1
- package/dist/modules/Testimonial/components/VideoCard/VideoCard.es.js +28 -27
- package/dist/modules/Testimonial/types.d.ts +4 -3
- package/dist/pageComponents/Bubbles/Bubbles.cjs.js +1 -0
- package/dist/pageComponents/Bubbles/Bubbles.d.ts +3 -0
- package/dist/pageComponents/Bubbles/Bubbles.es.js +28 -0
- package/dist/pageComponents/Bubbles/bubbles.module.css.cjs.js +1 -0
- package/dist/pageComponents/Bubbles/bubbles.module.css.es.js +13 -0
- package/dist/pageComponents/Bubbles/index.d.ts +1 -0
- package/dist/pageComponents/Gradient/Gradient.cjs.js +1 -0
- package/dist/pageComponents/Gradient/Gradient.es.js +9 -0
- package/dist/pageComponents/Gradient/gradient.module.css.cjs.js +1 -0
- package/dist/pageComponents/Gradient/gradient.module.css.es.js +13 -0
- package/dist/pageComponents/StillHaveQuestions/StillHaveQuestions.cjs.js +1 -0
- package/dist/pageComponents/StillHaveQuestions/StillHaveQuestions.es.js +25 -0
- package/dist/pageComponents/StillHaveQuestions/stillHaveQuestions.module.css.cjs.js +1 -0
- package/dist/pageComponents/StillHaveQuestions/stillHaveQuestions.module.css.es.js +17 -0
- package/package.json +16 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use client";
|
|
2
|
+
import { jsx as o } from "react/jsx-runtime";
|
|
3
|
+
import { useState as c, useRef as u, useEffect as b } from "react";
|
|
4
|
+
import { cn as l } from "../../utils/cn/cn.es.js";
|
|
5
|
+
import t from "./bubbles.module.css.es.js";
|
|
6
|
+
const f = ["xs", "lg", "sm", "sm", "xl", "sm", "xl", "xl", "xl", "md", "md", "md", "lg"], g = ({ className: m }) => {
|
|
7
|
+
const [n, a] = c(!1), [r, d] = c(!1), i = u(null);
|
|
8
|
+
return b(() => {
|
|
9
|
+
const s = new window.IntersectionObserver(
|
|
10
|
+
([e]) => {
|
|
11
|
+
e.isIntersecting && e.intersectionRatio === 1 && !n && !r && (a(!0), setTimeout(() => d(!0), 5e3));
|
|
12
|
+
},
|
|
13
|
+
{ threshold: 1 }
|
|
14
|
+
);
|
|
15
|
+
return i.current && s.observe(i.current), () => s.disconnect();
|
|
16
|
+
}, [n, r]), /* @__PURE__ */ o("section", { ref: i, className: l(t.root, m), children: /* @__PURE__ */ o("div", { className: t.container, children: f.map((s, e) => /* @__PURE__ */ o(
|
|
17
|
+
"div",
|
|
18
|
+
{
|
|
19
|
+
className: l(t.bubble, (r || n) && t.bubbleFinished),
|
|
20
|
+
"data-size": s,
|
|
21
|
+
"data-index": e
|
|
22
|
+
},
|
|
23
|
+
e
|
|
24
|
+
)) }) });
|
|
25
|
+
};
|
|
26
|
+
export {
|
|
27
|
+
g as Bubbles
|
|
28
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="bubbles-module__root___DUhTG",b="bubbles-module__container___eH7Zj",o="bubbles-module__bubble___FKp2x",l="bubbles-module__bubbleFinished___TNKmv",u={root:e,container:b,bubble:o,bubbleFinished:l};exports.bubble=o;exports.bubbleFinished=l;exports.container=b;exports.default=u;exports.root=e;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const b = "bubbles-module__root___DUhTG", e = "bubbles-module__container___eH7Zj", _ = "bubbles-module__bubble___FKp2x", o = "bubbles-module__bubbleFinished___TNKmv", l = {
|
|
2
|
+
root: b,
|
|
3
|
+
container: e,
|
|
4
|
+
bubble: _,
|
|
5
|
+
bubbleFinished: o
|
|
6
|
+
};
|
|
7
|
+
export {
|
|
8
|
+
_ as bubble,
|
|
9
|
+
o as bubbleFinished,
|
|
10
|
+
e as container,
|
|
11
|
+
l as default,
|
|
12
|
+
b as root
|
|
13
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { Bubbles } from './Bubbles';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const r=require("react/jsx-runtime"),n=require("../../utils/cn/cn.cjs.js"),e=require("./gradient.module.css.cjs.js");function i({variant:t}){return r.jsx("section",{className:n.cn(e.default.root,e.default[t])})}exports.Gradient=i;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import { cn as m } from "../../utils/cn/cn.es.js";
|
|
3
|
+
import o from "./gradient.module.css.es.js";
|
|
4
|
+
function s({ variant: r }) {
|
|
5
|
+
return /* @__PURE__ */ t("section", { className: m(o.root, o[r]) });
|
|
6
|
+
}
|
|
7
|
+
export {
|
|
8
|
+
s as Gradient
|
|
9
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const o="gradient-module__root___64ykF",e="gradient-module__blue___Yr7lT",t="gradient-module__gold___N8Rnw",_="gradient-module__orange___hDxoX",l={root:o,blue:e,gold:t,orange:_};exports.blue=e;exports.default=l;exports.gold=t;exports.orange=_;exports.root=o;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
const o = "gradient-module__root___64ykF", _ = "gradient-module__blue___Yr7lT", e = "gradient-module__gold___N8Rnw", t = "gradient-module__orange___hDxoX", l = {
|
|
2
|
+
root: o,
|
|
3
|
+
blue: _,
|
|
4
|
+
gold: e,
|
|
5
|
+
orange: t
|
|
6
|
+
};
|
|
7
|
+
export {
|
|
8
|
+
_ as blue,
|
|
9
|
+
l as default,
|
|
10
|
+
e as gold,
|
|
11
|
+
t as orange,
|
|
12
|
+
o as root
|
|
13
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),i=require("../../components/Button/Button.cjs.js"),n=require("../../components/HighlightedTitle/HighlightedTitle.cjs.js"),a=require("../../components/Typography/Typography.cjs.js"),s=require("../../utils/cn/cn.cjs.js"),t=require("./stillHaveQuestions.module.css.cjs.js");function l(){return e.jsx("section",{className:t.default.root,children:e.jsx("div",{className:t.default.imageWrapper,children:e.jsxs("div",{className:t.default.contentBox,children:[e.jsx(n.HighlightedTitle,{colorScheme:"dark",title:e.jsxs(a.Typography,{defaultVariant:"displayMd",mobileVariant:"headingXl",children:["Still have ",e.jsx("b",{children:"questions?"})]})}),e.jsx("div",{className:s.cn(t.default.actions,t.default.desktop),children:e.jsx(i.Button,{as:"a",href:"/contact",variant:"secondary",size:"lg",children:"Contact Us"})}),e.jsx("div",{className:s.cn(t.default.actions,t.default.mobile),children:e.jsx(i.Button,{as:"a",href:"/contact",variant:"secondary",size:"md",children:"Contact Us"})})]})})})}exports.StillHaveQuestions=l;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { jsx as i, jsxs as t } from "react/jsx-runtime";
|
|
2
|
+
import { Button as a } from "../../components/Button/Button.es.js";
|
|
3
|
+
import { HighlightedTitle as o } from "../../components/HighlightedTitle/HighlightedTitle.es.js";
|
|
4
|
+
import { Typography as n } from "../../components/Typography/Typography.es.js";
|
|
5
|
+
import { cn as r } from "../../utils/cn/cn.es.js";
|
|
6
|
+
import e from "./stillHaveQuestions.module.css.es.js";
|
|
7
|
+
function p() {
|
|
8
|
+
return /* @__PURE__ */ i("section", { className: e.root, children: /* @__PURE__ */ i("div", { className: e.imageWrapper, children: /* @__PURE__ */ t("div", { className: e.contentBox, children: [
|
|
9
|
+
/* @__PURE__ */ i(
|
|
10
|
+
o,
|
|
11
|
+
{
|
|
12
|
+
colorScheme: "dark",
|
|
13
|
+
title: /* @__PURE__ */ t(n, { defaultVariant: "displayMd", mobileVariant: "headingXl", children: [
|
|
14
|
+
"Still have ",
|
|
15
|
+
/* @__PURE__ */ i("b", { children: "questions?" })
|
|
16
|
+
] })
|
|
17
|
+
}
|
|
18
|
+
),
|
|
19
|
+
/* @__PURE__ */ i("div", { className: r(e.actions, e.desktop), children: /* @__PURE__ */ i(a, { as: "a", href: "/contact", variant: "secondary", size: "lg", children: "Contact Us" }) }),
|
|
20
|
+
/* @__PURE__ */ i("div", { className: r(e.actions, e.mobile), children: /* @__PURE__ */ i(a, { as: "a", href: "/contact", variant: "secondary", size: "md", children: "Contact Us" }) })
|
|
21
|
+
] }) }) });
|
|
22
|
+
}
|
|
23
|
+
export {
|
|
24
|
+
p as StillHaveQuestions
|
|
25
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e="stillHaveQuestions-module__root___bscgd",o="stillHaveQuestions-module__imageWrapper___3ZTu-",t="stillHaveQuestions-module__contentBox___G5ptm",s="stillHaveQuestions-module__actions___eeCUe",_="stillHaveQuestions-module__mobile___7C-Hc",l="stillHaveQuestions-module__desktop___0Bg3Q",i={root:e,imageWrapper:o,contentBox:t,actions:s,mobile:_,desktop:l};exports.actions=s;exports.contentBox=t;exports.default=i;exports.desktop=l;exports.imageWrapper=o;exports.mobile=_;exports.root=e;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
const o = "stillHaveQuestions-module__root___bscgd", e = "stillHaveQuestions-module__imageWrapper___3ZTu-", t = "stillHaveQuestions-module__contentBox___G5ptm", s = "stillHaveQuestions-module__actions___eeCUe", _ = "stillHaveQuestions-module__mobile___7C-Hc", l = "stillHaveQuestions-module__desktop___0Bg3Q", n = {
|
|
2
|
+
root: o,
|
|
3
|
+
imageWrapper: e,
|
|
4
|
+
contentBox: t,
|
|
5
|
+
actions: s,
|
|
6
|
+
mobile: _,
|
|
7
|
+
desktop: l
|
|
8
|
+
};
|
|
9
|
+
export {
|
|
10
|
+
s as actions,
|
|
11
|
+
t as contentBox,
|
|
12
|
+
n as default,
|
|
13
|
+
l as desktop,
|
|
14
|
+
e as imageWrapper,
|
|
15
|
+
_ as mobile,
|
|
16
|
+
o as root
|
|
17
|
+
};
|
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.26",
|
|
4
4
|
"description": "Design system",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -358,6 +358,21 @@
|
|
|
358
358
|
"import": "./dist/modules/TrackProgress/TrackProgress.es.js",
|
|
359
359
|
"require": "./dist/modules/TrackProgress/TrackProgress.cjs.js"
|
|
360
360
|
},
|
|
361
|
+
"./Bubbles": {
|
|
362
|
+
"types": "./dist/pageComponents/Bubbles/Bubbles.d.ts",
|
|
363
|
+
"import": "./dist/pageComponents/Bubbles/Bubbles.es.js",
|
|
364
|
+
"require": "./dist/pageComponents/Bubbles/Bubbles.cjs.js"
|
|
365
|
+
},
|
|
366
|
+
"./Gradient": {
|
|
367
|
+
"types": "./dist/pageComponents/Gradient/Gradient.d.ts",
|
|
368
|
+
"import": "./dist/pageComponents/Gradient/Gradient.es.js",
|
|
369
|
+
"require": "./dist/pageComponents/Gradient/Gradient.cjs.js"
|
|
370
|
+
},
|
|
371
|
+
"./StillHaveQuestions": {
|
|
372
|
+
"types": "./dist/pageComponents/StillHaveQuestions/StillHaveQuestions.d.ts",
|
|
373
|
+
"import": "./dist/pageComponents/StillHaveQuestions/StillHaveQuestions.es.js",
|
|
374
|
+
"require": "./dist/pageComponents/StillHaveQuestions/StillHaveQuestions.cjs.js"
|
|
375
|
+
},
|
|
361
376
|
"./dist/*.css": "./dist/*.css"
|
|
362
377
|
}
|
|
363
378
|
}
|