From 37debcb1198c211abf56f5a369a073c005f3e64c Mon Sep 17 00:00:00 2001 From: Kevin Van Cott Date: Sun, 14 Jun 2026 18:10:07 -0500 Subject: [PATCH 1/2] fix: table internal and tests, lower intantiations more (#6322) --- examples/react/kitchen-sink/src/main.tsx | 1 + .../core/columns/coreColumnsFeature.utils.ts | 2 +- .../src/core/headers/buildHeaderGroups.ts | 4 +- .../columnFilteringFeature.utils.ts | 2 +- .../columnPinningFeature.utils.ts | 20 ++--- .../columnResizingFeature.types.ts | 5 +- .../globalFilteringFeature.utils.ts | 2 +- .../table-core/src/helpers/columnHelper.ts | 8 +- packages/table-core/src/types/Column.ts | 8 +- packages/table-core/src/types/HeaderGroup.ts | 8 +- packages/table-core/src/types/RowModel.ts | 10 +-- packages/table-core/src/types/RowModelFns.ts | 10 +-- packages/table-core/src/types/Table.ts | 43 +++------ packages/table-core/src/types/TableState.ts | 16 +++- .../tests/helpers/rowPinningHelpers.ts | 21 ++++- .../row-pinning/rowPinningFeature.test.ts | 2 +- .../tests/unit/core/tableAtoms.test.ts | 13 ++- .../columnPinningFeature.utils.test.ts | 19 +++- .../rowPinningFeature.utils.test.ts | 14 ++- skills/github-issue-repro-and-fix/SKILL.md | 90 +++++++++++++++++++ 20 files changed, 201 insertions(+), 97 deletions(-) create mode 100644 skills/github-issue-repro-and-fix/SKILL.md diff --git a/examples/react/kitchen-sink/src/main.tsx b/examples/react/kitchen-sink/src/main.tsx index dec9ab4263..43a319eafa 100644 --- a/examples/react/kitchen-sink/src/main.tsx +++ b/examples/react/kitchen-sink/src/main.tsx @@ -693,6 +693,7 @@ function App() { }, keepPinnedRows: true, debugTable: true, + autoResetExpanded: false, // keep expanded rows during filtering changes }, (state) => state, // default selector ) diff --git a/packages/table-core/src/core/columns/coreColumnsFeature.utils.ts b/packages/table-core/src/core/columns/coreColumnsFeature.utils.ts index 6803f48a86..5901595f1c 100644 --- a/packages/table-core/src/core/columns/coreColumnsFeature.utils.ts +++ b/packages/table-core/src/core/columns/coreColumnsFeature.utils.ts @@ -218,7 +218,7 @@ export function table_getAllLeafColumns< table, 'getOrderColumns', table_getOrderColumnsFn, - )(leafColumns) + )(leafColumns) as Array> } /** diff --git a/packages/table-core/src/core/headers/buildHeaderGroups.ts b/packages/table-core/src/core/headers/buildHeaderGroups.ts index 386858caee..f0c913a117 100644 --- a/packages/table-core/src/core/headers/buildHeaderGroups.ts +++ b/packages/table-core/src/core/headers/buildHeaderGroups.ts @@ -113,7 +113,9 @@ export function buildHeaderGroups< pendingParentHeaders.push(header) } - headerGroup.headers.push(headerToGroup) + headerGroup.headers.push( + headerToGroup as Header, + ) headerToGroup.headerGroup = headerGroup }) diff --git a/packages/table-core/src/features/column-filtering/columnFilteringFeature.utils.ts b/packages/table-core/src/features/column-filtering/columnFilteringFeature.utils.ts index 8b759affa7..fb09fe8f4a 100644 --- a/packages/table-core/src/features/column-filtering/columnFilteringFeature.utils.ts +++ b/packages/table-core/src/features/column-filtering/columnFilteringFeature.utils.ts @@ -323,7 +323,7 @@ export function shouldAutoRemoveFilter< ) { return ( (filterFn && filterFn.autoRemove - ? filterFn.autoRemove(value, column as Column_Internal) + ? filterFn.autoRemove(value, column as any) : false) || typeof value === 'undefined' || (typeof value === 'string' && !value) diff --git a/packages/table-core/src/features/column-pinning/columnPinningFeature.utils.ts b/packages/table-core/src/features/column-pinning/columnPinningFeature.utils.ts index 069063420d..4bb3f4305f 100644 --- a/packages/table-core/src/features/column-pinning/columnPinningFeature.utils.ts +++ b/packages/table-core/src/features/column-pinning/columnPinningFeature.utils.ts @@ -13,7 +13,7 @@ import type { Row } from '../../types/Row' import type { CellData, RowData, Updater } from '../../types/type-utils' import type { TableFeatures } from '../../types/TableFeatures' import type { Table_Internal } from '../../types/Table' -import type { Column_Internal } from '../../types/Column' +import type { Column, Column_Internal } from '../../types/Column' import type { ColumnPinningPosition, ColumnPinningState, @@ -364,15 +364,11 @@ export function table_getLeftHeaderGroups< TData extends RowData, >(table: Table_Internal) { const allColumns = table.getAllColumns() - const leafColumnsById = table.getAllLeafColumnsById() as Record< - string, - Column_Internal - > + const leafColumnsById = table.getAllLeafColumnsById() const { left } = table.atoms.columnPinning?.get() ?? getDefaultColumnPinningState() - const orderedLeafColumns: Array> = - [] + const orderedLeafColumns: Array> = [] for (let i = 0; i < left.length; i++) { const column = leafColumnsById[left[i]!] if ( @@ -402,15 +398,11 @@ export function table_getRightHeaderGroups< TData extends RowData, >(table: Table_Internal) { const allColumns = table.getAllColumns() - const leafColumnsById = table.getAllLeafColumnsById() as Record< - string, - Column_Internal - > + const leafColumnsById = table.getAllLeafColumnsById() const { right } = table.atoms.columnPinning?.get() ?? getDefaultColumnPinningState() - const orderedLeafColumns: Array> = - [] + const orderedLeafColumns: Array> = [] for (let i = 0; i < right.length; i++) { const column = leafColumnsById[right[i]!] if ( @@ -446,7 +438,7 @@ export function table_getCenterHeaderGroups< table, 'getVisibleLeafColumns', table_getVisibleLeafColumns, - ) as unknown as Array> + ) const { left, right } = table.atoms.columnPinning?.get() ?? getDefaultColumnPinningState() const leftAndRight: Array = [...left, ...right] diff --git a/packages/table-core/src/features/column-resizing/columnResizingFeature.types.ts b/packages/table-core/src/features/column-resizing/columnResizingFeature.types.ts index d8c827ce66..1c03a4e89d 100644 --- a/packages/table-core/src/features/column-resizing/columnResizingFeature.types.ts +++ b/packages/table-core/src/features/column-resizing/columnResizingFeature.types.ts @@ -54,11 +54,8 @@ export interface Table_ColumnResizing { resetHeaderSizeInfo: (defaultState?: boolean) => void /** * Updates transient resize interaction state with a next state or updater function. - * - * The lowercase `c` in this API name matches the current generated v9 table - * API for the `columnResizing` state slice. */ - setcolumnResizing: (updater: Updater) => void + setColumnResizing: (updater: Updater) => void } export interface ColumnDef_ColumnResizing { diff --git a/packages/table-core/src/features/global-filtering/globalFilteringFeature.utils.ts b/packages/table-core/src/features/global-filtering/globalFilteringFeature.utils.ts index 49abdebd19..588475f7f7 100644 --- a/packages/table-core/src/features/global-filtering/globalFilteringFeature.utils.ts +++ b/packages/table-core/src/features/global-filtering/globalFilteringFeature.utils.ts @@ -26,7 +26,7 @@ export function column_getCanGlobalFilter< (column.columnDef.enableGlobalFilter ?? true) && (column.table.options.enableGlobalFilter ?? true) && (column.table.options.enableFilters ?? true) && - (column.table.options.getColumnCanGlobalFilter?.(column) ?? true) && + (column.table.options.getColumnCanGlobalFilter?.(column as any) ?? true) && !!column.accessorFn ) } diff --git a/packages/table-core/src/helpers/columnHelper.ts b/packages/table-core/src/helpers/columnHelper.ts index beaea18690..e5328cda35 100644 --- a/packages/table-core/src/helpers/columnHelper.ts +++ b/packages/table-core/src/helpers/columnHelper.ts @@ -10,10 +10,10 @@ import type { IdentifiedColumnDef, } from '../types/ColumnDef' -export type ColumnHelper< - TFeatures extends TableFeatures, - TData extends RowData, -> = { +export interface ColumnHelper< + in out TFeatures extends TableFeatures, + in out TData extends RowData, +> { /** * Creates a data column definition with an accessor key or function to extract the cell value. * @example diff --git a/packages/table-core/src/types/Column.ts b/packages/table-core/src/types/Column.ts index c98f24cd1d..59d12ad91d 100644 --- a/packages/table-core/src/types/Column.ts +++ b/packages/table-core/src/types/Column.ts @@ -42,10 +42,10 @@ export type Column< > = Column_Core & ExtractFeatureMapTypes> -export type Column_Internal< - TFeatures extends TableFeatures, - TData extends RowData, +export interface Column_Internal< + in out TFeatures extends TableFeatures, + in out TData extends RowData, TValue = unknown, -> = Column & { +> extends Omit, 'columnDef'> { columnDef: ColumnDefBase_All } diff --git a/packages/table-core/src/types/HeaderGroup.ts b/packages/table-core/src/types/HeaderGroup.ts index eb22ce5ea0..748f3d6a74 100644 --- a/packages/table-core/src/types/HeaderGroup.ts +++ b/packages/table-core/src/types/HeaderGroup.ts @@ -7,7 +7,7 @@ export interface HeaderGroup_Core< in out TData extends RowData, > extends HeaderGroup_Header {} -export type HeaderGroup< - TFeatures extends TableFeatures, - TData extends RowData, -> = HeaderGroup_Core +export interface HeaderGroup< + in out TFeatures extends TableFeatures, + in out TData extends RowData, +> extends HeaderGroup_Core {} diff --git a/packages/table-core/src/types/RowModel.ts b/packages/table-core/src/types/RowModel.ts index 217d2fb3af..04a413a3dc 100644 --- a/packages/table-core/src/types/RowModel.ts +++ b/packages/table-core/src/types/RowModel.ts @@ -33,10 +33,10 @@ export type CachedRowModels< CachedRowModels_FeatureMap > -export type CachedRowModel_All< - TFeatures extends TableFeatures, - TData extends RowData = any, -> = Partial< +export interface CachedRowModel_All< + in out TFeatures extends TableFeatures, + in out TData extends RowData = any, +> extends Partial< CachedRowModel_Core & CachedRowModel_Expanded & CachedRowModel_Faceted & @@ -44,4 +44,4 @@ export type CachedRowModel_All< CachedRowModel_Grouped & CachedRowModel_Paginated & CachedRowModel_Sorted -> +> {} diff --git a/packages/table-core/src/types/RowModelFns.ts b/packages/table-core/src/types/RowModelFns.ts index 27d880376f..09faeac541 100644 --- a/packages/table-core/src/types/RowModelFns.ts +++ b/packages/table-core/src/types/RowModelFns.ts @@ -22,11 +22,11 @@ export type RowModelFns< ExtractFeatureMapTypes> > -export type RowModelFns_All< - TFeatures extends TableFeatures, - TData extends RowData, -> = Partial< +export interface RowModelFns_All< + in out TFeatures extends TableFeatures, + in out TData extends RowData, +> extends Partial< RowModelFns_ColumnFiltering & RowModelFns_ColumnGrouping & RowModelFns_RowSorting -> +> {} diff --git a/packages/table-core/src/types/Table.ts b/packages/table-core/src/types/Table.ts index 84c7bfaa7e..829b657344 100644 --- a/packages/table-core/src/types/Table.ts +++ b/packages/table-core/src/types/Table.ts @@ -36,14 +36,16 @@ import type { DebugOptions, TableOptions_All } from './TableOptions' * The core table object that only includes the core table functionality such as column, header, row, and table APIS. * No features are included. */ -export type Table_Core< - TFeatures extends TableFeatures, - TData extends RowData, -> = Table_Table & - Table_Columns & - Table_Rows & - Table_RowModels & - Table_Headers +export interface Table_Core< + in out TFeatures extends TableFeatures, + in out TData extends RowData, +> + extends + Table_Table, + Table_Columns, + Table_Rows, + Table_RowModels, + Table_Headers {} export interface Table_FeatureMap< in out TFeatures extends TableFeatures, @@ -88,15 +90,6 @@ type Table_InternalBroadenedKeys = /** * Internal broad table shape used by feature implementations. - * - * Declared as an interface extending every stock feature's table API (rather - * than the feature-conditional `Table` intersection) so that the compiler can - * relate `Table_Internal` instantiations nominally instead of structurally - * re-expanding the feature-map conditional for every internal call site. - * Mirrors the `*_All` convention used for options, state, and row models. - * Type parameters are annotated `in out` (invariant) so the checker can relate - * instantiations by their type arguments without measuring variance or falling - * back to member-by-member structural comparison. */ export interface Table_Internal< in out TFeatures extends TableFeatures, @@ -107,21 +100,7 @@ export interface Table_Internal< Table_Columns, Table_Rows, Table_RowModels, - Table_Headers, - Table_ColumnFiltering, - Table_ColumnGrouping, - Table_ColumnOrdering, - Table_ColumnPinning, - Table_ColumnResizing, - Table_ColumnSizing, - Table_ColumnVisibility, - Table_ColumnFaceting, - Table_GlobalFiltering, - Table_RowExpanding, - Table_RowPagination, - Table_RowPinning, - Table_RowSelection, - Table_RowSorting { + Table_Headers { _rowModels: CachedRowModel_All _rowModelFns: RowModelFns_All options: DebugOptions & diff --git a/packages/table-core/src/types/TableState.ts b/packages/table-core/src/types/TableState.ts index d8459df545..e3f0b1eaf0 100644 --- a/packages/table-core/src/types/TableState.ts +++ b/packages/table-core/src/types/TableState.ts @@ -44,4 +44,18 @@ export type TableState = * Feature internals use this when they may need to inspect optional slices owned * by other features. */ -export type TableState_All = Partial> +export interface TableState_All extends Partial< + TableState_ColumnFiltering & + TableState_ColumnGrouping & + TableState_ColumnOrdering & + TableState_ColumnPinning & + TableState_ColumnResizing & + TableState_ColumnSizing & + TableState_ColumnVisibility & + TableState_GlobalFiltering & + TableState_RowExpanding & + TableState_RowPagination & + TableState_RowPinning & + TableState_RowSelection & + TableState_RowSorting +> {} diff --git a/packages/table-core/tests/helpers/rowPinningHelpers.ts b/packages/table-core/tests/helpers/rowPinningHelpers.ts index 8b1ea4891d..401c57beab 100644 --- a/packages/table-core/tests/helpers/rowPinningHelpers.ts +++ b/packages/table-core/tests/helpers/rowPinningHelpers.ts @@ -1,5 +1,9 @@ +import { table } from 'node:console' import { vi } from 'vitest' -import { getDefaultRowPinningState } from '../../src/features/row-pinning/rowPinningFeature.utils' +import { + getDefaultRowPinningState, + table_setRowPinning, +} from '../../src/features/row-pinning/rowPinningFeature.utils' import { constructTable, coreFeatures, @@ -9,7 +13,14 @@ import { import { generateTestData } from '../fixtures/data/generateTestData' import { storeReactivityBindings } from '../../src/store-reactivity-bindings' import { generateTestTableWithData } from './generateTestTable' -import type { ColumnDef, RowPinningState, TableOptions } from '../../src' +import type { + ColumnDef, + RowPinningState, + StockFeatures, + TableOptions, + Table_Internal, + Table_RowPinning, +} from '../../src' import type { Person } from '../fixtures/data/types' // Define feature set with proper typing @@ -52,7 +63,8 @@ export function createTableWithPinningState( } export function createTableWithMockOnPinningChange(rowCount = 10): { - table: ReturnType + table: Table_Internal & + Table_RowPinning onRowPinningChangeMock: ReturnType } { const onRowPinningChangeMock = vi.fn() @@ -60,7 +72,8 @@ export function createTableWithMockOnPinningChange(rowCount = 10): { features: { rowPinning: rowPinningFeature, }, - } as any) + } as any) as Table_Internal & + Table_RowPinning table.options.onRowPinningChange = onRowPinningChangeMock return { table, onRowPinningChangeMock } } diff --git a/packages/table-core/tests/implementation/features/row-pinning/rowPinningFeature.test.ts b/packages/table-core/tests/implementation/features/row-pinning/rowPinningFeature.test.ts index 9a21154b1b..6a86570470 100644 --- a/packages/table-core/tests/implementation/features/row-pinning/rowPinningFeature.test.ts +++ b/packages/table-core/tests/implementation/features/row-pinning/rowPinningFeature.test.ts @@ -332,7 +332,7 @@ describe('row methods', () => { const { table, onRowPinningChangeMock } = createTableWithMockOnPinningChange() // Set up initial state with a pinned row - table.baseAtoms.rowPinning!.set({ + table.baseAtoms.rowPinning.set({ top: [ROW[0]], bottom: [], }) diff --git a/packages/table-core/tests/unit/core/tableAtoms.test.ts b/packages/table-core/tests/unit/core/tableAtoms.test.ts index 0670bf8226..d0f2eb4d23 100644 --- a/packages/table-core/tests/unit/core/tableAtoms.test.ts +++ b/packages/table-core/tests/unit/core/tableAtoms.test.ts @@ -11,7 +11,10 @@ import { storeReactivityBindings } from '../../../src/store-reactivity-bindings' import type { PaginationState, SortingState, + TableFeatures, Table_Internal, + Table_RowPagination, + Table_RowSorting, } from '../../../src' const features = { @@ -20,7 +23,11 @@ const features = { rowSortingFeature, } -function makeTable(options: any = {}) { +function makeTable( + options: any = {}, +): Table_Internal & + Table_RowSorting & + Table_RowPagination { return constructTable({ features: { ...coreFeatures, @@ -30,7 +37,9 @@ function makeTable(options: any = {}) { columns: [], data: [], ...options, - }) as unknown as Table_Internal + }) as unknown as Table_Internal & + Table_RowSorting & + Table_RowPagination } describe('three-layer atom architecture', () => { diff --git a/packages/table-core/tests/unit/features/column-pinning/columnPinningFeature.utils.test.ts b/packages/table-core/tests/unit/features/column-pinning/columnPinningFeature.utils.test.ts index db294ea042..e50fd05ebd 100644 --- a/packages/table-core/tests/unit/features/column-pinning/columnPinningFeature.utils.test.ts +++ b/packages/table-core/tests/unit/features/column-pinning/columnPinningFeature.utils.test.ts @@ -33,7 +33,14 @@ import { generateTestTableWithDataAndState, } from '../../../helpers/generateTestTable' import { getUpdaterResult } from '../../../helpers/testUtils' -import type { Header } from '../../../../src' +import type { Person } from '../../../fixtures/data/types' +import type { + Header, + StockFeatures, + Table_ColumnOrdering, + Table_ColumnPinning, + Table_Internal, +} from '../../../../src' describe('getDefaultColumnPinningState', () => { it('should return default column pinning state', () => { @@ -550,7 +557,8 @@ describe('table_getPinnedLeafColumns', () => { right: [], }, }, - }) + }) as Table_Internal & + Table_ColumnPinning const leafColumns = table_getPinnedLeafColumns(table, 'left') @@ -644,7 +652,8 @@ describe('column pinning table instance APIs', () => { age: false, }, }, - }) + }) as Table_Internal & + Table_ColumnPinning expect( table.getPinnedLeafColumns('left').map((col: { id: string }) => col.id), @@ -673,7 +682,9 @@ describe('column pinning table instance APIs', () => { it('should update center visible columns when column order changes', () => { const table = generateTestTableWithDataAndState(1, { features: stockFeatures, - }) + }) as Table_Internal & + Table_ColumnPinning & + Table_ColumnOrdering expect( table.getCenterVisibleLeafColumns().map((col: { id: string }) => col.id), diff --git a/packages/table-core/tests/unit/features/row-pinning/rowPinningFeature.utils.test.ts b/packages/table-core/tests/unit/features/row-pinning/rowPinningFeature.utils.test.ts index bd1f3e039f..11d538c3cd 100644 --- a/packages/table-core/tests/unit/features/row-pinning/rowPinningFeature.utils.test.ts +++ b/packages/table-core/tests/unit/features/row-pinning/rowPinningFeature.utils.test.ts @@ -486,7 +486,7 @@ describe('row_pin', () => { it('should unpin a row when position is false', () => { const { table, onRowPinningChangeMock } = createTableWithMockOnPinningChange() - table.baseAtoms.rowPinning!.set({ + table.baseAtoms.rowPinning.set({ top: [ROW[0]], bottom: [], }) @@ -508,9 +508,7 @@ describe('row_pin', () => { createTableWithMockOnPinningChange() const row = table.getRow('0') const leafRows = [{ id: LEAF[1] }, { id: LEAF[2] }] - vi.spyOn(row, 'getLeafRows').mockReturnValue( - leafRows as unknown as Array>, - ) + vi.spyOn(row, 'getLeafRows').mockReturnValue(leafRows as any) row_pin(row, 'top', true) @@ -528,9 +526,7 @@ describe('row_pin', () => { createTableWithMockOnPinningChange() const row = table.getRow('0') const parentRows = [{ id: PARENT[1] }, { id: PARENT[2] }] - vi.spyOn(row, 'getParentRows').mockReturnValue( - parentRows as unknown as Array>, - ) + vi.spyOn(row, 'getParentRows').mockReturnValue(parentRows as any) row_pin(row, 'top', false, true) @@ -546,7 +542,7 @@ describe('row_pin', () => { it('should maintain existing pinned rows when pinning additional rows', () => { const { table, onRowPinningChangeMock } = createTableWithMockOnPinningChange() - table.baseAtoms.rowPinning!.set({ + table.baseAtoms.rowPinning.set({ top: [ROW[1]], bottom: [ROW[2]], }) @@ -569,7 +565,7 @@ describe('row_pin', () => { it('should remove row from other position when moving between top and bottom', () => { const { table, onRowPinningChangeMock } = createTableWithMockOnPinningChange() - table.baseAtoms.rowPinning!.set({ + table.baseAtoms.rowPinning.set({ top: [ROW[0]], bottom: [], }) diff --git a/skills/github-issue-repro-and-fix/SKILL.md b/skills/github-issue-repro-and-fix/SKILL.md new file mode 100644 index 0000000000..00d6829125 --- /dev/null +++ b/skills/github-issue-repro-and-fix/SKILL.md @@ -0,0 +1,90 @@ +--- +name: github-issue-repro-and-fix +description: > + Investigate a GitHub issue, determine whether it is a real bug, reproduce it + with the smallest practical test or example, and apply a focused fix only + after the failing behavior is confirmed. Use this when asked to look at, + verify, triage, reproduce, or fix a GitHub issue in this repository. +--- + +# GitHub Issue Repro And Fix + +Use this skill when the user provides a GitHub issue URL, issue number, copied +issue body, or asks whether reported behavior is truly a bug before fixing it. + +## Workflow + +1. Gather the issue context. + - If given a URL or issue number, prefer `gh issue view --json title,body,comments,labels,author,state,url`. + - If `gh` is unavailable or unauthenticated, use the GitHub web page or ask the user only when the issue content cannot be accessed. + - Read the issue comments, not just the opening report. Comments often contain maintainer guidance, reproductions, workarounds, duplicate links, and notes that the issue was fixed elsewhere. + - Capture the exact reported behavior, expected behavior, environment, reproduction steps, linked repro repository or sandbox, maintainer comments, and any user-confirmed workarounds. + +2. Look for related upstream context. + - Search repository issues, pull requests, and discussions for the issue number, mentioned APIs, error text, and reproduction keywords. + - Prefer GitHub search or `gh search issues`/`gh search prs` when available. + - Note related PRs, discussions, duplicate issues, regression reports, and changelog entries before deciding whether to patch. + - If a related PR already fixed the issue, verify whether the local workspace contains that change before editing. + +3. Map the report to the codebase. + - Identify the package, adapter, example, docs page, or shared core module involved. + - Search with `rg` for mentioned APIs, options, error text, test names, and related implementation files. + - Read the nearest tests before editing so the existing behavior contract is clear. + +4. Verify whether the reported behavior is real. + - Reproduce the bug locally before changing implementation when feasible. + - Prefer the smallest focused failing test over a full example app. + - If a UI or framework issue cannot be captured by a unit test, use the smallest existing example or fixture that exercises the behavior. + - Record the failing command and failure mode. + - If the issue cannot be reproduced, inspect whether it is already fixed, invalid usage, version-specific, or missing information. + +5. Decide whether a fix is the correct library direction. + - Separate "the reported behavior happens" from "the library should change." + - Check whether the request conflicts with documented concepts, API semantics, type contracts, backwards compatibility, or maintainer comments. + - Consider whether the better outcome is a code fix, documentation clarification, warning/error improvement, example update, or closing as intended behavior. + - When the issue raises a product/API semantics tradeoff, ask the user for a decision before implementing. Present concise pros and cons for each viable path. + +6. Apply a focused fix only when the direction is confirmed. + - Change the narrowest implementation surface that explains the confirmed failure. + - Preserve public APIs unless the issue explicitly concerns an intended API change. + - Follow existing local patterns for feature registration, state handling, adapter behavior, and test style. + - Avoid broad refactors, unrelated formatting churn, or opportunistic cleanup. + +7. Prove the fix. + - Run the previously failing test or reproduction first. + - Run the nearest relevant package test, typecheck, or lint command if available and proportionate. + - If a regression test was possible, commit the failing scenario as part of the change. + - If no automated test was practical, document the manual verification steps and remaining risk. + +8. Report the outcome. + - State whether the GitHub report is a confirmed bug, duplicate/already fixed, unsupported usage, documentation gap, or inconclusive. + - If the behavior is real but not a bug, say that explicitly and explain the library contract that makes it intended behavior. + - Summarize the root cause and fix in concrete terms. + - Include the exact verification commands and results. + - Call out any test gaps or conditions that could not be reproduced. + +## Decision Rules + +- Do not patch first and infer the bug later. Establish a failing observation before editing whenever the repo makes that practical. +- Do not assume a confirmed reproduction means the requested change is desirable. Validate the request against the library's design model before fixing. +- Treat linked reproductions as evidence, not as proof. Reduce them to a local test or minimal local reproduction before changing shared code. +- If the issue is caused by misuse but the API makes the misuse easy, consider a docs update, runtime warning, or clearer type error only if it fits existing project conventions. +- If the report depends on old package versions, compare against the current workspace behavior and say clearly which version was tested. +- If the issue spans multiple framework adapters, fix shared core behavior first when the root cause is framework-agnostic; otherwise keep adapter-specific changes isolated. +- Do not run `git` commands, create commits, push branches, or open pull requests. Leave all git and PR operations to the user. + +## Useful Commands + +```sh +gh issue view --json title,body,comments,labels,author,state,url +gh search issues "" --repo TanStack/table +gh search prs "" --repo TanStack/table +rg "" +pnpm test +pnpm typecheck +pnpm lint +``` + +Prefer package-specific commands from `package.json` when they exist. Use the +smallest command that validates the touched behavior before running broader +checks. From 26fc1057afe18fe5004fa7c2cf44a2fd34fb73b1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 14 Jun 2026 18:15:25 -0500 Subject: [PATCH 2/2] release: version packages (#6324) release: v9.0.0-beta.12 Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- examples/angular/basic-app-table/package.json | 4 ++-- examples/angular/basic-external-atoms/package.json | 4 ++-- examples/angular/basic-external-state/package.json | 4 ++-- examples/angular/basic-inject-table/package.json | 4 ++-- examples/angular/column-groups/package.json | 2 +- examples/angular/column-ordering/package.json | 2 +- examples/angular/column-pinning-split/package.json | 2 +- examples/angular/column-pinning-sticky/package.json | 2 +- examples/angular/column-pinning/package.json | 2 +- examples/angular/column-resizing-performant/package.json | 2 +- examples/angular/column-resizing/package.json | 2 +- examples/angular/column-sizing/package.json | 2 +- examples/angular/column-visibility/package.json | 2 +- examples/angular/composable-tables/package.json | 4 ++-- examples/angular/custom-plugin/package.json | 2 +- examples/angular/editable/package.json | 2 +- examples/angular/expanding/package.json | 2 +- examples/angular/filters-faceted/package.json | 2 +- examples/angular/filters-fuzzy/package.json | 2 +- examples/angular/filters/package.json | 2 +- examples/angular/grouping/package.json | 2 +- examples/angular/kitchen-sink/package.json | 4 ++-- examples/angular/pagination/package.json | 2 +- examples/angular/remote-data/package.json | 2 +- examples/angular/row-dnd/package.json | 2 +- examples/angular/row-pinning/package.json | 2 +- examples/angular/row-selection-signal/package.json | 4 ++-- examples/angular/row-selection/package.json | 4 ++-- examples/angular/signal-input/package.json | 2 +- examples/angular/sorting/package.json | 2 +- examples/angular/sub-components/package.json | 2 +- examples/angular/virtualized-columns/package.json | 2 +- examples/angular/virtualized-infinite-scrolling/package.json | 2 +- examples/angular/virtualized-rows/package.json | 2 +- examples/angular/with-tanstack-form/package.json | 2 +- examples/angular/with-tanstack-query/package.json | 2 +- examples/lit/basic-app-table/package.json | 2 +- examples/lit/basic-external-atoms/package.json | 2 +- examples/lit/basic-external-state/package.json | 2 +- examples/lit/basic-table-controller/package.json | 2 +- examples/lit/column-groups/package.json | 2 +- examples/lit/column-ordering/package.json | 2 +- examples/lit/column-pinning-split/package.json | 2 +- examples/lit/column-pinning-sticky/package.json | 2 +- examples/lit/column-pinning/package.json | 2 +- examples/lit/column-resizing-performant/package.json | 2 +- examples/lit/column-resizing/package.json | 2 +- examples/lit/column-sizing/package.json | 2 +- examples/lit/column-visibility/package.json | 2 +- examples/lit/composable-tables/package.json | 2 +- examples/lit/expanding/package.json | 2 +- examples/lit/filters-faceted/package.json | 2 +- examples/lit/filters-fuzzy/package.json | 2 +- examples/lit/filters/package.json | 2 +- examples/lit/grouping/package.json | 2 +- examples/lit/kitchen-sink/package.json | 2 +- examples/lit/pagination/package.json | 2 +- examples/lit/row-pinning/package.json | 2 +- examples/lit/row-selection/package.json | 2 +- examples/lit/sorting-dynamic-data/package.json | 2 +- examples/lit/sorting/package.json | 2 +- examples/lit/sub-components/package.json | 2 +- examples/lit/virtualized-columns/package.json | 2 +- examples/lit/virtualized-infinite-scrolling/package.json | 2 +- examples/lit/virtualized-rows/package.json | 2 +- examples/preact/basic-external-atoms/package.json | 4 ++-- examples/preact/basic-external-state/package.json | 4 ++-- examples/preact/basic-subscribe/package.json | 4 ++-- examples/preact/basic-use-app-table/package.json | 4 ++-- examples/preact/basic-use-table/package.json | 4 ++-- examples/preact/column-groups/package.json | 2 +- examples/preact/column-ordering/package.json | 2 +- examples/preact/column-pinning-split/package.json | 2 +- examples/preact/column-pinning-sticky/package.json | 2 +- examples/preact/column-pinning/package.json | 2 +- examples/preact/column-resizing-performant/package.json | 2 +- examples/preact/column-resizing/package.json | 2 +- examples/preact/column-sizing/package.json | 2 +- examples/preact/column-visibility/package.json | 2 +- examples/preact/composable-tables/package.json | 4 ++-- examples/preact/custom-plugin/package.json | 2 +- examples/preact/expanding/package.json | 2 +- examples/preact/filters-faceted/package.json | 2 +- examples/preact/filters-fuzzy/package.json | 2 +- examples/preact/filters/package.json | 2 +- examples/preact/grouping/package.json | 2 +- examples/preact/kitchen-sink/package.json | 4 ++-- examples/preact/pagination/package.json | 2 +- examples/preact/row-pinning/package.json | 2 +- examples/preact/row-selection/package.json | 4 ++-- examples/preact/sorting/package.json | 2 +- examples/preact/sub-components/package.json | 2 +- examples/preact/with-tanstack-query/package.json | 2 +- examples/react/basic-external-atoms/package.json | 4 ++-- examples/react/basic-external-state/package.json | 4 ++-- examples/react/basic-subscribe/package.json | 4 ++-- examples/react/basic-use-app-table/package.json | 4 ++-- examples/react/basic-use-legacy-table/package.json | 4 ++-- examples/react/basic-use-table/package.json | 4 ++-- examples/react/column-dnd/package.json | 2 +- examples/react/column-groups/package.json | 2 +- examples/react/column-ordering/package.json | 2 +- examples/react/column-pinning-split/package.json | 2 +- examples/react/column-pinning-sticky/package.json | 2 +- examples/react/column-pinning/package.json | 2 +- examples/react/column-resizing-performant/package.json | 2 +- examples/react/column-resizing/package.json | 2 +- examples/react/column-sizing/package.json | 2 +- examples/react/column-visibility/package.json | 2 +- examples/react/composable-tables/package.json | 4 ++-- examples/react/custom-plugin/package.json | 2 +- examples/react/expanding/package.json | 2 +- examples/react/filters-faceted/package.json | 2 +- examples/react/filters-fuzzy/package.json | 2 +- examples/react/filters/package.json | 2 +- examples/react/grouping/package.json | 2 +- examples/react/kitchen-sink-hero-ui/package.json | 4 ++-- examples/react/kitchen-sink-mantine/package.json | 4 ++-- examples/react/kitchen-sink-material-ui/package.json | 4 ++-- examples/react/kitchen-sink-react-aria/package.json | 4 ++-- examples/react/kitchen-sink-shadcn-base/package.json | 4 ++-- examples/react/kitchen-sink-shadcn-radix/package.json | 4 ++-- examples/react/kitchen-sink/package.json | 4 ++-- examples/react/lib-hero-ui/package.json | 2 +- examples/react/lib-mantine/package.json | 2 +- examples/react/lib-material-ui/package.json | 2 +- examples/react/lib-react-aria/package.json | 2 +- examples/react/lib-shadcn-base/package.json | 2 +- examples/react/lib-shadcn-radix/package.json | 2 +- examples/react/mantine-react-table/package.json | 2 +- examples/react/material-react-table/package.json | 2 +- examples/react/pagination/package.json | 2 +- examples/react/row-dnd/package.json | 2 +- examples/react/row-pinning/package.json | 2 +- examples/react/row-selection/package.json | 4 ++-- examples/react/sorting/package.json | 2 +- examples/react/sub-components/package.json | 2 +- examples/react/virtualized-columns-experimental/package.json | 2 +- examples/react/virtualized-columns/package.json | 2 +- examples/react/virtualized-infinite-scrolling/package.json | 2 +- examples/react/virtualized-rows-experimental/package.json | 2 +- examples/react/virtualized-rows/package.json | 2 +- examples/react/with-tanstack-form/package.json | 2 +- examples/react/with-tanstack-query/package.json | 2 +- examples/react/with-tanstack-router/package.json | 2 +- examples/solid/basic-app-table/package.json | 4 ++-- examples/solid/basic-external-atoms/package.json | 4 ++-- examples/solid/basic-external-state/package.json | 4 ++-- examples/solid/basic-use-table/package.json | 4 ++-- examples/solid/column-groups/package.json | 2 +- examples/solid/column-ordering/package.json | 2 +- examples/solid/column-pinning-split/package.json | 2 +- examples/solid/column-pinning-sticky/package.json | 2 +- examples/solid/column-pinning/package.json | 2 +- examples/solid/column-resizing-performant/package.json | 2 +- examples/solid/column-resizing/package.json | 2 +- examples/solid/column-sizing/package.json | 2 +- examples/solid/column-visibility/package.json | 2 +- examples/solid/composable-tables/package.json | 4 ++-- examples/solid/expanding/package.json | 2 +- examples/solid/filters-faceted/package.json | 2 +- examples/solid/filters-fuzzy/package.json | 2 +- examples/solid/filters/package.json | 2 +- examples/solid/grouping/package.json | 2 +- examples/solid/kitchen-sink/package.json | 4 ++-- examples/solid/pagination/package.json | 2 +- examples/solid/row-pinning/package.json | 2 +- examples/solid/row-selection/package.json | 4 ++-- examples/solid/sorting/package.json | 2 +- examples/solid/sub-components/package.json | 2 +- examples/solid/virtualized-columns/package.json | 2 +- examples/solid/virtualized-infinite-scrolling/package.json | 2 +- examples/solid/virtualized-rows/package.json | 2 +- examples/solid/with-tanstack-form/package.json | 2 +- examples/solid/with-tanstack-query/package.json | 2 +- examples/solid/with-tanstack-router/package.json | 2 +- examples/svelte/basic-app-table/package.json | 2 +- examples/svelte/basic-create-table/package.json | 2 +- examples/svelte/basic-external-atoms/package.json | 2 +- examples/svelte/basic-external-state/package.json | 2 +- examples/svelte/basic-snippets/package.json | 2 +- examples/svelte/column-groups/package.json | 2 +- examples/svelte/column-ordering/package.json | 2 +- examples/svelte/column-pinning-split/package.json | 2 +- examples/svelte/column-pinning-sticky/package.json | 2 +- examples/svelte/column-pinning/package.json | 2 +- examples/svelte/column-resizing-performant/package.json | 2 +- examples/svelte/column-resizing/package.json | 2 +- examples/svelte/column-sizing/package.json | 2 +- examples/svelte/column-visibility/package.json | 2 +- examples/svelte/composable-tables/package.json | 2 +- examples/svelte/expanding/package.json | 2 +- examples/svelte/filtering/package.json | 2 +- examples/svelte/filters-faceted/package.json | 2 +- examples/svelte/filters-fuzzy/package.json | 2 +- examples/svelte/grouping/package.json | 2 +- examples/svelte/kitchen-sink/package.json | 2 +- examples/svelte/pagination/package.json | 2 +- examples/svelte/row-pinning/package.json | 2 +- examples/svelte/row-selection/package.json | 2 +- examples/svelte/sorting/package.json | 2 +- examples/svelte/sub-components/package.json | 2 +- examples/svelte/virtualized-columns/package.json | 2 +- examples/svelte/virtualized-infinite-scrolling/package.json | 2 +- examples/svelte/virtualized-rows/package.json | 2 +- examples/svelte/with-tanstack-form/package.json | 2 +- examples/svelte/with-tanstack-query/package.json | 2 +- examples/vanilla/basic/package.json | 2 +- examples/vanilla/pagination/package.json | 2 +- examples/vanilla/sorting/package.json | 2 +- examples/vue/basic-external-atoms/package.json | 4 ++-- examples/vue/basic-external-state/package.json | 4 ++-- examples/vue/basic-use-app-table/package.json | 4 ++-- examples/vue/basic-use-table/package.json | 4 ++-- examples/vue/column-groups/package.json | 2 +- examples/vue/column-ordering/package.json | 2 +- examples/vue/column-pinning-split/package.json | 2 +- examples/vue/column-pinning-sticky/package.json | 2 +- examples/vue/column-pinning/package.json | 2 +- examples/vue/column-resizing-performant/package.json | 2 +- examples/vue/column-resizing/package.json | 2 +- examples/vue/column-sizing/package.json | 2 +- examples/vue/column-visibility/package.json | 2 +- examples/vue/composable-tables/package.json | 4 ++-- examples/vue/expanding/package.json | 2 +- examples/vue/filters-faceted/package.json | 2 +- examples/vue/filters-fuzzy/package.json | 2 +- examples/vue/filters/package.json | 2 +- examples/vue/grouping/package.json | 2 +- examples/vue/kitchen-sink/package.json | 4 ++-- examples/vue/pagination/package.json | 2 +- examples/vue/row-pinning/package.json | 2 +- examples/vue/row-selection/package.json | 4 ++-- examples/vue/sorting/package.json | 2 +- examples/vue/sub-components/package.json | 2 +- examples/vue/virtualized-columns/package.json | 2 +- examples/vue/virtualized-infinite-scrolling/package.json | 2 +- examples/vue/virtualized-rows/package.json | 2 +- examples/vue/with-tanstack-form/package.json | 2 +- examples/vue/with-tanstack-query/package.json | 2 +- packages/angular-table-devtools/package.json | 2 +- packages/angular-table/package.json | 2 +- packages/lit-table/package.json | 2 +- packages/preact-table-devtools/package.json | 2 +- packages/preact-table/package.json | 2 +- packages/react-table-devtools/package.json | 2 +- packages/react-table/package.json | 2 +- packages/solid-table-devtools/package.json | 2 +- packages/solid-table/package.json | 2 +- packages/svelte-table/package.json | 2 +- packages/table-core/package.json | 2 +- packages/table-devtools/package.json | 2 +- packages/vue-table-devtools/package.json | 2 +- packages/vue-table/package.json | 2 +- 254 files changed, 299 insertions(+), 299 deletions(-) diff --git a/examples/angular/basic-app-table/package.json b/examples/angular/basic-app-table/package.json index 859231dd52..0d5b547289 100644 --- a/examples/angular/basic-app-table/package.json +++ b/examples/angular/basic-app-table/package.json @@ -18,8 +18,8 @@ "@angular/platform-browser": "^22.0.0", "@faker-js/faker": "^10.4.0", "@tanstack/angular-devtools": "^0.0.4", - "@tanstack/angular-table": "^9.0.0-beta.11", - "@tanstack/angular-table-devtools": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", + "@tanstack/angular-table-devtools": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/basic-external-atoms/package.json b/examples/angular/basic-external-atoms/package.json index b6f17a450e..ab7057c855 100644 --- a/examples/angular/basic-external-atoms/package.json +++ b/examples/angular/basic-external-atoms/package.json @@ -19,8 +19,8 @@ "@faker-js/faker": "^10.4.0", "@tanstack/angular-devtools": "^0.0.4", "@tanstack/angular-store": "^0.11.0", - "@tanstack/angular-table": "^9.0.0-beta.11", - "@tanstack/angular-table-devtools": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", + "@tanstack/angular-table-devtools": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/basic-external-state/package.json b/examples/angular/basic-external-state/package.json index 204e054853..b1cf7f30fb 100644 --- a/examples/angular/basic-external-state/package.json +++ b/examples/angular/basic-external-state/package.json @@ -19,8 +19,8 @@ "@faker-js/faker": "^10.4.0", "@tanstack/angular-devtools": "^0.0.4", "@tanstack/angular-store": "^0.11.0", - "@tanstack/angular-table": "^9.0.0-beta.11", - "@tanstack/angular-table-devtools": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", + "@tanstack/angular-table-devtools": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/basic-inject-table/package.json b/examples/angular/basic-inject-table/package.json index 9f53bb4460..77174e2ea5 100644 --- a/examples/angular/basic-inject-table/package.json +++ b/examples/angular/basic-inject-table/package.json @@ -19,8 +19,8 @@ "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", "@tanstack/angular-devtools": "^0.0.4", - "@tanstack/angular-table": "^9.0.0-beta.11", - "@tanstack/angular-table-devtools": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", + "@tanstack/angular-table-devtools": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/column-groups/package.json b/examples/angular/column-groups/package.json index ea18e35625..290bb80dbf 100644 --- a/examples/angular/column-groups/package.json +++ b/examples/angular/column-groups/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/column-ordering/package.json b/examples/angular/column-ordering/package.json index 2f5b39dfa0..f2e1a7084c 100644 --- a/examples/angular/column-ordering/package.json +++ b/examples/angular/column-ordering/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/column-pinning-split/package.json b/examples/angular/column-pinning-split/package.json index 1d5ec3e389..29f3c02a2c 100644 --- a/examples/angular/column-pinning-split/package.json +++ b/examples/angular/column-pinning-split/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/column-pinning-sticky/package.json b/examples/angular/column-pinning-sticky/package.json index 9ee64cf623..957a580cfd 100644 --- a/examples/angular/column-pinning-sticky/package.json +++ b/examples/angular/column-pinning-sticky/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/column-pinning/package.json b/examples/angular/column-pinning/package.json index 6eacb68113..75f1448b74 100644 --- a/examples/angular/column-pinning/package.json +++ b/examples/angular/column-pinning/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/column-resizing-performant/package.json b/examples/angular/column-resizing-performant/package.json index ac9e4801bd..eb218a46ca 100644 --- a/examples/angular/column-resizing-performant/package.json +++ b/examples/angular/column-resizing-performant/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/column-resizing/package.json b/examples/angular/column-resizing/package.json index 3e2485a8d9..657fd40f06 100644 --- a/examples/angular/column-resizing/package.json +++ b/examples/angular/column-resizing/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/column-sizing/package.json b/examples/angular/column-sizing/package.json index 1e72d8e8db..875d2b53b2 100644 --- a/examples/angular/column-sizing/package.json +++ b/examples/angular/column-sizing/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/column-visibility/package.json b/examples/angular/column-visibility/package.json index d1c77d8e79..e7fc4e77fc 100644 --- a/examples/angular/column-visibility/package.json +++ b/examples/angular/column-visibility/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/composable-tables/package.json b/examples/angular/composable-tables/package.json index 87e6617497..7c3629a4bc 100644 --- a/examples/angular/composable-tables/package.json +++ b/examples/angular/composable-tables/package.json @@ -19,8 +19,8 @@ "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", "@tanstack/angular-devtools": "^0.0.4", - "@tanstack/angular-table": "^9.0.0-beta.11", - "@tanstack/angular-table-devtools": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", + "@tanstack/angular-table-devtools": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/custom-plugin/package.json b/examples/angular/custom-plugin/package.json index bb5b909b00..11bfb737da 100644 --- a/examples/angular/custom-plugin/package.json +++ b/examples/angular/custom-plugin/package.json @@ -17,7 +17,7 @@ "@angular/forms": "^22.0.0", "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/editable/package.json b/examples/angular/editable/package.json index 84b56cc859..ca43cad2a8 100644 --- a/examples/angular/editable/package.json +++ b/examples/angular/editable/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/expanding/package.json b/examples/angular/expanding/package.json index 99e90b2f3e..571afe8f69 100644 --- a/examples/angular/expanding/package.json +++ b/examples/angular/expanding/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/filters-faceted/package.json b/examples/angular/filters-faceted/package.json index d2eb072d75..5b692e55a3 100644 --- a/examples/angular/filters-faceted/package.json +++ b/examples/angular/filters-faceted/package.json @@ -19,7 +19,7 @@ "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", "@tanstack/angular-pacer": "^0.23.1", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/filters-fuzzy/package.json b/examples/angular/filters-fuzzy/package.json index 0c6c2a976b..8239af5fe2 100644 --- a/examples/angular/filters-fuzzy/package.json +++ b/examples/angular/filters-fuzzy/package.json @@ -19,7 +19,7 @@ "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", "@tanstack/angular-pacer": "^0.23.1", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "rxjs": "~7.8.2", "tslib": "^2.8.1" diff --git a/examples/angular/filters/package.json b/examples/angular/filters/package.json index d638cc048b..d9ad4426c7 100644 --- a/examples/angular/filters/package.json +++ b/examples/angular/filters/package.json @@ -19,7 +19,7 @@ "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", "@tanstack/angular-pacer": "^0.23.1", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/grouping/package.json b/examples/angular/grouping/package.json index 1c363e3c1f..a61759cd07 100644 --- a/examples/angular/grouping/package.json +++ b/examples/angular/grouping/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/kitchen-sink/package.json b/examples/angular/kitchen-sink/package.json index 9cd1f27223..8293917b24 100644 --- a/examples/angular/kitchen-sink/package.json +++ b/examples/angular/kitchen-sink/package.json @@ -19,8 +19,8 @@ "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", "@tanstack/angular-devtools": "^0.0.4", - "@tanstack/angular-table": "^9.0.0-beta.11", - "@tanstack/angular-table-devtools": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", + "@tanstack/angular-table-devtools": "^9.0.0-beta.12", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "rxjs": "~7.8.2", "tslib": "^2.8.1" diff --git a/examples/angular/pagination/package.json b/examples/angular/pagination/package.json index 3cf7fb0e35..46872e1e4d 100644 --- a/examples/angular/pagination/package.json +++ b/examples/angular/pagination/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/remote-data/package.json b/examples/angular/remote-data/package.json index e50a904daa..e625f99775 100644 --- a/examples/angular/remote-data/package.json +++ b/examples/angular/remote-data/package.json @@ -23,7 +23,7 @@ "@angular/platform-server": "^22.0.0", "@angular/router": "^22.0.0", "@angular/ssr": "^22.0.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "express": "^5.2.1", "rxjs": "~7.8.2" }, diff --git a/examples/angular/row-dnd/package.json b/examples/angular/row-dnd/package.json index e977da8d10..75549a6ed4 100644 --- a/examples/angular/row-dnd/package.json +++ b/examples/angular/row-dnd/package.json @@ -19,7 +19,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/row-pinning/package.json b/examples/angular/row-pinning/package.json index f3e092a055..1b06dbba9d 100644 --- a/examples/angular/row-pinning/package.json +++ b/examples/angular/row-pinning/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/row-selection-signal/package.json b/examples/angular/row-selection-signal/package.json index 62adf6d5e0..4343aa2cd7 100644 --- a/examples/angular/row-selection-signal/package.json +++ b/examples/angular/row-selection-signal/package.json @@ -21,8 +21,8 @@ "@angular/platform-browser-dynamic": "^22.0.0", "@faker-js/faker": "^10.4.0", "@tanstack/angular-devtools": "^0.0.4", - "@tanstack/angular-table": "^9.0.0-beta.11", - "@tanstack/angular-table-devtools": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", + "@tanstack/angular-table-devtools": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/row-selection/package.json b/examples/angular/row-selection/package.json index 0556d526ec..6a4b5988c1 100644 --- a/examples/angular/row-selection/package.json +++ b/examples/angular/row-selection/package.json @@ -20,8 +20,8 @@ "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", "@tanstack/angular-devtools": "^0.0.4", - "@tanstack/angular-table": "^9.0.0-beta.11", - "@tanstack/angular-table-devtools": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", + "@tanstack/angular-table-devtools": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/signal-input/package.json b/examples/angular/signal-input/package.json index 889569e94a..7f592716ad 100644 --- a/examples/angular/signal-input/package.json +++ b/examples/angular/signal-input/package.json @@ -19,7 +19,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/sorting/package.json b/examples/angular/sorting/package.json index a9c96cb0b5..6d8f98e986 100644 --- a/examples/angular/sorting/package.json +++ b/examples/angular/sorting/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/sub-components/package.json b/examples/angular/sub-components/package.json index eb5ee5b098..0c0c09b3aa 100644 --- a/examples/angular/sub-components/package.json +++ b/examples/angular/sub-components/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/virtualized-columns/package.json b/examples/angular/virtualized-columns/package.json index acbd8a44ab..fd8bae849c 100644 --- a/examples/angular/virtualized-columns/package.json +++ b/examples/angular/virtualized-columns/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "@tanstack/angular-virtual": "^5.0.4", "rxjs": "~7.8.2", "tslib": "^2.8.1" diff --git a/examples/angular/virtualized-infinite-scrolling/package.json b/examples/angular/virtualized-infinite-scrolling/package.json index 1243bff65d..1cf5ac68b8 100644 --- a/examples/angular/virtualized-infinite-scrolling/package.json +++ b/examples/angular/virtualized-infinite-scrolling/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "@tanstack/angular-virtual": "^5.0.4", "rxjs": "~7.8.2", "tslib": "^2.8.1" diff --git a/examples/angular/virtualized-rows/package.json b/examples/angular/virtualized-rows/package.json index 19913dd124..90ac5773b3 100644 --- a/examples/angular/virtualized-rows/package.json +++ b/examples/angular/virtualized-rows/package.json @@ -18,7 +18,7 @@ "@angular/platform-browser": "^22.0.0", "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "@tanstack/angular-virtual": "^5.0.4", "rxjs": "~7.8.2", "tslib": "^2.8.1" diff --git a/examples/angular/with-tanstack-form/package.json b/examples/angular/with-tanstack-form/package.json index ce3917e18c..f4bdd32db7 100644 --- a/examples/angular/with-tanstack-form/package.json +++ b/examples/angular/with-tanstack-form/package.json @@ -19,7 +19,7 @@ "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", "@tanstack/angular-form": "^1.33.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1", "zod": "^4.4.3" diff --git a/examples/angular/with-tanstack-query/package.json b/examples/angular/with-tanstack-query/package.json index 95b9bb4914..c94ccfa93f 100644 --- a/examples/angular/with-tanstack-query/package.json +++ b/examples/angular/with-tanstack-query/package.json @@ -19,7 +19,7 @@ "@angular/router": "^22.0.0", "@faker-js/faker": "^10.4.0", "@tanstack/angular-query-experimental": "^5.101.0", - "@tanstack/angular-table": "^9.0.0-beta.11", + "@tanstack/angular-table": "^9.0.0-beta.12", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/lit/basic-app-table/package.json b/examples/lit/basic-app-table/package.json index 6b84ef01e4..8640d1e980 100644 --- a/examples/lit/basic-app-table/package.json +++ b/examples/lit/basic-app-table/package.json @@ -11,7 +11,7 @@ "dependencies": { "@faker-js/faker": "^10.4.0", "@lit/context": "^1.1.6", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/basic-external-atoms/package.json b/examples/lit/basic-external-atoms/package.json index a2147f51c0..3662db2622 100644 --- a/examples/lit/basic-external-atoms/package.json +++ b/examples/lit/basic-external-atoms/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "@tanstack/store": "^0.11.0", "lit": "^3.3.3" }, diff --git a/examples/lit/basic-external-state/package.json b/examples/lit/basic-external-state/package.json index 542f725966..acf5ee9ab0 100644 --- a/examples/lit/basic-external-state/package.json +++ b/examples/lit/basic-external-state/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/basic-table-controller/package.json b/examples/lit/basic-table-controller/package.json index a1de439d64..f7f9640eed 100644 --- a/examples/lit/basic-table-controller/package.json +++ b/examples/lit/basic-table-controller/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-groups/package.json b/examples/lit/column-groups/package.json index 372b33e315..74a8ecbdd0 100644 --- a/examples/lit/column-groups/package.json +++ b/examples/lit/column-groups/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-ordering/package.json b/examples/lit/column-ordering/package.json index 68ae43b82c..2a696a57f9 100644 --- a/examples/lit/column-ordering/package.json +++ b/examples/lit/column-ordering/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-pinning-split/package.json b/examples/lit/column-pinning-split/package.json index 15cf62d68b..ca25b47620 100644 --- a/examples/lit/column-pinning-split/package.json +++ b/examples/lit/column-pinning-split/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-pinning-sticky/package.json b/examples/lit/column-pinning-sticky/package.json index 690011c74b..01604e86da 100644 --- a/examples/lit/column-pinning-sticky/package.json +++ b/examples/lit/column-pinning-sticky/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-pinning/package.json b/examples/lit/column-pinning/package.json index 68a0d6bf59..9eb6e93443 100644 --- a/examples/lit/column-pinning/package.json +++ b/examples/lit/column-pinning/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-resizing-performant/package.json b/examples/lit/column-resizing-performant/package.json index e9d9ac6a36..fa83514031 100644 --- a/examples/lit/column-resizing-performant/package.json +++ b/examples/lit/column-resizing-performant/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-resizing/package.json b/examples/lit/column-resizing/package.json index d2f8208de4..71f56d062a 100644 --- a/examples/lit/column-resizing/package.json +++ b/examples/lit/column-resizing/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-sizing/package.json b/examples/lit/column-sizing/package.json index 0198da67d3..3c25ae76ea 100644 --- a/examples/lit/column-sizing/package.json +++ b/examples/lit/column-sizing/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-visibility/package.json b/examples/lit/column-visibility/package.json index 8b4a353624..9def67d9ed 100644 --- a/examples/lit/column-visibility/package.json +++ b/examples/lit/column-visibility/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/composable-tables/package.json b/examples/lit/composable-tables/package.json index fd95588a1f..399db4460d 100644 --- a/examples/lit/composable-tables/package.json +++ b/examples/lit/composable-tables/package.json @@ -11,7 +11,7 @@ "dependencies": { "@faker-js/faker": "^10.4.0", "@lit/context": "^1.1.6", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/expanding/package.json b/examples/lit/expanding/package.json index a96addd670..fbf52b400f 100644 --- a/examples/lit/expanding/package.json +++ b/examples/lit/expanding/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/filters-faceted/package.json b/examples/lit/filters-faceted/package.json index 2a63ac676c..f38a44d1b5 100644 --- a/examples/lit/filters-faceted/package.json +++ b/examples/lit/filters-faceted/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/filters-fuzzy/package.json b/examples/lit/filters-fuzzy/package.json index 26e3a6d7f9..53168e9004 100644 --- a/examples/lit/filters-fuzzy/package.json +++ b/examples/lit/filters-fuzzy/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "lit": "^3.3.3" }, diff --git a/examples/lit/filters/package.json b/examples/lit/filters/package.json index c0cec167d5..ba9930bf8e 100644 --- a/examples/lit/filters/package.json +++ b/examples/lit/filters/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/grouping/package.json b/examples/lit/grouping/package.json index db4166a830..866441ab8e 100644 --- a/examples/lit/grouping/package.json +++ b/examples/lit/grouping/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/kitchen-sink/package.json b/examples/lit/kitchen-sink/package.json index 06ba98084f..0b56da934c 100644 --- a/examples/lit/kitchen-sink/package.json +++ b/examples/lit/kitchen-sink/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "lit": "^3.3.3" }, diff --git a/examples/lit/pagination/package.json b/examples/lit/pagination/package.json index 7c52f6105d..6ac5cd9975 100644 --- a/examples/lit/pagination/package.json +++ b/examples/lit/pagination/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/row-pinning/package.json b/examples/lit/row-pinning/package.json index aaf6242b84..8f301fa011 100644 --- a/examples/lit/row-pinning/package.json +++ b/examples/lit/row-pinning/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/row-selection/package.json b/examples/lit/row-selection/package.json index 9233933bee..efd0372332 100644 --- a/examples/lit/row-selection/package.json +++ b/examples/lit/row-selection/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/sorting-dynamic-data/package.json b/examples/lit/sorting-dynamic-data/package.json index 48c042706e..93f79266df 100644 --- a/examples/lit/sorting-dynamic-data/package.json +++ b/examples/lit/sorting-dynamic-data/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/sorting/package.json b/examples/lit/sorting/package.json index 493d9acd07..b6fe411daa 100644 --- a/examples/lit/sorting/package.json +++ b/examples/lit/sorting/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/sub-components/package.json b/examples/lit/sub-components/package.json index 971477930d..f584690234 100644 --- a/examples/lit/sub-components/package.json +++ b/examples/lit/sub-components/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/virtualized-columns/package.json b/examples/lit/virtualized-columns/package.json index 358a92a2e8..a28cd264f1 100644 --- a/examples/lit/virtualized-columns/package.json +++ b/examples/lit/virtualized-columns/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "@tanstack/lit-virtual": "^3.13.29", "lit": "^3.3.3" }, diff --git a/examples/lit/virtualized-infinite-scrolling/package.json b/examples/lit/virtualized-infinite-scrolling/package.json index 86c0951ebd..aad7615613 100644 --- a/examples/lit/virtualized-infinite-scrolling/package.json +++ b/examples/lit/virtualized-infinite-scrolling/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "@tanstack/lit-virtual": "^3.13.29", "lit": "^3.3.3" }, diff --git a/examples/lit/virtualized-rows/package.json b/examples/lit/virtualized-rows/package.json index 155cf6c92d..7e2a6ddcd7 100644 --- a/examples/lit/virtualized-rows/package.json +++ b/examples/lit/virtualized-rows/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/lit-table": "^9.0.0-beta.11", + "@tanstack/lit-table": "^9.0.0-beta.12", "@tanstack/lit-virtual": "^3.13.29", "lit": "^3.3.3" }, diff --git a/examples/preact/basic-external-atoms/package.json b/examples/preact/basic-external-atoms/package.json index 347b8dafa1..7d82ec6504 100644 --- a/examples/preact/basic-external-atoms/package.json +++ b/examples/preact/basic-external-atoms/package.json @@ -14,8 +14,8 @@ "@faker-js/faker": "^10.4.0", "@tanstack/preact-devtools": "^0.10.5", "@tanstack/preact-store": "^0.13.1", - "@tanstack/preact-table": "^9.0.0-beta.11", - "@tanstack/preact-table-devtools": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", + "@tanstack/preact-table-devtools": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/basic-external-state/package.json b/examples/preact/basic-external-state/package.json index 5fe49401fa..1a4fdd598b 100644 --- a/examples/preact/basic-external-state/package.json +++ b/examples/preact/basic-external-state/package.json @@ -14,8 +14,8 @@ "@faker-js/faker": "^10.4.0", "@tanstack/preact-devtools": "^0.10.5", "@tanstack/preact-store": "^0.13.1", - "@tanstack/preact-table": "^9.0.0-beta.11", - "@tanstack/preact-table-devtools": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", + "@tanstack/preact-table-devtools": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/basic-subscribe/package.json b/examples/preact/basic-subscribe/package.json index 3f63874a9c..4840049569 100644 --- a/examples/preact/basic-subscribe/package.json +++ b/examples/preact/basic-subscribe/package.json @@ -14,8 +14,8 @@ "@faker-js/faker": "^10.4.0", "@tanstack/preact-devtools": "^0.10.5", "@tanstack/preact-store": "^0.13.1", - "@tanstack/preact-table": "^9.0.0-beta.11", - "@tanstack/preact-table-devtools": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", + "@tanstack/preact-table-devtools": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/basic-use-app-table/package.json b/examples/preact/basic-use-app-table/package.json index 7de7f1d9e0..3a64a628b9 100644 --- a/examples/preact/basic-use-app-table/package.json +++ b/examples/preact/basic-use-app-table/package.json @@ -12,8 +12,8 @@ }, "dependencies": { "@tanstack/preact-devtools": "^0.10.5", - "@tanstack/preact-table": "^9.0.0-beta.11", - "@tanstack/preact-table-devtools": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", + "@tanstack/preact-table-devtools": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/basic-use-table/package.json b/examples/preact/basic-use-table/package.json index ecccad928b..51d63b9c27 100644 --- a/examples/preact/basic-use-table/package.json +++ b/examples/preact/basic-use-table/package.json @@ -12,8 +12,8 @@ }, "dependencies": { "@tanstack/preact-devtools": "^0.10.5", - "@tanstack/preact-table": "^9.0.0-beta.11", - "@tanstack/preact-table-devtools": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", + "@tanstack/preact-table-devtools": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-groups/package.json b/examples/preact/column-groups/package.json index 024880b04f..1a58fc8b32 100644 --- a/examples/preact/column-groups/package.json +++ b/examples/preact/column-groups/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-ordering/package.json b/examples/preact/column-ordering/package.json index 2a96c5ec02..5b3565cb60 100644 --- a/examples/preact/column-ordering/package.json +++ b/examples/preact/column-ordering/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-pinning-split/package.json b/examples/preact/column-pinning-split/package.json index e5c9e8b6d9..06028261ed 100644 --- a/examples/preact/column-pinning-split/package.json +++ b/examples/preact/column-pinning-split/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-pinning-sticky/package.json b/examples/preact/column-pinning-sticky/package.json index d615178187..57a53d03c3 100644 --- a/examples/preact/column-pinning-sticky/package.json +++ b/examples/preact/column-pinning-sticky/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-pinning/package.json b/examples/preact/column-pinning/package.json index 66458c50be..f3622638f9 100644 --- a/examples/preact/column-pinning/package.json +++ b/examples/preact/column-pinning/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-resizing-performant/package.json b/examples/preact/column-resizing-performant/package.json index 2273be6a81..b426c7568f 100644 --- a/examples/preact/column-resizing-performant/package.json +++ b/examples/preact/column-resizing-performant/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-resizing/package.json b/examples/preact/column-resizing/package.json index a73e5c216e..9824166984 100644 --- a/examples/preact/column-resizing/package.json +++ b/examples/preact/column-resizing/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-sizing/package.json b/examples/preact/column-sizing/package.json index d9f4e772ae..46987fe1e3 100644 --- a/examples/preact/column-sizing/package.json +++ b/examples/preact/column-sizing/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-visibility/package.json b/examples/preact/column-visibility/package.json index 9864623e33..6837ecdf8e 100644 --- a/examples/preact/column-visibility/package.json +++ b/examples/preact/column-visibility/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/composable-tables/package.json b/examples/preact/composable-tables/package.json index d25e0b3887..b55ebe42dc 100644 --- a/examples/preact/composable-tables/package.json +++ b/examples/preact/composable-tables/package.json @@ -14,8 +14,8 @@ "@faker-js/faker": "^10.4.0", "@tanstack/preact-devtools": "^0.10.5", "@tanstack/preact-store": "^0.13.1", - "@tanstack/preact-table": "^9.0.0-beta.11", - "@tanstack/preact-table-devtools": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", + "@tanstack/preact-table-devtools": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/custom-plugin/package.json b/examples/preact/custom-plugin/package.json index 7639374925..80fe92f9e9 100644 --- a/examples/preact/custom-plugin/package.json +++ b/examples/preact/custom-plugin/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/expanding/package.json b/examples/preact/expanding/package.json index 5901c66771..42db4dbdaa 100644 --- a/examples/preact/expanding/package.json +++ b/examples/preact/expanding/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/filters-faceted/package.json b/examples/preact/filters-faceted/package.json index 3ae365b4c9..1b225d5012 100644 --- a/examples/preact/filters-faceted/package.json +++ b/examples/preact/filters-faceted/package.json @@ -14,7 +14,7 @@ "@faker-js/faker": "^10.4.0", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/preact-pacer": "^0.22.1", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/filters-fuzzy/package.json b/examples/preact/filters-fuzzy/package.json index a3f5cf85bb..30854fe13b 100644 --- a/examples/preact/filters-fuzzy/package.json +++ b/examples/preact/filters-fuzzy/package.json @@ -14,7 +14,7 @@ "@faker-js/faker": "^10.4.0", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/preact-pacer": "^0.22.1", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/filters/package.json b/examples/preact/filters/package.json index 7431053daf..a778c75346 100644 --- a/examples/preact/filters/package.json +++ b/examples/preact/filters/package.json @@ -14,7 +14,7 @@ "@faker-js/faker": "^10.4.0", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/preact-pacer": "^0.22.1", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/grouping/package.json b/examples/preact/grouping/package.json index 2a8030c90a..941de45419 100644 --- a/examples/preact/grouping/package.json +++ b/examples/preact/grouping/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/kitchen-sink/package.json b/examples/preact/kitchen-sink/package.json index 90055650fb..7fc9297d54 100644 --- a/examples/preact/kitchen-sink/package.json +++ b/examples/preact/kitchen-sink/package.json @@ -14,8 +14,8 @@ "@faker-js/faker": "^10.4.0", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/preact-devtools": "^0.10.5", - "@tanstack/preact-table": "^9.0.0-beta.11", - "@tanstack/preact-table-devtools": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", + "@tanstack/preact-table-devtools": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/pagination/package.json b/examples/preact/pagination/package.json index 2c68b77d68..7db57901d2 100644 --- a/examples/preact/pagination/package.json +++ b/examples/preact/pagination/package.json @@ -13,7 +13,7 @@ "dependencies": { "@faker-js/faker": "^10.4.0", "@tanstack/preact-store": "^0.13.1", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/row-pinning/package.json b/examples/preact/row-pinning/package.json index ca2ebcfb6d..7e5bd48a76 100644 --- a/examples/preact/row-pinning/package.json +++ b/examples/preact/row-pinning/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/row-selection/package.json b/examples/preact/row-selection/package.json index 0d3bcfb8ee..9d0f444839 100644 --- a/examples/preact/row-selection/package.json +++ b/examples/preact/row-selection/package.json @@ -14,8 +14,8 @@ "@faker-js/faker": "^10.4.0", "@tanstack/preact-devtools": "^0.10.5", "@tanstack/preact-store": "^0.13.1", - "@tanstack/preact-table": "^9.0.0-beta.11", - "@tanstack/preact-table-devtools": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", + "@tanstack/preact-table-devtools": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/sorting/package.json b/examples/preact/sorting/package.json index 2fd19f463a..de23b5571e 100644 --- a/examples/preact/sorting/package.json +++ b/examples/preact/sorting/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/sub-components/package.json b/examples/preact/sub-components/package.json index 50c2b7bda2..ddb3441e8f 100644 --- a/examples/preact/sub-components/package.json +++ b/examples/preact/sub-components/package.json @@ -12,7 +12,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/with-tanstack-query/package.json b/examples/preact/with-tanstack-query/package.json index 41b1db96bc..b0760d299f 100644 --- a/examples/preact/with-tanstack-query/package.json +++ b/examples/preact/with-tanstack-query/package.json @@ -14,7 +14,7 @@ "@faker-js/faker": "^10.4.0", "@tanstack/preact-query": "^5.101.0", "@tanstack/preact-store": "^0.13.1", - "@tanstack/preact-table": "^9.0.0-beta.11", + "@tanstack/preact-table": "^9.0.0-beta.12", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/react/basic-external-atoms/package.json b/examples/react/basic-external-atoms/package.json index 5d99b245a0..452bbf6e62 100644 --- a/examples/react/basic-external-atoms/package.json +++ b/examples/react/basic-external-atoms/package.json @@ -13,8 +13,8 @@ "@faker-js/faker": "^10.4.0", "@tanstack/react-devtools": "^0.10.5", "@tanstack/react-store": "^0.11.0", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/basic-external-state/package.json b/examples/react/basic-external-state/package.json index 6b1b5b7a56..59e0b9bd9f 100644 --- a/examples/react/basic-external-state/package.json +++ b/examples/react/basic-external-state/package.json @@ -13,8 +13,8 @@ "@faker-js/faker": "^10.4.0", "@tanstack/react-devtools": "^0.10.5", "@tanstack/react-store": "^0.11.0", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/basic-subscribe/package.json b/examples/react/basic-subscribe/package.json index d464d2c8db..69718800ab 100644 --- a/examples/react/basic-subscribe/package.json +++ b/examples/react/basic-subscribe/package.json @@ -14,8 +14,8 @@ "@tanstack/react-devtools": "^0.10.5", "@tanstack/react-pacer": "^0.22.1", "@tanstack/react-store": "^0.11.0", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/basic-use-app-table/package.json b/examples/react/basic-use-app-table/package.json index 38df6775c4..81cfaa125f 100644 --- a/examples/react/basic-use-app-table/package.json +++ b/examples/react/basic-use-app-table/package.json @@ -11,8 +11,8 @@ }, "dependencies": { "@tanstack/react-devtools": "^0.10.5", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/basic-use-legacy-table/package.json b/examples/react/basic-use-legacy-table/package.json index a5e03132e5..1b4dfaa1ae 100644 --- a/examples/react/basic-use-legacy-table/package.json +++ b/examples/react/basic-use-legacy-table/package.json @@ -13,8 +13,8 @@ "@faker-js/faker": "^10.4.0", "@tanstack/react-devtools": "^0.10.5", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/basic-use-table/package.json b/examples/react/basic-use-table/package.json index 21225ab9f8..a950870114 100644 --- a/examples/react/basic-use-table/package.json +++ b/examples/react/basic-use-table/package.json @@ -11,8 +11,8 @@ }, "dependencies": { "@tanstack/react-devtools": "^0.10.5", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/column-dnd/package.json b/examples/react/column-dnd/package.json index efbc93794e..c1e9f1d778 100644 --- a/examples/react/column-dnd/package.json +++ b/examples/react/column-dnd/package.json @@ -15,7 +15,7 @@ "@dnd-kit/sortable": "^10.0.0", "@dnd-kit/utilities": "^3.2.2", "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/column-groups/package.json b/examples/react/column-groups/package.json index b7e4a12ad5..7962e3ffd4 100644 --- a/examples/react/column-groups/package.json +++ b/examples/react/column-groups/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/column-ordering/package.json b/examples/react/column-ordering/package.json index 04eef74b76..f00f840759 100644 --- a/examples/react/column-ordering/package.json +++ b/examples/react/column-ordering/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/column-pinning-split/package.json b/examples/react/column-pinning-split/package.json index 337079dff7..1bcd893b26 100644 --- a/examples/react/column-pinning-split/package.json +++ b/examples/react/column-pinning-split/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/column-pinning-sticky/package.json b/examples/react/column-pinning-sticky/package.json index bb1220aeee..dc37710fbc 100644 --- a/examples/react/column-pinning-sticky/package.json +++ b/examples/react/column-pinning-sticky/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/column-pinning/package.json b/examples/react/column-pinning/package.json index 602a38af75..aaadcb9cba 100644 --- a/examples/react/column-pinning/package.json +++ b/examples/react/column-pinning/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/column-resizing-performant/package.json b/examples/react/column-resizing-performant/package.json index 9370af79ac..579be70334 100644 --- a/examples/react/column-resizing-performant/package.json +++ b/examples/react/column-resizing-performant/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/column-resizing/package.json b/examples/react/column-resizing/package.json index 130bb7c24f..3ca18b1f43 100644 --- a/examples/react/column-resizing/package.json +++ b/examples/react/column-resizing/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/column-sizing/package.json b/examples/react/column-sizing/package.json index 0c704e4a5f..698fe35172 100644 --- a/examples/react/column-sizing/package.json +++ b/examples/react/column-sizing/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/column-visibility/package.json b/examples/react/column-visibility/package.json index 728d2125ae..3b5a8a84e0 100644 --- a/examples/react/column-visibility/package.json +++ b/examples/react/column-visibility/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/composable-tables/package.json b/examples/react/composable-tables/package.json index db9a52712c..3875068d8f 100644 --- a/examples/react/composable-tables/package.json +++ b/examples/react/composable-tables/package.json @@ -13,8 +13,8 @@ "@faker-js/faker": "^10.4.0", "@tanstack/react-devtools": "^0.10.5", "@tanstack/react-store": "^0.11.0", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/custom-plugin/package.json b/examples/react/custom-plugin/package.json index caa28268a4..9f51efa5a2 100644 --- a/examples/react/custom-plugin/package.json +++ b/examples/react/custom-plugin/package.json @@ -12,7 +12,7 @@ "dependencies": { "@faker-js/faker": "^10.4.0", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/expanding/package.json b/examples/react/expanding/package.json index c8dca914bd..be33fa8d25 100644 --- a/examples/react/expanding/package.json +++ b/examples/react/expanding/package.json @@ -12,7 +12,7 @@ "dependencies": { "@faker-js/faker": "^10.4.0", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/filters-faceted/package.json b/examples/react/filters-faceted/package.json index 06d9506afa..3dabd32a06 100644 --- a/examples/react/filters-faceted/package.json +++ b/examples/react/filters-faceted/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/filters-fuzzy/package.json b/examples/react/filters-fuzzy/package.json index 81da9f7428..308bddd681 100644 --- a/examples/react/filters-fuzzy/package.json +++ b/examples/react/filters-fuzzy/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/filters/package.json b/examples/react/filters/package.json index 22ea5a2b38..31b02d4879 100644 --- a/examples/react/filters/package.json +++ b/examples/react/filters/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/grouping/package.json b/examples/react/grouping/package.json index c5bb82b9a8..c43e59fe27 100644 --- a/examples/react/grouping/package.json +++ b/examples/react/grouping/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/kitchen-sink-hero-ui/package.json b/examples/react/kitchen-sink-hero-ui/package.json index f449c223b4..036bbcd918 100644 --- a/examples/react/kitchen-sink-hero-ui/package.json +++ b/examples/react/kitchen-sink-hero-ui/package.json @@ -22,8 +22,8 @@ "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/react-devtools": "^0.10.5", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "date-fns": "^4.4.0", "react": "^19.2.7", "react-dom": "^19.2.7", diff --git a/examples/react/kitchen-sink-mantine/package.json b/examples/react/kitchen-sink-mantine/package.json index 2ee3b274ff..76e1c98c87 100644 --- a/examples/react/kitchen-sink-mantine/package.json +++ b/examples/react/kitchen-sink-mantine/package.json @@ -21,8 +21,8 @@ "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/react-devtools": "^0.10.5", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "date-fns": "^4.4.0", "react": "^19.2.7", "react-dom": "^19.2.7" diff --git a/examples/react/kitchen-sink-material-ui/package.json b/examples/react/kitchen-sink-material-ui/package.json index 3444a9d3e7..5fbdf209fa 100644 --- a/examples/react/kitchen-sink-material-ui/package.json +++ b/examples/react/kitchen-sink-material-ui/package.json @@ -22,8 +22,8 @@ "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/react-devtools": "^0.10.5", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "date-fns": "^4.4.0", "react": "^19.2.7", "react-dom": "^19.2.7" diff --git a/examples/react/kitchen-sink-react-aria/package.json b/examples/react/kitchen-sink-react-aria/package.json index 670a703805..5b5c63570d 100644 --- a/examples/react/kitchen-sink-react-aria/package.json +++ b/examples/react/kitchen-sink-react-aria/package.json @@ -20,8 +20,8 @@ "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/react-devtools": "^0.10.5", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "date-fns": "^4.4.0", "react": "^19.2.7", "react-aria-components": "^1.18.0", diff --git a/examples/react/kitchen-sink-shadcn-base/package.json b/examples/react/kitchen-sink-shadcn-base/package.json index 403edcfa5a..2dac629740 100644 --- a/examples/react/kitchen-sink-shadcn-base/package.json +++ b/examples/react/kitchen-sink-shadcn-base/package.json @@ -22,8 +22,8 @@ "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/react-devtools": "^0.10.5", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "cmdk": "1.1.1", diff --git a/examples/react/kitchen-sink-shadcn-radix/package.json b/examples/react/kitchen-sink-shadcn-radix/package.json index 6a165ca7eb..42063e84bb 100644 --- a/examples/react/kitchen-sink-shadcn-radix/package.json +++ b/examples/react/kitchen-sink-shadcn-radix/package.json @@ -21,8 +21,8 @@ "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/react-devtools": "^0.10.5", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "cmdk": "1.1.1", diff --git a/examples/react/kitchen-sink/package.json b/examples/react/kitchen-sink/package.json index d0b2eca55a..b36fdc198b 100644 --- a/examples/react/kitchen-sink/package.json +++ b/examples/react/kitchen-sink/package.json @@ -19,8 +19,8 @@ "@tanstack/react-devtools": "^0.10.5", "@tanstack/react-pacer": "^0.22.1", "@tanstack/react-store": "^0.11.0", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/lib-hero-ui/package.json b/examples/react/lib-hero-ui/package.json index 5619a610cc..574c2b472a 100644 --- a/examples/react/lib-hero-ui/package.json +++ b/examples/react/lib-hero-ui/package.json @@ -15,7 +15,7 @@ "@heroui/react": "^3.1.0", "@heroui/styles": "^3.1.0", "@tailwindcss/vite": "^4.3.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7", "tailwindcss": "^4.3.0" diff --git a/examples/react/lib-mantine/package.json b/examples/react/lib-mantine/package.json index 19ed77c9e5..21761a68b5 100644 --- a/examples/react/lib-mantine/package.json +++ b/examples/react/lib-mantine/package.json @@ -15,7 +15,7 @@ "@mantine/core": "^9.3.0", "@mantine/hooks": "^9.3.0", "@tabler/icons-react": "^3.44.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/lib-material-ui/package.json b/examples/react/lib-material-ui/package.json index ea402e0f8a..e75494d675 100644 --- a/examples/react/lib-material-ui/package.json +++ b/examples/react/lib-material-ui/package.json @@ -16,7 +16,7 @@ "@faker-js/faker": "^10.4.0", "@mui/icons-material": "^9.0.1", "@mui/material": "^9.0.1", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/lib-react-aria/package.json b/examples/react/lib-react-aria/package.json index 2824a08ed6..c253c24dc9 100644 --- a/examples/react/lib-react-aria/package.json +++ b/examples/react/lib-react-aria/package.json @@ -13,7 +13,7 @@ "dependencies": { "@faker-js/faker": "^10.4.0", "@tailwindcss/vite": "^4.3.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-aria-components": "^1.18.0", "react-dom": "^19.2.7", diff --git a/examples/react/lib-shadcn-base/package.json b/examples/react/lib-shadcn-base/package.json index f4210c361d..b82ff91b8e 100644 --- a/examples/react/lib-shadcn-base/package.json +++ b/examples/react/lib-shadcn-base/package.json @@ -15,7 +15,7 @@ "@faker-js/faker": "^10.4.0", "@tailwindcss/vite": "^4.3.0", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "lucide-react": "^1.17.0", diff --git a/examples/react/lib-shadcn-radix/package.json b/examples/react/lib-shadcn-radix/package.json index fda9802f91..399170d8b9 100644 --- a/examples/react/lib-shadcn-radix/package.json +++ b/examples/react/lib-shadcn-radix/package.json @@ -14,7 +14,7 @@ "@faker-js/faker": "^10.4.0", "@tailwindcss/vite": "^4.3.0", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", "lucide-react": "^1.17.0", diff --git a/examples/react/mantine-react-table/package.json b/examples/react/mantine-react-table/package.json index 3e7a3bdcb9..ad8d0a4053 100644 --- a/examples/react/mantine-react-table/package.json +++ b/examples/react/mantine-react-table/package.json @@ -17,7 +17,7 @@ "@tabler/icons-react": "^3.44.0", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/react-store": "^0.11.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "@tanstack/react-virtual": "^3.14.2", "clsx": "^2.1.1", "dayjs": "^1.11.21", diff --git a/examples/react/material-react-table/package.json b/examples/react/material-react-table/package.json index 36dd97e92c..2b2138513e 100644 --- a/examples/react/material-react-table/package.json +++ b/examples/react/material-react-table/package.json @@ -20,7 +20,7 @@ "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/react-pacer": "^0.22.1", "@tanstack/react-store": "^0.11.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "@tanstack/react-virtual": "^3.14.2", "highlight-words": "^2.0.0", "react": "^19.2.7", diff --git a/examples/react/pagination/package.json b/examples/react/pagination/package.json index 5f3b2ec3da..1bab6114cf 100644 --- a/examples/react/pagination/package.json +++ b/examples/react/pagination/package.json @@ -12,7 +12,7 @@ "dependencies": { "@faker-js/faker": "^10.4.0", "@tanstack/react-store": "^0.11.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/row-dnd/package.json b/examples/react/row-dnd/package.json index 819c2fbe30..e0cac6d3bd 100644 --- a/examples/react/row-dnd/package.json +++ b/examples/react/row-dnd/package.json @@ -15,7 +15,7 @@ "@dnd-kit/sortable": "^10.0.0", "@dnd-kit/utilities": "^3.2.2", "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/row-pinning/package.json b/examples/react/row-pinning/package.json index f22e7b2690..d3dc554da9 100644 --- a/examples/react/row-pinning/package.json +++ b/examples/react/row-pinning/package.json @@ -12,7 +12,7 @@ "dependencies": { "@faker-js/faker": "^10.4.0", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/row-selection/package.json b/examples/react/row-selection/package.json index 6d325b164d..4c0e4cd9fc 100644 --- a/examples/react/row-selection/package.json +++ b/examples/react/row-selection/package.json @@ -14,8 +14,8 @@ "@tanstack/react-devtools": "^0.10.5", "@tanstack/react-pacer": "^0.22.1", "@tanstack/react-store": "^0.11.0", - "@tanstack/react-table": "^9.0.0-beta.11", - "@tanstack/react-table-devtools": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", + "@tanstack/react-table-devtools": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/sorting/package.json b/examples/react/sorting/package.json index 039fc25812..057e6a44d0 100644 --- a/examples/react/sorting/package.json +++ b/examples/react/sorting/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/sub-components/package.json b/examples/react/sub-components/package.json index 3ada496e4b..05dd182f19 100644 --- a/examples/react/sub-components/package.json +++ b/examples/react/sub-components/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/virtualized-columns-experimental/package.json b/examples/react/virtualized-columns-experimental/package.json index dc0db12561..8f6d93b74e 100644 --- a/examples/react/virtualized-columns-experimental/package.json +++ b/examples/react/virtualized-columns-experimental/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "@tanstack/react-virtual": "^3.14.2", "react": "^19.2.7", "react-dom": "^19.2.7" diff --git a/examples/react/virtualized-columns/package.json b/examples/react/virtualized-columns/package.json index 9a32b5e648..4ec25f4dc4 100644 --- a/examples/react/virtualized-columns/package.json +++ b/examples/react/virtualized-columns/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "@tanstack/react-virtual": "^3.14.2", "react": "^19.2.7", "react-dom": "^19.2.7" diff --git a/examples/react/virtualized-infinite-scrolling/package.json b/examples/react/virtualized-infinite-scrolling/package.json index 5f071256cc..1c3380dfc4 100644 --- a/examples/react/virtualized-infinite-scrolling/package.json +++ b/examples/react/virtualized-infinite-scrolling/package.json @@ -12,7 +12,7 @@ "dependencies": { "@faker-js/faker": "^10.4.0", "@tanstack/react-query": "^5.101.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "@tanstack/react-virtual": "^3.14.2", "react": "^19.2.7", "react-dom": "^19.2.7" diff --git a/examples/react/virtualized-rows-experimental/package.json b/examples/react/virtualized-rows-experimental/package.json index 20ef9fdbfb..3bb9cc3a74 100644 --- a/examples/react/virtualized-rows-experimental/package.json +++ b/examples/react/virtualized-rows-experimental/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "@tanstack/react-virtual": "^3.14.2", "react": "^19.2.7", "react-dom": "^19.2.7" diff --git a/examples/react/virtualized-rows/package.json b/examples/react/virtualized-rows/package.json index 8be8d3f726..4f95ac04a9 100644 --- a/examples/react/virtualized-rows/package.json +++ b/examples/react/virtualized-rows/package.json @@ -11,7 +11,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "@tanstack/react-virtual": "^3.14.2", "react": "^19.2.7", "react-dom": "^19.2.7" diff --git a/examples/react/with-tanstack-form/package.json b/examples/react/with-tanstack-form/package.json index 97c916a2ef..75c66281c4 100644 --- a/examples/react/with-tanstack-form/package.json +++ b/examples/react/with-tanstack-form/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@tanstack/react-form": "^1.33.0", "@tanstack/react-pacer": "^0.22.1", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7", "zod": "^4.4.3" diff --git a/examples/react/with-tanstack-query/package.json b/examples/react/with-tanstack-query/package.json index cf68b6b69c..9c5259666e 100644 --- a/examples/react/with-tanstack-query/package.json +++ b/examples/react/with-tanstack-query/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@tanstack/react-query": "^5.101.0", "@tanstack/react-store": "^0.11.0", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/with-tanstack-router/package.json b/examples/react/with-tanstack-router/package.json index eb175e1552..ad398551d9 100644 --- a/examples/react/with-tanstack-router/package.json +++ b/examples/react/with-tanstack-router/package.json @@ -13,7 +13,7 @@ "@tanstack/react-pacer": "^0.22.1", "@tanstack/react-query": "^5.101.0", "@tanstack/react-router": "^1.170.15", - "@tanstack/react-table": "^9.0.0-beta.11", + "@tanstack/react-table": "^9.0.0-beta.12", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/solid/basic-app-table/package.json b/examples/solid/basic-app-table/package.json index a3e9101909..d24c2781ce 100644 --- a/examples/solid/basic-app-table/package.json +++ b/examples/solid/basic-app-table/package.json @@ -17,8 +17,8 @@ "dependencies": { "@faker-js/faker": "^10.4.0", "@tanstack/solid-devtools": "^0.8.5", - "@tanstack/solid-table": "^9.0.0-beta.11", - "@tanstack/solid-table-devtools": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", + "@tanstack/solid-table-devtools": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/basic-external-atoms/package.json b/examples/solid/basic-external-atoms/package.json index 095c10dc5a..a46c4e0903 100644 --- a/examples/solid/basic-external-atoms/package.json +++ b/examples/solid/basic-external-atoms/package.json @@ -18,8 +18,8 @@ "dependencies": { "@tanstack/solid-devtools": "^0.8.5", "@tanstack/solid-store": "^0.11.0", - "@tanstack/solid-table": "^9.0.0-beta.11", - "@tanstack/solid-table-devtools": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", + "@tanstack/solid-table-devtools": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/basic-external-state/package.json b/examples/solid/basic-external-state/package.json index 8a46612d46..84fb047a2f 100644 --- a/examples/solid/basic-external-state/package.json +++ b/examples/solid/basic-external-state/package.json @@ -17,8 +17,8 @@ }, "dependencies": { "@tanstack/solid-devtools": "^0.8.5", - "@tanstack/solid-table": "^9.0.0-beta.11", - "@tanstack/solid-table-devtools": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", + "@tanstack/solid-table-devtools": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/basic-use-table/package.json b/examples/solid/basic-use-table/package.json index d0d8a1be8f..e87bff0991 100644 --- a/examples/solid/basic-use-table/package.json +++ b/examples/solid/basic-use-table/package.json @@ -16,8 +16,8 @@ }, "dependencies": { "@tanstack/solid-devtools": "^0.8.5", - "@tanstack/solid-table": "^9.0.0-beta.11", - "@tanstack/solid-table-devtools": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", + "@tanstack/solid-table-devtools": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-groups/package.json b/examples/solid/column-groups/package.json index 418ed974c1..455cb0edf2 100644 --- a/examples/solid/column-groups/package.json +++ b/examples/solid/column-groups/package.json @@ -16,7 +16,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-ordering/package.json b/examples/solid/column-ordering/package.json index ff757735ae..e7fc95d234 100644 --- a/examples/solid/column-ordering/package.json +++ b/examples/solid/column-ordering/package.json @@ -16,7 +16,7 @@ "vite-plugin-solid": "^2.11.12" }, "dependencies": { - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-pinning-split/package.json b/examples/solid/column-pinning-split/package.json index 555c8f45c8..f1ccc7d2e4 100644 --- a/examples/solid/column-pinning-split/package.json +++ b/examples/solid/column-pinning-split/package.json @@ -16,7 +16,7 @@ "vite-plugin-solid": "^2.11.12" }, "dependencies": { - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-pinning-sticky/package.json b/examples/solid/column-pinning-sticky/package.json index c3b686d324..8bc65e81d3 100644 --- a/examples/solid/column-pinning-sticky/package.json +++ b/examples/solid/column-pinning-sticky/package.json @@ -16,7 +16,7 @@ "vite-plugin-solid": "^2.11.12" }, "dependencies": { - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-pinning/package.json b/examples/solid/column-pinning/package.json index fca2b4f532..b363207d10 100644 --- a/examples/solid/column-pinning/package.json +++ b/examples/solid/column-pinning/package.json @@ -16,7 +16,7 @@ "vite-plugin-solid": "^2.11.12" }, "dependencies": { - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-resizing-performant/package.json b/examples/solid/column-resizing-performant/package.json index c8e59a5e8a..f76cd8377e 100644 --- a/examples/solid/column-resizing-performant/package.json +++ b/examples/solid/column-resizing-performant/package.json @@ -16,7 +16,7 @@ "vite-plugin-solid": "^2.11.12" }, "dependencies": { - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-resizing/package.json b/examples/solid/column-resizing/package.json index c4ab5a8f1e..232da4fde7 100644 --- a/examples/solid/column-resizing/package.json +++ b/examples/solid/column-resizing/package.json @@ -16,7 +16,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-sizing/package.json b/examples/solid/column-sizing/package.json index f812dc96cf..7059b4d115 100644 --- a/examples/solid/column-sizing/package.json +++ b/examples/solid/column-sizing/package.json @@ -16,7 +16,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-visibility/package.json b/examples/solid/column-visibility/package.json index e470a7b533..1427c7eb05 100644 --- a/examples/solid/column-visibility/package.json +++ b/examples/solid/column-visibility/package.json @@ -16,7 +16,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/composable-tables/package.json b/examples/solid/composable-tables/package.json index 0969a514fc..6b62b75363 100644 --- a/examples/solid/composable-tables/package.json +++ b/examples/solid/composable-tables/package.json @@ -16,8 +16,8 @@ }, "dependencies": { "@tanstack/solid-devtools": "^0.8.5", - "@tanstack/solid-table": "^9.0.0-beta.11", - "@tanstack/solid-table-devtools": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", + "@tanstack/solid-table-devtools": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/expanding/package.json b/examples/solid/expanding/package.json index eda4ac2308..00bb19bf02 100644 --- a/examples/solid/expanding/package.json +++ b/examples/solid/expanding/package.json @@ -16,7 +16,7 @@ "vite-plugin-solid": "^2.11.12" }, "dependencies": { - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/filters-faceted/package.json b/examples/solid/filters-faceted/package.json index ae9123834b..0eb02431e7 100644 --- a/examples/solid/filters-faceted/package.json +++ b/examples/solid/filters-faceted/package.json @@ -17,7 +17,7 @@ }, "dependencies": { "@tanstack/solid-pacer": "^0.21.1", - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/filters-fuzzy/package.json b/examples/solid/filters-fuzzy/package.json index 2cabde7ee3..b2a58f1138 100644 --- a/examples/solid/filters-fuzzy/package.json +++ b/examples/solid/filters-fuzzy/package.json @@ -18,7 +18,7 @@ "dependencies": { "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/solid-pacer": "^0.21.1", - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/filters/package.json b/examples/solid/filters/package.json index 2d12196e5c..6865fade35 100644 --- a/examples/solid/filters/package.json +++ b/examples/solid/filters/package.json @@ -17,7 +17,7 @@ }, "dependencies": { "@tanstack/solid-pacer": "^0.21.1", - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/grouping/package.json b/examples/solid/grouping/package.json index 353bd1cd04..94d6e5c698 100644 --- a/examples/solid/grouping/package.json +++ b/examples/solid/grouping/package.json @@ -16,7 +16,7 @@ "vite-plugin-solid": "^2.11.12" }, "dependencies": { - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/kitchen-sink/package.json b/examples/solid/kitchen-sink/package.json index 242762761f..e1c59b9a69 100644 --- a/examples/solid/kitchen-sink/package.json +++ b/examples/solid/kitchen-sink/package.json @@ -18,8 +18,8 @@ "dependencies": { "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/solid-devtools": "^0.8.5", - "@tanstack/solid-table": "^9.0.0-beta.11", - "@tanstack/solid-table-devtools": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", + "@tanstack/solid-table-devtools": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/pagination/package.json b/examples/solid/pagination/package.json index 4e8b81912a..4fe0782265 100644 --- a/examples/solid/pagination/package.json +++ b/examples/solid/pagination/package.json @@ -16,7 +16,7 @@ "vite-plugin-solid": "^2.11.12" }, "dependencies": { - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/row-pinning/package.json b/examples/solid/row-pinning/package.json index 90a7cc315f..05a1822e7b 100644 --- a/examples/solid/row-pinning/package.json +++ b/examples/solid/row-pinning/package.json @@ -16,7 +16,7 @@ "vite-plugin-solid": "^2.11.12" }, "dependencies": { - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/row-selection/package.json b/examples/solid/row-selection/package.json index 029234ff8b..ec961d980c 100644 --- a/examples/solid/row-selection/package.json +++ b/examples/solid/row-selection/package.json @@ -17,8 +17,8 @@ }, "dependencies": { "@tanstack/solid-devtools": "^0.8.5", - "@tanstack/solid-table": "^9.0.0-beta.11", - "@tanstack/solid-table-devtools": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", + "@tanstack/solid-table-devtools": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/sorting/package.json b/examples/solid/sorting/package.json index 93ae15acc0..688453a364 100644 --- a/examples/solid/sorting/package.json +++ b/examples/solid/sorting/package.json @@ -16,7 +16,7 @@ "vite-plugin-solid": "^2.11.12" }, "dependencies": { - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/sub-components/package.json b/examples/solid/sub-components/package.json index 5cc062796b..de36b0c190 100644 --- a/examples/solid/sub-components/package.json +++ b/examples/solid/sub-components/package.json @@ -16,7 +16,7 @@ "vite-plugin-solid": "^2.11.12" }, "dependencies": { - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/virtualized-columns/package.json b/examples/solid/virtualized-columns/package.json index 7219d7fe35..8bdb48900f 100644 --- a/examples/solid/virtualized-columns/package.json +++ b/examples/solid/virtualized-columns/package.json @@ -16,7 +16,7 @@ "vite-plugin-solid": "^2.11.12" }, "dependencies": { - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "@tanstack/solid-virtual": "^3.13.28", "solid-js": "^1.9.13" } diff --git a/examples/solid/virtualized-infinite-scrolling/package.json b/examples/solid/virtualized-infinite-scrolling/package.json index 0d424b99b6..e7213d4f21 100644 --- a/examples/solid/virtualized-infinite-scrolling/package.json +++ b/examples/solid/virtualized-infinite-scrolling/package.json @@ -18,7 +18,7 @@ "dependencies": { "@tanstack/solid-query": "^5.101.0", "@tanstack/solid-store": "^0.11.0", - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "@tanstack/solid-virtual": "^3.13.28", "solid-js": "^1.9.13" } diff --git a/examples/solid/virtualized-rows/package.json b/examples/solid/virtualized-rows/package.json index d8f7a2604e..cfbb5492b4 100644 --- a/examples/solid/virtualized-rows/package.json +++ b/examples/solid/virtualized-rows/package.json @@ -16,7 +16,7 @@ "vite-plugin-solid": "^2.11.12" }, "dependencies": { - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "@tanstack/solid-virtual": "^3.13.28", "solid-js": "^1.9.13" } diff --git a/examples/solid/with-tanstack-form/package.json b/examples/solid/with-tanstack-form/package.json index 87aaf47ea5..c57a70a006 100644 --- a/examples/solid/with-tanstack-form/package.json +++ b/examples/solid/with-tanstack-form/package.json @@ -17,7 +17,7 @@ }, "dependencies": { "@tanstack/solid-form": "^1.33.0", - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13", "zod": "^4.4.3" } diff --git a/examples/solid/with-tanstack-query/package.json b/examples/solid/with-tanstack-query/package.json index 6a96002697..0da3459162 100644 --- a/examples/solid/with-tanstack-query/package.json +++ b/examples/solid/with-tanstack-query/package.json @@ -18,7 +18,7 @@ "dependencies": { "@tanstack/solid-query": "^5.101.0", "@tanstack/solid-store": "^0.11.0", - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/solid/with-tanstack-router/package.json b/examples/solid/with-tanstack-router/package.json index 34786b28cc..586aa5c6ab 100644 --- a/examples/solid/with-tanstack-router/package.json +++ b/examples/solid/with-tanstack-router/package.json @@ -20,7 +20,7 @@ "@tanstack/solid-pacer": "^0.21.1", "@tanstack/solid-query": "^5.101.0", "@tanstack/solid-router": "^1.170.15", - "@tanstack/solid-table": "^9.0.0-beta.11", + "@tanstack/solid-table": "^9.0.0-beta.12", "solid-js": "^1.9.13" } } diff --git a/examples/svelte/basic-app-table/package.json b/examples/svelte/basic-app-table/package.json index 95ae596e15..a1bdfea428 100644 --- a/examples/svelte/basic-app-table/package.json +++ b/examples/svelte/basic-app-table/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/basic-create-table/package.json b/examples/svelte/basic-create-table/package.json index 3d3dc35658..3c58cd25ff 100644 --- a/examples/svelte/basic-create-table/package.json +++ b/examples/svelte/basic-create-table/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/basic-external-atoms/package.json b/examples/svelte/basic-external-atoms/package.json index 8036ac9861..4120cf6d2b 100644 --- a/examples/svelte/basic-external-atoms/package.json +++ b/examples/svelte/basic-external-atoms/package.json @@ -16,7 +16,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/basic-external-state/package.json b/examples/svelte/basic-external-state/package.json index b3f310fbb5..95e7cf3db7 100644 --- a/examples/svelte/basic-external-state/package.json +++ b/examples/svelte/basic-external-state/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/basic-snippets/package.json b/examples/svelte/basic-snippets/package.json index 145a5a2980..eccab7a6d1 100644 --- a/examples/svelte/basic-snippets/package.json +++ b/examples/svelte/basic-snippets/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/column-groups/package.json b/examples/svelte/column-groups/package.json index dacf35cb60..15b58f2f07 100644 --- a/examples/svelte/column-groups/package.json +++ b/examples/svelte/column-groups/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/column-ordering/package.json b/examples/svelte/column-ordering/package.json index 5e9a0e3164..aaa4673798 100644 --- a/examples/svelte/column-ordering/package.json +++ b/examples/svelte/column-ordering/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/column-pinning-split/package.json b/examples/svelte/column-pinning-split/package.json index 109d92d2f6..d9503d652a 100644 --- a/examples/svelte/column-pinning-split/package.json +++ b/examples/svelte/column-pinning-split/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/column-pinning-sticky/package.json b/examples/svelte/column-pinning-sticky/package.json index 0f1eea2be1..885e874220 100644 --- a/examples/svelte/column-pinning-sticky/package.json +++ b/examples/svelte/column-pinning-sticky/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/column-pinning/package.json b/examples/svelte/column-pinning/package.json index ef31d153c2..bcc896a7df 100644 --- a/examples/svelte/column-pinning/package.json +++ b/examples/svelte/column-pinning/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/column-resizing-performant/package.json b/examples/svelte/column-resizing-performant/package.json index 9a7f1c512e..ee711ac1b4 100644 --- a/examples/svelte/column-resizing-performant/package.json +++ b/examples/svelte/column-resizing-performant/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/column-resizing/package.json b/examples/svelte/column-resizing/package.json index d530ece37e..490940303b 100644 --- a/examples/svelte/column-resizing/package.json +++ b/examples/svelte/column-resizing/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/column-sizing/package.json b/examples/svelte/column-sizing/package.json index 409608659b..f4183ae6ac 100644 --- a/examples/svelte/column-sizing/package.json +++ b/examples/svelte/column-sizing/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/column-visibility/package.json b/examples/svelte/column-visibility/package.json index 419c2f3cc7..36c241174e 100644 --- a/examples/svelte/column-visibility/package.json +++ b/examples/svelte/column-visibility/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/composable-tables/package.json b/examples/svelte/composable-tables/package.json index 23851f6a9a..41885ef043 100644 --- a/examples/svelte/composable-tables/package.json +++ b/examples/svelte/composable-tables/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/expanding/package.json b/examples/svelte/expanding/package.json index ceba810155..736c5a6c43 100644 --- a/examples/svelte/expanding/package.json +++ b/examples/svelte/expanding/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/filtering/package.json b/examples/svelte/filtering/package.json index 210c6ff7f3..cc52ff0ab8 100644 --- a/examples/svelte/filtering/package.json +++ b/examples/svelte/filtering/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/filters-faceted/package.json b/examples/svelte/filters-faceted/package.json index f41f561856..04a1c61a2a 100644 --- a/examples/svelte/filters-faceted/package.json +++ b/examples/svelte/filters-faceted/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/filters-fuzzy/package.json b/examples/svelte/filters-fuzzy/package.json index 6aa58e4e9a..21827c3bb1 100644 --- a/examples/svelte/filters-fuzzy/package.json +++ b/examples/svelte/filters-fuzzy/package.json @@ -14,7 +14,7 @@ "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/grouping/package.json b/examples/svelte/grouping/package.json index 8e1c5b4261..1aee4727e9 100644 --- a/examples/svelte/grouping/package.json +++ b/examples/svelte/grouping/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/kitchen-sink/package.json b/examples/svelte/kitchen-sink/package.json index ecba7230f1..da3d9f4fe3 100644 --- a/examples/svelte/kitchen-sink/package.json +++ b/examples/svelte/kitchen-sink/package.json @@ -14,7 +14,7 @@ "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/pagination/package.json b/examples/svelte/pagination/package.json index ef84d84c52..35adaddacd 100644 --- a/examples/svelte/pagination/package.json +++ b/examples/svelte/pagination/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/row-pinning/package.json b/examples/svelte/row-pinning/package.json index b174595836..920556b7d9 100644 --- a/examples/svelte/row-pinning/package.json +++ b/examples/svelte/row-pinning/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/row-selection/package.json b/examples/svelte/row-selection/package.json index aa4ade7a53..c75ec4e695 100644 --- a/examples/svelte/row-selection/package.json +++ b/examples/svelte/row-selection/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/sorting/package.json b/examples/svelte/sorting/package.json index d4409fa258..853ef444ef 100644 --- a/examples/svelte/sorting/package.json +++ b/examples/svelte/sorting/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/sub-components/package.json b/examples/svelte/sub-components/package.json index af5bd57f66..4b621c3b98 100644 --- a/examples/svelte/sub-components/package.json +++ b/examples/svelte/sub-components/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", "svelte-check": "^4.6.0", diff --git a/examples/svelte/virtualized-columns/package.json b/examples/svelte/virtualized-columns/package.json index f40ff4f1de..96ffdc7c3d 100644 --- a/examples/svelte/virtualized-columns/package.json +++ b/examples/svelte/virtualized-columns/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tanstack/svelte-virtual": "^3.13.28", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", diff --git a/examples/svelte/virtualized-infinite-scrolling/package.json b/examples/svelte/virtualized-infinite-scrolling/package.json index 9dd221686a..df5fa5df7e 100644 --- a/examples/svelte/virtualized-infinite-scrolling/package.json +++ b/examples/svelte/virtualized-infinite-scrolling/package.json @@ -14,7 +14,7 @@ "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", "@tanstack/svelte-query": "^6.1.34", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tanstack/svelte-virtual": "^3.13.28", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", diff --git a/examples/svelte/virtualized-rows/package.json b/examples/svelte/virtualized-rows/package.json index 6d16b7ae25..188611f214 100644 --- a/examples/svelte/virtualized-rows/package.json +++ b/examples/svelte/virtualized-rows/package.json @@ -13,7 +13,7 @@ "@faker-js/faker": "^10.4.0", "@rollup/plugin-replace": "^6.0.3", "@sveltejs/vite-plugin-svelte": "^7.1.2", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "@tanstack/svelte-virtual": "^3.13.28", "@tsconfig/svelte": "^5.0.8", "svelte": "^5.56.2", diff --git a/examples/svelte/with-tanstack-form/package.json b/examples/svelte/with-tanstack-form/package.json index 4e4717ceb4..8b8a350c5f 100644 --- a/examples/svelte/with-tanstack-form/package.json +++ b/examples/svelte/with-tanstack-form/package.json @@ -22,7 +22,7 @@ "dependencies": { "@tanstack/form-core": "^1.33.0", "@tanstack/svelte-form": "^1.33.0", - "@tanstack/svelte-table": "^9.0.0-beta.11", + "@tanstack/svelte-table": "^9.0.0-beta.12", "zod": "^4.4.3" } } diff --git a/examples/svelte/with-tanstack-query/package.json b/examples/svelte/with-tanstack-query/package.json index 88d273e9d3..4708e96de2 100644 --- a/examples/svelte/with-tanstack-query/package.json +++ b/examples/svelte/with-tanstack-query/package.json @@ -21,6 +21,6 @@ }, "dependencies": { "@tanstack/svelte-query": "^6.1.34", - "@tanstack/svelte-table": "^9.0.0-beta.11" + "@tanstack/svelte-table": "^9.0.0-beta.12" } } diff --git a/examples/vanilla/basic/package.json b/examples/vanilla/basic/package.json index 681fae428d..24a8f539c2 100644 --- a/examples/vanilla/basic/package.json +++ b/examples/vanilla/basic/package.json @@ -15,6 +15,6 @@ "vite": "^8.0.16" }, "dependencies": { - "@tanstack/table-core": "^9.0.0-beta.11" + "@tanstack/table-core": "^9.0.0-beta.12" } } diff --git a/examples/vanilla/pagination/package.json b/examples/vanilla/pagination/package.json index 09361179c3..44689445f2 100644 --- a/examples/vanilla/pagination/package.json +++ b/examples/vanilla/pagination/package.json @@ -15,6 +15,6 @@ "vite": "^8.0.16" }, "dependencies": { - "@tanstack/table-core": "^9.0.0-beta.11" + "@tanstack/table-core": "^9.0.0-beta.12" } } diff --git a/examples/vanilla/sorting/package.json b/examples/vanilla/sorting/package.json index c514d2266e..dfa0889590 100644 --- a/examples/vanilla/sorting/package.json +++ b/examples/vanilla/sorting/package.json @@ -15,6 +15,6 @@ "vite": "^8.0.16" }, "dependencies": { - "@tanstack/table-core": "^9.0.0-beta.11" + "@tanstack/table-core": "^9.0.0-beta.12" } } diff --git a/examples/vue/basic-external-atoms/package.json b/examples/vue/basic-external-atoms/package.json index a8aaf45301..6853ccc27e 100644 --- a/examples/vue/basic-external-atoms/package.json +++ b/examples/vue/basic-external-atoms/package.json @@ -12,8 +12,8 @@ "@faker-js/faker": "^10.4.0", "@tanstack/vue-devtools": "^0.2.19", "@tanstack/vue-store": "^0.11.0", - "@tanstack/vue-table": "^9.0.0-beta.11", - "@tanstack/vue-table-devtools": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", + "@tanstack/vue-table-devtools": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/basic-external-state/package.json b/examples/vue/basic-external-state/package.json index 25b31f3191..9cc30afa6b 100644 --- a/examples/vue/basic-external-state/package.json +++ b/examples/vue/basic-external-state/package.json @@ -11,8 +11,8 @@ "dependencies": { "@faker-js/faker": "^10.4.0", "@tanstack/vue-devtools": "^0.2.19", - "@tanstack/vue-table": "^9.0.0-beta.11", - "@tanstack/vue-table-devtools": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", + "@tanstack/vue-table-devtools": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/basic-use-app-table/package.json b/examples/vue/basic-use-app-table/package.json index af8c67aeac..fc89543bb5 100644 --- a/examples/vue/basic-use-app-table/package.json +++ b/examples/vue/basic-use-app-table/package.json @@ -10,8 +10,8 @@ }, "dependencies": { "@tanstack/vue-devtools": "^0.2.19", - "@tanstack/vue-table": "^9.0.0-beta.11", - "@tanstack/vue-table-devtools": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", + "@tanstack/vue-table-devtools": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/basic-use-table/package.json b/examples/vue/basic-use-table/package.json index b5a3d6155f..e42d67177c 100644 --- a/examples/vue/basic-use-table/package.json +++ b/examples/vue/basic-use-table/package.json @@ -10,8 +10,8 @@ }, "dependencies": { "@tanstack/vue-devtools": "^0.2.19", - "@tanstack/vue-table": "^9.0.0-beta.11", - "@tanstack/vue-table-devtools": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", + "@tanstack/vue-table-devtools": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-groups/package.json b/examples/vue/column-groups/package.json index ba47d4e9a6..5f9ea0307d 100644 --- a/examples/vue/column-groups/package.json +++ b/examples/vue/column-groups/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-ordering/package.json b/examples/vue/column-ordering/package.json index 2fa1a0feb8..947c6ea183 100644 --- a/examples/vue/column-ordering/package.json +++ b/examples/vue/column-ordering/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-pinning-split/package.json b/examples/vue/column-pinning-split/package.json index 144587c305..13cdf0a938 100644 --- a/examples/vue/column-pinning-split/package.json +++ b/examples/vue/column-pinning-split/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-pinning-sticky/package.json b/examples/vue/column-pinning-sticky/package.json index 2f730511cb..a5dad0c8a4 100644 --- a/examples/vue/column-pinning-sticky/package.json +++ b/examples/vue/column-pinning-sticky/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-pinning/package.json b/examples/vue/column-pinning/package.json index c17c8e3474..d25ec84e2c 100644 --- a/examples/vue/column-pinning/package.json +++ b/examples/vue/column-pinning/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-resizing-performant/package.json b/examples/vue/column-resizing-performant/package.json index 71a37e7561..b7507f956b 100644 --- a/examples/vue/column-resizing-performant/package.json +++ b/examples/vue/column-resizing-performant/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-resizing/package.json b/examples/vue/column-resizing/package.json index ee20c68f8b..fe129518a8 100644 --- a/examples/vue/column-resizing/package.json +++ b/examples/vue/column-resizing/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-sizing/package.json b/examples/vue/column-sizing/package.json index f1fddd4255..4363c1cd0d 100644 --- a/examples/vue/column-sizing/package.json +++ b/examples/vue/column-sizing/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-visibility/package.json b/examples/vue/column-visibility/package.json index 8948597f05..49325a0a3b 100644 --- a/examples/vue/column-visibility/package.json +++ b/examples/vue/column-visibility/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/composable-tables/package.json b/examples/vue/composable-tables/package.json index 3bde30867b..62603048c8 100644 --- a/examples/vue/composable-tables/package.json +++ b/examples/vue/composable-tables/package.json @@ -11,8 +11,8 @@ "dependencies": { "@tanstack/vue-devtools": "^0.2.19", "@tanstack/vue-store": "^0.11.0", - "@tanstack/vue-table": "^9.0.0-beta.11", - "@tanstack/vue-table-devtools": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", + "@tanstack/vue-table-devtools": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/expanding/package.json b/examples/vue/expanding/package.json index 6b162ff7ec..fe8b9a72ed 100644 --- a/examples/vue/expanding/package.json +++ b/examples/vue/expanding/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/filters-faceted/package.json b/examples/vue/filters-faceted/package.json index 03a05cc9e6..405aa49464 100644 --- a/examples/vue/filters-faceted/package.json +++ b/examples/vue/filters-faceted/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/filters-fuzzy/package.json b/examples/vue/filters-fuzzy/package.json index d638868ea0..8c28bd0b13 100644 --- a/examples/vue/filters-fuzzy/package.json +++ b/examples/vue/filters-fuzzy/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/filters/package.json b/examples/vue/filters/package.json index 8c79480cf7..887d2cad6c 100644 --- a/examples/vue/filters/package.json +++ b/examples/vue/filters/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/grouping/package.json b/examples/vue/grouping/package.json index 3b7d57c7c2..ccfac7ce78 100644 --- a/examples/vue/grouping/package.json +++ b/examples/vue/grouping/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/kitchen-sink/package.json b/examples/vue/kitchen-sink/package.json index 9248a6e7a4..4444fa9841 100644 --- a/examples/vue/kitchen-sink/package.json +++ b/examples/vue/kitchen-sink/package.json @@ -12,8 +12,8 @@ "@faker-js/faker": "^10.4.0", "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/vue-devtools": "^0.2.19", - "@tanstack/vue-table": "^9.0.0-beta.11", - "@tanstack/vue-table-devtools": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", + "@tanstack/vue-table-devtools": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/pagination/package.json b/examples/vue/pagination/package.json index 440cf5d226..31430fd04f 100644 --- a/examples/vue/pagination/package.json +++ b/examples/vue/pagination/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/row-pinning/package.json b/examples/vue/row-pinning/package.json index a2b90ddaa7..0e5485f89f 100644 --- a/examples/vue/row-pinning/package.json +++ b/examples/vue/row-pinning/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/row-selection/package.json b/examples/vue/row-selection/package.json index 8c8d05aa99..bb04a58c16 100644 --- a/examples/vue/row-selection/package.json +++ b/examples/vue/row-selection/package.json @@ -11,8 +11,8 @@ "dependencies": { "@faker-js/faker": "^10.4.0", "@tanstack/vue-devtools": "^0.2.19", - "@tanstack/vue-table": "^9.0.0-beta.11", - "@tanstack/vue-table-devtools": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", + "@tanstack/vue-table-devtools": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/sorting/package.json b/examples/vue/sorting/package.json index 93dcca2044..d7b91d531e 100644 --- a/examples/vue/sorting/package.json +++ b/examples/vue/sorting/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/sub-components/package.json b/examples/vue/sub-components/package.json index f95e71cc4a..879c1153b2 100644 --- a/examples/vue/sub-components/package.json +++ b/examples/vue/sub-components/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/virtualized-columns/package.json b/examples/vue/virtualized-columns/package.json index ba82014d55..f38b7c56a8 100644 --- a/examples/vue/virtualized-columns/package.json +++ b/examples/vue/virtualized-columns/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "@tanstack/vue-virtual": "^3.13.28", "vue": "^3.5.35" }, diff --git a/examples/vue/virtualized-infinite-scrolling/package.json b/examples/vue/virtualized-infinite-scrolling/package.json index f7a23dd38a..70866d9c19 100644 --- a/examples/vue/virtualized-infinite-scrolling/package.json +++ b/examples/vue/virtualized-infinite-scrolling/package.json @@ -13,7 +13,7 @@ "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/vue-query": "^5.101.0", "@tanstack/vue-store": "^0.11.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "@tanstack/vue-virtual": "^3.13.28", "vue": "^3.5.35" }, diff --git a/examples/vue/virtualized-rows/package.json b/examples/vue/virtualized-rows/package.json index da7ef495a8..c41c027aca 100644 --- a/examples/vue/virtualized-rows/package.json +++ b/examples/vue/virtualized-rows/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@faker-js/faker": "^10.4.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "@tanstack/vue-virtual": "^3.13.28", "vue": "^3.5.35" }, diff --git a/examples/vue/with-tanstack-form/package.json b/examples/vue/with-tanstack-form/package.json index ce82cb8172..56c2715e9f 100644 --- a/examples/vue/with-tanstack-form/package.json +++ b/examples/vue/with-tanstack-form/package.json @@ -11,7 +11,7 @@ "dependencies": { "@faker-js/faker": "^10.4.0", "@tanstack/vue-form": "^1.33.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35", "zod": "^4.4.3" }, diff --git a/examples/vue/with-tanstack-query/package.json b/examples/vue/with-tanstack-query/package.json index f3b2f8052c..c6f5e7d51a 100644 --- a/examples/vue/with-tanstack-query/package.json +++ b/examples/vue/with-tanstack-query/package.json @@ -13,7 +13,7 @@ "@tanstack/match-sorter-utils": "^9.0.0-beta.0", "@tanstack/vue-query": "^5.101.0", "@tanstack/vue-store": "^0.11.0", - "@tanstack/vue-table": "^9.0.0-beta.11", + "@tanstack/vue-table": "^9.0.0-beta.12", "vue": "^3.5.35" }, "devDependencies": { diff --git a/packages/angular-table-devtools/package.json b/packages/angular-table-devtools/package.json index d55dfb08ae..c1307931ea 100644 --- a/packages/angular-table-devtools/package.json +++ b/packages/angular-table-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/angular-table-devtools", - "version": "9.0.0-beta.11", + "version": "9.0.0-beta.12", "description": "Angular devtools for TanStack Table.", "license": "MIT", "repository": { diff --git a/packages/angular-table/package.json b/packages/angular-table/package.json index 995e6354d0..91cecd58c0 100644 --- a/packages/angular-table/package.json +++ b/packages/angular-table/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/angular-table", - "version": "9.0.0-beta.11", + "version": "9.0.0-beta.12", "description": "Headless UI for building powerful tables & datagrids for Angular.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/lit-table/package.json b/packages/lit-table/package.json index aebd86f967..ee67822d21 100644 --- a/packages/lit-table/package.json +++ b/packages/lit-table/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/lit-table", - "version": "9.0.0-beta.11", + "version": "9.0.0-beta.12", "description": "Headless UI for building powerful tables & datagrids for Lit.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/preact-table-devtools/package.json b/packages/preact-table-devtools/package.json index 991739b571..a1c22a4511 100644 --- a/packages/preact-table-devtools/package.json +++ b/packages/preact-table-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/preact-table-devtools", - "version": "9.0.0-beta.11", + "version": "9.0.0-beta.12", "description": "Preact devtools for TanStack Table.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/preact-table/package.json b/packages/preact-table/package.json index 2570d53ebc..de517f8c2f 100644 --- a/packages/preact-table/package.json +++ b/packages/preact-table/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/preact-table", - "version": "9.0.0-beta.11", + "version": "9.0.0-beta.12", "description": "Headless UI for building powerful tables & datagrids for Preact.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/react-table-devtools/package.json b/packages/react-table-devtools/package.json index 55e10582ec..a6a3c26c2c 100644 --- a/packages/react-table-devtools/package.json +++ b/packages/react-table-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-table-devtools", - "version": "9.0.0-beta.11", + "version": "9.0.0-beta.12", "description": "React devtools for TanStack Table.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/react-table/package.json b/packages/react-table/package.json index 5609139bd4..3f59aab9fb 100644 --- a/packages/react-table/package.json +++ b/packages/react-table/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-table", - "version": "9.0.0-beta.11", + "version": "9.0.0-beta.12", "description": "Headless UI for building powerful tables & datagrids for React.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/solid-table-devtools/package.json b/packages/solid-table-devtools/package.json index 90228c3ff0..f142a72fad 100644 --- a/packages/solid-table-devtools/package.json +++ b/packages/solid-table-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-table-devtools", - "version": "9.0.0-beta.11", + "version": "9.0.0-beta.12", "description": "Solid devtools for TanStack Table.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/solid-table/package.json b/packages/solid-table/package.json index e6b2096f54..ac05dd54f7 100644 --- a/packages/solid-table/package.json +++ b/packages/solid-table/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-table", - "version": "9.0.0-beta.11", + "version": "9.0.0-beta.12", "description": "Headless UI for building powerful tables & datagrids for Solid.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/svelte-table/package.json b/packages/svelte-table/package.json index e61dce023a..0a1203e407 100644 --- a/packages/svelte-table/package.json +++ b/packages/svelte-table/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/svelte-table", - "version": "9.0.0-beta.11", + "version": "9.0.0-beta.12", "description": "Headless UI for building powerful tables & datagrids for Svelte.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/table-core/package.json b/packages/table-core/package.json index 30846abb23..77fae4de54 100644 --- a/packages/table-core/package.json +++ b/packages/table-core/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/table-core", - "version": "9.0.0-beta.11", + "version": "9.0.0-beta.12", "description": "Headless UI for building powerful tables & datagrids for TS/JS.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/table-devtools/package.json b/packages/table-devtools/package.json index a2d10420e7..ad95dc33db 100644 --- a/packages/table-devtools/package.json +++ b/packages/table-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/table-devtools", - "version": "9.0.0-beta.11", + "version": "9.0.0-beta.12", "description": "Devtools for TanStack Table.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/vue-table-devtools/package.json b/packages/vue-table-devtools/package.json index 52e39ba841..83af0d3ae6 100644 --- a/packages/vue-table-devtools/package.json +++ b/packages/vue-table-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/vue-table-devtools", - "version": "9.0.0-beta.11", + "version": "9.0.0-beta.12", "description": "Vue devtools for TanStack Table.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/vue-table/package.json b/packages/vue-table/package.json index 381e09aa81..3689b556b1 100644 --- a/packages/vue-table/package.json +++ b/packages/vue-table/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/vue-table", - "version": "9.0.0-beta.11", + "version": "9.0.0-beta.12", "description": "Headless UI for building powerful tables & datagrids for Vue.", "author": "Tanner Linsley", "license": "MIT",