Hi,
I have a use case where our users can choose whether or not to validate their data on paste or not. I’m using the react version and I can’t seem to find a way to identify, during the beforeValidation hook, where I can determine if the validation was caused just after a paste or not.
I want to, if possible, avoid resorting to keeping some external state outside of the component (using useState and render cycle would not happen in time to catch in the beforeValidate hook) and see if there are some internals in hot that could give me access to this information.
Thanks.