kupos-ui-components-lib 9.4.5 → 9.4.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.
@@ -11,7 +11,7 @@ const RatingHover = ({ serviceItem, isSoldOut, colors, t = (key) => key, transla
11
11
  const val = parseFloat(details[key]);
12
12
  return isNaN(val) ? 0 : +val.toFixed(1);
13
13
  };
14
- return (React.createElement("div", { className: "flex items-center relative cursor-pointer group" },
14
+ return (React.createElement("div", { className: "flex items-center relative cursor-pointer group hover:z-[500]" },
15
15
  React.createElement("div", { className: "w-[18px] h-auto mr-[4px]", style: { opacity: isSoldOut ? 0.5 : 1 } },
16
16
  React.createElement("img", { src: serviceItem.icons.rating, alt: "origin", className: `w-[16px] h-[16px] mr-[4px] object-contain mb-[4px] ${isSoldOut ? "grayscale" : ""}` })),
17
17
  React.createElement("span", { className: "text-[#464647] text-[13.33px]", style: { opacity: isSoldOut ? 0.5 : 1 } }, typeof serviceItem.operator_details[1] === "number"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kupos-ui-components-lib",
3
- "version": "9.4.5",
3
+ "version": "9.4.6",
4
4
  "description": "A reusable UI components package",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -30,7 +30,7 @@ const RatingHover: React.FC<RatingHoverProps> = ({
30
30
  };
31
31
 
32
32
  return (
33
- <div className="flex items-center relative cursor-pointer group">
33
+ <div className="flex items-center relative cursor-pointer group hover:z-[500]">
34
34
  <div
35
35
  className="w-[18px] h-auto mr-[4px]"
36
36
  style={{ opacity: isSoldOut ? 0.5 : 1 }}