Socket
Socket
Sign inDemoInstall

@mui/x-data-grid

Package Overview
Dependencies
Maintainers
10
Versions
194
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@mui/x-data-grid - npm Package Versions

1
20

6.18.5

Diff

cherniavskii
published 7.0.0-alpha.4 •

Changelog

Source

7.0.0-alpha.4

Dec 8, 2023

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

  • 🚀 The scatter charts now use voronoi to trigger items

    Users needed to hover the item to highlight the scatter item or show the tooltip. Now they can interact with data by triggering the closest element. See the docs page for more info.

  • 📚 Add Pickers FAQ page

  • 🎉 The Data Grid Header filters feature is now stable

  • 🌍 Improve Danish (da-DK) locale on Data Grid

  • 🐞 Bugfixes

Data Grid

Breaking changes
  • The header filters feature is now stable. unstable_ prefix is removed from prop headerFilters and related exports. See migration docs for more details.

  • The GridColDef['type'] has been narrowed down to only accept the built-in column types. TypeScript users need to use the GridColDef interface when defining columns:

    // 🛑 `type` is inferred as `string` and is too wide
    const columns = [{ type: 'number', field: 'id' }];
    <DataGrid columns={columns} />;
    
    // ✅ `type` is `'number'`
    const columns: GridColDef[] = [{ type: 'number', field: 'id' }];
    <DataGrid columns={columns} />;
    
    // ✅ Alternalively, `as const` can be used to narrow down the type
    const columns = [{ type: 'number' as const, field: 'id' }];
    <DataGrid columns={columns} />;
    
cherniavskii
published 6.18.4 •

danailh
published 7.0.0-alpha.3 •

Changelog

Source

@mui/x-charts-pro@7.0.0-alpha.3 pro

Same changes as in @mui/x-charts@7.15.0, plus:

  • [charts pro] Avoid relative reference to @mui/x-charts package (#14335) @LukasTy

Docs

  • [docs] Fix sentence case h2 @oliviertassinari
  • [docs] Clarify contribution guide references @oliviertassinari
  • [docs] Fix Stack Overflow issue canned response @oliviertassinari
  • [docs] Fix outdated link to support page @oliviertassinari
  • [docs] Fix use of Material UI @oliviertassinari
  • [docs] Update deprecated props in docs (#14295) @JCQuintas

Core

  • [core] Allow only v5.x for MUI Core renovate group (#14382) @LukasTy
  • [core] Avoid visual regression when using @mui/material@6 (#14357) @cherniavskii
  • [core] Remove renovate rule targeting only next releases of @mui/docs (#14364) @LukasTy
  • [core] Support @mui/material@6 peer dependency (#14142) @cherniavskii
  • [core] Use useRtl instead of useTheme to access direction (#14359) @LukasTy
  • [code-infra] Typecheck nested folders in playground (#14352) @JCQuintas
  • [infra] Fix Issue cleanup action @oliviertassinari
  • [license] Prepare renaming of argument names @oliviertassinari
lukastyla
published 6.18.3 •

lukastyla
published 7.0.0-alpha.2 •

Changelog

Source

@mui/x-charts-pro@7.0.0-alpha.2 pro

Same changes as in @mui/x-charts@7.14.0, plus:

  • [charts-pro] Zoom axis filtering (#14121) @JCQuintas

Docs

  • [docs] Consistent use of UTC and timezones (#14250) @oliviertassinari
  • [docs] Fix missing leading slashes in URLs (#14249) @oliviertassinari
  • [docs] Dash usage revision on pickers pages (#14260) @arthurbalduini

Core

  • [core] Follow JSDocs convention @oliviertassinari
  • [core] Prepare for material v6 (#14143) @LukasTy
  • [code-infra] Set up eslint-plugin-testing-library (#14232) @LukasTy
  • [infra] Updated mui-x roadmap links with new project URL (#14271) @michelengelen
lukastyla
published 6.18.2 •

noraleonte
published 7.0.0-alpha.1 •

Changelog

Source

@mui/x-charts-pro@7.0.0-alpha.1 pro

Same changes as in @mui/x-charts@7.13.0.

Tree View

michelengelen
published 7.0.0-alpha.0 •

Changelog

Source

@mui/x-charts-pro@7.0.0-alpha.0 pro

Same changes as in @mui/x-charts@7.12.1, plus:

  • [charts-pro] Release the pro package in alpha (#13859) @alexfauquette

Tree View

michelengelen
published 6.18.1 •

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