Added documentation for password mode in input_text (#4489)

* Added password mode

* Added password mode

* Added password mode
This commit is contained in:
Eu 2018-02-11 18:34:35 +01:00 committed by Paulus Schoutsen
parent 5eff43736b
commit 3ce0f0981a

View File

@ -12,7 +12,7 @@ ha_category: Automation
ha_release: 0.53
---
The `input_text` component allows the user to define values that can be controlled via the frontend and can be used within conditions of automation. Changes to the value stored in the text box generate state events. These state events can be utilized as `automation` triggers as well.
The `input_text` component allows the user to define values that can be controlled via the frontend and can be used within conditions of automation. Changes to the value stored in the text box generate state events. These state events can be utilized as `automation` triggers as well. It can also be configured in password mode (obscured text).
```yaml
# Example configuration.yaml entries
@ -27,6 +27,9 @@ input_text:
text3:
name: Text 3
pattern: '[a-fA-F0-9]*'
text4:
name: Text 4
mode: password
```
{% configuration %}
@ -59,6 +62,11 @@ input_text:
required: false
type: String
default: empty
mode:
description: Can specify `text` or `password`. Elements of type "password" provide a way for the user to securely enter a value.
required: false
type: String
default: text
{% endconfiguration %}
### {% linkable_title Restore State %}