@arolariu/components
Version:
🎨 60+ beautiful, accessible React components built on Radix UI. TypeScript-first, tree-shakeable, SSR-ready. Perfect for modern web apps, design systems & rapid prototyping. Zero config, maximum flexibility! ⚡
95 lines (94 loc) • 4.21 kB
JavaScript
"use client";
import { jsx, jsxs } from "react/jsx-runtime";
import "react";
import { Close, Content, Description, Overlay, Portal, Root, Title, Trigger } from "@radix-ui/react-dialog";
import { XIcon } from "lucide-react";
import { cn } from "../../lib/utils.js";
function Dialog({ ...props }) {
return /*#__PURE__*/ jsx(Root, {
"data-slot": "dialog",
...props
});
}
function DialogTrigger({ ...props }) {
return /*#__PURE__*/ jsx(Trigger, {
"data-slot": "dialog-trigger",
...props
});
}
function DialogPortal({ ...props }) {
return /*#__PURE__*/ jsx(Portal, {
"data-slot": "dialog-portal",
...props
});
}
function DialogClose({ ...props }) {
return /*#__PURE__*/ jsx(Close, {
"data-slot": "dialog-close",
...props
});
}
function DialogOverlay({ className, ...props }) {
return /*#__PURE__*/ jsx(Overlay, {
"data-slot": "dialog-overlay",
className: cn("data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/50", className),
...props
});
}
function DialogContent({ className, children, showCloseButton = true, ...props }) {
return /*#__PURE__*/ jsxs(DialogPortal, {
"data-slot": "dialog-portal",
children: [
/*#__PURE__*/ jsx(DialogOverlay, {}),
/*#__PURE__*/ jsxs(Content, {
"data-slot": "dialog-content",
className: cn("bg-white data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border border-neutral-200 p-6 shadow-lg duration-200 sm:max-w-lg dark:bg-neutral-950 dark:border-neutral-800", className),
...props,
children: [
children,
showCloseButton && /*#__PURE__*/ jsxs(Close, {
"data-slot": "dialog-close",
className: "ring-offset-white focus:ring-neutral-950 data-[state=open]:bg-neutral-100 data-[state=open]:text-neutral-500 absolute top-4 right-4 rounded-xs opacity-70 transition-opacity hover:opacity-100 focus:ring-2 focus:ring-offset-2 focus:outline-hidden disabled:pointer-events-none [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4 dark:ring-offset-neutral-950 dark:focus:ring-neutral-300 dark:data-[state=open]:bg-neutral-800 dark:data-[state=open]:text-neutral-400",
children: [
/*#__PURE__*/ jsx(XIcon, {}),
/*#__PURE__*/ jsx("span", {
className: "sr-only",
children: "Close"
})
]
})
]
})
]
});
}
function DialogHeader({ className, ...props }) {
return /*#__PURE__*/ jsx("div", {
"data-slot": "dialog-header",
className: cn("flex flex-col gap-2 text-center sm:text-left", className),
...props
});
}
function DialogFooter({ className, ...props }) {
return /*#__PURE__*/ jsx("div", {
"data-slot": "dialog-footer",
className: cn("flex flex-col-reverse gap-2 sm:flex-row sm:justify-end", className),
...props
});
}
function DialogTitle({ className, ...props }) {
return /*#__PURE__*/ jsx(Title, {
"data-slot": "dialog-title",
className: cn("text-lg leading-none font-semibold", className),
...props
});
}
function DialogDescription({ className, ...props }) {
return /*#__PURE__*/ jsx(Description, {
"data-slot": "dialog-description",
className: cn("text-neutral-500 text-sm dark:text-neutral-400", className),
...props
});
}
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger };
//# sourceMappingURL=dialog.js.map