Skip to content

Commit

Permalink
[docs] Update "What's new" page (#14858)
Browse files Browse the repository at this point in the history
  • Loading branch information
cherniavskii authored Oct 9, 2024
1 parent add0c95 commit 9a902f3
Show file tree
Hide file tree
Showing 2 changed files with 110 additions and 20 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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_

Expand Down Expand Up @@ -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_

Expand Down
122 changes: 106 additions & 16 deletions docs/src/modules/components/WhatsNewLayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
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:
Expand Down Expand Up @@ -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',
},
{
Expand Down Expand Up @@ -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 }}>
Expand Down

0 comments on commit 9a902f3

Please sign in to comment.