Home / File/ combobox-popover.tsx — ui Source File

combobox-popover.tsx — ui Source File

Architecture documentation for combobox-popover.tsx, a tsx file in the ui codebase. 6 imports, 0 dependents.

File tsx ComponentRegistry ChartRegistry 6 imports 1 functions

Entity Profile

Dependency Diagram

graph LR
  bc41868e_0163_3dc4_13a0_5c17122d7990["combobox-popover.tsx"]
  1d141819_425e_b5fd_4c8e_32f7c6a42cf2["react"]
  bc41868e_0163_3dc4_13a0_5c17122d7990 --> 1d141819_425e_b5fd_4c8e_32f7c6a42cf2
  d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3["lucide-react"]
  bc41868e_0163_3dc4_13a0_5c17122d7990 --> d39cd1e4_1b2d_9aa2_1d29_fd0b4bfb61c3
  79081a1f_55a3_945a_fb8c_d53d6d3eab81["utils"]
  bc41868e_0163_3dc4_13a0_5c17122d7990 --> 79081a1f_55a3_945a_fb8c_d53d6d3eab81
  d418ad18_b947_f4e5_6e4c_01100d7a63e4["button"]
  bc41868e_0163_3dc4_13a0_5c17122d7990 --> d418ad18_b947_f4e5_6e4c_01100d7a63e4
  546c6954_c407_41fc_2cb8_f5db98d487e2["command"]
  bc41868e_0163_3dc4_13a0_5c17122d7990 --> 546c6954_c407_41fc_2cb8_f5db98d487e2
  d1761ea6_65b9_f5fd_76e0_66663b00b300["popover"]
  bc41868e_0163_3dc4_13a0_5c17122d7990 --> d1761ea6_65b9_f5fd_76e0_66663b00b300
  style bc41868e_0163_3dc4_13a0_5c17122d7990 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

"use client"

import * as React from "react"
import {
  ArrowUpCircle,
  CheckCircle2,
  Circle,
  HelpCircle,
  LucideIcon,
  XCircle,
} from "lucide-react"

import { cn } from "@/lib/utils"
import { Button } from "@/registry/default/ui/button"
import {
  Command,
  CommandEmpty,
  CommandGroup,
  CommandInput,
  CommandItem,
  CommandList,
} from "@/registry/default/ui/command"
import {
  Popover,
  PopoverContent,
  PopoverTrigger,
} from "@/registry/default/ui/popover"

type Status = {
  value: string
  label: string
  icon: LucideIcon
}

const statuses: Status[] = [
  {
    value: "backlog",
    label: "Backlog",
    icon: HelpCircle,
  },
  {
    value: "todo",
    label: "Todo",
    icon: Circle,
  },
  {
    value: "in progress",
    label: "In Progress",
    icon: ArrowUpCircle,
  },
  {
    value: "done",
    label: "Done",
    icon: CheckCircle2,
  },
  {
    value: "canceled",
    label: "Canceled",
    icon: XCircle,
  },
// ... (66 more lines)

Subdomains

Functions

Types

Dependencies

  • button
  • command
  • lucide-react
  • popover
  • react
  • utils

Frequently Asked Questions

What does combobox-popover.tsx do?
combobox-popover.tsx is a source file in the ui codebase, written in tsx. It belongs to the ComponentRegistry domain, ChartRegistry subdomain.
What functions are defined in combobox-popover.tsx?
combobox-popover.tsx defines 1 function(s): ComboboxPopover.
What does combobox-popover.tsx depend on?
combobox-popover.tsx imports 6 module(s): button, command, lucide-react, popover, react, utils.
Where is combobox-popover.tsx in the architecture?
combobox-popover.tsx is located at deprecated/www/registry/default/examples/combobox-popover.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: deprecated/www/registry/default/examples).

Analyze Your Own Codebase

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

Try Supermodel Free