@moontra/moonui-pro 2.25.3 → 2.25.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.
package/dist/index.mjs CHANGED
@@ -73070,7 +73070,8 @@ function DataTableFilterDrawer({
73070
73070
  initial: { opacity: 0 },
73071
73071
  animate: { opacity: 1 },
73072
73072
  exit: { opacity: 0 },
73073
- className: "fixed inset-0 bg-black/20 z-[9998]",
73073
+ className: "fixed inset-0 bg-black/20",
73074
+ style: { zIndex: 9998 },
73074
73075
  onClick: () => onOpenChange(false)
73075
73076
  }
73076
73077
  ) }),
@@ -73082,10 +73083,10 @@ function DataTableFilterDrawer({
73082
73083
  exit: { x: position === "right" ? "100%" : "-100%" },
73083
73084
  transition: { type: "spring", damping: 30, stiffness: 300 },
73084
73085
  className: cn(
73085
- "fixed top-0 bottom-0 z-[9999] bg-background border-l shadow-xl",
73086
+ "fixed top-0 bottom-0 bg-background border-l shadow-xl",
73086
73087
  position === "right" ? "right-0" : "left-0"
73087
73088
  ),
73088
- style: { width },
73089
+ style: { width, zIndex: 9999 },
73089
73090
  children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col h-full", children: [
73090
73091
  /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between p-4 border-b", children: [
73091
73092
  /* @__PURE__ */ jsxs("div", { className: "flex items-center gap-2", children: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moontra/moonui-pro",
3
- "version": "2.25.3",
3
+ "version": "2.25.4",
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",