Skip to content

Commit 7cc4560

Browse files
committed
Merge branch 'master' into colors-inherit-fix
2 parents c6ad876 + d5b547e commit 7cc4560

File tree

227 files changed

+2747
-2437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

227 files changed

+2747
-2437
lines changed

.circleci/config.yml

Lines changed: 111 additions & 163 deletions
Large diffs are not rendered by default.

.eslintrc.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -240,6 +240,8 @@ module.exports = {
240240
'react/jsx-no-useless-fragment': ['error', { allowExpressions: true }],
241241
'lines-around-directive': 'off',
242242
...(ENABLE_REACT_COMPILER_PLUGIN ? { 'react-compiler/react-compiler': 'error' } : {}),
243+
// Prevent the use of `e` as a shorthand for `event`, `error`, etc.
244+
'id-denylist': ['error', 'e'],
243245
},
244246
overrides: [
245247
{

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,3 +43,4 @@ docs/public/static/blog/feed/*
4343
.nx/cache
4444
.nx/workspace-data
4545
screenshots
46+
packed

CHANGELOG.old.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ This release was mostly about 🐛 bug fixes and 📚 documentation improvements
823823
- [blog] Add post about upcoming plans for Base UI (#40882) @danilo-leal
824824
- [core] Simplify CodeSandbox reproduction @oliviertassinari
825825
- [core] Missing redirection @oliviertassinari
826-
- [core] Export functions from `copyFiles` script to reuse in MUI X repo (#40970) @cherniavskii
826+
- [core] Export functions from `copyFiles` script to reuse in MUI X repo (#40970) @cherniavskii
827827
- [core] Avoid variable shorthands @oliviertassinari
828828
- [docs-infra] Fix search icon issue (#40957) @oliviertassinari
829829
- [docs-infra] Ignore classes tagged with `@ignore` (#41009) @cherniavskii
@@ -1013,7 +1013,7 @@ This release was mostly about 🐛 bug fixes and 📚 documentation improvements
10131013
- &#8203;<!-- 54 -->[website] Move `React Engineer - X` into the future roles section (#40867) @DanailH
10141014
- &#8203;<!-- 52 -->[material-ui][test][Alert] Add action, icon, and iconMapping tests (#40682) @DiegoAndai
10151015
- &#8203;<!-- 45 -->[blog] Lint duplicate h1 on the page (#40835) @oliviertassinari
1016-
- &#8203;<!-- 44 -->[blog] MUI X v7 beta announcement blogpost (#40784) @joserodolfofreitas
1016+
- &#8203;<!-- 44 -->[blog] MUI X v7 beta announcement blogpost (#40784) @joserodolfofreitas
10171017
- &#8203;<!-- 43 -->[code-infra] Remove custom TS installation script (#40636) @michaldudak
10181018
- &#8203;<!-- 42 -->[code-infra] Correct API Docs Builder dependencies (#40775) @michaldudak
10191019
- &#8203;<!-- 41 -->[code-infra] Migrate to prettier async APIs (#40668) @Janpot

apps/pigment-css-next-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@types/node": "^20.16.5",
2828
"@types/react": "^18.3.4",
2929
"@types/react-dom": "^18.3.0",
30-
"eslint": "^8.57.0",
30+
"eslint": "^8.57.1",
3131
"typescript": "^5.5.4"
3232
},
3333
"nx": {

apps/pigment-css-vite-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@mui/system": "workspace:^",
1818
"@mui/utils": "workspace:^",
1919
"clsx": "^2.1.1",
20-
"playwright": "^1.47.1",
20+
"playwright": "^1.47.2",
2121
"react": "^18.3.1",
2222
"react-dom": "^18.3.1",
2323
"react-error-boundary": "^4.0.13",
@@ -34,7 +34,7 @@
3434
"@vitejs/plugin-react": "^4.3.1",
3535
"postcss": "^8.4.47",
3636
"postcss-combine-media-query": "^1.0.1",
37-
"vite": "5.4.6",
37+
"vite": "5.4.8",
3838
"vite-plugin-node-polyfills": "0.22.0",
3939
"vite-plugin-pages": "^0.32.3"
4040
},

apps/pigment-css-vite-app/src/pages/fixtures/index.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ export default function Layout() {
1717
);
1818

1919
const demo = new URLSearchParams(location.search).get('demo');
20-
const fixturesRoutes = (matchedRoute?.route.children ?? []).filter(
21-
(item) => !!item.path && item.path !== 'index.test',
22-
);
20+
const fixturesRoutes = (matchedRoute?.route.children ?? []).filter((item) => !!item.path);
2321

2422
const demosRoutes = (materialUIRoute?.route.children ?? []).filter(
2523
(item) => !!item.path && !item.path.includes('react-pagination'),

apps/pigment-css-vite-app/vite.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,10 @@ export default defineConfig({
4343
sourceMap: true,
4444
displayName: true,
4545
}),
46-
Pages(),
4746
splitVendorChunkPlugin(),
47+
Pages({
48+
exclude: ['**/*.test.*'],
49+
}),
4850
nodePolyfills(),
4951
],
5052
});

benchmark/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"express": "^4.19.2",
2626
"fs-extra": "^11.2.0",
2727
"jss": "^10.10.0",
28-
"playwright": "^1.47.1",
28+
"playwright": "^1.47.2",
2929
"prop-types": "^15.8.1",
3030
"react": "^18.3.1",
3131
"react-dom": "^18.3.1",
@@ -37,6 +37,6 @@
3737
"styled-components": "^6.1.13",
3838
"styled-system": "^5.1.5",
3939
"theme-ui": "^0.16.2",
40-
"webpack": "^5.94.0"
40+
"webpack": "^5.95.0"
4141
}
4242
}

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const StyledBackdrop = styled(Backdrop)`
124124
`;
125125

126126
const style = {
127-
position: 'absolute' as 'absolute',
127+
position: 'absolute',
128128
top: '50%',
129129
left: '50%',
130130
transform: 'translate(-50%, -50%)',

0 commit comments

Comments
 (0)