Home / File/ dialog-scrollable-content.tsx — ui Source File

dialog-scrollable-content.tsx — ui Source File

Architecture documentation for dialog-scrollable-content.tsx, a tsx file in the ui codebase. 2 imports, 0 dependents.

File tsx DocumentationAtlas ContentSourcing 2 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  264c03e5_eeea_5c20_f71a_4ef141e599da["dialog-scrollable-content.tsx"]
  4544fa74_9b37_0912_c55e_f4ff161b8e83["button"]
  264c03e5_eeea_5c20_f71a_4ef141e599da --> 4544fa74_9b37_0912_c55e_f4ff161b8e83
  1302ba46_078b_fe14_24f5_044257f9b4d6["dialog"]
  264c03e5_eeea_5c20_f71a_4ef141e599da --> 1302ba46_078b_fe14_24f5_044257f9b4d6
  style 264c03e5_eeea_5c20_f71a_4ef141e599da fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import { Button } from "@/examples/base/ui/button"
import {
  Dialog,
  DialogContent,
  DialogDescription,
  DialogHeader,
  DialogTitle,
  DialogTrigger,
} from "@/examples/base/ui/dialog"

export function DialogScrollableContent() {
  return (
    <Dialog>
      <DialogTrigger render={<Button variant="outline" />}>
        Scrollable Content
      </DialogTrigger>
      <DialogContent>
        <DialogHeader>
          <DialogTitle>Scrollable Content</DialogTitle>
          <DialogDescription>
            This is a dialog with scrollable content.
          </DialogDescription>
        </DialogHeader>
        <div className="no-scrollbar -mx-4 max-h-[50vh] overflow-y-auto px-4">
          {Array.from({ length: 10 }).map((_, index) => (
            <p key={index} className="mb-4 leading-normal">
              Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do
              eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut
              enim ad minim veniam, quis nostrud exercitation ullamco laboris
              nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in
              reprehenderit in voluptate velit esse cillum dolore eu fugiat
              nulla pariatur. Excepteur sint occaecat cupidatat non proident,
              sunt in culpa qui officia deserunt mollit anim id est laborum.
            </p>
          ))}
        </div>
      </DialogContent>
    </Dialog>
  )
}

Subdomains

Dependencies

  • button
  • dialog

Frequently Asked Questions

What does dialog-scrollable-content.tsx do?
dialog-scrollable-content.tsx is a source file in the ui codebase, written in tsx. It belongs to the DocumentationAtlas domain, ContentSourcing subdomain.
What functions are defined in dialog-scrollable-content.tsx?
dialog-scrollable-content.tsx defines 1 function(s): DialogScrollableContent.
What does dialog-scrollable-content.tsx depend on?
dialog-scrollable-content.tsx imports 2 module(s): button, dialog.
Where is dialog-scrollable-content.tsx in the architecture?
dialog-scrollable-content.tsx is located at apps/v4/examples/base/dialog-scrollable-content.tsx (domain: DocumentationAtlas, subdomain: ContentSourcing, directory: apps/v4/examples/base).

Analyze Your Own Codebase

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

Try Supermodel Free