@moontra/moonui-pro 2.25.11 → 2.25.13
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/index.global.js +2 -2
- package/dist/index.global.js.map +1 -1
- package/dist/index.mjs +12 -12
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3606,10 +3606,10 @@ var moonUICardVariantsPro = cva(
|
|
|
3606
3606
|
glow: "border border-border shadow-[0_0_30px_rgba(var(--primary),0.15)] dark:shadow-[0_0_40px_rgba(var(--primary),0.25)]"
|
|
3607
3607
|
},
|
|
3608
3608
|
size: {
|
|
3609
|
-
default: "
|
|
3610
|
-
sm: "
|
|
3611
|
-
lg: "
|
|
3612
|
-
xl: "
|
|
3609
|
+
default: "",
|
|
3610
|
+
sm: "",
|
|
3611
|
+
lg: "",
|
|
3612
|
+
xl: ""
|
|
3613
3613
|
},
|
|
3614
3614
|
radius: {
|
|
3615
3615
|
default: "rounded-lg",
|
|
@@ -3712,7 +3712,7 @@ var MoonUICardHeaderPro = t.forwardRef(({ className, ...props }, ref) => /* @__P
|
|
|
3712
3712
|
"div",
|
|
3713
3713
|
{
|
|
3714
3714
|
ref,
|
|
3715
|
-
className: cn("flex flex-col space-y-1.5", className),
|
|
3715
|
+
className: cn("flex flex-col space-y-1.5 p-6", className),
|
|
3716
3716
|
...props
|
|
3717
3717
|
}
|
|
3718
3718
|
));
|
|
@@ -3735,13 +3735,13 @@ var MoonUICardDescriptionPro = t.forwardRef(({ className, ...props }, ref) => /*
|
|
|
3735
3735
|
}
|
|
3736
3736
|
));
|
|
3737
3737
|
MoonUICardDescriptionPro.displayName = "MoonUICardDescriptionPro";
|
|
3738
|
-
var MoonUICardContentPro = t.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("pt-0", className), ...props }));
|
|
3738
|
+
var MoonUICardContentPro = t.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx("div", { ref, className: cn("p-6 pt-0", className), ...props }));
|
|
3739
3739
|
MoonUICardContentPro.displayName = "MoonUICardContentPro";
|
|
3740
3740
|
var MoonUICardFooterPro = t.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
3741
3741
|
"div",
|
|
3742
3742
|
{
|
|
3743
3743
|
ref,
|
|
3744
|
-
className: cn("flex items-center pt-
|
|
3744
|
+
className: cn("flex items-center p-6 pt-0", className),
|
|
3745
3745
|
...props
|
|
3746
3746
|
}
|
|
3747
3747
|
));
|
|
@@ -64325,8 +64325,8 @@ function DashboardGrid({
|
|
|
64325
64325
|
breakpoints = { lg: 1200, md: 996, sm: 768, xs: 480, xxs: 0 },
|
|
64326
64326
|
cols = { lg: 12, md: 10, sm: 6, xs: 4, xxs: 2 },
|
|
64327
64327
|
rowHeight = 80,
|
|
64328
|
-
margin = [
|
|
64329
|
-
containerPadding = [
|
|
64328
|
+
margin = [4, 6],
|
|
64329
|
+
containerPadding = [4, 4]
|
|
64330
64330
|
}) {
|
|
64331
64331
|
const [layouts, setLayouts] = t__default.useState({});
|
|
64332
64332
|
const [currentBreakpoint, setCurrentBreakpoint] = t__default.useState("lg");
|
|
@@ -64636,7 +64636,7 @@ function DashboardGrid({
|
|
|
64636
64636
|
)
|
|
64637
64637
|
) : isMobile ? (
|
|
64638
64638
|
// Mobile layout - Grid Layout yerine normal flex kullan
|
|
64639
|
-
/* @__PURE__ */ jsx("div", { className: "space-y-
|
|
64639
|
+
/* @__PURE__ */ jsx("div", { className: "space-y-2", children: widgets.map((widget) => /* @__PURE__ */ jsx(
|
|
64640
64640
|
motion.div,
|
|
64641
64641
|
{
|
|
64642
64642
|
initial: { opacity: 0, y: 20 },
|
|
@@ -64657,8 +64657,8 @@ function DashboardGrid({
|
|
|
64657
64657
|
breakpoints,
|
|
64658
64658
|
cols,
|
|
64659
64659
|
rowHeight: currentBreakpoint === "xs" || currentBreakpoint === "xxs" ? 60 : currentBreakpoint === "sm" ? 70 : rowHeight,
|
|
64660
|
-
margin: currentBreakpoint === "xs" || currentBreakpoint === "xxs" ? [
|
|
64661
|
-
containerPadding
|
|
64660
|
+
margin: currentBreakpoint === "xs" || currentBreakpoint === "xxs" ? [3, 4] : margin,
|
|
64661
|
+
containerPadding,
|
|
64662
64662
|
onLayoutChange: (layout, allLayouts) => {
|
|
64663
64663
|
setLayouts(allLayouts);
|
|
64664
64664
|
onLayoutChange?.(layout);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moontra/moonui-pro",
|
|
3
|
-
"version": "2.25.
|
|
3
|
+
"version": "2.25.13",
|
|
4
4
|
"description": "Premium React components for MoonUI - Advanced UI library with 50+ pro components including performance, interactive, and gesture components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|