Skip to content

Commit a03cfde

Browse files
committed
release v2.11.3
1 parent a2575cc commit a03cfde

File tree

4 files changed

+35
-1
lines changed

4 files changed

+35
-1
lines changed

apps/material-react-table-docs/components/prop-tables/columnInstanceAPIs.ts

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -299,6 +299,34 @@ export const columnInstanceAPIs: ColumnInstanceAPI[] = [
299299
link: '',
300300
linkText: '',
301301
},
302+
{
303+
columnInstanceAPI: 'getAfter',
304+
type: '',
305+
description: '',
306+
link: '',
307+
linkText: '',
308+
},
309+
{
310+
columnInstanceAPI: 'getIndex',
311+
type: '',
312+
description: '',
313+
link: '',
314+
linkText: '',
315+
},
316+
{
317+
columnInstanceAPI: 'getIsFirstColumn',
318+
type: '',
319+
description: '',
320+
link: '',
321+
linkText: '',
322+
},
323+
{
324+
columnInstanceAPI: 'getIsLastColumn',
325+
type: '',
326+
description: '',
327+
link: '',
328+
linkText: '',
329+
},
302330
{
303331
columnInstanceAPI: 'getToggleGroupingHandler',
304332
type: '',

apps/material-react-table-docs/pages/changelog.mdx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ import Head from 'next/head';
77

88
## MRT V2 Changelog
99

10+
### Version 2.11.3 - 2024-02-14
11+
12+
- Upgraded to TanStack Table v8.12.0 for new column pinning/sizing/pinning instance APIs and better column resizing performance
13+
- Fixed "Clear selection" button to always clear selection for all pages
14+
1015
### Version 2.11.2 - 2024-02-08
1116

1217
- Fixed bugs with batch row selection and row pinning together

packages/material-react-table/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "2.11.2",
2+
"version": "2.11.3",
33
"license": "MIT",
44
"name": "material-react-table",
55
"description": "A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.",

packages/material-react-table/src/components/inputs/MRT_SelectCheckbox.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ export const MRT_SelectCheckbox = <TData extends MRT_RowData>({
5858
? parseFromValuesOrFunc(muiSelectAllCheckboxProps, { table })
5959
: parseFromValuesOrFunc(muiSelectCheckboxProps, {
6060
row,
61+
staticRowIndex,
6162
table,
6263
})),
6364
...rest,

0 commit comments

Comments
 (0)