-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
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] Remove use client
from the index styles
#41131
Closed
Closed
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
eaa0322
remove use-client
siriwatknp 42cc95b
remove use-client
siriwatknp ef34c3c
revert
siriwatknp 4fd57a1
fix getInitColorSchemeScript
siriwatknp 5bfb29d
revert
siriwatknp 704b50d
run prettier
siriwatknp b307f0b
Merge branch 'master' of https://github.com/mui/material-ui into fix/…
siriwatknp 914f8d6
add react import
siriwatknp File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
'use client'; | ||
import createTheme from './createTheme'; | ||
|
||
const defaultTheme = createTheme(); | ||
|
29 changes: 29 additions & 0 deletions
29
packages/mui-material/src/styles/getInitColorSchemeScript.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// do not remove the following import (https://github.com/microsoft/TypeScript/issues/29808#issuecomment-1320713018) | ||
/* eslint-disable @typescript-eslint/no-unused-vars */ | ||
// @ts-ignore | ||
import * as React from 'react'; | ||
import { getInitColorSchemeScript as systemGetInitColorSchemeScript } from '@mui/system/cssVars'; | ||
|
||
const ATTRIBUTE = 'data-mui-color-scheme'; | ||
const MODE_KEY = 'mui-mode'; | ||
const COLOR_SCHEME_KEY = 'mui-color-scheme'; | ||
|
||
export const CONSTANT = { | ||
ATTRIBUTE, | ||
MODE_KEY, | ||
COLOR_SCHEME_KEY, | ||
}; | ||
|
||
export default function getInitColorSchemeScript( | ||
...params: Parameters<typeof systemGetInitColorSchemeScript> | ||
) { | ||
return systemGetInitColorSchemeScript({ | ||
attribute: ATTRIBUTE, | ||
colorSchemeStorageKey: COLOR_SCHEME_KEY, | ||
defaultMode: 'light', | ||
defaultLightColorScheme: 'light', | ||
defaultDarkColorScheme: 'dark', | ||
modeStorageKey: MODE_KEY, | ||
...params, | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dead logic?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Required, see https://ci.codesandbox.io/status/mui/material-ui/pr/41131/builds/473769.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah right, @Janpot left a comment about this above. The .d.ts file generated https://unpkg.com/browse/@mui/[email protected]/styles/CssVarsProvider.d.ts needs this import.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would the following work as well without the
@ts-ignore
?/// <reference types="react" />