Home / Function/ DialogContent() — ui Function Reference

DialogContent() — ui Function Reference

Architecture documentation for the DialogContent() function in dialog.tsx from the ui codebase.

Entity Profile

Dependency Diagram

graph TD
  2ede71c2_b194_65b6_b868_eb94659c57be["DialogContent()"]
  ef531616_dba5_c88b_4950_aa5928f977ae["dialog.tsx"]
  2ede71c2_b194_65b6_b868_eb94659c57be -->|defined in| ef531616_dba5_c88b_4950_aa5928f977ae
  style 2ede71c2_b194_65b6_b868_eb94659c57be fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

apps/v4/registry/new-york-v4/ui/dialog.tsx lines 50–82

function DialogContent({
  className,
  children,
  showCloseButton = true,
  ...props
}: React.ComponentProps<typeof DialogPrimitive.Content> & {
  showCloseButton?: boolean
}) {
  return (
    <DialogPortal data-slot="dialog-portal">
      <DialogOverlay />
      <DialogPrimitive.Content
        data-slot="dialog-content"
        className={cn(
          "bg-background 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 p-6 shadow-lg duration-200 outline-none sm:max-w-lg",
          className
        )}
        {...props}
      >
        {children}
        {showCloseButton && (
          <DialogPrimitive.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"
          >
            <XIcon />
            <span className="sr-only">Close</span>
          </DialogPrimitive.Close>
        )}
      </DialogPrimitive.Content>
    </DialogPortal>
  )
}

Subdomains

Frequently Asked Questions

What does DialogContent() do?
DialogContent() is a function in the ui codebase, defined in apps/v4/registry/new-york-v4/ui/dialog.tsx.
Where is DialogContent() defined?
DialogContent() is defined in apps/v4/registry/new-york-v4/ui/dialog.tsx at line 50.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free