@tabula/ui-selector
Version:
Selector allow users to choose a single option from a collapsible list of options when space is limited
7 lines (6 loc) • 503 B
TypeScript
import { ReactNode } from 'react';
import { Props } from '../Selector.types';
export declare function UiSelector({ children, config: outerConfig, defaultItem, emptyContent, isInvalid, isVisible: outerVisible, isWarning, loading, offset, onChangeVisible: onChangeOuterVisible, onRenderTrigger, placeholder, readOnly, searchClassName, showSearchClear, showSearchField, triggerClassName, triggerContainerClassName, }: Props): ReactNode;
export declare namespace UiSelector {
var displayName: string;
}