MCPcopy Create free account
hub / github.com/TheOrcDev/github-creature / ComboboxList

Function ComboboxList

components/ui/combobox.tsx:137–148  ·  view source on GitHub ↗
({ className, ...props }: ComboboxPrimitive.List.Props)

Source from the content-addressed store, hash-verified

135}
136
137function ComboboxList({ className, ...props }: ComboboxPrimitive.List.Props) {
138 return (
139 <ComboboxPrimitive.List
140 data-slot="combobox-list"
141 className={cn(
142 "no-scrollbar max-h-[min(calc(--spacing(72)---spacing(9)),calc(var(--available-height)---spacing(9)))] scroll-py-1 overflow-y-auto data-empty:p-0 overflow-y-auto overscroll-contain",
143 className
144 )}
145 {...props}
146 />
147 );
148}
149
150function ComboboxItem({
151 className,

Callers

nothing calls this directly

Calls 1

cnFunction · 0.90

Tested by

no test coverage detected