Refactor #6413
parent
60a3501502
commit
1c3c96d38a
|
@ -141,7 +141,7 @@ export default {
|
||||||
},
|
},
|
||||||
autofocus: {
|
autofocus: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: false
|
default: null
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
style: PasswordStyle,
|
style: PasswordStyle,
|
||||||
|
|
|
@ -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.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue