Update dependency @mui/x-data-grid to v7.8.0 #247

Merged
pierre merged 1 commits from renovate/mui-x-data-grid-7.x-lockfile into master 2024-07-05 00:32:10 +00:00
Owner

This PR contains the following updates:

Package Type Update Change
@mui/x-data-grid (source) dependencies minor 7.7.1 -> 7.8.0

Release Notes

mui/mui-x (@​mui/x-data-grid)

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/x-data-grid@7.8.0
  • DataGrid] Add `columnHeaderSortIcon` slot ([#&#8203;13563](https://github.com/mui/mui-x/issues/13563)) [@&#8203;arminmeh](https://github.com/arminmeh)
    
  • DataGrid] Fix dimensions lag issue after autosize ([#&#8203;13587](https://github.com/mui/mui-x/issues/13587)) [@&#8203;MBilalShafi](https://github.com/MBilalShafi)
    
  • DataGrid] Fix print export failure when `hideFooter` option is set ([#&#8203;13034](https://github.com/mui/mui-x/issues/13034)) [@&#8203;tarunrajput](https://github.com/tarunrajput)
    
    

Same changes as in @mui/x-data-grid@7.8.0, plus:

  • DataGridPro] Fix multi-sorting indicator being cut off ([#&#8203;13625](https://github.com/mui/mui-x/issues/13625)) [@&#8203;KenanYusuf](https://github.com/KenanYusuf)
    
  • DataGridPro] Server-side tree data support ([#&#8203;12317](https://github.com/mui/mui-x/issues/12317)) [@&#8203;MBilalShafi](https://github.com/MBilalShafi)
    
    

Same changes as in @mui/x-data-grid-pro@7.8.0.

Date and Time Pickers
@mui/x-date-pickers@7.8.0
  • fields] Fix section clearing behavior on Android ([#&#8203;13652](https://github.com/mui/mui-x/issues/13652)) [@&#8203;LukasTy](https://github.com/LukasTy)
    
    

Same changes as in @mui/x-date-pickers@7.8.0.

Charts
@mui/x-charts@7.8.0
  • charts] Fix line chart props not passing correct event handlers ([#&#8203;13609](https://github.com/mui/mui-x/issues/13609)) [@&#8203;JCQuintas](https://github.com/JCQuintas)
    
  • charts] Support BarChart with `Date` data ([#&#8203;13471](https://github.com/mui/mui-x/issues/13471)) [@&#8203;alexfauquette](https://github.com/alexfauquette)
    
  • charts] Support RTL for y-axis ([#&#8203;13614](https://github.com/mui/mui-x/issues/13614)) [@&#8203;alexfauquette](https://github.com/alexfauquette)
    
  • charts] Use default values instead of non-null assertion to prevent error being thrown ([#&#8203;13637](https://github.com/mui/mui-x/issues/13637)) [@&#8203;JCQuintas](https://github.com/JCQuintas)
    
    
Tree View
@mui/x-tree-view@7.8.0
  • TreeView] Add `expansionTrigger` prop ([#&#8203;13533](https://github.com/mui/mui-x/issues/13533)) [@&#8203;noraleonte](https://github.com/noraleonte)
    
  • TreeView] Support experimental features from plugin's dependencies ([#&#8203;13632](https://github.com/mui/mui-x/issues/13632)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle)
    
    
Docs
  • docs] Add callout for `Luxon` `throwOnInvalid` support ([#&#8203;13621](https://github.com/mui/mui-x/issues/13621)) [@&#8203;LukasTy](https://github.com/LukasTy)
    
  • docs] Add "Overlays" section to the Data Grid documentation ([#&#8203;13624](https://github.com/mui/mui-x/issues/13624)) [@&#8203;KenanYusuf](https://github.com/KenanYusuf)
    
    
Core
  • core] Add eslint rule to restrict import from `../internals` root ([#&#8203;13633](https://github.com/mui/mui-x/issues/13633)) [@&#8203;JCQuintas](https://github.com/JCQuintas)
    
  • docs-infra] Sync `\_app` folder with monorepo ([#&#8203;13582](https://github.com/mui/mui-x/issues/13582)) [@&#8203;Janpot](https://github.com/Janpot)
    
  • license] Allow usage of charts and tree view pro package for old premium licenses ([#&#8203;13619](https://github.com/mui/mui-x/issues/13619)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle)
    
    

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@mui/x-data-grid](https://mui.com/x/react-data-grid/) ([source](https://github.com/mui/mui-x/tree/HEAD/packages/x-data-grid)) | dependencies | minor | [`7.7.1` -> `7.8.0`](https://renovatebot.com/diffs/npm/@mui%2fx-data-grid/7.7.1/7.8.0) | --- ### Release Notes <details> <summary>mui/mui-x (@&#8203;mui/x-data-grid)</summary> ### [`v7.8.0`](https://github.com/mui/mui-x/blob/HEAD/CHANGELOG.md#780) [Compare Source](https://github.com/mui/mui-x/compare/v7.7.1...v7.8.0) *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. ```tsx 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](https://mui.com/x/react-data-grid/server-side-data/) 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 <!--/ HIGHLIGHT_ABOVE_SEPARATOR /--> ##### Data Grid ##### `@mui/x-data-grid@7.8.0` - \[DataGrid] Add `columnHeaderSortIcon` slot ([#&#8203;13563](https://github.com/mui/mui-x/issues/13563)) [@&#8203;arminmeh](https://github.com/arminmeh) - \[DataGrid] Fix dimensions lag issue after autosize ([#&#8203;13587](https://github.com/mui/mui-x/issues/13587)) [@&#8203;MBilalShafi](https://github.com/MBilalShafi) - \[DataGrid] Fix print export failure when `hideFooter` option is set ([#&#8203;13034](https://github.com/mui/mui-x/issues/13034)) [@&#8203;tarunrajput](https://github.com/tarunrajput) ##### `@mui/x-data-grid-pro@7.8.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link "Pro plan") Same changes as in `@mui/x-data-grid@7.8.0`, plus: - \[DataGridPro] Fix multi-sorting indicator being cut off ([#&#8203;13625](https://github.com/mui/mui-x/issues/13625)) [@&#8203;KenanYusuf](https://github.com/KenanYusuf) - \[DataGridPro] Server-side tree data support ([#&#8203;12317](https://github.com/mui/mui-x/issues/12317)) [@&#8203;MBilalShafi](https://github.com/MBilalShafi) ##### `@mui/x-data-grid-premium@7.8.0` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link "Premium plan") Same changes as in `@mui/x-data-grid-pro@7.8.0`. ##### Date and Time Pickers ##### `@mui/x-date-pickers@7.8.0` - \[fields] Fix section clearing behavior on Android ([#&#8203;13652](https://github.com/mui/mui-x/issues/13652)) [@&#8203;LukasTy](https://github.com/LukasTy) ##### `@mui/x-date-pickers-pro@7.8.0` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link "Pro plan") Same changes as in `@mui/x-date-pickers@7.8.0`. ##### Charts ##### `@mui/x-charts@7.8.0` - \[charts] Fix line chart props not passing correct event handlers ([#&#8203;13609](https://github.com/mui/mui-x/issues/13609)) [@&#8203;JCQuintas](https://github.com/JCQuintas) - \[charts] Support BarChart with `Date` data ([#&#8203;13471](https://github.com/mui/mui-x/issues/13471)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[charts] Support RTL for y-axis ([#&#8203;13614](https://github.com/mui/mui-x/issues/13614)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[charts] Use default values instead of non-null assertion to prevent error being thrown ([#&#8203;13637](https://github.com/mui/mui-x/issues/13637)) [@&#8203;JCQuintas](https://github.com/JCQuintas) ##### Tree View ##### `@mui/x-tree-view@7.8.0` - \[TreeView] Add `expansionTrigger` prop ([#&#8203;13533](https://github.com/mui/mui-x/issues/13533)) [@&#8203;noraleonte](https://github.com/noraleonte) - \[TreeView] Support experimental features from plugin's dependencies ([#&#8203;13632](https://github.com/mui/mui-x/issues/13632)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) ##### Docs - \[docs] Add callout for `Luxon` `throwOnInvalid` support ([#&#8203;13621](https://github.com/mui/mui-x/issues/13621)) [@&#8203;LukasTy](https://github.com/LukasTy) - \[docs] Add "Overlays" section to the Data Grid documentation ([#&#8203;13624](https://github.com/mui/mui-x/issues/13624)) [@&#8203;KenanYusuf](https://github.com/KenanYusuf) ##### Core - \[core] Add eslint rule to restrict import from `../internals` root ([#&#8203;13633](https://github.com/mui/mui-x/issues/13633)) [@&#8203;JCQuintas](https://github.com/JCQuintas) - \[docs-infra] Sync `\_app` folder with monorepo ([#&#8203;13582](https://github.com/mui/mui-x/issues/13582)) [@&#8203;Janpot](https://github.com/Janpot) - \[license] Allow usage of charts and tree view pro package for old premium licenses ([#&#8203;13619](https://github.com/mui/mui-x/issues/13619)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMCIsInVwZGF0ZWRJblZlciI6IjM3LjQyNC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
pierre added 1 commit 2024-07-05 00:20:39 +00:00
Update dependency @mui/x-data-grid to v7.8.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
e356e2fa61
pierre scheduled this pull request to auto merge when all checks succeed 2024-07-05 00:20:39 +00:00
pierre merged commit 4652c4acc0 into master 2024-07-05 00:32:10 +00:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: pierre/GeneIT#247
No description provided.