Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for providing value to onChange #41

Closed
andyrichardson opened this issue Feb 2, 2020 · 0 comments · Fixed by #123
Closed

Add support for providing value to onChange #41

andyrichardson opened this issue Feb 2, 2020 · 0 comments · Fixed by #123
Labels
Feature New feature or request

Comments

@andyrichardson
Copy link
Owner

If the argument to onChange is not an event, use the value as a value setter.

This will help native users #35

Work may be required to differentiate between an event which replaces state and toggles state.

Toggle (currently the case when event target is a checkbox)

// ['checkbox1']
onChange('checkbox2')
// ['checkbox1', 'checkbox2'] 
onChange('checkbox1')
// ['checkbox2'] 

Replace/set state

// ""
onChange("John")
// "John"
onChange("Carla")
// "Carla"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Feature New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant