Repository URL to install this package:
|
Version:
3.1.2 ▾
|
import * as React from 'react';
import { isValidSelect } from '../../validators';
import { InputProps, InputState } from '../inputs';
declare class SelectDropDownPlugin extends React.Component<InputProps> {
static isSatisfiedByProps(props: {
type: string;
}): boolean;
static defaultState: (inputState: InputState<import("../inputs/typings").AnyObj>) => {
validate: typeof isValidSelect;
};
/**
* @todo !!! these 3 are good examples of why we need validation strategy
*/
handleChange: (args: string) => void;
handleBlur: () => void;
handleFocus: () => void;
render(): JSX.Element;
}
export { SelectDropDownPlugin };
export default SelectDropDownPlugin;