re-formality icon indicating copy to clipboard operation
re-formality copied to clipboard

Form validation tool for reason-react

Results 18 re-formality issues
Sort by recently updated
recently updated
newest added

We are on the cusp of a new release of ReScript. There are some changes in the new version and we need support for the new version. ![image](https://github.com/shakacode/re-formality/assets/58360393/62ea99a8-14a8-4c48-8333-bed7fa1bfad1) ![image](https://github.com/shakacode/re-formality/assets/58360393/7f4eecc1-c373-4aad-acf2-c560dafc094f)

When 2 fields use `[@field.async]` then `valid()` function returns Some(true) even if one of them is invalid or even empty.

Hi, I'm using Re-Formality version `4.0.0.-beta-17` and noticed when exceeding more than 20 fields the build times goes up exponentially. In my project I need up to 50 fields and...

Can we reset the state to editing again after successful submit? So that user can do multiple submit action.

Notice how we define dependent fields in docs (it would give you some error). you should follow the new way as here https://github.com/shakacode/re-formality/blob/master/examples/src/SignupForm.res

Our API validates requests as a whole using JSON schema and returns a list of issues that we would like to update the form state with. The schema includes more...

Would it ever be considered to add an API for updating the metadata?

There are 2 possible use-cases for record value. Both can use `[@field.entity]` attribute. 1. Deserialization of set of fields into single type: ```reason type input = { date: [@field.entity] date',...

enhancement

I have this form that involves different screens, with routing between them etc. The state is global, and shared across screens (which are "dumb components"). I'm looking at re-formality as...