Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@mui/x-data-grid-pro

Package Overview
Dependencies
Maintainers
7
Versions
199
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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

1
20

7.0.0-alpha.6

Diff

Changelog

Source

7.0.0-alpha.6

Dec 22, 2023

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

  • 🎁 Data Grid now supports Date objects in the filterModel
  • 🌍 Improve Russian (ru-RU) locale on the Data Grid
  • 🐞 Bugfixes

Data Grid

Breaking changes
  • The filter panel no longer uses the native version of the Select component for all components.

  • The getOptionValue and getOptionLabel props were removed from the following components:

    • GridEditSingleSelectCell
    • GridFilterInputSingleSelect
    • GridFilterInputMultipleSingleSelect

    Use the getOptionValue and getOptionLabel properties on the singleSelect column definition instead:

    const column: GridColDef = {
      type: 'singleSelect',
      field: 'country',
      valueOptions: [
        { code: 'BR', name: 'Brazil' },
        { code: 'FR', name: 'France' },
      ],
      getOptionValue: (value: any) => value.code,
      getOptionLabel: (value: any) => value.name,
    };
    
  • The filterModel now supports Date objects as values for date and dateTime column types. The filterModel still accepts strings as values for date and dateTime column types, but all updates to the filterModel coming from the UI (for example filter panel) will set the value as a Date object.

romgrk
published 6.18.6 •

mbilalshafi
published 7.0.0-alpha.5 •

Changelog

Source

Charts / @mui/x-charts@7.0.0-alpha.5

  • [charts] Allow percentage values for pie chart center and radius (#11464) @alexfauquette
  • [charts] Improve dataset typing (#11372) @alexfauquette
  • [charts] Make error message more explicit (#11457) @alexfauquette
  • [charts] Make the helper ChartsText component public (#11370) @alexfauquette

Docs

  • [docs] Document false default values for boolean props (#11477) @cherniavskii
  • [docs] Improve Pickers name prop examples (#11422) @LukasTy
  • [docs] Limit date-fns package to v2 in codesandbox (#11463) @LukasTy

Core

  • [core] Add missing breaking changes to changelog (#11420) @MBilalShafi
  • [core] Cherry pick follow up (#11469) @LukasTy
  • [core] Fix cherry-pick action (#11446) @LukasTy
  • [core] Fix security regressions in cherry-pick-next-to-master.yml (#11482) @MBilalShafi
  • [test] Reload the page if its blank and there are no links to the remaining tests (#11466) @cherniavskii
mbilalshafi
published 6.18.5 •

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 •

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