Skip to content
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

Bump @mui/monorepo and MUI Core packages #17062

Merged
merged 41 commits into from
Mar 26, 2025
Merged

Conversation

siriwatknp
Copy link
Member

@siriwatknp siriwatknp commented Mar 21, 2025

This bump fixes the dark mode flicker for MUI X docs.
All MUI X pages now use CSS theme variables.

Sorry, something went wrong.

@siriwatknp siriwatknp added the dependencies Update of dependencies label Mar 21, 2025
Copy link

Thanks for adding a type label to the PR! 👍

@mui-bot
Copy link

mui-bot commented Mar 21, 2025

@siriwatknp
Copy link
Member Author

🤔 Not sure why argos is failing. I don't think it's related to the monorepo?

@alexfauquette
Copy link
Member

🤔 Not sure why argos is failing. I don't think it's related to the monorepo?

It's just flaky CI 👍

Copy link
Member

@LukasTy LukasTy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice work, thanks for addressing the theme and RTL switching performance and issues. 🙌 💯

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
@alexfauquette
Copy link
Member

I added a fix for this demo. It's the only one I found with dark theme issue

https://deploy-preview-17062--material-ui-x.netlify.app/x/react-data-grid/features/

image

Copy link
Member

@alexfauquette alexfauquette left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for taking care of it

I noticed some theme.applyStyle('dark', { ... }) and theme.applyDarkStyle({ ... }) is their one to prefer compare to the other?

Copy link
Member

@LukasTy LukasTy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
@alexfauquette
Copy link
Member

alexfauquette commented Mar 21, 2025

Thanks for your laser vision scan ;)

The same list with checkboxes to know which are done

For the tree view, I don't know what the CSS var approach is to switch light/dark theme. Cause currently, the switch is done by

const style = {
    '--tree-view-color': theme.palette.mode !== 'dark' ? color : colorForDarkMode,
    '--tree-view-bg-color':
      theme.palette.mode !== 'dark' ? bgColor : bgColorForDarkMode,
};

For the pickers custom field, I did not understand why it's not working.

Sorry, something went wrong.

@LukasTy
Copy link
Member

LukasTy commented Mar 21, 2025

This is not the first time we have had dark theme visual regressions, which need manual checking. 🙈
WDYT, would it make sense to run screenshot tests for both light and dark themes? 🤔

@alexfauquette
Copy link
Member

This is not the first time we have had dark theme visual regressions, which need manual checking. 🙈

We would need to check if it's ok to double the price with @oliviertassinari

Those error only occurs in specific PR (like this one) when we impact how the light/dark mode is handled by the docs.

If it was possible to manually trigger a screenshot from master and the current branch to compare them in dark mode, I would do it. But doing that for all PRs looks overkill

@siriwatknp
Copy link
Member Author

@siriwatknp do you have time to fix these or should we split the fixes among the team? 🤔

I can fix it one by one, thank you so much for the list @alexfauquette @LukasTy

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla
@github-actions github-actions bot added the PR: out-of-date The pull request has merge conflicts and can't be merged label Mar 21, 2025
Copy link

This pull request has conflicts, please resolve those before we can evaluate the pull request.

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla
@LukasTy
Copy link
Member

LukasTy commented Mar 21, 2025

The root cause seems to be the fact that theme.palette.mode resolves to light regardless of the selected mode. 🙈
Is it expected after the latest changes @siriwatknp?

LukasTy added 2 commits March 21, 2025 16:25

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla
Copy link
Member

@LukasTy LukasTy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@siriwatknp do you know what could be causing RTL direction regressions? 🤔
Screenshot 2025-03-26 at 14 06 24

@siriwatknp
Copy link
Member Author

@siriwatknp do you know what could be causing RTL direction regressions? 🤔

It might be the package mismatch. Difference instance of @mui/system from the codesandbox package.

I am verifying if my assumption is correct.

@LukasTy
Copy link
Member

LukasTy commented Mar 26, 2025

@siriwatknp do you know what could be causing RTL direction regressions? 🤔

It might be the package mismatch. Difference instance of @mui/system from the codesandbox package.

I am verifying if my assumption is correct.

Nice spot. 👍
yes, your assumption was completely correct. 💯
I tested that it works correctly locally. 👌

LukasTy and others added 5 commits March 26, 2025 14:32

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla
@LukasTy LukasTy changed the title Bump @mui/monorepo digest to 61c3cc9 Bump @mui/monorepo digest to 6382bd0 Mar 26, 2025
@LukasTy LukasTy changed the title Bump @mui/monorepo digest to 6382bd0 Bump @mui/monorepo and MUI Core packages Mar 26, 2025

Verified

This commit was signed with the committer’s verified signature.
LukasTy Lukas Tyla
Copy link
Member

@LukasTy LukasTy left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you and everyone involved for the effort! 🙏
LGTM. 👌

@@ -77,15 +82,19 @@ const CustomTreeItem = React.forwardRef(function CustomTreeItem(props, ref) {
status,
} = useTreeItem({ id, itemId, children, label, disabled, rootRef: ref });

const style = {
'--tree-view-color': theme.palette.mode !== 'dark' ? color : colorForDarkMode,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

After the latest changes, the previous solution still works, but given this comment, I suggest keeping the updated solution for performance reasons. 👍

@LukasTy LukasTy enabled auto-merge (squash) March 26, 2025 16:05
@siriwatknp
Copy link
Member Author

Thank you and everyone involved for the effort! 🙏 LGTM. 👌

Feel free to merge it.

@LukasTy LukasTy merged commit 1cc12b9 into mui:master Mar 26, 2025
18 of 19 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Update of dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants