kupos-ui-components-lib 6.0.3 → 6.0.4
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.
|
@@ -521,7 +521,7 @@ function ServiceItemPB({ serviceItem, onBookButtonPress, colors, metaData, child
|
|
|
521
521
|
React.createElement("div", { className: `relative flex gap-[10px] text-[13.33px] justify-between min-h-[2.5rem] ${getNumberOfSeats() < 3 ? "" : ""}`, style: getNumberOfSeats() < 2 || removeDuplicateSeats
|
|
522
522
|
? { alignItems: "center" }
|
|
523
523
|
: {} },
|
|
524
|
-
React.createElement("div", { className: "flex flex-col justify-between" }, getSeatNames()),
|
|
524
|
+
React.createElement("div", { className: "flex flex-col justify-between", style: { gap: "15px" } }, getSeatNames()),
|
|
525
525
|
React.createElement("div", { className: "flex flex-col justify-between absolute inset-y-0 right-0 left-1/2 h-full", style: {
|
|
526
526
|
color: isSoldOut ? "#c0c0c0" : colors.priceColor,
|
|
527
527
|
top: 0,
|
|
@@ -532,6 +532,7 @@ function ServiceItemPB({ serviceItem, onBookButtonPress, colors, metaData, child
|
|
|
532
532
|
justifyContent: getNumberOfSeats() < 2 || removeDuplicateSeats
|
|
533
533
|
? "center"
|
|
534
534
|
: "",
|
|
535
|
+
gap: "15px",
|
|
535
536
|
} }, getSeatPrice()))),
|
|
536
537
|
React.createElement("div", null,
|
|
537
538
|
React.createElement("button", { onClick: () => (!isSoldOut ? checkMidnight() : null), disabled: serviceDetailsLoading, className: `w-full ${serviceDetailsLoading || isSoldOut
|
package/package.json
CHANGED
|
@@ -939,7 +939,10 @@ function ServiceItemPB({
|
|
|
939
939
|
: {}
|
|
940
940
|
}
|
|
941
941
|
>
|
|
942
|
-
<div
|
|
942
|
+
<div
|
|
943
|
+
className="flex flex-col justify-between"
|
|
944
|
+
style={{ gap: "15px" }}
|
|
945
|
+
>
|
|
943
946
|
{getSeatNames()}
|
|
944
947
|
</div>
|
|
945
948
|
<div
|
|
@@ -955,6 +958,7 @@ function ServiceItemPB({
|
|
|
955
958
|
getNumberOfSeats() < 2 || removeDuplicateSeats
|
|
956
959
|
? "center"
|
|
957
960
|
: "",
|
|
961
|
+
gap: "15px",
|
|
958
962
|
}}
|
|
959
963
|
>
|
|
960
964
|
{getSeatPrice()}
|