Skip to content

Update dependency @material-ui/data-grid to v4.0.0-alpha.37#34

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/material-ui-data-grid-4.x-lockfile
Open

Update dependency @material-ui/data-grid to v4.0.0-alpha.37#34
renovate[bot] wants to merge 1 commit intomainfrom
renovate/material-ui-data-grid-4.x-lockfile

Conversation

@renovate
Copy link

@renovate renovate bot commented Apr 16, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@material-ui/data-grid (source) 4.0.0-alpha.35 -> 4.0.0-alpha.37 age adoption passing confidence

Release Notes

mui-org/material-ui-x (@​material-ui/data-grid)

v4.0.0-alpha.37

Compare Source

Jul 12, 2021

Big thanks to the 7 contributors who made this release possible. Here are some highlights ✨:

This is the last alpha release. We are moving to beta in the next release, next week.

@material-ui/data-grid@v4.0.0-alpha.37 / @material-ui/x-grid@v4.0.0-alpha.37
Breaking changes
  • [DataGrid] Drop support for @​material-ui/core below v4.12.0 (#​2281) @​DanailH

  • [XGrid] Replace event constants with the GridEvents enum (#​2279) @​flaviendelangle

    -import { GRID_CELL_EDIT_START } from '@​material-ui/x-grid';
    -apiRef.current.subscribeEvent(GRID_CELL_EDIT_START, (params, event) => { ... });
    +import { GridEvents } from '@​material-ui/x-grid';
    +apiRef.current.subscribeEvent(GridEvents.cellEditStart, (params, event) => { ... });
Changes
Docs
Core

v4.0.0-alpha.36

Compare Source

August 6, 2021

Big thanks to the 6 contributors who made this release possible. Here are some highlights ✨:

@material-ui/data-grid@v4.0.0-alpha.36 / @material-ui/x-grid@v4.0.0-alpha.36
Breaking changes
  • [DataGrid] Polish cell editing (#​2220) @​m4theushw

    • Replace onCellModeChange prop with onCellEditEnter or onCellEditExit.
    • Rename onCellEditEnter prop to onCellEditStart.
    • Rename onCellEditEnd prop to onCellEditStop.
     <DataGrid
    -  onCellEditEnter={...}
    -  onCellEditExit={...}
    +  onCellEditStart={...}
    +  onCellEditStop={...}
     />
    • [XGrid] The setEditCellProps API call is not available anymore.
      Use the controlled editing or setEditRowsModel.
    -apiRef.current.setEditCellProps({ id, field, props: { ...props, error: true } });
    +apiRef.current.setEditRowsModel({
    +  ...oldModel,
    +  [id]: {
    +    ...oldModel[id],
    +    [field]: { ...oldModel[id][field], error: true },
    +  },
    +});
  • [DataGrid] Allow non-integer column width for flex columns (#​2282) @​flaviendelangle

    • The width property of the columns is no longer updated with the actual width of of the column. Use the new computedWidth property in the callbacks instead.
    const columns: GridColDef = [
      {
      field: "name",
      width: 100,
      renderCell: ({ value, colDef }) => {
      - console.log(colDef.width!)
      + console.log(colDef.computedWidth)
        return value
      }
    ]
Changes
Docs
Core

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/material-ui-data-grid-4.x-lockfile branch from 3772648 to aede838 Compare January 24, 2025 03:59
@renovate renovate bot force-pushed the renovate/material-ui-data-grid-4.x-lockfile branch from aede838 to 40d0026 Compare January 31, 2025 04:10
@renovate renovate bot force-pushed the renovate/material-ui-data-grid-4.x-lockfile branch from 40d0026 to c2e232a Compare March 4, 2025 20:18
@renovate renovate bot force-pushed the renovate/material-ui-data-grid-4.x-lockfile branch 2 times, most recently from dcee185 to 2d9b13b Compare March 18, 2025 04:02
@renovate renovate bot force-pushed the renovate/material-ui-data-grid-4.x-lockfile branch from 2d9b13b to a367720 Compare April 2, 2025 03:29
@renovate renovate bot force-pushed the renovate/material-ui-data-grid-4.x-lockfile branch from a367720 to 4562e2d Compare April 12, 2025 08:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants