Releases: mui/mui-x
v8.0.0-alpha.0
We'd like to offer a big thanks to the 22 contributors who made this release possible. Here are some highlights ✨:
- 🔁 Support automatic parents and children selection for the Rich Tree View components.
- 🌍 Improve Greek (el-GR) locale on the Date and Time Pickers components
- 🌍 Improve Polish (pl-PL) locale on the Data Grid component
- 🐞 Bugfixes
- 📚 Documentation improvements
Special thanks go out to the community contributors who have helped make this release possible:
@belkocik, @GeorgiosDrivas, @k-rajat19, @kalyan90, @DungTiger, @fxnoob, @GuillaumeMeheut
Following are all team members who have contributed to this release:
@alexfauquette, @arminmeh, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @KenanYusuf, @LukasTy,
@MBilalShafi, @michelengelen, @noraleonte, @oliviertassinari, @romgrk, @samuelsycamore, @joserodolfofreitas.
Data Grid
@mui/[email protected]
- [DataGrid] Fix grid overlay aligment with scroll for rtl (#15072) @kalyan90
- [DataGrid] Fix resizing right pinned column (#15107) @KenanYusuf
- [DataGrid] Pass the reason to the
onPaginationModelChange
callback (#13959) @DungTiger - [DataGrid] Set default overlay height in flex parent layout (#15202) @cherniavskii
- [DataGrid] Refactor
baseMenuList
andbaseMenuItem
(#15049) @romgrk - [DataGrid] Remove more material imports (#15063) @romgrk
- [l10n] Improve Polish (pl-PL) locale (#15227) @belkocik
@mui/[email protected]
Same changes as in @mui/[email protected]
, plus:
- [DataGridPro] Fix column pinning layout (#14966) @cherniavskii
@mui/[email protected]
Same changes as in @mui/[email protected]
, plus:
- [DataGridPremium] Server-side data source with row grouping (#13826) @MBilalShafi
Date and Time Pickers
Breaking changes
-
The default DOM structure of the field has changed Learn more.
- Before version
v8.x
, the fields' DOM structure consisted of an<input />
, which held the whole value for the component, but unfortunately presents a few limitations in terms of accessibility when managing multiple section values. - Starting with version
v8.x
, all the field and picker components come with a new DOM structure that allows the field component to set aria attributes on individual sections, providing a far better experience with screen readers.
- Before version
-
Some translation keys no longer require
utils
and the date object as parameters, but only the formatted value as a string. The keys affected by this changes are:clockLabelText
,openDatePickerDialogue
andopenTimePickerDialogue
— Learn more. -
The following types are no longer exported by
@mui/x-date-pickers
and@mui/x-date-pickers-pro
— Learn more.UseDateFieldComponentProps
UseTimeFieldComponentProps
UseDateTimeFieldComponentProps
BaseSingleInputFieldProps
BaseMultiInputFieldProps
BasePickersTextFieldProps
-
The
TDate
generic has been removed from all the types, interfaces, and variables of the@mui/x-date-pickers
and@mui/x-date-pickers-pro
packages — Learn more. -
Renamed
usePickersTranslations
andusePickersContext
hooks to have a coherentPicker
prefix instead ofPickers
— Learn more. -
The
LicenseInfo
object is no longer exported from the@mui/x-date-pickers-pro
package — Learn more.
@mui/[email protected]
- [fields] Enable the new field DOM structure by default (#14651) @flaviendelangle
- [fields] Remove
UseDateFieldComponentProps
and equivalent interfaces (#15053) @flaviendelangle - [fields] Remove clear button from the tab sequence (#14616) @k-rajat19
- [l10n] Improve Greek (el-GR) locale (#15250) @GeorgiosDrivas
- [pickers] Clean definition of validation props (#15198) @flaviendelangle
- [pickers] Clean the new
ownerState
object (#15056) @flaviendelangle - [pickers] Correctly type the
ownerState
of thefield
andactionBar
slots when resolved in a picker component (#15162) @flaviendelangle - [pickers] Fix
DateCalendar
timezone management (#12321) @LukasTy - [pickers] Fix
DateTimeRangePicker
error when using format without time (#14917) @fxnoob - [pickers] Fix
DigitalClock
time options on aDST
switch day (#10793) @LukasTy - [pickers] Remove
TDate
generics in favor ofPickerValidDate
direct usage (#15001) @flaviendelangle - [pickers] Remove
utils
andvalue
params from translations (#14986) @arthurbalduini - [pickers] Remove plural in "Pickers" on recently introduced APIs (#15297) @flaviendelangle
- [pickers] Remove the re-export from
@mui/x-license
(#14487) @k-rajat19 - [pickers] Strictly type the props a picker passes to its field, and migrate all the custom field demos accordingly (#15197) @flaviendelangle
- [pickers] Unify JSDoc for all the
disabled
andreadOnly
props (#15304) @flaviendelangle - [pickers] Use the new
ownerState
inDateCalendar
,DateRangeCalendar
,MonthCalendar
andYearCalendar
(#15171) @flaviendelangle - [pickers] Use the new
ownerState
inusePickersLayout
anduseXXXPicker
(#14994) @flaviendelangle
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Charts
Breaking changes
-
The
legend
prop got removed. To pass props to the legend, useslotProps={{ legend: { ... } }}
instead. This can be automatically done with the codemod as long as thelegend
prop does not come from a destructured object — Learn more. -
The
slots.legend
does not receive thedrawingArea
prop. You can still access your custom legend with theuseDrawingArea()
hook if your custom legend needs it. -
Removed or renamed multiple props from Series — Learn more.
- The
highlighted
andfaded
properties of highlightScope were deprecated in favor ofhighlight
andfade
.
The deprecated ones are now removed. - The
xAxisKey
,yAxisKey
, andzAxisKey
properties got deprecated in favor ofxAxisId
,yAxisId
, andzAxisId
.
- The
-
The Pie Chart lost all props and renderer linked to axes because pie chart does not need cartesian axes. If you used it, you can still add them back with composition. Please consider opening an issue to share your use case with us — Learn more.
@mui/[email protected]
- [charts] Introduce
hideLegend
prop (#15277) @alexfauquette - [charts] Filter items outside the drawing area for performance (#14281) @alexfauquette
- [charts] Fix log scale with
null
data (#15337) @alexfauquette - [charts] Fix tooltip follow mouse (#15189) @alexfauquette
- [charts] Remove
xAxisKey
,yAxisKey
, andzAxisKey
series keys (#15192) @alexfauquette - [charts] Remove axis from the pie chart (#15187) @alexfauquette
- [charts] Remove deprecated
legend
props (#15081) @alexfauquette - [charts] Remove deprecated highlight properties (#15191) @alexfauquette
- [charts] Update Popper position outside of React (#15003) @alexfauquette
- [charts] Improve the performance of the
getSymbol
method (#15233) @romgrk
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Tree View
Breaking changes
-
The
ContentComponent
orContentProps
props of the<TreeItem />
component have been removed in favor of the newslots
,slotProps
props and of theuseTreeItem
hook — Learn more. -
The
onClick
andonMouseDown
callbacks of the Tree Item component are now passed to the root element instead of the content — Learn more. -
Rename the
<TreeItem2 />
component (and related utils) — Learn more. -
The
<TreeView />
component has been renamed<SimpleTreeView />
which has exactly the same API — Learn more. -
The indentation of nested Tree Items is now applied on the content of the element — Learn more.
@mui/[email protected]
v7.22.2
We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
- 👨🏽💻 API enhancements
- 🐞 Bugfixes
Special thanks go out to the community contributors who have helped make this release possible:
@clins1994, @GuillaumeMeheut, @k-rajat19.
Following are all team members who have contributed to this release:
@LukasTy, @MBilalShafi, @KenanYusuf, @arminmeh.
Upcoming alpha
Keep an eye out for the MUI⠀X v8.0.0-aplha.0
release soon. It will follow a weekly release schedule as always until it is stable.
Data Grid
@mui/[email protected]
- [DataGrid] Fix
null
reference error inGridVirtualScrollbar
(#15289) @MBilalShafi - [DataGrid] Fix filtering with
boolean
column type (#15257) @k-rajat19 - [DataGrid] Improve row selection propagation trigger (#15274) @MBilalShafi
- [DataGrid] Preprocess edit cell props on backspace/delete (#15223) @KenanYusuf
- [DataGrid] Add a recipe to persist column width and order (#15309) @MBilalShafi
@mui/[email protected]
Same changes as in @mui/[email protected]
, plus:
- [DataGridPro] Apply default properties if they are not passed in a reorder column (#15320) @k-rajat19
- [DataGridPro] Toggle row expansion with
Enter
key in Tree data (#15313) @k-rajat19
@mui/[email protected]
Same changes as in @mui/[email protected]
, plus:
- [DataGridPremium] Fix incorrect rows selection count when selection propagation is enabled with row grouping (#15222) @arminmeh
Date and Time Pickers
@mui/[email protected]
- [pickers] Add support for
[email protected]
(#15248) @LukasTy
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Charts
@mui/[email protected]
- [charts] Allow
SeriesValueFormatter
to returnnull
value (#15295) @clins1994 - [charts] Allow configuring the
domainLimit
for each axis. (#15325) @GuillaumeMeheut
@mui/[email protected]
Same changes as in @mui/[email protected]
.
v7.22.1
Nov 1, 2024
We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:
- 🐞 Bugfixes
- 📚 Documentation improvements
- 🌍 Improve Polish (pl-PL) locale on the Date Pickers
Special thanks go out to the community contributors who have helped make this release possible:
@wojtkolos, @dpak-maurya, @k-rajat19.
Following are all team members who have contributed to this release:
@LukasTy, @arminmeh, @MBilalShafi, @KenanYusuf, @flaviendelangle.
Data Grid
@mui/[email protected]
- [DataGrid] Fix right column group header border (#15152) @KenanYusuf
- [DataGrid] Fix scroll jump when holding down arrow keys (#15167) @arminmeh
- [DataGrid] Move
rowGroupingModelChange
handler to respective hook (#15127) @MBilalShafi - [DataGrid] Prevent error when deleting the last row (#15153) @dpak-maurya
- [DataGrid] Fix overlay height in autoHeight mode (#15205) @cherniavskii
@mui/[email protected]
Same changes as in @mui/[email protected]
, plus:
- [DataGridPro] Add list view tests (#15166) @KenanYusuf
@mui/[email protected]
- [DataGridPremium] Keep focus on the grouping cell on space bar press #15155 @k-rajat19
Date and Time Pickers
@mui/[email protected]
- [l10n] Improve Polish (pl-PL) locale (#15177) @wojtkolos
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Tree View
@mui/[email protected]
- [TreeView] Export
TreeItem2DragAndDropOverlay
andTreeItem2LabelInput
from the root of each package (#15208) @flaviendelangle - [TreeView] Fix drag and drop color usage (#15149) @LukasTy
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Docs
v7.22.0
We'd like to offer a big thanks to the 11 contributors who made this release possible. Here are some highlights ✨:
- 🛰 Introduce server-side support for Data Grid row grouping
- 🐞 Bugfixes
- 📚 Documentation improvements
- 🌍 Improve Portuguese (pt-BR) locale on the Data Grid component
Special thanks go out to the community contributors who have helped make this release possible:
@clins1994, @GITPHLAP, @k-rajat19, @kalyan90, @merotosc, @yash49.
Following are all team members who have contributed to this release:
@cherniavskii, @flaviendelangle, @LukasTy, @MBilalShafi, @romgrk.
Data Grid
@mui/[email protected]
- [DataGrid] Fix
GridPanelAnchor
positioning (#15022) @k-rajat19 - [DataGrid] Fix ugly prop-types for the
pageStyle
prop of theGridPrintExportMenuItem
component (#15015) @flaviendelangle - [DataGrid] Fix value type in filter model for number and boolean column type (#14733) @k-rajat19
- [DataGrid] Focus next row when the focused row is deleted (#15067) @cherniavskii
- [DataGrid] Remove some usages of
<Box />
and<Badge />
(#15013) @romgrk - [DataGrid] Fix number of rows to display for page size options with negative value (#14890) @kalyan90
- [l10n] Improve Portuguese (pt-BR) locale (#15021) @k-rajat19
@mui/[email protected]
Same changes as in @mui/[email protected]
, plus:
- [DataGridPro] Fix column pinning layout (#15073) @cherniavskii
@mui/[email protected]
Same changes as in @mui/[email protected]
, plus:
- [DataGridPremium] Server-side data source with row grouping (#15109) @MBilalShafi
Date and Time Pickers
@mui/[email protected]
- [pickers] Fix
DateCalendar
timezone management (#15119) @LukasTy - [pickers] Fix
DigitalClock
time options on aDST
switch day (#15092) @LukasTy
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Charts
@mui/[email protected]
- [charts] Export data type in
onAxisClick(_, data)
callback (#15038) @clins1994
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Tree View
@mui/[email protected]
- [TreeView] Make the cancellable event types public (#14992) @flaviendelangle
Docs
Core
- [core] Adjust cherry-pick GH actions (#15101) @LukasTy
- [core] Update prettier target branch (#15100) @MBilalShafi
- [core] Update some
default-branch-switch
instances forv7.x
(#15085) @MBilalShafi - [test] Revert to using
fireEvent
instead ofuserEvent
(#14927) @LukasTy
v7.21.0
We'd like to offer a big thanks to the 13 contributors who made this release possible. Here are some highlights ✨:
- 💫 Added
dataset
prop support for the Scatter Chart component - 🐞 Bugfixes
- 📚 Documentation improvements
Special thanks go out to the community contributors who have helped make this release possible:
@k-rajat19, @kalyan90, @rotembarsela, @wangkailang.
Following are all team members who have contributed to this release:
@arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @LukasTy, @MBilalShafi, @arminmeh, @romgrk, @KenanYusuf, @oliviertassinari, @samuelsycamore.
Data Grid
@mui/[email protected]
- [DataGrid] Fix
onRowSelectionModelChange
firing unnecessarily on initial render (#14909) @MBilalShafi - [DataGrid] Fix
onRowSelectionModelChange
not being called after row is removed (#14972) @arminmeh - [DataGrid] Fix pagination scrollbar issue on small zoom (#14911) @cherniavskii
- [DataGrid] Fix scroll jumping (#14929) @romgrk
- [DataGrid] Fix excessive white space at the end of the Data Grid (#14864) @kalyan90
@mui/[email protected]
Same changes as in @mui/[email protected]
, plus:
- [DataGridPro] Fix indeterminate checkbox state for server-side data (#14956) @MBilalShafi
- [DataGridPro] Fix scrolling performance when
rowHeight={undefined}
(#14983) @cherniavskii - [DataGridPro] List view (#14393) @KenanYusuf @cherniavskii
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Date and Time Pickers
@mui/[email protected]
- [pickers] Cleanup
PageUp
andPageDown
event handlers on time components (#14928) @arthurbalduini - [pickers] Create the new picker's
ownerState
object (#14889) @flaviendelangle - [pickers] Fix
PickerValidDate
usage in the Date Range Picker Toolbar (#14925) @flaviendelangle
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Charts
@mui/[email protected]
- [charts] Allow
dataset
to be used with the Scatter Chart (#14915) @JCQuintas - [charts] Ensure
reduce motion
preference disables animation on page load (#14417) @JCQuintas
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Tree View
@mui/[email protected]
- [TreeView] Fix
alpha
usage with CSS variables (#14969) @wangkailang - [TreeView] Fix usage of the
aria-selected
attribute (#14991) @flaviendelangle - [TreeView] Fix hydration error (#15002) @flaviendelangle
@mui/[email protected]
- [codemod] Add a new utility to rename imports (#14919) @flaviendelangle
Docs
- [docs] Add recipe showing how to toggle detail panels on row click (#14666) @k-rajat19
- [docs] Fix broken link to the validation section in the Data grid component (#14973) @arminmeh
- [docs] Update v5 migration codesandbox @oliviertassinari
- [docs] Enforce component style rules for the Tree View (#14963) @samuelsycamore
Core
- [core] Fix shortcut with localization keyboard (#14220) @rotembarsela
- [core] Fix docs deploy command (#14920) @arminmeh
- [code-infra] Prepare some tests to work in
vitest/playwright
(#14926) @JCQuintas - [test] Fix
AdapterDayjs
coverage calculation (#14957) @LukasTy - [test] Fix split infinitive API convention use @oliviertassinari
v7.20.0
We'd like to offer a big thanks to the 14 contributors who made this release possible. Here are some highlights ✨:
- 📚 Updated "What's new" page giving more detailed overview of the latest new features and other highlights
- 📚 New collapsible column groups demo for the Data Grid component
- 📚 New Tree Item Customization documentation to learn how to use the new APIs to create custom Tree Items. The old APIs (
props.ContentComponent
andprops.ContentProps
) have been deprecated and will be removed in the new major version of the Tree View component. - 🌍 Improve Japanese (ja-JP) locale on the Data Grid component
- 🐞 Bugfixes
- 📚 Other documentation improvements
Special thanks go out to the community contributors who have helped make this release possible:
@k-rajat19, @kalyan90, @uma-neko, @vfbiby.
Following are all team members who have contributed to this release: @alelthomas, @arminmeh, @arthurbalduini,
@cherniavskii, @flaviendelangle, @JCQuintas, @MBilalShafi, @noraleonte, @oliviertassinari, @samuelsycamore, @siriwatknp.
Data Grid
@mui/[email protected]
- [DataGrid] Add
onColumnHeaderContextMenu
event (#14734) @vfbiby - [DataGrid] Avoid row spanning computation of outdated rows (#14902) @MBilalShafi
- [DataGrid] Fix scrollbar position not being updated after
scrollToIndexes
(#14888) @arminmeh - [DataGrid] Pass
rowId
param toprocessRowUpdate
(#14821) @k-rajat19 - [l10n] Improve Japanese (ja-JP) locale (#14870) @uma-neko
@mui/[email protected]
Same changes as in @mui/[email protected]
, plus:
- [DataGridPro] Fix wording on the
rowSelectionPropagation
JSDoc and doc section (#14907) @flaviendelangle
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Date and Time Pickers
@mui/[email protected]
- [pickers] Add
PageUp
andPageDown
support for time components (#14812) @arthurbalduini - [pickers] Fix regression on
PickerValidDate
(#14896) @flaviendelangle - [pickers] Move the
DateFieldInPickerProps
interface to theDatePicker
folder and rename itDatePickerFieldProps
(same for time and date time) (#14828) @flaviendelangle
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Charts
@mui/[email protected]
No changes since @mui/[email protected]
.
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Tree View
@mui/[email protected]
- [TreeItem] Deprecate the
ContentComponent
andContentProps
props (#14908) @flaviendelangle - [TreeView] Rework how items are being rendered in Rich Tree View components (#14749) @flaviendelangle
Docs
- [docs] Update "What's new" page (#14858) @cherniavskii
- [docs] Add collapsible column groups demo (#14818) @cherniavskii
- [docs] Add custom columns panel demo (#14825) @cherniavskii
- [docs] Capitalize all instances of "Data Grid" (#14884) @samuelsycamore
- [docs] Divide charts
tooltip
andhighlighting
pages (#14824) @JCQuintas - [docs] Document the
TreeItem2
component and theuseTreeItem2
hook (#14551) @noraleonte - [docs] Fix column pinning for "Disable detail panel content scroll" section (#14854 and #14885) @kalyan90
- [docs] Fix detail panel demo not working well with pinned columns (#14883) @cherniavskii
- [docs] New recipe of a read-only field (#14606) @flaviendelangle
- [docs] Change demo name example (#14822) @alelthomas
Core
- [core] Support
@mui/utils
v6 (#14867) @siriwatknp - [code-infra] Remove deprecated
data-mui-test
in favour ofdata-testid
(#14882) @JCQuintas - [code-infra] Update renovate config and add a
vitest
group (#14856) @JCQuintas - [test] Replace
waitFor()
withact()
(#14851) @oliviertassinari - [test] Restore "pnpm tc" CLI (#14852) @oliviertassinari
v7.19.0
We'd like to offer a big thanks to the 26 contributors who made this release possible. Here are some highlights ✨:
- 🔁 Automatic parents and children selection for Data Grid "tree data" and "row grouping" features
- 💫 Support
minHeight
andmaxHeight
on flex parent container for the Data Grid component - 🎁 Export
publicAPI
from theuseTreeItem2Utils
hook for the Tree View - 🌍 Improve Bulgarian (bg-BG), Croatian (hr-HR), French (fr-FR), German (de-DE), Japanese (ja-JP) and Vietnamese (vi-VN) locales and add Portuguese (pt-PT) locale on the Data Grid component
- 🌏 Improve Czech (cs-CZ) and Portuguese (pt-BR) locales and add Bulgarian (bg-BG), Croatian (hr-HR) and Portuguese (pt-PT) locales on the Pickers components
- 🐞 Bugfixes
- 📚 Documentation improvements
Special thanks go out to our community contributors who have helped make this release possible:
@AWAIS97, @chucamphong, @GMchris, @JakubSveda, @k-rajat19, @k725, @lhilgert9, @ruiaraujo012, @Sanderand, @thomasmoon, @vallereaugabriel.
Following are all team members who have contributed to this release:
@alexfauquette, @arminmeh, @arthurbalduini, @cherniavskii, @flaviendelangle, @Janpot, @JCQuintas, @KenanYusuf, @MBilalShafi, @michelengelen, @noraleonte, @oliviertassinari, @romgrk, @sai6855, @samuelsycamore.
Data Grid
@mui/[email protected]
- [DataGrid] Fix column definition
undefined
value (#14456) @sai6855 - [DataGrid] Fix
checkboxSelectionVisibleOnly
reset the selection on filtering (#14677) @MBilalShafi - [DataGrid] Fix background colors when
CSSVarsProvider
is used (#12901) @cherniavskii - [DataGrid] Fix error when initializing aggregation with row spanning (#14710) @MBilalShafi
- [DataGrid] Fix scroll to cell logic for keyboard navigating cells and drag selection with pinned columns (#14550) @KenanYusuf
- [DataGrid] Support
minHeight
andmaxHeight
on flex parent container (#14614) @cherniavskii - [l10n] Add missing Portuguese (pt-PT) translations (#14707) @ruiaraujo012
- [l10n] Improve Bulgarian (bg-BG) locale (#14451) @GMchris
- [l10n] Improve Croatian (hr-HR) locale (#14794) @arminmeh
- [l10n] Improve French (fr-FR) locale (#14750) @vallereaugabriel
- [l10n] Improve German (de-DE) locale (#14755) @lhilgert9
- [l10n] Improve Japanese (ja-JP) locale (#14381) @k725
- [l10n] Improve Vietnamese (vi-VN) locale (#14769) @chucamphong
@mui/[email protected]
Same changes as in @mui/[email protected]
, plus:
- [DataGridPro] Fix dragging styles removal in column reorder (#14680) @k-rajat19
- [DataGridPro] Fix row pre-processing running with a stale data source (#14810) @MBilalShafi
- [DataGridPro] Fix
onRowsScrollEnd
not firing on very fast scrolling (#14171) @arminmeh
@mui/[email protected]
Same changes as in @mui/[email protected]
, plus:
- [DataGridPremium] Automatic parents and children selection (#13757) @MBilalShafi
Date and Time Pickers
@mui/[email protected]
- [pickers] Fix left-right keyboard nav with
yearsOrder="desc"
anddirection="rtl"
(#14682) @thomasmoon - [pickers] Improve
PickerValidDate
type (#14771) @flaviendelangle - [pickers] Improve typing of the range pickers (#14716) @flaviendelangle
- [l10n] Add Bulgarian (bg-BG) locale (#14469) @GMchris
- [l10n] Add Croatian (hr-HR) locale (#14795) @arminmeh
- [l10n] Add Portuguese (pt-PT) locale (#14722) @ruiaraujo012
- [l10n] Improve Czech (cs-CZ) locale (#14732) @JakubSveda
- [l10n] Improve Portuguese (pt-BR) locale (#14725) @arthurbalduini
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Charts
@mui/[email protected]
- [charts] Fix
LineChart
area animation being stuck when resizing container (#14711) @alexfauquette - [charts] Improve types and start using
warnOnce
(#14792) @JCQuintas
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Tree View
@mui/[email protected]
- [TreeView] Apply experimental features in
getDefaultizedParams
instead of in the plugin render (#14661) @flaviendelangle - [TreeView] Export
publicAPI
formuseTreeItem2Utils
(#14729) @noraleonte - [TreeView] Fix cursor navigation interfering with browser shortcut keys (#14798) @sai6855
- [TreeView] Fix invalid test for items reordering (#14665) @flaviendelangle
- [TreeView] Remove
instance.getTreeItemIdAttribute
(#14667) @flaviendelangle
Docs
- [docs] Added warning callout for Firefox reordering bug (#14516) @michelengelen
- [docs] Copyedit
pages.ts
navigation (#14782) @samuelsycamore - [docs] Fix typo in row spanning doc (#14770) @flaviendelangle
- [docs] Fix typo in the Tree View migration guide to v7 (#14727) @Sanderand
- [docs] Fix typo in the usage of Moment guide for UTC and timezones (#14780) @AWAIS97
- [docs] Fix what's new link to use absolute URL (#14543) @oliviertassinari
Core
- [core] Fix class name composition order (#14775) @oliviertassinari
- [core] Replace minWidth, maxWidth with width (#14776) @oliviertassinari
- [code-infra] Remove custom playwright installation steps (#14728) @Janpot
- [code-infra] Replace or remove all instances of
e
identifier (#14724) @samuelsycamore - [infra] Adds community contribution section to the changelog script (#14799) @michelengelen
- [infra] Fix line break in Stack Overflow message @oliviertassinari
- [test] Fix
Escape
event firing event (#14797) @oliviertassinari
v7.18.0
We'd like to offer a big thanks to the 14 contributors who made this release possible. Here are some highlights ✨:
-
💫 Support Row spanning on the Data Grid that automatically merges the consecutive cells in a column based on the cell value
-
🎉 Add option for Pickers to change the order of displayed years (#11780) @thomasmoon
-
🐞 Bugfixes
-
📚 Documentation improvements
Data Grid
@mui/[email protected]
- [DataGrid] Add default reset value in row edit mode (#14050) @michelengelen
- [DataGrid] Add
columnGroupHeaderHeight
prop for sizing column group headers (#14637) @KenanYusuf - [DataGrid] Fix
document
reference when the grid is rendered in a popup window (#14649) @arminmeh - [DataGrid] Remove
minFirstColumn
fromGetHeadersParams
interface (#14450) @k-rajat19 - [DataGrid] Row spanning (#14124) @MBilalShafi
@mui/[email protected]
Same changes as in @mui/[email protected]
, plus:
- [DataGridPro] Fix
onRowsScrollEnd
being triggered instantly when bottom pinned row is present (#14602) @arminmeh - [DataGridPro] Fix header filters rendering issue for
isEmpty
andisNotEmpty
filter operators (#14493) @k-rajat19 - [DataGridPro] Fix pinned columns in RTL mode (#14586) @KenanYusuf
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Date and Time Pickers
@mui/[email protected]
- [pickers] Add option to change the order of displayed years (#11780) @thomasmoon
- [pickers] Support
date-fns
v4 (#14673) @LukasTy
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Charts
@mui/[email protected]
- [charts] Add a
PolarProvider
to manage polar axes (#14642) @alexfauquette - [charts] Fix
LineChart
animation being stuck with initial drawing area value (#14553) @JCQuintas - [charts] Fix legend slot typing (#14657) @alexfauquette
- [charts] Pass the axis index to extremum getter (#14641) @alexfauquette
- [charts] Provide hooks to create custom tooltip (#14377) @alexfauquette
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Tree View
@mui/[email protected]
- [TreeView] Add
"use client"
directive to every public component and hook (#14579) @flaviendelangle
Docs
- [docs] Add
groupingValueGetter
callout in column definition docs (#14599) @michelengelen - [docs] Clean v6 => v7 migration guide (#14652) @flaviendelangle
- [docs] Copy
vale-action.yml
from main repo @oliviertassinari - [docs] Edit the Pickers Getting started doc (#14555) @samuelsycamore
- [docs] Fix TypeScript capitalization @oliviertassinari
- [docs] Fix Vale error @oliviertassinari
- [docs] Make the migration guide diff a bit easier to read @oliviertassinari
- [docs] Report Vale at warning level (#14660) @oliviertassinari
- [docs] Warn about the
valueGetter
andvalueFormatter
signature change (#14613) @cherniavskii - [docs] Polish code formatting (#14603) @oliviertassinari
Core
- [core] Fix 301 link to Next.js and git diff @oliviertassinari
- [core] Fix failing CI on
master
(#14644) @cherniavskii - [core] Fix
package.json
repository rule @oliviertassinari - [core] MUI X repository moved to a new location @oliviertassinari
- [docs-infra] Strengthen CSP (#14581) @oliviertassinari
- [license] Finish renaming of LicensingModel (#14615) @oliviertassinari
- [test] Spy on
observe
method to avoid flaky wait for a callback (#14640) @arminmeh
v6.20.5
We'd like to offer a big thanks to the 2 contributors who made this release possible. Here are some highlights ✨:
- 🐞 Bugfixes
- 📚 Documentation improvements
Data Grid
@mui/[email protected]
- [DataGridPremium] Fix
onCellSelectionModelChange
not triggered when additional cell range is selected (#14650) @arminmeh
Docs
- [docs] Fix "What's new in MUI X" link to use absolute URL @oliviertassinari
Core
- [core] Fix
readme
deploy instruction @oliviertassinari - [core] Sync with core release flow @oliviertassinari
v7.17.0
We'd like to offer a big thanks to the 12 contributors who made this release possible. Here are some highlights ✨:
- 📊 Charts performance improvement
- 🧑💻 New Data Grid custom columns demo
- 🐞 Bugfixes
- 📚 Documentation improvements
- 🌍 Improve Hungarian (hu-HU) locale on the Data Grid
Data Grid
@mui/[email protected]
- [DataGrid] Add "does not equal" and "does not contain" filter operators (#14489) @KenanYusuf
- [DataGrid] Add demo to the "Custom columns" page that does not use generator (#13695) @arminmeh
- [DataGrid] Fix Voice Over reading the column name twice (#14482) @arminmeh
- [DataGrid] Fix bug in CRUD example (#14513) @michelengelen
- [DataGrid] Fix failing jsdom tests caused by
:has()
selectors (#14559) @KenanYusuf - [DataGrid] Refactor string operator filter functions (#14564) @KenanYusuf
- [l10n] Improve Hungarian (hu-HU) locale (#14506) @ntamas
@mui/[email protected]
Same changes as in @mui/[email protected]
.
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Date and Time Pickers
@mui/[email protected]
- [fields] Improve
useSplitFieldProps
and make it public (#14514) @flaviendelangle - [pickers] Improve clear action label (#14243) @oliviertassinari
- [pickers] Add
"use client"
directive to every public component and hook (#14562) @flaviendelangle - [pickers] Allow custom fields to validate the value (#14486) @flaviendelangle
- [pickers] Stop using utils in locales (#14505) @flaviendelangle
@mui/[email protected]
Same changes as in @mui/[email protected]
, plus:
- [DateRangePicker] Fix
currentMonthCalendarPosition
not scrolling to future sibling (#14442) @GMchris
Charts
@mui/[email protected]
- [charts] Add
"use client"
directive to every public component and hook (#14578) @flaviendelangle - [charts] Allow
onItemClick
on theLegend
component (#14231) @JCQuintas - [charts] Fix
onAxisClick
withlayout='horizontal'
(#14547) @alexfauquette - [charts] Replace
path
withcircle
for performance improvement (#14518) @alexfauquette
@mui/[email protected]
Same changes as in @mui/[email protected]
.
Tree View
@mui/[email protected]
- [TreeView] Make
useTreeItem2
stable (#14498) @flaviendelangle
Docs
- [docs] Add missing callout on "Imperative API" tree view sections (#14503) @flaviendelangle
- [docs] Fix broken redirection to MUI X v5 @oliviertassinari
- [docs] Fix multiple
console.error
messages oncharts
docs (#14554) @JCQuintas - [docs] Fixed typo in Row Grouping recipes (#14549) @Miodini
- [docs] Match title with blog posts @oliviertassinari
Core
- [core] Move warning methods to
@mui/x-internals
(#14528) @k-rajat19 - [core] Sync with core release flow @oliviertassinari
- [code-infra] Fix charts benchmark workflow (#14573) @JCQuintas
- [docs-infra] Type interface API pages (#14138) @alexfauquette
- [infra] Create
ESLint plugins
renovate group (#14574) @LukasTy - [license] Clean-up terminology to match codebase (#14531) @oliviertassinari
- [test] Remove dead
act()
logic (#14529) @oliviertassinari