I have a SingleDayPicker control that is an input to a callback.
The primary user of this tool prefers to type the dates - rather than select using the calendar dropdown.
What I’m seeing is that the callback fires a little too aggressively.
For example, if the date ‘11/01/2023’ is showing, and the user wants to change it to ‘12/02/2023’, as soon as the ‘11’ is changed to a ‘12’, the callback will fire.
I’m basically looking for a ‘debounce’ type of option.
Is there anything like this? I don’t see it in the documentation.
Thanks!