Confidenceman02
Confidenceman02
## The Story Say we have a button in a view `button[id "SomeId"][text "Button"]. Programatically focussing on that button with a Cmd like - `Task.attempt focusMsg (BrowserDom.focus "SomeId")` will produce...
# Context Sometimes chapters will produce their own subscriptions or consume libraries which produce subscriptions. Elm-book currently handles subscriptions at the `Book` level but does not make available chapter state...
The ellie-app example referenced in the README seems to be broken. https://ellie-app.com/8kHgbSLfhfha1
Currently the attributes on options are managed and it's not possible to add any custom attributes to the option. For example, given a Native variant we might like the items...
The variants don't support the [required](https://www.w3schools.com/tags/att_input_required.asp) attribute. This becomes a problem when they exist inside native forms and the behavior expected is that we get a native prompt asking the...
# Context Select controls such as the clear button do not consist of text that is discoverable by a screen reader. # Solution - create visually hidden text so screen...
Some menu items might act more like buttons, where we can click the menu item, something happens , and we can click it again to trigger another repeatable action. Currently...
Elm-select will render all the items you give it and if it's thousands then things can lag. There is nothing unusual about this, its more so that the DOM can...
Label elements have default behaviour in that it will focus the input child simply by clicking on the label itself. Using this instead of firing events could simplify and improve...
From the [elm discourse](https://discourse.elm-lang.org/t/new-confidenceman02-elm-select-features/8855) post. >Hi, > >I’ve just played with the examples, and one issue I found was if the select is searchable you can’t edit the entry. So...