pull/6493/head
tugcekucukoglu 2024-09-27 09:04:56 +03:00
parent 60a3501502
commit 1c3c96d38a
2 changed files with 6 additions and 1 deletions

View File

@ -141,7 +141,7 @@ export default {
}, },
autofocus: { autofocus: {
type: Boolean, type: Boolean,
default: false default: null
} }
}, },
style: PasswordStyle, style: PasswordStyle,

View File

@ -252,6 +252,11 @@ export interface PasswordProps extends InputHTMLAttributes {
* @defaultValue null * @defaultValue null
*/ */
fluid?: boolean | undefined; fluid?: boolean | undefined;
/**
* When present, it specifies that an input element should automatically get focus when the page loads.
* @defaultValue null
*/
autofocus?: boolean | undefined;
/** /**
* Identifier of the underlying input element. * Identifier of the underlying input element.
*/ */