@tanstack/table-core 8.3.1 → 8.3.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.3.1",
4
+ "version": "8.3.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",
@@ -16,7 +16,7 @@ export type CoreColumnDefBase<TData extends RowData, TValue> = {
16
16
  header?: ColumnDefTemplate<HeaderContext<TData, TValue>>
17
17
  footer?: ColumnDefTemplate<HeaderContext<TData, TValue>>
18
18
  cell?: ColumnDefTemplate<CellContext<TData, TValue>>
19
- meta?: ColumnMeta
19
+ meta?: ColumnMeta<TData, TValue>
20
20
  }
21
21
 
22
22
  export type CoreColumnDefDisplay<
package/src/types.ts CHANGED
@@ -78,7 +78,7 @@ import { PartialKeys } from './utils'
78
78
  import { CoreCell } from './core/cell'
79
79
 
80
80
  export interface TableMeta {}
81
- export interface ColumnMeta {}
81
+ export interface ColumnMeta<TData extends RowData, TValue> {}
82
82
  export interface FilterMeta {}
83
83
 
84
84
  export type Updater<T> = T | ((old: T) => T)