@tanstack/table-core 8.11.0 → 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/lib/types.d.ts +3 -3
- 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
- package/src/types.ts +3 -3
package/build/lib/index.mjs
CHANGED
|
@@ -2206,7 +2206,7 @@ const RowSelection = {
|
|
|
2206
2206
|
};
|
|
2207
2207
|
const mutateRowIsSelected = (selectedRowIds, id, value, includeChildren, table) => {
|
|
2208
2208
|
var _row$subRows;
|
|
2209
|
-
const row = table.getRow(id);
|
|
2209
|
+
const row = table.getRow(id, true);
|
|
2210
2210
|
|
|
2211
2211
|
// const isGrouped = row.getIsGrouped()
|
|
2212
2212
|
|