@tanstack/table-core 8.0.0-alpha.52 → 8.0.0-alpha.53

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.52",
4
+ "version": "8.0.0-alpha.53",
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",
@@ -1,4 +1,4 @@
1
- import { functionalUpdate, makeStateUpdater, memo } from '../utils'
1
+ import { makeStateUpdater, memo } from '../utils'
2
2
 
3
3
  import {
4
4
  TableInstance,
@@ -11,12 +11,12 @@ import {
11
11
 
12
12
  import { Grouping } from './Grouping'
13
13
 
14
- export type ColumnOrderState = string[]
15
-
16
14
  export type ColumnOrderTableState = {
17
15
  columnOrder: ColumnOrderState
18
16
  }
19
17
 
18
+ export type ColumnOrderState = string[]
19
+
20
20
  export type ColumnOrderOptions = {
21
21
  onColumnOrderChange?: OnChangeFn<ColumnOrderState>
22
22
  }