I am using the tabset component of ng-bootstrap for my angular project and I am wondering if it's possible to navigate through the different tabs of my ngb-tabset by using the keyboard keys (i.e. "alt" key or "alt"+"n" keys)?
My code looks like:
<ngb-tabset>
<ngb-tab title="Tab 1">
<ng-template ngbTabContent>
Some Content
</ng-template>
</ngb-tab>
<ngb-tab title="Tab 2">
<ng-template ngbTabContent>
Some Content
</ng-template>
</ngb-tab>
<ngb-tab title="Tab 3">
<ng-template ngbTabContent>
Some Content
</ng-template>
</ngb-tab>
</ngb-tabset>