@@ -88,12 +88,46 @@ import { APITable } from '../../../../../components/api-table/api-table';
88
88
keyDescriptors = { [
89
89
{
90
90
keyTitle: ' Tab' ,
91
- description: ' Moves focus to next tab .' ,
91
+ description: ' Moves focus to the selected panel .' ,
92
92
},
93
93
{
94
94
keyTitle: ' Shift + Tab' ,
95
+ description: ' Moves focus to the selected tab.' ,
96
+ },
97
+ {
98
+ keyTitle: ' ArrowRight' ,
99
+ description: ' Moves focus to the next tab.' ,
100
+ },
101
+ {
102
+ keyTitle: ' ArrowLeft' ,
95
103
description: ' Moves focus to the previous tab.' ,
96
104
},
105
+ {
106
+ keyTitle: ' ArrowDown' ,
107
+ description: ' In "vertical mode", moves focus to the next tab.' ,
108
+ },
109
+ {
110
+ keyTitle: ' ArrowUp' ,
111
+ description: ' In "vertical mode", moves focus to the previous tab.' ,
112
+ },
113
+ {
114
+ /* {
115
+ keyTitle: 'Home',
116
+ description: 'Moves focus to the first tab.',
117
+ },
118
+ {
119
+ keyTitle: 'PageUp',
120
+ description: 'Moves focus to the first tab.',
121
+ },
122
+ {
123
+ keyTitle: 'End',
124
+ description: 'Moves focus to the last tab.',
125
+ },
126
+ {
127
+ keyTitle: 'PageDown',
128
+ description: 'Moves focus to the first tab.',
129
+ }, */
130
+ },
97
131
]}
98
132
/>
99
133
@@ -109,6 +143,12 @@ import { APITable } from '../../../../../components/api-table/api-table';
109
143
description:
110
144
' Toggle between automatic or manual. The automatic behavior moves between tabs when hover. The manual behavior moves between tabs on click.' ,
111
145
},
146
+ {
147
+ name: ' vertical' ,
148
+ type: ' boolean' ,
149
+ description:
150
+ ' If set to true, the behavior of UpArrow and DownArrow will navigate between tabs vertically instead of horizontally.' ,
151
+ },
112
152
]}
113
153
/>
114
154
0 commit comments