@zenpatient-org/healthspan-marketing-ui 0.2.47 → 0.2.49
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/AdvancedGallery/AdvancedGallery.cjs.js +1 -0
- package/dist/components/AdvancedGallery/AdvancedGallery.d.ts +7 -0
- package/dist/components/AdvancedGallery/AdvancedGallery.es.js +75 -0
- package/dist/components/AdvancedGallery/advancedGallery.module.css +64 -0
- package/dist/components/AdvancedGallery/components/ImageGalleryPagination/ImageGalleryPagination.cjs.js +1 -0
- package/dist/components/AdvancedGallery/components/ImageGalleryPagination/ImageGalleryPagination.d.ts +9 -0
- package/dist/components/AdvancedGallery/components/ImageGalleryPagination/ImageGalleryPagination.es.js +28 -0
- package/dist/components/AdvancedGallery/components/ImageGalleryPagination/imageGalleryPagination.module.css +58 -0
- package/dist/components/AdvancedGallery/components/ImageGalleryPagination/index.d.ts +1 -0
- package/dist/components/AdvancedGallery/components/VideoSlide/VideoSlide.cjs.js +1 -0
- package/dist/components/AdvancedGallery/components/VideoSlide/VideoSlide.d.ts +13 -0
- package/dist/components/AdvancedGallery/components/VideoSlide/VideoSlide.es.js +53 -0
- package/dist/components/AdvancedGallery/components/VideoSlide/videoSlide.module.css +49 -0
- package/dist/components/AdvancedGallery/components/index.d.ts +1 -0
- package/dist/components/AdvancedGallery/index.d.ts +2 -0
- package/dist/components/AdvancedGallery/types.d.ts +14 -0
- package/dist/components/AudioButton/AudioButton.cjs.js +1 -0
- package/dist/components/AudioButton/AudioButton.d.ts +7 -0
- package/dist/components/AudioButton/AudioButton.es.js +10 -0
- package/dist/components/AudioButton/audioButton.module.css +37 -0
- package/dist/components/AudioButton/index.d.ts +1 -0
- package/dist/components/Icon/constants.cjs.js +1 -1
- package/dist/components/Icon/constants.d.ts +3 -0
- package/dist/components/Icon/constants.es.js +4 -1
- package/dist/components/Icon/iconsMap.cjs.js +1 -1
- package/dist/components/Icon/iconsMap.es.js +150 -144
- package/dist/components/Quote/Quote.d.ts +1 -1
- package/dist/components/RatingPreview/RatingPreview.cjs.js +1 -1
- package/dist/components/RatingPreview/RatingPreview.d.ts +0 -1
- package/dist/components/RatingPreview/RatingPreview.es.js +6 -7
- package/dist/icons/action/alt-play.svg +3 -0
- package/dist/icons/action/alt-play.svg.cjs.js +1 -0
- package/dist/icons/action/alt-play.svg.es.js +5 -0
- package/dist/icons/action/audio.svg +15 -0
- package/dist/icons/action/audio.svg.cjs.js +7 -0
- package/dist/icons/action/audio.svg.es.js +11 -0
- package/dist/icons/action/mute.svg +16 -0
- package/dist/icons/action/mute.svg.cjs.js +7 -0
- package/dist/icons/action/mute.svg.es.js +11 -0
- package/dist/lib/useSwiper.d.ts +1 -0
- package/dist/modules/IndividualProductCardV2/IndividualProductCardV2.cjs.js +1 -1
- package/dist/modules/IndividualProductCardV2/IndividualProductCardV2.es.js +44 -42
- package/dist/modules/IndividualProductCardV2/types.d.ts +2 -0
- package/dist/utils/useSwiper/useSwiper.cjs.js +1 -1
- package/dist/utils/useSwiper/useSwiper.es.js +49 -48
- package/package.json +10 -5
|
@@ -1,65 +1,67 @@
|
|
|
1
1
|
import { jsx as i, jsxs as o } from "react/jsx-runtime";
|
|
2
|
-
import { EAnalyticsEventType as
|
|
3
|
-
import { cn as
|
|
2
|
+
import { EAnalyticsEventType as A, EAnalyticsEvent as C } from "../../types/analytics/analytics.es.js";
|
|
3
|
+
import { cn as E } from "../../utils/cn/cn.es.js";
|
|
4
4
|
import e from "../../modules/IndividualProductCardV2/individualProductCardV2.module.css";
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
5
|
+
import { AdvancedGallery as F } from "../../components/AdvancedGallery/AdvancedGallery.es.js";
|
|
6
|
+
import { ImageGallery as L } from "../../components/ImageGallery/ImageGallery.es.js";
|
|
7
|
+
import { RatingPreview as b } from "../../components/RatingPreview/RatingPreview.es.js";
|
|
7
8
|
import { Typography as m } from "../../components/Typography/Typography.es.js";
|
|
8
|
-
import { Features as
|
|
9
|
-
import { PlainFeaturesGroup as
|
|
10
|
-
import { PriceDisplay as
|
|
11
|
-
import { PlanCard as
|
|
12
|
-
import { Button as
|
|
13
|
-
import { Quote as
|
|
14
|
-
const
|
|
9
|
+
import { Features as j } from "../IndividualProductCard/components/Features/Features.es.js";
|
|
10
|
+
import { PlainFeaturesGroup as q } from "../../components/PlainFeaturesGroup/PlainFeaturesGroup.es.js";
|
|
11
|
+
import { PriceDisplay as z } from "../../components/PriceDisplay/PriceDisplay.es.js";
|
|
12
|
+
import { PlanCard as B } from "../IndividualProductCard/components/PlanCard/PlanCard.es.js";
|
|
13
|
+
import { Button as M } from "../../components/Button/Button.es.js";
|
|
14
|
+
import { Quote as O } from "../../components/Quote/Quote.es.js";
|
|
15
|
+
const ti = (r) => {
|
|
15
16
|
const {
|
|
16
|
-
zenpatientId:
|
|
17
|
+
zenpatientId: h,
|
|
17
18
|
signupUrl: c,
|
|
18
|
-
name:
|
|
19
|
-
description:
|
|
20
|
-
label:
|
|
19
|
+
name: G,
|
|
20
|
+
description: V,
|
|
21
|
+
label: v,
|
|
21
22
|
images: k,
|
|
23
|
+
advancedGallery: p,
|
|
22
24
|
features: w,
|
|
23
|
-
quote:
|
|
24
|
-
featuresGroup:
|
|
25
|
-
ratingPreview:
|
|
25
|
+
quote: u,
|
|
26
|
+
featuresGroup: y,
|
|
27
|
+
ratingPreview: f,
|
|
26
28
|
view: l,
|
|
27
29
|
button: a
|
|
28
|
-
} = r, t = l === "plans_list" ? r.plans : void 0, x = t && t.length > 0,
|
|
29
|
-
event:
|
|
30
|
-
type:
|
|
30
|
+
} = r, t = l === "plans_list" ? r.plans : void 0, x = t && t.length > 0, g = l === "plans_list" ? r.selectedPlanId : void 0, d = t == null ? void 0 : t.find((n) => n.id === g), P = d ? `${(a == null ? void 0 : a.link) || c}?defaultDurationSelection=${d == null ? void 0 : d.durationAmount}` : (a == null ? void 0 : a.link) || c, S = l === "pricing_display" ? r.priceDisplay : void 0, D = {
|
|
31
|
+
event: C.ctaClicked,
|
|
32
|
+
type: A.interaction,
|
|
31
33
|
component: "Pricing",
|
|
32
34
|
payload: {
|
|
33
35
|
ctaLabel: (a == null ? void 0 : a.text) || "GET STARTED",
|
|
34
|
-
ctaLink:
|
|
35
|
-
productId:
|
|
36
|
+
ctaLink: P || c,
|
|
37
|
+
productId: h
|
|
36
38
|
}
|
|
37
39
|
}, I = (n) => {
|
|
38
|
-
var
|
|
40
|
+
var N;
|
|
39
41
|
if (l !== "plans_list" || !r.onSelectPlan) return;
|
|
40
42
|
r.onSelectPlan(n);
|
|
41
43
|
const s = t == null ? void 0 : t.find((_) => _.id === n), T = {
|
|
42
|
-
event:
|
|
44
|
+
event: C.userSelectedPlan,
|
|
43
45
|
location: "IPCv2",
|
|
44
|
-
type:
|
|
46
|
+
type: A.interaction,
|
|
45
47
|
payload: {
|
|
46
|
-
productId:
|
|
48
|
+
productId: h,
|
|
47
49
|
planId: n,
|
|
48
50
|
planPrice: s == null ? void 0 : s.price,
|
|
49
51
|
planDuration: s == null ? void 0 : s.duration
|
|
50
52
|
}
|
|
51
53
|
};
|
|
52
|
-
(
|
|
54
|
+
(N = window.eventBus) == null || N.emit("analytics", T);
|
|
53
55
|
};
|
|
54
56
|
return /* @__PURE__ */ i("section", { className: e.root, children: /* @__PURE__ */ o("div", { className: e.mainContainer, children: [
|
|
55
57
|
/* @__PURE__ */ o("div", { className: e.leftColumn, children: [
|
|
56
|
-
/* @__PURE__ */ i(
|
|
57
|
-
/* @__PURE__ */ i("div", { className:
|
|
58
|
-
|
|
58
|
+
p && p.items.length > 0 ? /* @__PURE__ */ i(F, { items: p.items, label: v }) : /* @__PURE__ */ i(L, { images: k, label: v }),
|
|
59
|
+
/* @__PURE__ */ i("div", { className: E(e.ratingContainer, e.mobileOnly), children: /* @__PURE__ */ i(b, { ...f }) }),
|
|
60
|
+
u && /* @__PURE__ */ i("div", { className: e.quoteWrapper, children: /* @__PURE__ */ i(O, { ...u }) })
|
|
59
61
|
] }),
|
|
60
62
|
/* @__PURE__ */ o("div", { className: e.rightColumn, children: [
|
|
61
63
|
/* @__PURE__ */ o("div", { className: e.header, children: [
|
|
62
|
-
/* @__PURE__ */ i(m, { as: "h1", defaultVariant: "displayXs", mobileVariant: "headingLg", children:
|
|
64
|
+
/* @__PURE__ */ i(m, { as: "h1", defaultVariant: "displayXs", mobileVariant: "headingLg", children: G }),
|
|
63
65
|
/* @__PURE__ */ i(
|
|
64
66
|
m,
|
|
65
67
|
{
|
|
@@ -67,34 +69,34 @@ const ii = (r) => {
|
|
|
67
69
|
defaultVariant: "bodyMd",
|
|
68
70
|
mobileVariant: "bodySm",
|
|
69
71
|
className: e.description,
|
|
70
|
-
children:
|
|
72
|
+
children: V
|
|
71
73
|
}
|
|
72
74
|
)
|
|
73
75
|
] }),
|
|
74
|
-
/* @__PURE__ */ i(
|
|
75
|
-
|
|
76
|
-
l === "pricing_display" &&
|
|
76
|
+
/* @__PURE__ */ i(j, { features: w }),
|
|
77
|
+
y && /* @__PURE__ */ i(q, { ...y }),
|
|
78
|
+
l === "pricing_display" && S && /* @__PURE__ */ i(z, { items: S }),
|
|
77
79
|
l === "plans_list" && x && /* @__PURE__ */ i("div", { className: e.plansSection, children: /* @__PURE__ */ o("div", { className: e.plans, children: [
|
|
78
80
|
/* @__PURE__ */ i(m, { as: "h4", defaultVariant: "labelSm", emphasis: !0, weight: "regular", children: "Subscribe & Save" }),
|
|
79
81
|
t.map((n) => /* @__PURE__ */ i(
|
|
80
|
-
|
|
82
|
+
B,
|
|
81
83
|
{
|
|
82
84
|
plan: n,
|
|
83
85
|
onSelect: I,
|
|
84
|
-
isActive:
|
|
86
|
+
isActive: g === n.id
|
|
85
87
|
},
|
|
86
88
|
n.id
|
|
87
89
|
))
|
|
88
90
|
] }) }),
|
|
89
|
-
/* @__PURE__ */ i("div", { className:
|
|
91
|
+
/* @__PURE__ */ i("div", { className: E(e.ratingContainer, e.desktopOnly), children: /* @__PURE__ */ i(b, { ...f }) }),
|
|
90
92
|
/* @__PURE__ */ o("div", { className: e.actions, children: [
|
|
91
93
|
/* @__PURE__ */ i(
|
|
92
|
-
|
|
94
|
+
M,
|
|
93
95
|
{
|
|
94
96
|
as: "a",
|
|
95
97
|
variant: "primary",
|
|
96
98
|
size: "lg",
|
|
97
|
-
href:
|
|
99
|
+
href: P || c,
|
|
98
100
|
analyticsProps: D,
|
|
99
101
|
children: (a == null ? void 0 : a.text) || "Get started"
|
|
100
102
|
}
|
|
@@ -105,5 +107,5 @@ const ii = (r) => {
|
|
|
105
107
|
] }) });
|
|
106
108
|
};
|
|
107
109
|
export {
|
|
108
|
-
|
|
110
|
+
ti as IndividualProductCardV2
|
|
109
111
|
};
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ETypeBadge } from '../../components/TypeBadge';
|
|
2
2
|
import { EIconName } from '../../components/Icon/constants';
|
|
3
|
+
import { TAdvancedGalleryView } from '../../components/AdvancedGallery';
|
|
3
4
|
|
|
4
5
|
export type TTypeBadge = 'senescence' | 'supplements' | 'outline' | 'energy' | 'metabolism' | 'labs';
|
|
5
6
|
export type TProductFeature = {
|
|
@@ -43,6 +44,7 @@ export type TIndividualProductCardV2Base = {
|
|
|
43
44
|
signupUrl: string;
|
|
44
45
|
name: string;
|
|
45
46
|
images: Array<string>;
|
|
47
|
+
advancedGallery?: TAdvancedGalleryView;
|
|
46
48
|
features: Array<TProductFeature>;
|
|
47
49
|
description?: string;
|
|
48
50
|
label?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const t=require("react"),S=()=>{const[n,s]=t.useState(null),[u,o]=t.useState(0),[c,l]=t.useState(!0),[f,i]=t.useState(!1),[r,d]=t.useState(!1),[b,h]=t.useState(!1),a=t.useCallback(e=>{o(e.activeIndex),i(e.isEnd),l(e.isBeginning)},[]),k=t.useCallback(()=>{n&&(n.slidePrev(),a(n))},[n,a]),v=t.useCallback(()=>{n&&(n.slideNext(),a(n))},[n,a]),g=t.useCallback(e=>{n&&(n.slideTo(e),a(n))},[n,a]),C=e=>{s(e),d(e==null?void 0:e.isLocked),h(e==null?void 0:e.isLocked),a(e)},E=t.useCallback(e=>{i(e.isEnd),d(e==null?void 0:e.isLocked),h(e==null?void 0:e.isLocked),a(e)},[a]),y=t.useCallback(()=>{i(!0),l(!1)},[]),L=t.useCallback(()=>{l(!0),i(!1)},[]);return{swiper:n,setSwiper:s,activeIndex:u,setActiveIndex:o,isEnd:f,setIsEnd:i,hideNav:r,handleSlideChange:a,handlePrevClick:k,handleNextClick:v,handleSlideTo:g,onSwiperInit:C,handleSwiperResize:E,isBeginning:c,isLocked:b,setIsBeginning:l,handleReachEnd:y,handleReachBeginning:L}},I=(n=3e3)=>{const s=S(),[u,o]=t.useState(!0),c=t.useRef(null),l=t.useCallback(()=>{o(!1),c.current&&(clearInterval(c.current),c.current=null)},[]),f=t.useCallback(()=>{o(!0)},[]),i=t.useCallback(()=>{l()},[l]);return t.useEffect(()=>{if(!(!u||!s.swiper||s.swiper.slides.length<=1))return c.current=setInterval(()=>{s.swiper&&(s.isEnd?s.swiper.slideTo(0):s.swiper.slideNext())},n),()=>{c.current&&(clearInterval(c.current),c.current=null)}},[u,s.swiper,s.isEnd,n]),t.useEffect(()=>{const r=()=>l(),d=()=>{document.hidden&&l()};return window.addEventListener("beforeunload",r),document.addEventListener("visibilitychange",d),()=>{window.removeEventListener("beforeunload",r),document.removeEventListener("visibilitychange",d)}},[l]),{...s,isAutoPlay:u,stopAutoPlay:l,startAutoPlay:f,handleUserInteraction:i}};exports.useSwiper=S;exports.useSwiperWithAutoPlay=I;
|
|
@@ -1,78 +1,79 @@
|
|
|
1
|
-
import { useState as
|
|
1
|
+
import { useState as d, useCallback as o, useRef as y, useEffect as g } from "react";
|
|
2
2
|
const A = () => {
|
|
3
|
-
const [n, t] =
|
|
4
|
-
a(e.activeIndex),
|
|
5
|
-
}, []),
|
|
6
|
-
n && (n.slidePrev(),
|
|
7
|
-
}, [n,
|
|
8
|
-
n && (n.slideNext(),
|
|
9
|
-
}, [n,
|
|
3
|
+
const [n, t] = d(null), [r, a] = d(0), [c, s] = d(!0), [h, l] = d(!1), [f, u] = d(!1), [E, v] = d(!1), i = o((e) => {
|
|
4
|
+
a(e.activeIndex), l(e.isEnd), s(e.isBeginning);
|
|
5
|
+
}, []), L = o(() => {
|
|
6
|
+
n && (n.slidePrev(), i(n));
|
|
7
|
+
}, [n, i]), k = o(() => {
|
|
8
|
+
n && (n.slideNext(), i(n));
|
|
9
|
+
}, [n, i]), I = o(
|
|
10
10
|
(e) => {
|
|
11
|
-
n && (n.slideTo(e),
|
|
11
|
+
n && (n.slideTo(e), i(n));
|
|
12
12
|
},
|
|
13
|
-
[n,
|
|
14
|
-
),
|
|
15
|
-
t(e), u(e == null ? void 0 : e.isLocked),
|
|
16
|
-
},
|
|
13
|
+
[n, i]
|
|
14
|
+
), S = (e) => {
|
|
15
|
+
t(e), u(e == null ? void 0 : e.isLocked), v(e == null ? void 0 : e.isLocked), i(e);
|
|
16
|
+
}, m = o(
|
|
17
17
|
(e) => {
|
|
18
|
-
|
|
18
|
+
l(e.isEnd), u(e == null ? void 0 : e.isLocked), v(e == null ? void 0 : e.isLocked), i(e);
|
|
19
19
|
},
|
|
20
|
-
[
|
|
21
|
-
), b =
|
|
22
|
-
|
|
23
|
-
}, []), x =
|
|
24
|
-
|
|
20
|
+
[i]
|
|
21
|
+
), b = o(() => {
|
|
22
|
+
l(!0), s(!1);
|
|
23
|
+
}, []), x = o(() => {
|
|
24
|
+
s(!0), l(!1);
|
|
25
25
|
}, []);
|
|
26
26
|
return {
|
|
27
27
|
swiper: n,
|
|
28
28
|
setSwiper: t,
|
|
29
|
-
activeIndex:
|
|
29
|
+
activeIndex: r,
|
|
30
30
|
setActiveIndex: a,
|
|
31
31
|
isEnd: h,
|
|
32
|
-
setIsEnd:
|
|
32
|
+
setIsEnd: l,
|
|
33
33
|
hideNav: f,
|
|
34
|
-
handleSlideChange:
|
|
35
|
-
handlePrevClick:
|
|
36
|
-
handleNextClick:
|
|
37
|
-
handleSlideTo:
|
|
38
|
-
onSwiperInit:
|
|
39
|
-
handleSwiperResize:
|
|
40
|
-
isBeginning:
|
|
41
|
-
|
|
34
|
+
handleSlideChange: i,
|
|
35
|
+
handlePrevClick: L,
|
|
36
|
+
handleNextClick: k,
|
|
37
|
+
handleSlideTo: I,
|
|
38
|
+
onSwiperInit: S,
|
|
39
|
+
handleSwiperResize: m,
|
|
40
|
+
isBeginning: c,
|
|
41
|
+
isLocked: E,
|
|
42
|
+
setIsBeginning: s,
|
|
42
43
|
handleReachEnd: b,
|
|
43
44
|
handleReachBeginning: x
|
|
44
45
|
};
|
|
45
|
-
},
|
|
46
|
-
const t = A(), [
|
|
47
|
-
a(!1),
|
|
48
|
-
}, []), h =
|
|
46
|
+
}, B = (n = 3e3) => {
|
|
47
|
+
const t = A(), [r, a] = d(!0), c = y(null), s = o(() => {
|
|
48
|
+
a(!1), c.current && (clearInterval(c.current), c.current = null);
|
|
49
|
+
}, []), h = o(() => {
|
|
49
50
|
a(!0);
|
|
50
|
-
}, []),
|
|
51
|
-
|
|
52
|
-
}, [
|
|
53
|
-
return
|
|
54
|
-
if (!(!
|
|
55
|
-
return
|
|
51
|
+
}, []), l = o(() => {
|
|
52
|
+
s();
|
|
53
|
+
}, [s]);
|
|
54
|
+
return g(() => {
|
|
55
|
+
if (!(!r || !t.swiper || t.swiper.slides.length <= 1))
|
|
56
|
+
return c.current = setInterval(() => {
|
|
56
57
|
t.swiper && (t.isEnd ? t.swiper.slideTo(0) : t.swiper.slideNext());
|
|
57
58
|
}, n), () => {
|
|
58
|
-
|
|
59
|
+
c.current && (clearInterval(c.current), c.current = null);
|
|
59
60
|
};
|
|
60
|
-
}, [
|
|
61
|
-
const f = () =>
|
|
62
|
-
document.hidden &&
|
|
61
|
+
}, [r, t.swiper, t.isEnd, n]), g(() => {
|
|
62
|
+
const f = () => s(), u = () => {
|
|
63
|
+
document.hidden && s();
|
|
63
64
|
};
|
|
64
65
|
return window.addEventListener("beforeunload", f), document.addEventListener("visibilitychange", u), () => {
|
|
65
66
|
window.removeEventListener("beforeunload", f), document.removeEventListener("visibilitychange", u);
|
|
66
67
|
};
|
|
67
|
-
}, [
|
|
68
|
+
}, [s]), {
|
|
68
69
|
...t,
|
|
69
|
-
isAutoPlay:
|
|
70
|
-
stopAutoPlay:
|
|
70
|
+
isAutoPlay: r,
|
|
71
|
+
stopAutoPlay: s,
|
|
71
72
|
startAutoPlay: h,
|
|
72
|
-
handleUserInteraction:
|
|
73
|
+
handleUserInteraction: l
|
|
73
74
|
};
|
|
74
75
|
};
|
|
75
76
|
export {
|
|
76
77
|
A as useSwiper,
|
|
77
|
-
|
|
78
|
+
B as useSwiperWithAutoPlay
|
|
78
79
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zenpatient-org/healthspan-marketing-ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.49",
|
|
4
4
|
"description": "Design system",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.es.js",
|
|
@@ -161,10 +161,10 @@
|
|
|
161
161
|
"import": "./dist/components/Tabs/Tabs.es.js",
|
|
162
162
|
"require": "./dist/components/Tabs/Tabs.cjs.js"
|
|
163
163
|
},
|
|
164
|
-
"./
|
|
165
|
-
"types": "./dist/components/
|
|
166
|
-
"import": "./dist/components/
|
|
167
|
-
"require": "./dist/components/
|
|
164
|
+
"./Quote": {
|
|
165
|
+
"types": "./dist/components/Quote/index.d.ts",
|
|
166
|
+
"import": "./dist/components/Quote/Quote.es.js",
|
|
167
|
+
"require": "./dist/components/Quote/Quote.cjs.js"
|
|
168
168
|
},
|
|
169
169
|
"./StudyGridCard": {
|
|
170
170
|
"types": "./dist/components/StudyGridCard/StudyGridCard.d.ts",
|
|
@@ -261,6 +261,11 @@
|
|
|
261
261
|
"import": "./dist/components/Accordion/Accordion.es.js",
|
|
262
262
|
"require": "./dist/components/Accordion/Accordion.cjs.js"
|
|
263
263
|
},
|
|
264
|
+
"./AdvancedGallery": {
|
|
265
|
+
"types": "./dist/components/AdvancedGallery/AdvancedGallery.d.ts",
|
|
266
|
+
"import": "./dist/components/AdvancedGallery/AdvancedGallery.es.js",
|
|
267
|
+
"require": "./dist/components/AdvancedGallery/AdvancedGallery.cjs.js"
|
|
268
|
+
},
|
|
264
269
|
"./FAQComponent": {
|
|
265
270
|
"types": "./dist/components/FAQComponent/FAQComponent.d.ts",
|
|
266
271
|
"import": "./dist/components/FAQComponent/FAQComponent.es.js",
|