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

[material-ui][pigment-css] Support project without enabling CSS variables #44171

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions packages/mui-material/src/styles/createTheme.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -561,4 +561,12 @@ describe('createTheme', () => {
],
).to.equal('5 7 10');
});

it('should have `toRuntimeSource` for integrating with Pigment CSS', () => {
const theme = createTheme();
expect(typeof theme.toRuntimeSource).to.equal('function');

const themeCssVars = createTheme({ cssVariables: true });
expect(typeof themeCssVars.toRuntimeSource).to.equal('function');
});
});
2 changes: 2 additions & 0 deletions packages/mui-material/src/styles/createThemeNoVars.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import createTypography from './createTypography';
import shadows from './shadows';
import createTransitions from './createTransitions';
import zIndex from './zIndex';
import { stringifyTheme } from './stringifyTheme';

function createThemeNoVars(options = {}, ...args) {
const {
Expand Down Expand Up @@ -117,6 +118,7 @@ function createThemeNoVars(options = {}, ...args) {
theme: this,
});
};
muiTheme.toRuntimeSource = stringifyTheme; // for Pigment CSS integration

return muiTheme;
}
Expand Down
Loading