@tanstack/table-core 8.11.0 → 8.11.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/build/lib/columnHelper.js.map +1 -1
- package/build/lib/features/RowSelection.js +1 -1
- package/build/lib/features/RowSelection.js.map +1 -1
- package/build/lib/index.esm.js +1 -1
- package/build/lib/index.esm.js.map +1 -1
- package/build/lib/index.mjs +1 -1
- package/build/lib/index.mjs.map +1 -1
- package/build/lib/types.d.ts +3 -3
- 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/columnHelper.ts +1 -1
- package/src/features/RowSelection.ts +1 -1
- package/src/types.ts +3 -3
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/table-core",
|
|
3
3
|
"author": "Tanner Linsley",
|
|
4
|
-
"version": "8.11.
|
|
4
|
+
"version": "8.11.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",
|
package/src/columnHelper.ts
CHANGED
package/src/types.ts
CHANGED
|
@@ -200,12 +200,12 @@ export type StringOrTemplateHeader<TData, TValue> =
|
|
|
200
200
|
| string
|
|
201
201
|
| ColumnDefTemplate<HeaderContext<TData, TValue>>
|
|
202
202
|
|
|
203
|
-
interface StringHeaderIdentifier {
|
|
203
|
+
export interface StringHeaderIdentifier {
|
|
204
204
|
header: string
|
|
205
205
|
id?: string
|
|
206
206
|
}
|
|
207
207
|
|
|
208
|
-
interface IdIdentifier<TData extends RowData, TValue> {
|
|
208
|
+
export interface IdIdentifier<TData extends RowData, TValue> {
|
|
209
209
|
id: string
|
|
210
210
|
header?: StringOrTemplateHeader<TData, TValue>
|
|
211
211
|
}
|
|
@@ -265,7 +265,7 @@ export type AccessorFnColumnDef<
|
|
|
265
265
|
TValue = unknown,
|
|
266
266
|
> = AccessorFnColumnDefBase<TData, TValue> & ColumnIdentifiers<TData, TValue>
|
|
267
267
|
|
|
268
|
-
interface AccessorKeyColumnDefBase<TData extends RowData, TValue = unknown>
|
|
268
|
+
export interface AccessorKeyColumnDefBase<TData extends RowData, TValue = unknown>
|
|
269
269
|
extends ColumnDefBase<TData, TValue> {
|
|
270
270
|
id?: string
|
|
271
271
|
accessorKey: (string & {}) | keyof TData
|