@tanstack/table-core 8.0.0-beta.0 → 8.0.0-beta.1
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/createTable.js.map +1 -1
- package/build/esm/index.js.map +1 -1
- package/build/stats-html.html +1 -1
- package/build/stats-react.json +306 -306
- package/build/types/createTable.d.ts +1 -1
- package/build/umd/index.development.js.map +1 -1
- package/build/umd/index.production.js.map +1 -1
- package/package.json +1 -1
- package/src/createTable.ts +3 -3
- package/src/.DS_Store +0 -0
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-beta.
|
|
4
|
+
"version": "8.0.0-beta.1",
|
|
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",
|
package/src/createTable.ts
CHANGED
|
@@ -47,9 +47,9 @@ export type Table<TGenerics extends TableGenerics> = {
|
|
|
47
47
|
Overwrite<TGenerics, { FilterMeta: TFilterMeta }>
|
|
48
48
|
>
|
|
49
49
|
setOptions: <
|
|
50
|
-
TFilterFns extends Record<string, FilterFn<
|
|
51
|
-
TSortingFns extends Record<string, SortingFn<
|
|
52
|
-
TAggregationFns extends Record<string, AggregationFn<
|
|
50
|
+
TFilterFns extends Record<string, FilterFn<any>>,
|
|
51
|
+
TSortingFns extends Record<string, SortingFn<any>>,
|
|
52
|
+
TAggregationFns extends Record<string, AggregationFn<any>>
|
|
53
53
|
>(
|
|
54
54
|
options: CreateTableOptions<
|
|
55
55
|
any,
|
package/src/.DS_Store
DELETED
|
Binary file
|