Currently onChange is implement how the spec works, basically emitting the event only when we blur the input field.
In other frameworks usually onChange is called after each value change, similar to onInput, at least I think so. I need to dig deeper and see what other frameworks do and probably copy that in case it is a standard.
Currently
onChange
is implement how the spec works, basically emitting the event only when we blur the input field.In other frameworks usually
onChange
is called after each value change, similar toonInput
, at least I think so. I need to dig deeper and see what other frameworks do and probably copy that in case it is a standard.