Remove autoComplete restriction to allow more complex auto-filling behaviour (#7699)

This commit is contained in:
delesseps 2017-09-22 15:31:48 +10:00 committed by 偏右
parent df69320fc2
commit bb411517cf

View File

@ -37,7 +37,7 @@ export interface InputProps extends AbstractInputProps {
onClick?: React.FormEventHandler<any>;
onFocus?: React.FormEventHandler<any>;
onBlur?: React.FormEventHandler<any>;
autoComplete?: 'on' | 'off';
autoComplete?: string;
prefix?: React.ReactNode;
suffix?: React.ReactNode;
spellCheck?: boolean;