Skip to content

Commit

Permalink
release v2.11.3
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed Feb 15, 2024
1 parent a2575cc commit a03cfde
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,34 @@ export const columnInstanceAPIs: ColumnInstanceAPI[] = [
link: '',
linkText: '',
},
{
columnInstanceAPI: 'getAfter',
type: '',
description: '',
link: '',
linkText: '',
},
{
columnInstanceAPI: 'getIndex',
type: '',
description: '',
link: '',
linkText: '',
},
{
columnInstanceAPI: 'getIsFirstColumn',
type: '',
description: '',
link: '',
linkText: '',
},
{
columnInstanceAPI: 'getIsLastColumn',
type: '',
description: '',
link: '',
linkText: '',
},
{
columnInstanceAPI: 'getToggleGroupingHandler',
type: '',
Expand Down
5 changes: 5 additions & 0 deletions apps/material-react-table-docs/pages/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ import Head from 'next/head';

## MRT V2 Changelog

### Version 2.11.3 - 2024-02-14

- Upgraded to TanStack Table v8.12.0 for new column pinning/sizing/pinning instance APIs and better column resizing performance
- Fixed "Clear selection" button to always clear selection for all pages

### Version 2.11.2 - 2024-02-08

- Fixed bugs with batch row selection and row pinning together
Expand Down
2 changes: 1 addition & 1 deletion packages/material-react-table/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.11.2",
"version": "2.11.3",
"license": "MIT",
"name": "material-react-table",
"description": "A fully featured Material UI V5 implementation of TanStack React Table V8, written from the ground up in TypeScript.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ export const MRT_SelectCheckbox = <TData extends MRT_RowData>({
? parseFromValuesOrFunc(muiSelectAllCheckboxProps, { table })
: parseFromValuesOrFunc(muiSelectCheckboxProps, {
row,
staticRowIndex,
table,
})),
...rest,
Expand Down

0 comments on commit a03cfde

Please sign in to comment.