@szum-tech/design-system
Version:
Szum-Tech design system with tailwindcss support
124 lines (121 loc) • 3.99 kB
JavaScript
import { cn } from './chunk-ZD2QRAOX.js';
import { Dialog as Dialog$1 } from 'radix-ui';
import { jsx, jsxs } from 'react/jsx-runtime';
import { XIcon } from 'lucide-react';
import { twMerge } from 'tailwind-merge';
import { cva } from 'class-variance-authority';
function Dialog(props) {
return /* @__PURE__ */ jsx(Dialog$1.Root, { "data-slot": "dialog", ...props });
}
function DialogClose(props) {
return /* @__PURE__ */ jsx(Dialog$1.Close, { "data-slot": "dialog-close", ...props });
}
var dialogContentVariants = cva(
[
"bg-background border-border fixed left-[50%] top-[50%] z-50 grid w-full max-w-[calc(100%-1rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded border p-6 shadow-lg duration-200",
"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 "
],
{
variants: {
width: {
xs: "w-xs",
sm: "w-sm",
md: "w-md",
lg: "w-lg",
xl: "w-xl",
"2xl": "w-2xl",
"3xl": "w-3xl",
"4xl": "w-4xl",
"5xl": "w-5xl",
"6xl": "w-6xl",
full: "w-full"
}
},
defaultVariants: {
width: "md"
}
}
);
function DialogContent({
className,
children,
width = "md",
showCloseButton = false,
...props
}) {
return /* @__PURE__ */ jsxs(Dialog$1.Portal, { "data-slot": "dialog-portal", children: [
/* @__PURE__ */ jsx(
Dialog$1.Overlay,
{
"data-slot": "dialog-overlay",
className: "data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 bg-background/80 fixed inset-0 z-50 backdrop-blur-xs"
}
),
/* @__PURE__ */ jsxs(
Dialog$1.Content,
{
"data-slot": "dialog-content",
className: twMerge(dialogContentVariants({ width }), className),
...props,
children: [
children,
showCloseButton ? /* @__PURE__ */ jsxs(
Dialog$1.Close,
{
"data-slot": "dialog-close",
className: "ring-offset-background focus:ring-ring data-[state=open]:bg-accent data-[state=open]:text-muted-foreground 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",
children: [
/* @__PURE__ */ jsx(XIcon, {}),
/* @__PURE__ */ jsx("span", { className: "sr-only", children: "Close" })
]
}
) : null
]
}
)
] });
}
function DialogTrigger({ ...props }) {
return /* @__PURE__ */ jsx(Dialog$1.Trigger, { "data-slot": "dialog-trigger", ...props });
}
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(
Dialog$1.Title,
{
"data-slot": "dialog-title",
className: cn("text-lg leading-none font-semibold", className),
...props
}
);
}
function DialogDescription({ className, ...props }) {
return /* @__PURE__ */ jsx(
Dialog$1.Description,
{
"data-slot": "dialog-description",
className: cn("text-muted-foreground text-sm", className),
...props
}
);
}
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger };