Skip to content

Commit 9d29815

Browse files
Bump material-ui-popup-state to ^5.3.3 (#44832)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Aarón García Hervás <[email protected]>
1 parent 2c8350d commit 9d29815

File tree

10 files changed

+22
-8
lines changed

10 files changed

+22
-8
lines changed

docs/data/base/components/modal/SpringModal.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ const Fade = React.forwardRef(function Fade(props, ref) {
8080
});
8181

8282
return (
83+
// @ts-expect-error https://github.com/pmndrs/react-spring/issues/2341
8384
<animated.div ref={ref} style={style} {...other}>
8485
{children}
8586
</animated.div>

docs/data/base/components/modal/SpringModal.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ const Fade = React.forwardRef<HTMLDivElement, FadeProps>(function Fade(props, re
8686
});
8787

8888
return (
89+
// @ts-expect-error https://github.com/pmndrs/react-spring/issues/2341
8990
<animated.div ref={ref} style={style} {...other}>
9091
{children}
9192
</animated.div>

docs/data/base/components/transitions/ReactSpring.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,7 @@ function ReactSpringTransition({ children }) {
144144
}
145145
}, [requestedEnter, api, onExited]);
146146

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

docs/data/base/components/transitions/ReactSpring.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,5 +139,6 @@ function ReactSpringTransition({ children }: React.PropsWithChildren<{}>) {
139139
}
140140
}, [requestedEnter, api, onExited]);
141141

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

docs/data/material/components/modal/SpringModal.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ const Fade = React.forwardRef(function Fade(props, ref) {
3333
});
3434

3535
return (
36+
// @ts-expect-error https://github.com/pmndrs/react-spring/issues/2341
3637
<animated.div ref={ref} style={style} {...other}>
3738
{React.cloneElement(children, { onClick })}
3839
</animated.div>

docs/data/material/components/modal/SpringModal.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ const Fade = React.forwardRef<HTMLDivElement, FadeProps>(function Fade(props, re
4141
});
4242

4343
return (
44+
// @ts-expect-error https://github.com/pmndrs/react-spring/issues/2341
4445
<animated.div ref={ref} style={style} {...other}>
4546
{React.cloneElement(children, { onClick })}
4647
</animated.div>

docs/data/material/components/popper/SpringPopper.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ const Fade = React.forwardRef(function Fade(props, ref) {
2222
});
2323

2424
return (
25+
// @ts-expect-error https://github.com/pmndrs/react-spring/issues/2341
2526
<animated.div ref={ref} style={style} {...other}>
2627
{children}
2728
</animated.div>

docs/data/material/components/popper/SpringPopper.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ const Fade = React.forwardRef<HTMLDivElement, FadeProps>(function Fade(props, re
2828
});
2929

3030
return (
31+
// @ts-expect-error https://github.com/pmndrs/react-spring/issues/2341
3132
<animated.div ref={ref} style={style} {...other}>
3233
{children}
3334
</animated.div>

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"lodash": "^4.17.21",
8282
"lz-string": "^1.5.0",
8383
"markdown-to-jsx": "^7.7.2",
84-
"material-ui-popup-state": "^5.3.1",
84+
"material-ui-popup-state": "^5.3.3",
8585
"next": "^15.1.2",
8686
"notistack": "3.0.1",
8787
"nprogress": "^0.2.0",

pnpm-lock.yaml

Lines changed: 13 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)