@planetaexo/design-system 0.23.3 → 0.23.4
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 +8 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +8 -17
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -7559,16 +7559,13 @@ function ItineraryDay({
|
|
|
7559
7559
|
specs && specs.length > 0 && /* @__PURE__ */ jsxRuntime.jsx("ul", { className: "flex flex-col gap-3 sm:gap-2.5", children: specs.map((spec, i) => /* @__PURE__ */ jsxRuntime.jsxs(
|
|
7560
7560
|
"li",
|
|
7561
7561
|
{
|
|
7562
|
-
className: "flex
|
|
7562
|
+
className: "flex flex-col text-base text-foreground font-ui",
|
|
7563
7563
|
children: [
|
|
7564
|
-
/* @__PURE__ */ jsxRuntime.
|
|
7565
|
-
|
|
7566
|
-
/* @__PURE__ */ jsxRuntime.
|
|
7567
|
-
|
|
7568
|
-
|
|
7569
|
-
] }),
|
|
7570
|
-
spec.subdetail && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm text-muted-foreground", children: spec.subdetail })
|
|
7571
|
-
] })
|
|
7564
|
+
/* @__PURE__ */ jsxRuntime.jsxs("div", { className: "flex flex-wrap items-baseline gap-x-2", children: [
|
|
7565
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { className: "font-semibold", children: spec.label }),
|
|
7566
|
+
spec.detail && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-muted-foreground", children: spec.detail })
|
|
7567
|
+
] }),
|
|
7568
|
+
spec.subdetail && /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-sm text-muted-foreground", children: spec.subdetail })
|
|
7572
7569
|
]
|
|
7573
7570
|
},
|
|
7574
7571
|
i
|
|
@@ -9271,10 +9268,7 @@ function TripPage({
|
|
|
9271
9268
|
] })
|
|
9272
9269
|
] }),
|
|
9273
9270
|
itineraryDays && itineraryDays.length > 0 ? /* @__PURE__ */ jsxRuntime.jsxs("section", { id: "trip-section-itinerary", className: "scroll-mt-20", children: [
|
|
9274
|
-
/* @__PURE__ */ jsxRuntime.
|
|
9275
|
-
(sectionIcons == null ? void 0 : sectionIcons.itinerary) ? /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-primary [&>svg]:h-5 [&>svg]:w-5", children: sectionIcons.itinerary }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ClockIcon, { className: "h-5 w-5 text-primary" }),
|
|
9276
|
-
"Itinerary"
|
|
9277
|
-
] }),
|
|
9271
|
+
/* @__PURE__ */ jsxRuntime.jsx("h2", { className: "text-xl font-bold text-foreground font-heading mb-6", children: "Itinerary" }),
|
|
9278
9272
|
/* @__PURE__ */ jsxRuntime.jsx("div", { className: "flex flex-col gap-12", children: itineraryDays.map((day) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
9279
9273
|
ItineraryDay,
|
|
9280
9274
|
__spreadProps(__spreadValues({}, day), {
|
|
@@ -9283,10 +9277,7 @@ function TripPage({
|
|
|
9283
9277
|
day.dayNumber
|
|
9284
9278
|
)) })
|
|
9285
9279
|
] }) : itinerary && itinerary.length > 0 && /* @__PURE__ */ jsxRuntime.jsxs("section", { id: "trip-section-itinerary", className: "scroll-mt-20", children: [
|
|
9286
|
-
/* @__PURE__ */ jsxRuntime.
|
|
9287
|
-
(sectionIcons == null ? void 0 : sectionIcons.itinerary) ? /* @__PURE__ */ jsxRuntime.jsx("span", { className: "text-primary [&>svg]:h-5 [&>svg]:w-5", children: sectionIcons.itinerary }) : /* @__PURE__ */ jsxRuntime.jsx(lucideReact.ClockIcon, { className: "h-5 w-5 text-primary" }),
|
|
9288
|
-
"Itinerary"
|
|
9289
|
-
] }),
|
|
9280
|
+
/* @__PURE__ */ jsxRuntime.jsx("h2", { className: "text-xl font-bold text-foreground font-heading mb-6", children: "Itinerary" }),
|
|
9290
9281
|
/* @__PURE__ */ jsxRuntime.jsx(ItineraryTimeline, { steps: itinerary })
|
|
9291
9282
|
] }),
|
|
9292
9283
|
included && included.length > 0 && /* @__PURE__ */ jsxRuntime.jsxs("section", { id: "trip-section-included", className: "scroll-mt-20", children: [
|