@mui/lab 5.0.0-alpha.115 β 5.0.0-alpha.117
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 +132 -0
- package/index.js +1 -1
- package/legacy/index.js +1 -1
- package/modern/index.js +1 -1
- package/node/index.js +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,137 @@
|
|
|
1
1
|
# [Versions](https://mui.com/versions/)
|
|
2
2
|
|
|
3
|
+
## 5.11.6
|
|
4
|
+
|
|
5
|
+
<!-- generated comparing v5.11.5..master -->
|
|
6
|
+
|
|
7
|
+
_Jan 23, 2023_
|
|
8
|
+
|
|
9
|
+
A big thanks to the 13 contributors who made this release possible. Here are some highlights β¨:
|
|
10
|
+
|
|
11
|
+
- @ZeeshanTamboli improved the logic for handling the value label in the `SliderUnstyled` (#35805)
|
|
12
|
+
- many other π bug fixes and π documentation improvements
|
|
13
|
+
|
|
14
|
+
### `@mui/material@5.11.6`
|
|
15
|
+
|
|
16
|
+
- ​<!-- 15 -->[Box] Fix usage of not supported features in TypeScript 3.5 (#35877) @mnajdova
|
|
17
|
+
- ​<!-- 14 -->[Button] Fix border color for secondary disabled button (#35866) @SaidMarar
|
|
18
|
+
- ​<!-- 03 -->[SwipeableDrawer] Add callback to customise touchstart ignore for swipeable drawer (#30759) @tech-meppem
|
|
19
|
+
|
|
20
|
+
### `@mui/base@5.0.0-alpha.115`
|
|
21
|
+
|
|
22
|
+
#### Breaking changes
|
|
23
|
+
|
|
24
|
+
- ​<!-- 04 -->[SliderUnstyled] Improved logic for displaying the value label (#35805) @ZeeshanTamboli
|
|
25
|
+
|
|
26
|
+
- The `valueLabelDisplay` prop is removed from `SliderUnstyled`. The prop was not working as intended in `SliderUnstyled` (See #35398). You can instead provide a `valueLabel` slot with the `slots` prop API to show the value label:
|
|
27
|
+
|
|
28
|
+
```diff
|
|
29
|
+
- <SliderUnstyled valueLabelDisplay="on" />
|
|
30
|
+
+ <SliderUnstyled slots={{ valueLabel: SliderValueLabel }} />
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
The following demo shows how to show a value label when it is hovered over with the thumb: https://mui.com/base/react-slider/#value-label
|
|
34
|
+
|
|
35
|
+
- The following classes are removed from `sliderUnstyledClasses` since they are not needed for the value label:
|
|
36
|
+
|
|
37
|
+
```diff
|
|
38
|
+
- valueLabel
|
|
39
|
+
- valueLabelOpen
|
|
40
|
+
- valueLabelCircle
|
|
41
|
+
- valueLabelLabel
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
In the custom value label component, you can define your own classNames and target them with CSS.
|
|
45
|
+
|
|
46
|
+
- The `SliderValueLabelUnstyled` component is removed from SliderUnstyled. You should provide your own custom component for the value label.
|
|
47
|
+
|
|
48
|
+
- To avoid using `React.cloneElement` API in value label, the component hierarchy structure of the value label is changed.Β The value label is now inside the Thumb slot - `Thumb` -> `Input`, `ValueLabel`.
|
|
49
|
+
|
|
50
|
+
#### Changes
|
|
51
|
+
|
|
52
|
+
- ​<!-- 05 -->[InputUnstyled] Fix externally provided `inputRef` is ignored (#35807) @sai6855
|
|
53
|
+
|
|
54
|
+
### `@mui/joy@5.0.0-alpha.64`
|
|
55
|
+
|
|
56
|
+
- ​<!-- 17 -->[Avatar][joy] Remove `imgProps` prop and add Codemod script for migration (#35859) @hbjORbj
|
|
57
|
+
|
|
58
|
+
### Docs
|
|
59
|
+
|
|
60
|
+
- ​<!-- 16 -->[blog] Date and time pickers revamped (#35486) @joserodolfofreitas
|
|
61
|
+
- ​<!-- 10 -->[docs] Fix incorrect breakpoint use (#34948) @rosita-dmello
|
|
62
|
+
- ​<!-- 09 -->[docs] Replace react-virtualized with react-virtuoso in Table (#35700) @petyosi
|
|
63
|
+
- ​<!-- 08 -->[docs] Fix account menu demo not closing with keyboard. (#35870) @mj12albert
|
|
64
|
+
- ​<!-- 07 -->[docs] Fix typos in the docs of Joy UI (#35876) @HeVictor
|
|
65
|
+
- ​<!-- 06 -->[docs] Fix wording in `Color` page (#35873) @oliv37
|
|
66
|
+
|
|
67
|
+
### Core
|
|
68
|
+
|
|
69
|
+
- ​<!-- 13 -->[core] Fix release changelog to handle commits with empty author field (#35921) @mnajdova
|
|
70
|
+
- ​<!-- 12 -->[core] Revert `docs-utilities` migration to TypeScript and fix type (#35881) @ZeeshanTamboli
|
|
71
|
+
- ​<!-- 11 -->[core] Migrate internal `docs-utilities` package to TypeScript (#35846) @ZeeshanTamboli
|
|
72
|
+
- ​<!-- 02 -->[website] Designer don't spend their time writing code @oliviertassinari
|
|
73
|
+
- ​<!-- 01 -->[website] Emphasis the technical background need for this role @oliviertassinari
|
|
74
|
+
|
|
75
|
+
All contributors of this release in alphabetical order: @HeVictor, @hbjORbj, @joserodolfofreitas, @mj12albert, @mnajdova, @oliv37, @oliviertassinari, @petyosi, @rosita-dmello, @sai6855, @SaidMarar, @tech-meppem, @ZeeshanTamboli
|
|
76
|
+
|
|
77
|
+
## 5.11.5
|
|
78
|
+
|
|
79
|
+
<!-- generated comparing v5.11.4..master -->
|
|
80
|
+
|
|
81
|
+
_Jan 17, 2023_
|
|
82
|
+
|
|
83
|
+
A big thanks to the 17 contributors who made this release possible.
|
|
84
|
+
This release was mostly about π bug fixes and π documentation improvements.
|
|
85
|
+
|
|
86
|
+
### `@mui/material@5.11.5`
|
|
87
|
+
|
|
88
|
+
- [Material UI] Custom channel token should suppress the warning (#35804) @siriwatknp
|
|
89
|
+
- [Autocomplete] Fix value type when `strictNullChecks` is `false` (#35367) @fenghan34
|
|
90
|
+
- [Slider] Replace `SliderUnstyled` with `useSlider` hook (#35770) @ZeeshanTamboli
|
|
91
|
+
- [l10n] Add Belarusian translation (#35742) @volhalink
|
|
92
|
+
|
|
93
|
+
### `@mui/system@5.11.5`
|
|
94
|
+
|
|
95
|
+
- [system] Improve the `createBox` types (#35532) @mnajdova
|
|
96
|
+
|
|
97
|
+
### `@mui/codemod@5.11.5`
|
|
98
|
+
|
|
99
|
+
- Add `joy-text-field-to-input` codemod (#35462) @hbjORbj
|
|
100
|
+
|
|
101
|
+
### `@mui/base@5.0.0-alpha.114`
|
|
102
|
+
|
|
103
|
+
- [base] Fix typos (#35802) @nnmax
|
|
104
|
+
- [Slider] Convert code to TypeScript (#35445) @sai6855
|
|
105
|
+
|
|
106
|
+
### `@mui/joy@5.0.0-alpha.63`
|
|
107
|
+
|
|
108
|
+
- [Tabs][joy] Don't apply `:hover, :active` styles when `selected` (#35750) @sai6855
|
|
109
|
+
- Remove `TextField` component and replace its usage in docs with `FormControl`/`FormLabel`/`Input` (#35462) @hbjORbj
|
|
110
|
+
- [TextField] Throw error with migration message (#35845) @siriwatknp
|
|
111
|
+
- Miscellaneous fixes (#35847) @siriwatknp
|
|
112
|
+
|
|
113
|
+
### Docs
|
|
114
|
+
|
|
115
|
+
- [docs] Improve pickers lab migration stressing `mui-x` usage (#35740) @LukasTy
|
|
116
|
+
- [docs] Fix incorrectly named AccessibleTable demo component (#35832) @HeVictor
|
|
117
|
+
- [docs] Clarify where to find docs for MUI Base components in Material UI (#35799) @samuelsycamore
|
|
118
|
+
- [docs] Fix typos (#35814) @alexfauquette
|
|
119
|
+
- [docs] Revise and expand the Joy UI Card page (#35745) @samuelsycamore
|
|
120
|
+
- [docs] Fix navigation layout shift (#35679) @oliviertassinari
|
|
121
|
+
- [docs] Fix typo in the Composition page (#35774) @msoyka
|
|
122
|
+
- [docs][joy] Update Customization section code example to use the correct API (#35765) @pupudu
|
|
123
|
+
- [docs][joy] Fix grammar in `Typography` docs (#35796) @atrefonas
|
|
124
|
+
- [examples] Remove `next-env.d.ts` from Next.js examples (#35772) @Juneezee
|
|
125
|
+
|
|
126
|
+
### Core
|
|
127
|
+
|
|
128
|
+
- [website] Improve pricing page (#35767) @oliviertassinari
|
|
129
|
+
- [website] Add Greg in about page (#35816) @oliviertassinari
|
|
130
|
+
- [website] Update the Accessibility Engineer role (#35751) @oliviertassinari
|
|
131
|
+
- [website] Add docs for MUI for Figma @oliviertassinari
|
|
132
|
+
|
|
133
|
+
All contributors of this release in alphabetical order: @alexfauquette, @atrefonas, @fenghan34, @hbjORbj, @HeVictor, @Juneezee, @LukasTy, @mnajdova, @msoyka, @nnmax, @oliviertassinari, @pupudu, @sai6855, @samuelsycamore, @siriwatknp, @volhalink, @ZeeshanTamboli
|
|
134
|
+
|
|
3
135
|
## 5.11.4
|
|
4
136
|
|
|
5
137
|
<!-- generated comparing v5.11.3..master -->
|
package/index.js
CHANGED
package/legacy/index.js
CHANGED
package/modern/index.js
CHANGED
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.117",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "MUI Team",
|
|
6
6
|
"description": "Laboratory for new MUI modules.",
|
|
@@ -48,8 +48,8 @@
|
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@babel/runtime": "^7.20.7",
|
|
51
|
-
"@mui/base": "5.0.0-alpha.
|
|
52
|
-
"@mui/system": "^5.11.
|
|
51
|
+
"@mui/base": "5.0.0-alpha.115",
|
|
52
|
+
"@mui/system": "^5.11.5",
|
|
53
53
|
"@mui/types": "^7.2.3",
|
|
54
54
|
"@mui/utils": "^5.11.2",
|
|
55
55
|
"clsx": "^1.2.1",
|