material-react-table-narender 2.13.8 → 2.13.9

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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "2.13.8",
2
+ "version": "2.13.9",
3
3
  "license": "MIT",
4
4
  "name": "material-react-table-narender",
5
5
  "description": "A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.",
@@ -179,11 +179,10 @@ if (['ArrowDown','ArrowUp'].includes(event.key)) {
179
179
  return; // Exit if it's an Autocomplete and it is focused
180
180
  }
181
181
  if (event.key === 'ArrowUp') {
182
- // check if the autocomplete is open
183
- const autocompleteList = currentCell.querySelector('.MuiAutocomplete-popper');
184
- if (autocompleteList) {
182
+ const popper = document.querySelector('.MuiPopper-root');
183
+ if (popper && getComputedStyle(popper).visibility === 'visible') {
185
184
  return;
186
- }
185
+ }
187
186
  }
188
187
  }
189
188