@zenpatient-org/healthspan-marketing-ui 0.1.43 → 0.1.45
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/AnchorLinks/AnchorLinks.cjs.js +1 -1
- package/dist/components/AnchorLinks/AnchorLinks.es.js +14 -6
- package/dist/components/AnchorLinks/types.d.ts +4 -0
- package/dist/components/ComplexImageCarousel/ComplexCarousel/ComplexCarousel.cjs.js +1 -0
- package/dist/components/ComplexImageCarousel/ComplexCarousel/ComplexCarousel.d.ts +5 -0
- package/dist/components/ComplexImageCarousel/ComplexCarousel/ComplexCarousel.es.js +57 -0
- package/dist/components/ComplexImageCarousel/ComplexCarousel/complexImageCarousel.module.css.cjs.js +1 -0
- package/dist/components/ComplexImageCarousel/ComplexCarousel/complexImageCarousel.module.css.es.js +24 -0
- package/dist/components/ComplexImageCarousel/ComplexCarousel/index.d.ts +1 -0
- package/dist/components/ComplexImageCarousel/ComplexImageCarousel.cjs.js +1 -1
- package/dist/components/ComplexImageCarousel/ComplexImageCarousel.d.ts +1 -1
- package/dist/components/ComplexImageCarousel/ComplexImageCarousel.es.js +5 -55
- package/dist/components/ComplexImageCarousel/SimpleImageCarousel/SimpleImageCarousel.cjs.js +1 -0
- package/dist/components/ComplexImageCarousel/SimpleImageCarousel/SimpleImageCarousel.d.ts +5 -0
- package/dist/components/ComplexImageCarousel/SimpleImageCarousel/SimpleImageCarousel.es.js +76 -0
- package/dist/components/ComplexImageCarousel/SimpleImageCarousel/index.d.ts +1 -0
- package/dist/components/ComplexImageCarousel/SimpleImageCarousel/simpleImageCarousel.module.css.cjs.js +1 -0
- package/dist/components/ComplexImageCarousel/SimpleImageCarousel/simpleImageCarousel.module.css.es.js +15 -0
- package/dist/components/ComplexTooltip/ComplexTooltip.cjs.js +1 -1
- package/dist/components/ComplexTooltip/ComplexTooltip.d.ts +5 -2
- package/dist/components/ComplexTooltip/ComplexTooltip.es.js +34 -29
- package/dist/components/FAQComponent/FAQComponent.cjs.js +1 -1
- package/dist/components/FAQComponent/FAQComponent.es.js +1 -1
- package/dist/components/FAQComponent/components/index.d.ts +1 -1
- package/dist/components/FAQComponentItem/FAQComponentItem.cjs.js +1 -0
- package/dist/components/{FAQComponent/components/FAQComponentItem → FAQComponentItem}/FAQComponentItem.es.js +4 -4
- package/dist/components/FAQComponentItem/faqComponentItem.module.css.cjs.js +1 -0
- package/dist/components/FAQComponentItem/faqComponentItem.module.css.es.js +27 -0
- package/dist/components/InfiniteScroll/InfiniteScroll.cjs.js +1 -1
- package/dist/components/InfiniteScroll/InfiniteScroll.d.ts +1 -0
- package/dist/components/InfiniteScroll/InfiniteScroll.es.js +61 -46
- package/dist/components/StudyGridCard/StudyGridCard.cjs.js +1 -1
- package/dist/components/StudyGridCard/StudyGridCard.d.ts +10 -2
- package/dist/components/StudyGridCard/StudyGridCard.es.js +115 -60
- package/dist/components/StudyGridCard/studyGridCard.module.css.cjs.js +1 -1
- package/dist/components/StudyGridCard/studyGridCard.module.css.es.js +24 -12
- package/dist/healthspan-marketing-ui.css +1 -1
- package/dist/modules/ExpandingDetails/ExpandingDetails.cjs.js +1 -0
- package/dist/modules/ExpandingDetails/ExpandingDetails.d.ts +3 -0
- package/dist/modules/ExpandingDetails/ExpandingDetails.es.js +157 -0
- package/dist/modules/ExpandingDetails/expandingDetails.module.css.cjs.js +1 -0
- package/dist/modules/ExpandingDetails/expandingDetails.module.css.es.js +47 -0
- package/dist/modules/ExpandingDetails/index.d.ts +1 -0
- package/dist/modules/ExpandingDetails/types.d.ts +13 -0
- package/dist/modules/IndividualProductCard/IndividualProductCard.d.ts +2 -2
- package/dist/modules/TextBlockAnimated/TextBlockAnimated.cjs.js +1 -0
- package/dist/modules/TextBlockAnimated/TextBlockAnimated.es.js +54 -0
- package/dist/modules/TextBlockAnimated/index.d.ts +1 -0
- package/dist/modules/TextBlockAnimated/textBlockAnimated.module.css.cjs.js +1 -0
- package/dist/modules/TextBlockAnimated/textBlockAnimated.module.css.es.js +21 -0
- package/dist/node_modules/gsap/SplitText.cjs.js +9 -0
- package/dist/node_modules/gsap/SplitText.es.js +148 -0
- package/package.json +16 -1
- package/dist/components/ComplexImageCarousel/complexImageCarousel.module.css.cjs.js +0 -1
- package/dist/components/ComplexImageCarousel/complexImageCarousel.module.css.es.js +0 -24
- package/dist/components/FAQComponent/components/FAQComponentItem/FAQComponentItem.cjs.js +0 -1
- package/dist/components/FAQComponent/components/FAQComponentItem/faqComponentItem.module.css.cjs.js +0 -1
- package/dist/components/FAQComponent/components/FAQComponentItem/faqComponentItem.module.css.es.js +0 -27
- /package/dist/components/{FAQComponent/components/FAQComponentItem → FAQComponentItem}/FAQComponentItem.d.ts +0 -0
- /package/dist/components/{FAQComponent/components/FAQComponentItem → FAQComponentItem}/index.d.ts +0 -0
- /package/dist/components/{FAQComponent/components/FAQComponentItem → FAQComponentItem}/types.d.ts +0 -0
|
@@ -1,67 +1,82 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { jsx as
|
|
3
|
-
import { forwardRef as
|
|
4
|
-
import { cn as
|
|
5
|
-
import
|
|
6
|
-
function
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
import { jsx as x } from "react/jsx-runtime";
|
|
3
|
+
import { forwardRef as H, useRef as h, useState as y, useEffect as C, useCallback as p, useImperativeHandle as P } from "react";
|
|
4
|
+
import { cn as R } from "../../utils/cn/cn.es.js";
|
|
5
|
+
import v from "./infiniteScroll.module.css.es.js";
|
|
6
|
+
function _({
|
|
7
|
+
items: l,
|
|
8
|
+
speed: d = 50,
|
|
9
|
+
direction: c = "left",
|
|
10
|
+
contentClassName: W,
|
|
11
|
+
itemClassName: q,
|
|
12
|
+
rootClassName: F,
|
|
13
|
+
renderItem: T
|
|
14
|
+
}, E) {
|
|
15
|
+
const i = h(null), [u, g] = y(0), [r, I] = y(0), m = h(null), M = h(!1), f = h(performance.now()), [L, N] = y(2);
|
|
16
|
+
C(() => {
|
|
17
|
+
i.current && l.length > 0 && setTimeout(() => {
|
|
18
|
+
var s, a, e;
|
|
19
|
+
const n = ((a = (s = i.current) == null ? void 0 : s.parentElement) == null ? void 0 : a.offsetWidth) || 0, t = (((e = i.current) == null ? void 0 : e.scrollWidth) || 0) / 2, o = Math.ceil(n * 2 / t);
|
|
20
|
+
N(Math.max(2, o % 2 === 0 ? o : o + 1)), I(t);
|
|
13
21
|
}, 0);
|
|
14
|
-
}, [
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
+
}, [l]), C(() => {
|
|
23
|
+
g(c === "right" ? -r : 0);
|
|
24
|
+
}, [r, c]);
|
|
25
|
+
const w = p(
|
|
26
|
+
(n) => {
|
|
27
|
+
if (!M.current) {
|
|
28
|
+
const t = n ?? performance.now(), o = t - f.current || 16.67;
|
|
29
|
+
f.current = t, g((s) => {
|
|
30
|
+
const a = c === "right" ? -d : d, e = s - a * (o / 1e3);
|
|
31
|
+
if (c === "left") {
|
|
32
|
+
if (e <= -r)
|
|
33
|
+
return e + r;
|
|
34
|
+
} else if (c === "right" && e >= 0)
|
|
35
|
+
return e - r;
|
|
36
|
+
return e;
|
|
22
37
|
});
|
|
23
38
|
}
|
|
24
|
-
m.current = requestAnimationFrame(
|
|
39
|
+
m.current = requestAnimationFrame(w);
|
|
25
40
|
},
|
|
26
|
-
[
|
|
41
|
+
[r, d, c]
|
|
27
42
|
);
|
|
28
|
-
|
|
43
|
+
C(() => (f.current = performance.now(), m.current = requestAnimationFrame(w), () => {
|
|
29
44
|
m.current && cancelAnimationFrame(m.current);
|
|
30
|
-
}), [
|
|
31
|
-
const
|
|
32
|
-
|
|
33
|
-
}, []),
|
|
34
|
-
|
|
35
|
-
}, []),
|
|
36
|
-
(
|
|
37
|
-
const
|
|
38
|
-
const
|
|
39
|
-
|
|
45
|
+
}), [w]);
|
|
46
|
+
const X = p(() => {
|
|
47
|
+
M.current = !0;
|
|
48
|
+
}, []), b = p(() => {
|
|
49
|
+
M.current = !1, f.current = performance.now();
|
|
50
|
+
}, []), A = p(
|
|
51
|
+
(n, t = 300) => {
|
|
52
|
+
const o = u, s = n - o, a = performance.now(), e = (j) => {
|
|
53
|
+
const k = j - a, S = Math.min(k / t, 1), D = 1 - Math.pow(1 - S, 3);
|
|
54
|
+
g(o + s * D), S < 1 && requestAnimationFrame(e);
|
|
40
55
|
};
|
|
41
|
-
requestAnimationFrame(
|
|
56
|
+
requestAnimationFrame(e);
|
|
42
57
|
},
|
|
43
|
-
[
|
|
58
|
+
[u]
|
|
44
59
|
);
|
|
45
|
-
return
|
|
60
|
+
return P(E, () => ({
|
|
46
61
|
scrollLeft: () => {
|
|
47
|
-
const
|
|
48
|
-
|
|
62
|
+
const n = u - 200, t = Math.max(n, -r);
|
|
63
|
+
A(t);
|
|
49
64
|
},
|
|
50
65
|
scrollRight: () => {
|
|
51
|
-
const
|
|
52
|
-
|
|
66
|
+
const n = u + 200, t = Math.min(n, r);
|
|
67
|
+
A(t);
|
|
53
68
|
}
|
|
54
|
-
})), /* @__PURE__ */
|
|
69
|
+
})), /* @__PURE__ */ x("div", { className: R(v.root, F), onMouseEnter: X, onMouseLeave: b, children: /* @__PURE__ */ x(
|
|
55
70
|
"div",
|
|
56
71
|
{
|
|
57
|
-
className:
|
|
58
|
-
style: { transform: `translate3D(${
|
|
59
|
-
ref:
|
|
60
|
-
children: Array.from({ length:
|
|
72
|
+
className: R(v.content, W),
|
|
73
|
+
style: { transform: `translate3D(${u}px, 0, 0)` },
|
|
74
|
+
ref: i,
|
|
75
|
+
children: Array.from({ length: l.length * L }, (n, t) => /* @__PURE__ */ x("div", { className: R(v.item, q), children: T(l[t % l.length], t) }, t))
|
|
61
76
|
}
|
|
62
77
|
) });
|
|
63
78
|
}
|
|
64
|
-
const
|
|
79
|
+
const J = H(_);
|
|
65
80
|
export {
|
|
66
|
-
|
|
81
|
+
J as InfiniteScroll
|
|
67
82
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("react/jsx-runtime"),h=require("../../utils/formatDate.cjs.js");require("../Icon/Icon.cjs.js");const l=require("../Icon/constants.cjs.js"),x=require("../Label/Label.cjs.js"),r=require("../TextButton/TextButton.cjs.js"),s=require("../Typography/Typography.cjs.js"),i=require("../../utils/cn/cn.cjs.js"),a=require("./studyGridCard.module.css.cjs.js");function b(d){if(d.compressed===!0){const{title:n,link:t,image:o}=d;return e.jsxs("div",{className:i.cn(a.default.study,a.default.studyCompressed),children:[e.jsx("div",{className:i.cn(a.default.imagePart,a.default.imagePartCompressed),style:{backgroundImage:`url(${o})`}}),e.jsxs("div",{className:i.cn(a.default.dataPart,a.default.dataPartCompressed),children:[e.jsx(s.Typography,{className:i.cn(a.default.title,a.default.titleCompressed),defaultVariant:"headingSm",mobileVariant:"bodySm",as:"h6",children:n}),e.jsxs("div",{className:a.default.button,children:[e.jsx(r.TextButton,{hideOn:"desktop",className:a.default.mobileButton,size:"sm",as:"a",href:t,suffixIcon:l.EIconName.ARROW_FORWARD,children:"READ MORE"}),e.jsx(r.TextButton,{hideOn:"mobile",className:a.default.desktopButton,size:"lg",as:"a",href:t,suffixIcon:l.EIconName.ARROW_FORWARD,children:"READ MORE"})]})]}),e.jsx("div",{className:a.default.borderLeft}),e.jsx("div",{className:a.default.borderRight})]})}else{const{title:n,link:t,image:o,inverted:c,date:m,label:u,readTime:f}=d;return e.jsxs("div",{className:a.default.study,"data-inverted":c,children:[e.jsx("div",{className:a.default.imagePart,style:{backgroundImage:`url(${o})`},children:u&&e.jsx(x.Label,{...u})}),e.jsxs("div",{className:a.default.dataPart,children:[e.jsxs("div",{className:a.default.info,children:[e.jsx(s.Typography,{defaultVariant:"labelSm",mobileVariant:"labelXs",emphasis:!0,weight:"medium",color:"color-neutral-500",children:h.formatDate(m)}),e.jsxs(e.Fragment,{children:[e.jsx(s.Typography,{defaultVariant:"labelSm",mobileVariant:"labelXs",emphasis:!0,weight:"medium",color:"color-neutral-500",children:"•"}),e.jsxs(s.Typography,{defaultVariant:"labelSm",mobileVariant:"labelXs",emphasis:!0,weight:"medium",color:"color-neutral-500",children:[f," MIN READ"]})]})]}),e.jsx(s.Typography,{className:a.default.title,defaultVariant:"headingSm",mobileVariant:"bodySm",as:"h6",children:n}),e.jsxs("div",{className:a.default.button,children:[e.jsx(r.TextButton,{hideOn:"desktop",className:a.default.mobileButton,size:"sm",as:"a",href:t,suffixIcon:l.EIconName.ARROW_FORWARD,children:"READ MORE"}),e.jsx(r.TextButton,{hideOn:"mobile",className:a.default.desktopButton,size:"lg",as:"a",href:t,suffixIcon:l.EIconName.ARROW_FORWARD,children:"READ MORE"})]})]})]})}}exports.StudyGridCard=b;
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
import { LabelProps } from '../Label';
|
|
2
2
|
|
|
3
|
-
export type
|
|
3
|
+
export type CompressedStudyCardProps = {
|
|
4
|
+
compressed: true;
|
|
5
|
+
title: string;
|
|
6
|
+
link: string;
|
|
7
|
+
image: string;
|
|
8
|
+
};
|
|
9
|
+
export type CompleteStudyCardProps = {
|
|
10
|
+
compressed?: false;
|
|
4
11
|
title: string;
|
|
5
12
|
inverted?: boolean;
|
|
6
13
|
image: string;
|
|
@@ -9,4 +16,5 @@ export type StudyGridCardProps = {
|
|
|
9
16
|
readTime: number;
|
|
10
17
|
link: string;
|
|
11
18
|
};
|
|
12
|
-
export
|
|
19
|
+
export type StudyGridCardProps = CompressedStudyCardProps | CompleteStudyCardProps;
|
|
20
|
+
export declare function StudyGridCard(props: StudyGridCardProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,85 +1,140 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import { formatDate as
|
|
1
|
+
import { jsxs as i, jsx as a, Fragment as R } from "react/jsx-runtime";
|
|
2
|
+
import { formatDate as b } from "../../utils/formatDate.es.js";
|
|
3
3
|
import "../Icon/Icon.es.js";
|
|
4
|
-
import { EIconName as
|
|
4
|
+
import { EIconName as l } from "../Icon/constants.es.js";
|
|
5
5
|
import { Label as p } from "../Label/Label.es.js";
|
|
6
6
|
import { TextButton as s } from "../TextButton/TextButton.es.js";
|
|
7
|
-
import { Typography as
|
|
7
|
+
import { Typography as r } from "../Typography/Typography.es.js";
|
|
8
|
+
import { cn as m } from "../../utils/cn/cn.es.js";
|
|
8
9
|
import e from "./studyGridCard.module.css.es.js";
|
|
9
|
-
function
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
/* @__PURE__ */
|
|
13
|
-
/* @__PURE__ */
|
|
10
|
+
function k(d) {
|
|
11
|
+
if (d.compressed === !0) {
|
|
12
|
+
const { title: o, link: t, image: n } = d;
|
|
13
|
+
return /* @__PURE__ */ i("div", { className: m(e.study, e.studyCompressed), children: [
|
|
14
|
+
/* @__PURE__ */ a(
|
|
15
|
+
"div",
|
|
16
|
+
{
|
|
17
|
+
className: m(e.imagePart, e.imagePartCompressed),
|
|
18
|
+
style: { backgroundImage: `url(${n})` }
|
|
19
|
+
}
|
|
20
|
+
),
|
|
21
|
+
/* @__PURE__ */ i("div", { className: m(e.dataPart, e.dataPartCompressed), children: [
|
|
14
22
|
/* @__PURE__ */ a(
|
|
15
|
-
|
|
23
|
+
r,
|
|
16
24
|
{
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
children: f(h)
|
|
25
|
+
className: m(e.title, e.titleCompressed),
|
|
26
|
+
defaultVariant: "headingSm",
|
|
27
|
+
mobileVariant: "bodySm",
|
|
28
|
+
as: "h6",
|
|
29
|
+
children: o
|
|
23
30
|
}
|
|
24
31
|
),
|
|
25
|
-
|
|
32
|
+
/* @__PURE__ */ i("div", { className: e.button, children: [
|
|
26
33
|
/* @__PURE__ */ a(
|
|
27
|
-
|
|
34
|
+
s,
|
|
28
35
|
{
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
36
|
+
hideOn: "desktop",
|
|
37
|
+
className: e.mobileButton,
|
|
38
|
+
size: "sm",
|
|
39
|
+
as: "a",
|
|
40
|
+
href: t,
|
|
41
|
+
suffixIcon: l.ARROW_FORWARD,
|
|
42
|
+
children: "READ MORE"
|
|
35
43
|
}
|
|
36
44
|
),
|
|
37
|
-
/* @__PURE__ */
|
|
38
|
-
|
|
45
|
+
/* @__PURE__ */ a(
|
|
46
|
+
s,
|
|
47
|
+
{
|
|
48
|
+
hideOn: "mobile",
|
|
49
|
+
className: e.desktopButton,
|
|
50
|
+
size: "lg",
|
|
51
|
+
as: "a",
|
|
52
|
+
href: t,
|
|
53
|
+
suffixIcon: l.ARROW_FORWARD,
|
|
54
|
+
children: "READ MORE"
|
|
55
|
+
}
|
|
56
|
+
)
|
|
57
|
+
] })
|
|
58
|
+
] }),
|
|
59
|
+
/* @__PURE__ */ a("div", { className: e.borderLeft }),
|
|
60
|
+
/* @__PURE__ */ a("div", { className: e.borderRight })
|
|
61
|
+
] });
|
|
62
|
+
} else {
|
|
63
|
+
const { title: o, link: t, image: n, inverted: h, date: u, label: c, readTime: f } = d;
|
|
64
|
+
return /* @__PURE__ */ i("div", { className: e.study, "data-inverted": h, children: [
|
|
65
|
+
/* @__PURE__ */ a("div", { className: e.imagePart, style: { backgroundImage: `url(${n})` }, children: c && /* @__PURE__ */ a(p, { ...c }) }),
|
|
66
|
+
/* @__PURE__ */ i("div", { className: e.dataPart, children: [
|
|
67
|
+
/* @__PURE__ */ i("div", { className: e.info, children: [
|
|
68
|
+
/* @__PURE__ */ a(
|
|
69
|
+
r,
|
|
39
70
|
{
|
|
40
71
|
defaultVariant: "labelSm",
|
|
41
72
|
mobileVariant: "labelXs",
|
|
42
73
|
emphasis: !0,
|
|
43
74
|
weight: "medium",
|
|
44
75
|
color: "color-neutral-500",
|
|
45
|
-
children:
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
76
|
+
children: b(u)
|
|
77
|
+
}
|
|
78
|
+
),
|
|
79
|
+
/* @__PURE__ */ i(R, { children: [
|
|
80
|
+
/* @__PURE__ */ a(
|
|
81
|
+
r,
|
|
82
|
+
{
|
|
83
|
+
defaultVariant: "labelSm",
|
|
84
|
+
mobileVariant: "labelXs",
|
|
85
|
+
emphasis: !0,
|
|
86
|
+
weight: "medium",
|
|
87
|
+
color: "color-neutral-500",
|
|
88
|
+
children: "•"
|
|
89
|
+
}
|
|
90
|
+
),
|
|
91
|
+
/* @__PURE__ */ i(
|
|
92
|
+
r,
|
|
93
|
+
{
|
|
94
|
+
defaultVariant: "labelSm",
|
|
95
|
+
mobileVariant: "labelXs",
|
|
96
|
+
emphasis: !0,
|
|
97
|
+
weight: "medium",
|
|
98
|
+
color: "color-neutral-500",
|
|
99
|
+
children: [
|
|
100
|
+
f,
|
|
101
|
+
" MIN READ"
|
|
102
|
+
]
|
|
103
|
+
}
|
|
104
|
+
)
|
|
105
|
+
] })
|
|
106
|
+
] }),
|
|
107
|
+
/* @__PURE__ */ a(r, { className: e.title, defaultVariant: "headingSm", mobileVariant: "bodySm", as: "h6", children: o }),
|
|
108
|
+
/* @__PURE__ */ i("div", { className: e.button, children: [
|
|
109
|
+
/* @__PURE__ */ a(
|
|
110
|
+
s,
|
|
111
|
+
{
|
|
112
|
+
hideOn: "desktop",
|
|
113
|
+
className: e.mobileButton,
|
|
114
|
+
size: "sm",
|
|
115
|
+
as: "a",
|
|
116
|
+
href: t,
|
|
117
|
+
suffixIcon: l.ARROW_FORWARD,
|
|
118
|
+
children: "READ MORE"
|
|
119
|
+
}
|
|
120
|
+
),
|
|
121
|
+
/* @__PURE__ */ a(
|
|
122
|
+
s,
|
|
123
|
+
{
|
|
124
|
+
hideOn: "mobile",
|
|
125
|
+
className: e.desktopButton,
|
|
126
|
+
size: "lg",
|
|
127
|
+
as: "a",
|
|
128
|
+
href: t,
|
|
129
|
+
suffixIcon: l.ARROW_FORWARD,
|
|
130
|
+
children: "READ MORE"
|
|
49
131
|
}
|
|
50
132
|
)
|
|
51
133
|
] })
|
|
52
|
-
] }),
|
|
53
|
-
/* @__PURE__ */ a(i, { className: e.title, defaultVariant: "headingSm", mobileVariant: "bodySm", as: "h6", children: n }),
|
|
54
|
-
/* @__PURE__ */ r("div", { className: e.button, children: [
|
|
55
|
-
/* @__PURE__ */ a(
|
|
56
|
-
s,
|
|
57
|
-
{
|
|
58
|
-
hideOn: "desktop",
|
|
59
|
-
className: e.mobileButton,
|
|
60
|
-
size: "sm",
|
|
61
|
-
as: "a",
|
|
62
|
-
href: t,
|
|
63
|
-
suffixIcon: m.ARROW_FORWARD,
|
|
64
|
-
children: "READ MORE"
|
|
65
|
-
}
|
|
66
|
-
),
|
|
67
|
-
/* @__PURE__ */ a(
|
|
68
|
-
s,
|
|
69
|
-
{
|
|
70
|
-
hideOn: "mobile",
|
|
71
|
-
className: e.desktopButton,
|
|
72
|
-
size: "lg",
|
|
73
|
-
as: "a",
|
|
74
|
-
href: t,
|
|
75
|
-
suffixIcon: m.ARROW_FORWARD,
|
|
76
|
-
children: "READ MORE"
|
|
77
|
-
}
|
|
78
|
-
)
|
|
79
134
|
] })
|
|
80
|
-
] })
|
|
81
|
-
|
|
135
|
+
] });
|
|
136
|
+
}
|
|
82
137
|
}
|
|
83
138
|
export {
|
|
84
|
-
|
|
139
|
+
k as StudyGridCard
|
|
85
140
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const t="studyGridCard-module__study___mkYRU",d="studyGridCard-module__imagePart___fvIQO",
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const t="studyGridCard-module__study___mkYRU",d="studyGridCard-module__imagePart___fvIQO",e="studyGridCard-module__dataPart___mweMi",r="studyGridCard-module__dataPartCompressed___bLUMa",s="studyGridCard-module__info___xY-Kk",o="studyGridCard-module__title___U2va1",_="studyGridCard-module__button___bvI0u",a="studyGridCard-module__mobileButton___v-RZs",u="studyGridCard-module__studyCompressed___0XTXS",i="studyGridCard-module__imagePartCompressed___8GG-N",m="studyGridCard-module__titleCompressed___Z7uqM",l="studyGridCard-module__borderLeft___xGpbL",C="studyGridCard-module__borderRight___DmL9W",n={study:t,imagePart:d,dataPart:e,dataPartCompressed:r,info:s,title:o,button:_,mobileButton:a,studyCompressed:u,imagePartCompressed:i,titleCompressed:m,borderLeft:l,borderRight:C};exports.borderLeft=l;exports.borderRight=C;exports.button=_;exports.dataPart=e;exports.dataPartCompressed=r;exports.default=n;exports.imagePart=d;exports.imagePartCompressed=i;exports.info=s;exports.mobileButton=a;exports.study=t;exports.studyCompressed=u;exports.title=o;exports.titleCompressed=m;
|
|
@@ -1,19 +1,31 @@
|
|
|
1
|
-
const t = "studyGridCard-module__study___mkYRU", d = "studyGridCard-module__imagePart___fvIQO",
|
|
1
|
+
const t = "studyGridCard-module__study___mkYRU", d = "studyGridCard-module__imagePart___fvIQO", e = "studyGridCard-module__dataPart___mweMi", _ = "studyGridCard-module__dataPartCompressed___bLUMa", r = "studyGridCard-module__info___xY-Kk", s = "studyGridCard-module__title___U2va1", o = "studyGridCard-module__button___bvI0u", a = "studyGridCard-module__mobileButton___v-RZs", u = "studyGridCard-module__studyCompressed___0XTXS", m = "studyGridCard-module__imagePartCompressed___8GG-N", i = "studyGridCard-module__titleCompressed___Z7uqM", C = "studyGridCard-module__borderLeft___xGpbL", l = "studyGridCard-module__borderRight___DmL9W", n = {
|
|
2
2
|
study: t,
|
|
3
3
|
imagePart: d,
|
|
4
|
-
dataPart:
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
4
|
+
dataPart: e,
|
|
5
|
+
dataPartCompressed: _,
|
|
6
|
+
info: r,
|
|
7
|
+
title: s,
|
|
8
|
+
button: o,
|
|
9
|
+
mobileButton: a,
|
|
10
|
+
studyCompressed: u,
|
|
11
|
+
imagePartCompressed: m,
|
|
12
|
+
titleCompressed: i,
|
|
13
|
+
borderLeft: C,
|
|
14
|
+
borderRight: l
|
|
9
15
|
};
|
|
10
16
|
export {
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
17
|
+
C as borderLeft,
|
|
18
|
+
l as borderRight,
|
|
19
|
+
o as button,
|
|
20
|
+
e as dataPart,
|
|
21
|
+
_ as dataPartCompressed,
|
|
22
|
+
n as default,
|
|
14
23
|
d as imagePart,
|
|
15
|
-
|
|
16
|
-
|
|
24
|
+
m as imagePartCompressed,
|
|
25
|
+
r as info,
|
|
26
|
+
a as mobileButton,
|
|
17
27
|
t as study,
|
|
18
|
-
|
|
28
|
+
u as studyCompressed,
|
|
29
|
+
s as title,
|
|
30
|
+
i as titleCompressed
|
|
19
31
|
};
|