composable-form
composable-form copied to clipboard
Build type-safe composable forms in Elm
I can't find the description of what the error parameter does for the different fields.
Hello! I noticed that the Ellie example wasn't compiling. It was using an older composable-form version (5.0.0), and Ellie has a known issue where it can't install older package versions,...
Hi - composable-form looks great. I see that it hasn't been updated in a long while, and there are outstanding issues and a PR. Is the project no longer maintained?...
Hi, _`Form.View.Model` does not seem to update `state` + `errorTracking` upon an invalid form validation._ I've been trying out this library and enjoy using it a lot. However, I'm unsure...
I need some custom attributes. `data-test-id` or `id` or `name` for e2e tests, and `autocomplete` to let browsers properly fill out login/signup forms. I've been using `Form.View.custom` so far, with...
Add ability to add any custom HTML attributes to FieldConfigs. Defaults to empty list for small impact if not used. Use cases: * Need to identify the rendered fields in...
The jump in complexity from using the `Form` module to creating custom fields using `Form.Base` can be really disconcerting. [As I explained in a related Discourse thread](https://discourse.elm-lang.org/t/hecrj-composable-forms-help-with-custom-fields-and-custom-views/4375), we should explore...
There are some times when a set of fields are related. It'd be cool if a label could be added to `Form.group` similar to hos `Form.list`works.
For a long time I thought this was impossible to do without writing `toString/fromString` functions for your custom types, but I just realized that you can make it work by...
Most of the examples in the documentation are missing the new `error` attribute and need to be updated. Additionally, we should explain the new `error` attribute in `Form` and clarify...