Socket
Socket
Sign inDemoInstall

@mui/x-codemod

Package Overview
Dependencies
Maintainers
0
Versions
42
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mui/x-codemod - npm Package Versions

2345

7.20.0

Diff

Changelog

Source

7.20.0

Oct 11, 2024

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

  • πŸ“š Updated "What's new" page giving more detailed overview of the latest new features and other highlights
  • πŸ“š New collapsible column groups demo for the Data Grid component
  • πŸ“š New Tree Item Customization documentation to learn how to use the new APIs to create custom Tree Items. The old APIs (props.ContentComponent and props.ContentProps) have been deprecated and will be removed in the new major version of the Tree View component.
  • 🌍 Improve Japanese (ja-JP) locale on the Data Grid component
  • 🐞 Bugfixes
  • πŸ“š Other documentation improvements

Special thanks go out to the community contributors who have helped make this release possible: @k-rajat19, @kalyan90, @uma-neko, @vfbiby. Following are all team members who have contributed to this release: @alelthomas, @arminmeh, @arthurbalduini, @cherniavskii, @flaviendelangle, @JCQuintas, @MBilalShafi, @noraleonte, @oliviertassinari, @samuelsycamore, @siriwatknp.

<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->

Data Grid

kyusuf
published 7.18.0 β€’

Changelog

Source

7.18.0

Sep 20, 2024

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

  • πŸ’« Support Row spanning on the Data Grid that automatically merges the consecutive cells in a column based on the cell value

    <img width="600" src="https://github.com/user-attachments/assets/d32ec936-d238-4c92-9e1a-af6788d74cdf" alt="data grid row spanning" />
  • ⏰ Support date-fns v4 (#14673) @LukasTy

  • πŸŽ‰ Add option for Pickers to change the order of displayed years (#11780) @thomasmoon

  • 🐞 Bugfixes

  • πŸ“š Documentation improvements

<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->

Data Grid

lukastyla
published 7.16.0 β€’

Changelog

Source

7.16.0

Sep 5, 2024

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

  • 🎨 Update the design of Data Grid column headers (#14293)
  • 🧠 Add the slots concept introduction documentation page (#13881)
  • 🌍 Improve Chinese (zh-CN) and Dutch (nl-NL) locales on the Data Grid
  • 🐞 Bugfixes
  • πŸ“š Documentation improvements
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->

Data Grid

michelengelen
published 7.15.0 β€’

Changelog

Source

7.15.0

Aug 29, 2024

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

  • πŸ’« Support MaterialΒ UI v6 (@mui/material@6) peer dependency (#14142) @cherniavskii

You can now use MUI X components with either v5 or v6 of @mui/material package πŸŽ‰

  • 🐞 Bugfixes

Data Grid

noraleonte
published 7.14.0 β€’

Changelog

Source

7.14.0

Aug 23, 2024

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

  • πŸ’« Allow filtering the axis on zoom, making the axis adapt by removing values outside the view.

    <img width="600" src="https://github.com/user-attachments/assets/e65bbd00-d2a8-4136-81cd-3598f1373c16" alt="filtering the axis on zoom" />
  • πŸ“Š Improve bar chart performances

  • 🌍 Improve Czech (cs-CZ) and Hebrew (he-IL) locales on the Data Grid

  • 🌍 Improve Chinese (zh-HK), Hebrew (he-IL), and Vietnamese (vi-VN) locales on the Date and Time Pickers

  • 🐞 Bugfixes

<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->

Data Grid

cherniavskii
published 7.11.0 β€’

Changelog

Source

7.11.0

Jul 18, 2024

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

  • 🎨 Add color legend for charts (#13700) @alexfauquette
  • 🌍 Improve Korean (ko-KR) locale on the Date and Time Pickers
  • 🌍 Improve Russian (ru-RU) locale on the Date and Time Pickers and Data Grid
  • 🐞 Bugfixes
  • πŸ“š Documentation improvements
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->

Data Grid

arminmeh
published 7.10.0 β€’

Changelog

Source

7.10.0

Jul 11, 2024

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

  • 🎁 Add selectors to support showing child row count in footer in the Data Grid
  • ✨ New APIs for retrieving current item tree and item's children IDs in the Tree View
  • 🌍 Improve Spanish (es-ES) locale on the Data Grid
  • 🐞 Bugfixes
  • πŸ“š Documentation improvements
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->

Data Grid

danailh
published 7.9.0 β€’

Changelog

Source

7.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 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

kyusuf
published 7.8.0 β€’

Changelog

Source

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 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

<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->

Data Grid

lukastyla
published 7.7.0 β€’

Changelog

Source

7.7.0

Jun 13, 2024

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

  • 🎁 Allow customization of the Pickers month and the year buttons
  • 🌍 Improve Persian (fa-IR), Portuguese (pt-PT), and Russian (ru-RU) locales on the Data Grid
  • 🌍 Improve Korean (ko-KR) and Persian (fa-IR) locales on the Date and Time Pickers
  • 🐞 Bugfixes
  • πŸ“š Documentation improvements
<!--/ HIGHLIGHT_ABOVE_SEPARATOR /-->

Data Grid

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚑️ by Socket Inc