@mui/material 5.14.15 → 5.14.17
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/BottomNavigation/BottomNavigation.js +0 -0
- package/CHANGELOG.md +126 -3
- package/GlobalStyles/index.js +0 -2
- package/InputBase/InputBase.d.ts +4 -2
- package/OutlinedInput/NotchedOutline.js +7 -3
- package/Radio/RadioButtonIcon.js +4 -2
- package/SwipeableDrawer/SwipeArea.js +4 -2
- package/index.js +3 -2
- package/internal/SwitchBase.js +4 -2
- package/legacy/BottomNavigation/BottomNavigation.js +0 -0
- package/legacy/GlobalStyles/index.js +0 -2
- package/legacy/OutlinedInput/NotchedOutline.js +7 -3
- package/legacy/Radio/RadioButtonIcon.js +4 -2
- package/legacy/SwipeableDrawer/SwipeArea.js +4 -2
- package/legacy/index.js +3 -2
- package/legacy/internal/SwitchBase.js +4 -2
- package/modern/BottomNavigation/BottomNavigation.js +0 -0
- package/modern/GlobalStyles/index.js +0 -2
- package/modern/OutlinedInput/NotchedOutline.js +7 -3
- package/modern/Radio/RadioButtonIcon.js +4 -2
- package/modern/SwipeableDrawer/SwipeArea.js +4 -2
- package/modern/index.js +3 -2
- package/modern/internal/SwitchBase.js +4 -2
- package/node/BottomNavigation/BottomNavigation.js +0 -0
- package/node/GlobalStyles/index.js +0 -1
- package/node/OutlinedInput/NotchedOutline.js +7 -3
- package/node/Radio/RadioButtonIcon.js +4 -2
- package/node/SwipeableDrawer/SwipeArea.js +4 -2
- package/node/index.js +1 -8
- package/node/internal/SwitchBase.js +4 -2
- package/package.json +7 -7
- package/umd/material-ui.development.js +20 -8
- package/umd/material-ui.production.min.js +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/material",
|
|
3
|
-
"version": "5.14.
|
|
3
|
+
"version": "5.14.17",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "React components that implement Google's Material Design.",
|
|
@@ -28,12 +28,12 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@babel/runtime": "^7.23.2",
|
|
31
|
-
"@mui/base": "5.0.0-beta.
|
|
32
|
-
"@mui/core-downloads-tracker": "^5.14.
|
|
33
|
-
"@mui/system": "^5.14.
|
|
34
|
-
"@mui/types": "^7.2.
|
|
35
|
-
"@mui/utils": "^5.14.
|
|
36
|
-
"@types/react-transition-group": "^4.4.
|
|
31
|
+
"@mui/base": "5.0.0-beta.23",
|
|
32
|
+
"@mui/core-downloads-tracker": "^5.14.17",
|
|
33
|
+
"@mui/system": "^5.14.17",
|
|
34
|
+
"@mui/types": "^7.2.8",
|
|
35
|
+
"@mui/utils": "^5.14.17",
|
|
36
|
+
"@types/react-transition-group": "^4.4.8",
|
|
37
37
|
"clsx": "^2.0.0",
|
|
38
38
|
"csstype": "^3.1.2",
|
|
39
39
|
"prop-types": "^15.8.1",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/material v5.14.
|
|
2
|
+
* @mui/material v5.14.17
|
|
3
3
|
*
|
|
4
4
|
* @license MIT
|
|
5
5
|
* This source code is licensed under the MIT license found in the
|
|
@@ -15484,7 +15484,7 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
15484
15484
|
if (!getSlotProps) {
|
|
15485
15485
|
// The simpler case - getSlotProps is not defined, so no internal event handlers are defined,
|
|
15486
15486
|
// so we can simply merge all the props without having to worry about extracting event handlers.
|
|
15487
|
-
const joinedClasses = clsx(
|
|
15487
|
+
const joinedClasses = clsx(additionalProps == null ? void 0 : additionalProps.className, className, externalForwardedProps == null ? void 0 : externalForwardedProps.className, externalSlotProps == null ? void 0 : externalSlotProps.className);
|
|
15488
15488
|
const mergedStyle = _extends({}, additionalProps == null ? void 0 : additionalProps.style, externalForwardedProps == null ? void 0 : externalForwardedProps.style, externalSlotProps == null ? void 0 : externalSlotProps.style);
|
|
15489
15489
|
const props = _extends({}, additionalProps, externalForwardedProps, externalSlotProps);
|
|
15490
15490
|
if (joinedClasses.length > 0) {
|
|
@@ -18658,7 +18658,9 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
18658
18658
|
// clicking a checkbox to check it, hitting a button to submit a form,
|
|
18659
18659
|
// and hitting left arrow to move the cursor in a text input etc.
|
|
18660
18660
|
// Only special HTML elements have these default behaviors.
|
|
18661
|
-
if (event.key !== 'Escape' ||
|
|
18661
|
+
if (event.key !== 'Escape' || event.which === 229 ||
|
|
18662
|
+
// Wait until IME is settled.
|
|
18663
|
+
!isTopModal()) {
|
|
18662
18664
|
return;
|
|
18663
18665
|
}
|
|
18664
18666
|
if (!disableEscapeKeyDown) {
|
|
@@ -26645,7 +26647,9 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
26645
26647
|
}, ownerState.edge === 'end' && {
|
|
26646
26648
|
marginRight: ownerState.size === 'small' ? -3 : -12
|
|
26647
26649
|
}));
|
|
26648
|
-
const SwitchBaseInput = styled$1('input'
|
|
26650
|
+
const SwitchBaseInput = styled$1('input', {
|
|
26651
|
+
shouldForwardProp: rootShouldForwardProp
|
|
26652
|
+
})({
|
|
26649
26653
|
cursor: 'inherit',
|
|
26650
26654
|
position: 'absolute',
|
|
26651
26655
|
opacity: 0,
|
|
@@ -37571,7 +37575,9 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
37571
37575
|
|
|
37572
37576
|
var _span$1;
|
|
37573
37577
|
const _excluded$M = ["children", "classes", "className", "label", "notched"];
|
|
37574
|
-
const NotchedOutlineRoot$1 = styled$1('fieldset'
|
|
37578
|
+
const NotchedOutlineRoot$1 = styled$1('fieldset', {
|
|
37579
|
+
shouldForwardProp: rootShouldForwardProp
|
|
37580
|
+
})({
|
|
37575
37581
|
textAlign: 'left',
|
|
37576
37582
|
position: 'absolute',
|
|
37577
37583
|
bottom: 0,
|
|
@@ -37587,7 +37593,9 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
37587
37593
|
overflow: 'hidden',
|
|
37588
37594
|
minWidth: '0%'
|
|
37589
37595
|
});
|
|
37590
|
-
const NotchedOutlineLegend = styled$1('legend'
|
|
37596
|
+
const NotchedOutlineLegend = styled$1('legend', {
|
|
37597
|
+
shouldForwardProp: rootShouldForwardProp
|
|
37598
|
+
})(({
|
|
37591
37599
|
ownerState,
|
|
37592
37600
|
theme
|
|
37593
37601
|
}) => _extends({
|
|
@@ -38747,7 +38755,9 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
38747
38755
|
d: "M8.465 8.465C9.37 7.56 10.62 7 12 7C14.76 7 17 9.24 17 12C17 13.38 16.44 14.63 15.535 15.535C14.63 16.44 13.38 17 12 17C9.24 17 7 14.76 7 12C7 10.62 7.56 9.37 8.465 8.465Z"
|
|
38748
38756
|
}), 'RadioButtonChecked');
|
|
38749
38757
|
|
|
38750
|
-
const RadioButtonIconRoot = styled$1('span'
|
|
38758
|
+
const RadioButtonIconRoot = styled$1('span', {
|
|
38759
|
+
shouldForwardProp: rootShouldForwardProp
|
|
38760
|
+
})({
|
|
38751
38761
|
position: 'relative',
|
|
38752
38762
|
display: 'flex'
|
|
38753
38763
|
});
|
|
@@ -45234,7 +45244,9 @@ See https://mui.com/r/migration-v4/#mui-material-styles for more details.` );
|
|
|
45234
45244
|
var Stepper$1 = Stepper;
|
|
45235
45245
|
|
|
45236
45246
|
const _excluded$l = ["anchor", "classes", "className", "width", "style"];
|
|
45237
|
-
const SwipeAreaRoot = styled$1('div'
|
|
45247
|
+
const SwipeAreaRoot = styled$1('div', {
|
|
45248
|
+
shouldForwardProp: rootShouldForwardProp
|
|
45249
|
+
})(({
|
|
45238
45250
|
theme,
|
|
45239
45251
|
ownerState
|
|
45240
45252
|
}) => _extends({
|