I did a little inspecting and it would seem that there is not tabIndex
specified on the containers so they cannot accept focus like something normally would be able to like your input.
Interesting that they have onFocus
and onBlur
as options though... Maybe I am missing something.
@PGriffith or @Kevin.Herron is there a reason tabIndex
is not an exposed property for users to be able to control? Especially with the containers presenting the option of focus and blur?
Edit:
This is an option in the meta section:
Meaning if you just add tabIndex in the meta
section of the component props that it will allow focus and your dropdown should work like you 'd expect since it wont' lose focus when clicking items within itself.