material-ui icon indicating copy to clipboard operation
material-ui copied to clipboard

Bump MUI X to 7.8.0

Open renovate[bot] opened this issue 1 year ago • 1 comments

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@mui/x-charts (source) 7.7.1 -> 7.8.0 age adoption passing confidence
@mui/x-data-grid (source) 7.7.1 -> 7.8.0 age adoption passing confidence
@mui/x-data-grid-generator (source) 7.7.1 -> 7.8.0 age adoption passing confidence
@mui/x-data-grid-premium (source) 7.7.1 -> 7.8.0 age adoption passing confidence
@mui/x-data-grid-pro (source) 7.7.1 -> 7.8.0 age adoption passing confidence
@mui/x-date-pickers (source) 7.7.1 -> 7.8.0 age adoption passing confidence
@mui/x-date-pickers-pro (source) 7.7.1 -> 7.8.0 age adoption passing confidence
@mui/x-license (source) 7.7.1 -> 7.8.0 age adoption passing confidence
@mui/x-tree-view (source) 7.7.1 -> 7.8.0 age adoption passing confidence

Release Notes

mui/mui-x (@​mui/x-charts)

v7.8.0

Compare Source

Jun 28, 2024

We'd like to offer a big thanks to the 10 contributors who made this release possible. Here are some highlights ✨:

  • 🛰 Introduce server-side data source for improved server integration in the Data Grid.

    Supports server-side pagination, sorting and filtering on plain and tree data, and automatic caching.

    To enable, provide a getRows function to the unstable_dataSource prop on the Data Grid component.

    const dataSource = {
      getRows: async (params: GridServerGetRowsParams) => {
        const data = await fetch(
          `https://api.example.com/data?${new URLSearchParams({
            page: params.page,
            pageSize: params.pageSize,
            sortModel: JSON.stringify(params.sortModel),
            filterModel: JSON.stringify(params.filterModel),
          }).toString()}`,
        );
        return {
          rows: data.rows,
          totalRows: data.totalRows,
        };
      },
    }
    <DataGridPro
      unstable_dataSource={dataSource}
      {...otherProps}
    />
    

    See server-side data documentation for more details.

  • 📈 Support Date data on the BarChart component

  • ↕️ Support custom column sort icons on the Data Grid

  • 🖱️ Support modifying the expansion trigger on the Tree View components

Data Grid
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected], plus:

@mui/[email protected] premium

Same changes as in @mui/[email protected].

Date and Time Pickers
@mui/[email protected]
@mui/[email protected] pro

Same changes as in @mui/[email protected].

Charts
@mui/[email protected]
Tree View
@mui/[email protected]
Docs
Core

Configuration

📅 Schedule: Branch creation - "on sunday before 6:00am" in timezone UTC, 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 these updates again.


  • [ ] If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

renovate[bot] avatar Jun 30 '24 02:06 renovate[bot]

Netlify deploy preview

https://deploy-preview-42802--material-ui.netlify.app/

Bundle size report

No bundle size changes (Toolpad) No bundle size changes

Generated by :no_entry_sign: dangerJS against e00db845eacdf5ed99621cf24844b742cb4d7277

mui-bot avatar Jun 30 '24 02:06 mui-bot