kupos-ui-components-lib 10.0.5 → 10.0.7
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.
|
@@ -286,7 +286,7 @@ const PaymentSideBarDesktop = ({ serviceNameOnward, serviceNameReturn, metaData,
|
|
|
286
286
|
}
|
|
287
287
|
}
|
|
288
288
|
return (React.createElement("div", { className: "" },
|
|
289
|
-
React.createElement("div", { className: "bg-white rounded-[20px]
|
|
289
|
+
React.createElement("div", { className: "bg-white rounded-[20px] mb-[10px] mx-auto relative border border-[#ccc]", style: { width: customSideBarwidth } },
|
|
290
290
|
React.createElement("div", { className: "p-[15px]" },
|
|
291
291
|
React.createElement("div", { className: "text-[17.33px]" }, translation === null || translation === void 0 ? void 0 :
|
|
292
292
|
translation.passengerSummaryDetails,
|
|
@@ -89,7 +89,7 @@ function SeatSectionMobile({ seatTypes: seatTypesData, isSoldOut, isPeru, seatPr
|
|
|
89
89
|
React.createElement("span", { className: "min-[420]:text-[13px] text-[12px]", style: { color: "#bbb" } }, "Antes"),
|
|
90
90
|
React.createElement("span", { className: "min-[420]:text-[13px] text-[12px] line-through", style: { color: "#bbb" } }, commonService.currency(originalPrice, currencySign)))),
|
|
91
91
|
React.createElement("div", { className: "w-[100%] flex flex-row justify-between items-center" },
|
|
92
|
-
React.createElement("span", { className: "min-[420]:text-[13px] text-[12px] bold-text", style: { color: isSoldOut ? "#bbb" : "#464647" } },
|
|
92
|
+
React.createElement("span", { className: "min-[420]:text-[13px] text-[12px] bold-text", style: { color: isSoldOut ? "#bbb" : "#464647" } }, (originalPrice !== discountedPrice) ? "Desde" : seatLabel || "Desde"),
|
|
93
93
|
React.createElement("span", { className: "min-[420]:text-[13px] text-[12px] bold-text", style: { color: priceColor } }, commonService.currency(discountedPrice, currencySign)))));
|
|
94
94
|
};
|
|
95
95
|
const renderDpSeats = () => {
|
package/package.json
CHANGED
|
@@ -464,7 +464,7 @@ const PaymentSideBarDesktop: React.FC<PaymentSideBarProps> = ({
|
|
|
464
464
|
return (
|
|
465
465
|
<div className="">
|
|
466
466
|
<div
|
|
467
|
-
className="bg-white rounded-[20px]
|
|
467
|
+
className="bg-white rounded-[20px] mb-[10px] mx-auto relative border border-[#ccc]"
|
|
468
468
|
style={{ width: customSideBarwidth }}
|
|
469
469
|
>
|
|
470
470
|
<div className="p-[15px]">
|
|
@@ -230,7 +230,7 @@ function SeatSectionMobile({
|
|
|
230
230
|
className="min-[420]:text-[13px] text-[12px] bold-text"
|
|
231
231
|
style={{ color: isSoldOut ? "#bbb" : "#464647" }}
|
|
232
232
|
>
|
|
233
|
-
{
|
|
233
|
+
{(originalPrice !== discountedPrice) ? "Desde" : seatLabel || "Desde"}
|
|
234
234
|
</span>
|
|
235
235
|
<span
|
|
236
236
|
className="min-[420]:text-[13px] text-[12px] bold-text"
|