UISelect
This component renders a list of selectable items. Toggles, Buttons or Dropdown. Should be rewritten because kind of mess.
Properties
Name
Type
Description
list
placeholder
string
For dropdown. To provied placeholder value
emptyOptionLabel
string
For dropdown. Used insted of placeholder if want to provied reset option to dropdown
isSelected
function
Required - Callback check if selected
onChangeList
function
Required - Callback when list changes
Example
UISelect.list
This component renders a list of selectable items.
It supports 3 types of lists: drop-down list, toggle list and button list.
The list is defined as a property, that should contain:
Properties
Name
Type
Default
Description
label
string
Required - Only on top level list
type
string
Required - Type of output. toggle|button|dropdown
multivalue
boolean
false
Determines you should be able to select many options. Don't works with dropdown
values
Array.<object>
Required - List with values
values.title
string
Required - Title for value in list
values.list
Toggle option. Optional list to be display when choosen
Example
Last updated