@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.js
CHANGED
|
@@ -7538,16 +7538,13 @@ function ItineraryDay({
|
|
|
7538
7538
|
specs && specs.length > 0 && /* @__PURE__ */ jsx("ul", { className: "flex flex-col gap-3 sm:gap-2.5", children: specs.map((spec, i) => /* @__PURE__ */ jsxs(
|
|
7539
7539
|
"li",
|
|
7540
7540
|
{
|
|
7541
|
-
className: "flex
|
|
7541
|
+
className: "flex flex-col text-base text-foreground font-ui",
|
|
7542
7542
|
children: [
|
|
7543
|
-
/* @__PURE__ */
|
|
7544
|
-
|
|
7545
|
-
/* @__PURE__ */
|
|
7546
|
-
|
|
7547
|
-
|
|
7548
|
-
] }),
|
|
7549
|
-
spec.subdetail && /* @__PURE__ */ jsx("span", { className: "text-sm text-muted-foreground", children: spec.subdetail })
|
|
7550
|
-
] })
|
|
7543
|
+
/* @__PURE__ */ jsxs("div", { className: "flex flex-wrap items-baseline gap-x-2", children: [
|
|
7544
|
+
/* @__PURE__ */ jsx("span", { className: "font-semibold", children: spec.label }),
|
|
7545
|
+
spec.detail && /* @__PURE__ */ jsx("span", { className: "text-muted-foreground", children: spec.detail })
|
|
7546
|
+
] }),
|
|
7547
|
+
spec.subdetail && /* @__PURE__ */ jsx("span", { className: "text-sm text-muted-foreground", children: spec.subdetail })
|
|
7551
7548
|
]
|
|
7552
7549
|
},
|
|
7553
7550
|
i
|
|
@@ -9250,10 +9247,7 @@ function TripPage({
|
|
|
9250
9247
|
] })
|
|
9251
9248
|
] }),
|
|
9252
9249
|
itineraryDays && itineraryDays.length > 0 ? /* @__PURE__ */ jsxs("section", { id: "trip-section-itinerary", className: "scroll-mt-20", children: [
|
|
9253
|
-
/* @__PURE__ */
|
|
9254
|
-
(sectionIcons == null ? void 0 : sectionIcons.itinerary) ? /* @__PURE__ */ jsx("span", { className: "text-primary [&>svg]:h-5 [&>svg]:w-5", children: sectionIcons.itinerary }) : /* @__PURE__ */ jsx(ClockIcon, { className: "h-5 w-5 text-primary" }),
|
|
9255
|
-
"Itinerary"
|
|
9256
|
-
] }),
|
|
9250
|
+
/* @__PURE__ */ jsx("h2", { className: "text-xl font-bold text-foreground font-heading mb-6", children: "Itinerary" }),
|
|
9257
9251
|
/* @__PURE__ */ jsx("div", { className: "flex flex-col gap-12", children: itineraryDays.map((day) => /* @__PURE__ */ jsx(
|
|
9258
9252
|
ItineraryDay,
|
|
9259
9253
|
__spreadProps(__spreadValues({}, day), {
|
|
@@ -9262,10 +9256,7 @@ function TripPage({
|
|
|
9262
9256
|
day.dayNumber
|
|
9263
9257
|
)) })
|
|
9264
9258
|
] }) : itinerary && itinerary.length > 0 && /* @__PURE__ */ jsxs("section", { id: "trip-section-itinerary", className: "scroll-mt-20", children: [
|
|
9265
|
-
/* @__PURE__ */
|
|
9266
|
-
(sectionIcons == null ? void 0 : sectionIcons.itinerary) ? /* @__PURE__ */ jsx("span", { className: "text-primary [&>svg]:h-5 [&>svg]:w-5", children: sectionIcons.itinerary }) : /* @__PURE__ */ jsx(ClockIcon, { className: "h-5 w-5 text-primary" }),
|
|
9267
|
-
"Itinerary"
|
|
9268
|
-
] }),
|
|
9259
|
+
/* @__PURE__ */ jsx("h2", { className: "text-xl font-bold text-foreground font-heading mb-6", children: "Itinerary" }),
|
|
9269
9260
|
/* @__PURE__ */ jsx(ItineraryTimeline, { steps: itinerary })
|
|
9270
9261
|
] }),
|
|
9271
9262
|
included && included.length > 0 && /* @__PURE__ */ jsxs("section", { id: "trip-section-included", className: "scroll-mt-20", children: [
|