material-react-table-narender 2.13.6 → 2.13.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js CHANGED
@@ -503,15 +503,25 @@ const cellKeyboardShortcuts = ({ cell, cellElements, cellValue, containerElement
503
503
  'PageDown',
504
504
  ].includes(event.key)) {
505
505
  event.preventDefault();
506
- if (['ArrowDown'].includes(event.key)) {
507
- debugger; // This will pause execution for debugging purposes
508
- // Select the input element within the MUI Autocomplete component
506
+ // if (['ArrowDown'].includes(event.key)) {
507
+ // debugger; // This will pause execution for debugging purposes
508
+ // // Select the input element within the MUI Autocomplete component
509
+ // const autocomplete = currentCell.querySelector('.MuiAutocomplete-root input[type="text"]');
510
+ // // Check if the current cell is an MUI Autocomplete
511
+ // if (autocomplete) {
512
+ // return; // Exit the function if it's an Autocomplete
513
+ // }
514
+ // // Additional logic for when it's not an Autocomplete can go here
515
+ // }
516
+ if (['ArrowDown', 'ArrowUp'].includes(event.key)) {
509
517
  const autocomplete = currentCell.querySelector('.MuiAutocomplete-root input[type="text"]');
510
- // Check if the current cell is an MUI Autocomplete
511
- if (autocomplete) {
512
- return; // Exit the function if it's an Autocomplete
518
+ // Check if the autocomplete input exists and is focused
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
513
523
  }
514
- // Additional logic for when it's not an Autocomplete can go here
524
+ // Additional logic if not an Autocomplete or not focused
515
525
  }
516
526
  const currentRow = parentElement || currentCell.closest('tr');
517
527
  const tableElement = containerElement || currentCell.closest('table');