Update dependency @mui/x-tree-view to v7.9.0 #259

Merged
pierre merged 1 commits from renovate/mui-x-tree-view-7.x-lockfile into master 2024-07-11 00:13:54 +00:00
Owner

This PR contains the following updates:

Package Type Update Change
@mui/x-tree-view (source) dependencies minor 7.7.1 -> 7.9.0

Release Notes

mui/mui-x (@​mui/x-tree-view)

v7.9.0

Compare Source

Jul 5, 2024

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

  • 🔄 Add loading overlay variants, including a skeleton loader option to the Data Grid component. See Loading overlay docs for more details.
  • 🌳 Add selectItem and getItemDOMElement methods to the TreeView component public API
  • ⛏️ Make the usePickersTranslations hook public in the pickers component
  • 🐞 Bugfixes
Data Grid
@mui/x-data-grid@7.9.0
  • DataGrid] Add skeleton loading overlay support ([#​13293](https://github.com/mui/mui-x/issues/13293)) [@​KenanYusuf](https://github.com/KenanYusuf)
    
  • DataGrid] Fix pagination when `pagination={undefined}` ([#​13349](https://github.com/mui/mui-x/issues/13349)) [@​sai6855](https://github.com/sai6855)
    
    

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

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

Date and Time Pickers
@mui/x-date-pickers@7.9.0
  • pickers] Make the `usePickersTranslations` hook public ([#​13657](https://github.com/mui/mui-x/issues/13657)) [@​flaviendelangle](https://github.com/flaviendelangle)
    
    

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

Charts
@mui/x-charts@7.9.0
  • charts] Add Heatmap (unreleased) ([#​13209](https://github.com/mui/mui-x/issues/13209)) [@​alexfauquette](https://github.com/alexfauquette)
    
  • charts] Add initial `Zoom&Pan` to the Pro charts (unreleased) ([#​13405](https://github.com/mui/mui-x/issues/13405)) [@​JCQuintas](https://github.com/JCQuintas)
    
  • charts] Fix Axis Highlight on horizontal bar charts regression ([#​13717](https://github.com/mui/mui-x/issues/13717)) [@​JCQuintas](https://github.com/JCQuintas)
    
  • charts] Improve charts interaction for mobile users ([#​13692](https://github.com/mui/mui-x/issues/13692)) [@​JCQuintas](https://github.com/JCQuintas)
    
  • charts] Add documentation on how to disable the tooltip on charts ([#​13724](https://github.com/mui/mui-x/issues/13724)) [@​JCQuintas](https://github.com/JCQuintas)
    
    
Tree View
@mui/x-tree-view@7.9.0
  • TreeView] Add `selectItem` and `getItemDOMElement` methods to the public API ([#​13485](https://github.com/mui/mui-x/issues/13485)) [@​flaviendelangle](https://github.com/flaviendelangle)
    
    
Docs
  • docs] Fix custom "no results overlay" demo in dark mode ([#​13715](https://github.com/mui/mui-x/issues/13715)) [@​KenanYusuf](https://github.com/KenanYusuf)
    
    
Core
  • core] Add `react_next` workflow in CircleCI ([#​13360](https://github.com/mui/mui-x/issues/13360)) [@​cherniavskii](https://github.com/cherniavskii)
    
  • core] Create a new package to share utils across X packages ([#​13528](https://github.com/mui/mui-x/issues/13528)) [@​flaviendelangle](https://github.com/flaviendelangle)
    
  • core] Fix dependency setup ([#​13684](https://github.com/mui/mui-x/issues/13684)) [@​LukasTy](https://github.com/LukasTy)
    
  • core] Remove `jscodeshift-add-imports` package ([#​13720](https://github.com/mui/mui-x/issues/13720)) [@​LukasTy](https://github.com/LukasTy)
    
  • code-infra] Cleanup monorepo and `@mui/docs` usage ([#​13713](https://github.com/mui/mui-x/issues/13713)) [@​LukasTy](https://github.com/LukasTy)
    
    

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-tree-view](https://mui.com/x/react-tree-view/) ([source](https://github.com/mui/mui-x/tree/HEAD/packages/x-tree-view)) | dependencies | minor | [`7.7.1` -> `7.9.0`](https://renovatebot.com/diffs/npm/@mui%2fx-tree-view/7.7.1/7.9.0) | --- ### Release Notes <details> <summary>mui/mui-x (@&#8203;mui/x-tree-view)</summary> ### [`v7.9.0`](https://github.com/mui/mui-x/blob/HEAD/CHANGELOG.md#790) [Compare Source](https://github.com/mui/mui-x/compare/v7.8.0...v7.9.0) *Jul 5, 2024* We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: - 🔄 Add loading overlay variants, including a skeleton loader option to the Data Grid component. See [Loading overlay docs](https://mui.com/x/react-data-grid/overlays/#loading-overlay) for more details. - 🌳 Add `selectItem` and `getItemDOMElement` methods to the TreeView component public API - ⛏️ Make the `usePickersTranslations` hook public in the pickers component - 🐞 Bugfixes <!--/ HIGHLIGHT_ABOVE_SEPARATOR /--> ##### Data Grid ##### `@mui/x-data-grid@7.9.0` - \[DataGrid] Add skeleton loading overlay support ([#&#8203;13293](https://github.com/mui/mui-x/issues/13293)) [@&#8203;KenanYusuf](https://github.com/KenanYusuf) - \[DataGrid] Fix pagination when `pagination={undefined}` ([#&#8203;13349](https://github.com/mui/mui-x/issues/13349)) [@&#8203;sai6855](https://github.com/sai6855) ##### `@mui/x-data-grid-pro@7.9.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.9.0`. ##### `@mui/x-data-grid-premium@7.9.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.9.0`. ##### Date and Time Pickers ##### `@mui/x-date-pickers@7.9.0` - \[pickers] Make the `usePickersTranslations` hook public ([#&#8203;13657](https://github.com/mui/mui-x/issues/13657)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) ##### `@mui/x-date-pickers-pro@7.9.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.9.0`. ##### Charts ##### `@mui/x-charts@7.9.0` - \[charts] Add Heatmap (unreleased) ([#&#8203;13209](https://github.com/mui/mui-x/issues/13209)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[charts] Add initial `Zoom&Pan` to the Pro charts (unreleased) ([#&#8203;13405](https://github.com/mui/mui-x/issues/13405)) [@&#8203;JCQuintas](https://github.com/JCQuintas) - \[charts] Fix Axis Highlight on horizontal bar charts regression ([#&#8203;13717](https://github.com/mui/mui-x/issues/13717)) [@&#8203;JCQuintas](https://github.com/JCQuintas) - \[charts] Improve charts interaction for mobile users ([#&#8203;13692](https://github.com/mui/mui-x/issues/13692)) [@&#8203;JCQuintas](https://github.com/JCQuintas) - \[charts] Add documentation on how to disable the tooltip on charts ([#&#8203;13724](https://github.com/mui/mui-x/issues/13724)) [@&#8203;JCQuintas](https://github.com/JCQuintas) ##### Tree View ##### `@mui/x-tree-view@7.9.0` - \[TreeView] Add `selectItem` and `getItemDOMElement` methods to the public API ([#&#8203;13485](https://github.com/mui/mui-x/issues/13485)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) ##### Docs - \[docs] Fix custom "no results overlay" demo in dark mode ([#&#8203;13715](https://github.com/mui/mui-x/issues/13715)) [@&#8203;KenanYusuf](https://github.com/KenanYusuf) ##### Core - \[core] Add `react_next` workflow in CircleCI ([#&#8203;13360](https://github.com/mui/mui-x/issues/13360)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[core] Create a new package to share utils across X packages ([#&#8203;13528](https://github.com/mui/mui-x/issues/13528)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[core] Fix dependency setup ([#&#8203;13684](https://github.com/mui/mui-x/issues/13684)) [@&#8203;LukasTy](https://github.com/LukasTy) - \[core] Remove `jscodeshift-add-imports` package ([#&#8203;13720](https://github.com/mui/mui-x/issues/13720)) [@&#8203;LukasTy](https://github.com/LukasTy) - \[code-infra] Cleanup monorepo and `@mui/docs` usage ([#&#8203;13713](https://github.com/mui/mui-x/issues/13713)) [@&#8203;LukasTy](https://github.com/LukasTy) ### [`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:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjguMCIsInVwZGF0ZWRJblZlciI6IjM3LjQyOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
pierre added 1 commit 2024-07-11 00:07:38 +00:00
Update dependency @mui/x-tree-view to v7.9.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
60185ca267
pierre scheduled this pull request to auto merge when all checks succeed 2024-07-11 00:07:38 +00:00
pierre merged commit 095dfc0436 into master 2024-07-11 00:13:54 +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#259
No description provided.