@planetaexo/design-system 0.77.1 → 0.79.0
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/index.cjs +252 -30
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +39 -4
- package/dist/index.d.ts +39 -4
- package/dist/index.js +252 -31
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1544,12 +1544,28 @@ function AdventureCard({
|
|
|
1544
1544
|
item
|
|
1545
1545
|
] }, i)) })
|
|
1546
1546
|
] }),
|
|
1547
|
-
adventure.cancellationPolicy && adventure.cancellationPolicy.
|
|
1547
|
+
adventure.cancellationPolicy && adventure.cancellationPolicy.trim() && /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-2.5 mt-1", children: [
|
|
1548
1548
|
/* @__PURE__ */ jsx("h4", { className: "text-base font-bold text-foreground font-heading", children: (_r = adventure.cancellationPolicyLabel) != null ? _r : "Cancellation policy" }),
|
|
1549
|
-
/* @__PURE__ */ jsx(
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1549
|
+
/* @__PURE__ */ jsx(
|
|
1550
|
+
"div",
|
|
1551
|
+
{
|
|
1552
|
+
className: cn(
|
|
1553
|
+
"text-foreground",
|
|
1554
|
+
"[&_p]:text-base [&_p]:text-foreground/80 [&_p]:leading-snug [&_p]:mb-2",
|
|
1555
|
+
"[&_strong]:font-bold [&_strong]:text-foreground",
|
|
1556
|
+
"[&_em]:italic",
|
|
1557
|
+
"[&_a]:text-primary [&_a]:underline [&_a]:underline-offset-2",
|
|
1558
|
+
"[&_ul:not(.list-check):not(.list-cross)]:list-disc [&_ul:not(.list-check):not(.list-cross)]:pl-5 [&_ul:not(.list-check):not(.list-cross)]:space-y-1",
|
|
1559
|
+
"[&_ol]:list-decimal [&_ol]:pl-5 [&_ol]:space-y-1",
|
|
1560
|
+
"[&_li]:text-base [&_li]:text-muted-foreground [&_li]:leading-snug",
|
|
1561
|
+
"[&_.list-check]:list-none [&_.list-check]:pl-5 [&_.list-check]:space-y-1",
|
|
1562
|
+
"[&_.list-check_li]:relative [&_.list-check_li]:before:absolute [&_.list-check_li]:before:-left-5 [&_.list-check_li]:before:content-['\u2713'] [&_.list-check_li]:before:text-primary [&_.list-check_li]:before:font-bold",
|
|
1563
|
+
"[&_.list-cross]:list-none [&_.list-cross]:pl-5 [&_.list-cross]:space-y-1",
|
|
1564
|
+
"[&_.list-cross_li]:relative [&_.list-cross_li]:before:absolute [&_.list-cross_li]:before:-left-5 [&_.list-cross_li]:before:content-['\u2717'] [&_.list-cross_li]:before:text-destructive [&_.list-cross_li]:before:font-bold"
|
|
1565
|
+
),
|
|
1566
|
+
dangerouslySetInnerHTML: { __html: adventure.cancellationPolicy }
|
|
1567
|
+
}
|
|
1568
|
+
)
|
|
1553
1569
|
] })
|
|
1554
1570
|
] })
|
|
1555
1571
|
] });
|
|
@@ -2845,19 +2861,24 @@ function AdventureSection({
|
|
|
2845
2861
|
i
|
|
2846
2862
|
)) })
|
|
2847
2863
|
] }),
|
|
2848
|
-
adventure.cancellationPolicy && adventure.cancellationPolicy.
|
|
2864
|
+
adventure.cancellationPolicy && adventure.cancellationPolicy.trim() && /* @__PURE__ */ jsxs("div", { className: "flex flex-col gap-2", children: [
|
|
2849
2865
|
/* @__PURE__ */ jsx("h4", { className: "text-xs font-bold text-muted-foreground font-heading uppercase tracking-widest", children: (_k = (_j = labels == null ? void 0 : labels.adventureSections) == null ? void 0 : _j.cancellationPolicy) != null ? _k : "Cancellation policy" }),
|
|
2850
|
-
/* @__PURE__ */ jsx(
|
|
2851
|
-
"
|
|
2866
|
+
/* @__PURE__ */ jsx(
|
|
2867
|
+
"div",
|
|
2852
2868
|
{
|
|
2853
|
-
className:
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2869
|
+
className: cn(
|
|
2870
|
+
"text-foreground",
|
|
2871
|
+
"[&_p]:text-sm [&_p]:text-foreground/80 [&_p]:leading-snug [&_p]:mb-2",
|
|
2872
|
+
"[&_strong]:font-bold [&_strong]:text-foreground",
|
|
2873
|
+
"[&_em]:italic",
|
|
2874
|
+
"[&_a]:text-primary [&_a]:underline [&_a]:underline-offset-2",
|
|
2875
|
+
"[&_ul]:list-disc [&_ul]:pl-5 [&_ul]:space-y-1",
|
|
2876
|
+
"[&_ol]:list-decimal [&_ol]:pl-5 [&_ol]:space-y-1",
|
|
2877
|
+
"[&_li]:text-sm [&_li]:text-muted-foreground [&_li]:leading-snug"
|
|
2878
|
+
),
|
|
2879
|
+
dangerouslySetInnerHTML: { __html: adventure.cancellationPolicy }
|
|
2880
|
+
}
|
|
2881
|
+
)
|
|
2861
2882
|
] })
|
|
2862
2883
|
] }),
|
|
2863
2884
|
adventure.rooms && adventure.rooms.length > 0 && /* @__PURE__ */ jsxs("div", { className: "border-t border-border px-5 lg:px-6 py-5 flex flex-col gap-3", children: [
|
|
@@ -4118,6 +4139,7 @@ var DEFAULT_LABELS = {
|
|
|
4118
4139
|
lineItemEquals: "=",
|
|
4119
4140
|
includedHeading: "O que est\xE1 incluso",
|
|
4120
4141
|
notIncludedHeading: "O que n\xE3o est\xE1 incluso",
|
|
4142
|
+
cancellationPolicyHeading: "Cancellation policy",
|
|
4121
4143
|
childBadge: "child",
|
|
4122
4144
|
adultsUnit: "adult(s)",
|
|
4123
4145
|
childrenUnit: "child(ren)",
|
|
@@ -4149,6 +4171,7 @@ function BookingAdventureCard({
|
|
|
4149
4171
|
partner,
|
|
4150
4172
|
included,
|
|
4151
4173
|
notIncluded,
|
|
4174
|
+
cancellationPolicy,
|
|
4152
4175
|
lineItems,
|
|
4153
4176
|
subtotal,
|
|
4154
4177
|
rooms,
|
|
@@ -4156,7 +4179,7 @@ function BookingAdventureCard({
|
|
|
4156
4179
|
labels,
|
|
4157
4180
|
className
|
|
4158
4181
|
}) {
|
|
4159
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z;
|
|
4182
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _A;
|
|
4160
4183
|
const l = {
|
|
4161
4184
|
travellersHeading: (_a = labels == null ? void 0 : labels.travellersHeading) != null ? _a : DEFAULT_LABELS.travellersHeading,
|
|
4162
4185
|
detailsHeading: (_b = labels == null ? void 0 : labels.detailsHeading) != null ? _b : DEFAULT_LABELS.detailsHeading,
|
|
@@ -4167,18 +4190,19 @@ function BookingAdventureCard({
|
|
|
4167
4190
|
lineItemEquals: (_g = labels == null ? void 0 : labels.lineItemEquals) != null ? _g : DEFAULT_LABELS.lineItemEquals,
|
|
4168
4191
|
includedHeading: (_h = labels == null ? void 0 : labels.includedHeading) != null ? _h : DEFAULT_LABELS.includedHeading,
|
|
4169
4192
|
notIncludedHeading: (_i = labels == null ? void 0 : labels.notIncludedHeading) != null ? _i : DEFAULT_LABELS.notIncludedHeading,
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
|
|
4174
|
-
|
|
4193
|
+
cancellationPolicyHeading: (_j = labels == null ? void 0 : labels.cancellationPolicyHeading) != null ? _j : DEFAULT_LABELS.cancellationPolicyHeading,
|
|
4194
|
+
childBadge: (_k = labels == null ? void 0 : labels.childBadge) != null ? _k : DEFAULT_LABELS.childBadge,
|
|
4195
|
+
adultsUnit: (_l = labels == null ? void 0 : labels.adultsUnit) != null ? _l : DEFAULT_LABELS.adultsUnit,
|
|
4196
|
+
childrenUnit: (_m = labels == null ? void 0 : labels.childrenUnit) != null ? _m : DEFAULT_LABELS.childrenUnit,
|
|
4197
|
+
accommodationsHeading: (_n = labels == null ? void 0 : labels.accommodationsHeading) != null ? _n : DEFAULT_LABELS.accommodationsHeading,
|
|
4198
|
+
accommodationRoomHeading: (_o = labels == null ? void 0 : labels.accommodationRoomHeading) != null ? _o : DEFAULT_LABELS.accommodationRoomHeading,
|
|
4175
4199
|
bedArrangementLabels: {
|
|
4176
|
-
DOUBLE: (
|
|
4177
|
-
TWIN: (
|
|
4178
|
-
SINGLE: (
|
|
4179
|
-
TRIPLE: (
|
|
4180
|
-
QUADRUPLE: (
|
|
4181
|
-
QUINTUPLE: (
|
|
4200
|
+
DOUBLE: (_q = (_p = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _p.DOUBLE) != null ? _q : DEFAULT_LABELS.bedArrangementLabels.DOUBLE,
|
|
4201
|
+
TWIN: (_s = (_r = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _r.TWIN) != null ? _s : DEFAULT_LABELS.bedArrangementLabels.TWIN,
|
|
4202
|
+
SINGLE: (_u = (_t = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _t.SINGLE) != null ? _u : DEFAULT_LABELS.bedArrangementLabels.SINGLE,
|
|
4203
|
+
TRIPLE: (_w = (_v = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _v.TRIPLE) != null ? _w : DEFAULT_LABELS.bedArrangementLabels.TRIPLE,
|
|
4204
|
+
QUADRUPLE: (_y = (_x = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _x.QUADRUPLE) != null ? _y : DEFAULT_LABELS.bedArrangementLabels.QUADRUPLE,
|
|
4205
|
+
QUINTUPLE: (_A = (_z = labels == null ? void 0 : labels.bedArrangementLabels) == null ? void 0 : _z.QUINTUPLE) != null ? _A : DEFAULT_LABELS.bedArrangementLabels.QUINTUPLE
|
|
4182
4206
|
}
|
|
4183
4207
|
};
|
|
4184
4208
|
const hasTravellers = !!travellers && travellers.length > 0;
|
|
@@ -4186,6 +4210,7 @@ function BookingAdventureCard({
|
|
|
4186
4210
|
const hasDescription = !!description && description.trim().length > 0;
|
|
4187
4211
|
const hasIncluded = !!included && included.length > 0;
|
|
4188
4212
|
const hasNotIncluded = !!notIncluded && notIncluded.length > 0;
|
|
4213
|
+
const hasCancellationPolicy = !!cancellationPolicy && cancellationPolicy.trim().length > 0;
|
|
4189
4214
|
const hasLineItems = lineItems.length > 0;
|
|
4190
4215
|
const hasRooms = !!rooms && rooms.length > 0;
|
|
4191
4216
|
const dateRange = endDate ? `${startDate} \u2192 ${endDate}` : startDate;
|
|
@@ -4870,6 +4895,32 @@ function BookingAdventureCard({
|
|
|
4870
4895
|
i
|
|
4871
4896
|
))
|
|
4872
4897
|
] }),
|
|
4898
|
+
hasCancellationPolicy && /* @__PURE__ */ jsxs("div", { style: { marginTop: "10px" }, children: [
|
|
4899
|
+
/* @__PURE__ */ jsx(
|
|
4900
|
+
"h4",
|
|
4901
|
+
{
|
|
4902
|
+
style: {
|
|
4903
|
+
fontSize: "14px",
|
|
4904
|
+
fontWeight: 700,
|
|
4905
|
+
color: emailTokens.foreground,
|
|
4906
|
+
margin: "0 0 8px 0"
|
|
4907
|
+
},
|
|
4908
|
+
children: l.cancellationPolicyHeading
|
|
4909
|
+
}
|
|
4910
|
+
),
|
|
4911
|
+
/* @__PURE__ */ jsx(
|
|
4912
|
+
"div",
|
|
4913
|
+
{
|
|
4914
|
+
style: {
|
|
4915
|
+
fontSize: "14px",
|
|
4916
|
+
color: emailTokens.bodyText,
|
|
4917
|
+
lineHeight: "1.4",
|
|
4918
|
+
margin: 0
|
|
4919
|
+
},
|
|
4920
|
+
dangerouslySetInnerHTML: { __html: cancellationPolicy }
|
|
4921
|
+
}
|
|
4922
|
+
)
|
|
4923
|
+
] }),
|
|
4873
4924
|
hasLineItems && /* @__PURE__ */ jsxs("div", { style: { marginTop: "4px" }, children: [
|
|
4874
4925
|
/* @__PURE__ */ jsx(
|
|
4875
4926
|
"hr",
|
|
@@ -5262,6 +5313,7 @@ var DEFAULT_LABELS3 = {
|
|
|
5262
5313
|
itineraryLabel: "Details",
|
|
5263
5314
|
includedLabel: "O que est\xE1 incluso",
|
|
5264
5315
|
notIncludedLabel: "O que n\xE3o est\xE1 incluso",
|
|
5316
|
+
cancellationPolicyLabel: "Cancellation policy",
|
|
5265
5317
|
pricingLabel: "Pricing",
|
|
5266
5318
|
subtotalLabel: "Subtotal",
|
|
5267
5319
|
totalLabel: "Total",
|
|
@@ -5440,6 +5492,7 @@ function BookingPaymentConfirmationEmail({
|
|
|
5440
5492
|
partner: adventure.partnerName,
|
|
5441
5493
|
included: adventure.included,
|
|
5442
5494
|
notIncluded: adventure.notIncluded,
|
|
5495
|
+
cancellationPolicy: adventure.cancellationPolicy,
|
|
5443
5496
|
lineItems: lineItemsToPass,
|
|
5444
5497
|
subtotal: adventure.subtotal,
|
|
5445
5498
|
rooms: adventure.rooms,
|
|
@@ -5451,6 +5504,7 @@ function BookingPaymentConfirmationEmail({
|
|
|
5451
5504
|
subtotalLabel: l.subtotalLabel,
|
|
5452
5505
|
includedHeading: l.includedLabel,
|
|
5453
5506
|
notIncludedHeading: l.notIncludedLabel,
|
|
5507
|
+
cancellationPolicyHeading: l.cancellationPolicyLabel,
|
|
5454
5508
|
childBadge: l.childBadge,
|
|
5455
5509
|
adultsUnit: l.adultsUnit,
|
|
5456
5510
|
childrenUnit: l.childrenUnit,
|
|
@@ -10408,9 +10462,15 @@ function CancellationForm({
|
|
|
10408
10462
|
] })
|
|
10409
10463
|
] }),
|
|
10410
10464
|
selected && /* @__PURE__ */ jsxs("div", { className: "mt-4 pl-7 space-y-4", children: [
|
|
10411
|
-
adv.cancellationPolicy && /* @__PURE__ */ jsxs("div", { className: "rounded-md bg-muted/50 border border-border p-3", children: [
|
|
10465
|
+
adv.cancellationPolicy && adv.cancellationPolicy.trim() && /* @__PURE__ */ jsxs("div", { className: "rounded-md bg-muted/50 border border-border p-3", children: [
|
|
10412
10466
|
/* @__PURE__ */ jsx("p", { className: "text-xs font-ui font-semibold uppercase tracking-wide text-muted-foreground mb-1", children: labels.policyHeading }),
|
|
10413
|
-
/* @__PURE__ */ jsx(
|
|
10467
|
+
/* @__PURE__ */ jsx(
|
|
10468
|
+
"div",
|
|
10469
|
+
{
|
|
10470
|
+
className: "text-sm text-foreground [&_ul]:list-disc [&_ul]:pl-5 [&_ol]:list-decimal [&_ol]:pl-5 [&_li]:mb-1 [&_p]:mb-2 [&_p:last-child]:mb-0 [&_a]:underline",
|
|
10471
|
+
dangerouslySetInnerHTML: { __html: adv.cancellationPolicy }
|
|
10472
|
+
}
|
|
10473
|
+
)
|
|
10414
10474
|
] }),
|
|
10415
10475
|
adv.participants.length > 0 && /* @__PURE__ */ jsxs("div", { children: [
|
|
10416
10476
|
/* @__PURE__ */ jsx("p", { className: "text-xs font-ui font-semibold uppercase tracking-wide text-muted-foreground mb-2", children: labels.participantsHeading }),
|
|
@@ -19174,6 +19234,167 @@ function USP({
|
|
|
19174
19234
|
)
|
|
19175
19235
|
] }) });
|
|
19176
19236
|
}
|
|
19237
|
+
var C = {
|
|
19238
|
+
imageOverlay: "linear-gradient(90deg, rgba(7,33,27,.93) 0%, rgba(8,42,34,.82) 52%, rgba(8,42,34,.62) 100%)",
|
|
19239
|
+
baseBg: "#0a2c25",
|
|
19240
|
+
eyebrow: "#a7e8c4",
|
|
19241
|
+
head: "#f4f1e9",
|
|
19242
|
+
sub: "rgba(244,241,233,.78)",
|
|
19243
|
+
desc: "rgba(244,241,233,.72)",
|
|
19244
|
+
divider: "rgba(244,241,233,.16)",
|
|
19245
|
+
chipBg: "rgba(167,232,196,.16)",
|
|
19246
|
+
chipIcon: "#bff0d6",
|
|
19247
|
+
ctaBg: "#bff0d6",
|
|
19248
|
+
ctaText: "#08231e"
|
|
19249
|
+
};
|
|
19250
|
+
var COLS2 = {
|
|
19251
|
+
2: "sm:grid-cols-2",
|
|
19252
|
+
3: "sm:grid-cols-2 lg:grid-cols-3",
|
|
19253
|
+
4: "sm:grid-cols-2 lg:grid-cols-4"
|
|
19254
|
+
};
|
|
19255
|
+
var ArrowIcon3 = () => /* @__PURE__ */ jsxs(
|
|
19256
|
+
"svg",
|
|
19257
|
+
{
|
|
19258
|
+
viewBox: "0 0 24 24",
|
|
19259
|
+
width: "18",
|
|
19260
|
+
height: "18",
|
|
19261
|
+
fill: "none",
|
|
19262
|
+
stroke: "currentColor",
|
|
19263
|
+
strokeWidth: 2,
|
|
19264
|
+
strokeLinecap: "round",
|
|
19265
|
+
strokeLinejoin: "round",
|
|
19266
|
+
"aria-hidden": true,
|
|
19267
|
+
className: "ml-2",
|
|
19268
|
+
children: [
|
|
19269
|
+
/* @__PURE__ */ jsx("path", { d: "M5 12h14" }),
|
|
19270
|
+
/* @__PURE__ */ jsx("path", { d: "m12 5 7 7-7 7" })
|
|
19271
|
+
]
|
|
19272
|
+
}
|
|
19273
|
+
);
|
|
19274
|
+
function USPBand({
|
|
19275
|
+
eyebrow,
|
|
19276
|
+
heading,
|
|
19277
|
+
subheading,
|
|
19278
|
+
items,
|
|
19279
|
+
imageSrc,
|
|
19280
|
+
cta,
|
|
19281
|
+
columns,
|
|
19282
|
+
className
|
|
19283
|
+
}) {
|
|
19284
|
+
const cols = columns != null ? columns : Math.min(Math.max(items.length, 2), 4);
|
|
19285
|
+
return /* @__PURE__ */ jsxs(
|
|
19286
|
+
"section",
|
|
19287
|
+
{
|
|
19288
|
+
className: cn("relative w-full overflow-hidden", className),
|
|
19289
|
+
style: { backgroundColor: C.baseBg },
|
|
19290
|
+
children: [
|
|
19291
|
+
imageSrc && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
19292
|
+
/* @__PURE__ */ jsx(
|
|
19293
|
+
"img",
|
|
19294
|
+
{
|
|
19295
|
+
src: imageSrc,
|
|
19296
|
+
alt: "",
|
|
19297
|
+
"aria-hidden": true,
|
|
19298
|
+
loading: "lazy",
|
|
19299
|
+
decoding: "async",
|
|
19300
|
+
className: "absolute inset-0 h-full w-full object-cover"
|
|
19301
|
+
}
|
|
19302
|
+
),
|
|
19303
|
+
/* @__PURE__ */ jsx(
|
|
19304
|
+
"div",
|
|
19305
|
+
{
|
|
19306
|
+
"aria-hidden": true,
|
|
19307
|
+
className: "absolute inset-0",
|
|
19308
|
+
style: { background: C.imageOverlay }
|
|
19309
|
+
}
|
|
19310
|
+
)
|
|
19311
|
+
] }),
|
|
19312
|
+
/* @__PURE__ */ jsxs("div", { className: "relative mx-auto w-full max-w-6xl px-6 py-20 sm:px-8 sm:py-24", children: [
|
|
19313
|
+
eyebrow && /* @__PURE__ */ jsx(
|
|
19314
|
+
"p",
|
|
19315
|
+
{
|
|
19316
|
+
className: "font-heading text-xs font-bold uppercase tracking-[0.2em]",
|
|
19317
|
+
style: { color: C.eyebrow },
|
|
19318
|
+
children: eyebrow
|
|
19319
|
+
}
|
|
19320
|
+
),
|
|
19321
|
+
/* @__PURE__ */ jsx(
|
|
19322
|
+
"h2",
|
|
19323
|
+
{
|
|
19324
|
+
className: "mt-4 max-w-[15ch] font-heading text-3xl font-black uppercase leading-[0.98] tracking-tight sm:text-4xl lg:text-5xl",
|
|
19325
|
+
style: { color: C.head },
|
|
19326
|
+
children: heading
|
|
19327
|
+
}
|
|
19328
|
+
),
|
|
19329
|
+
subheading && /* @__PURE__ */ jsx(
|
|
19330
|
+
"p",
|
|
19331
|
+
{
|
|
19332
|
+
className: "mt-4 max-w-[52ch] font-sans text-lg leading-relaxed",
|
|
19333
|
+
style: { color: C.sub },
|
|
19334
|
+
children: subheading
|
|
19335
|
+
}
|
|
19336
|
+
),
|
|
19337
|
+
cta && /* @__PURE__ */ jsxs(
|
|
19338
|
+
"a",
|
|
19339
|
+
{
|
|
19340
|
+
href: cta.href,
|
|
19341
|
+
onClick: cta.onClick,
|
|
19342
|
+
className: "mt-7 inline-flex items-center rounded-full px-6 py-3 font-heading text-sm font-bold uppercase tracking-wide no-underline transition-transform duration-200 hover:-translate-y-0.5",
|
|
19343
|
+
style: { backgroundColor: C.ctaBg, color: C.ctaText },
|
|
19344
|
+
children: [
|
|
19345
|
+
cta.label,
|
|
19346
|
+
/* @__PURE__ */ jsx(ArrowIcon3, {})
|
|
19347
|
+
]
|
|
19348
|
+
}
|
|
19349
|
+
),
|
|
19350
|
+
/* @__PURE__ */ jsx(
|
|
19351
|
+
"div",
|
|
19352
|
+
{
|
|
19353
|
+
className: cn(
|
|
19354
|
+
"mt-14 grid grid-cols-1 gap-x-8 gap-y-10 lg:gap-x-0",
|
|
19355
|
+
COLS2[cols]
|
|
19356
|
+
),
|
|
19357
|
+
children: items.map((item, i) => /* @__PURE__ */ jsxs(
|
|
19358
|
+
"div",
|
|
19359
|
+
{
|
|
19360
|
+
className: "lg:px-7 lg:[&:first-child]:pl-0 lg:[&:not(:first-child)]:border-l lg:[&:not(:first-child)]:border-solid",
|
|
19361
|
+
style: { borderColor: C.divider },
|
|
19362
|
+
children: [
|
|
19363
|
+
item.icon && /* @__PURE__ */ jsx(
|
|
19364
|
+
"span",
|
|
19365
|
+
{
|
|
19366
|
+
className: "mb-5 flex h-[54px] w-[54px] items-center justify-center rounded-full [&>svg]:size-6",
|
|
19367
|
+
style: { backgroundColor: C.chipBg, color: C.chipIcon },
|
|
19368
|
+
children: item.icon
|
|
19369
|
+
}
|
|
19370
|
+
),
|
|
19371
|
+
/* @__PURE__ */ jsx(
|
|
19372
|
+
"h3",
|
|
19373
|
+
{
|
|
19374
|
+
className: "font-heading text-lg font-bold leading-snug",
|
|
19375
|
+
style: { color: C.head },
|
|
19376
|
+
children: item.title
|
|
19377
|
+
}
|
|
19378
|
+
),
|
|
19379
|
+
/* @__PURE__ */ jsx(
|
|
19380
|
+
"p",
|
|
19381
|
+
{
|
|
19382
|
+
className: "mt-3 font-sans text-[15px] leading-relaxed",
|
|
19383
|
+
style: { color: C.desc },
|
|
19384
|
+
children: item.description
|
|
19385
|
+
}
|
|
19386
|
+
)
|
|
19387
|
+
]
|
|
19388
|
+
},
|
|
19389
|
+
i
|
|
19390
|
+
))
|
|
19391
|
+
}
|
|
19392
|
+
)
|
|
19393
|
+
] })
|
|
19394
|
+
]
|
|
19395
|
+
}
|
|
19396
|
+
);
|
|
19397
|
+
}
|
|
19177
19398
|
function RotatingSubtitle({
|
|
19178
19399
|
phrases,
|
|
19179
19400
|
interval,
|
|
@@ -19791,6 +20012,6 @@ function SegmentedControl({
|
|
|
19791
20012
|
);
|
|
19792
20013
|
}
|
|
19793
20014
|
|
|
19794
|
-
export { ActivityCard, AdventureExplorer, AgentContactCard, Alert, AskExo, BirthDateField, BlogCard, BlogJournal, BlogPost, BookingAdventureCard, BookingCancellationEmail, BookingConfirmedCard, BookingCreatedEmail, BookingDetails, BookingForm, BookingOtpEmail, BookingPartialCancellationEmail, BookingPaymentConfirmationEmail, BookingShell, BookingSummary, Button, COUNTRIES, CancellationForm, CancellationRequestReceivedEmail, CategoryPage2, Chip, CounterField, CountrySearchField, CtaBanner, DEFAULT_FOOTER_BADGES, DEFAULT_FOOTER_DESTINATIONS, DEFAULT_FOOTER_LANGUAGES, DEFAULT_FOOTER_LEGAL, DEFAULT_FOOTER_PAGES, DEFAULT_FOOTER_SOCIALS, DEFAULT_FOOTER_THEMES, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, STATUS_MAP as DEPARTURE_STATUS_MAP, DatePickerField, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, ExoOrb, FilterPanel, FloatingInput, FloatingSelect, GroupProgressBar, GroupStatusBanner, HomeHeader, Itinerary, ItineraryDay, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, MenuTrip, NewHome, NotificationEmail, OTPCodeInput, Offer, OfferAdventureCard, ParticipantCounter, ParticipantList, PartnerBookingCreatedEmail, PartnerRegistrationCompleteEmail, PaymentAmountSelector, PaymentDetailsBlock, PaymentMethodSelector, PaymentModalShell, PaymentReceiptEmail, PaymentReminderEmail, PhoneCountrySelect, PhotoGallery, PhotoTourProvider, Picture, PriceProgress, PricingMatrixCard, PricingTrip, RegistrationForm, RegistrationProgressBar, RegistrationReminderEmail, RegistrationReminderIndividualEmail, RegistrationSuccessCard, SegmentedControl, ShareWidget, SiteFooter, SiteHeader, StatusBadge2 as StatusBadge, StickyBookingCard, TERMS_ACCEPT_KEY, TermsSection, ThemeToggle, Toast, TransferDetailsBlock, TravellerFormInviteEmail, TripCard, TripHeader, TripPage, TrustpilotEmbed, USP, buttonVariants, chipVariants, cn, emailTokens, formatCpf, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, validateCpf, webpVariantUrl, wrapEmailHtml };
|
|
20015
|
+
export { ActivityCard, AdventureExplorer, AgentContactCard, Alert, AskExo, BirthDateField, BlogCard, BlogJournal, BlogPost, BookingAdventureCard, BookingCancellationEmail, BookingConfirmedCard, BookingCreatedEmail, BookingDetails, BookingForm, BookingOtpEmail, BookingPartialCancellationEmail, BookingPaymentConfirmationEmail, BookingShell, BookingSummary, Button, COUNTRIES, CancellationForm, CancellationRequestReceivedEmail, CategoryPage2, Chip, CounterField, CountrySearchField, CtaBanner, DEFAULT_FOOTER_BADGES, DEFAULT_FOOTER_DESTINATIONS, DEFAULT_FOOTER_LANGUAGES, DEFAULT_FOOTER_LEGAL, DEFAULT_FOOTER_PAGES, DEFAULT_FOOTER_SOCIALS, DEFAULT_FOOTER_THEMES, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, STATUS_MAP as DEPARTURE_STATUS_MAP, DatePickerField, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, ExoOrb, FilterPanel, FloatingInput, FloatingSelect, GroupProgressBar, GroupStatusBanner, HomeHeader, Itinerary, ItineraryDay, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, MenuTrip, NewHome, NotificationEmail, OTPCodeInput, Offer, OfferAdventureCard, ParticipantCounter, ParticipantList, PartnerBookingCreatedEmail, PartnerRegistrationCompleteEmail, PaymentAmountSelector, PaymentDetailsBlock, PaymentMethodSelector, PaymentModalShell, PaymentReceiptEmail, PaymentReminderEmail, PhoneCountrySelect, PhotoGallery, PhotoTourProvider, Picture, PriceProgress, PricingMatrixCard, PricingTrip, RegistrationForm, RegistrationProgressBar, RegistrationReminderEmail, RegistrationReminderIndividualEmail, RegistrationSuccessCard, SegmentedControl, ShareWidget, SiteFooter, SiteHeader, StatusBadge2 as StatusBadge, StickyBookingCard, TERMS_ACCEPT_KEY, TermsSection, ThemeToggle, Toast, TransferDetailsBlock, TravellerFormInviteEmail, TripCard, TripHeader, TripPage, TrustpilotEmbed, USP, USPBand, buttonVariants, chipVariants, cn, emailTokens, formatCpf, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, validateCpf, webpVariantUrl, wrapEmailHtml };
|
|
19795
20016
|
//# sourceMappingURL=index.js.map
|
|
19796
20017
|
//# sourceMappingURL=index.js.map
|