material-react-table 0.14.4 → 0.14.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.14.4",
2
+ "version": "0.14.5",
3
3
  "license": "MIT",
4
4
  "name": "material-react-table",
5
5
  "description": "A fully featured Material UI implementation of TanStack React Table, inspired by material-table and the MUI X DataGrid, written from the ground up in TypeScript.",
@@ -59,9 +59,9 @@
59
59
  "@babel/core": "^7.18.5",
60
60
  "@emotion/react": "^11.9.3",
61
61
  "@emotion/styled": "^11.9.3",
62
- "@faker-js/faker": "^6.3.1",
62
+ "@faker-js/faker": "^7.3.0",
63
63
  "@mui/icons-material": "^5.8.4",
64
- "@mui/material": "^5.8.4",
64
+ "@mui/material": "^5.8.5",
65
65
  "@size-limit/preset-small-lib": "^7.0.8",
66
66
  "@storybook/addon-a11y": "^6.5.9",
67
67
  "@storybook/addon-actions": "^6.5.9",
@@ -73,7 +73,7 @@
73
73
  "@types/react": "^18.0.14",
74
74
  "@types/react-dom": "^18.0.5",
75
75
  "babel-loader": "^8.2.5",
76
- "eslint": "^8.17.0",
76
+ "eslint": "^8.18.0",
77
77
  "eslint-plugin-react-hooks": "^4.6.0",
78
78
  "husky": "^8.0.1",
79
79
  "prettier": "^2.7.1",
@@ -87,7 +87,7 @@
87
87
  "storybook-dark-mode": "^1.1.0",
88
88
  "tsdx": "^0.14.1",
89
89
  "tslib": "^2.4.0",
90
- "typescript": "^4.7.3"
90
+ "typescript": "^4.7.4"
91
91
  },
92
92
  "peerDependencies": {
93
93
  "@emotion/react": ">=11",
@@ -824,7 +824,7 @@ export type MaterialReactTableProps<D extends Record<string, any> = {}> =
824
824
  rowNumberMode?: 'original' | 'static';
825
825
  selectAllMode?: 'all' | 'page';
826
826
  tableId?: string;
827
- virtualizerProps?: VirtualizerOptions<HTMLDivElement>;
827
+ virtualizerProps?: Partial<VirtualizerOptions<HTMLDivElement>>;
828
828
  };
829
829
 
830
830
  export default <D extends Record<string, any> = {}>({