You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 14, 2025. It is now read-only.
fix(list): maintain classes with state.listItemClassNames (#776)
BREAKING CHANGE: Removes props.tabbableOnListItemFocus from all the auxiliary components, as it seemed confusing to have this and tabIndex dictate what tabIndex would ultimately be.
| className | String | Classes to be applied to the list item text element |
314
314
| tabIndex | Number | Tab index of the list item text |
315
-
| tabbableOnListItemFocus | Boolean | Whether focusing list item will toggle tab index of the list item text. If false, the tab index will always be -1 |
316
315
| primaryText | String | Primary text for the list item |
317
316
| secondaryText | String | Secondary text for the list item |
318
317
@@ -322,7 +321,6 @@ class MyApp extends Component {
| className | String | Classes to be applied to the list item graphic element |
324
323
| tabIndex | Number | Tab index of the list item graphic |
325
-
| tabbableOnListItemFocus | Boolean | Whether focusing list item will toggle tab index of the list item graphic. If false, the tab index will always be -1 |
326
324
| graphic | Element | The graphic element to be displayed in front of list item text |
327
325
328
326
### ListItemMeta
@@ -331,7 +329,6 @@ class MyApp extends Component {
| className | String | Classes to be applied to the list item meta element |
333
331
| tabIndex | Number | Tab index of the list item meta |
334
-
| tabbableOnListItemFocus | Boolean | Whether focusing list item will toggle tab index of the list item meta. If false, the tab index will always be -1 |
335
332
| meta | Element or String | The meta element or string to be displayed behind list item text |
0 commit comments