@tanstack/table-core 8.11.1 → 8.11.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/build/lib/columnHelper.js.map +1 -1
- package/build/lib/features/RowSelection.js +1 -1
- package/build/lib/features/RowSelection.js.map +1 -1
- package/build/lib/index.esm.js +1 -1
- package/build/lib/index.esm.js.map +1 -1
- package/build/lib/index.mjs +1 -1
- package/build/lib/index.mjs.map +1 -1
- package/build/umd/index.development.js +1 -1
- package/build/umd/index.development.js.map +1 -1
- package/build/umd/index.production.js +1 -1
- package/build/umd/index.production.js.map +1 -1
- package/package.json +1 -1
- package/src/columnHelper.ts +1 -1
- package/src/features/RowSelection.ts +1 -1
|
@@ -2211,7 +2211,7 @@
|
|
|
2211
2211
|
};
|
|
2212
2212
|
const mutateRowIsSelected = (selectedRowIds, id, value, includeChildren, table) => {
|
|
2213
2213
|
var _row$subRows;
|
|
2214
|
-
const row = table.getRow(id);
|
|
2214
|
+
const row = table.getRow(id, true);
|
|
2215
2215
|
|
|
2216
2216
|
// const isGrouped = row.getIsGrouped()
|
|
2217
2217
|
|