Home / File/ registry-ui.ts — ui Source File

registry-ui.ts — ui Source File

Architecture documentation for registry-ui.ts, a typescript file in the ui codebase. 1 imports, 0 dependents.

File typescript 1 imports

Entity Profile

Dependency Diagram

graph LR
  5c2814fe_e8e5_7a8a_b99a_7beed87604a9["registry-ui.ts"]
  ceec689a_1334_a657_3c35_094070222b09["schema"]
  5c2814fe_e8e5_7a8a_b99a_7beed87604a9 --> ceec689a_1334_a657_3c35_094070222b09
  style 5c2814fe_e8e5_7a8a_b99a_7beed87604a9 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

import { type Registry } from "shadcn/schema"

export const ui: Registry["items"] = [
  {
    name: "accordion",
    type: "registry:ui",
    dependencies: ["@radix-ui/react-accordion"],
    files: [
      {
        path: "ui/accordion.tsx",
        type: "registry:ui",
      },
    ],
    tailwind: {
      config: {
        theme: {
          extend: {
            keyframes: {
              "accordion-down": {
                from: { height: "0" },
                to: { height: "var(--radix-accordion-content-height)" },
              },
              "accordion-up": {
                from: { height: "var(--radix-accordion-content-height)" },
                to: { height: "0" },
              },
            },
            animation: {
              "accordion-down": "accordion-down 0.2s ease-out",
              "accordion-up": "accordion-up 0.2s ease-out",
            },
          },
        },
      },
    },
  },
  {
    name: "alert",
    type: "registry:ui",
    files: [
      {
        path: "ui/alert.tsx",
        type: "registry:ui",
      },
    ],
  },
  {
    name: "alert-dialog",
    type: "registry:ui",
    dependencies: ["@radix-ui/react-alert-dialog"],
    registryDependencies: ["button"],
    files: [
      {
        path: "ui/alert-dialog.tsx",
        type: "registry:ui",
      },
    ],
  },
  {
    name: "aspect-ratio",
// ... (629 more lines)

Dependencies

  • schema

Frequently Asked Questions

What does registry-ui.ts do?
registry-ui.ts is a source file in the ui codebase, written in typescript.
What does registry-ui.ts depend on?
registry-ui.ts imports 1 module(s): schema.
Where is registry-ui.ts in the architecture?
registry-ui.ts is located at deprecated/www/registry/registry-ui.ts (directory: deprecated/www/registry).

Analyze Your Own Codebase

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

Try Supermodel Free