@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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tanstack/table-core",
3
3
  "author": "Tanner Linsley",
4
- "version": "8.11.1",
4
+ "version": "8.11.2",
5
5
  "description": "Headless UI for building powerful tables & datagrids for TS/JS.",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/tanstack/table#readme",
@@ -6,7 +6,7 @@ import {
6
6
  IdentifiedColumnDef,
7
7
  RowData,
8
8
  } from './types'
9
- import { DeepKeys, DeepValue, RequiredKeys } from './utils'
9
+ import { DeepKeys, DeepValue } from './utils'
10
10
 
11
11
  // type Person = {
12
12
  // firstName: string
@@ -556,7 +556,7 @@ const mutateRowIsSelected = <TData extends RowData>(
556
556
  includeChildren: boolean,
557
557
  table: Table<TData>
558
558
  ) => {
559
- const row = table.getRow(id)
559
+ const row = table.getRow(id, true)
560
560
 
561
561
  // const isGrouped = row.getIsGrouped()
562
562