-
-
Notifications
You must be signed in to change notification settings - Fork 447
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3cfdad1
commit 77194eb
Showing
10 changed files
with
151 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
apps/material-react-table-docs/pages/docs/guides/accessibility.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import Head from 'next/head'; | ||
import TableOptionsTable from '../../../components/prop-tables/TableOptionsTable'; | ||
import ColumnOptionsTable from '../../../components/prop-tables/ColumnOptionsTable'; | ||
import StateOptionsTable from '../../../components/prop-tables/StateOptionsTable'; | ||
|
||
<Head> | ||
<title> | ||
{'Accessibility / Keyboard Navigation Guide - Material React Table V3 Docs'} | ||
</title> | ||
<meta | ||
name="description" | ||
content="How to use and customize the accessibility and keyboard navigation features of Material React Table" | ||
/> | ||
</Head> | ||
|
||
## Accessibility / Keyboard Navigation Guide | ||
|
||
Material React Table tries to get the basics of data grid accessibility right out of the box. But since you can easily add event handlers to just about any interaction inside of the table, you can heavily customize the accessibility of your table to your needs. | ||
|
||
### Relevant Table Options | ||
|
||
<TableOptionsTable | ||
onlyOptions={new Set(['enableCellNavigation'])} | ||
/> | ||
|
||
### Keyboard Navigation | ||
|
||
> New in v3 | ||
Material React Table uses the `tab` key to move focus between cells, rows, and columns. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters