@mui/material 5.8.1 → 5.8.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Alert/Alert.js +3 -1
- package/Autocomplete/autocompleteClasses.d.ts +1 -1
- package/Button/buttonClasses.d.ts +24 -0
- package/Button/buttonClasses.js +1 -1
- package/CHANGELOG.md +217 -8
- package/Checkbox/Checkbox.js +4 -4
- package/Grid/Grid.d.ts +73 -52
- package/Grid/Grid.js +94 -40
- package/Grow/Grow.js +4 -4
- package/Hidden/withWidth.js +0 -2
- package/InputLabel/InputLabel.d.ts +5 -0
- package/InputLabel/InputLabel.js +6 -0
- package/Link/Link.js +10 -17
- package/Link/getTextDecoration.d.ts +15 -0
- package/Link/getTextDecoration.js +29 -0
- package/Popover/Popover.d.ts +7 -0
- package/Popover/index.js +1 -0
- package/README.md +13 -12
- package/Slider/Slider.d.ts +3 -1
- package/Slider/Slider.js +23 -8
- package/Snackbar/Snackbar.js +6 -20
- package/Stack/Stack.js +1 -1
- package/StepIcon/StepIcon.js +2 -1
- package/Tab/Tab.d.ts +0 -1
- package/Tabs/Tabs.js +16 -0
- package/index.js +1 -1
- package/legacy/Alert/Alert.js +3 -1
- package/legacy/Button/buttonClasses.js +1 -1
- package/legacy/Checkbox/Checkbox.js +4 -4
- package/legacy/Grid/Grid.js +97 -48
- package/legacy/Grow/Grow.js +4 -4
- package/legacy/Hidden/withWidth.js +0 -2
- package/legacy/InputLabel/InputLabel.js +6 -0
- package/legacy/Link/Link.js +10 -17
- package/legacy/Link/getTextDecoration.js +28 -0
- package/legacy/Popover/index.js +1 -0
- package/legacy/Slider/Slider.js +23 -8
- package/legacy/Snackbar/Snackbar.js +6 -21
- package/legacy/Stack/Stack.js +2 -1
- package/legacy/StepIcon/StepIcon.js +2 -1
- package/legacy/Tabs/Tabs.js +16 -0
- package/legacy/index.js +1 -1
- package/legacy/styles/CssVarsProvider.js +3 -0
- package/modern/Alert/Alert.js +3 -1
- package/modern/Button/buttonClasses.js +1 -1
- package/modern/Checkbox/Checkbox.js +4 -4
- package/modern/Grid/Grid.js +94 -40
- package/modern/Grow/Grow.js +4 -4
- package/modern/Hidden/withWidth.js +0 -2
- package/modern/InputLabel/InputLabel.js +6 -0
- package/modern/Link/Link.js +10 -17
- package/modern/Link/getTextDecoration.js +29 -0
- package/modern/Popover/index.js +1 -0
- package/modern/Slider/Slider.js +23 -8
- package/modern/Snackbar/Snackbar.js +6 -20
- package/modern/Stack/Stack.js +1 -1
- package/modern/StepIcon/StepIcon.js +2 -1
- package/modern/Tabs/Tabs.js +16 -0
- package/modern/index.js +1 -1
- package/modern/styles/CssVarsProvider.js +3 -0
- package/node/Alert/Alert.js +3 -1
- package/node/Button/buttonClasses.js +1 -1
- package/node/Checkbox/Checkbox.js +4 -4
- package/node/Grid/Grid.js +95 -40
- package/node/Grow/Grow.js +4 -4
- package/node/Hidden/withWidth.js +0 -3
- package/node/InputLabel/InputLabel.js +6 -0
- package/node/Link/Link.js +12 -20
- package/node/Link/getTextDecoration.js +39 -0
- package/node/Popover/index.js +13 -3
- package/node/Slider/Slider.js +23 -8
- package/node/Snackbar/Snackbar.js +6 -18
- package/node/Stack/Stack.js +1 -1
- package/node/StepIcon/StepIcon.js +2 -1
- package/node/Tabs/Tabs.js +16 -0
- package/node/index.js +1 -1
- package/node/styles/CssVarsProvider.js +3 -0
- package/package.json +6 -7
- package/styles/CssVarsProvider.js +3 -0
- package/umd/material-ui.development.js +291 -227
- package/umd/material-ui.production.min.js +21 -21
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/material",
|
|
3
|
-
"version": "5.8.
|
|
3
|
+
"version": "5.8.4",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "React components that implement Google's Material Design.",
|
|
@@ -46,14 +46,13 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@babel/runtime": "^7.17.2",
|
|
49
|
-
"@mui/base": "5.0.0-alpha.
|
|
50
|
-
"@mui/system": "^5.8.
|
|
51
|
-
"@mui/types": "^7.1.
|
|
52
|
-
"@mui/utils": "^5.8.
|
|
49
|
+
"@mui/base": "5.0.0-alpha.85",
|
|
50
|
+
"@mui/system": "^5.8.4",
|
|
51
|
+
"@mui/types": "^7.1.4",
|
|
52
|
+
"@mui/utils": "^5.8.4",
|
|
53
53
|
"@types/react-transition-group": "^4.4.4",
|
|
54
54
|
"clsx": "^1.1.1",
|
|
55
|
-
"csstype": "^3.0
|
|
56
|
-
"hoist-non-react-statics": "^3.3.2",
|
|
55
|
+
"csstype": "^3.1.0",
|
|
57
56
|
"prop-types": "^15.8.1",
|
|
58
57
|
"react-is": "^17.0.2",
|
|
59
58
|
"react-transition-group": "^4.4.2"
|
|
@@ -11,6 +11,9 @@ const {
|
|
|
11
11
|
getInitColorSchemeScript
|
|
12
12
|
} = createCssVarsProvider({
|
|
13
13
|
theme: defaultTheme,
|
|
14
|
+
attribute: 'data-mui-color-scheme',
|
|
15
|
+
modeStorageKey: 'mui-mode',
|
|
16
|
+
colorSchemeStorageKey: 'mui-color-scheme',
|
|
14
17
|
defaultColorScheme: {
|
|
15
18
|
light: 'light',
|
|
16
19
|
dark: 'dark'
|