I would expect the following:
(Select.single (Maybe.map actionTypeToItem maybeSelected)
|> Select.state selectState
|> Select.placeholder "Select action type"
|> Select.setStyles SelectStyles.base
|> Select.menuItems (List.map actionTypeToItem actionTypes)
|> Select.name resolvedName
|> Select.required True
|> Select.searchable False
)
To behave like a required field in a form.
The required flags sadly are not placed on the dummy input when searchable is False.
I would expect the following:
To behave like a required field in a form.
The required flags sadly are not placed on the dummy input when searchable is
False.