The onItemSelect callback method for Blueprint's select component gets triggered only when an option is clicked or the 'enter' key is pressed. I would like it to be triggered when the 'Tab' key is pressed too.
const DropSelect = Select.ofType<IDropdownOption>();
<DropSelect
onItemSelect={onItemSelect}
/>