Skip to content

Commit

Permalink
[docs] Align keyboard interaction docs with recent updates (mantinede…
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptammergard authored Apr 4, 2023
1 parent 6b33fe5 commit e948404
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions docs/src/docs/dates/DatePicker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -213,19 +213,19 @@ Note that the following events will only trigger if focus is on date control.
data={[
{
key: 'ArrowRight',
description: 'Focuses next date in a row that is not disabled',
description: 'Focuses next non-disabled date',
},
{
key: 'ArrowLeft',
description: 'Focuses previous date in a row that is not disabled',
description: 'Focuses previous non-disabled date',
},
{
key: 'ArrowDown',
description: 'Focuses next date in a column that is not disabled',
description: 'Focuses next non-disabled date in the same column',
},
{
key: 'ArrowUp',
description: 'Focuses previous date in a column that is not disabled',
description: 'Focuses previous non-disabled date in the same column',
},
]}
/>
8 changes: 4 additions & 4 deletions docs/src/docs/dates/MonthPicker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -168,19 +168,19 @@ Note that the following events will only trigger if focus is on month control.
data={[
{
key: 'ArrowRight',
description: 'Focuses next month in a row that is not disabled',
description: 'Focuses next non-disabled month',
},
{
key: 'ArrowLeft',
description: 'Focuses previous month in a row that is not disabled',
description: 'Focuses previous non-disabled month',
},
{
key: 'ArrowDown',
description: 'Focuses next month in a column that is not disabled',
description: 'Focuses next non-disabled month in the same column',
},
{
key: 'ArrowUp',
description: 'Focuses previous month in a column that is not disabled',
description: 'Focuses previous non-disabled month in the same column',
},
]}
/>
8 changes: 4 additions & 4 deletions docs/src/docs/dates/YearPicker.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -149,19 +149,19 @@ Note that the following events will only trigger if focus is on year control.
data={[
{
key: 'ArrowRight',
description: 'Focuses next year in a row that is not disabled',
description: 'Focuses next non-disabled year',
},
{
key: 'ArrowLeft',
description: 'Focuses previous year in a row that is not disabled',
description: 'Focuses previous non-disabled year',
},
{
key: 'ArrowDown',
description: 'Focuses next year in a column that is not disabled',
description: 'Focuses next non-disabled year in the same column',
},
{
key: 'ArrowUp',
description: 'Focuses previous year in a column that is not disabled',
description: 'Focuses previous non-disabled year in the same column',
},
]}
/>

0 comments on commit e948404

Please sign in to comment.