kupos-ui-components-lib 9.3.7 → 9.3.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.
package/dist/styles.css CHANGED
@@ -490,9 +490,6 @@
490
490
  .justify-end {
491
491
  justify-content: flex-end;
492
492
  }
493
- .justify-start {
494
- justify-content: flex-start;
495
- }
496
493
  .gap-\[1px\] {
497
494
  gap: 1px;
498
495
  }
@@ -122,7 +122,7 @@ function SeatSection({ seatTypes, availableSeats, isSoldOut, priceColor, currenc
122
122
  React.createElement("span", { className: "text-[13.33px] font-normal leading-[22px] text-[#c2c2c2]" }, "Antes")),
123
123
  React.createElement("div", { className: "col-start-1 row-start-3 flex h-[30px] items-end" },
124
124
  React.createElement("span", { className: "text-[13.33px] font-normal leading-[24px] text-[#464647]" }, "Desde")),
125
- React.createElement("div", { className: "col-start-2 row-start-1 flex items-center justify-center absolute", style: { top: "-22px", right: "30px" } }, discountValue != null && (React.createElement("span", { className: "rounded-[100px] bg-[#ff5964] px-[6px] text-[12px] bold-text leading-[20px] text-white", style: {
125
+ React.createElement("div", { className: "col-start-2 row-start-1 flex items-center justify-center absolute", style: { top: "-22px", right: "25%" } }, discountValue != null && (React.createElement("span", { className: "rounded-[100px] bg-[#ff5964] px-[6px] text-[12px] bold-text leading-[20px] text-white", style: {
126
126
  animation: "pulse-zoom 2s ease-in-out infinite",
127
127
  } },
128
128
  discountValue,
@@ -142,7 +142,7 @@ function SeatSection({ seatTypes, availableSeats, isSoldOut, priceColor, currenc
142
142
  transform: "rotate(-10deg)",
143
143
  transformOrigin: "center",
144
144
  } }))),
145
- React.createElement("div", { className: "col-start-2 row-start-3 flex h-[30px] items-end justify-start" },
145
+ React.createElement("div", { className: "col-start-2 row-start-3 flex h-[30px] items-end justify-center" },
146
146
  React.createElement("span", { className: "flex items-center gap-[6px] text-[22px] bold-text leading-[30px]", style: { color: isSoldOut ? "#c0c0c0" : "#ff5964" } },
147
147
  renderIcon("fireIcon", "16px"),
148
148
  availableSeats <= 0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kupos-ui-components-lib",
3
- "version": "9.3.7",
3
+ "version": "9.3.8",
4
4
  "description": "A reusable UI components package",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -237,7 +237,7 @@ function SeatSection({
237
237
 
238
238
  <div
239
239
  className="col-start-2 row-start-1 flex items-center justify-center absolute"
240
- style={{ top: "-22px", right: "30px" }}
240
+ style={{ top: "-22px", right: "25%" }}
241
241
  >
242
242
  {discountValue != null && (
243
243
  <span
@@ -277,7 +277,7 @@ function SeatSection({
277
277
  </span>
278
278
  </div>
279
279
 
280
- <div className="col-start-2 row-start-3 flex h-[30px] items-end justify-start">
280
+ <div className="col-start-2 row-start-3 flex h-[30px] items-end justify-center">
281
281
  <span
282
282
  className="flex items-center gap-[6px] text-[22px] bold-text leading-[30px]"
283
283
  style={{ color: isSoldOut ? "#c0c0c0" : "#ff5964" }}