-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
[docs] Update "What's new" page #14858
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
6626a13
show "Read more" button conditionally
cherniavskii 5cbb6fe
update timeline
cherniavskii 0dd29d3
format changelog
cherniavskii 151f1d7
format
cherniavskii c11297e
link to the release pages
cherniavskii 02f1061
Update docs/src/modules/components/WhatsNewLayout.js
cherniavskii 570403e
Merge branch 'master' into update-whats-new-page
cherniavskii File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -90,13 +90,13 @@ Same changes as in `@mui/[email protected]`. | |
|
||
- [TreeView] Apply experimental features in `getDefaultizedParams` instead of in the plugin render (#14661) @flaviendelangle | ||
- [TreeView] Export `publicAPI` form `useTreeItem2Utils` (#14729) @noraleonte | ||
- [TreeView] Fix cursor navigation interfering with browser shortcut keys (#14798) @sai6855 | ||
- [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] 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 | ||
|
@@ -1542,7 +1542,7 @@ Same changes as in `@mui/[email protected]`. | |
- [test] Use test-utils from npm (#12880) @michaldudak | ||
- [typescript] Remove duplicate `DateRangePosition` type in favor of `RangePosition` (#13288) @LukasTy | ||
|
||
## v7.5.1 | ||
## 7.5.1 | ||
|
||
_May 23, 2024_ | ||
|
||
|
@@ -1602,7 +1602,7 @@ Same changes as in `@mui/[email protected]`. | |
- [code-infra] Run corepack enable on all CI jobs (#13205) @Janpot | ||
- [code-infra] Use `nx` for lerna tasks (#13166) @LukasTy | ||
|
||
## v7.5.0 | ||
## 7.5.0 | ||
|
||
_May 17, 2024_ | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,6 +17,94 @@ import TimelineDot from '@mui/lab/TimelineDot'; | |
import TimelineOppositeContent from '@mui/lab/TimelineOppositeContent'; | ||
|
||
const entries = [ | ||
{ | ||
title: 'MUI X v7.19', | ||
description: 'A roundup of all new features since v7.15.0.', | ||
date: new Date(2024, 9, 4), | ||
url: 'https://github.com/mui/mui-x/releases/tag/v7.19.0', | ||
highlightList: [ | ||
{ | ||
title: 'Data Grid – Row spanning', | ||
url: '/x/react-data-grid/row-spanning/', | ||
}, | ||
{ | ||
title: 'Data Grid – Automatic parents and children selection', | ||
url: '/x/react-data-grid/row-grouping/#automatic-parents-and-children-selection', | ||
}, | ||
{ | ||
title: 'Date and Time Pickers – Support date-fns v4', | ||
url: '/x/react-date-pickers/adapters-locale/#with-date-fns', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'MUI X v7.15', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I decided to put 7.15 separately to highlight Material UI v6 support. |
||
date: new Date(2024, 7, 29), | ||
description: 'A roundup of all new features since v7.13.0.', | ||
url: 'https://github.com/mui/mui-x/releases/tag/v7.15.0', | ||
highlightList: [ | ||
{ | ||
title: 'Material UI v6 support', | ||
url: 'https://github.com/mui/mui-x/releases/tag/v7.15.0', | ||
}, | ||
{ | ||
title: 'Charts – Zoom filtering', | ||
url: '/x/react-charts/zoom-and-pan/#zoom-filtering', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'MUI X v7.13', | ||
date: new Date(2024, 7, 16), | ||
description: 'A roundup of all new features since v7.8.0.', | ||
url: 'https://github.com/mui/mui-x/releases/tag/v7.13.0', | ||
highlightList: [ | ||
{ | ||
title: 'Data Grid – Loading overlay variants', | ||
url: '/x/react-data-grid/overlays/#loading-overlay', | ||
}, | ||
{ | ||
title: 'Rich Tree View – Drag & drop re-ordering', | ||
url: '/x/react-tree-view/rich-tree-view/ordering/', | ||
}, | ||
{ | ||
title: 'Rich Tree View – Label editing', | ||
url: '/x/react-tree-view/rich-tree-view/editing/', | ||
}, | ||
{ | ||
title: 'Charts – Heatmap', | ||
url: '/x/react-charts/heatmap/', | ||
}, | ||
{ | ||
title: 'Charts – Zoom & Pan', | ||
url: '/x/react-charts/zoom-and-pan/', | ||
}, | ||
{ | ||
title: 'Charts – Color legend', | ||
url: '/x/react-charts/legend/#color-legend', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'MUI X v7.8', | ||
date: new Date(2024, 5, 28), | ||
description: 'A roundup of all new features since v7.0.0.', | ||
url: 'https://github.com/mui/mui-x/releases/tag/v7.8.0', | ||
highlightList: [ | ||
{ | ||
title: 'Data Grid – Server-side Data Source', | ||
url: '/x/react-data-grid/server-side-data/', | ||
}, | ||
{ | ||
title: 'Data Grid – Support unknown and estimated row count in server-side pagination', | ||
url: '/x/react-data-grid/pagination/#index-based-pagination', | ||
}, | ||
{ | ||
title: 'Charts – Color scales', | ||
url: '/x/react-charts/styling/#values-color', | ||
}, | ||
], | ||
}, | ||
{ | ||
title: 'MUI X v7', | ||
description: | ||
|
@@ -45,11 +133,11 @@ const entries = [ | |
url: 'https://mui.com/blog/mui-x-v7/#rich-tree-view', | ||
}, | ||
{ | ||
title: 'Charts - Gauge charts', | ||
title: 'Charts – Gauge charts', | ||
url: 'https://mui.com/blog/mui-x-v7/#gauge-charts', | ||
}, | ||
{ | ||
title: 'Charts - Reference line', | ||
title: 'Charts – Reference line', | ||
url: 'https://mui.com/blog/mui-x-v7/#reference-line', | ||
}, | ||
{ | ||
|
@@ -284,20 +372,22 @@ function BlogCard({ entry }) { | |
{entry.description} | ||
</Typography> | ||
</div> | ||
<Button | ||
component="a" | ||
size="small" | ||
variant="outlined" | ||
href={entry.url} | ||
sx={{ | ||
height: 'fit-content', | ||
flexShrink: 0, | ||
width: { xs: '100%', sm: 'fit-content' }, | ||
}} | ||
> | ||
{/* eslint-disable-next-line material-ui/no-hardcoded-labels */} | ||
{'Read more'} | ||
</Button> | ||
{entry.url && ( | ||
<Button | ||
component="a" | ||
size="small" | ||
variant="outlined" | ||
href={entry.url} | ||
sx={{ | ||
height: 'fit-content', | ||
flexShrink: 0, | ||
width: { xs: '100%', sm: 'fit-content' }, | ||
}} | ||
> | ||
{/* eslint-disable-next-line material-ui/no-hardcoded-labels */} | ||
{'Read more'} | ||
</Button> | ||
)} | ||
</Box> | ||
<Divider /> | ||
<List sx={{ p: 2, pt: 1.5 }}> | ||
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Feel free to suggest any highlights you'd like to include!
cc @joserodolfofreitas @mui/xgrid @mui/explore @mui/xcharts