From 370fdf3d6214b936e6264ab6dccfea80d87989b0 Mon Sep 17 00:00:00 2001 From: Kevin Van Cott Date: Thu, 18 Jun 2026 10:08:29 -0500 Subject: [PATCH 1/2] fix: exp post build script to strip Table_Internal (#6326) * fix: post build script to strip Table_Internal * harden script --- packages/table-core/package.json | 2 +- .../core/headers/coreHeadersFeature.types.ts | 4 +- packages/table-core/src/types/Column.ts | 4 +- scripts/rewrite-table-core-dts.mjs | 191 ++++++++++++++++++ 4 files changed, 197 insertions(+), 4 deletions(-) create mode 100644 scripts/rewrite-table-core-dts.mjs diff --git a/packages/table-core/package.json b/packages/table-core/package.json index 1fac6d65d7..91a29f0b38 100644 --- a/packages/table-core/package.json +++ b/packages/table-core/package.json @@ -70,7 +70,7 @@ "test:lib:dev": "pnpm test:lib --watch", "test:types": "tsc && tsc -p tests/tsconfig.declaration-emit.json", "test:build": "publint --strict", - "build": "tsdown" + "build": "tsdown && node ../../scripts/rewrite-table-core-dts.mjs" }, "dependencies": { "@tanstack/store": "^0.11.0" diff --git a/packages/table-core/src/core/headers/coreHeadersFeature.types.ts b/packages/table-core/src/core/headers/coreHeadersFeature.types.ts index d1d9acf69d..ee683d3c7c 100644 --- a/packages/table-core/src/core/headers/coreHeadersFeature.types.ts +++ b/packages/table-core/src/core/headers/coreHeadersFeature.types.ts @@ -1,6 +1,6 @@ import type { CellData, RowData } from '../../types/type-utils' import type { TableFeatures } from '../../types/TableFeatures' -import type { Table } from '../../types/Table' +import type { Table, Table_Internal } from '../../types/Table' import type { Header } from '../../types/Header' import type { HeaderGroup } from '../../types/HeaderGroup' import type { Column } from '../../types/Column' @@ -96,7 +96,7 @@ export interface Header_CoreProperties< /** * Reference to the parent table instance. */ - table: Table + table: Table_Internal } export interface Header_Header< diff --git a/packages/table-core/src/types/Column.ts b/packages/table-core/src/types/Column.ts index 59d12ad91d..28b5866609 100644 --- a/packages/table-core/src/types/Column.ts +++ b/packages/table-core/src/types/Column.ts @@ -1,3 +1,4 @@ +import type { Table_Internal } from './Table' import type { Column_RowSorting } from '../features/row-sorting/rowSortingFeature.types' import type { Column_ColumnFaceting } from '../features/column-faceting/columnFacetingFeature.types' import type { Column_ColumnFiltering } from '../features/column-filtering/columnFilteringFeature.types' @@ -46,6 +47,7 @@ export interface Column_Internal< in out TFeatures extends TableFeatures, in out TData extends RowData, TValue = unknown, -> extends Omit, 'columnDef'> { +> extends Omit, 'columnDef' | 'table'> { columnDef: ColumnDefBase_All + table: Table_Internal } diff --git a/scripts/rewrite-table-core-dts.mjs b/scripts/rewrite-table-core-dts.mjs new file mode 100644 index 0000000000..551268ab64 --- /dev/null +++ b/scripts/rewrite-table-core-dts.mjs @@ -0,0 +1,191 @@ +import { readdirSync, readFileSync, statSync, writeFileSync } from 'node:fs' +import { join } from 'node:path' +import { fileURLToPath } from 'node:url' + +const packageRoot = fileURLToPath( + new URL('../packages/table-core/', import.meta.url), +) +const distDir = join(packageRoot, 'dist') +const forbiddenTypeNames = ['Table_Internal', 'Column_Internal'] + +function walkDeclarationFiles(dir) { + const files = [] + + for (const entry of readdirSync(dir)) { + const path = join(dir, entry) + const stat = statSync(path) + + if (stat.isDirectory()) { + files.push(...walkDeclarationFiles(path)) + continue + } + + if (path.endsWith('.d.ts') || path.endsWith('.d.cts')) { + files.push(path) + } + } + + return files +} + +function removeExportedInterface(source, interfaceName) { + let start = source.indexOf(`export interface ${interfaceName}`) + + if (start === -1) { + start = source.indexOf(`interface ${interfaceName}`) + } + + if (start === -1) { + return source + } + + const bodyStart = source.indexOf('{', start) + + if (bodyStart === -1) { + throw new Error(`Could not find body for ${interfaceName}`) + } + + let depth = 0 + + for (let i = bodyStart; i < source.length; i++) { + const char = source[i] + + if (char === '{') { + depth++ + } else if (char === '}') { + depth-- + + if (depth === 0) { + let end = i + 1 + + while (source[end] === '\n' || source[end] === '\r') { + end++ + } + + return source.slice(0, start) + source.slice(end) + } + } + } + + throw new Error(`Could not find end of ${interfaceName}`) +} + +function removeTypeAlias(source, typeName) { + const aliasPattern = new RegExp( + String.raw`\b(?:export\s+)?type\s+${typeName}\b`, + ) + const match = aliasPattern.exec(source) + + if (!match) { + return source + } + + const start = match.index + const end = source.indexOf(';', start) + + if (end === -1) { + throw new Error(`Could not find end of ${typeName}`) + } + + return source.slice(0, start) + source.slice(end + 1) +} + +function getSpecifierName(specifier) { + return specifier + .replace(/^type\s+/, '') + .split(/\s+as\s+/)[0] + ?.trim() +} + +function removeNamedSpecifiers(source, names) { + return source + .replace( + /\b(import|export)(\s+type)?\s+\{([^}]+)\}\s+from\s+([^;\n]+);/g, + (statement, kind, typeKeyword = '', specifiers, fromClause) => { + const nextSpecifiers = specifiers + .split(',') + .map((specifier) => specifier.trim()) + .filter(Boolean) + .filter((specifier) => { + const importedName = getSpecifierName(specifier) + return importedName && !names.includes(importedName) + }) + + if (!nextSpecifiers.length) { + return '' + } + + return `${kind}${typeKeyword} { ${nextSpecifiers.join( + ', ', + )} } from ${fromClause};` + }, + ) + .replace( + /\bexport(\s+type)?\s+\{([^}]+)\};/g, + (statement, typeKeyword = '', specifiers) => { + const nextSpecifiers = specifiers + .split(',') + .map((specifier) => specifier.trim()) + .filter(Boolean) + .filter((specifier) => { + const exportedName = getSpecifierName(specifier) + return exportedName && !names.includes(exportedName) + }) + + if (!nextSpecifiers.length) { + return '' + } + + return `export${typeKeyword} { ${nextSpecifiers.join(', ')} };` + }, + ) +} + +function rewriteDeclaration(source) { + let next = source + + for (const typeName of forbiddenTypeNames) { + next = removeExportedInterface(next, typeName) + } + + next = removeTypeAlias(next, 'Table_InternalBroadenedKeys') + next = removeNamedSpecifiers(next, forbiddenTypeNames) + + next = next.replaceAll('Table_Internal<', 'Table<') + next = next.replaceAll('Column_Internal<', 'Column<') + next = next.replaceAll('Table_Internal', 'Table') + next = next.replaceAll('Column_Internal', 'Column') + + return next +} + +const files = walkDeclarationFiles(distDir) + +for (const file of files) { + const source = readFileSync(file, 'utf8') + const next = rewriteDeclaration(source) + + if (next !== source) { + writeFileSync(file, next) + } +} + +const leaks = [] + +for (const file of files) { + const source = readFileSync(file, 'utf8') + + for (const typeName of forbiddenTypeNames) { + if (source.includes(typeName)) { + leaks.push(`${file}: ${typeName}`) + } + } +} + +if (leaks.length) { + throw new Error( + `Internal table-core types leaked into emitted declarations:\n${leaks.join( + '\n', + )}`, + ) +} From ed814260e0a863861f8387087e72feef1b75cd37 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 18 Jun 2026 10:12:36 -0500 Subject: [PATCH 2/2] release: version packages (#6336) release: v9.0.0-beta.16 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 5778cd7f3e..ea6236a5bb 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.15", - "@tanstack/angular-table-devtools": "^9.0.0-beta.15", + "@tanstack/angular-table": "^9.0.0-beta.16", + "@tanstack/angular-table-devtools": "^9.0.0-beta.16", "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 419820c9d4..4ee787bced 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.15", - "@tanstack/angular-table-devtools": "^9.0.0-beta.15", + "@tanstack/angular-table": "^9.0.0-beta.16", + "@tanstack/angular-table-devtools": "^9.0.0-beta.16", "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 cd56d3291a..8a0dadc567 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.15", - "@tanstack/angular-table-devtools": "^9.0.0-beta.15", + "@tanstack/angular-table": "^9.0.0-beta.16", + "@tanstack/angular-table-devtools": "^9.0.0-beta.16", "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 a0fd6d1b37..74bb89670f 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.15", - "@tanstack/angular-table-devtools": "^9.0.0-beta.15", + "@tanstack/angular-table": "^9.0.0-beta.16", + "@tanstack/angular-table-devtools": "^9.0.0-beta.16", "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 bdc12b0852..77cdc85f18 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 4cd3ae1162..961b48f507 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 95477d4d80..0802374e1a 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 589a5cf08b..5d9a1d4217 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 0cec35f8a2..5eee4a4c3b 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 029c12f05b..ab6afa6c2a 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 abfde22914..bf01fe3d3a 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 aa44346357..a5927c053c 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 2fbbd96167..27d10466b0 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 730c59c945..879a90a432 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.15", - "@tanstack/angular-table-devtools": "^9.0.0-beta.15", + "@tanstack/angular-table": "^9.0.0-beta.16", + "@tanstack/angular-table-devtools": "^9.0.0-beta.16", "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 50c62db2e3..cd5b5dcf89 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/editable/package.json b/examples/angular/editable/package.json index c92f42bd7f..333f390318 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/expanding/package.json b/examples/angular/expanding/package.json index 2c59c7fe4e..2206178989 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 ac39e9aed0..b80345c990 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 9e37afad25..97f064af32 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "@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 eb665627a7..c8af6bec91 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/grouping/package.json b/examples/angular/grouping/package.json index 66bb72a6f4..a778e4734d 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 0692cfaf5c..b1d916dee6 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.15", - "@tanstack/angular-table-devtools": "^9.0.0-beta.15", + "@tanstack/angular-table": "^9.0.0-beta.16", + "@tanstack/angular-table-devtools": "^9.0.0-beta.16", "@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 f0f771d0a8..f90dfd2ca4 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 5bd2d57f3e..2d50a84ca5 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 82f6e01cc5..2fbdf0ba72 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 6ba4442da8..0aed7de1c6 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 10f3b94488..4e607527c4 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.15", - "@tanstack/angular-table-devtools": "^9.0.0-beta.15", + "@tanstack/angular-table": "^9.0.0-beta.16", + "@tanstack/angular-table-devtools": "^9.0.0-beta.16", "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 2e80a8df45..6f33adee76 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.15", - "@tanstack/angular-table-devtools": "^9.0.0-beta.15", + "@tanstack/angular-table": "^9.0.0-beta.16", + "@tanstack/angular-table-devtools": "^9.0.0-beta.16", "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 7df4aa63a3..f5cc392d79 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "rxjs": "~7.8.2", "tslib": "^2.8.1" }, diff --git a/examples/angular/sorting/package.json b/examples/angular/sorting/package.json index ff6a327826..2139a74f5b 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 a7a592d357..4c7303aadc 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 d8973072f3..5a98e2c901 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "@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 9526e52be2..c59834c463 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "@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 a0436021e9..00664c8cf1 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "@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 3add822845..379c15b490 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 61b5c9ea15..434ad26f50 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.15", + "@tanstack/angular-table": "^9.0.0-beta.16", "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 3b883b6b18..6e48b324cd 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/basic-external-atoms/package.json b/examples/lit/basic-external-atoms/package.json index f9d32aeac4..3c278f42a7 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "@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 090ad237d1..569da261ad 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/basic-table-controller/package.json b/examples/lit/basic-table-controller/package.json index 964700cd87..5309fae020 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-groups/package.json b/examples/lit/column-groups/package.json index de4b506b6b..ca5d42a433 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-ordering/package.json b/examples/lit/column-ordering/package.json index 52a6249aa2..2224f5af4f 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-pinning-split/package.json b/examples/lit/column-pinning-split/package.json index 73fdf553b4..7e86461496 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-pinning-sticky/package.json b/examples/lit/column-pinning-sticky/package.json index a80dad168d..02890a49dd 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-pinning/package.json b/examples/lit/column-pinning/package.json index e2a221d464..299696f801 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-resizing-performant/package.json b/examples/lit/column-resizing-performant/package.json index 55ea1aa1df..b058afdbdb 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-resizing/package.json b/examples/lit/column-resizing/package.json index 1cd59d412c..3b27c9ecfe 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-sizing/package.json b/examples/lit/column-sizing/package.json index 3e88618b51..dd41f80782 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/column-visibility/package.json b/examples/lit/column-visibility/package.json index c970309361..a8b2717bf4 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/composable-tables/package.json b/examples/lit/composable-tables/package.json index 9c3412b02e..1dedb64768 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/expanding/package.json b/examples/lit/expanding/package.json index cc181da289..1ef3a982af 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/filters-faceted/package.json b/examples/lit/filters-faceted/package.json index 13a9f4adbe..6ab80a6205 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/filters-fuzzy/package.json b/examples/lit/filters-fuzzy/package.json index 0d33504cfc..23cd86019c 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "@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 680db7d6b4..9a5843f443 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/grouping/package.json b/examples/lit/grouping/package.json index 3db541867b..5cf347dd34 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/kitchen-sink/package.json b/examples/lit/kitchen-sink/package.json index f81be96e0e..3904483f18 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "@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 fa44975caa..204485c76d 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/row-pinning/package.json b/examples/lit/row-pinning/package.json index cdbabd4ca8..47e9280fd6 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/row-selection/package.json b/examples/lit/row-selection/package.json index b6d0dd5082..309fe817a8 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/sorting-dynamic-data/package.json b/examples/lit/sorting-dynamic-data/package.json index 4ba91f2b09..44b79482b5 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/sorting/package.json b/examples/lit/sorting/package.json index e10b9c76c1..958e63273c 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/sub-components/package.json b/examples/lit/sub-components/package.json index a0310cf031..ddaa3305a2 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "lit": "^3.3.3" }, "devDependencies": { diff --git a/examples/lit/virtualized-columns/package.json b/examples/lit/virtualized-columns/package.json index 5ff44e41db..27a1766ae4 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "@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 60370d366b..890d8e0f56 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "@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 ccf63b6fe8..0eadfd7b9c 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.15", + "@tanstack/lit-table": "^9.0.0-beta.16", "@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 97b7d73bbd..f45399da39 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.15", - "@tanstack/preact-table-devtools": "^9.0.0-beta.15", + "@tanstack/preact-table": "^9.0.0-beta.16", + "@tanstack/preact-table-devtools": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/basic-external-state/package.json b/examples/preact/basic-external-state/package.json index 468e985087..f7583309b4 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.15", - "@tanstack/preact-table-devtools": "^9.0.0-beta.15", + "@tanstack/preact-table": "^9.0.0-beta.16", + "@tanstack/preact-table-devtools": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/basic-subscribe/package.json b/examples/preact/basic-subscribe/package.json index 6716463eab..0a1780bf0b 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.15", - "@tanstack/preact-table-devtools": "^9.0.0-beta.15", + "@tanstack/preact-table": "^9.0.0-beta.16", + "@tanstack/preact-table-devtools": "^9.0.0-beta.16", "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 540d68ea4e..7a2dc726b4 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.15", - "@tanstack/preact-table-devtools": "^9.0.0-beta.15", + "@tanstack/preact-table": "^9.0.0-beta.16", + "@tanstack/preact-table-devtools": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/basic-use-table/package.json b/examples/preact/basic-use-table/package.json index 8c56fd11e1..3b86501076 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.15", - "@tanstack/preact-table-devtools": "^9.0.0-beta.15", + "@tanstack/preact-table": "^9.0.0-beta.16", + "@tanstack/preact-table-devtools": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-groups/package.json b/examples/preact/column-groups/package.json index 7ecb064d94..dd7aa428b5 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-ordering/package.json b/examples/preact/column-ordering/package.json index b30456c8f3..867bfec689 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-pinning-split/package.json b/examples/preact/column-pinning-split/package.json index 65f876cbe0..f57a51bcc8 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-pinning-sticky/package.json b/examples/preact/column-pinning-sticky/package.json index d08152a2f9..0135e48871 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-pinning/package.json b/examples/preact/column-pinning/package.json index 56b65da8b4..496cfcaaa3 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-resizing-performant/package.json b/examples/preact/column-resizing-performant/package.json index f0b27c9953..64f82a4cb1 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-resizing/package.json b/examples/preact/column-resizing/package.json index 9645a21b07..50d941edd5 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-sizing/package.json b/examples/preact/column-sizing/package.json index e3ce276b70..e154b948e4 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/column-visibility/package.json b/examples/preact/column-visibility/package.json index 7f2f9475f4..0d930b782c 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/composable-tables/package.json b/examples/preact/composable-tables/package.json index 0b30a01bf0..c553bee82d 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.15", - "@tanstack/preact-table-devtools": "^9.0.0-beta.15", + "@tanstack/preact-table": "^9.0.0-beta.16", + "@tanstack/preact-table-devtools": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/custom-plugin/package.json b/examples/preact/custom-plugin/package.json index 49a4eba33c..788475c268 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/expanding/package.json b/examples/preact/expanding/package.json index c527b0329c..aa5c3f4490 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/filters-faceted/package.json b/examples/preact/filters-faceted/package.json index 8fc7324a77..59cfd3de01 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/filters-fuzzy/package.json b/examples/preact/filters-fuzzy/package.json index e29ad0a04a..f6371232a5 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/filters/package.json b/examples/preact/filters/package.json index e8510e0724..3037666435 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/grouping/package.json b/examples/preact/grouping/package.json index ed6825b316..6683a07102 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/kitchen-sink/package.json b/examples/preact/kitchen-sink/package.json index 8c3459b097..1b8881cd44 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.15", - "@tanstack/preact-table-devtools": "^9.0.0-beta.15", + "@tanstack/preact-table": "^9.0.0-beta.16", + "@tanstack/preact-table-devtools": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/pagination/package.json b/examples/preact/pagination/package.json index 459e47dd75..e1aef62244 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/row-pinning/package.json b/examples/preact/row-pinning/package.json index ddf0af8d28..3ee7024fad 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/row-selection/package.json b/examples/preact/row-selection/package.json index c0b4663200..80ce0a4a9b 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.15", - "@tanstack/preact-table-devtools": "^9.0.0-beta.15", + "@tanstack/preact-table": "^9.0.0-beta.16", + "@tanstack/preact-table-devtools": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/sorting/package.json b/examples/preact/sorting/package.json index e60e4c8593..7b917b1d02 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/sub-components/package.json b/examples/preact/sub-components/package.json index 3d0fe9cfa0..f07227c446 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/preact/with-tanstack-query/package.json b/examples/preact/with-tanstack-query/package.json index 7b99ce93f7..b2fc8178b7 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.15", + "@tanstack/preact-table": "^9.0.0-beta.16", "preact": "^10.29.2" }, "devDependencies": { diff --git a/examples/react/basic-external-atoms/package.json b/examples/react/basic-external-atoms/package.json index ea47471cab..4ceb908714 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "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 39b28baccd..57bb6326cf 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "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 ffc1c6cd50..00896cfd51 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "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 65cfdaa794..593d700fa3 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "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 682b10edea..1cb658b6c3 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "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 6d262fed18..0540953d1e 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "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 e0361f996b..a95283e5cd 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 55785ad39f..bae40f8aea 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 394a3a2a82..1856896823 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 cf1b8aa241..59e3bd7dbc 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 79bc40dcf8..b773c7ad56 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 bae05cbdd4..4e69d1f319 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 994550bd8e..82e68e74e5 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 f465e3e63b..8b968640e7 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 62c3a1fbc4..18b261de7e 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 b2c311f45a..f54276ba91 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 519509ba96..046fdd4bc1 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "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 5a3d2b6aeb..2fec059ba8 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/expanding/package.json b/examples/react/expanding/package.json index d1d89f7545..46ef3d271c 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 f04d15a6fb..f4869f5c31 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 34b6ac7757..6d61e50cae 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/filters/package.json b/examples/react/filters/package.json index d1b7f066c1..f2e14de1e1 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/grouping/package.json b/examples/react/grouping/package.json index a5958da556..3d657e03d0 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 ba2695246e..7f74f54f68 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "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 5a338be3b9..ee3cd288e9 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "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 e2e2fe9e67..2247bc0747 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "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 97fa99f5fe..f45fbf1b2c 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "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 83250b3b93..c37126251e 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "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 da3e4e48c2..f5b7afe23d 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "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 8396975b31..6d4828d98c 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "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 f630ff6063..3a660cd78e 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 a5b6736c39..c3fd10152b 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 d63f328d45..7e173ab249 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 1fcc166fe2..ca8d00edaa 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 84a7e2fdf7..7923e5504d 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 0979a90742..9426a85d98 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 3396f60dcf..64c87e8747 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "@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 bdc7111be1..91b3d7ef5f 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "@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 d93e4dec59..c8f3e63f46 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 ce8724eff2..cf93cc4f17 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 e8516d8ae4..d23b1a8d8e 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 878381bc20..35a3016bd6 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.15", - "@tanstack/react-table-devtools": "^9.0.0-beta.15", + "@tanstack/react-table": "^9.0.0-beta.16", + "@tanstack/react-table-devtools": "^9.0.0-beta.16", "react": "^19.2.7", "react-dom": "^19.2.7" }, diff --git a/examples/react/sorting/package.json b/examples/react/sorting/package.json index 48583443c6..98b6958e36 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 a82dd62d54..a7abc504d4 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 805440229f..8c8cc430e7 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "@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 d4ce60c8f8..e0f2ced05a 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "@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 0af5f99ba0..a617aba994 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "@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 ab4a0170bf..d61a557275 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "@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 75699c0335..155d8ac744 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "@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 76510ff0b8..665b841a4b 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 bca3d5532c..d3b788e2ac 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 4cfef15397..e855f89c88 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.15", + "@tanstack/react-table": "^9.0.0-beta.16", "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 c7bee0aa08..e2a37c052c 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.15", - "@tanstack/solid-table-devtools": "^9.0.0-beta.15", + "@tanstack/solid-table": "^9.0.0-beta.16", + "@tanstack/solid-table-devtools": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/basic-external-atoms/package.json b/examples/solid/basic-external-atoms/package.json index 38b61f23e5..2ef4b3dcc7 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.15", - "@tanstack/solid-table-devtools": "^9.0.0-beta.15", + "@tanstack/solid-table": "^9.0.0-beta.16", + "@tanstack/solid-table-devtools": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/basic-external-state/package.json b/examples/solid/basic-external-state/package.json index 81cdef3c02..5a733c1c2d 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.15", - "@tanstack/solid-table-devtools": "^9.0.0-beta.15", + "@tanstack/solid-table": "^9.0.0-beta.16", + "@tanstack/solid-table-devtools": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/basic-use-table/package.json b/examples/solid/basic-use-table/package.json index 82fc4603f8..7c46fe950f 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.15", - "@tanstack/solid-table-devtools": "^9.0.0-beta.15", + "@tanstack/solid-table": "^9.0.0-beta.16", + "@tanstack/solid-table-devtools": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-groups/package.json b/examples/solid/column-groups/package.json index 69ec326120..ac7aa3db68 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-ordering/package.json b/examples/solid/column-ordering/package.json index b3affe3d3b..3372827332 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-pinning-split/package.json b/examples/solid/column-pinning-split/package.json index 6509cbfad0..2a10f8f591 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-pinning-sticky/package.json b/examples/solid/column-pinning-sticky/package.json index aff79cbfe1..46030dbad6 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-pinning/package.json b/examples/solid/column-pinning/package.json index 6043ad67fc..ae3051aaee 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-resizing-performant/package.json b/examples/solid/column-resizing-performant/package.json index 63b97eb2a1..fd04fcf01b 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-resizing/package.json b/examples/solid/column-resizing/package.json index ba4efd4ff2..df6ad81d13 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-sizing/package.json b/examples/solid/column-sizing/package.json index d225318aeb..9bc2e78295 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/column-visibility/package.json b/examples/solid/column-visibility/package.json index a69c9137ea..537e5a3f88 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/composable-tables/package.json b/examples/solid/composable-tables/package.json index 32c2e5c59c..3c6f4804fe 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.15", - "@tanstack/solid-table-devtools": "^9.0.0-beta.15", + "@tanstack/solid-table": "^9.0.0-beta.16", + "@tanstack/solid-table-devtools": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/expanding/package.json b/examples/solid/expanding/package.json index 8cb37588e2..b028e51306 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/filters-faceted/package.json b/examples/solid/filters-faceted/package.json index cd48932bcb..7135dd6a65 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/filters-fuzzy/package.json b/examples/solid/filters-fuzzy/package.json index c44c7b6b7b..8918ac6d2e 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/filters/package.json b/examples/solid/filters/package.json index dd271280aa..95f82cc116 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/grouping/package.json b/examples/solid/grouping/package.json index 1fb8920d9a..a05ced6252 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/kitchen-sink/package.json b/examples/solid/kitchen-sink/package.json index b8e2acf6f5..ee36bf64c7 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.15", - "@tanstack/solid-table-devtools": "^9.0.0-beta.15", + "@tanstack/solid-table": "^9.0.0-beta.16", + "@tanstack/solid-table-devtools": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/pagination/package.json b/examples/solid/pagination/package.json index d91c97eee4..fe01101a6a 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/row-pinning/package.json b/examples/solid/row-pinning/package.json index de16d9bb5f..604adff2e8 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/row-selection/package.json b/examples/solid/row-selection/package.json index 8db403ebbf..626d909044 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.15", - "@tanstack/solid-table-devtools": "^9.0.0-beta.15", + "@tanstack/solid-table": "^9.0.0-beta.16", + "@tanstack/solid-table-devtools": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/sorting/package.json b/examples/solid/sorting/package.json index fff48a81e8..75cf38f15a 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/sub-components/package.json b/examples/solid/sub-components/package.json index e8f353d6d9..790fd12f69 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/virtualized-columns/package.json b/examples/solid/virtualized-columns/package.json index 91426de888..e5c9ee7d50 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "@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 99ee5d7487..784ab5e48c 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "@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 603a1d749e..3fe7609caa 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "@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 60483f501d..04d64663dd 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "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 7461ba3022..1de11fbd9a 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/solid/with-tanstack-router/package.json b/examples/solid/with-tanstack-router/package.json index 4f38617cc6..eca00fcfb0 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.15", + "@tanstack/solid-table": "^9.0.0-beta.16", "solid-js": "^1.9.13" } } diff --git a/examples/svelte/basic-app-table/package.json b/examples/svelte/basic-app-table/package.json index dcec6d38a0..758e24d26b 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 de6d56441a..0add99cd4c 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 5787868205..1f804e179f 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 0324a1056c..092edb98fe 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 ea80d2138b..b02e021e25 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 12bf051bb9..0f1578a5ed 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 9748a73134..93ca56dfa7 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 fbe919275b..af90c48647 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 97bf265882..b20842b16b 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 802e3c6757..28bf1fff4e 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 eaaa204dc7..99895e325d 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 2cf4d4023e..b0d8fe22a2 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 cb2b307b4f..717e0286c7 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 cd95f7f2cf..7c401a77f3 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 836951b6c0..30fb2488ab 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 a152abbe3b..29ebdd4320 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 19d6bdb039..6cbf5ee69b 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 965e80316d..8e096cc63f 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 ba8c3ad512..8de5212205 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 036e01d3c3..98b6657847 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 ed2fa0566f..bd1f556138 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 769166ad23..4405fb4c79 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 67bb633273..aa6cadfd05 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 f1686c9e0c..30b79c8ac4 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 cb1a6a3567..d1cfdeebf0 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 2dabbfbd99..41cb01956d 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 829a0146c5..568ba589db 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 680f36286f..13bab3cfaa 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 a711f41f90..8b4ae7ad0e 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "@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 7ef8951b57..c81a38f3fc 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.15", + "@tanstack/svelte-table": "^9.0.0-beta.16", "zod": "^4.4.3" } } diff --git a/examples/svelte/with-tanstack-query/package.json b/examples/svelte/with-tanstack-query/package.json index 77079b592c..061ae305a5 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.15" + "@tanstack/svelte-table": "^9.0.0-beta.16" } } diff --git a/examples/vanilla/basic/package.json b/examples/vanilla/basic/package.json index fbeb03bdf0..e6f9eb1186 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.15" + "@tanstack/table-core": "^9.0.0-beta.16" } } diff --git a/examples/vanilla/pagination/package.json b/examples/vanilla/pagination/package.json index 9d05da08e6..13f8bc8534 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.15" + "@tanstack/table-core": "^9.0.0-beta.16" } } diff --git a/examples/vanilla/sorting/package.json b/examples/vanilla/sorting/package.json index 3e6c994352..4112a3899a 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.15" + "@tanstack/table-core": "^9.0.0-beta.16" } } diff --git a/examples/vue/basic-external-atoms/package.json b/examples/vue/basic-external-atoms/package.json index 3a429cdc4c..482e36e194 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.15", - "@tanstack/vue-table-devtools": "^9.0.0-beta.15", + "@tanstack/vue-table": "^9.0.0-beta.16", + "@tanstack/vue-table-devtools": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/basic-external-state/package.json b/examples/vue/basic-external-state/package.json index b91b91485b..fa4bf39412 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.15", - "@tanstack/vue-table-devtools": "^9.0.0-beta.15", + "@tanstack/vue-table": "^9.0.0-beta.16", + "@tanstack/vue-table-devtools": "^9.0.0-beta.16", "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 ce3be9eeb6..12f2245b74 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.15", - "@tanstack/vue-table-devtools": "^9.0.0-beta.15", + "@tanstack/vue-table": "^9.0.0-beta.16", + "@tanstack/vue-table-devtools": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/basic-use-table/package.json b/examples/vue/basic-use-table/package.json index 7875e09f89..aaecb0d3da 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.15", - "@tanstack/vue-table-devtools": "^9.0.0-beta.15", + "@tanstack/vue-table": "^9.0.0-beta.16", + "@tanstack/vue-table-devtools": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-groups/package.json b/examples/vue/column-groups/package.json index 727ed1f86c..8c3cbc232b 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-ordering/package.json b/examples/vue/column-ordering/package.json index 2793bb04b9..76d88d332c 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-pinning-split/package.json b/examples/vue/column-pinning-split/package.json index 84b4e48d82..6e72f20290 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-pinning-sticky/package.json b/examples/vue/column-pinning-sticky/package.json index ff30068a86..0f4042bb04 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-pinning/package.json b/examples/vue/column-pinning/package.json index f2939883b9..de3d747290 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-resizing-performant/package.json b/examples/vue/column-resizing-performant/package.json index e4f3480a86..e5eb5c5e70 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-resizing/package.json b/examples/vue/column-resizing/package.json index 02ecfbcf74..a02e3f6345 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-sizing/package.json b/examples/vue/column-sizing/package.json index 5808f85fa0..f10be761ec 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/column-visibility/package.json b/examples/vue/column-visibility/package.json index 25429838a6..d05decb670 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/composable-tables/package.json b/examples/vue/composable-tables/package.json index a540c3e7e5..0f7b255921 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.15", - "@tanstack/vue-table-devtools": "^9.0.0-beta.15", + "@tanstack/vue-table": "^9.0.0-beta.16", + "@tanstack/vue-table-devtools": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/expanding/package.json b/examples/vue/expanding/package.json index c790ba1d95..638e5e753f 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/filters-faceted/package.json b/examples/vue/filters-faceted/package.json index 3bcbd88cdf..835e1c1176 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/filters-fuzzy/package.json b/examples/vue/filters-fuzzy/package.json index d4214bd60a..d8b4f8ba97 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/filters/package.json b/examples/vue/filters/package.json index 411b189a00..b97740dc99 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/grouping/package.json b/examples/vue/grouping/package.json index 82effd6077..251b8222fa 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/kitchen-sink/package.json b/examples/vue/kitchen-sink/package.json index 768d40ef0b..7e11e9416d 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.15", - "@tanstack/vue-table-devtools": "^9.0.0-beta.15", + "@tanstack/vue-table": "^9.0.0-beta.16", + "@tanstack/vue-table-devtools": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/pagination/package.json b/examples/vue/pagination/package.json index 08044364a2..d498110553 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/row-pinning/package.json b/examples/vue/row-pinning/package.json index cbdc501728..799955d7d2 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/row-selection/package.json b/examples/vue/row-selection/package.json index 324373adb4..f599d7e9f3 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.15", - "@tanstack/vue-table-devtools": "^9.0.0-beta.15", + "@tanstack/vue-table": "^9.0.0-beta.16", + "@tanstack/vue-table-devtools": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/sorting/package.json b/examples/vue/sorting/package.json index b7471029d6..ce45886a97 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/sub-components/package.json b/examples/vue/sub-components/package.json index aa95ae9d2c..46e09c965c 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/examples/vue/virtualized-columns/package.json b/examples/vue/virtualized-columns/package.json index cca6d03221..52f838f777 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "@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 c4c347ecc8..816f090ee1 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "@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 cc04ced6b5..de8efe578c 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "@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 1ff4825f51..6ac669a979 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "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 d4e7838176..8e09498fab 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.15", + "@tanstack/vue-table": "^9.0.0-beta.16", "vue": "^3.5.35" }, "devDependencies": { diff --git a/packages/angular-table-devtools/package.json b/packages/angular-table-devtools/package.json index 38617fe6d7..201b390bdc 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.15", + "version": "9.0.0-beta.16", "description": "Angular devtools for TanStack Table.", "license": "MIT", "repository": { diff --git a/packages/angular-table/package.json b/packages/angular-table/package.json index b034459fd7..5742443728 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.15", + "version": "9.0.0-beta.16", "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 1fb68f0596..de6e9ba70e 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.15", + "version": "9.0.0-beta.16", "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 ef57b45958..608fe77df5 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.15", + "version": "9.0.0-beta.16", "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 40244bab81..ceafe3fa1e 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.15", + "version": "9.0.0-beta.16", "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 b89a34117b..9aba2f6c5d 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.15", + "version": "9.0.0-beta.16", "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 0a9f37c899..c136b5a266 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.15", + "version": "9.0.0-beta.16", "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 5c79a4b643..07ea73cc71 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.15", + "version": "9.0.0-beta.16", "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 b31d3a36f4..e7a9c71ff1 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.15", + "version": "9.0.0-beta.16", "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 041cadcb0c..c5b5c28121 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.15", + "version": "9.0.0-beta.16", "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 91a29f0b38..22db34da76 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.15", + "version": "9.0.0-beta.16", "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 becd67df9d..40b4854286 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.15", + "version": "9.0.0-beta.16", "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 9f7696edb1..3f29868c25 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.15", + "version": "9.0.0-beta.16", "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 c85d767239..a5f9d3dc22 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.15", + "version": "9.0.0-beta.16", "description": "Headless UI for building powerful tables & datagrids for Vue.", "author": "Tanner Linsley", "license": "MIT",