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.
package/README.md CHANGED
@@ -21,14 +21,10 @@
21
21
 
22
22
  ## About
23
23
 
24
- > Version 1.0 released 2022-09-13 🎉
25
-
26
24
  __Built with [Material UI <sup>V5</sup>](https://mui.com) and [TanStack Table <sup>V8</sup>](https://tanstack.com/table/v8)__
27
25
 
28
26
  _Quickly Create React Data Tables with Material Design_
29
27
 
30
- _Full [Localization (i18n)](https://www.material-react-table.com/docs/guides/localization) Support!_
31
-
32
28
  Join the [Discord](https://discord.gg/5wqyRx6fnm) server to join in on the development discussion or ask questions
33
29
 
34
30
  View the [Docs Website](https://www.material-react-table.com/)
package/dist/cjs/index.js CHANGED
@@ -2247,10 +2247,11 @@ const MRT_TableBodyCell = ({ cell, enableHover, numRows, rowIndex, rowRef, table
2247
2247
  editingMode === 'cell') {
2248
2248
  setEditingCell(cell);
2249
2249
  queueMicrotask(() => {
2250
+ var _a;
2250
2251
  const textField = editInputRefs.current[column.id];
2251
2252
  if (textField) {
2252
2253
  textField.focus();
2253
- textField.select();
2254
+ (_a = textField.select) === null || _a === void 0 ? void 0 : _a.call(textField);
2254
2255
  }
2255
2256
  });
2256
2257
  }