material-react-table-narender 2.13.7 → 2.13.9

Sign up to get free protection for your applications and to get access to all the features.
package/dist/index.esm.js CHANGED
@@ -517,9 +517,17 @@ const cellKeyboardShortcuts = ({ cell, cellElements, cellValue, containerElement
517
517
  const autocomplete = currentCell.querySelector('.MuiAutocomplete-root input[type="text"]');
518
518
  // Check if the autocomplete input exists and is focused
519
519
  if (autocomplete && document.activeElement === autocomplete) {
520
- // Do something with the autocomplete input
521
- console.log('Autocomplete input found and is focused:', autocomplete);
522
- return; // Exit if it's an Autocomplete and it is focused
520
+ if (event.key === 'ArrowDown') {
521
+ // Do something with the autocomplete input
522
+ console.log('Autocomplete input found and is focused:', autocomplete);
523
+ return; // Exit if it's an Autocomplete and it is focused
524
+ }
525
+ if (event.key === 'ArrowUp') {
526
+ const popper = document.querySelector('.MuiPopper-root');
527
+ if (popper && getComputedStyle(popper).visibility === 'visible') {
528
+ return;
529
+ }
530
+ }
523
531
  }
524
532
  // Additional logic if not an Autocomplete or not focused
525
533
  }