@mui/material 5.16.5 → 5.16.6

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/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # [Versions](https://mui.com/versions/)
2
2
 
3
+ ## 5.16.6
4
+
5
+ <!-- generated comparing v5.16.5..master -->
6
+
7
+ _Jul 30, 2024_
8
+
9
+ A big thanks to the 5 contributors who made this release possible.
10
+
11
+ ### `@mui/material@5.16.6`
12
+
13
+ - [Divider] Enable borderStyle enhancement in divider with children (#43059) @anuujj
14
+
15
+ ### Docs
16
+
17
+ - [material-ui][Card] Update CardMedia description (#43121) @shahzaibdev1
18
+ - [material-ui] Replace deprecated `<ListItem button/>` with `ListItemButton` component in routing libraries list example (#43114) @aliharis99
19
+ - [material-ui][Snackbar] Improve close `reason` type in demos (#43105) @sai6855
20
+
21
+ ### Core
22
+
23
+ - [code-infra] Use the same CI names on master & next (#43064) @mnajdova
24
+
25
+ All contributors of this release in alphabetical order: @aliharis99, @anuujj, @mnajdova, @sai6855, @shahzaibdev1
26
+
3
27
  ## 5.16.5
4
28
 
5
29
  <!-- generated comparing v5.16.4..master -->
@@ -78,6 +78,8 @@ const DividerRoot = styled('div', {
78
78
  whiteSpace: 'nowrap',
79
79
  textAlign: 'center',
80
80
  border: 0,
81
+ borderTopStyle: 'solid',
82
+ borderLeftStyle: 'solid',
81
83
  '&::before, &::after': {
82
84
  content: '""',
83
85
  alignSelf: 'center'
@@ -88,7 +90,8 @@ const DividerRoot = styled('div', {
88
90
  }) => _extends({}, ownerState.children && ownerState.orientation !== 'vertical' && {
89
91
  '&::before, &::after': {
90
92
  width: '100%',
91
- borderTop: `thin solid ${(theme.vars || theme).palette.divider}`
93
+ borderTop: `thin solid ${(theme.vars || theme).palette.divider}`,
94
+ borderTopStyle: 'inherit'
92
95
  }
93
96
  }), ({
94
97
  theme,
@@ -97,7 +100,8 @@ const DividerRoot = styled('div', {
97
100
  flexDirection: 'column',
98
101
  '&::before, &::after': {
99
102
  height: '100%',
100
- borderLeft: `thin solid ${(theme.vars || theme).palette.divider}`
103
+ borderLeft: `thin solid ${(theme.vars || theme).palette.divider}`,
104
+ borderLeftStyle: 'inherit'
101
105
  }
102
106
  }), ({
103
107
  ownerState
package/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v5.16.5
2
+ * @mui/material v5.16.6
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -74,6 +74,8 @@ var DividerRoot = styled('div', {
74
74
  whiteSpace: 'nowrap',
75
75
  textAlign: 'center',
76
76
  border: 0,
77
+ borderTopStyle: 'solid',
78
+ borderLeftStyle: 'solid',
77
79
  '&::before, &::after': {
78
80
  content: '""',
79
81
  alignSelf: 'center'
@@ -85,7 +87,8 @@ var DividerRoot = styled('div', {
85
87
  return _extends({}, ownerState.children && ownerState.orientation !== 'vertical' && {
86
88
  '&::before, &::after': {
87
89
  width: '100%',
88
- borderTop: "thin solid ".concat((theme.vars || theme).palette.divider)
90
+ borderTop: "thin solid ".concat((theme.vars || theme).palette.divider),
91
+ borderTopStyle: 'inherit'
89
92
  }
90
93
  });
91
94
  }, function (_ref4) {
@@ -95,7 +98,8 @@ var DividerRoot = styled('div', {
95
98
  flexDirection: 'column',
96
99
  '&::before, &::after': {
97
100
  height: '100%',
98
- borderLeft: "thin solid ".concat((theme.vars || theme).palette.divider)
101
+ borderLeft: "thin solid ".concat((theme.vars || theme).palette.divider),
102
+ borderLeftStyle: 'inherit'
99
103
  }
100
104
  });
101
105
  }, function (_ref5) {
package/legacy/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v5.16.5
2
+ * @mui/material v5.16.6
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -78,6 +78,8 @@ const DividerRoot = styled('div', {
78
78
  whiteSpace: 'nowrap',
79
79
  textAlign: 'center',
80
80
  border: 0,
81
+ borderTopStyle: 'solid',
82
+ borderLeftStyle: 'solid',
81
83
  '&::before, &::after': {
82
84
  content: '""',
83
85
  alignSelf: 'center'
@@ -88,7 +90,8 @@ const DividerRoot = styled('div', {
88
90
  }) => _extends({}, ownerState.children && ownerState.orientation !== 'vertical' && {
89
91
  '&::before, &::after': {
90
92
  width: '100%',
91
- borderTop: `thin solid ${(theme.vars || theme).palette.divider}`
93
+ borderTop: `thin solid ${(theme.vars || theme).palette.divider}`,
94
+ borderTopStyle: 'inherit'
92
95
  }
93
96
  }), ({
94
97
  theme,
@@ -97,7 +100,8 @@ const DividerRoot = styled('div', {
97
100
  flexDirection: 'column',
98
101
  '&::before, &::after': {
99
102
  height: '100%',
100
- borderLeft: `thin solid ${(theme.vars || theme).palette.divider}`
103
+ borderLeft: `thin solid ${(theme.vars || theme).palette.divider}`,
104
+ borderLeftStyle: 'inherit'
101
105
  }
102
106
  }), ({
103
107
  ownerState
package/modern/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v5.16.5
2
+ * @mui/material v5.16.6
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -86,6 +86,8 @@ const DividerRoot = (0, _styled.default)('div', {
86
86
  whiteSpace: 'nowrap',
87
87
  textAlign: 'center',
88
88
  border: 0,
89
+ borderTopStyle: 'solid',
90
+ borderLeftStyle: 'solid',
89
91
  '&::before, &::after': {
90
92
  content: '""',
91
93
  alignSelf: 'center'
@@ -96,7 +98,8 @@ const DividerRoot = (0, _styled.default)('div', {
96
98
  }) => (0, _extends2.default)({}, ownerState.children && ownerState.orientation !== 'vertical' && {
97
99
  '&::before, &::after': {
98
100
  width: '100%',
99
- borderTop: `thin solid ${(theme.vars || theme).palette.divider}`
101
+ borderTop: `thin solid ${(theme.vars || theme).palette.divider}`,
102
+ borderTopStyle: 'inherit'
100
103
  }
101
104
  }), ({
102
105
  theme,
@@ -105,7 +108,8 @@ const DividerRoot = (0, _styled.default)('div', {
105
108
  flexDirection: 'column',
106
109
  '&::before, &::after': {
107
110
  height: '100%',
108
- borderLeft: `thin solid ${(theme.vars || theme).palette.divider}`
111
+ borderLeft: `thin solid ${(theme.vars || theme).palette.divider}`,
112
+ borderLeftStyle: 'inherit'
109
113
  }
110
114
  }), ({
111
115
  ownerState
package/node/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v5.16.5
2
+ * @mui/material v5.16.6
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/material",
3
- "version": "5.16.5",
3
+ "version": "5.16.6",
4
4
  "private": false,
5
5
  "author": "MUI Team",
6
6
  "description": "Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.",
@@ -35,9 +35,9 @@
35
35
  "prop-types": "^15.8.1",
36
36
  "react-is": "^18.3.1",
37
37
  "react-transition-group": "^4.4.5",
38
- "@mui/system": "^5.16.5",
39
- "@mui/core-downloads-tracker": "^5.16.5",
40
- "@mui/utils": "^5.16.5",
38
+ "@mui/core-downloads-tracker": "^5.16.6",
39
+ "@mui/system": "^5.16.6",
40
+ "@mui/utils": "^5.16.6",
41
41
  "@mui/types": "^7.2.15"
42
42
  },
43
43
  "peerDependencies": {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @mui/material v5.16.5
2
+ * @mui/material v5.16.6
3
3
  *
4
4
  * @license MIT
5
5
  * This source code is licensed under the MIT license found in the
@@ -28512,6 +28512,8 @@
28512
28512
  whiteSpace: 'nowrap',
28513
28513
  textAlign: 'center',
28514
28514
  border: 0,
28515
+ borderTopStyle: 'solid',
28516
+ borderLeftStyle: 'solid',
28515
28517
  '&::before, &::after': {
28516
28518
  content: '""',
28517
28519
  alignSelf: 'center'
@@ -28523,7 +28525,8 @@
28523
28525
  return _extends({}, ownerState.children && ownerState.orientation !== 'vertical' && {
28524
28526
  '&::before, &::after': {
28525
28527
  width: '100%',
28526
- borderTop: "thin solid ".concat((theme.vars || theme).palette.divider)
28528
+ borderTop: "thin solid ".concat((theme.vars || theme).palette.divider),
28529
+ borderTopStyle: 'inherit'
28527
28530
  }
28528
28531
  });
28529
28532
  }, function (_ref4) {
@@ -28533,7 +28536,8 @@
28533
28536
  flexDirection: 'column',
28534
28537
  '&::before, &::after': {
28535
28538
  height: '100%',
28536
- borderLeft: "thin solid ".concat((theme.vars || theme).palette.divider)
28539
+ borderLeft: "thin solid ".concat((theme.vars || theme).palette.divider),
28540
+ borderLeftStyle: 'inherit'
28537
28541
  }
28538
28542
  });
28539
28543
  }, function (_ref5) {