@mui/lab 5.0.0-alpha.161 → 5.0.0-alpha.163
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 +401 -249
- package/TabContext/TabContext.d.ts +1 -1
- package/TabContext/TabContext.js +1 -1
- package/index.js +1 -1
- package/legacy/TabContext/TabContext.js +1 -1
- package/legacy/index.js +1 -1
- package/modern/TabContext/TabContext.js +1 -1
- package/modern/index.js +1 -1
- package/node/TabContext/TabContext.js +1 -1
- package/node/index.js +1 -1
- package/package.json +5 -5
package/TabContext/TabContext.js
CHANGED
|
@@ -47,7 +47,7 @@ process.env.NODE_ENV !== "production" ? TabContext.propTypes /* remove-proptypes
|
|
|
47
47
|
/**
|
|
48
48
|
* The value of the currently selected `Tab`.
|
|
49
49
|
*/
|
|
50
|
-
value: PropTypes.string.isRequired
|
|
50
|
+
value: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired
|
|
51
51
|
} : void 0;
|
|
52
52
|
|
|
53
53
|
/**
|
package/index.js
CHANGED
|
@@ -47,7 +47,7 @@ process.env.NODE_ENV !== "production" ? TabContext.propTypes /* remove-proptypes
|
|
|
47
47
|
/**
|
|
48
48
|
* The value of the currently selected `Tab`.
|
|
49
49
|
*/
|
|
50
|
-
value: PropTypes.string.isRequired
|
|
50
|
+
value: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired
|
|
51
51
|
} : void 0;
|
|
52
52
|
|
|
53
53
|
/**
|
package/legacy/index.js
CHANGED
|
@@ -47,7 +47,7 @@ process.env.NODE_ENV !== "production" ? TabContext.propTypes /* remove-proptypes
|
|
|
47
47
|
/**
|
|
48
48
|
* The value of the currently selected `Tab`.
|
|
49
49
|
*/
|
|
50
|
-
value: PropTypes.string.isRequired
|
|
50
|
+
value: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired
|
|
51
51
|
} : void 0;
|
|
52
52
|
|
|
53
53
|
/**
|
package/modern/index.js
CHANGED
|
@@ -56,7 +56,7 @@ process.env.NODE_ENV !== "production" ? TabContext.propTypes /* remove-proptypes
|
|
|
56
56
|
/**
|
|
57
57
|
* The value of the currently selected `Tab`.
|
|
58
58
|
*/
|
|
59
|
-
value: _propTypes.default.string.isRequired
|
|
59
|
+
value: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]).isRequired
|
|
60
60
|
} : void 0;
|
|
61
61
|
|
|
62
62
|
/**
|
package/node/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/lab",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.163",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "Laboratory for new MUI modules.",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"url": "https://opencollective.com/mui-org"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@babel/runtime": "^7.23.
|
|
31
|
+
"@babel/runtime": "^7.23.9",
|
|
32
32
|
"clsx": "^2.1.0",
|
|
33
33
|
"prop-types": "^15.8.1",
|
|
34
|
-
"@mui/base": "5.0.0-beta.
|
|
35
|
-
"@mui/system": "^5.15.
|
|
34
|
+
"@mui/base": "5.0.0-beta.34",
|
|
35
|
+
"@mui/system": "^5.15.7",
|
|
36
36
|
"@mui/types": "^7.2.13",
|
|
37
|
-
"@mui/utils": "^5.15.
|
|
37
|
+
"@mui/utils": "^5.15.7"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"@emotion/react": "^11.5.0",
|