next-helios-fe 1.9.4 → 1.9.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "next-helios-fe",
3
- "version": "1.9.4",
3
+ "version": "1.9.5",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -8,7 +8,6 @@ interface CarouselProps {
8
8
  variant?: "basic" | "primary";
9
9
  interval?: number;
10
10
  pauseOnHover?: boolean;
11
- disableRounded?: boolean;
12
11
  disablePadding?: boolean;
13
12
  };
14
13
  }
@@ -64,9 +63,9 @@ export const Carousel: React.FC<CarouselProps> = ({ children, options }) => {
64
63
  return (
65
64
  <div
66
65
  key={index}
67
- className={`relative grid w-full h-full shadow-md overflow-hidden ${variant} ${
68
- options?.disableRounded ? "" : "rounded-md"
69
- } ${options?.disablePadding ? "" : "p-6"}`}
66
+ className={`relative grid w-full h-full rounded-md shadow-md overflow-hidden ${variant} ${
67
+ options?.disablePadding ? "" : "p-6"
68
+ }`}
70
69
  >
71
70
  {item}
72
71
  </div>