kupos-ui-components-lib 9.4.6 → 9.4.8
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.
|
@@ -241,12 +241,8 @@ function ServiceItemPB({ serviceItem, onBookButtonPress, colors, metaData, child
|
|
|
241
241
|
: "rounded-[10px] border border-[#ccc]"}`, style: serviceCardStyle },
|
|
242
242
|
React.createElement("div", { className: " pt-[20px]", style: {
|
|
243
243
|
padding: coachKey
|
|
244
|
-
?
|
|
245
|
-
|
|
246
|
-
: "15px 15px 20px 15px"
|
|
247
|
-
: hasOfferText || (serviceItem === null || serviceItem === void 0 ? void 0 : serviceItem.is_dp_enabled)
|
|
248
|
-
? "15px 15px 20px 15px"
|
|
249
|
-
: "20px 15px 10px 15px",
|
|
244
|
+
? "15px 15px 20px 15px"
|
|
245
|
+
: "20px 15px 10px 15px ",
|
|
250
246
|
marginTop: hasDiscount || hasOfferText ? "14px" : "0",
|
|
251
247
|
} },
|
|
252
248
|
React.createElement("div", { className: "grid text-[#464647] w-full [grid-template-columns:22%_28%_2.5%_24%_15.5%] gap-x-[2%] items-center" },
|
|
@@ -196,7 +196,9 @@ function SeatSection({ seatTypes, availableSeats, isSoldOut, priceColor, currenc
|
|
|
196
196
|
} }))),
|
|
197
197
|
React.createElement("div", { className: "col-start-2 row-start-3 flex h-[30px] items-end justify-center relative" },
|
|
198
198
|
React.createElement("span", { className: "flex items-center gap-[6px] text-[22px] bold-text leading-[30px]", style: { color: isSoldOut ? "#c0c0c0" : "#ff5964" } },
|
|
199
|
-
React.createElement("div", { className: "absolute
|
|
199
|
+
React.createElement("div", { className: "absolute", style: {
|
|
200
|
+
left: isPeru ? "-1px" : "-8px",
|
|
201
|
+
} }, renderIcon("fireIcon", "16px")),
|
|
200
202
|
availableSeats <= 0
|
|
201
203
|
? CommonService.currency(0, currencySign)
|
|
202
204
|
: CommonService.discountedCurrency(discountSeat.discountedPrice, currencySign)))));
|
package/package.json
CHANGED
|
@@ -422,12 +422,9 @@ function ServiceItemPB({
|
|
|
422
422
|
className=" pt-[20px]"
|
|
423
423
|
style={{
|
|
424
424
|
padding: coachKey
|
|
425
|
-
?
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
: hasOfferText || serviceItem?.is_dp_enabled
|
|
429
|
-
? "15px 15px 20px 15px"
|
|
430
|
-
: "20px 15px 10px 15px",
|
|
425
|
+
? "15px 15px 20px 15px"
|
|
426
|
+
: "20px 15px 10px 15px ",
|
|
427
|
+
|
|
431
428
|
marginTop: hasDiscount || hasOfferText ? "14px" : "0",
|
|
432
429
|
}}
|
|
433
430
|
>
|
|
@@ -390,7 +390,12 @@ function SeatSection({
|
|
|
390
390
|
style={{ color: isSoldOut ? "#c0c0c0" : "#ff5964" }}
|
|
391
391
|
>
|
|
392
392
|
{/* <span className="text-[18px] leading-[24px]">🔥</span> */}
|
|
393
|
-
<div
|
|
393
|
+
<div
|
|
394
|
+
className="absolute"
|
|
395
|
+
style={{
|
|
396
|
+
left: isPeru ? "-1px" : "-8px",
|
|
397
|
+
}}
|
|
398
|
+
>
|
|
394
399
|
{renderIcon("fireIcon", "16px")}
|
|
395
400
|
</div>
|
|
396
401
|
{availableSeats <= 0
|