diff --git a/packages/mui-material/src/Paper/Paper.test.js b/packages/mui-material/src/Paper/Paper.test.js
index 0539834b7a51b6..88ca04d6785a4b 100644
--- a/packages/mui-material/src/Paper/Paper.test.js
+++ b/packages/mui-material/src/Paper/Paper.test.js
@@ -1,7 +1,11 @@
import * as React from 'react';
import { expect } from 'chai';
import PropTypes from 'prop-types';
-import { createRenderer, strictModeDoubleLoggingSuppressed } from '@mui/internal-test-utils';
+import {
+ createRenderer,
+ strictModeDoubleLoggingSuppressed,
+ screen,
+} from '@mui/internal-test-utils';
import Paper, { paperClasses as classes } from '@mui/material/Paper';
import { createTheme, ThemeProvider } from '@mui/material/styles';
import describeConformance from '../../test/describeConformance';
@@ -110,4 +114,33 @@ describe('', () => {
]);
});
});
+
+ it('should have no boxShadow or background-image on Paper with elevation 0 in dark mode using CSS variables', function test() {
+ if (/jsdom/.test(window.navigator.userAgent)) {
+ this.skip();
+ }
+
+ const theme = createTheme({
+ cssVariables: true,
+ colorSchemes: {
+ dark: true,
+ },
+ defaultColorScheme: 'dark',
+ });
+
+ render(
+
+
+ elevation=23
+
+
+ ,
+ );
+
+ const childPaper = screen.getByTestId('child');
+ expect(childPaper).toHaveComputedStyle({
+ boxShadow: 'none',
+ backgroundImage: 'none',
+ });
+ });
});
diff --git a/packages/mui-material/src/styles/createColorScheme.ts b/packages/mui-material/src/styles/createColorScheme.ts
index 58815c7e9e7718..79c549862b4562 100644
--- a/packages/mui-material/src/styles/createColorScheme.ts
+++ b/packages/mui-material/src/styles/createColorScheme.ts
@@ -4,7 +4,7 @@ import getOverlayAlpha from './getOverlayAlpha';
const defaultDarkOverlays = [...Array(25)].map((_, index) => {
if (index === 0) {
- return undefined;
+ return 'none';
}
const overlay = getOverlayAlpha(index);
return `linear-gradient(rgba(255 255 255 / ${overlay}), rgba(255 255 255 / ${overlay}))`;
diff --git a/packages/mui-material/src/styles/excludeVariablesFromRoot.test.ts b/packages/mui-material/src/styles/excludeVariablesFromRoot.test.ts
index d8d14001f55a8f..319bdd8350a434 100644
--- a/packages/mui-material/src/styles/excludeVariablesFromRoot.test.ts
+++ b/packages/mui-material/src/styles/excludeVariablesFromRoot.test.ts
@@ -3,6 +3,7 @@ import excludeVariablesFromRoot from './excludeVariablesFromRoot';
describe('excludeVariablesFromRoot', () => {
it('should return true', () => {
+ expect(excludeVariablesFromRoot('mui').includes(`--mui-overlays-0`)).to.equal(true);
expect(excludeVariablesFromRoot('mui').includes(`--mui-overlays-1`)).to.equal(true);
expect(excludeVariablesFromRoot('mui').includes(`--mui-overlays-2`)).to.equal(true);
expect(excludeVariablesFromRoot('mui').includes(`--mui-overlays-3`)).to.equal(true);
diff --git a/packages/mui-material/src/styles/excludeVariablesFromRoot.ts b/packages/mui-material/src/styles/excludeVariablesFromRoot.ts
index 1c558562693f46..f24ce2e85ea809 100644
--- a/packages/mui-material/src/styles/excludeVariablesFromRoot.ts
+++ b/packages/mui-material/src/styles/excludeVariablesFromRoot.ts
@@ -2,8 +2,8 @@
* @internal These variables should not appear in the :root stylesheet when the `defaultColorScheme="dark"`
*/
const excludeVariablesFromRoot = (cssVarPrefix?: string) => [
- ...[...Array(24)].map(
- (_, index) => `--${cssVarPrefix ? `${cssVarPrefix}-` : ''}overlays-${index + 1}`,
+ ...[...Array(25)].map(
+ (_, index) => `--${cssVarPrefix ? `${cssVarPrefix}-` : ''}overlays-${index}`,
),
`--${cssVarPrefix ? `${cssVarPrefix}-` : ''}palette-AppBar-darkBg`,
`--${cssVarPrefix ? `${cssVarPrefix}-` : ''}palette-AppBar-darkColor`,
diff --git a/packages/mui-material/src/styles/extendTheme.test.js b/packages/mui-material/src/styles/extendTheme.test.js
index 94ca22576a7cb0..f90a8f4c922066 100644
--- a/packages/mui-material/src/styles/extendTheme.test.js
+++ b/packages/mui-material/src/styles/extendTheme.test.js
@@ -345,14 +345,14 @@ describe('extendTheme', () => {
const theme = extendTheme({ defaultColorScheme: 'dark' });
expect(theme.colorSchemes.dark.overlays).to.have.length(25);
- expect(theme.colorSchemes.dark.overlays[0]).to.equal(undefined);
+ expect(theme.colorSchemes.dark.overlays[0]).to.equal('none');
expect(theme.colorSchemes.dark.overlays[24]).to.equal(
'linear-gradient(rgba(255 255 255 / 0.165), rgba(255 255 255 / 0.165))',
);
});
it('should override the array as expected', () => {
- const overlays = Array(24).fill('none');
+ const overlays = Array(25).fill('none');
const theme = extendTheme({
defaultColorScheme: 'dark',
colorSchemes: { dark: { overlays } },
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 8526baf0596fe0..425d262fb1b9d1 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -356,7 +356,7 @@ importers:
version: link:../../packages/mui-utils/build
next:
specifier: latest
- version: 14.2.9(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 14.2.11(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -366,7 +366,7 @@ importers:
devDependencies:
'@pigment-css/nextjs-plugin':
specifier: 0.0.22
- version: 0.0.22(@types/react@18.3.4)(next@14.2.9(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ version: 0.0.22(@types/react@18.3.4)(next@14.2.11(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
'@types/node':
specifier: ^20.16.5
version: 20.16.5
@@ -652,7 +652,7 @@ importers:
version: 9.7.4(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@toolpad/core':
specifier: ^0.5.2
- version: 0.5.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material@packages+mui-material+build)(@types/node@20.16.5)(@types/react@18.3.4)(happy-dom@12.10.3)(jsdom@24.0.0)(next@14.2.9(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(terser@5.29.2)
+ version: 0.5.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material@packages+mui-material+build)(@types/node@20.16.5)(@types/react@18.3.4)(happy-dom@12.10.3)(jsdom@24.0.0)(next@14.2.11(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(terser@5.29.2)
autoprefixer:
specifier: ^10.4.20
version: 10.4.20(postcss@8.4.45)
@@ -733,7 +733,7 @@ importers:
version: 5.1.2(@mui/material@packages+mui-material+build)(react@18.3.1)
next:
specifier: ^14.2.8
- version: 14.2.9(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 14.2.11(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
notistack:
specifier: 3.0.1
version: 3.0.1(csstype@3.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -1457,7 +1457,7 @@ importers:
version: 18.3.4
next:
specifier: ^14.2.8
- version: 14.2.9(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 14.2.11(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -1631,7 +1631,7 @@ importers:
version: 4.17.21
next:
specifier: ^14.2.8
- version: 14.2.9(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 14.2.11(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react:
specifier: ^18.3.1
version: 18.3.1
@@ -4401,25 +4401,31 @@ packages:
resolution: {integrity: sha512-2KYkyluThg1AKfd0JWI7FzpS4A/fzVVGYIf6AM4ydWyNj8eI/86GQVLeRgDoH7CNOxt243R5tutWlmHpVq0/Ew==}
engines: {node: '>=18.0.0'}
+ '@next/env@14.2.11':
+ resolution: {integrity: sha512-HYsQRSIXwiNqvzzYThrBwq6RhXo3E0n8j8nQnAs8i4fCEo2Zf/3eS0IiRA8XnRg9Ha0YnpkyJZIZg1qEwemrHw==}
+
'@next/env@14.2.8':
resolution: {integrity: sha512-L44a+ynqkolyNBnYfF8VoCiSrjSZWgEHYKkKLGcs/a80qh7AkfVUD/MduVPgdsWZ31tgROR+yJRA0PZjSVBXWQ==}
- '@next/env@14.2.9':
- resolution: {integrity: sha512-hnDAoDPMii31V0ivibI8p6b023jOF1XblWTVjsDUoZKwnZlaBtJFZKDwFqi22R8r9i6W08dThUWU7Bsh2Rg8Ww==}
-
'@next/eslint-plugin-next@14.2.8':
resolution: {integrity: sha512-ue5vcq9Fjk3asACRDrzYjcGMEN7pMMDQ5zUD+FenkqvlPCVUD1x7PxBNOLfPYDZOrk/Vnl4GHmjj2mZDqPW8TQ==}
+ '@next/swc-darwin-arm64@14.2.11':
+ resolution: {integrity: sha512-eiY9u7wEJZWp/Pga07Qy3ZmNEfALmmSS1HtsJF3y1QEyaExu7boENz11fWqDmZ3uvcyAxCMhTrA1jfVxITQW8g==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
'@next/swc-darwin-arm64@14.2.8':
resolution: {integrity: sha512-1VrQlG8OzdyvvGZhGJFnaNE2P10Jjy/2FopnqbY0nSa/gr8If3iINxvOEW3cmVeoAYkmW0RsBazQecA2dBFOSw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-arm64@14.2.9':
- resolution: {integrity: sha512-/kfQifl3uLYi3DlwFlzCkgxe6fprJNLzzTUFknq3M5wGYicDIbdGlxUl6oHpVLJpBB/CBY3Y//gO6alz/K4NWA==}
+ '@next/swc-darwin-x64@14.2.11':
+ resolution: {integrity: sha512-lnB0zYCld4yE0IX3ANrVMmtAbziBb7MYekcmR6iE9bujmgERl6+FK+b0MBq0pl304lYe7zO4yxJus9H/Af8jbg==}
engines: {node: '>= 10'}
- cpu: [arm64]
+ cpu: [x64]
os: [darwin]
'@next/swc-darwin-x64@14.2.8':
@@ -4428,11 +4434,11 @@ packages:
cpu: [x64]
os: [darwin]
- '@next/swc-darwin-x64@14.2.9':
- resolution: {integrity: sha512-tK/RyhCmOCiXQ9IVdFrBbZOf4/1+0RSuJkebXU2uMEsusS51TjIJO4l8ZmEijH9gZa0pJClvmApRHi7JuBqsRw==}
+ '@next/swc-linux-arm64-gnu@14.2.11':
+ resolution: {integrity: sha512-Ulo9TZVocYmUAtzvZ7FfldtwUoQY0+9z3BiXZCLSUwU2bp7GqHA7/bqrfsArDlUb2xeGwn3ZuBbKtNK8TR0A8w==}
engines: {node: '>= 10'}
- cpu: [x64]
- os: [darwin]
+ cpu: [arm64]
+ os: [linux]
'@next/swc-linux-arm64-gnu@14.2.8':
resolution: {integrity: sha512-ta2sfVzbOpTbgBrF9HM5m+U58dv6QPuwU4n5EX4LLyCJGKc433Z0D9h9gay/HSOjLEXJ2fJYrMP5JYYbHdxhtw==}
@@ -4440,8 +4446,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-gnu@14.2.9':
- resolution: {integrity: sha512-tS5eqwsp2nO7mzywRUuFYmefNZsUKM/mTG3exK2jIHv9TEVklE1SByB1KMhFkqlit1PxS9YK1tV8BOV90Wpbrw==}
+ '@next/swc-linux-arm64-musl@14.2.11':
+ resolution: {integrity: sha512-fH377DnKGyUnkWlmUpFF1T90m0dADBfK11dF8sOQkiELF9M+YwDRCGe8ZyDzvQcUd20Rr5U7vpZRrAxKwd3Rzg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -4452,10 +4458,10 @@ packages:
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-musl@14.2.9':
- resolution: {integrity: sha512-8svpeTFNAMTUMKQbEzE8qRAwl9o7mNBv7LR1bmSkQvo1oy4WrNyZbhWsldOiKrc4mZ5dfQkGYsI9T75mIFMfeA==}
+ '@next/swc-linux-x64-gnu@14.2.11':
+ resolution: {integrity: sha512-a0TH4ZZp4NS0LgXP/488kgvWelNpwfgGTUCDXVhPGH6pInb7yIYNgM4kmNWOxBFt+TIuOH6Pi9NnGG4XWFUyXQ==}
engines: {node: '>= 10'}
- cpu: [arm64]
+ cpu: [x64]
os: [linux]
'@next/swc-linux-x64-gnu@14.2.8':
@@ -4464,8 +4470,8 @@ packages:
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-gnu@14.2.9':
- resolution: {integrity: sha512-0HNulLWpKTB7H5BhHCkEhcRAnWUHeAYCftrrGw3QC18+ZywTdAoPv/zEqKy/0adqt+ks4JDdlgSQ1lNKOKjo0A==}
+ '@next/swc-linux-x64-musl@14.2.11':
+ resolution: {integrity: sha512-DYYZcO4Uir2gZxA4D2JcOAKVs8ZxbOFYPpXSVIgeoQbREbeEHxysVsg3nY4FrQy51e5opxt5mOHl/LzIyZBoKA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -4476,11 +4482,11 @@ packages:
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-musl@14.2.9':
- resolution: {integrity: sha512-hhVFViPHLAVUJRNtwwm609p9ozWajOmRvzOZzzKXgiVGwx/CALxlMUeh+M+e0Zj6orENhWLZeilOPHpptuENsA==}
+ '@next/swc-win32-arm64-msvc@14.2.11':
+ resolution: {integrity: sha512-PwqHeKG3/kKfPpM6of1B9UJ+Er6ySUy59PeFu0Un0LBzJTRKKAg2V6J60Yqzp99m55mLa+YTbU6xj61ImTv9mg==}
engines: {node: '>= 10'}
- cpu: [x64]
- os: [linux]
+ cpu: [arm64]
+ os: [win32]
'@next/swc-win32-arm64-msvc@14.2.8':
resolution: {integrity: sha512-gbxfUaSPV7EyUobpavida2Hwi62GhSJaSg7iBjmBWoxkxlmETOD7U4tWt763cGIsyE6jM7IoNavq0BXqwdW2QA==}
@@ -4488,10 +4494,10 @@ packages:
cpu: [arm64]
os: [win32]
- '@next/swc-win32-arm64-msvc@14.2.9':
- resolution: {integrity: sha512-p/v6XlOdrk06xfN9z4evLNBqftVQUWiyduQczCwSj7hNh8fWTbzdVxsEiNOcajMXJbQiaX/ZzZdFgKVmmJnnGQ==}
+ '@next/swc-win32-ia32-msvc@14.2.11':
+ resolution: {integrity: sha512-0U7PWMnOYIvM74GY6rbH6w7v+vNPDVH1gUhlwHpfInJnNe5LkmUZqhp7FNWeNa5wbVgRcRi1F1cyxp4dmeLLvA==}
engines: {node: '>= 10'}
- cpu: [arm64]
+ cpu: [ia32]
os: [win32]
'@next/swc-win32-ia32-msvc@14.2.8':
@@ -4500,10 +4506,10 @@ packages:
cpu: [ia32]
os: [win32]
- '@next/swc-win32-ia32-msvc@14.2.9':
- resolution: {integrity: sha512-IcW9dynWDjMK/0M05E3zopbRen7v0/yEaMZbHFOSS1J/w+8YG3jKywOGZWNp/eCUVtUUXs0PW+7Lpz8uLu+KQA==}
+ '@next/swc-win32-x64-msvc@14.2.11':
+ resolution: {integrity: sha512-gQpS7mcgovWoaTG1FbS5/ojF7CGfql1Q0ZLsMrhcsi2Sr9HEqsUZ70MPJyaYBXbk6iEAP7UXMD9HC8KY1qNwvA==}
engines: {node: '>= 10'}
- cpu: [ia32]
+ cpu: [x64]
os: [win32]
'@next/swc-win32-x64-msvc@14.2.8':
@@ -4512,12 +4518,6 @@ packages:
cpu: [x64]
os: [win32]
- '@next/swc-win32-x64-msvc@14.2.9':
- resolution: {integrity: sha512-gcbpoXyWZdVOBgNa5BRzynrL5UR1nb2ZT38yKgnphYU9UHjeecnylMHntrQiMg/QtONDcJPFC/PmsS47xIRYoA==}
- engines: {node: '>= 10'}
- cpu: [x64]
- os: [win32]
-
'@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3':
resolution: {integrity: sha512-s88O1aVtXftvp5bCPB7WnmXc5IwOZZ7YPuwNPt+GtOOXpPvad1LfbmjYv+qII7zP6RU2QGnqve27dnLycEnyEQ==}
@@ -9914,8 +9914,8 @@ packages:
nested-error-stacks@2.1.1:
resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==}
- next@14.2.8:
- resolution: {integrity: sha512-EyEyJZ89r8C5FPlS/401AiF3O8jeMtHIE+bLom9MwcdWJJFBgRl+MR/2VgO0v5bI6tQORNY0a0DR5sjpFNrjbg==}
+ next@14.2.11:
+ resolution: {integrity: sha512-8MDFqHBhdmR2wdfaWc8+lW3A/hppFe1ggQ9vgIu/g2/2QEMYJrPoQP6b+VNk56gIug/bStysAmrpUKtj3XN8Bw==}
engines: {node: '>=18.17.0'}
hasBin: true
peerDependencies:
@@ -9932,8 +9932,8 @@ packages:
sass:
optional: true
- next@14.2.9:
- resolution: {integrity: sha512-3CzBNo6BuJnRjcQvRw+irnU1WiuJNZEp+dkzkt91y4jeIDN/Emg95F+takSYiLpJ/HkxClVQRyqiTwYce5IVqw==}
+ next@14.2.8:
+ resolution: {integrity: sha512-EyEyJZ89r8C5FPlS/401AiF3O8jeMtHIE+bLom9MwcdWJJFBgRl+MR/2VgO0v5bI6tQORNY0a0DR5sjpFNrjbg==}
engines: {node: '>=18.17.0'}
hasBin: true
peerDependencies:
@@ -15288,68 +15288,68 @@ snapshots:
'@netlify/node-cookies': 0.1.0
urlpattern-polyfill: 8.0.2
- '@next/env@14.2.8': {}
+ '@next/env@14.2.11': {}
- '@next/env@14.2.9': {}
+ '@next/env@14.2.8': {}
'@next/eslint-plugin-next@14.2.8':
dependencies:
glob: 10.3.10
+ '@next/swc-darwin-arm64@14.2.11':
+ optional: true
+
'@next/swc-darwin-arm64@14.2.8':
optional: true
- '@next/swc-darwin-arm64@14.2.9':
+ '@next/swc-darwin-x64@14.2.11':
optional: true
'@next/swc-darwin-x64@14.2.8':
optional: true
- '@next/swc-darwin-x64@14.2.9':
+ '@next/swc-linux-arm64-gnu@14.2.11':
optional: true
'@next/swc-linux-arm64-gnu@14.2.8':
optional: true
- '@next/swc-linux-arm64-gnu@14.2.9':
+ '@next/swc-linux-arm64-musl@14.2.11':
optional: true
'@next/swc-linux-arm64-musl@14.2.8':
optional: true
- '@next/swc-linux-arm64-musl@14.2.9':
+ '@next/swc-linux-x64-gnu@14.2.11':
optional: true
'@next/swc-linux-x64-gnu@14.2.8':
optional: true
- '@next/swc-linux-x64-gnu@14.2.9':
+ '@next/swc-linux-x64-musl@14.2.11':
optional: true
'@next/swc-linux-x64-musl@14.2.8':
optional: true
- '@next/swc-linux-x64-musl@14.2.9':
+ '@next/swc-win32-arm64-msvc@14.2.11':
optional: true
'@next/swc-win32-arm64-msvc@14.2.8':
optional: true
- '@next/swc-win32-arm64-msvc@14.2.9':
+ '@next/swc-win32-ia32-msvc@14.2.11':
optional: true
'@next/swc-win32-ia32-msvc@14.2.8':
optional: true
- '@next/swc-win32-ia32-msvc@14.2.9':
+ '@next/swc-win32-x64-msvc@14.2.11':
optional: true
'@next/swc-win32-x64-msvc@14.2.8':
optional: true
- '@next/swc-win32-x64-msvc@14.2.9':
- optional: true
-
'@nicolo-ribaudo/chokidar-2@2.1.8-no-fsevents.3':
optional: true
@@ -15782,10 +15782,10 @@ snapshots:
'@opentelemetry/api@1.8.0':
optional: true
- '@pigment-css/nextjs-plugin@0.0.22(@types/react@18.3.4)(next@14.2.9(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ '@pigment-css/nextjs-plugin@0.0.22(@types/react@18.3.4)(next@14.2.11(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@pigment-css/unplugin': 0.0.22(@types/react@18.3.4)(react@18.3.1)
- next: 14.2.9(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 14.2.11(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
transitivePeerDependencies:
- '@types/react'
- react
@@ -16572,7 +16572,7 @@ snapshots:
'@theme-ui/css': 0.16.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))
react: 18.3.1
- '@toolpad/core@0.5.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material@packages+mui-material+build)(@types/node@20.16.5)(@types/react@18.3.4)(happy-dom@12.10.3)(jsdom@24.0.0)(next@14.2.9(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(terser@5.29.2)':
+ '@toolpad/core@0.5.2(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@emotion/styled@11.13.0(@emotion/react@11.13.3(@types/react@18.3.4)(react@18.3.1))(@types/react@18.3.4)(react@18.3.1))(@mui/icons-material@packages+mui-icons-material+build)(@mui/material@packages+mui-material+build)(@types/node@20.16.5)(@types/react@18.3.4)(happy-dom@12.10.3)(jsdom@24.0.0)(next@14.2.11(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(terser@5.29.2)':
dependencies:
'@babel/runtime': 7.25.6
'@mui/icons-material': link:packages/mui-icons-material/build
@@ -16585,7 +16585,7 @@ snapshots:
prop-types: 15.8.1
react: 18.3.1
optionalDependencies:
- next: 14.2.9(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 14.2.11(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
transitivePeerDependencies:
- '@edge-runtime/vm'
- '@emotion/react'
@@ -22391,9 +22391,9 @@ snapshots:
nested-error-stacks@2.1.1: {}
- next@14.2.8(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next@14.2.11(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@next/env': 14.2.8
+ '@next/env': 14.2.11
'@swc/helpers': 0.5.5
busboy: 1.6.0
caniuse-lite: 1.0.30001649
@@ -22403,24 +22403,24 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
styled-jsx: 5.1.1(@babel/core@7.25.2)(babel-plugin-macros@3.1.0)(react@18.3.1)
optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.8
- '@next/swc-darwin-x64': 14.2.8
- '@next/swc-linux-arm64-gnu': 14.2.8
- '@next/swc-linux-arm64-musl': 14.2.8
- '@next/swc-linux-x64-gnu': 14.2.8
- '@next/swc-linux-x64-musl': 14.2.8
- '@next/swc-win32-arm64-msvc': 14.2.8
- '@next/swc-win32-ia32-msvc': 14.2.8
- '@next/swc-win32-x64-msvc': 14.2.8
+ '@next/swc-darwin-arm64': 14.2.11
+ '@next/swc-darwin-x64': 14.2.11
+ '@next/swc-linux-arm64-gnu': 14.2.11
+ '@next/swc-linux-arm64-musl': 14.2.11
+ '@next/swc-linux-x64-gnu': 14.2.11
+ '@next/swc-linux-x64-musl': 14.2.11
+ '@next/swc-win32-arm64-msvc': 14.2.11
+ '@next/swc-win32-ia32-msvc': 14.2.11
+ '@next/swc-win32-x64-msvc': 14.2.11
'@opentelemetry/api': 1.8.0
'@playwright/test': 1.46.1
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
- next@14.2.9(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next@14.2.8(@babel/core@7.25.2)(@opentelemetry/api@1.8.0)(@playwright/test@1.46.1)(babel-plugin-macros@3.1.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@next/env': 14.2.9
+ '@next/env': 14.2.8
'@swc/helpers': 0.5.5
busboy: 1.6.0
caniuse-lite: 1.0.30001649
@@ -22430,15 +22430,15 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
styled-jsx: 5.1.1(@babel/core@7.25.2)(babel-plugin-macros@3.1.0)(react@18.3.1)
optionalDependencies:
- '@next/swc-darwin-arm64': 14.2.9
- '@next/swc-darwin-x64': 14.2.9
- '@next/swc-linux-arm64-gnu': 14.2.9
- '@next/swc-linux-arm64-musl': 14.2.9
- '@next/swc-linux-x64-gnu': 14.2.9
- '@next/swc-linux-x64-musl': 14.2.9
- '@next/swc-win32-arm64-msvc': 14.2.9
- '@next/swc-win32-ia32-msvc': 14.2.9
- '@next/swc-win32-x64-msvc': 14.2.9
+ '@next/swc-darwin-arm64': 14.2.8
+ '@next/swc-darwin-x64': 14.2.8
+ '@next/swc-linux-arm64-gnu': 14.2.8
+ '@next/swc-linux-arm64-musl': 14.2.8
+ '@next/swc-linux-x64-gnu': 14.2.8
+ '@next/swc-linux-x64-musl': 14.2.8
+ '@next/swc-win32-arm64-msvc': 14.2.8
+ '@next/swc-win32-ia32-msvc': 14.2.8
+ '@next/swc-win32-x64-msvc': 14.2.8
'@opentelemetry/api': 1.8.0
'@playwright/test': 1.46.1
transitivePeerDependencies: