kupos-ui-components-lib 10.0.5 → 10.0.6
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.
|
@@ -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
|
@@ -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"
|