Maxime Mangel
Maxime Mangel
Currently Fable form is using the `label` of the field to keep track of their errors. But I am not sure if this is the correct ways of doing it,...
ATM to manipulate a `Fable.Form.Simple.Form.View.Model` state we have the following functions: - `Form.View.setLoading` But if we want to set the state to `Success`, `Error _` then we need to update...
Signature would be ```fs let disableWhen (condition: 'Values -> bool) (form: Form = Base.disableWhen condition form ``` I am unsure if we should add this helpers or if this would...
```fs let disableIf (disabled: bool) (form: Form
In a same way that a field can be disabled, I think adding `IsLoading` to the field config can make sense. I am unsure if we should do it the...
In general, we don't use that specificities of Fable.Form executing the form requires the FormValues and that's not what we send to the server in general. Indeed, in general we...
In theory, it should be possible to make Fable.Form works outside of Elmish. The base package of Fable.Form don't have a dependency on Elmish only the view does to get...
When writing Fable.Form I discovered the .fsi file feature of F# I liked the fact that it made everything private by default, however I am wondering if this not confusing...
Currently Fable.Form.Simple has a strong dependency on React. It should be possible to remove this dependency so it could be used in any Elmish application even ones running on top...