-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[core] Support for @mui packages #2571
Conversation
@@ -89,7 +90,7 @@ function EditProgress(props: GridRenderEditCellParams) { | |||
|
|||
const handleRef: SliderProps['ref'] = (element) => { | |||
if (element) { | |||
element.querySelector<HTMLElement>('[role="slider"]')!.focus(); | |||
element.querySelector<HTMLElement>('[type="range"]')!.focus(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixes #2556
a33ffd0
to
70a08e8
Compare
const babelConfig = { | ||
presets: ['@babel/preset-typescript'], | ||
plugins: [unwrap], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In the core, this plugin is not used:
docs/src/pages/components/data-grid/filtering/CustomRatingOperator.tsx
Outdated
Show resolved
Hide resolved
docs/src/pages/components/data-grid/filtering/CustomRatingOperator.js
Outdated
Show resolved
Hide resolved
docs/src/pages/components/data-grid/filtering/ExtendNumericOperator.js
Outdated
Show resolved
Hide resolved
docs/src/pages/components/data-grid/filtering/ExtendNumericOperator.tsx
Outdated
Show resolved
Hide resolved
packages/grid/_modules_/grid/components/panel/GridPanel.test.tsx
Outdated
Show resolved
Hide resolved
I can't reproduce the snapshot buggy behavior on your preview The other snapshot diffs seems logical to me |
@flaviendelangle About the buggy snapshot. The test environment was still using the old @material-ui/core. There're only 10 differences now, which are because of the new palette. |
Fixes #2527