Skip to content

Commit

Permalink
[DataGrid] Fix conflict with onResize added to `React.HTMLAttribute…
Browse files Browse the repository at this point in the history
…s` (#6797)
  • Loading branch information
vizv authored and m4theushw committed Nov 16, 2022
1 parent 54b1175 commit a34794b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.15",
"@types/prettier": "^2.7.0",
"@types/react": "^18.0.17",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.6",
"@types/requestidlecallback": "^0.3.4",
"@types/sinon": "^10.0.13",
Expand Down
3 changes: 2 additions & 1 deletion packages/grid/x-data-grid/src/components/GridAutoSizer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ export interface AutoSizerSize {
// Credit to https://github.com/bvaughn/react-virtualized/blob/master/source/AutoSizer/AutoSizer.js
// for the sources.

export interface AutoSizerProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'children'> {
export interface AutoSizerProps
extends Omit<React.HTMLAttributes<HTMLDivElement>, 'children' | 'onResize'> {
/**
* Function responsible for rendering children.
* @param {AutoSizerSize} size The grid's size.
Expand Down
11 changes: 10 additions & 1 deletion yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3583,7 +3583,7 @@
dependencies:
"@types/react" "*"

"@types/react@*", "@types/react@^18.0.17":
"@types/react@*":
version "18.0.17"
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.17.tgz#4583d9c322d67efe4b39a935d223edcc7050ccf4"
integrity sha512-38ETy4tL+rn4uQQi7mB81G7V1g0u2ryquNmsVIOKUAEIDK+3CUjZ6rSRpdvS99dNBnkLFL83qfmtLacGOTIhwQ==
Expand All @@ -3592,6 +3592,15 @@
"@types/scheduler" "*"
csstype "^3.0.2"

"@types/react@^18.0.25":
version "18.0.25"
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.0.25.tgz#8b1dcd7e56fe7315535a4af25435e0bb55c8ae44"
integrity sha512-xD6c0KDT4m7n9uD4ZHi02lzskaiqcBxf4zi+tXZY98a04wvc0hi/TcCPC2FOESZi51Nd7tlUeOJY8RofL799/g==
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
csstype "^3.0.2"

"@types/requestidlecallback@^0.3.4":
version "0.3.4"
resolved "https://registry.yarnpkg.com/@types/requestidlecallback/-/requestidlecallback-0.3.4.tgz#819e22b8994cf547e1f17f9cb79805a5a3bb1db5"
Expand Down

0 comments on commit a34794b

Please sign in to comment.