@tanstack/table-core 8.0.0-alpha.23 → 8.0.0-alpha.24

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.0.0-alpha.23",
4
+ "version": "8.0.0-alpha.24",
5
5
  "description": "Hooks for building lightweight, fast and extendable datagrids for React",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/tanstack/react-table#readme",
@@ -9,7 +9,6 @@ import {
9
9
  TableInstance,
10
10
  Row,
11
11
  Updater,
12
- AnyGenerics,
13
12
  PartialGenerics,
14
13
  Renderable,
15
14
  UseRenderer,
@@ -228,7 +227,7 @@ export const Grouping = {
228
227
  return isFunction(column.aggregationType)
229
228
  ? column.aggregationType
230
229
  : column.aggregationType === 'auto'
231
- ? instance.getColumnAutoFilterFn(columnId)
230
+ ? instance.getColumnAutoAggregationFn(columnId)
232
231
  : (userAggregationTypes as Record<string, any>)?.[
233
232
  column.aggregationType as string
234
233
  ] ??