@mui/material 5.14.20 → 5.15.0

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 (88) hide show
  1. package/Autocomplete/Autocomplete.js +0 -1
  2. package/ButtonBase/ButtonBase.js +1 -2
  3. package/ButtonGroup/index.d.ts +2 -0
  4. package/ButtonGroup/index.js +3 -1
  5. package/CHANGELOG.md +60 -2
  6. package/CircularProgress/CircularProgress.js +0 -1
  7. package/FilledInput/FilledInput.js +0 -2
  8. package/Input/Input.js +0 -2
  9. package/InputBase/InputBase.js +0 -2
  10. package/InputLabel/InputLabel.js +1 -5
  11. package/Link/Link.js +0 -1
  12. package/NativeSelect/NativeSelectInput.js +0 -2
  13. package/Select/SelectInput.js +1 -3
  14. package/TablePagination/TablePagination.js +0 -2
  15. package/Tabs/Tabs.js +0 -1
  16. package/colors/amber.d.ts +0 -1
  17. package/colors/blue.d.ts +0 -1
  18. package/colors/blueGrey.d.ts +0 -1
  19. package/colors/brown.d.ts +0 -1
  20. package/colors/common.d.ts +0 -1
  21. package/colors/cyan.d.ts +0 -1
  22. package/colors/deepOrange.d.ts +0 -1
  23. package/colors/deepPurple.d.ts +0 -1
  24. package/colors/green.d.ts +0 -1
  25. package/colors/grey.d.ts +0 -1
  26. package/colors/indigo.d.ts +0 -1
  27. package/colors/lightBlue.d.ts +0 -1
  28. package/colors/lightGreen.d.ts +0 -1
  29. package/colors/lime.d.ts +0 -1
  30. package/colors/orange.d.ts +0 -1
  31. package/colors/pink.d.ts +0 -1
  32. package/colors/purple.d.ts +0 -1
  33. package/colors/red.d.ts +0 -1
  34. package/colors/teal.d.ts +0 -1
  35. package/colors/yellow.d.ts +0 -1
  36. package/index.js +1 -1
  37. package/legacy/Autocomplete/Autocomplete.js +0 -1
  38. package/legacy/ButtonBase/ButtonBase.js +1 -1
  39. package/legacy/ButtonGroup/index.js +3 -1
  40. package/legacy/CircularProgress/CircularProgress.js +0 -1
  41. package/legacy/InputLabel/InputLabel.js +1 -5
  42. package/legacy/NativeSelect/NativeSelectInput.js +0 -2
  43. package/legacy/Select/SelectInput.js +1 -3
  44. package/legacy/TablePagination/TablePagination.js +0 -2
  45. package/legacy/Tabs/Tabs.js +0 -1
  46. package/legacy/index.js +1 -1
  47. package/legacy/locale/index.js +0 -11
  48. package/legacy/useTouchRipple/useTouchRipple.js +1 -1
  49. package/locale/index.js +0 -11
  50. package/modern/Autocomplete/Autocomplete.js +0 -1
  51. package/modern/ButtonBase/ButtonBase.js +1 -2
  52. package/modern/ButtonGroup/index.js +3 -1
  53. package/modern/CircularProgress/CircularProgress.js +0 -1
  54. package/modern/FilledInput/FilledInput.js +0 -2
  55. package/modern/Input/Input.js +0 -2
  56. package/modern/InputBase/InputBase.js +0 -2
  57. package/modern/InputLabel/InputLabel.js +1 -5
  58. package/modern/Link/Link.js +0 -1
  59. package/modern/NativeSelect/NativeSelectInput.js +0 -2
  60. package/modern/Select/SelectInput.js +1 -3
  61. package/modern/TablePagination/TablePagination.js +0 -2
  62. package/modern/Tabs/Tabs.js +0 -1
  63. package/modern/index.js +1 -1
  64. package/modern/locale/index.js +0 -11
  65. package/modern/useTouchRipple/useTouchRipple.js +1 -1
  66. package/node/Autocomplete/Autocomplete.js +0 -1
  67. package/node/ButtonBase/ButtonBase.js +1 -2
  68. package/node/ButtonGroup/index.js +17 -1
  69. package/node/CircularProgress/CircularProgress.js +0 -1
  70. package/node/FilledInput/FilledInput.js +0 -2
  71. package/node/Input/Input.js +0 -2
  72. package/node/InputBase/InputBase.js +0 -2
  73. package/node/InputLabel/InputLabel.js +1 -5
  74. package/node/Link/Link.js +0 -1
  75. package/node/NativeSelect/NativeSelectInput.js +0 -2
  76. package/node/Select/SelectInput.js +1 -3
  77. package/node/TablePagination/TablePagination.js +0 -2
  78. package/node/Tabs/Tabs.js +0 -1
  79. package/node/index.js +1 -1
  80. package/node/locale/index.js +0 -11
  81. package/node/styles/index.js +1 -0
  82. package/node/useTouchRipple/useTouchRipple.js +1 -1
  83. package/package.json +7 -7
  84. package/styles/components.d.ts +115 -115
  85. package/styles/variants.d.ts +1 -2
  86. package/umd/material-ui.development.js +9 -35
  87. package/umd/material-ui.production.min.js +4 -4
  88. package/useTouchRipple/useTouchRipple.js +1 -1
@@ -216,7 +216,6 @@ const AutocompleteEndAdornment = styled('div', {
216
216
  right: 0,
217
217
  top: 'calc(50% - 14px)' // Center vertically
218
218
  });
219
-
220
219
  const AutocompleteClearIndicator = styled(IconButton, {
221
220
  name: 'MuiAutocomplete',
222
221
  slot: 'ClearIndicator',
@@ -67,7 +67,6 @@ export const ButtonBaseRoot = styled('button', {
67
67
  '&::-moz-focus-inner': {
68
68
  borderStyle: 'none' // Remove Firefox dotted outline.
69
69
  },
70
-
71
70
  [`&.${buttonBaseClasses.disabled}`]: {
72
71
  pointerEvents: 'none',
73
72
  // Disable link interactions
@@ -234,7 +233,7 @@ const ButtonBase = /*#__PURE__*/React.forwardRef(function ButtonBase(inProps, re
234
233
  });
235
234
  const handleKeyUp = useEventCallback(event => {
236
235
  // calling preventDefault in keyUp on a <button> will not dispatch a click event if Space is pressed
237
- // https://codesandbox.io/s/button-keyup-preventdefault-dn7f0
236
+ // https://codesandbox.io/p/sandbox/button-keyup-preventdefault-dn7f0
238
237
  if (focusRipple && event.key === ' ' && rippleRef.current && focusVisible && !event.defaultPrevented) {
239
238
  keydownRef.current = false;
240
239
  rippleRef.current.stop(event, () => {
@@ -2,3 +2,5 @@ export { default } from './ButtonGroup';
2
2
  export * from './ButtonGroup';
3
3
  export { default as buttonGroupClasses } from './buttonGroupClasses';
4
4
  export * from './buttonGroupClasses';
5
+ export { default as ButtonGroupContext } from './ButtonGroupContext';
6
+ export { default as ButtonGroupButtonContext } from './ButtonGroupButtonContext';
@@ -2,4 +2,6 @@
2
2
 
3
3
  export { default } from './ButtonGroup';
4
4
  export { default as buttonGroupClasses } from './buttonGroupClasses';
5
- export * from './buttonGroupClasses';
5
+ export * from './buttonGroupClasses';
6
+ export { default as ButtonGroupContext } from './ButtonGroupContext';
7
+ export { default as ButtonGroupButtonContext } from './ButtonGroupButtonContext';
package/CHANGELOG.md CHANGED
@@ -1,5 +1,63 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 5.15.0
4
+
5
+ <!-- generated comparing v5.14.20..master -->
6
+
7
+ _Dec 11, 2023_
8
+
9
+ A big thanks to the 15 contributors who made this release possible. Here are some highlights ✨:
10
+
11
+ - 🚀 Added [a new package for a better Material UI integration with Next.js](https://mui.com/material-ui/guides/nextjs) (#39947) @siriwatknp
12
+
13
+ ### `@mui/material@5.15.0`
14
+
15
+ - &#8203;<!-- 12 -->Revert "[Select][material-ui] Add name to hidden input element" (#40174) @mj12albert
16
+ - &#8203;<!-- 02 -->[material-ui] Refactor ComponentsVariants type into a generic (#39623) @blakenetz
17
+
18
+ ### `@mui/material-nextjs@5.15.0`
19
+
20
+ - &#8203;<!-- 01 -->[material-ui] Add new Next.js integration package (#39947) @siriwatknp
21
+
22
+ ### `@mui/material-next@6.0.0-alpha.113`
23
+
24
+ - &#8203;<!-- 11 -->[Badge][material-next] Apply new OwnerState type to Badge (#40119) @lhilgert9
25
+ - &#8203;<!-- 06 -->[material-next][ButtonGroup] Change `ButtonGroup` files to ts (#39794) @lhilgert9
26
+
27
+ ### `@mui/icons-material@5.15.0`
28
+
29
+ - &#8203;<!-- 05 -->[icons] Add X logo (#38811) @abreel
30
+
31
+ ### `@mui/base@5.0.0-beta.27`
32
+
33
+ - &#8203;<!-- 10 -->[base-ui] useControllableReducer warns when controlled props become uncontrolled (and vice versa) (#39096) @mj12albert
34
+
35
+ ### `@mui/joy@5.0.0-beta.18`
36
+
37
+ - &#8203;<!-- 04 -->[joy-ui][Radio][Input] Fix inheritance of disabled prop (#39934) @sai6855
38
+
39
+ ### `@mui/lab@5.0.0-alpha.156`
40
+
41
+ - &#8203;<!-- 03 -->[lab][LoadingButton] LoadingButton now inherits props from ButtonGroup (#39679) @lhilgert9
42
+
43
+ ### Docs
44
+
45
+ - &#8203;<!-- 09 -->[docs] Fix reference to non-existent checkmark in supported-components.md (#40056) @mbrookes
46
+ - &#8203;<!-- 09 -->[docs][base-ui] Add copy button & primary color picker to the component gallery page (#39884) @mnajdova
47
+ - &#8203;<!-- 08 -->[docs-infra] Update CodeSandbox links (#39992) @anle9650
48
+ - &#8203;<!-- 04 -->[material-ui][docs] Fix wrong root element for emotion styles in shadow DOM (#35326) @EloB
49
+ - &#8203;<!-- 03 -->[material-ui][docs] Move the responsive font charts from recharts to MUI X (#40097) @alexfauquette
50
+ - &#8203;<!-- 02 -->[joy-ui][templates] Remove outdated code (#40095) @zanivan
51
+ - &#8203;<!-- 05 -->[material-ui][docs][Popper] Update Positioned Popper demo styles (#40170) @sai6855
52
+
53
+ ### Core
54
+
55
+ - &#8203;<!-- 08 -->[blog] Add a Phuket retreat blog post (#40055) @mikailaread
56
+ - &#8203;<!-- 07 -->[blog] Adjust the latest MUI X blog post (#40046) @danilo-leal
57
+ - &#8203;<!-- 05 -->[core] Migrate from tslint to eslint (#40020) @ZeeshanTamboli
58
+
59
+ All contributors of this release in alphabetical order: @abreel, @alexfauquette, @anle9650, @blakenetz, @danilo-leal, @EloB, @lhilgert9, @mbrookes, @mikailaread, @mj12albert, @mnajdova, @sai6855, @siriwatknp, @zanivan, @ZeeshanTamboli
60
+
3
61
  ## 5.14.20
4
62
 
5
63
  <!-- generated comparing v5.14.19..master -->
@@ -11056,7 +11114,7 @@ A big thanks to the 13 contributors who made this release possible. Here are som
11056
11114
  <Typography variant="poster">poster</Typography>;
11057
11115
  ```
11058
11116
 
11059
- [A full demo](https://codesandbox.io/s/fontsizetheme-material-demo-forked-l9u05?file=/demo.tsx:725-773)
11117
+ [A full demo](https://codesandbox.io/p/sandbox/fontsizetheme-material-demo-forked-l9u05?file=/demo.tsx:725-773)
11060
11118
 
11061
11119
  - 📚 Add a shortcut to open the Algolia search (#23959) @hmaddisb.
11062
11120
  - And many more 🐛 bug fixes and 📚 improvements.
@@ -12250,7 +12308,7 @@ Here are some highlights ✨:
12250
12308
 
12251
12309
  You can find a [new version](https://mui.com/components/slider-styled/) of the slider in the lab powered by [emotion](https://emotion.sh/).
12252
12310
 
12253
- In the event that you are already using styled-components in your application, you can swap emotion for styled-components 💅. Check [this CodeSandbox](https://codesandbox.io/s/sliderstyled-with-styled-components-forked-olc27?file=/package.json) for a demo. It relies on aliases to prevent any bundle size overhead.
12311
+ In the event that you are already using styled-components in your application, you can swap emotion for styled-components 💅. Check [this CodeSandbox](https://codesandbox.io/p/sandbox/sliderstyled-with-styled-components-forked-olc27?file=/package.json) for a demo. It relies on aliases to prevent any bundle size overhead.
12254
12312
 
12255
12313
  The new styling solution saves 2kB gzipped in the bundle compared to JSS, and about 14 kB gzipped if you were already using emotion or styled-components.
12256
12314
 
@@ -89,7 +89,6 @@ const CircularProgressSVG = styled('svg', {
89
89
  })({
90
90
  display: 'block' // Keeps the progress centered
91
91
  });
92
-
93
92
  const CircularProgressCircle = styled('circle', {
94
93
  name: 'MuiCircularProgress',
95
94
  slot: 'Circle',
@@ -83,7 +83,6 @@ const FilledInputRoot = styled(InputBaseRoot, {
83
83
  }),
84
84
  pointerEvents: 'none' // Transparent to the hover style.
85
85
  },
86
-
87
86
  [`&.${filledInputClasses.focused}:after`]: {
88
87
  // translateX(0) is a workaround for Safari transform scale bug
89
88
  // See https://github.com/mui/material-ui/issues/31766
@@ -107,7 +106,6 @@ const FilledInputRoot = styled(InputBaseRoot, {
107
106
  }),
108
107
  pointerEvents: 'none' // Transparent to the hover style.
109
108
  },
110
-
111
109
  [`&:hover:not(.${filledInputClasses.disabled}, .${filledInputClasses.error}):before`]: {
112
110
  borderBottom: `1px solid ${(theme.vars || theme).palette.text.primary}`
113
111
  },
package/Input/Input.js CHANGED
@@ -66,7 +66,6 @@ const InputRoot = styled(InputBaseRoot, {
66
66
  }),
67
67
  pointerEvents: 'none' // Transparent to the hover style.
68
68
  },
69
-
70
69
  [`&.${inputClasses.focused}:after`]: {
71
70
  // translateX(0) is a workaround for Safari transform scale bug
72
71
  // See https://github.com/mui/material-ui/issues/31766
@@ -90,7 +89,6 @@ const InputRoot = styled(InputBaseRoot, {
90
89
  }),
91
90
  pointerEvents: 'none' // Transparent to the hover style.
92
91
  },
93
-
94
92
  [`&:hover:not(.${inputClasses.disabled}, .${inputClasses.error}):before`]: {
95
93
  borderBottom: `2px solid ${(theme.vars || theme).palette.text.primary}`,
96
94
  // Reset on touch devices, it doesn't add specificity
@@ -167,13 +167,11 @@ export const InputBaseComponent = styled('input', {
167
167
  // IE11
168
168
  '&:focus::-ms-input-placeholder': placeholderVisible // Edge
169
169
  },
170
-
171
170
  [`&.${inputBaseClasses.disabled}`]: {
172
171
  opacity: 1,
173
172
  // Reset iOS opacity
174
173
  WebkitTextFillColor: (theme.vars || theme).palette.text.disabled // Fix opacity Safari bug
175
174
  },
176
-
177
175
  '&:-webkit-autofill': {
178
176
  animationDuration: '5000s',
179
177
  animationName: 'mui-auto-fill'
@@ -105,11 +105,7 @@ const InputLabelRoot = styled(FormLabel, {
105
105
  // but it feels a better when it bleeds a bit on the left, so 32px.
106
106
  maxWidth: 'calc(133% - 32px)',
107
107
  transform: 'translate(14px, -9px) scale(0.75)'
108
- }), ownerState.variant === 'standard' && {
109
- '&:not(label) + div': {
110
- marginTop: 16
111
- }
112
- }));
108
+ })));
113
109
  const InputLabel = /*#__PURE__*/React.forwardRef(function InputLabel(inProps, ref) {
114
110
  const props = useThemeProps({
115
111
  name: 'MuiInputLabel',
package/Link/Link.js CHANGED
@@ -83,7 +83,6 @@ const LinkRoot = styled(Typography, {
83
83
  '&::-moz-focus-inner': {
84
84
  borderStyle: 'none' // Remove Firefox dotted outline.
85
85
  },
86
-
87
86
  [`&.${linkClasses.focusVisible}`]: {
88
87
  outline: 'auto'
89
88
  }
@@ -49,7 +49,6 @@ export const nativeSelectSelectStyles = ({
49
49
  }, {
50
50
  borderRadius: 0 // Reset Chrome style
51
51
  }),
52
-
53
52
  // Remove IE11 arrow
54
53
  '&::-ms-expand': {
55
54
  display: 'none'
@@ -77,7 +76,6 @@ export const nativeSelectSelectStyles = ({
77
76
  '&:focus': {
78
77
  borderRadius: (theme.vars || theme).shape.borderRadius // Reset the reset for Chrome style
79
78
  },
80
-
81
79
  '&&&': {
82
80
  paddingRight: 32
83
81
  }
@@ -386,7 +386,6 @@ const SelectInput = /*#__PURE__*/React.forwardRef(function SelectInput(props, re
386
386
  'data-value': child.props.value // Instead, we provide it as a data attribute.
387
387
  });
388
388
  });
389
-
390
389
  if (process.env.NODE_ENV !== 'production') {
391
390
  // eslint-disable-next-line react-hooks/rules-of-hooks
392
391
  React.useEffect(() => {
@@ -435,7 +434,6 @@ const SelectInput = /*#__PURE__*/React.forwardRef(function SelectInput(props, re
435
434
  const classes = useUtilityClasses(ownerState);
436
435
  const paperProps = _extends({}, MenuProps.PaperProps, (_MenuProps$slotProps = MenuProps.slotProps) == null ? void 0 : _MenuProps$slotProps.paper);
437
436
  const listboxId = useId();
438
- const hiddenInputId = useId();
439
437
  return /*#__PURE__*/_jsxs(React.Fragment, {
440
438
  children: [/*#__PURE__*/_jsx(SelectSelect, _extends({
441
439
  ref: handleDisplayRef,
@@ -466,7 +464,7 @@ const SelectInput = /*#__PURE__*/React.forwardRef(function SelectInput(props, re
466
464
  })), /*#__PURE__*/_jsx(SelectNativeInput, _extends({
467
465
  "aria-invalid": error,
468
466
  value: Array.isArray(value) ? value.join(',') : value,
469
- name: name != null ? name : hiddenInputId,
467
+ name: name,
470
468
  ref: inputRef,
471
469
  "aria-hidden": true,
472
470
  onChange: handleChange,
@@ -96,7 +96,6 @@ const TablePaginationSelect = styled(Select, {
96
96
  textAlignLast: 'right' // Align <select> on Chrome.
97
97
  }
98
98
  });
99
-
100
99
  const TablePaginationMenuItem = styled(MenuItem, {
101
100
  name: 'MuiTablePagination',
102
101
  slot: 'MenuItem',
@@ -180,7 +179,6 @@ const TablePagination = /*#__PURE__*/React.forwardRef(function TablePagination(i
180
179
  if (component === TableCell || component === 'td') {
181
180
  colSpan = colSpanProp || 1000; // col-span over everything
182
181
  }
183
-
184
182
  const selectId = useId(selectProps.id);
185
183
  const labelId = useId(selectProps.labelId);
186
184
  const getLabelDisplayedRowsTo = () => {
package/Tabs/Tabs.js CHANGED
@@ -200,7 +200,6 @@ const TabsScrollbarSize = styled(ScrollbarSize)({
200
200
  display: 'none' // Safari + Chrome
201
201
  }
202
202
  });
203
-
204
203
  const defaultIndicatorStyle = {};
205
204
  let warnedOnceTabPresent = false;
206
205
  const Tabs = /*#__PURE__*/React.forwardRef(function Tabs(inProps, ref) {
package/colors/amber.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![amber 50](https://mui.com/static/colors-preview/amber-50-24x24.png) ![amber 100](https://mui.com/static/colors-preview/amber-100-24x24.png) ![amber 200](https://mui.com/static/colors-preview/amber-200-24x24.png) ![amber 300](https://mui.com/static/colors-preview/amber-300-24x24.png) ![amber 400](https://mui.com/static/colors-preview/amber-400-24x24.png) ![amber 500](https://mui.com/static/colors-preview/amber-500-24x24.png) ![amber 600](https://mui.com/static/colors-preview/amber-600-24x24.png) ![amber 700](https://mui.com/static/colors-preview/amber-700-24x24.png) ![amber 800](https://mui.com/static/colors-preview/amber-800-24x24.png) ![amber 900](https://mui.com/static/colors-preview/amber-900-24x24.png) ![amber A100](https://mui.com/static/colors-preview/amber-A100-24x24.png) ![amber A200](https://mui.com/static/colors-preview/amber-A200-24x24.png) ![amber A400](https://mui.com/static/colors-preview/amber-A400-24x24.png) ![amber A700](https://mui.com/static/colors-preview/amber-A700-24x24.png)
4
3
  */
package/colors/blue.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![blue 50](https://mui.com/static/colors-preview/blue-50-24x24.png) ![blue 100](https://mui.com/static/colors-preview/blue-100-24x24.png) ![blue 200](https://mui.com/static/colors-preview/blue-200-24x24.png) ![blue 300](https://mui.com/static/colors-preview/blue-300-24x24.png) ![blue 400](https://mui.com/static/colors-preview/blue-400-24x24.png) ![blue 500](https://mui.com/static/colors-preview/blue-500-24x24.png) ![blue 600](https://mui.com/static/colors-preview/blue-600-24x24.png) ![blue 700](https://mui.com/static/colors-preview/blue-700-24x24.png) ![blue 800](https://mui.com/static/colors-preview/blue-800-24x24.png) ![blue 900](https://mui.com/static/colors-preview/blue-900-24x24.png) ![blue A100](https://mui.com/static/colors-preview/blue-A100-24x24.png) ![blue A200](https://mui.com/static/colors-preview/blue-A200-24x24.png) ![blue A400](https://mui.com/static/colors-preview/blue-A400-24x24.png) ![blue A700](https://mui.com/static/colors-preview/blue-A700-24x24.png)
4
3
  */
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![blueGrey 50](https://mui.com/static/colors-preview/blueGrey-50-24x24.png) ![blueGrey 100](https://mui.com/static/colors-preview/blueGrey-100-24x24.png) ![blueGrey 200](https://mui.com/static/colors-preview/blueGrey-200-24x24.png) ![blueGrey 300](https://mui.com/static/colors-preview/blueGrey-300-24x24.png) ![blueGrey 400](https://mui.com/static/colors-preview/blueGrey-400-24x24.png) ![blueGrey 500](https://mui.com/static/colors-preview/blueGrey-500-24x24.png) ![blueGrey 600](https://mui.com/static/colors-preview/blueGrey-600-24x24.png) ![blueGrey 700](https://mui.com/static/colors-preview/blueGrey-700-24x24.png) ![blueGrey 800](https://mui.com/static/colors-preview/blueGrey-800-24x24.png) ![blueGrey 900](https://mui.com/static/colors-preview/blueGrey-900-24x24.png) ![blueGrey A100](https://mui.com/static/colors-preview/blueGrey-A100-24x24.png) ![blueGrey A200](https://mui.com/static/colors-preview/blueGrey-A200-24x24.png) ![blueGrey A400](https://mui.com/static/colors-preview/blueGrey-A400-24x24.png) ![blueGrey A700](https://mui.com/static/colors-preview/blueGrey-A700-24x24.png)
4
3
  */
package/colors/brown.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![brown 50](https://mui.com/static/colors-preview/brown-50-24x24.png) ![brown 100](https://mui.com/static/colors-preview/brown-100-24x24.png) ![brown 200](https://mui.com/static/colors-preview/brown-200-24x24.png) ![brown 300](https://mui.com/static/colors-preview/brown-300-24x24.png) ![brown 400](https://mui.com/static/colors-preview/brown-400-24x24.png) ![brown 500](https://mui.com/static/colors-preview/brown-500-24x24.png) ![brown 600](https://mui.com/static/colors-preview/brown-600-24x24.png) ![brown 700](https://mui.com/static/colors-preview/brown-700-24x24.png) ![brown 800](https://mui.com/static/colors-preview/brown-800-24x24.png) ![brown 900](https://mui.com/static/colors-preview/brown-900-24x24.png) ![brown A100](https://mui.com/static/colors-preview/brown-A100-24x24.png) ![brown A200](https://mui.com/static/colors-preview/brown-A200-24x24.png) ![brown A400](https://mui.com/static/colors-preview/brown-A400-24x24.png) ![brown A700](https://mui.com/static/colors-preview/brown-A700-24x24.png)
4
3
  */
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![common black](https://mui.com/static/colors-preview/common-black-24x24.png) ![common white](https://mui.com/static/colors-preview/common-white-24x24.png)
4
3
  */
package/colors/cyan.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![cyan 50](https://mui.com/static/colors-preview/cyan-50-24x24.png) ![cyan 100](https://mui.com/static/colors-preview/cyan-100-24x24.png) ![cyan 200](https://mui.com/static/colors-preview/cyan-200-24x24.png) ![cyan 300](https://mui.com/static/colors-preview/cyan-300-24x24.png) ![cyan 400](https://mui.com/static/colors-preview/cyan-400-24x24.png) ![cyan 500](https://mui.com/static/colors-preview/cyan-500-24x24.png) ![cyan 600](https://mui.com/static/colors-preview/cyan-600-24x24.png) ![cyan 700](https://mui.com/static/colors-preview/cyan-700-24x24.png) ![cyan 800](https://mui.com/static/colors-preview/cyan-800-24x24.png) ![cyan 900](https://mui.com/static/colors-preview/cyan-900-24x24.png) ![cyan A100](https://mui.com/static/colors-preview/cyan-A100-24x24.png) ![cyan A200](https://mui.com/static/colors-preview/cyan-A200-24x24.png) ![cyan A400](https://mui.com/static/colors-preview/cyan-A400-24x24.png) ![cyan A700](https://mui.com/static/colors-preview/cyan-A700-24x24.png)
4
3
  */
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![deepOrange 50](https://mui.com/static/colors-preview/deepOrange-50-24x24.png) ![deepOrange 100](https://mui.com/static/colors-preview/deepOrange-100-24x24.png) ![deepOrange 200](https://mui.com/static/colors-preview/deepOrange-200-24x24.png) ![deepOrange 300](https://mui.com/static/colors-preview/deepOrange-300-24x24.png) ![deepOrange 400](https://mui.com/static/colors-preview/deepOrange-400-24x24.png) ![deepOrange 500](https://mui.com/static/colors-preview/deepOrange-500-24x24.png) ![deepOrange 600](https://mui.com/static/colors-preview/deepOrange-600-24x24.png) ![deepOrange 700](https://mui.com/static/colors-preview/deepOrange-700-24x24.png) ![deepOrange 800](https://mui.com/static/colors-preview/deepOrange-800-24x24.png) ![deepOrange 900](https://mui.com/static/colors-preview/deepOrange-900-24x24.png) ![deepOrange A100](https://mui.com/static/colors-preview/deepOrange-A100-24x24.png) ![deepOrange A200](https://mui.com/static/colors-preview/deepOrange-A200-24x24.png) ![deepOrange A400](https://mui.com/static/colors-preview/deepOrange-A400-24x24.png) ![deepOrange A700](https://mui.com/static/colors-preview/deepOrange-A700-24x24.png)
4
3
  */
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![deepPurple 50](https://mui.com/static/colors-preview/deepPurple-50-24x24.png) ![deepPurple 100](https://mui.com/static/colors-preview/deepPurple-100-24x24.png) ![deepPurple 200](https://mui.com/static/colors-preview/deepPurple-200-24x24.png) ![deepPurple 300](https://mui.com/static/colors-preview/deepPurple-300-24x24.png) ![deepPurple 400](https://mui.com/static/colors-preview/deepPurple-400-24x24.png) ![deepPurple 500](https://mui.com/static/colors-preview/deepPurple-500-24x24.png) ![deepPurple 600](https://mui.com/static/colors-preview/deepPurple-600-24x24.png) ![deepPurple 700](https://mui.com/static/colors-preview/deepPurple-700-24x24.png) ![deepPurple 800](https://mui.com/static/colors-preview/deepPurple-800-24x24.png) ![deepPurple 900](https://mui.com/static/colors-preview/deepPurple-900-24x24.png) ![deepPurple A100](https://mui.com/static/colors-preview/deepPurple-A100-24x24.png) ![deepPurple A200](https://mui.com/static/colors-preview/deepPurple-A200-24x24.png) ![deepPurple A400](https://mui.com/static/colors-preview/deepPurple-A400-24x24.png) ![deepPurple A700](https://mui.com/static/colors-preview/deepPurple-A700-24x24.png)
4
3
  */
package/colors/green.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![green 50](https://mui.com/static/colors-preview/green-50-24x24.png) ![green 100](https://mui.com/static/colors-preview/green-100-24x24.png) ![green 200](https://mui.com/static/colors-preview/green-200-24x24.png) ![green 300](https://mui.com/static/colors-preview/green-300-24x24.png) ![green 400](https://mui.com/static/colors-preview/green-400-24x24.png) ![green 500](https://mui.com/static/colors-preview/green-500-24x24.png) ![green 600](https://mui.com/static/colors-preview/green-600-24x24.png) ![green 700](https://mui.com/static/colors-preview/green-700-24x24.png) ![green 800](https://mui.com/static/colors-preview/green-800-24x24.png) ![green 900](https://mui.com/static/colors-preview/green-900-24x24.png) ![green A100](https://mui.com/static/colors-preview/green-A100-24x24.png) ![green A200](https://mui.com/static/colors-preview/green-A200-24x24.png) ![green A400](https://mui.com/static/colors-preview/green-A400-24x24.png) ![green A700](https://mui.com/static/colors-preview/green-A700-24x24.png)
4
3
  */
package/colors/grey.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![grey 50](https://mui.com/static/colors-preview/grey-50-24x24.png) ![grey 100](https://mui.com/static/colors-preview/grey-100-24x24.png) ![grey 200](https://mui.com/static/colors-preview/grey-200-24x24.png) ![grey 300](https://mui.com/static/colors-preview/grey-300-24x24.png) ![grey 400](https://mui.com/static/colors-preview/grey-400-24x24.png) ![grey 500](https://mui.com/static/colors-preview/grey-500-24x24.png) ![grey 600](https://mui.com/static/colors-preview/grey-600-24x24.png) ![grey 700](https://mui.com/static/colors-preview/grey-700-24x24.png) ![grey 800](https://mui.com/static/colors-preview/grey-800-24x24.png) ![grey 900](https://mui.com/static/colors-preview/grey-900-24x24.png) ![grey A100](https://mui.com/static/colors-preview/grey-A100-24x24.png) ![grey A200](https://mui.com/static/colors-preview/grey-A200-24x24.png) ![grey A400](https://mui.com/static/colors-preview/grey-A400-24x24.png) ![grey A700](https://mui.com/static/colors-preview/grey-A700-24x24.png)
4
3
  */
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![indigo 50](https://mui.com/static/colors-preview/indigo-50-24x24.png) ![indigo 100](https://mui.com/static/colors-preview/indigo-100-24x24.png) ![indigo 200](https://mui.com/static/colors-preview/indigo-200-24x24.png) ![indigo 300](https://mui.com/static/colors-preview/indigo-300-24x24.png) ![indigo 400](https://mui.com/static/colors-preview/indigo-400-24x24.png) ![indigo 500](https://mui.com/static/colors-preview/indigo-500-24x24.png) ![indigo 600](https://mui.com/static/colors-preview/indigo-600-24x24.png) ![indigo 700](https://mui.com/static/colors-preview/indigo-700-24x24.png) ![indigo 800](https://mui.com/static/colors-preview/indigo-800-24x24.png) ![indigo 900](https://mui.com/static/colors-preview/indigo-900-24x24.png) ![indigo A100](https://mui.com/static/colors-preview/indigo-A100-24x24.png) ![indigo A200](https://mui.com/static/colors-preview/indigo-A200-24x24.png) ![indigo A400](https://mui.com/static/colors-preview/indigo-A400-24x24.png) ![indigo A700](https://mui.com/static/colors-preview/indigo-A700-24x24.png)
4
3
  */
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![lightBlue 50](https://mui.com/static/colors-preview/lightBlue-50-24x24.png) ![lightBlue 100](https://mui.com/static/colors-preview/lightBlue-100-24x24.png) ![lightBlue 200](https://mui.com/static/colors-preview/lightBlue-200-24x24.png) ![lightBlue 300](https://mui.com/static/colors-preview/lightBlue-300-24x24.png) ![lightBlue 400](https://mui.com/static/colors-preview/lightBlue-400-24x24.png) ![lightBlue 500](https://mui.com/static/colors-preview/lightBlue-500-24x24.png) ![lightBlue 600](https://mui.com/static/colors-preview/lightBlue-600-24x24.png) ![lightBlue 700](https://mui.com/static/colors-preview/lightBlue-700-24x24.png) ![lightBlue 800](https://mui.com/static/colors-preview/lightBlue-800-24x24.png) ![lightBlue 900](https://mui.com/static/colors-preview/lightBlue-900-24x24.png) ![lightBlue A100](https://mui.com/static/colors-preview/lightBlue-A100-24x24.png) ![lightBlue A200](https://mui.com/static/colors-preview/lightBlue-A200-24x24.png) ![lightBlue A400](https://mui.com/static/colors-preview/lightBlue-A400-24x24.png) ![lightBlue A700](https://mui.com/static/colors-preview/lightBlue-A700-24x24.png)
4
3
  */
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![lightGreen 50](https://mui.com/static/colors-preview/lightGreen-50-24x24.png) ![lightGreen 100](https://mui.com/static/colors-preview/lightGreen-100-24x24.png) ![lightGreen 200](https://mui.com/static/colors-preview/lightGreen-200-24x24.png) ![lightGreen 300](https://mui.com/static/colors-preview/lightGreen-300-24x24.png) ![lightGreen 400](https://mui.com/static/colors-preview/lightGreen-400-24x24.png) ![lightGreen 500](https://mui.com/static/colors-preview/lightGreen-500-24x24.png) ![lightGreen 600](https://mui.com/static/colors-preview/lightGreen-600-24x24.png) ![lightGreen 700](https://mui.com/static/colors-preview/lightGreen-700-24x24.png) ![lightGreen 800](https://mui.com/static/colors-preview/lightGreen-800-24x24.png) ![lightGreen 900](https://mui.com/static/colors-preview/lightGreen-900-24x24.png) ![lightGreen A100](https://mui.com/static/colors-preview/lightGreen-A100-24x24.png) ![lightGreen A200](https://mui.com/static/colors-preview/lightGreen-A200-24x24.png) ![lightGreen A400](https://mui.com/static/colors-preview/lightGreen-A400-24x24.png) ![lightGreen A700](https://mui.com/static/colors-preview/lightGreen-A700-24x24.png)
4
3
  */
package/colors/lime.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![lime 50](https://mui.com/static/colors-preview/lime-50-24x24.png) ![lime 100](https://mui.com/static/colors-preview/lime-100-24x24.png) ![lime 200](https://mui.com/static/colors-preview/lime-200-24x24.png) ![lime 300](https://mui.com/static/colors-preview/lime-300-24x24.png) ![lime 400](https://mui.com/static/colors-preview/lime-400-24x24.png) ![lime 500](https://mui.com/static/colors-preview/lime-500-24x24.png) ![lime 600](https://mui.com/static/colors-preview/lime-600-24x24.png) ![lime 700](https://mui.com/static/colors-preview/lime-700-24x24.png) ![lime 800](https://mui.com/static/colors-preview/lime-800-24x24.png) ![lime 900](https://mui.com/static/colors-preview/lime-900-24x24.png) ![lime A100](https://mui.com/static/colors-preview/lime-A100-24x24.png) ![lime A200](https://mui.com/static/colors-preview/lime-A200-24x24.png) ![lime A400](https://mui.com/static/colors-preview/lime-A400-24x24.png) ![lime A700](https://mui.com/static/colors-preview/lime-A700-24x24.png)
4
3
  */
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![orange 50](https://mui.com/static/colors-preview/orange-50-24x24.png) ![orange 100](https://mui.com/static/colors-preview/orange-100-24x24.png) ![orange 200](https://mui.com/static/colors-preview/orange-200-24x24.png) ![orange 300](https://mui.com/static/colors-preview/orange-300-24x24.png) ![orange 400](https://mui.com/static/colors-preview/orange-400-24x24.png) ![orange 500](https://mui.com/static/colors-preview/orange-500-24x24.png) ![orange 600](https://mui.com/static/colors-preview/orange-600-24x24.png) ![orange 700](https://mui.com/static/colors-preview/orange-700-24x24.png) ![orange 800](https://mui.com/static/colors-preview/orange-800-24x24.png) ![orange 900](https://mui.com/static/colors-preview/orange-900-24x24.png) ![orange A100](https://mui.com/static/colors-preview/orange-A100-24x24.png) ![orange A200](https://mui.com/static/colors-preview/orange-A200-24x24.png) ![orange A400](https://mui.com/static/colors-preview/orange-A400-24x24.png) ![orange A700](https://mui.com/static/colors-preview/orange-A700-24x24.png)
4
3
  */
package/colors/pink.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![pink 50](https://mui.com/static/colors-preview/pink-50-24x24.png) ![pink 100](https://mui.com/static/colors-preview/pink-100-24x24.png) ![pink 200](https://mui.com/static/colors-preview/pink-200-24x24.png) ![pink 300](https://mui.com/static/colors-preview/pink-300-24x24.png) ![pink 400](https://mui.com/static/colors-preview/pink-400-24x24.png) ![pink 500](https://mui.com/static/colors-preview/pink-500-24x24.png) ![pink 600](https://mui.com/static/colors-preview/pink-600-24x24.png) ![pink 700](https://mui.com/static/colors-preview/pink-700-24x24.png) ![pink 800](https://mui.com/static/colors-preview/pink-800-24x24.png) ![pink 900](https://mui.com/static/colors-preview/pink-900-24x24.png) ![pink A100](https://mui.com/static/colors-preview/pink-A100-24x24.png) ![pink A200](https://mui.com/static/colors-preview/pink-A200-24x24.png) ![pink A400](https://mui.com/static/colors-preview/pink-A400-24x24.png) ![pink A700](https://mui.com/static/colors-preview/pink-A700-24x24.png)
4
3
  */
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![purple 50](https://mui.com/static/colors-preview/purple-50-24x24.png) ![purple 100](https://mui.com/static/colors-preview/purple-100-24x24.png) ![purple 200](https://mui.com/static/colors-preview/purple-200-24x24.png) ![purple 300](https://mui.com/static/colors-preview/purple-300-24x24.png) ![purple 400](https://mui.com/static/colors-preview/purple-400-24x24.png) ![purple 500](https://mui.com/static/colors-preview/purple-500-24x24.png) ![purple 600](https://mui.com/static/colors-preview/purple-600-24x24.png) ![purple 700](https://mui.com/static/colors-preview/purple-700-24x24.png) ![purple 800](https://mui.com/static/colors-preview/purple-800-24x24.png) ![purple 900](https://mui.com/static/colors-preview/purple-900-24x24.png) ![purple A100](https://mui.com/static/colors-preview/purple-A100-24x24.png) ![purple A200](https://mui.com/static/colors-preview/purple-A200-24x24.png) ![purple A400](https://mui.com/static/colors-preview/purple-A400-24x24.png) ![purple A700](https://mui.com/static/colors-preview/purple-A700-24x24.png)
4
3
  */
package/colors/red.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![red 50](https://mui.com/static/colors-preview/red-50-24x24.png) ![red 100](https://mui.com/static/colors-preview/red-100-24x24.png) ![red 200](https://mui.com/static/colors-preview/red-200-24x24.png) ![red 300](https://mui.com/static/colors-preview/red-300-24x24.png) ![red 400](https://mui.com/static/colors-preview/red-400-24x24.png) ![red 500](https://mui.com/static/colors-preview/red-500-24x24.png) ![red 600](https://mui.com/static/colors-preview/red-600-24x24.png) ![red 700](https://mui.com/static/colors-preview/red-700-24x24.png) ![red 800](https://mui.com/static/colors-preview/red-800-24x24.png) ![red 900](https://mui.com/static/colors-preview/red-900-24x24.png) ![red A100](https://mui.com/static/colors-preview/red-A100-24x24.png) ![red A200](https://mui.com/static/colors-preview/red-A200-24x24.png) ![red A400](https://mui.com/static/colors-preview/red-A400-24x24.png) ![red A700](https://mui.com/static/colors-preview/red-A700-24x24.png)
4
3
  */
package/colors/teal.d.ts CHANGED
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![teal 50](https://mui.com/static/colors-preview/teal-50-24x24.png) ![teal 100](https://mui.com/static/colors-preview/teal-100-24x24.png) ![teal 200](https://mui.com/static/colors-preview/teal-200-24x24.png) ![teal 300](https://mui.com/static/colors-preview/teal-300-24x24.png) ![teal 400](https://mui.com/static/colors-preview/teal-400-24x24.png) ![teal 500](https://mui.com/static/colors-preview/teal-500-24x24.png) ![teal 600](https://mui.com/static/colors-preview/teal-600-24x24.png) ![teal 700](https://mui.com/static/colors-preview/teal-700-24x24.png) ![teal 800](https://mui.com/static/colors-preview/teal-800-24x24.png) ![teal 900](https://mui.com/static/colors-preview/teal-900-24x24.png) ![teal A100](https://mui.com/static/colors-preview/teal-A100-24x24.png) ![teal A200](https://mui.com/static/colors-preview/teal-A200-24x24.png) ![teal A400](https://mui.com/static/colors-preview/teal-A400-24x24.png) ![teal A700](https://mui.com/static/colors-preview/teal-A700-24x24.png)
4
3
  */
@@ -1,4 +1,3 @@
1
- /* tslint:disable max-line-length */
2
1
  /**
3
2
  * ![yellow 50](https://mui.com/static/colors-preview/yellow-50-24x24.png) ![yellow 100](https://mui.com/static/colors-preview/yellow-100-24x24.png) ![yellow 200](https://mui.com/static/colors-preview/yellow-200-24x24.png) ![yellow 300](https://mui.com/static/colors-preview/yellow-300-24x24.png) ![yellow 400](https://mui.com/static/colors-preview/yellow-400-24x24.png) ![yellow 500](https://mui.com/static/colors-preview/yellow-500-24x24.png) ![yellow 600](https://mui.com/static/colors-preview/yellow-600-24x24.png) ![yellow 700](https://mui.com/static/colors-preview/yellow-700-24x24.png) ![yellow 800](https://mui.com/static/colors-preview/yellow-800-24x24.png) ![yellow 900](https://mui.com/static/colors-preview/yellow-900-24x24.png) ![yellow A100](https://mui.com/static/colors-preview/yellow-A100-24x24.png) ![yellow A200](https://mui.com/static/colors-preview/yellow-A200-24x24.png) ![yellow A400](https://mui.com/static/colors-preview/yellow-A400-24x24.png) ![yellow A700](https://mui.com/static/colors-preview/yellow-A700-24x24.png)
4
3
  */
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v5.14.20
2
+ * @mui/material v5.15.0
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -165,7 +165,6 @@ var AutocompleteEndAdornment = styled('div', {
165
165
  right: 0,
166
166
  top: 'calc(50% - 14px)' // Center vertically
167
167
  });
168
-
169
168
  var AutocompleteClearIndicator = styled(IconButton, {
170
169
  name: 'MuiAutocomplete',
171
170
  slot: 'ClearIndicator',
@@ -244,7 +244,7 @@ var ButtonBase = /*#__PURE__*/React.forwardRef(function ButtonBase(inProps, ref)
244
244
  });
245
245
  var handleKeyUp = useEventCallback(function (event) {
246
246
  // calling preventDefault in keyUp on a <button> will not dispatch a click event if Space is pressed
247
- // https://codesandbox.io/s/button-keyup-preventdefault-dn7f0
247
+ // https://codesandbox.io/p/sandbox/button-keyup-preventdefault-dn7f0
248
248
  if (focusRipple && event.key === ' ' && rippleRef.current && focusVisible && !event.defaultPrevented) {
249
249
  keydownRef.current = false;
250
250
  rippleRef.current.stop(event, function () {
@@ -2,4 +2,6 @@
2
2
 
3
3
  export { default } from './ButtonGroup';
4
4
  export { default as buttonGroupClasses } from './buttonGroupClasses';
5
- export * from './buttonGroupClasses';
5
+ export * from './buttonGroupClasses';
6
+ export { default as ButtonGroupContext } from './ButtonGroupContext';
7
+ export { default as ButtonGroupButtonContext } from './ButtonGroupButtonContext';
@@ -60,7 +60,6 @@ var CircularProgressSVG = styled('svg', {
60
60
  })({
61
61
  display: 'block' // Keeps the progress centered
62
62
  });
63
-
64
63
  var CircularProgressCircle = styled('circle', {
65
64
  name: 'MuiCircularProgress',
66
65
  slot: 'Circle',
@@ -101,11 +101,7 @@ var InputLabelRoot = styled(FormLabel, {
101
101
  // but it feels a better when it bleeds a bit on the left, so 32px.
102
102
  maxWidth: 'calc(133% - 32px)',
103
103
  transform: 'translate(14px, -9px) scale(0.75)'
104
- }), ownerState.variant === 'standard' && {
105
- '&:not(label) + div': {
106
- marginTop: 16
107
- }
108
- });
104
+ }));
109
105
  });
110
106
  var InputLabel = /*#__PURE__*/React.forwardRef(function InputLabel(inProps, ref) {
111
107
  var props = useThemeProps({
@@ -47,7 +47,6 @@ export var nativeSelectSelectStyles = function nativeSelectSelectStyles(_ref) {
47
47
  }, {
48
48
  borderRadius: 0 // Reset Chrome style
49
49
  }),
50
-
51
50
  // Remove IE11 arrow
52
51
  '&::-ms-expand': {
53
52
  display: 'none'
@@ -70,7 +69,6 @@ export var nativeSelectSelectStyles = function nativeSelectSelectStyles(_ref) {
70
69
  '&:focus': {
71
70
  borderRadius: (theme.vars || theme).shape.borderRadius // Reset the reset for Chrome style
72
71
  },
73
-
74
72
  '&&&': {
75
73
  paddingRight: 32
76
74
  }
@@ -391,7 +391,6 @@ var SelectInput = /*#__PURE__*/React.forwardRef(function SelectInput(props, ref)
391
391
  'data-value': child.props.value // Instead, we provide it as a data attribute.
392
392
  });
393
393
  });
394
-
395
394
  if (process.env.NODE_ENV !== 'production') {
396
395
  // eslint-disable-next-line react-hooks/rules-of-hooks
397
396
  React.useEffect(function () {
@@ -446,7 +445,6 @@ var SelectInput = /*#__PURE__*/React.forwardRef(function SelectInput(props, ref)
446
445
  var classes = useUtilityClasses(ownerState);
447
446
  var paperProps = _extends({}, MenuProps.PaperProps, (_MenuProps$slotProps = MenuProps.slotProps) == null ? void 0 : _MenuProps$slotProps.paper);
448
447
  var listboxId = useId();
449
- var hiddenInputId = useId();
450
448
  return /*#__PURE__*/_jsxs(React.Fragment, {
451
449
  children: [/*#__PURE__*/_jsx(SelectSelect, _extends({
452
450
  ref: handleDisplayRef,
@@ -477,7 +475,7 @@ var SelectInput = /*#__PURE__*/React.forwardRef(function SelectInput(props, ref)
477
475
  })), /*#__PURE__*/_jsx(SelectNativeInput, _extends({
478
476
  "aria-invalid": error,
479
477
  value: Array.isArray(value) ? value.join(',') : value,
480
- name: name != null ? name : hiddenInputId,
478
+ name: name,
481
479
  ref: inputRef,
482
480
  "aria-hidden": true,
483
481
  onChange: handleChange,
@@ -100,7 +100,6 @@ var TablePaginationSelect = styled(Select, {
100
100
  textAlign: 'right',
101
101
  textAlignLast: 'right' // Align <select> on Chrome.
102
102
  }));
103
-
104
103
  var TablePaginationMenuItem = styled(MenuItem, {
105
104
  name: 'MuiTablePagination',
106
105
  slot: 'MenuItem',
@@ -194,7 +193,6 @@ var TablePagination = /*#__PURE__*/React.forwardRef(function TablePagination(inP
194
193
  if (component === TableCell || component === 'td') {
195
194
  colSpan = colSpanProp || 1000; // col-span over everything
196
195
  }
197
-
198
196
  var selectId = useId(selectProps.id);
199
197
  var labelId = useId(selectProps.labelId);
200
198
  var getLabelDisplayedRowsTo = function getLabelDisplayedRowsTo() {
@@ -190,7 +190,6 @@ var TabsScrollbarSize = styled(ScrollbarSize)({
190
190
  display: 'none' // Safari + Chrome
191
191
  }
192
192
  });
193
-
194
193
  var defaultIndicatorStyle = {};
195
194
  var warnedOnceTabPresent = false;
196
195
  var Tabs = /*#__PURE__*/React.forwardRef(function Tabs(inProps, ref) {
package/legacy/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v5.14.20
2
+ * @mui/material v5.15.0
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the