@asdp/ferryui 0.1.22-dev.9969 → 0.1.22-dev.9982
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.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +17 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +17 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -12163,7 +12163,7 @@ var CardPassengerList = ({
|
|
|
12163
12163
|
},
|
|
12164
12164
|
children: [
|
|
12165
12165
|
/* @__PURE__ */ jsx("div", { className: styles.passengerInfo, children: /* @__PURE__ */ jsxs(Subtitle2, { className: styles.passengerText, children: [
|
|
12166
|
-
passenger.fullName
|
|
12166
|
+
passenger.fullName ? `${passenger.titleName} ${passenger.fullName}` : `${mergedLabels.passengerPrefix} ${index + 1}`,
|
|
12167
12167
|
" ",
|
|
12168
12168
|
"(",
|
|
12169
12169
|
passenger.passengerType,
|
|
@@ -13662,7 +13662,7 @@ var useStyles28 = makeStyles({
|
|
|
13662
13662
|
shipInfo: {
|
|
13663
13663
|
display: "flex",
|
|
13664
13664
|
flexDirection: "column",
|
|
13665
|
-
alignItems: "
|
|
13665
|
+
alignItems: "flex-start",
|
|
13666
13666
|
gap: "1rem"
|
|
13667
13667
|
},
|
|
13668
13668
|
ticketInfo: {
|
|
@@ -13739,6 +13739,7 @@ var CardBookingTicket = ({
|
|
|
13739
13739
|
labels,
|
|
13740
13740
|
providerLogo,
|
|
13741
13741
|
shipName,
|
|
13742
|
+
serviceTitle,
|
|
13742
13743
|
shipType,
|
|
13743
13744
|
shipTypeColor,
|
|
13744
13745
|
departureDay,
|
|
@@ -13775,7 +13776,10 @@ var CardBookingTicket = ({
|
|
|
13775
13776
|
alt: "asdp"
|
|
13776
13777
|
}
|
|
13777
13778
|
),
|
|
13778
|
-
/* @__PURE__ */
|
|
13779
|
+
/* @__PURE__ */ jsxs("div", { style: { display: "flex", flexDirection: "column", gap: "0.25rem" }, children: [
|
|
13780
|
+
/* @__PURE__ */ jsx(Body1, { children: shipName }),
|
|
13781
|
+
serviceTitle && /* @__PURE__ */ jsx(Caption2, { style: { color: tokens.colorNeutralForeground3 }, children: serviceTitle })
|
|
13782
|
+
] })
|
|
13779
13783
|
] }),
|
|
13780
13784
|
/* @__PURE__ */ jsx(
|
|
13781
13785
|
Badge,
|
|
@@ -13790,6 +13794,16 @@ var CardBookingTicket = ({
|
|
|
13790
13794
|
}
|
|
13791
13795
|
)
|
|
13792
13796
|
] }),
|
|
13797
|
+
/* @__PURE__ */ jsx(
|
|
13798
|
+
"div",
|
|
13799
|
+
{
|
|
13800
|
+
style: {
|
|
13801
|
+
height: "1px",
|
|
13802
|
+
backgroundColor: tokens.colorNeutralStroke2,
|
|
13803
|
+
margin: "1rem 0"
|
|
13804
|
+
}
|
|
13805
|
+
}
|
|
13806
|
+
),
|
|
13793
13807
|
/* @__PURE__ */ jsx(Body1Strong, { children: mergedLabels.routeTitle }),
|
|
13794
13808
|
/* @__PURE__ */ jsx("div", { children: /* @__PURE__ */ jsxs("div", { className: styles.ticketInfo, children: [
|
|
13795
13809
|
/* @__PURE__ */ jsxs("div", { className: styles.ticketTime, children: [
|