-
-
Notifications
You must be signed in to change notification settings - Fork 32.7k
Closed
Labels
package: pigment-cssSpecific to Pigment CSS.Specific to Pigment CSS.scope: sliderChanges related to the slider.Changes related to the slider.type: regressionA bug, but worse, it used to behave as expected.A bug, but worse, it used to behave as expected.
Description
Steps to reproduce
Link to live example: (example on stackblitz)
Steps:
- Update to MUI v.5.15.14 or 5.15.15
- Use theme provider with custom theme
- Setup palette in custom theme with nested fields like custom.main.blue.dark in the example below
export const theme = createTheme({
palette: {
primary: {
main: '#FFCC00',
dark: '#FFCC00',
},
secondary: {
main: '#FFCC00',
dark: '#FFCC00',
},
custom: {
// Error when nesting custom colors
main: {
blue: {
dark: '#FFCC00',
},
},
// The following doesn't lead to error
// main: '#ffcc00',
},
},
});- Add Slider component to your page
<Slider aria-label={"Number range"} min={0} max={1234} /> - Load the page in your browser
Current behavior
I get the following error when trying to use Slider within the ThemeProvider with custom theme
import { Slider } from "@mui/material";
... some code
<Slider aria-label={"Number range"} min={0} max={1234} />
... some code
gives me the following error message in the console
⨯ node_modules\@mui\system\colorManipulator.js (78:0) @ decomposeColor
⨯ TypeError: color.charAt is not a function
at Array.map (<anonymous>)
or on StackBlitz
Error in /turbo_modules/@mui/[email protected]/colorManipulator.js (78:13)
color.charAt is not a function
and the following in my browser
Unhandled Runtime Error
TypeError: color.charAt is not a function
Expected behavior
No errors occurs when using palette with nested fields in my custom theme.
Context
No response
Your environment
npx @mui/envinfo
System:
OS: Windows 11 10.0.22631
Binaries:
Node: 21.6.1 - ~\.nvm\versions\node\v21.6.1\bin\node.EXE
npm: 10.2.4 - ~\.nvm\versions\node\v21.6.1\bin\npm.CMD
pnpm: Not Found
Browsers:
Chrome: Not Found
Edge: Chromium (123.0.2420.65)
npmPackages:
@emotion/react: ^11.11.3 => 11.11.4
@emotion/styled: ^11.11.0 => 11.11.5
@mui/base: ^5.0.0-beta.31 => 5.0.0-beta.40
@mui/core-downloads-tracker: 5.15.15
@mui/icons-material: ^5.15.13 => 5.15.15
@mui/material: ^5.15.15 => 5.15.15
@mui/material-nextjs: ^5.15.11 => 5.15.11
@mui/private-theming: 5.15.14
@mui/styled-engine: 5.15.14
@mui/system: ^5.15.13 => 5.15.15
@mui/types: ^7.2.13 => 7.2.14
@mui/utils: 5.15.14
@mui/x-date-pickers: ^6.19.7 => 6.19.8
@types/react: ^18.2.66 => 18.2.74
react: ^18.2.0 => 18.2.0
react-dom: ^18.2.0 => 18.2.0
styled-components: ^6.1.8 => 6.1.8
typescript: ^5.4.2 => 5.4.3
I use Firefox and Chrome browsers.
Search keywords: color.charAt, Slider, colorManipulator, theme, palette, ThemeProvider
Metadata
Metadata
Assignees
Labels
package: pigment-cssSpecific to Pigment CSS.Specific to Pigment CSS.scope: sliderChanges related to the slider.Changes related to the slider.type: regressionA bug, but worse, it used to behave as expected.A bug, but worse, it used to behave as expected.
