OneForm icon indicating copy to clipboard operation
OneForm copied to clipboard

The OneForm library you need!

Results 9 OneForm issues
Sort by recently updated
recently updated
newest added

Currently, `OneForm` uses refs to get functions in change handlers embedded into props passed to hooks. We need to change that so the hook itself returns a subscriber function that...

## (The continuing adventures of using `OneForm` with `PrimeReact`, part N+1 :D) Seems like when the input component calls `onChange` with either just `undefined` as a value or with `event.target.value`...

Right now, there's no way to know what's wrong when your form won't submit if you didn't properly design your form. The intention is you build validation in your form...

Right now, `OneForm` doesn't manage the disabled state on anything; it's something you have to do yourself. ## Submit Button Typically, people want to disable the submit button until all...

OneForm has many contexts, but if you're missing the OneForm, it currently errors about things not existing in context; although, these errors are pretty cryptic and come from invalid JS,...

Is this superseded by issue #3 ? If it's not, you should definitely give up on `Symbol`s, it's not like you use them as actual `Symbol`s, given the fact that...

Gave you access to the repository containing the current Typescript work, if you want to take a look. Started from the main OneForm component and trying to get everything to...

Was wondering if it wouldn't help to send the default computed child props to the translateProps function as one of the parameters. Most of the time you only need to...

In the original implementation at Minted, `onChange` did its thing only once and there was nothing about subsequent updates. In OneForm, I added a handler for subsequent updates, but it...