@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/build/cjs/features/Grouping.js +1 -1
- package/build/cjs/features/Grouping.js.map +1 -1
- package/build/esm/index.js +1 -1
- package/build/esm/index.js.map +1 -1
- package/build/stats-html.html +1 -1
- package/build/stats-react.json +259 -259
- 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/features/Grouping.ts +1 -2
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.
|
|
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",
|
package/src/features/Grouping.ts
CHANGED
|
@@ -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.
|
|
230
|
+
? instance.getColumnAutoAggregationFn(columnId)
|
|
232
231
|
: (userAggregationTypes as Record<string, any>)?.[
|
|
233
232
|
column.aggregationType as string
|
|
234
233
|
] ??
|