kupos-ui-components-lib 9.4.7 → 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.
@@ -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 -left-[8px]" }, renderIcon("fireIcon", "16px")),
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kupos-ui-components-lib",
3
- "version": "9.4.7",
3
+ "version": "9.4.8",
4
4
  "description": "A reusable UI components package",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -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 className="absolute -left-[8px]">
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