Add disabled

This commit is contained in:
Kevin Brown 2022-04-26 13:26:06 -04:00
parent 5af0e40ad2
commit 0ff866979f
No known key found for this signature in database
GPG Key ID: 350938C3CB01A603
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ const messages = defineMessages({
hidePassword: { id: 'input.password.hide_password', defaultMessage: 'Hide password' },
});
interface IInput extends Pick<React.InputHTMLAttributes<HTMLInputElement>, 'maxLength' | 'onChange' | 'type' | 'autoComplete' | 'autoCorrect' | 'autoCapitalize' | 'required'> {
interface IInput extends Pick<React.InputHTMLAttributes<HTMLInputElement>, 'maxLength' | 'onChange' | 'type' | 'autoComplete' | 'autoCorrect' | 'autoCapitalize' | 'required' | 'disabled'> {
autoFocus?: boolean,
defaultValue?: string,
className?: string,