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
|
@@ -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
|
}
|