-
-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(deps): update dependency @mui/lab to v5.0.0-alpha.175 #25
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/material-ui-monorepo
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
e81aeff
to
c6dd25a
Compare
c6dd25a
to
501d3a7
Compare
501d3a7
to
d57aac2
Compare
d57aac2
to
7cee14b
Compare
7cee14b
to
ebc3987
Compare
ebc3987
to
fbb181c
Compare
fbb181c
to
1a5a837
Compare
1a5a837
to
356115a
Compare
356115a
to
f4f8159
Compare
eefd896
to
685e4b2
Compare
685e4b2
to
4b4dd20
Compare
4b4dd20
to
14d13b8
Compare
14d13b8
to
09515d7
Compare
09515d7
to
a461c53
Compare
a461c53
to
3990621
Compare
3990621
to
320fb56
Compare
320fb56
to
592bb13
Compare
592bb13
to
461fc38
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
5.0.0-alpha.106
->5.0.0-alpha.175
Release Notes
mui/material-ui (@mui/lab)
v5.0.0-alpha.164
v5.0.0-alpha.163
value
(#40829) @srinidhi9831v5.0.0-alpha.161
@mui/material
peer dependency version (#40528) @ZeeshanTamboliv5.0.0-alpha.159
Compare Source
v5.0.0-alpha.158
Compare Source
v5.0.0-alpha.157
Compare Source
v5.0.0-alpha.156
Compare Source
v5.0.0-alpha.155
Compare Source
v5.0.0-alpha.154
Compare Source
v5.0.0-alpha.152
v5.0.0-alpha.151
Compare Source
v5.0.0-alpha.150
Compare Source
v5.0.0-alpha.149
Compare Source
v5.0.0-alpha.148
Compare Source
v5.0.0-alpha.147
Compare Source
v5.0.0-alpha.146
Compare Source
v5.0.0-alpha.145
Compare Source
v5.0.0-alpha.144
Compare Source
@mui/x-tree-view
dependency (#38822) @flaviendelanglev5.0.0-alpha.143
Compare Source
v5.0.0-alpha.142
Compare Source
v5.0.0-alpha.139
Compare Source
v5.0.0-alpha.138
Compare Source
v5.0.0-alpha.137
Compare Source
v5.0.0-alpha.135
alternate-reverse
generated classname (#37678) @ZeeshanTamboliv5.0.0-alpha.134
Compare Source
v5.0.0-alpha.133
Compare Source
v5.0.0-alpha.132
Compare Source
v5.0.0-alpha.131
Compare Source
v5.0.0-alpha.130
Compare Source
v5.0.0-alpha.129
Compare Source
v5.0.0-alpha.128
Compare Source
Breaking changes
The
component
prop is no longer supported because it can be replaced with the slots API. This is how the transformation will look like:If using TypeScript, the custom component type should be added as a generic on the
Button
component.There is codemod that you can run in your project to do the transformation:
The full documentation about the codemod can be found here.
This is the list of PR related to this change:
component
prop (#36677) @mnajdovacomponent
prop (#37028) @hbjORbj[base] Improve API consistency (#36970) @michaldudak
Brought consistency to Base UI components and hooks' parameters and return values:
<slot_name>Ref
, which matches theget<slot_name>Props
in the return value.React.RefCallback
as using the more generalReact.Ref
caused variance issues.React.Ref<Element>
Changes
v5.0.0-alpha.127
Compare Source
Breaking changes
[base] Remove unstyled suffix from Base components + Codemod script (#36873) @hbjORbj
The
Unstyled
suffix has been removed from all Base UI component names, including names of types and other related identifiers.You can use this codemod to help with the migration:
Changes
component
prop codemod script (#36952) @hbjORbjcomponent
prop from components (#36831) @hbjORbjv5.0.0-alpha.126
Compare Source
Breaking changes
Components affected by the changes are:
MenuUnstyledContext
is replaced byMenuProvider
. The value to pass to the provider is returned by theuseMenu
hook.onClose
prop is replaced byonOpenChange
. It has theopen
parameter and is called when a menu is opened or closedSelectUnstyledContext
is replaced bySelectProvider
. The value to pass to the provider is returned by theuseSelect
hook.SelectUnstyled
's popup is permanently mounted.defaultOpen
prop was added to the SelectUnstyled. The open/close state can now be controlled or uncontrolled, as avalue
.TabsContext
is replaced byTabsProvider
. The value to pass to the provider is returned by theuseTabs
hook.null
to Tabs'value
prop, instead offalse
. This is consistent with how Select works.value
prop is still technically not mandatory on TabUnstyled and TabPanel, but when omitted, the contents of the selected tab panel will not be rendered during SSR.v5.0.0-alpha.125
Compare Source
ownerState
withownerState
from props (#36599) @hbjORbjv5.0.0-alpha.124
Compare Source
v5.0.0-alpha.123
Compare Source
v5.0.0-alpha.122
Compare Source
autoSelect
prop description (#36280) @sai6855actions
type inslotProps
(#36458) @sai6855v5.0.0-alpha.121
v5.0.0-alpha.120
Breaking changes
[Select][base] Add the multiselect functionality to SelectUnstyled (#36274) @michaldudak
The MultiSelectUnstyled was removed. The
SelectUnstyled
component with themultiple
prop should be used instead. Additionally, the SelectUnstyledProps received a second generic parameter:Multiple extends boolean
. If you deal with strictly single- or multi-select components, you can hard-code this parameter tofalse
ortrue
, respectively. Below is an example of how the migration should look like:Changes
import type
syntax (#36411) @ZeeshanTamboliv5.0.0-alpha.119
Compare Source
Breaking changes
[base] Remove
classes
prop from the Base components that have it (#36157) @hbjORbjThese are the components affected by this change: ModalUnstyled, SliderUnstyled, TablePaginationUnstyled and TablePaginationActionsUnstyled.
You can replace the
classes
prop by providing the class name prop directly to the prop viaslotProps
. Below is an example of how the migration should look like:[base] Move hooks to their own directories (#36235) @hbjORbj
Base hooks (e.g.,
useSelect
) are no longer exported from{Component}Unstyled
directories and instead they have their own directories.Below is an example of how the migration should look like:
You can use this codemod to help with the migration.
Changes
v5.0.0-alpha.118
Compare Source
slotProps
per slot (#35964) @hbjORbjuseAutocomplete
disabled prop not disabling the input (#36076) @sai6855v5.0.0-alpha.117
Compare Source
v5.0.0-alpha.116
Compare Source
v5.0.0-alpha.115
Compare Source
Breaking changes
[SliderUnstyled] Improved logic for displaying the value label (#35805) @ZeeshanTamboli
valueLabelDisplay
prop is removed fromSliderUnstyled
. The prop was not working as intended inSliderUnstyled
(See #35398). You can instead provide avalueLabel
slot with theslots
prop API to show the value label:The following demo shows how to show a value label when it is hovered over with the thumb: https://mui.com/base-ui/react-slider/#value-label
sliderUnstyledClasses
since they are not needed for the value label:In the custom value label component, you can define your own classNames and target them with CSS.
The
SliderValueLabelUnstyled
component is removed from SliderUnstyled. You should provide your own custom component for the value label.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
.Changes
inputRef
is ignored (#35807) @sai6855v5.0.0-alpha.114
Compare Source
v5.0.0-alpha.113
v5.0.0-alpha.112
isRtl
from Material UI's Slider props (#35564) @michaldudakv5.0.0-alpha.111
Compare Source
v5.0.0-alpha.110
Compare Source
v5.0.0-alpha.109
Compare Source
v5.0.0-alpha.108
Compare Source
v5.0.0-alpha.107
Compare Source
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.