material-react-table 1.3.0-beta.2 → 1.3.1
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/cjs/index.js +2 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/material-react-table.esm.js +2 -1
- package/dist/esm/material-react-table.esm.js.map +1 -1
- package/locales/it.esm.js +1 -1
- package/locales/it.esm.js.map +1 -1
- package/locales/it.js +1 -1
- package/locales/it.js.map +1 -1
- package/package.json +2 -2
- package/src/_locales/it.ts +1 -1
- package/src/body/MRT_TableBodyCell.tsx +1 -1
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
|
}
|