@mui/material 5.16.5 → 5.16.7
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 +47 -0
- package/Divider/Divider.js +6 -2
- package/index.d.ts +2 -0
- package/index.js +3 -2
- package/legacy/Divider/Divider.js +6 -2
- package/legacy/index.js +3 -2
- package/legacy/version/index.js +7 -0
- package/modern/Divider/Divider.js +6 -2
- package/modern/index.js +3 -2
- package/modern/version/index.js +7 -0
- package/node/Divider/Divider.js +6 -2
- package/node/index.js +13 -1
- package/node/version/index.js +13 -0
- package/package.json +5 -5
- package/umd/material-ui.development.js +20 -3
- package/umd/material-ui.production.min.js +2 -2
- package/version/index.d.ts +7 -0
- package/version/index.js +7 -0
- package/version/package.json +6 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 5.16.7
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v5.16.6..master -->
|
|
6
|
+
|
|
7
|
+
_Aug 9, 2024_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 3 contributors who made this release possible.
|
|
10
|
+
|
|
11
|
+
### `@mui/material@5.16.7`
|
|
12
|
+
|
|
13
|
+
- ​<!-- 3 -->[material-ui][mui-system] Add support for version runtime checks (#43233) @DiegoAndai
|
|
14
|
+
|
|
15
|
+
### Docs
|
|
16
|
+
|
|
17
|
+
- ​<!-- 4 -->[docs] Fix 301 @oliviertassinari
|
|
18
|
+
|
|
19
|
+
### Core
|
|
20
|
+
|
|
21
|
+
- ​<!-- 2 -->[website] Fix wrong link in pricing table (@zanivan) (#43143) @zanivan
|
|
22
|
+
- ​<!-- 1 -->[website] Add blog link to pricing table (@zanivan) (#43140) @zanivan
|
|
23
|
+
|
|
24
|
+
All contributors of this release in alphabetical order: @DiegoAndai, @oliviertassinari, @zanivan
|
|
25
|
+
|
|
26
|
+
## 5.16.6
|
|
27
|
+
|
|
28
|
+
<!-- generated comparing v5.16.5..master -->
|
|
29
|
+
|
|
30
|
+
_Jul 30, 2024_
|
|
31
|
+
|
|
32
|
+
A big thanks to the 5 contributors who made this release possible.
|
|
33
|
+
|
|
34
|
+
### `@mui/material@5.16.6`
|
|
35
|
+
|
|
36
|
+
- [Divider] Enable borderStyle enhancement in divider with children (#43059) @anuujj
|
|
37
|
+
|
|
38
|
+
### Docs
|
|
39
|
+
|
|
40
|
+
- [material-ui][Card] Update CardMedia description (#43121) @shahzaibdev1
|
|
41
|
+
- [material-ui] Replace deprecated `<ListItem button/>` with `ListItemButton` component in routing libraries list example (#43114) @aliharis99
|
|
42
|
+
- [material-ui][Snackbar] Improve close `reason` type in demos (#43105) @sai6855
|
|
43
|
+
|
|
44
|
+
### Core
|
|
45
|
+
|
|
46
|
+
- [code-infra] Use the same CI names on master & next (#43064) @mnajdova
|
|
47
|
+
|
|
48
|
+
All contributors of this release in alphabetical order: @aliharis99, @anuujj, @mnajdova, @sai6855, @shahzaibdev1
|
|
49
|
+
|
|
3
50
|
## 5.16.5
|
|
4
51
|
|
|
5
52
|
<!-- generated comparing v5.16.4..master -->
|
package/Divider/Divider.js
CHANGED
|
@@ -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.d.ts
CHANGED
|
@@ -476,6 +476,8 @@ export * from './useAutocomplete';
|
|
|
476
476
|
export { default as GlobalStyles } from './GlobalStyles';
|
|
477
477
|
export * from './GlobalStyles';
|
|
478
478
|
|
|
479
|
+
export * from './version';
|
|
480
|
+
|
|
479
481
|
/**
|
|
480
482
|
* @deprecated will be removed in v5.beta, please use StyledEngineProvider from @mui/material/styles instead
|
|
481
483
|
*/
|
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/material v5.16.
|
|
2
|
+
* @mui/material v5.16.7
|
|
3
3
|
*
|
|
4
4
|
* @license MIT
|
|
5
5
|
* This source code is licensed under the MIT license found in the
|
|
@@ -285,4 +285,5 @@ export { unstable_composeClasses } from '@mui/utils';
|
|
|
285
285
|
export { default as generateUtilityClass } from './generateUtilityClass';
|
|
286
286
|
export * from './generateUtilityClass';
|
|
287
287
|
export { default as generateUtilityClasses } from './generateUtilityClasses';
|
|
288
|
-
export { default as Unstable_TrapFocus } from './Unstable_TrapFocus';
|
|
288
|
+
export { default as Unstable_TrapFocus } from './Unstable_TrapFocus';
|
|
289
|
+
export * from './version';
|
|
@@ -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.
|
|
2
|
+
* @mui/material v5.16.7
|
|
3
3
|
*
|
|
4
4
|
* @license MIT
|
|
5
5
|
* This source code is licensed under the MIT license found in the
|
|
@@ -285,4 +285,5 @@ export { unstable_composeClasses } from '@mui/utils';
|
|
|
285
285
|
export { default as generateUtilityClass } from './generateUtilityClass';
|
|
286
286
|
export * from './generateUtilityClass';
|
|
287
287
|
export { default as generateUtilityClasses } from './generateUtilityClasses';
|
|
288
|
-
export { default as Unstable_TrapFocus } from './Unstable_TrapFocus';
|
|
288
|
+
export { default as Unstable_TrapFocus } from './Unstable_TrapFocus';
|
|
289
|
+
export * from './version';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export var version = "5.16.7";
|
|
2
|
+
export var major = Number("5");
|
|
3
|
+
export var minor = Number("16");
|
|
4
|
+
export var patch = Number("7");
|
|
5
|
+
export var preReleaseLabel = undefined || null;
|
|
6
|
+
export var preReleaseNumber = Number(undefined) || null;
|
|
7
|
+
export default version;
|
|
@@ -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.
|
|
2
|
+
* @mui/material v5.16.7
|
|
3
3
|
*
|
|
4
4
|
* @license MIT
|
|
5
5
|
* This source code is licensed under the MIT license found in the
|
|
@@ -285,4 +285,5 @@ export { unstable_composeClasses } from '@mui/utils';
|
|
|
285
285
|
export { default as generateUtilityClass } from './generateUtilityClass';
|
|
286
286
|
export * from './generateUtilityClass';
|
|
287
287
|
export { default as generateUtilityClasses } from './generateUtilityClasses';
|
|
288
|
-
export { default as Unstable_TrapFocus } from './Unstable_TrapFocus';
|
|
288
|
+
export { default as Unstable_TrapFocus } from './Unstable_TrapFocus';
|
|
289
|
+
export * from './version';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
export const version = "5.16.7";
|
|
2
|
+
export const major = Number("5");
|
|
3
|
+
export const minor = Number("16");
|
|
4
|
+
export const patch = Number("7");
|
|
5
|
+
export const preReleaseLabel = undefined || null;
|
|
6
|
+
export const preReleaseNumber = Number(undefined) || null;
|
|
7
|
+
export default version;
|
package/node/Divider/Divider.js
CHANGED
|
@@ -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.
|
|
2
|
+
* @mui/material v5.16.7
|
|
3
3
|
*
|
|
4
4
|
* @license MIT
|
|
5
5
|
* This source code is licensed under the MIT license found in the
|
|
@@ -2619,5 +2619,17 @@ Object.keys(_generateUtilityClass).forEach(function (key) {
|
|
|
2619
2619
|
});
|
|
2620
2620
|
var _generateUtilityClasses = _interopRequireDefault(require("./generateUtilityClasses"));
|
|
2621
2621
|
var _Unstable_TrapFocus = _interopRequireDefault(require("./Unstable_TrapFocus"));
|
|
2622
|
+
var _version = require("./version");
|
|
2623
|
+
Object.keys(_version).forEach(function (key) {
|
|
2624
|
+
if (key === "default" || key === "__esModule") return;
|
|
2625
|
+
if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
|
|
2626
|
+
if (key in exports && exports[key] === _version[key]) return;
|
|
2627
|
+
Object.defineProperty(exports, key, {
|
|
2628
|
+
enumerable: true,
|
|
2629
|
+
get: function () {
|
|
2630
|
+
return _version[key];
|
|
2631
|
+
}
|
|
2632
|
+
});
|
|
2633
|
+
});
|
|
2622
2634
|
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
2623
2635
|
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.version = exports.preReleaseNumber = exports.preReleaseLabel = exports.patch = exports.minor = exports.major = exports.default = void 0;
|
|
7
|
+
const version = exports.version = "5.16.7";
|
|
8
|
+
const major = exports.major = Number("5");
|
|
9
|
+
const minor = exports.minor = Number("16");
|
|
10
|
+
const patch = exports.patch = Number("7");
|
|
11
|
+
const preReleaseLabel = exports.preReleaseLabel = undefined || null;
|
|
12
|
+
const preReleaseNumber = exports.preReleaseNumber = Number(undefined) || null;
|
|
13
|
+
var _default = exports.default = version;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/material",
|
|
3
|
-
"version": "5.16.
|
|
3
|
+
"version": "5.16.7",
|
|
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,10 +35,10 @@
|
|
|
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.
|
|
39
|
-
"@mui/
|
|
40
|
-
"@mui/
|
|
41
|
-
"@mui/
|
|
38
|
+
"@mui/system": "^5.16.7",
|
|
39
|
+
"@mui/utils": "^5.16.6",
|
|
40
|
+
"@mui/types": "^7.2.15",
|
|
41
|
+
"@mui/core-downloads-tracker": "^5.16.7"
|
|
42
42
|
},
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"@emotion/react": "^11.5.0",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @mui/material v5.16.
|
|
2
|
+
* @mui/material v5.16.7
|
|
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) {
|
|
@@ -50716,6 +50720,13 @@
|
|
|
50716
50720
|
return trigger;
|
|
50717
50721
|
}
|
|
50718
50722
|
|
|
50723
|
+
var version = undefined;
|
|
50724
|
+
var major = Number(undefined);
|
|
50725
|
+
var minor = Number(undefined);
|
|
50726
|
+
var patch = Number(undefined);
|
|
50727
|
+
var preReleaseLabel = null;
|
|
50728
|
+
var preReleaseNumber = Number(undefined) || null;
|
|
50729
|
+
|
|
50719
50730
|
exports.Accordion = Accordion$1;
|
|
50720
50731
|
exports.AccordionActions = AccordionActions$1;
|
|
50721
50732
|
exports.AccordionDetails = AccordionDetails$1;
|
|
@@ -51080,9 +51091,11 @@
|
|
|
51080
51091
|
exports.listItemSecondaryActionClasses = listItemSecondaryActionClasses$1;
|
|
51081
51092
|
exports.listItemTextClasses = listItemTextClasses$1;
|
|
51082
51093
|
exports.listSubheaderClasses = listSubheaderClasses$1;
|
|
51094
|
+
exports.major = major;
|
|
51083
51095
|
exports.makeStyles = makeStyles;
|
|
51084
51096
|
exports.menuClasses = menuClasses$1;
|
|
51085
51097
|
exports.menuItemClasses = menuItemClasses$1;
|
|
51098
|
+
exports.minor = minor;
|
|
51086
51099
|
exports.mobileStepperClasses = mobileStepperClasses$1;
|
|
51087
51100
|
exports.modalClasses = modalClasses$1;
|
|
51088
51101
|
exports.nativeSelectClasses = nativeSelectClasses$1;
|
|
@@ -51092,7 +51105,10 @@
|
|
|
51092
51105
|
exports.paginationClasses = paginationClasses$1;
|
|
51093
51106
|
exports.paginationItemClasses = paginationItemClasses$1;
|
|
51094
51107
|
exports.paperClasses = paperClasses$1;
|
|
51108
|
+
exports.patch = patch;
|
|
51095
51109
|
exports.popoverClasses = popoverClasses$1;
|
|
51110
|
+
exports.preReleaseLabel = preReleaseLabel;
|
|
51111
|
+
exports.preReleaseNumber = preReleaseNumber;
|
|
51096
51112
|
exports.private_createMixins = createMixins;
|
|
51097
51113
|
exports.private_createTypography = createTypography;
|
|
51098
51114
|
exports.private_excludeVariablesFromRoot = excludeVariablesFromRoot$1;
|
|
@@ -51167,6 +51183,7 @@
|
|
|
51167
51183
|
exports.useStepperContext = useStepperContext;
|
|
51168
51184
|
exports.useTheme = useTheme;
|
|
51169
51185
|
exports.useThemeProps = useThemeProps;
|
|
51186
|
+
exports.version = version;
|
|
51170
51187
|
exports.withStyles = withStyles;
|
|
51171
51188
|
exports.withTheme = withTheme;
|
|
51172
51189
|
|