elm-designer
elm-designer copied to clipboard
Add select and multi select form inputs
I wanted to build an app and this was literally the first thing I looked for, but it seems to be missing? 😅
if your are looking for something like <select>, it is missing because intentionally omitted from Elm UI too, see https://discourse.elm-lang.org/t/input-select-not-available-in-elm-ui/2874/5?u=passiomatic . Right now Elm Designer tends to be a 1:1 mapping on Elm UI so it makes sense to follow its API as much as possible.
There's a myriad of alternative picker, dropdown, multi-select widgets for Elm, each one with its own API. So your best bet is to do a little analysis on your requirements and plug it in directly bypassing Elm Designer.
I'm closing this since in Elm UI using select is discouraged.