Skip to content

Commit

Permalink
release v2.0.5 - bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed Dec 5, 2023
1 parent 03e7ca8 commit e3e4552
Show file tree
Hide file tree
Showing 6 changed files with 484 additions and 396 deletions.
2 changes: 1 addition & 1 deletion apps/material-react-table-docs/package.json
Expand Up @@ -42,7 +42,7 @@
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.12.1",
"@types/node": "^20.10.3",
"@types/react": "^18.2.41",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
Expand Down
7 changes: 7 additions & 0 deletions apps/material-react-table-docs/pages/changelog.mdx
Expand Up @@ -12,6 +12,13 @@ import Head from 'next/head';

### Version 2

#### Version 2.0.5 - 12-05-2023

- Upgraded to TanStack Virtual `v3.0.1` stable release
- Added `MuiTablePagination-root` class to mrt pagination root element for easier styling
- Fixed potential duplicate key warning while rendering skeleton rows when `getRowId` table option is provided and doesn't properly return `undefined`
- Fixed `muiSearchTextFieldProps.InputProps` now able to partially overridden

#### Version 2.0.4 - 11-09-2023

- Add support for `'all'` rows pagination option
Expand Down
2 changes: 1 addition & 1 deletion apps/test-remix/package.json
Expand Up @@ -27,7 +27,7 @@
"devDependencies": {
"@remix-run/dev": "^2.3.1",
"@remix-run/eslint-config": "^2.3.1",
"@types/react": "^18.2.41",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"eslint": "^8.55.0",
"typescript": "^5.3.2"
Expand Down
2 changes: 1 addition & 1 deletion apps/test-vite/package.json
Expand Up @@ -20,7 +20,7 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.41",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
Expand Down
8 changes: 4 additions & 4 deletions packages/material-react-table/package.json
@@ -1,5 +1,5 @@
{
"version": "2.0.4",
"version": "2.0.5",
"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 Expand Up @@ -35,11 +35,11 @@
"size-limit": [
{
"path": "dist/index.js",
"limit": "59 KB"
"limit": "53 KB"
},
{
"path": "dist/index.esm.js",
"limit": "55 KB"
"limit": "50 KB"
}
],
"engines": {
Expand Down Expand Up @@ -81,7 +81,7 @@
"@storybook/react-vite": "^7.6.3",
"@storybook/testing-library": "^0.2.2",
"@types/node": "^20.10.3",
"@types/react": "^18.2.41",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
Expand Down

0 comments on commit e3e4552

Please sign in to comment.