Skip to content

Commit

Permalink
Bump material-ui-popup-state to ^5.3.3 (#44832)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Aarón García Hervás <[email protected]>
  • Loading branch information
renovate[bot] and aarongarciah authored Dec 24, 2024
1 parent 2c8350d commit 9d29815
Show file tree
Hide file tree
Showing 10 changed files with 22 additions and 8 deletions.
1 change: 1 addition & 0 deletions docs/data/base/components/modal/SpringModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ const Fade = React.forwardRef(function Fade(props, ref) {
});

return (
// @ts-expect-error https://github.com/pmndrs/react-spring/issues/2341
<animated.div ref={ref} style={style} {...other}>
{children}
</animated.div>
Expand Down
1 change: 1 addition & 0 deletions docs/data/base/components/modal/SpringModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ const Fade = React.forwardRef<HTMLDivElement, FadeProps>(function Fade(props, re
});

return (
// @ts-expect-error https://github.com/pmndrs/react-spring/issues/2341
<animated.div ref={ref} style={style} {...other}>
{children}
</animated.div>
Expand Down
1 change: 1 addition & 0 deletions docs/data/base/components/transitions/ReactSpring.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ function ReactSpringTransition({ children }) {
}
}, [requestedEnter, api, onExited]);

// @ts-expect-error https://github.com/pmndrs/react-spring/issues/2341
return <animated.div style={springs}>{children}</animated.div>;
}

Expand Down
1 change: 1 addition & 0 deletions docs/data/base/components/transitions/ReactSpring.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -139,5 +139,6 @@ function ReactSpringTransition({ children }: React.PropsWithChildren<{}>) {
}
}, [requestedEnter, api, onExited]);

// @ts-expect-error https://github.com/pmndrs/react-spring/issues/2341
return <animated.div style={springs}>{children}</animated.div>;
}
1 change: 1 addition & 0 deletions docs/data/material/components/modal/SpringModal.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const Fade = React.forwardRef(function Fade(props, ref) {
});

return (
// @ts-expect-error https://github.com/pmndrs/react-spring/issues/2341
<animated.div ref={ref} style={style} {...other}>
{React.cloneElement(children, { onClick })}
</animated.div>
Expand Down
1 change: 1 addition & 0 deletions docs/data/material/components/modal/SpringModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const Fade = React.forwardRef<HTMLDivElement, FadeProps>(function Fade(props, re
});

return (
// @ts-expect-error https://github.com/pmndrs/react-spring/issues/2341
<animated.div ref={ref} style={style} {...other}>
{React.cloneElement(children, { onClick })}
</animated.div>
Expand Down
1 change: 1 addition & 0 deletions docs/data/material/components/popper/SpringPopper.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ const Fade = React.forwardRef(function Fade(props, ref) {
});

return (
// @ts-expect-error https://github.com/pmndrs/react-spring/issues/2341
<animated.div ref={ref} style={style} {...other}>
{children}
</animated.div>
Expand Down
1 change: 1 addition & 0 deletions docs/data/material/components/popper/SpringPopper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const Fade = React.forwardRef<HTMLDivElement, FadeProps>(function Fade(props, re
});

return (
// @ts-expect-error https://github.com/pmndrs/react-spring/issues/2341
<animated.div ref={ref} style={style} {...other}>
{children}
</animated.div>
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"lodash": "^4.17.21",
"lz-string": "^1.5.0",
"markdown-to-jsx": "^7.7.2",
"material-ui-popup-state": "^5.3.1",
"material-ui-popup-state": "^5.3.3",
"next": "^15.1.2",
"notistack": "3.0.1",
"nprogress": "^0.2.0",
Expand Down
20 changes: 13 additions & 7 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9d29815

Please sign in to comment.