Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -636,8 +636,10 @@ export type ComboboxProps<
name?: string
immediate?: boolean
virtual?: {
options: NoInfer<TValue>[]
disabled?: (value: NoInfer<TValue>) => boolean
options: TMultiple extends true ? EnsureArray<NoInfer<TValue>> : NoInfer<TValue>[]
disabled?: (
value: TMultiple extends true ? EnsureArray<NoInfer<TValue>>[number] : NoInfer<TValue>
) => boolean
} | null

onClose?(): void
Expand Down