@zenpatient-org/healthspan-marketing-ui 0.1.126 → 0.1.128
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/components/ComplexImageCarousel/ComplexCarousel/ComplexCarousel.cjs.js +1 -1
- package/dist/components/ComplexImageCarousel/ComplexCarousel/ComplexCarousel.es.js +29 -28
- package/dist/components/ComplexImageCarousel/useComplexImageCarousel.cjs.js +1 -1
- package/dist/components/ComplexImageCarousel/useComplexImageCarousel.es.js +121 -91
- package/dist/components/HighlightedTitle/HighlightedTitle.cjs.js +1 -1
- package/dist/components/HighlightedTitle/HighlightedTitle.es.js +14 -14
- package/dist/healthspan-marketing-ui.css +1 -1
- package/dist/modules/LongevityPathways/LongevityPathways.cjs.js +1 -1
- package/dist/modules/LongevityPathways/LongevityPathways.es.js +24 -14
- package/dist/modules/LongevityPathways/longevityPathways.module.css.cjs.js +1 -1
- package/dist/modules/LongevityPathways/longevityPathways.module.css.es.js +5 -3
- package/dist/modules/ScienceHero/ScienceHero.cjs.js +1 -0
- package/dist/modules/ScienceHero/ScienceHero.d.ts +10 -0
- package/dist/modules/ScienceHero/ScienceHero.es.js +79 -0
- package/dist/modules/ScienceHero/ScienceHeroCursor.cjs.js +1 -0
- package/dist/modules/ScienceHero/ScienceHeroCursor.d.ts +9 -0
- package/dist/modules/ScienceHero/ScienceHeroCursor.es.js +84 -0
- package/dist/modules/ScienceHero/index.d.ts +1 -0
- package/dist/modules/ScienceHero/scienceHero.module.css.cjs.js +1 -0
- package/dist/modules/ScienceHero/scienceHero.module.css.es.js +41 -0
- package/dist/node_modules/gsap/Draggable.cjs.js +1 -0
- package/dist/node_modules/gsap/Draggable.es.js +605 -0
- package/dist/pageComponents/StillHaveQuestions/StillHaveQuestions.cjs.js +1 -1
- package/dist/pageComponents/StillHaveQuestions/StillHaveQuestions.es.js +7 -7
- package/package.json +6 -1
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
import { jsxs as o, jsx as t, Fragment as n } from "react/jsx-runtime";
|
|
2
2
|
import { Button as u } from "../../components/Button/Button.es.js";
|
|
3
3
|
import { HighlightedTitle as d } from "../../components/HighlightedTitle/HighlightedTitle.es.js";
|
|
4
|
-
import { Typography as
|
|
4
|
+
import { Typography as h } from "../../components/Typography/Typography.es.js";
|
|
5
5
|
import { cn as r } from "../../utils/cn/cn.es.js";
|
|
6
6
|
import e from "./stillHaveQuestions.module.css.es.js";
|
|
7
|
-
import
|
|
7
|
+
import p from "./assets/stillHaveQuestions.jpg.es.js";
|
|
8
8
|
import g from "./assets/joinOurTeam.jpg.es.js";
|
|
9
|
-
const
|
|
9
|
+
const H = ({ variant: i = "StillHaveQuestions" }) => {
|
|
10
10
|
const a = {
|
|
11
11
|
StillHaveQuestions: {
|
|
12
12
|
title: /* @__PURE__ */ o(n, { children: [
|
|
13
|
-
"Still
|
|
13
|
+
"Still have ",
|
|
14
14
|
/* @__PURE__ */ t("b", { children: "questions?" })
|
|
15
15
|
] }),
|
|
16
16
|
buttonText: "Contact Us",
|
|
17
17
|
buttonLink: "/contact-us",
|
|
18
|
-
image:
|
|
18
|
+
image: p
|
|
19
19
|
},
|
|
20
20
|
JoinOurTeam: {
|
|
21
21
|
title: /* @__PURE__ */ o(n, { children: [
|
|
@@ -39,7 +39,7 @@ const O = ({ variant: i = "StillHaveQuestions" }) => {
|
|
|
39
39
|
d,
|
|
40
40
|
{
|
|
41
41
|
colorScheme: "dark",
|
|
42
|
-
title: /* @__PURE__ */ t(
|
|
42
|
+
title: /* @__PURE__ */ t(h, { as: "p", defaultVariant: "displayMd", mobileVariant: "displayXs", children: s })
|
|
43
43
|
}
|
|
44
44
|
),
|
|
45
45
|
/* @__PURE__ */ t("div", { className: e.actions, children: /* @__PURE__ */ t(u, { as: "a", href: m, variant: "secondary", size: "lg", children: l }) })
|
|
@@ -48,5 +48,5 @@ const O = ({ variant: i = "StillHaveQuestions" }) => {
|
|
|
48
48
|
) });
|
|
49
49
|
};
|
|
50
50
|
export {
|
|
51
|
-
|
|
51
|
+
H as StillHaveQuestions
|
|
52
52
|
};
|
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.128",
|
|
4
4
|
"description": "Design system",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -551,6 +551,11 @@
|
|
|
551
551
|
"import": "./dist/modules/HSModal/HSModal.es.js",
|
|
552
552
|
"require": "./dist/modules/HSModal/HSModal.cjs.js"
|
|
553
553
|
},
|
|
554
|
+
"./ScienceHero": {
|
|
555
|
+
"types": "./dist/modules/ScienceHero/ScienceHero.d.ts",
|
|
556
|
+
"import": "./dist/modules/ScienceHero/ScienceHero.es.js",
|
|
557
|
+
"require": "./dist/modules/ScienceHero/ScienceHero.cjs.js"
|
|
558
|
+
},
|
|
554
559
|
"./Bubbles": {
|
|
555
560
|
"types": "./dist/pageComponents/Bubbles/Bubbles.d.ts",
|
|
556
561
|
"import": "./dist/pageComponents/Bubbles/Bubbles.es.js",
|