material-react-table 1.3.0 → 1.3.2

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.
@@ -2167,10 +2167,11 @@ const MRT_TableBodyCell = ({ cell, enableHover, numRows, rowIndex, rowRef, table
2167
2167
  editingMode === 'cell') {
2168
2168
  setEditingCell(cell);
2169
2169
  queueMicrotask(() => {
2170
+ var _a;
2170
2171
  const textField = editInputRefs.current[column.id];
2171
2172
  if (textField) {
2172
2173
  textField.focus();
2173
- textField.select();
2174
+ (_a = textField.select) === null || _a === void 0 ? void 0 : _a.call(textField);
2174
2175
  }
2175
2176
  });
2176
2177
  }