Browse Source

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

pull/7654/head
delesseps 7 years ago
committed by 偏右
parent
commit
bb411517cf
  1. 2
      components/input/Input.tsx

2
components/input/Input.tsx

@ -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;

Loading…
Cancel
Save