@tanstack/table-core 8.5.6 → 8.5.7

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.
@@ -674,7 +674,7 @@ declare type AccessorFnColumnDef<TData extends RowData, TValue = unknown> = Colu
674
674
  };
675
675
  declare type AccessorKeyColumnDef<TData extends RowData, TValue = unknown> = {
676
676
  id?: string;
677
- } & ColumnIdentifiers<TData, TValue> & ColumnDefBase<TData, TValue> & {
677
+ } & Partial<ColumnIdentifiers<TData, TValue>> & ColumnDefBase<TData, TValue> & {
678
678
  accessorKey: DeepKeys<TData>;
679
679
  };
680
680
  declare type AccessorColumnDef<TData extends RowData, TValue = unknown> = AccessorKeyColumnDef<TData, TValue> | AccessorFnColumnDef<TData, TValue>;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@tanstack/table-core",
3
3
  "author": "Tanner Linsley",
4
- "version": "8.5.6",
4
+ "version": "8.5.7",
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/types.ts CHANGED
@@ -240,7 +240,7 @@ export type AccessorFnColumnDef<
240
240
 
241
241
  export type AccessorKeyColumnDef<TData extends RowData, TValue = unknown> = {
242
242
  id?: string
243
- } & ColumnIdentifiers<TData, TValue> &
243
+ } & Partial<ColumnIdentifiers<TData, TValue>> &
244
244
  ColumnDefBase<TData, TValue> & {
245
245
  accessorKey: DeepKeys<TData>
246
246
  }