|
@@ -1,18 +1,19 @@
|
|
|
-"use client"
|
|
|
|
|
|
|
+"use client";
|
|
|
|
|
|
|
|
-import * as React from "react"
|
|
|
|
|
-import * as DialogPrimitive from "@radix-ui/react-dialog"
|
|
|
|
|
-import { X } from "lucide-react"
|
|
|
|
|
|
|
+import * as React from "react";
|
|
|
|
|
+import * as DialogPrimitive from "@radix-ui/react-dialog";
|
|
|
|
|
|
|
|
-import { cn } from "@/lib/utils"
|
|
|
|
|
|
|
+import { cn } from "@/lib/utils";
|
|
|
|
|
|
|
|
-const Dialog = DialogPrimitive.Root
|
|
|
|
|
|
|
+const Dialog = DialogPrimitive.Root;
|
|
|
|
|
|
|
|
-const DialogTrigger = DialogPrimitive.Trigger
|
|
|
|
|
|
|
+const DialogTrigger = DialogPrimitive.Trigger;
|
|
|
|
|
|
|
|
-const DialogPortal = DialogPrimitive.Portal
|
|
|
|
|
|
|
+const DialogPortal = DialogPrimitive.Portal;
|
|
|
|
|
|
|
|
-const DialogClose = DialogPrimitive.Close
|
|
|
|
|
|
|
+const DialogClose = DialogPrimitive.Close;
|
|
|
|
|
+
|
|
|
|
|
+const DialogPrimitiveClose = DialogPrimitive.Close;
|
|
|
|
|
|
|
|
const DialogOverlay = React.forwardRef<
|
|
const DialogOverlay = React.forwardRef<
|
|
|
React.ElementRef<typeof DialogPrimitive.Overlay>,
|
|
React.ElementRef<typeof DialogPrimitive.Overlay>,
|
|
@@ -22,12 +23,12 @@ const DialogOverlay = React.forwardRef<
|
|
|
ref={ref}
|
|
ref={ref}
|
|
|
className={cn(
|
|
className={cn(
|
|
|
"fixed inset-0 z-50 bg-black/80 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/80 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
|
- className
|
|
|
|
|
|
|
+ className,
|
|
|
)}
|
|
)}
|
|
|
{...props}
|
|
{...props}
|
|
|
/>
|
|
/>
|
|
|
-))
|
|
|
|
|
-DialogOverlay.displayName = DialogPrimitive.Overlay.displayName
|
|
|
|
|
|
|
+));
|
|
|
|
|
+DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
|
|
|
|
|
|
const DialogContent = React.forwardRef<
|
|
const DialogContent = React.forwardRef<
|
|
|
React.ElementRef<typeof DialogPrimitive.Content>,
|
|
React.ElementRef<typeof DialogPrimitive.Content>,
|
|
@@ -39,19 +40,15 @@ const DialogContent = React.forwardRef<
|
|
|
ref={ref}
|
|
ref={ref}
|
|
|
className={cn(
|
|
className={cn(
|
|
|
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background 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 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
|
|
"fixed left-[50%] top-[50%] z-50 grid w-full max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 border bg-background 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 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] sm:rounded-lg",
|
|
|
- className
|
|
|
|
|
|
|
+ className,
|
|
|
)}
|
|
)}
|
|
|
{...props}
|
|
{...props}
|
|
|
>
|
|
>
|
|
|
{children}
|
|
{children}
|
|
|
- <DialogPrimitive.Close className="absolute right-4 top-4 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground">
|
|
|
|
|
- <X className="h-4 w-4" />
|
|
|
|
|
- <span className="sr-only">Close</span>
|
|
|
|
|
- </DialogPrimitive.Close>
|
|
|
|
|
</DialogPrimitive.Content>
|
|
</DialogPrimitive.Content>
|
|
|
</DialogPortal>
|
|
</DialogPortal>
|
|
|
-))
|
|
|
|
|
-DialogContent.displayName = DialogPrimitive.Content.displayName
|
|
|
|
|
|
|
+));
|
|
|
|
|
+DialogContent.displayName = DialogPrimitive.Content.displayName;
|
|
|
|
|
|
|
|
const DialogHeader = ({
|
|
const DialogHeader = ({
|
|
|
className,
|
|
className,
|
|
@@ -60,12 +57,12 @@ const DialogHeader = ({
|
|
|
<div
|
|
<div
|
|
|
className={cn(
|
|
className={cn(
|
|
|
"flex flex-col space-y-1.5 text-center sm:text-left",
|
|
"flex flex-col space-y-1.5 text-center sm:text-left",
|
|
|
- className
|
|
|
|
|
|
|
+ className,
|
|
|
)}
|
|
)}
|
|
|
{...props}
|
|
{...props}
|
|
|
/>
|
|
/>
|
|
|
-)
|
|
|
|
|
-DialogHeader.displayName = "DialogHeader"
|
|
|
|
|
|
|
+);
|
|
|
|
|
+DialogHeader.displayName = "DialogHeader";
|
|
|
|
|
|
|
|
const DialogFooter = ({
|
|
const DialogFooter = ({
|
|
|
className,
|
|
className,
|
|
@@ -74,12 +71,12 @@ const DialogFooter = ({
|
|
|
<div
|
|
<div
|
|
|
className={cn(
|
|
className={cn(
|
|
|
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
|
"flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2",
|
|
|
- className
|
|
|
|
|
|
|
+ className,
|
|
|
)}
|
|
)}
|
|
|
{...props}
|
|
{...props}
|
|
|
/>
|
|
/>
|
|
|
-)
|
|
|
|
|
-DialogFooter.displayName = "DialogFooter"
|
|
|
|
|
|
|
+);
|
|
|
|
|
+DialogFooter.displayName = "DialogFooter";
|
|
|
|
|
|
|
|
const DialogTitle = React.forwardRef<
|
|
const DialogTitle = React.forwardRef<
|
|
|
React.ElementRef<typeof DialogPrimitive.Title>,
|
|
React.ElementRef<typeof DialogPrimitive.Title>,
|
|
@@ -89,12 +86,12 @@ const DialogTitle = React.forwardRef<
|
|
|
ref={ref}
|
|
ref={ref}
|
|
|
className={cn(
|
|
className={cn(
|
|
|
"text-lg font-semibold leading-none tracking-tight",
|
|
"text-lg font-semibold leading-none tracking-tight",
|
|
|
- className
|
|
|
|
|
|
|
+ className,
|
|
|
)}
|
|
)}
|
|
|
{...props}
|
|
{...props}
|
|
|
/>
|
|
/>
|
|
|
-))
|
|
|
|
|
-DialogTitle.displayName = DialogPrimitive.Title.displayName
|
|
|
|
|
|
|
+));
|
|
|
|
|
+DialogTitle.displayName = DialogPrimitive.Title.displayName;
|
|
|
|
|
|
|
|
const DialogDescription = React.forwardRef<
|
|
const DialogDescription = React.forwardRef<
|
|
|
React.ElementRef<typeof DialogPrimitive.Description>,
|
|
React.ElementRef<typeof DialogPrimitive.Description>,
|
|
@@ -105,11 +102,13 @@ const DialogDescription = React.forwardRef<
|
|
|
className={cn("text-sm text-muted-foreground", className)}
|
|
className={cn("text-sm text-muted-foreground", className)}
|
|
|
{...props}
|
|
{...props}
|
|
|
/>
|
|
/>
|
|
|
-))
|
|
|
|
|
-DialogDescription.displayName = DialogPrimitive.Description.displayName
|
|
|
|
|
|
|
+));
|
|
|
|
|
+DialogDescription.displayName = DialogPrimitive.Description.displayName;
|
|
|
|
|
|
|
|
export {
|
|
export {
|
|
|
Dialog,
|
|
Dialog,
|
|
|
|
|
+ DialogPrimitive,
|
|
|
|
|
+ DialogPrimitiveClose,
|
|
|
DialogPortal,
|
|
DialogPortal,
|
|
|
DialogOverlay,
|
|
DialogOverlay,
|
|
|
DialogClose,
|
|
DialogClose,
|
|
@@ -119,4 +118,4 @@ export {
|
|
|
DialogFooter,
|
|
DialogFooter,
|
|
|
DialogTitle,
|
|
DialogTitle,
|
|
|
DialogDescription,
|
|
DialogDescription,
|
|
|
-}
|
|
|
|
|
|
|
+};
|