mui-italia
mui-italia copied to clipboard
build(deps-dev): bump @mui/x-date-pickers from 6.17.0 to 7.8.0
Bumps @mui/x-date-pickers from 6.17.0 to 7.8.0.
Release notes
Sourced from @mui/x-date-pickers
's releases.
v7.8.0
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 theunstable_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]
- [DataGrid] Add
columnHeaderSortIcon
slot (#13563)@arminmeh
- [DataGrid] Fix dimensions lag issue after autosize (#13587)
@MBilalShafi
- [DataGrid] Fix print export failure when
hideFooter
option is set (#13034)@tarunrajput
@mui/[email protected]
... (truncated)
Changelog
Sourced from @mui/x-date-pickers
's changelog.
7.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 theunstable_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]
- [DataGrid] Add
columnHeaderSortIcon
slot (#13563)@arminmeh
- [DataGrid] Fix dimensions lag issue after autosize (#13587)
@MBilalShafi
- [DataGrid] Fix print export failure when
hideFooter
option is set (#13034)@tarunrajput
... (truncated)
Commits
e8e8d30
v7.8.0 (#13655)5e8df8a
[fields] Fix section clearing behavior on Android (#13652)c523580
Bump typescript to ^5.5.2 (#13599)7f390b4
[core] Add eslint rule to restrict import from../internals
root (#13633)f0867b4
Bump moment-jalaali to ^0.10.1 (#13594)cef1835
Bump React (#12295)7566a1d
v7.7.1 (#13565)5f49acf
[pickers] Adds RTL verification for the time pickers default views (#13447)0b0f3b4
[pickers] Fix controlledview
behavior (#13552)4b4804c
[pickers] Add context toonAccept
callback (#13511)- Additional commits viewable in compare view
Maintainer changes
This version was pushed to npm by kyusuf, a new releaser for @mui/x-date-pickers
since your current version.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase
.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
-
@dependabot rebase
will rebase this PR -
@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it -
@dependabot merge
will merge this PR after your CI passes on it -
@dependabot squash and merge
will squash and merge this PR after your CI passes on it -
@dependabot cancel merge
will cancel a previously requested merge and block automerging -
@dependabot reopen
will reopen this PR if it is closed -
@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot show <dependency name> ignore conditions
will show all of the ignore conditions of the specified dependency -
@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) -
@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)