@fluid-app/ui-primitives 0.1.9 → 0.1.11

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
@@ -196,7 +196,7 @@ function AlertDialogPortal({ ...props }) {
196
196
  function AlertDialogOverlay({ className, ...props }) {
197
197
  return /* @__PURE__ */ jsx(AlertDialog$1.Overlay, {
198
198
  "data-slot": "alert-dialog-overlay",
199
- className: cn("data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:animate-in data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/50", className),
199
+ className: cn("data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:animate-in data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-[#030712]/70", className),
200
200
  ...props
201
201
  });
202
202
  }
@@ -702,7 +702,7 @@ function DialogClose({ ...props }) {
702
702
  function DialogOverlay({ className, ...props }) {
703
703
  return /* @__PURE__ */ jsx(DialogPrimitive.Overlay, {
704
704
  "data-slot": "dialog-overlay",
705
- className: cn("data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:animate-in data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-gray-900/70 backdrop-blur-sm", className),
705
+ className: cn("data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:animate-in data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-[#030712]/70 backdrop-blur-sm", className),
706
706
  ...props
707
707
  });
708
708
  }
@@ -1245,7 +1245,7 @@ function SheetPortal(props) {
1245
1245
  });
1246
1246
  }
1247
1247
  const SheetOverlay = React.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ jsx(DialogPrimitive.Overlay, {
1248
- className: cn("data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:animate-in data-[state=open]:fade-in-0 fixed inset-0 z-[1040] bg-black/80", className),
1248
+ className: cn("data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:animate-in data-[state=open]:fade-in-0 fixed inset-0 z-[1040] bg-[#030712]/70", className),
1249
1249
  ...props,
1250
1250
  ref
1251
1251
  }));