open class Password : Text
Form field password component.
Password(value: String? = null, label: String? = null, rich: Boolean = false) |
var autocomplete: Boolean?
Determines if autocomplete is enabled for the input element. |
|
val input: TextInput
The actual input component. |
|
var type: TextInputType
Text input type. |
fun Container.password(value: String? = null, label: String? = null, rich: Boolean = false, init: Password.() -> Unit = null): Password
DSL builder extension function. |