diff --git a/source/_docs/blueprint/selectors.markdown b/source/_docs/blueprint/selectors.markdown index 2b489ecda7e..976a3df893d 100644 --- a/source/_docs/blueprint/selectors.markdown +++ b/source/_docs/blueprint/selectors.markdown @@ -22,6 +22,7 @@ The following selectors are currently available: - [Entity selector](#entity-selector) - [Number selector](#number-selector) - [Object selector](#object-selector) +- [Select selector](#select-selector) - [Target selector](#target-selector) - [Text selector](#text-selector) - [Time selector](#time-selector) @@ -381,6 +382,29 @@ This selector does not have any other options; therefore, it only has its key. object: ``` +## Select selector + +The select selector shows a list of available options from which the user can choose. The value of the input contains the value of the selected option. Only a single option can be selected at a time. + +![Screenshot of a select selector](/images/blueprints/selector-select.png) + +The selector requires a list of options that the user can choose from. + +```yaml +select: + options: + - Red + - Green + - Blue +``` + +{% configuration select %} +options: + description: List of options that the user can choose from. + type: list + required: true +{% endconfiguration %} + ## Target selector The target selector is a rather special selector, allowing the user to selector diff --git a/source/images/blueprints/selector-select.png b/source/images/blueprints/selector-select.png new file mode 100644 index 00000000000..6c12c0aa9eb Binary files /dev/null and b/source/images/blueprints/selector-select.png differ