UNPKG

focus-components-v3

Version:

Focus web components to build applications (based on Material Design)

25 lines (23 loc) 645 B
export interface SelectProps { autoFocus?: boolean; disabled?: boolean; error?: string | null; hasUndefined?: boolean; isActiveProperty?: string; isRequired?: boolean; labelKey?: string; multiple?: boolean; name: string; onChange: (value: string | number) => void; placeholder?: string; rawInputValue?: string | number; size?: number; style?: React.CSSProperties; unSelectedLabel?: string; valid?: boolean; valueKey?: string; values: {}[]; } export default class Select extends React.Component<SelectProps, {}> { getValue(): string | number; }