next
Kevin Brown 2022-04-26 13:26:06 -04:00
rodzic 5af0e40ad2
commit 0ff866979f
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 350938C3CB01A603
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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