@mui/lab 5.0.0-alpha.141 → 5.0.0-alpha.142
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 +42 -0
- package/LoadingButton/LoadingButton.d.ts +1 -1
- package/LoadingButton/LoadingButton.js +1 -1
- package/index.js +1 -1
- package/legacy/LoadingButton/LoadingButton.js +1 -1
- package/legacy/index.js +1 -1
- package/modern/LoadingButton/LoadingButton.js +1 -1
- package/modern/index.js +1 -1
- package/node/LoadingButton/LoadingButton.js +1 -1
- package/node/index.js +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 5.14.7
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v5.14.6..master -->
|
|
6
|
+
|
|
7
|
+
_Aug 29, 2023_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 11 contributors who made this release possible. This release focuses primarily on 🐛 bug fixes, 📚 documentation, and ⚙️ infrastructure improvements.
|
|
10
|
+
|
|
11
|
+
### `@mui/material@5.14.7`
|
|
12
|
+
|
|
13
|
+
- ​<!-- 17 -->[Autocomplete] Fix listbox opened unexpectedly when component is `disabled` (#38611) @mj12albert
|
|
14
|
+
- ​<!-- 03 -->[Select][material-ui] Fix select menu moving on scroll when disableScrollLock is true (#37773) @VishruthR
|
|
15
|
+
|
|
16
|
+
### `@mui/base@5.0.0-beta.13`
|
|
17
|
+
|
|
18
|
+
- ​<!-- 16 -->[useButton][base-ui] Accept arbitrary props in getRootProps and forward them (#38475) @DiegoAndai
|
|
19
|
+
|
|
20
|
+
### `@mui/zero-runtime@0.0.1-alpha.1`
|
|
21
|
+
|
|
22
|
+
- ​<!-- 02 -->[system][zero][tag] Add support for sx prop (#38535) @brijeshb42
|
|
23
|
+
|
|
24
|
+
### Docs
|
|
25
|
+
|
|
26
|
+
- ​<!-- 10 -->[docs] Number Input docs fixes (#38521) @mj12albert
|
|
27
|
+
- ​<!-- 09 -->[docs] Show all the code in the usage section (#38691) @oliviertassinari
|
|
28
|
+
- ​<!-- 06 -->[docs][joy-ui] Change the customization and how-to guides docs tree (#38396) @danilo-leal
|
|
29
|
+
- ​<!-- 05 -->[docs][lab][LoadingButton] Improve `loading` prop documentation (#38625) @sai6855
|
|
30
|
+
- ​<!-- 04 -->[docs][material-ui] Format `key` prop JSDoc description in `Snackbar` component code correctly (#38603) @jaydenseric
|
|
31
|
+
|
|
32
|
+
### Core
|
|
33
|
+
|
|
34
|
+
- ​<!-- 15 -->[core] Add use-client to custom icons (#38132) @mj12albert
|
|
35
|
+
- ​<!-- 14 -->[core] Remove unnecessary `@types/jsdom` (#38657) @renovate[bot]
|
|
36
|
+
- ​<!-- 13 -->[core] Improve sponsors GA labels (#38649) @oliviertassinari
|
|
37
|
+
- ​<!-- 12 -->[core] Fix ESM issues with regression tests (#37963) @Janpot
|
|
38
|
+
- ​<!-- 11 -->[core] Potential fix for intermittent ci crashes in e2e test (#38614) @Janpot
|
|
39
|
+
- ​<!-- 08 -->[docs-infra] Adjust the Material You playground demo design (#38636) @danilo-leal
|
|
40
|
+
- ​<!-- 07 -->[docs-infra] Hide the SkipLink button if user prefers reduced motion (#38632) @DerTimonius
|
|
41
|
+
- ​<!-- 01 -->[website] Add tiny fixes the homepage Sponsors section (#38635) @danilo-leal
|
|
42
|
+
|
|
43
|
+
All contributors of this release in alphabetical order: @brijeshb42, @danilo-leal, @DerTimonius, @DiegoAndai, @Janpot, @jaydenseric, @mj12albert, @oliviertassinari, @renovate[bot], @sai6855, @VishruthR
|
|
44
|
+
|
|
3
45
|
## 5.14.6
|
|
4
46
|
|
|
5
47
|
<!-- generated comparing v5.14.5..master -->
|
|
@@ -178,7 +178,7 @@ process.env.NODE_ENV !== "production" ? LoadingButton.propTypes /* remove-propty
|
|
|
178
178
|
*/
|
|
179
179
|
id: PropTypes.string,
|
|
180
180
|
/**
|
|
181
|
-
* If `true`, the loading indicator is shown.
|
|
181
|
+
* If `true`, the loading indicator is shown and the button becomes disabled.
|
|
182
182
|
* @default false
|
|
183
183
|
*/
|
|
184
184
|
loading: PropTypes.bool,
|
package/index.js
CHANGED
|
@@ -171,7 +171,7 @@ process.env.NODE_ENV !== "production" ? LoadingButton.propTypes /* remove-propty
|
|
|
171
171
|
*/
|
|
172
172
|
id: PropTypes.string,
|
|
173
173
|
/**
|
|
174
|
-
* If `true`, the loading indicator is shown.
|
|
174
|
+
* If `true`, the loading indicator is shown and the button becomes disabled.
|
|
175
175
|
* @default false
|
|
176
176
|
*/
|
|
177
177
|
loading: PropTypes.bool,
|
package/legacy/index.js
CHANGED
|
@@ -178,7 +178,7 @@ process.env.NODE_ENV !== "production" ? LoadingButton.propTypes /* remove-propty
|
|
|
178
178
|
*/
|
|
179
179
|
id: PropTypes.string,
|
|
180
180
|
/**
|
|
181
|
-
* If `true`, the loading indicator is shown.
|
|
181
|
+
* If `true`, the loading indicator is shown and the button becomes disabled.
|
|
182
182
|
* @default false
|
|
183
183
|
*/
|
|
184
184
|
loading: PropTypes.bool,
|
package/modern/index.js
CHANGED
|
@@ -186,7 +186,7 @@ process.env.NODE_ENV !== "production" ? LoadingButton.propTypes /* remove-propty
|
|
|
186
186
|
*/
|
|
187
187
|
id: _propTypes.default.string,
|
|
188
188
|
/**
|
|
189
|
-
* If `true`, the loading indicator is shown.
|
|
189
|
+
* If `true`, the loading indicator is shown and the button becomes disabled.
|
|
190
190
|
* @default false
|
|
191
191
|
*/
|
|
192
192
|
loading: _propTypes.default.bool,
|
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.142",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "Laboratory for new MUI modules.",
|
|
@@ -48,10 +48,10 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@babel/runtime": "^7.22.10",
|
|
51
|
-
"@mui/base": "5.0.0-beta.
|
|
52
|
-
"@mui/system": "^5.14.
|
|
51
|
+
"@mui/base": "5.0.0-beta.13",
|
|
52
|
+
"@mui/system": "^5.14.7",
|
|
53
53
|
"@mui/types": "^7.2.4",
|
|
54
|
-
"@mui/utils": "^5.14.
|
|
54
|
+
"@mui/utils": "^5.14.7",
|
|
55
55
|
"clsx": "^2.0.0",
|
|
56
56
|
"prop-types": "^15.8.1",
|
|
57
57
|
"react-is": "^18.2.0"
|