Calendar: Alt + Up Arrow support added

pull/4485/head
Tuğçe Küçükoğlu 2023-09-20 22:53:39 +03:00
parent 91b362b6a8
commit f8d27530c8
2 changed files with 29 additions and 19 deletions

View File

@ -2031,6 +2031,11 @@ export default {
case 'ArrowUp': {
cellContent.tabIndex = '-1';
if (event.altKey) {
this.overlayVisible = false;
this.focused = true;
} else {
let prevRow = cell.parentElement.previousElementSibling;
if (prevRow) {
@ -2057,6 +2062,7 @@ export default {
this.navigationState = { backward: true };
this.navBackward(event);
}
}
event.preventDefault();
break;

View File

@ -116,12 +116,16 @@
</tr>
<tr>
<td><i>space</i></td>
<td>Selects the date, closes the popup and moves focus to the input element.</td>
<td>Closes the popup and moves focus to the input element.</td>
</tr>
<tr>
<td><i>up arrow</i></td>
<td>Moves focus to the same day of the previous week.</td>
</tr>
<tr>
<td><i>alt</i> + <i>up arrow</i></td>
<td>Closes the popup and moves focus to the input element.</td>
</tr>
<tr>
<td><i>down arrow</i></td>
<td>Moves focus to the same day of the next week.</td>
@ -148,7 +152,7 @@
</tr>
<tr>
<td><i>shift</i> + <i>page up</i></td>
<td>Changes the date to previous year in date picker mode. Has no effect in month or year picker</td>
<td>Changes the date to previous year in date picker mode. Has no effect in month or year picker.</td>
</tr>
<tr>
<td><i>page down</i></td>
@ -156,7 +160,7 @@
</tr>
<tr>
<td><i>shift</i> + <i>page down</i></td>
<td>Changes the date to next year in date picker mode. Has no effect in month or year picker</td>
<td>Changes the date to next year in date picker mode. Has no effect in month or year picker.</td>
</tr>
</tbody>
</table>