@mui/material 6.0.0-alpha.3 → 6.0.0-alpha.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.
Files changed (75) hide show
  1. package/CHANGELOG.md +55 -0
  2. package/Checkbox/Checkbox.js +51 -20
  3. package/FormHelperText/FormHelperText.js +18 -8
  4. package/IconButton/IconButton.js +97 -40
  5. package/ImageList/ImageList.js +16 -14
  6. package/ImageListItem/ImageListItem.js +37 -22
  7. package/ImageListItemBar/ImageListItemBar.js +65 -32
  8. package/ListItem/ListItem.js +94 -50
  9. package/ListItemAvatar/ListItemAvatar.js +12 -8
  10. package/ListItemButton/ListItemButton.js +35 -15
  11. package/ListItemSecondaryAction/ListItemSecondaryAction.js +12 -8
  12. package/ListItemText/ListItemText.js +20 -11
  13. package/ListSubheader/ListSubheader.js +44 -19
  14. package/Radio/Radio.js +50 -20
  15. package/Radio/RadioButtonIcon.js +18 -12
  16. package/Rating/Rating.js +71 -37
  17. package/Table/Table.js +11 -6
  18. package/TableCell/TableCell.js +96 -41
  19. package/TableSortLabel/TableSortLabel.js +19 -9
  20. package/Toolbar/Toolbar.js +33 -17
  21. package/Typography/Typography.js +3 -2
  22. package/index.js +1 -1
  23. package/modern/Checkbox/Checkbox.js +51 -20
  24. package/modern/FormHelperText/FormHelperText.js +18 -8
  25. package/modern/IconButton/IconButton.js +97 -40
  26. package/modern/ImageList/ImageList.js +16 -14
  27. package/modern/ImageListItem/ImageListItem.js +37 -22
  28. package/modern/ImageListItemBar/ImageListItemBar.js +65 -32
  29. package/modern/ListItem/ListItem.js +94 -50
  30. package/modern/ListItemAvatar/ListItemAvatar.js +12 -8
  31. package/modern/ListItemButton/ListItemButton.js +35 -15
  32. package/modern/ListItemSecondaryAction/ListItemSecondaryAction.js +12 -8
  33. package/modern/ListItemText/ListItemText.js +20 -11
  34. package/modern/ListSubheader/ListSubheader.js +44 -19
  35. package/modern/Radio/Radio.js +50 -20
  36. package/modern/Radio/RadioButtonIcon.js +18 -12
  37. package/modern/Rating/Rating.js +71 -37
  38. package/modern/Table/Table.js +11 -6
  39. package/modern/TableCell/TableCell.js +96 -41
  40. package/modern/TableSortLabel/TableSortLabel.js +19 -9
  41. package/modern/Toolbar/Toolbar.js +33 -17
  42. package/modern/Typography/Typography.js +3 -2
  43. package/modern/index.js +1 -1
  44. package/modern/styles/experimental_extendTheme.js +2 -1
  45. package/modern/styles/getOverlayAlpha.js +3 -4
  46. package/node/Checkbox/Checkbox.js +54 -23
  47. package/node/FormHelperText/FormHelperText.js +18 -8
  48. package/node/IconButton/IconButton.js +99 -43
  49. package/node/ImageList/ImageList.js +16 -14
  50. package/node/ImageListItem/ImageListItem.js +37 -22
  51. package/node/ImageListItemBar/ImageListItemBar.js +65 -32
  52. package/node/ListItem/ListItem.js +94 -50
  53. package/node/ListItemAvatar/ListItemAvatar.js +12 -8
  54. package/node/ListItemButton/ListItemButton.js +35 -15
  55. package/node/ListItemSecondaryAction/ListItemSecondaryAction.js +12 -8
  56. package/node/ListItemText/ListItemText.js +20 -11
  57. package/node/ListSubheader/ListSubheader.js +44 -19
  58. package/node/Radio/Radio.js +52 -22
  59. package/node/Radio/RadioButtonIcon.js +21 -15
  60. package/node/Rating/Rating.js +71 -37
  61. package/node/Table/Table.js +11 -6
  62. package/node/TableCell/TableCell.js +96 -41
  63. package/node/TableSortLabel/TableSortLabel.js +19 -9
  64. package/node/Toolbar/Toolbar.js +33 -17
  65. package/node/Typography/Typography.js +3 -2
  66. package/node/index.js +1 -1
  67. package/node/styles/experimental_extendTheme.js +1 -0
  68. package/node/styles/getOverlayAlpha.js +4 -5
  69. package/package.json +4 -4
  70. package/styles/experimental_extendTheme.d.ts +2 -0
  71. package/styles/experimental_extendTheme.js +2 -1
  72. package/styles/getOverlayAlpha.d.ts +1 -2
  73. package/styles/getOverlayAlpha.js +3 -4
  74. package/umd/material-ui.development.js +1028 -533
  75. package/umd/material-ui.production.min.js +4 -4
@@ -1,7 +1,7 @@
1
1
  'use client';
2
2
 
3
- import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
4
3
  import _extends from "@babel/runtime/helpers/esm/extends";
4
+ import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
5
5
  const _excluded = ["className"],
6
6
  _excluded2 = ["alignItems", "autoFocus", "button", "children", "className", "component", "components", "componentsProps", "ContainerComponent", "ContainerProps", "dense", "disabled", "disableGutters", "disablePadding", "divider", "focusVisibleClassName", "secondaryAction", "selected", "slotProps", "slots"];
7
7
  import * as React from 'react';
@@ -53,9 +53,8 @@ export const ListItemRoot = styled('div', {
53
53
  slot: 'Root',
54
54
  overridesResolver
55
55
  })(({
56
- theme,
57
- ownerState
58
- }) => _extends({
56
+ theme
57
+ }) => ({
59
58
  display: 'flex',
60
59
  justifyContent: 'flex-start',
61
60
  alignItems: 'center',
@@ -63,25 +62,7 @@ export const ListItemRoot = styled('div', {
63
62
  textDecoration: 'none',
64
63
  width: '100%',
65
64
  boxSizing: 'border-box',
66
- textAlign: 'left'
67
- }, !ownerState.disablePadding && _extends({
68
- paddingTop: 8,
69
- paddingBottom: 8
70
- }, ownerState.dense && {
71
- paddingTop: 4,
72
- paddingBottom: 4
73
- }, !ownerState.disableGutters && {
74
- paddingLeft: 16,
75
- paddingRight: 16
76
- }, !!ownerState.secondaryAction && {
77
- // Add some space to avoid collision as `ListItemSecondaryAction`
78
- // is absolutely positioned.
79
- paddingRight: 48
80
- }), !!ownerState.secondaryAction && {
81
- [`& > .${listItemButtonClasses.root}`]: {
82
- paddingRight: 48
83
- }
84
- }, {
65
+ textAlign: 'left',
85
66
  [`&.${listItemClasses.focusVisible}`]: {
86
67
  backgroundColor: (theme.vars || theme).palette.action.focus
87
68
  },
@@ -93,35 +74,98 @@ export const ListItemRoot = styled('div', {
93
74
  },
94
75
  [`&.${listItemClasses.disabled}`]: {
95
76
  opacity: (theme.vars || theme).palette.action.disabledOpacity
96
- }
97
- }, ownerState.alignItems === 'flex-start' && {
98
- alignItems: 'flex-start'
99
- }, ownerState.divider && {
100
- borderBottom: `1px solid ${(theme.vars || theme).palette.divider}`,
101
- backgroundClip: 'padding-box'
102
- }, ownerState.button && {
103
- transition: theme.transitions.create('background-color', {
104
- duration: theme.transitions.duration.shortest
105
- }),
106
- '&:hover': {
107
- textDecoration: 'none',
108
- backgroundColor: (theme.vars || theme).palette.action.hover,
109
- // Reset on touch devices, it doesn't add specificity
110
- '@media (hover: none)': {
111
- backgroundColor: 'transparent'
112
- }
113
77
  },
114
- [`&.${listItemClasses.selected}:hover`]: {
115
- backgroundColor: theme.vars ? `rgba(${theme.vars.palette.primary.mainChannel} / calc(${theme.vars.palette.action.selectedOpacity} + ${theme.vars.palette.action.hoverOpacity}))` : alpha(theme.palette.primary.main, theme.palette.action.selectedOpacity + theme.palette.action.hoverOpacity),
116
- // Reset on touch devices, it doesn't add specificity
117
- '@media (hover: none)': {
118
- backgroundColor: theme.vars ? `rgba(${theme.vars.palette.primary.mainChannel} / ${theme.vars.palette.action.selectedOpacity})` : alpha(theme.palette.primary.main, theme.palette.action.selectedOpacity)
78
+ variants: [{
79
+ props: ({
80
+ ownerState
81
+ }) => !ownerState.disablePadding,
82
+ style: {
83
+ paddingTop: 8,
84
+ paddingBottom: 8
119
85
  }
120
- }
121
- }, ownerState.hasSecondaryAction && {
122
- // Add some space to avoid collision as `ListItemSecondaryAction`
123
- // is absolutely positioned.
124
- paddingRight: 48
86
+ }, {
87
+ props: ({
88
+ ownerState
89
+ }) => !ownerState.disablePadding && ownerState.dense,
90
+ style: {
91
+ paddingTop: 4,
92
+ paddingBottom: 4
93
+ }
94
+ }, {
95
+ props: ({
96
+ ownerState
97
+ }) => !ownerState.disablePadding && !ownerState.disableGutters,
98
+ style: {
99
+ paddingLeft: 16,
100
+ paddingRight: 16
101
+ }
102
+ }, {
103
+ props: ({
104
+ ownerState
105
+ }) => !ownerState.disablePadding && !!ownerState.secondaryAction,
106
+ style: {
107
+ // Add some space to avoid collision as `ListItemSecondaryAction`
108
+ // is absolutely positioned.
109
+ paddingRight: 48
110
+ }
111
+ }, {
112
+ props: ({
113
+ ownerState
114
+ }) => !!ownerState.secondaryAction,
115
+ style: {
116
+ [`& > .${listItemButtonClasses.root}`]: {
117
+ paddingRight: 48
118
+ }
119
+ }
120
+ }, {
121
+ props: {
122
+ alignItems: 'flex-start'
123
+ },
124
+ style: {
125
+ alignItems: 'flex-start'
126
+ }
127
+ }, {
128
+ props: ({
129
+ ownerState
130
+ }) => ownerState.divider,
131
+ style: {
132
+ borderBottom: `1px solid ${(theme.vars || theme).palette.divider}`,
133
+ backgroundClip: 'padding-box'
134
+ }
135
+ }, {
136
+ props: ({
137
+ ownerState
138
+ }) => ownerState.button,
139
+ style: {
140
+ transition: theme.transitions.create('background-color', {
141
+ duration: theme.transitions.duration.shortest
142
+ }),
143
+ '&:hover': {
144
+ textDecoration: 'none',
145
+ backgroundColor: (theme.vars || theme).palette.action.hover,
146
+ // Reset on touch devices, it doesn't add specificity
147
+ '@media (hover: none)': {
148
+ backgroundColor: 'transparent'
149
+ }
150
+ },
151
+ [`&.${listItemClasses.selected}:hover`]: {
152
+ backgroundColor: theme.vars ? `rgba(${theme.vars.palette.primary.mainChannel} / calc(${theme.vars.palette.action.selectedOpacity} + ${theme.vars.palette.action.hoverOpacity}))` : alpha(theme.palette.primary.main, theme.palette.action.selectedOpacity + theme.palette.action.hoverOpacity),
153
+ // Reset on touch devices, it doesn't add specificity
154
+ '@media (hover: none)': {
155
+ backgroundColor: theme.vars ? `rgba(${theme.vars.palette.primary.mainChannel} / ${theme.vars.palette.action.selectedOpacity})` : alpha(theme.palette.primary.main, theme.palette.action.selectedOpacity)
156
+ }
157
+ }
158
+ }
159
+ }, {
160
+ props: ({
161
+ ownerState
162
+ }) => ownerState.hasSecondaryAction,
163
+ style: {
164
+ // Add some space to avoid collision as `ListItemSecondaryAction`
165
+ // is absolutely positioned.
166
+ paddingRight: 48
167
+ }
168
+ }]
125
169
  }));
126
170
  const ListItemContainer = styled('li', {
127
171
  name: 'MuiListItem',
@@ -1,7 +1,7 @@
1
1
  'use client';
2
2
 
3
- import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
4
3
  import _extends from "@babel/runtime/helpers/esm/extends";
4
+ import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
5
5
  const _excluded = ["className"];
6
6
  import * as React from 'react';
7
7
  import PropTypes from 'prop-types';
@@ -31,14 +31,18 @@ const ListItemAvatarRoot = styled('div', {
31
31
  } = props;
32
32
  return [styles.root, ownerState.alignItems === 'flex-start' && styles.alignItemsFlexStart];
33
33
  }
34
- })(({
35
- ownerState
36
- }) => _extends({
34
+ })({
37
35
  minWidth: 56,
38
- flexShrink: 0
39
- }, ownerState.alignItems === 'flex-start' && {
40
- marginTop: 8
41
- }));
36
+ flexShrink: 0,
37
+ variants: [{
38
+ props: {
39
+ alignItems: 'flex-start'
40
+ },
41
+ style: {
42
+ marginTop: 8
43
+ }
44
+ }]
45
+ });
42
46
 
43
47
  /**
44
48
  * A simple wrapper to apply `List` styles to an `Avatar`.
@@ -44,9 +44,8 @@ const ListItemButtonRoot = styled(ButtonBase, {
44
44
  slot: 'Root',
45
45
  overridesResolver
46
46
  })(({
47
- theme,
48
- ownerState
49
- }) => _extends({
47
+ theme
48
+ }) => ({
50
49
  display: 'flex',
51
50
  flexGrow: 1,
52
51
  justifyContent: 'flex-start',
@@ -87,18 +86,39 @@ const ListItemButtonRoot = styled(ButtonBase, {
87
86
  },
88
87
  [`&.${listItemButtonClasses.disabled}`]: {
89
88
  opacity: (theme.vars || theme).palette.action.disabledOpacity
90
- }
91
- }, ownerState.divider && {
92
- borderBottom: `1px solid ${(theme.vars || theme).palette.divider}`,
93
- backgroundClip: 'padding-box'
94
- }, ownerState.alignItems === 'flex-start' && {
95
- alignItems: 'flex-start'
96
- }, !ownerState.disableGutters && {
97
- paddingLeft: 16,
98
- paddingRight: 16
99
- }, ownerState.dense && {
100
- paddingTop: 4,
101
- paddingBottom: 4
89
+ },
90
+ variants: [{
91
+ props: ({
92
+ ownerState
93
+ }) => ownerState.divider,
94
+ style: {
95
+ borderBottom: `1px solid ${(theme.vars || theme).palette.divider}`,
96
+ backgroundClip: 'padding-box'
97
+ }
98
+ }, {
99
+ props: {
100
+ alignItems: 'flex-start'
101
+ },
102
+ style: {
103
+ alignItems: 'flex-start'
104
+ }
105
+ }, {
106
+ props: ({
107
+ ownerState
108
+ }) => !ownerState.disableGutters,
109
+ style: {
110
+ paddingLeft: 16,
111
+ paddingRight: 16
112
+ }
113
+ }, {
114
+ props: ({
115
+ ownerState
116
+ }) => ownerState.dense,
117
+ style: {
118
+ paddingTop: 4,
119
+ paddingBottom: 4
120
+ }
121
+ }]
102
122
  }));
103
123
  const ListItemButton = /*#__PURE__*/React.forwardRef(function ListItemButton(inProps, ref) {
104
124
  const props = useThemeProps({
@@ -1,7 +1,7 @@
1
1
  'use client';
2
2
 
3
- import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
4
3
  import _extends from "@babel/runtime/helpers/esm/extends";
4
+ import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
5
5
  const _excluded = ["className"];
6
6
  import * as React from 'react';
7
7
  import PropTypes from 'prop-types';
@@ -31,16 +31,20 @@ const ListItemSecondaryActionRoot = styled('div', {
31
31
  } = props;
32
32
  return [styles.root, ownerState.disableGutters && styles.disableGutters];
33
33
  }
34
- })(({
35
- ownerState
36
- }) => _extends({
34
+ })({
37
35
  position: 'absolute',
38
36
  right: 16,
39
37
  top: '50%',
40
- transform: 'translateY(-50%)'
41
- }, ownerState.disableGutters && {
42
- right: 0
43
- }));
38
+ transform: 'translateY(-50%)',
39
+ variants: [{
40
+ props: ({
41
+ ownerState
42
+ }) => ownerState.disableGutters,
43
+ style: {
44
+ right: 0
45
+ }
46
+ }]
47
+ });
44
48
 
45
49
  /**
46
50
  * Must be used as the last child of ListItem to function properly.
@@ -1,7 +1,7 @@
1
1
  'use client';
2
2
 
3
- import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
4
3
  import _extends from "@babel/runtime/helpers/esm/extends";
4
+ import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
5
5
  const _excluded = ["children", "className", "disableTypography", "inset", "primary", "primaryTypographyProps", "secondary", "secondaryTypographyProps"];
6
6
  import * as React from 'react';
7
7
  import PropTypes from 'prop-types';
@@ -41,19 +41,28 @@ const ListItemTextRoot = styled('div', {
41
41
  [`& .${listItemTextClasses.secondary}`]: styles.secondary
42
42
  }, styles.root, ownerState.inset && styles.inset, ownerState.primary && ownerState.secondary && styles.multiline, ownerState.dense && styles.dense];
43
43
  }
44
- })(({
45
- ownerState
46
- }) => _extends({
44
+ })({
47
45
  flex: '1 1 auto',
48
46
  minWidth: 0,
49
47
  marginTop: 4,
50
- marginBottom: 4
51
- }, ownerState.primary && ownerState.secondary && {
52
- marginTop: 6,
53
- marginBottom: 6
54
- }, ownerState.inset && {
55
- paddingLeft: 56
56
- }));
48
+ marginBottom: 4,
49
+ variants: [{
50
+ props: ({
51
+ ownerState
52
+ }) => ownerState.primary && ownerState.secondary,
53
+ style: {
54
+ marginTop: 6,
55
+ marginBottom: 6
56
+ }
57
+ }, {
58
+ props: ({
59
+ ownerState
60
+ }) => ownerState.inset,
61
+ style: {
62
+ paddingLeft: 56
63
+ }
64
+ }]
65
+ });
57
66
  const ListItemText = /*#__PURE__*/React.forwardRef(function ListItemText(inProps, ref) {
58
67
  const props = useThemeProps({
59
68
  props: inProps,
@@ -1,7 +1,7 @@
1
1
  'use client';
2
2
 
3
- import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
4
3
  import _extends from "@babel/runtime/helpers/esm/extends";
4
+ import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
5
5
  const _excluded = ["className", "color", "component", "disableGutters", "disableSticky", "inset"];
6
6
  import * as React from 'react';
7
7
  import PropTypes from 'prop-types';
@@ -35,30 +35,55 @@ const ListSubheaderRoot = styled('li', {
35
35
  return [styles.root, ownerState.color !== 'default' && styles[`color${capitalize(ownerState.color)}`], !ownerState.disableGutters && styles.gutters, ownerState.inset && styles.inset, !ownerState.disableSticky && styles.sticky];
36
36
  }
37
37
  })(({
38
- theme,
39
- ownerState
40
- }) => _extends({
38
+ theme
39
+ }) => ({
41
40
  boxSizing: 'border-box',
42
41
  lineHeight: '48px',
43
42
  listStyle: 'none',
44
43
  color: (theme.vars || theme).palette.text.secondary,
45
44
  fontFamily: theme.typography.fontFamily,
46
45
  fontWeight: theme.typography.fontWeightMedium,
47
- fontSize: theme.typography.pxToRem(14)
48
- }, ownerState.color === 'primary' && {
49
- color: (theme.vars || theme).palette.primary.main
50
- }, ownerState.color === 'inherit' && {
51
- color: 'inherit'
52
- }, !ownerState.disableGutters && {
53
- paddingLeft: 16,
54
- paddingRight: 16
55
- }, ownerState.inset && {
56
- paddingLeft: 72
57
- }, !ownerState.disableSticky && {
58
- position: 'sticky',
59
- top: 0,
60
- zIndex: 1,
61
- backgroundColor: (theme.vars || theme).palette.background.paper
46
+ fontSize: theme.typography.pxToRem(14),
47
+ variants: [{
48
+ props: {
49
+ color: 'primary'
50
+ },
51
+ style: {
52
+ color: (theme.vars || theme).palette.primary.main
53
+ }
54
+ }, {
55
+ props: {
56
+ color: 'inherit'
57
+ },
58
+ style: {
59
+ color: 'inherit'
60
+ }
61
+ }, {
62
+ props: ({
63
+ ownerState
64
+ }) => !ownerState.disableGutters,
65
+ style: {
66
+ paddingLeft: 16,
67
+ paddingRight: 16
68
+ }
69
+ }, {
70
+ props: ({
71
+ ownerState
72
+ }) => ownerState.inset,
73
+ style: {
74
+ paddingLeft: 72
75
+ }
76
+ }, {
77
+ props: ({
78
+ ownerState
79
+ }) => !ownerState.disableSticky,
80
+ style: {
81
+ position: 'sticky',
82
+ top: 0,
83
+ zIndex: 1,
84
+ backgroundColor: (theme.vars || theme).palette.background.paper
85
+ }
86
+ }]
62
87
  }));
63
88
  const ListSubheader = /*#__PURE__*/React.forwardRef(function ListSubheader(inProps, ref) {
64
89
  const props = useThemeProps({
package/Radio/Radio.js CHANGED
@@ -10,14 +10,15 @@ import refType from '@mui/utils/refType';
10
10
  import composeClasses from '@mui/utils/composeClasses';
11
11
  import { alpha } from '@mui/system/colorManipulator';
12
12
  import SwitchBase from '../internal/SwitchBase';
13
- import useThemeProps from '../styles/useThemeProps';
14
13
  import RadioButtonIcon from './RadioButtonIcon';
15
14
  import capitalize from '../utils/capitalize';
16
15
  import createChainedFunction from '../utils/createChainedFunction';
17
16
  import useRadioGroup from '../RadioGroup/useRadioGroup';
18
17
  import radioClasses, { getRadioUtilityClass } from './radioClasses';
19
- import styled, { rootShouldForwardProp } from '../styles/styled';
18
+ import { rootShouldForwardProp } from '../styles/styled';
19
+ import { styled, createUseThemeProps } from '../zero-styled';
20
20
  import { jsx as _jsx } from "react/jsx-runtime";
21
+ const useThemeProps = createUseThemeProps('MuiRadio');
21
22
  const useUtilityClasses = ownerState => {
22
23
  const {
23
24
  classes,
@@ -40,26 +41,55 @@ const RadioRoot = styled(SwitchBase, {
40
41
  return [styles.root, ownerState.size !== 'medium' && styles[`size${capitalize(ownerState.size)}`], styles[`color${capitalize(ownerState.color)}`]];
41
42
  }
42
43
  })(({
43
- theme,
44
- ownerState
45
- }) => _extends({
46
- color: (theme.vars || theme).palette.text.secondary
47
- }, !ownerState.disableRipple && {
48
- '&:hover': {
49
- backgroundColor: theme.vars ? `rgba(${ownerState.color === 'default' ? theme.vars.palette.action.activeChannel : theme.vars.palette[ownerState.color].mainChannel} / ${theme.vars.palette.action.hoverOpacity})` : alpha(ownerState.color === 'default' ? theme.palette.action.active : theme.palette[ownerState.color].main, theme.palette.action.hoverOpacity),
50
- // Reset on touch devices, it doesn't add specificity
51
- '@media (hover: none)': {
52
- backgroundColor: 'transparent'
53
- }
54
- }
55
- }, ownerState.color !== 'default' && {
56
- [`&.${radioClasses.checked}`]: {
57
- color: (theme.vars || theme).palette[ownerState.color].main
58
- }
59
- }, {
44
+ theme
45
+ }) => ({
46
+ color: (theme.vars || theme).palette.text.secondary,
60
47
  [`&.${radioClasses.disabled}`]: {
61
48
  color: (theme.vars || theme).palette.action.disabled
62
- }
49
+ },
50
+ variants: [{
51
+ props: {
52
+ color: 'default',
53
+ disableRipple: false
54
+ },
55
+ style: {
56
+ '&:hover': {
57
+ backgroundColor: theme.vars ? `rgba(${theme.vars.palette.action.activeChannel} / ${theme.vars.palette.action.hoverOpacity})` : alpha(theme.palette.action.active, theme.palette.action.hoverOpacity)
58
+ }
59
+ }
60
+ }, ...Object.entries(theme.palette).filter(([, palette]) => palette.main).map(([color]) => ({
61
+ props: {
62
+ color,
63
+ disableRipple: false
64
+ },
65
+ style: {
66
+ '&:hover': {
67
+ backgroundColor: theme.vars ? `rgba(${theme.vars.palette[color].mainChannel} / ${theme.vars.palette.action.hoverOpacity})` : alpha(theme.palette[color].main, theme.palette.action.hoverOpacity)
68
+ }
69
+ }
70
+ })), ...Object.entries(theme.palette).filter(([, palette]) => palette.main).map(([color]) => ({
71
+ props: {
72
+ color
73
+ },
74
+ style: {
75
+ [`&.${radioClasses.checked}`]: {
76
+ color: (theme.vars || theme).palette[color].main
77
+ }
78
+ }
79
+ })), {
80
+ // Should be last to override other colors
81
+ props: {
82
+ disableRipple: false
83
+ },
84
+ style: {
85
+ // Reset on touch devices, it doesn't add specificity
86
+ '&:hover': {
87
+ '@media (hover: none)': {
88
+ backgroundColor: 'transparent'
89
+ }
90
+ }
91
+ }
92
+ }]
63
93
  }));
64
94
  function areEqualValues(a, b) {
65
95
  if (typeof b === 'object' && b !== null) {
@@ -5,7 +5,8 @@ import * as React from 'react';
5
5
  import PropTypes from 'prop-types';
6
6
  import RadioButtonUncheckedIcon from '../internal/svg-icons/RadioButtonUnchecked';
7
7
  import RadioButtonCheckedIcon from '../internal/svg-icons/RadioButtonChecked';
8
- import styled, { rootShouldForwardProp } from '../styles/styled';
8
+ import { rootShouldForwardProp } from '../styles/styled';
9
+ import { styled } from '../zero-styled';
9
10
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
10
11
  const RadioButtonIconRoot = styled('span', {
11
12
  shouldForwardProp: rootShouldForwardProp
@@ -18,22 +19,27 @@ const RadioButtonIconBackground = styled(RadioButtonUncheckedIcon)({
18
19
  transform: 'scale(1)'
19
20
  });
20
21
  const RadioButtonIconDot = styled(RadioButtonCheckedIcon)(({
21
- theme,
22
- ownerState
23
- }) => _extends({
22
+ theme
23
+ }) => ({
24
24
  left: 0,
25
25
  position: 'absolute',
26
26
  transform: 'scale(0)',
27
27
  transition: theme.transitions.create('transform', {
28
28
  easing: theme.transitions.easing.easeIn,
29
29
  duration: theme.transitions.duration.shortest
30
- })
31
- }, ownerState.checked && {
32
- transform: 'scale(1)',
33
- transition: theme.transitions.create('transform', {
34
- easing: theme.transitions.easing.easeOut,
35
- duration: theme.transitions.duration.shortest
36
- })
30
+ }),
31
+ variants: [{
32
+ props: {
33
+ checked: true
34
+ },
35
+ style: {
36
+ transform: 'scale(1)',
37
+ transition: theme.transitions.create('transform', {
38
+ easing: theme.transitions.easing.easeOut,
39
+ duration: theme.transitions.duration.shortest
40
+ })
41
+ }
42
+ }]
37
43
  }));
38
44
 
39
45
  /**
@@ -62,7 +68,7 @@ function RadioButtonIcon(props) {
62
68
  })]
63
69
  });
64
70
  }
65
- process.env.NODE_ENV !== "production" ? RadioButtonIcon.propTypes = {
71
+ process.env.NODE_ENV !== "production" ? RadioButtonIcon.propTypes /* remove-proptypes */ = {
66
72
  /**
67
73
  * If `true`, the component is checked.
68
74
  */