UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

20 lines (19 loc) 742 B
import { Factory } from '../../../core'; import { PopoverDropdownProps } from '../../Popover'; export type ComboboxDropdownStylesNames = 'dropdown'; export interface ComboboxDropdownProps extends PopoverDropdownProps { /** Determines whether the dropdown should be hidden, for example, when there are no options to display */ hidden?: boolean; } export type ComboboxDropdownFactory = Factory<{ props: ComboboxDropdownProps; ref: HTMLDivElement; stylesNames: ComboboxDropdownStylesNames; compound: true; }>; export declare const ComboboxDropdown: import("../../../core").MantineComponent<{ props: ComboboxDropdownProps; ref: HTMLDivElement; stylesNames: ComboboxDropdownStylesNames; compound: true; }>;