Update dependency @mui/x-tree-view to v6.0.0-beta.0 #40

Merged
pierre merged 1 commits from renovate/mui-x-tree-view-6.x-lockfile into master 2023-10-19 01:00:47 +00:00
Owner

This PR contains the following updates:

Package Type Update Change
@mui/x-tree-view (source) dependencies patch 6.0.0-alpha.2 -> 6.0.0-beta.0

Release Notes

mui/mui-x (@​mui/x-tree-view)

v6.0.0-beta.0

Compare Source

Jan 19, 2023

After a long period in alpha, we're glad to announce the first MUI X v6 beta!
We encourage you to try out this version, packed with improvements, bug fixes, and a few highlighted features :

Data Grid

Date and Time pickers

You can check the migration guides for the Data Grid and Date Pickers in the documentation.

We'd like to offer a big thanks to the 10 contributors who made this release possible.

  • Merge page and pageSize props into paginationModel
  • 🚀 Replace old masked picker components with field based ones
  • 🌍 Improve Swedish (sv-SE) and Italian (it-IT) locales
  • 📚 Documentation improvements
  • 🐞 Bug fixes
@mui/x-data-grid@6.0.0-beta.0 / @mui/x-data-grid-pro@6.0.0-beta.0 / @mui/x-data-grid-premium@6.0.0-beta.0
Breaking changes
  • The disableExtendRowFullWidth prop was removed.
    Use showCellVerticalBorder or showColumnVerticalBorder props to show or hide right border for cells and header cells respectively.

  • The GridCellIdentifier type was removed. Use GridCellCoordinates instead.

  • The singleSelect column type now has a default value formatter that returns the label corresponding to the selected value when valueOptions is an array of objects.
    As consequence, any existing value formatter will not be applied to the individual options anymore, but only to the text of the cell.
    It is recommended to migrate valueOptions to an array of objects to be able to add a custom label for each value.
    To override the label used for each option when the cell is in edit mode or in the filter panel, the following components now support a getOptionLabel prop.
    This prop accepts a callback that is called with the item from valueOptions and must return the new label.

    • GridEditSingleSelectCell
    • GridFilterInputSingleSelect
    • GridFilterInputMultipleSingleSelect
  • The getGridSingleSelectQuickFilterFn function was removed.
    You can copy the old function and pass it to the getApplyQuickFilterFn property of the singleSelect column definition.

  • The page and pageSize props and their respective event handlers onPageChange and onPageSizeChange were removed.
    Use paginationModel and onPaginationModelChange instead.

     <DataGrid
      rows={rows}
       columns={columns}
    -  page={page}
    -  pageSize={pageSize}
    -  onPageChange={handlePageChange}
    -  onPageSizeChange={handlePageSizeChange}
    +  paginationModel={{ page, pageSize }}
    +  onPaginationModelChange={handlePaginationModelChange}
     />
    
  • The properties initialState.pagination.page and initialState.pagination.pageSize were also removed.
    Use initialState.pagination.paginationModel instead.

    -initialState={{ pagination: { page: 1, pageSize: 10 } }}
    +initialState={{ pagination: { paginationModel: { page: 1, pageSize: 10 } } }}
    
  • The rowsPerPageOptions prop was renamed to pageSizeOptions.

    -<DataGrid rowsPerPageOptions={[10, 20, 50]} />
    +<DataGrid pageSizeOptions={[10, 20, 50]} />
    
  • The error and onError props were removed - the grid no longer catches errors during rendering.
    To catch errors that happen during rendering use the error boundary.

  • The components.ErrorOverlay slot was removed.

  • The GridErrorOverlay component was removed.

  • The componentError event was removed.
    Use the error boundary to catch errors thrown during rendering.

  • The apiRef.current.showError method was removed.
    The UI for errors is no longer handled by the grid.

  • The date and dateTime columns now only support Date objects as values.
    To parse a string value, use the valueGetter:

    <DataGrid
      columns={[
        {
          field: 'date',
          type: 'date',
          valueGetter: (params) => new Date(params.value),
        },
      ]}
    />
    
  • The following selectors have been renamed:

    • gridVisibleSortedRowIdsSelector renamed to gridExpandedSortedRowIdsSelector
    • gridVisibleSortedRowEntriesSelector renamed to gridExpandedSortedRowEntriesSelector
    • gridVisibleRowCountSelector renamed to gridExpandedRowCountSelector
    • gridVisibleSortedTopLevelRowEntriesSelector renamed to gridFilteredSortedTopLevelRowEntriesSelector
    • gridVisibleTopLevelRowCountSelector renamed to gridFilteredTopLevelRowCountSelector
  • The apiRef.current.getVisibleRowModels method was removed. Use the gridVisibleSortedRowEntriesSelector selector instead.

  • The GridRowScrollEndParams["virtualRowsCount"] parameter was renamed to GridRowScrollEndParams["visibleRowsCount"].

Changes
@mui/x-date-pickers@6.0.0-beta.0 / @mui/x-date-pickers-pro@6.0.0-beta.0
Breaking changes
  • The showToolbar prop has been moved to the toolbar component slot props:

     <DatePicker
    -  showToolbar
    +  slotProps={{
    +    toolbar: {
    +      hidden: false,
    +    }
    +  }}
     />
    
  • The new pickers have replaced the legacy one.

    If you were using the new pickers with their temporary name, you just have to change your imports.

    -import { Unstable_NextDatePicker as NextDatePicker } from '@&#8203;mui/x-date-pickers/NextDatePicker';
    +import { DatePicker } from '@&#8203;mui/x-date-pickers/DatePicker';
    -import { Unstable_DesktopNextDatePicker as DesktopNextDatePicker } from '@&#8203;mui/x-date-pickers/DesktopNextDatePicker';
    +import { DesktopDatePicker } from '@&#8203;mui/x-date-pickers/DesktopDatePicker';
    
     // Same for all the other pickers with an `Unstable_` prefix
    

    If you were still using the legacy picker (DatePicker, DesktopDatePicker, ...), please take a look at our migration guide for detailed explanations on how to start using the new ones.

  • The fields components are no longer unstable

    -import { Unstable_DateField as DateField } from '@&#8203;mui/x-date-pickers/DateField';
    +import { DateField } from '@&#8203;mui/x-date-pickers/DateField';
    
Changes
@mui/x-codemod@6.0.0-beta.0
Changes
Docs
Core

v6.0.0-alpha.4

Compare Source

Oct 20, 2022

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

  • 📝 Manage pickers' toolbar customization with slots
  • 🐞 Bugfixes
  • 🌍 Improve Turkish (tr-TR) locale on the data grid and pickers (#​6542) @​ramazansancar
@mui/x-data-grid@6.0.0-alpha.4 / @mui/x-data-grid-pro@6.0.0-alpha.4 / @mui/x-data-grid-premium@6.0.0-alpha.4
Breaking changes
  • To avoid confusion with the props that will be added for the cell selection feature, some props related to row selection were renamed to have "row" in their name.
    The renamed props are the following:

    Old name New name
    selectionModel rowSelectionModel
    onSelectionModelChange onRowSelectionModelChange
    disableSelectionOnClick disableRowSelectionOnClick
    disableMultipleSelection disableMultipleRowSelection
  • The gridSelectionStateSelector selector was renamed to gridRowSelectionStateSelector.

  • The selectionChange event was renamed to rowSelectionChange.

Changes
@mui/x-date-pickers@6.0.0-alpha.4 / @mui/x-date-pickers-pro@6.0.0-alpha.4
Breaking changes
  • The ToolbarComponent has been replaced by a Toolbar component slot.
    You can find more information about this pattern in the Base UI documentation:

     // Same on all other pickers
     <DatePicker
    -  ToolbarComponent: MyToolbar,
    +  components={{ Toolbar: MyToolbar }}
     />
    
  • The toolbarPlaceholder and toolbarFormat props have been moved to the toolbar components props slot:

     // Same on all other pickers
     <DatePicker
    -  toolbarPlaceholder="__"
    -  toolbarFormat="DD / MM / YYYY"
    +  componentsProps={{
    +    toolbar: {
    +      toolbarPlaceholder: '__',
    +      toolbarFormat: 'DD / MM / YYYY',
    +    }
    +  }}
     />
    
  • The toolbarTitle prop has been moved to the localization object:

     // Same on all other pickers
     <DatePicker
    -  toolbarTitle="Title"
    +  localeText={{ toolbarTitle: 'Title' }}
     />
    
  • The toolbar related translation keys have been renamed to better fit their usage:

     <LocalizationProvider
       localeText={{
    -    datePickerDefaultToolbarTitle: 'Date Picker',
    +    datePickerToolbarTitle: 'Date Picker',
    
    -    timePickerDefaultToolbarTitle: 'Time Picker',
    +    timePickerToolbarTitle: 'Time Picker',
    
    -    dateTimePickerDefaultToolbarTitle: 'Date Time Picker',
    +    dateTimePickerToolbarTitle: 'Date Time Picker',
    
    -    dateRangePickerDefaultToolbarTitle: 'Date Range Picker',
    +    dateRangePickerToolbarTitle: 'Date Range Picker',
       }}
     />
    
  • The onChange / openView props on the toolbar have been renamed onViewChange / view

Changes
Docs
Core

v6.0.0-alpha.3

Compare Source

Oct 13, 2022

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

@mui/x-data-grid@6.0.0-alpha.3 / @mui/x-data-grid-pro@6.0.0-alpha.3 / @mui/x-data-grid-premium@6.0.0-alpha.3
Breaking changes
  • [DataGrid] Remove legacy editing API

    The editing API that is enabled by default was replaced with a new API that contains better support for server-side persistence, validation and customization. This new editing feature was already available in v5 under the newEditingApi experimental flag. In v6, this flag can be removed.

     <DataGrid
    -  experimentalFeatures={{ newEditingApi: true }}
     />
    

    For users that didn't migrate to the new editing API in v5, additional work may be needed because the new API is not equivalent to the legacy API. Although, some migration steps are available to help in this task.

    • The editCellPropsChange event was removed. If you still need it please file a new issue so we can propose an alternative.
    • The cellEditCommit event was removed and the processRowUpdate prop can be used in place. More information, check the docs section about the topic.
    • The editRowsModel and onEditRowsModelChange props were removed. The cellModesModel or rowModesModel props can be used to achieve the same goal.
    • The following API methods were removed:
      • Use apiRef.current.stopCellEditMode to replace apiRef.current.commitCellChange
      • Use apiRef.current.startCellEditMode to replace apiRef.current.setCellMode(id, field, 'edit')
      • Use apiRef.current.stopRowEditMode to replace apiRef.current.commitRowChange
      • Use apiRef.current.startRowMode to replace apiRef.current.setRowMode(id, 'edit')
      • Use the cellModesModel or rowModesModel props to replace apiRef.current.setEditRowsModel
Changes
@mui/x-date-pickers@6.0.0-alpha.3 / @mui/x-date-pickers-pro@6.0.0-alpha.3
Breaking changes
  • All the props used by the mobile and desktop wrappers to override components or components' props have been replaced by component slots. You can find more information about this pattern in the Base UI documentation.

    Some of the names have also been prefixed by desktop when it was unclear that the behavior was only applied on the desktop version of the pickers (or the responsive version when used on a desktop).

    The DialogProps prop has been replaced by a dialog component props slot on responsive and mobile pickers:

     // Same on MobileDatePicker, DateTimePicker, MobileDateTimePicker,
     // TimePicker, MobileTimePicker, DateRangePicker and MobileDateRangePicker.
     <DatePicker
    -  DialogProps={{ backgroundColor: 'red' }}
    +  componentsProps={{ dialog: { backgroundColor: 'red' }}}
     />
    

    The PaperProps prop has been replaced by a desktopPaper component props slot on all responsive and desktop pickers:

     // Same on DesktopDatePicker, DateTimePicker, DesktopDateTimePicker,
     // TimePicker, DesktopTimePicker, DateRangePicker and DesktopDateRangePicker.
     <DatePicker
    -  PaperProps={{ backgroundColor: 'red' }}
    +  componentsProps={{ desktopPaper: { backgroundColor: 'red' }}}
     />
    

    The PopperProps prop has been replaced by a popper component props slot on all responsive and desktop pickers:

     // Same on DesktopDatePicker, DateTimePicker, DesktopDateTimePicker,
     // TimePicker, DesktopTimePicker, DateRangePicker and DesktopDateRangePicker.
     <DatePicker
    -  PopperProps={{ onClick: handleClick }}
    +  componentsProps={{ popper: { onClick: handleClick }}}
     />
    

    The TransitionComponent prop has been replaced by a DesktopTransition component slot on all responsive and desktop pickers:

     // Same on DesktopDatePicker, DateTimePicker, DesktopDateTimePicker,
     // TimePicker, DesktopTimePicker, DateRangePicker and DesktopDateRangePicker.
     <DatePicker
    -  TransitionComponent={Fade}
    +  components={{ DesktopTransition: Fade }}
     />
    

    The TrapFocusProps prop has been replaced by a desktopTrapFocus component props slot on all responsive and desktop pickers:

     // Same on DesktopDatePicker, DateTimePicker, DesktopDateTimePicker,
     // TimePicker, DesktopTimePicker, DateRangePicker and DesktopDateRangePicker.
     <DatePicker
    -  TrapFocusProps={{ isEnabled: () => false }}
    +  componentsProps={{ desktopTrapFocus: { isEnabled: () => false }}}
     />
    
  • The view components allowing to pick a date or parts of a date without an input have been renamed to better fit their usage:

    -<CalendarPicker {...props} />
    +<DateCalendar {...props} />
    
    -<DayPicker {...props} />
    +<DayCalendar {...props} />
    
    -<CalendarPickerSkeleton {...props} />
    +<DayCalendarSkeleton {...props} />
    
    -<MonthPicker {...props} />
    +<MonthCalendar {...props} />
    
    -<YearPicker {...props} />
    +<YearCalendar {...props} />
    
  • Component names in the theme have changed as well:

    -MuiCalendarPicker: {
    +MuiDateCalendar: {
    
    -MuiDayPicker: {
    +MuiDayCalendar: {
    
    -MuiCalendarPickerSkeleton: {
    +MuiDayCalendarSkeleton: {
    
    -MuiMonthPicker: {
    +MuiMonthCalendar: {
    
    -MuiYearPicker: {
    +MuiYearCalendar: {
    
Changes
Docs
Core

Configuration

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

🚦 Automerge: Enabled.

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 has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@mui/x-tree-view](https://mui.com/x/react-tree-view/) ([source](https://github.com/mui/mui-x)) | dependencies | patch | [`6.0.0-alpha.2` -> `6.0.0-beta.0`](https://renovatebot.com/diffs/npm/@mui%2fx-tree-view/6.0.0-alpha.2/6.0.0-beta.0) | --- ### Release Notes <details> <summary>mui/mui-x (@&#8203;mui/x-tree-view)</summary> ### [`v6.0.0-beta.0`](https://github.com/mui/mui-x/blob/HEAD/CHANGELOG.md#600-beta0) [Compare Source](https://github.com/mui/mui-x/compare/v6.0.0-alpha.4...v6.0.0-beta.0) *Jan 19, 2023* After a long period in alpha, we're glad to announce the first MUI X v6 beta! We encourage you to try out this version, packed with improvements, bug fixes, and a few highlighted features ✨: **Data Grid** - [Access to the API Object in the community version](https://mui.com/x/react-data-grid/api-object/) - [Improved column menu](https://mui.com/x/react-data-grid/column-menu/) - [Cell selection range](https://mui.com/x/react-data-grid/cell-selection/) (Premium) **Date and Time pickers** - [Fields: the new default input for pickers](https://mui.com/x/react-date-pickers/fields/). - [Improved layout customization](https://mui.com/x/react-date-pickers/custom-layout/) - [Edit date ranges with drag and drop](https://mui.com/x/react-date-pickers/date-range-calendar/) (Pro) You can check the migration guides for the [Data Grid](https://mui.com/x/migration/migration-data-grid-v5/) and [Date Pickers](https://mui.com/x/migration/migration-pickers-v5/) in the documentation. We'd like to offer a big thanks to the 10 contributors who made this release possible. - ✨ Merge `page` and `pageSize` props into `paginationModel` - 🚀 Replace old masked picker components with field based ones - 🌍 Improve Swedish (sv-SE) and Italian (it-IT) locales - 📚 Documentation improvements - 🐞 Bug fixes ##### `@mui/x-data-grid@6.0.0-beta.0` / `@mui/x-data-grid-pro@6.0.0-beta.0` / `@mui/x-data-grid-premium@6.0.0-beta.0` ##### Breaking changes - The `disableExtendRowFullWidth` prop was removed. Use `showCellVerticalBorder` or `showColumnVerticalBorder` props to show or hide right border for cells and header cells respectively. - The `GridCellIdentifier` type was removed. Use `GridCellCoordinates` instead. - The `singleSelect` column type now has a default value formatter that returns the `label` corresponding to the selected value when `valueOptions` is an array of objects. As consequence, any existing value formatter will not be applied to the individual options anymore, but only to the text of the cell. It is recommended to migrate `valueOptions` to an array of objects to be able to add a custom label for each value. To override the label used for each option when the cell is in edit mode or in the filter panel, the following components now support a `getOptionLabel` prop. This prop accepts a callback that is called with the item from `valueOptions` and must return the new label. - `GridEditSingleSelectCell` - `GridFilterInputSingleSelect` - `GridFilterInputMultipleSingleSelect` - The `getGridSingleSelectQuickFilterFn` function was removed. You can copy the old function and pass it to the `getApplyQuickFilterFn` property of the `singleSelect` column definition. - The `page` and `pageSize` props and their respective event handlers `onPageChange` and `onPageSizeChange` were removed. Use `paginationModel` and `onPaginationModelChange` instead. ```diff <DataGrid rows={rows} columns={columns} - page={page} - pageSize={pageSize} - onPageChange={handlePageChange} - onPageSizeChange={handlePageSizeChange} + paginationModel={{ page, pageSize }} + onPaginationModelChange={handlePaginationModelChange} /> ``` - The properties `initialState.pagination.page` and `initialState.pagination.pageSize` were also removed. Use `initialState.pagination.paginationModel` instead. ```diff -initialState={{ pagination: { page: 1, pageSize: 10 } }} +initialState={{ pagination: { paginationModel: { page: 1, pageSize: 10 } } }} ``` - The `rowsPerPageOptions` prop was renamed to `pageSizeOptions`. ```diff -<DataGrid rowsPerPageOptions={[10, 20, 50]} /> +<DataGrid pageSizeOptions={[10, 20, 50]} /> ``` - The `error` and `onError` props were removed - the grid no longer catches errors during rendering. To catch errors that happen during rendering use the [error boundary](https://react.dev/reference/react/Component#catching-rendering-errors-with-an-error-boundary). - The `components.ErrorOverlay` slot was removed. - The `GridErrorOverlay` component was removed. - The `componentError` event was removed. Use the [error boundary](https://react.dev/reference/react/Component#catching-rendering-errors-with-an-error-boundary) to catch errors thrown during rendering. - The `apiRef.current.showError` method was removed. The UI for errors is no longer handled by the grid. - The `date` and `dateTime` columns now only support `Date` objects as values. To parse a string value, use the [`valueGetter`](https://mui.com/x/react-data-grid/column-definition/#value-getter): ```tsx <DataGrid columns={[ { field: 'date', type: 'date', valueGetter: (params) => new Date(params.value), }, ]} /> ``` - The following selectors have been renamed: - `gridVisibleSortedRowIdsSelector` renamed to `gridExpandedSortedRowIdsSelector` - `gridVisibleSortedRowEntriesSelector` renamed to `gridExpandedSortedRowEntriesSelector` - `gridVisibleRowCountSelector` renamed to `gridExpandedRowCountSelector` - `gridVisibleSortedTopLevelRowEntriesSelector` renamed to `gridFilteredSortedTopLevelRowEntriesSelector` - `gridVisibleTopLevelRowCountSelector` renamed to `gridFilteredTopLevelRowCountSelector` - The `apiRef.current.getVisibleRowModels` method was removed. Use the `gridVisibleSortedRowEntriesSelector` selector instead. - The `GridRowScrollEndParams["virtualRowsCount"]` parameter was renamed to `GridRowScrollEndParams["visibleRowsCount"]`. ##### Changes - \[DataGrid] Add default value formatter to `singleSelect` ([#&#8203;7290](https://github.com/mui/mui-x/issues/7290)) [@&#8203;m4theushw](https://github.com/m4theushw) - \[DataGrid] Fix flickering on grid scroll ([#&#8203;7549](https://github.com/mui/mui-x/issues/7549)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[DataGrid] Merge `page` and `pageSize` props into `paginationModel` ([#&#8203;7147](https://github.com/mui/mui-x/issues/7147)) [@&#8203;MBilalShafi](https://github.com/MBilalShafi) - \[DataGrid] Only support `Date` as value in `date` and `dateTime` column types ([#&#8203;7594](https://github.com/mui/mui-x/issues/7594)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[DataGrid] Remove error boundary ([#&#8203;7579](https://github.com/mui/mui-x/issues/7579)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[DataGrid] Remove `GridCellIdentifier` redundant type ([#&#8203;7578](https://github.com/mui/mui-x/issues/7578)) [@&#8203;MBilalShafi](https://github.com/MBilalShafi) - \[DataGrid] Remove `disableExtendRowFullWidth` prop ([#&#8203;7373](https://github.com/mui/mui-x/issues/7373)) [@&#8203;MBilalShafi](https://github.com/MBilalShafi) - \[DataGrid] Remove tag limit from `isAnyOf` operator input ([#&#8203;7592](https://github.com/mui/mui-x/issues/7592)) [@&#8203;m4theushw](https://github.com/m4theushw) - \[DataGrid] Use v6 terminology ([#&#8203;7473](https://github.com/mui/mui-x/issues/7473)) [@&#8203;DanailH](https://github.com/DanailH) - \[DataGridPremium] Keep focus on first selected cell ([#&#8203;7482](https://github.com/mui/mui-x/issues/7482)) [@&#8203;m4theushw](https://github.com/m4theushw) - \[l10n] Update Swedish (sv-SE) locale ([#&#8203;7585](https://github.com/mui/mui-x/issues/7585)) [@&#8203;MaanTyringe](https://github.com/MaanTyringe) ##### `@mui/x-date-pickers@6.0.0-beta.0` / `@mui/x-date-pickers-pro@6.0.0-beta.0` ##### Breaking changes - The `showToolbar` prop has been moved to the `toolbar` component slot props: ```diff <DatePicker - showToolbar + slotProps={{ + toolbar: { + hidden: false, + } + }} /> ``` - The new pickers have replaced the legacy one. If you were using the new pickers with their temporary name, you just have to change your imports. ```diff -import { Unstable_NextDatePicker as NextDatePicker } from '@&#8203;mui/x-date-pickers/NextDatePicker'; +import { DatePicker } from '@&#8203;mui/x-date-pickers/DatePicker'; -import { Unstable_DesktopNextDatePicker as DesktopNextDatePicker } from '@&#8203;mui/x-date-pickers/DesktopNextDatePicker'; +import { DesktopDatePicker } from '@&#8203;mui/x-date-pickers/DesktopDatePicker'; // Same for all the other pickers with an `Unstable_` prefix ``` If you were still using the legacy picker (`DatePicker`, `DesktopDatePicker`, ...), please take a look at our [migration guide](https://mui.com/x/migration/migration-pickers-v5/#picker-components) for detailed explanations on how to start using the new ones. - The fields components are no longer unstable ```diff -import { Unstable_DateField as DateField } from '@&#8203;mui/x-date-pickers/DateField'; +import { DateField } from '@&#8203;mui/x-date-pickers/DateField'; ``` ##### Changes - \[DateRangeCalendar] Ignore `calendars` prop on mobile ([#&#8203;7526](https://github.com/mui/mui-x/issues/7526)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[DateRangeCalendar] Ignore `showDaysOutsideCurrentMonth` when `calendars > 1` ([#&#8203;7529](https://github.com/mui/mui-x/issues/7529)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[DateRangePicker] Propagate `rangePosition` to view ([#&#8203;7602](https://github.com/mui/mui-x/issues/7602)) [@&#8203;LukasTy](https://github.com/LukasTy) - \[fields] Fix upper boundary on 12-hours sections ([#&#8203;7618](https://github.com/mui/mui-x/issues/7618)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[fields] Publish value when cleaning the last section of a date ([#&#8203;7519](https://github.com/mui/mui-x/issues/7519)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[fields] Remove the `Unstable_` prefix for field components ([#&#8203;7185](https://github.com/mui/mui-x/issues/7185)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] Add missing `slots` and `slotProps` on the date range view renderer ([#&#8203;7586](https://github.com/mui/mui-x/issues/7586)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] Drop legacy pickers ([#&#8203;7545](https://github.com/mui/mui-x/issues/7545)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] Fix day calendar row and column index ([#&#8203;7589](https://github.com/mui/mui-x/issues/7589)) [@&#8203;LukasTy](https://github.com/LukasTy) - \[pickers] Go to the default view when opening a picker ([#&#8203;7484](https://github.com/mui/mui-x/issues/7484)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] Make sure the `className` and `sx` props are applied to the field / static root of the picker and never to the view ([#&#8203;7600](https://github.com/mui/mui-x/issues/7600)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] Rename new pickers ([#&#8203;7575](https://github.com/mui/mui-x/issues/7575)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] Rename remaining `components` and `componentSlots` references ([#&#8203;7576](https://github.com/mui/mui-x/issues/7576)) [@&#8203;LukasTy](https://github.com/LukasTy) - \[pickers] Replace `showToolbar` with toolbar slot `hidden` prop ([#&#8203;7498](https://github.com/mui/mui-x/issues/7498)) [@&#8203;LukasTy](https://github.com/LukasTy) - \[pickers] Spread props to the DOM in `DateCalendar` and `TimeClock` ([#&#8203;7587](https://github.com/mui/mui-x/issues/7587)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] Stop using the `WrapperVariantContext` in `DateRangeCalendar` ([#&#8203;7488](https://github.com/mui/mui-x/issues/7488)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[l10n] Improve Italian (it-IT) locale ([#&#8203;7582](https://github.com/mui/mui-x/issues/7582)) [@&#8203;marikadeveloper](https://github.com/marikadeveloper) ##### `@mui/x-codemod@6.0.0-beta.0` ##### Changes - \[codemod] Remove `disableExtendRowFullWidth` prop ([#&#8203;7508](https://github.com/mui/mui-x/issues/7508)) [@&#8203;MBilalShafi](https://github.com/MBilalShafi) ##### Docs - \[docs] Clean-up the `field components` page ([#&#8203;7605](https://github.com/mui/mui-x/issues/7605)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[docs] List all pickers toolbar pages in api docs side menu ([#&#8203;7577](https://github.com/mui/mui-x/issues/7577)) [@&#8203;LukasTy](https://github.com/LukasTy) - \[docs] Remove "Flex layout" docs section and demo ([#&#8203;7477](https://github.com/mui/mui-x/issues/7477)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[docs] Rework the pickers "Getting Started" page ([#&#8203;7140](https://github.com/mui/mui-x/issues/7140)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) ##### Core - \[core] Add missing `status: needs triage` label on RFC [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Add release documentation step detailing `x-codemod` package tag change ([#&#8203;7617](https://github.com/mui/mui-x/issues/7617)) [@&#8203;LukasTy](https://github.com/LukasTy) - \[core] Fix typo in `CHANGELOG` ([#&#8203;7611](https://github.com/mui/mui-x/issues/7611)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[test] Fix date range picker tests to work with western time zones ([#&#8203;7581](https://github.com/mui/mui-x/issues/7581)) [@&#8203;m4theushw](https://github.com/m4theushw) ### [`v6.0.0-alpha.4`](https://github.com/mui/mui-x/blob/HEAD/CHANGELOG.md#600-alpha4) [Compare Source](https://github.com/mui/mui-x/compare/v6.0.0-alpha.3...v6.0.0-alpha.4) *Oct 20, 2022* We'd like to offer a big thanks to the 9 contributors who made this release possible. Here are some highlights ✨: - 📝 Manage pickers' toolbar customization with slots - 🐞 Bugfixes - 🌍 Improve Turkish (tr-TR) locale on the data grid and pickers ([#&#8203;6542](https://github.com/mui/mui-x/issues/6542)) [@&#8203;ramazansancar](https://github.com/ramazansancar) ##### `@mui/x-data-grid@6.0.0-alpha.4` / `@mui/x-data-grid-pro@6.0.0-alpha.4` / `@mui/x-data-grid-premium@6.0.0-alpha.4` ##### Breaking changes - To avoid confusion with the props that will be added for the cell selection feature, some props related to row selection were renamed to have "row" in their name. The renamed props are the following: | Old name | New name | | :------------------------- | :---------------------------- | | `selectionModel` | `rowSelectionModel` | | `onSelectionModelChange` | `onRowSelectionModelChange` | | `disableSelectionOnClick` | `disableRowSelectionOnClick` | | `disableMultipleSelection` | `disableMultipleRowSelection` | - The `gridSelectionStateSelector` selector was renamed to `gridRowSelectionStateSelector`. - The `selectionChange` event was renamed to `rowSelectionChange`. ##### Changes - \[DataGrid] Add `searchPredicate` prop to `GridColumnsPanel` component ([#&#8203;6557](https://github.com/mui/mui-x/issues/6557)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[DataGrid] Support keyboard navigation in column group header ([#&#8203;5947](https://github.com/mui/mui-x/issues/5947)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[DataGrid] Fix grid not updating state on `rowCount` prop change ([#&#8203;5982](https://github.com/mui/mui-x/issues/5982)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[DataGrid] Rename selection props ([#&#8203;6556](https://github.com/mui/mui-x/issues/6556)) [@&#8203;m4theushw](https://github.com/m4theushw) - \[l10n] Improve Turkish (tr-TR) locale on the data grid and pickers ([#&#8203;6542](https://github.com/mui/mui-x/issues/6542)) [@&#8203;ramazansancar](https://github.com/ramazansancar) ##### `@mui/x-date-pickers@6.0.0-alpha.4` / `@mui/x-date-pickers-pro@6.0.0-alpha.4` ##### Breaking changes - The `ToolbarComponent` has been replaced by a `Toolbar` component slot. You can find more information about this pattern in the [Base UI documentation](https://mui.com/base-ui/getting-started/usage/#shared-props): ```diff // Same on all other pickers <DatePicker - ToolbarComponent: MyToolbar, + components={{ Toolbar: MyToolbar }} /> ``` - The `toolbarPlaceholder` and `toolbarFormat` props have been moved to the `toolbar` components props slot: ```diff // Same on all other pickers <DatePicker - toolbarPlaceholder="__" - toolbarFormat="DD / MM / YYYY" + componentsProps={{ + toolbar: { + toolbarPlaceholder: '__', + toolbarFormat: 'DD / MM / YYYY', + } + }} /> ``` - The `toolbarTitle` prop has been moved to the localization object: ```diff // Same on all other pickers <DatePicker - toolbarTitle="Title" + localeText={{ toolbarTitle: 'Title' }} /> ``` - The toolbar related translation keys have been renamed to better fit their usage: ```diff <LocalizationProvider localeText={{ - datePickerDefaultToolbarTitle: 'Date Picker', + datePickerToolbarTitle: 'Date Picker', - timePickerDefaultToolbarTitle: 'Time Picker', + timePickerToolbarTitle: 'Time Picker', - dateTimePickerDefaultToolbarTitle: 'Date Time Picker', + dateTimePickerToolbarTitle: 'Date Time Picker', - dateRangePickerDefaultToolbarTitle: 'Date Range Picker', + dateRangePickerToolbarTitle: 'Date Range Picker', }} /> ``` - The `onChange` / `openView` props on the toolbar have been renamed `onViewChange` / `view` ##### Changes - \[fields] Add a `validationError` property to the `onChange` callback ([#&#8203;6539](https://github.com/mui/mui-x/issues/6539)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[fields] Distinguish start and end input error on multi input fields ([#&#8203;6503](https://github.com/mui/mui-x/issues/6503)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] Clean the `Tabs` component slot ([#&#8203;6543](https://github.com/mui/mui-x/issues/6543)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] Fix localization of the placeholder ([#&#8203;6547](https://github.com/mui/mui-x/issues/6547)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[pickers] Fix TypeScript issues ([#&#8203;6322](https://github.com/mui/mui-x/issues/6322)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] Improve error consistency between single and multiple range pickers ([#&#8203;6561](https://github.com/mui/mui-x/issues/6561)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[pickers] Refactor `@mui/material` imports to `@mui/utils` ([#&#8203;6443](https://github.com/mui/mui-x/issues/6443)) [@&#8203;LukasTy](https://github.com/LukasTy) - \[pickers] Replace toolbar's props by a component slot ([#&#8203;6445](https://github.com/mui/mui-x/issues/6445)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) ##### Docs - \[docs] Enable inlined preview for disabled date picker ([#&#8203;6477](https://github.com/mui/mui-x/issues/6477)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] Fix 404 errors ([#&#8203;6541](https://github.com/mui/mui-x/issues/6541)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[docs] Fix broken links on field pages ([#&#8203;6501](https://github.com/mui/mui-x/issues/6501)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[docs] Improve markdownlint ([#&#8203;6518](https://github.com/mui/mui-x/issues/6518)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) ##### Core - \[core] Run CodeQL only on schedule [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Fix trailing spaces and git diff format ([#&#8203;6523](https://github.com/mui/mui-x/issues/6523)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Harden GitHub Actions permissions ([#&#8203;6396](https://github.com/mui/mui-x/issues/6396)) [@&#8203;step-security-bot](https://github.com/step-security-bot) - \[core] Improve the playground DX ([#&#8203;6514](https://github.com/mui/mui-x/issues/6514)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Link Netlify in the danger comment ([#&#8203;6513](https://github.com/mui/mui-x/issues/6513)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Organize tests for pickers slots ([#&#8203;6546](https://github.com/mui/mui-x/issues/6546)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[core] Remove outdated `docsearch.js` dependency ([#&#8203;6242](https://github.com/mui/mui-x/issues/6242)) [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[core] Upgrade monorepo ([#&#8203;6549](https://github.com/mui/mui-x/issues/6549)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[test] Add validation test on range pickers ([#&#8203;6504](https://github.com/mui/mui-x/issues/6504)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[test] Remove BrowserStack ([#&#8203;6263](https://github.com/mui/mui-x/issues/6263)) [@&#8203;DanailH](https://github.com/DanailH) ### [`v6.0.0-alpha.3`](https://github.com/mui/mui-x/blob/HEAD/CHANGELOG.md#600-alpha3) [Compare Source](https://github.com/mui/mui-x/compare/v6.0.0-alpha.2...v6.0.0-alpha.3) *Oct 13, 2022* We'd like to offer a big thanks to the 8 contributors who made this release possible. Here are some highlights ✨: - ⌚️ New components to edit date and time with <kbd>keyboard</kbd>—without using any modal or dropdown UI. Please check out our [documentation](https://mui.com/x/react-date-pickers/fields/) to discover those new components. - [`DateField`](https://mui.com/x/react-date-pickers/date-field/) to edit date - [`TimeField`](https://mui.com/x/react-date-pickers/time-field/) to edit time - [`DateTimeField`](https://mui.com/x/react-date-pickers/date-time-field/) to edit date and time - [`MultiInputDateRangeField` / `SingleInputDateRangeField`](https://mui.com/x/react-date-pickers/date-range-field/) to edit date range - [`MultiInputTimeRangeField`](https://mui.com/x/react-date-pickers/time-range-field/) to edit time range with two inputs - [`MultiInputDateTimeRangeField`](https://mui.com/x/react-date-pickers/date-time-range-field/) to edit date and time range with two inputs ⚠️ These components are unstable. They might receive breaking changes on their props to have the best components possible by the time of the stable release. - 📝 Allow to limit to one filter per column for `DataGridPro` and `DataGridPremium` ([#&#8203;6333](https://github.com/mui/mui-x/issues/6333)) [@&#8203;MBilalShafi](https://github.com/MBilalShafi) - 📚 New [page describing the validation props on each picker](https://mui.com/x/react-date-pickers/validation/) ([#&#8203;6064](https://github.com/mui/mui-x/issues/6064)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - 📚 Documentation improvements - 🐞 Bugfixes ##### `@mui/x-data-grid@6.0.0-alpha.3` / `@mui/x-data-grid-pro@6.0.0-alpha.3` / `@mui/x-data-grid-premium@6.0.0-alpha.3` ##### Breaking changes - \[DataGrid] Remove legacy editing API The editing API that is enabled by default was replaced with a new API that contains better support for server-side persistence, validation and customization. This new editing feature was already available in v5 under the `newEditingApi` experimental flag. In v6, this flag can be removed. ```diff <DataGrid - experimentalFeatures={{ newEditingApi: true }} /> ``` For users that didn't migrate to the new editing API in v5, additional work may be needed because the new API is not equivalent to the legacy API. Although, some migration steps are available to help in this task. - The `editCellPropsChange` event was removed. If you still need it please file a new issue so we can propose an alternative. - The `cellEditCommit` event was removed and the `processRowUpdate` prop can be used in place. More information, check the [docs](https://mui.com/x/react-data-grid/editing/#persistence) section about the topic. - The `editRowsModel` and `onEditRowsModelChange` props were removed. The [`cellModesModel`](https://mui.com/x/react-data-grid/editing/#controlled-mode) or [`rowModesModel`](https://mui.com/x/react-data-grid/editing/#controlled-mode) props can be used to achieve the same goal. - The following API methods were removed: - Use `apiRef.current.stopCellEditMode` to replace `apiRef.current.commitCellChange` - Use `apiRef.current.startCellEditMode` to replace `apiRef.current.setCellMode(id, field, 'edit')` - Use `apiRef.current.stopRowEditMode` to replace `apiRef.current.commitRowChange` - Use `apiRef.current.startRowMode` to replace `apiRef.current.setRowMode(id, 'edit')` - Use the [`cellModesModel`](https://mui.com/x/react-data-grid/editing/#controlled-mode) or [`rowModesModel`](https://mui.com/x/react-data-grid/editing/#controlled-mode) props to replace `apiRef.current.setEditRowsModel` ##### Changes - \[DataGrid] Fix start edit mode with printable character in React 18 ([#&#8203;6257](https://github.com/mui/mui-x/issues/6257)) [@&#8203;m4theushw](https://github.com/m4theushw) - \[DataGrid] Remove legacy editing API ([#&#8203;6016](https://github.com/mui/mui-x/issues/6016)) [@&#8203;m4theushw](https://github.com/m4theushw) - \[DataGrid] Simplify `useGridApiContext` and `useGridApiRef` type overrides ([#&#8203;6423](https://github.com/mui/mui-x/issues/6423)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[DataGrid] Use generics instead of verbose state overrides ([#&#8203;6409](https://github.com/mui/mui-x/issues/6409)) [@&#8203;cherniavskii](https://github.com/cherniavskii) - \[DataGridPro] Allow to limit to one filter per column ([#&#8203;6333](https://github.com/mui/mui-x/issues/6333)) [@&#8203;MBilalShafi](https://github.com/MBilalShafi) ##### `@mui/x-date-pickers@6.0.0-alpha.3` / `@mui/x-date-pickers-pro@6.0.0-alpha.3` ##### Breaking changes - All the props used by the mobile and desktop wrappers to override components or components' props have been replaced by component slots. You can find more information about this pattern in the [Base UI documentation](https://mui.com/base-ui/getting-started/usage/#shared-props). Some of the names have also been prefixed by `desktop` when it was unclear that the behavior was only applied on the desktop version of the pickers (or the responsive version when used on a desktop). The `DialogProps` prop has been replaced by a `dialog` component props slot on responsive and mobile pickers: ```diff // Same on MobileDatePicker, DateTimePicker, MobileDateTimePicker, // TimePicker, MobileTimePicker, DateRangePicker and MobileDateRangePicker. <DatePicker - DialogProps={{ backgroundColor: 'red' }} + componentsProps={{ dialog: { backgroundColor: 'red' }}} /> ``` The `PaperProps` prop has been replaced by a `desktopPaper` component props slot on all responsive and desktop pickers: ```diff // Same on DesktopDatePicker, DateTimePicker, DesktopDateTimePicker, // TimePicker, DesktopTimePicker, DateRangePicker and DesktopDateRangePicker. <DatePicker - PaperProps={{ backgroundColor: 'red' }} + componentsProps={{ desktopPaper: { backgroundColor: 'red' }}} /> ``` The `PopperProps` prop has been replaced by a `popper` component props slot on all responsive and desktop pickers: ```diff // Same on DesktopDatePicker, DateTimePicker, DesktopDateTimePicker, // TimePicker, DesktopTimePicker, DateRangePicker and DesktopDateRangePicker. <DatePicker - PopperProps={{ onClick: handleClick }} + componentsProps={{ popper: { onClick: handleClick }}} /> ``` The `TransitionComponent` prop has been replaced by a `DesktopTransition` component slot on all responsive and desktop pickers: ```diff // Same on DesktopDatePicker, DateTimePicker, DesktopDateTimePicker, // TimePicker, DesktopTimePicker, DateRangePicker and DesktopDateRangePicker. <DatePicker - TransitionComponent={Fade} + components={{ DesktopTransition: Fade }} /> ``` The `TrapFocusProps` prop has been replaced by a `desktopTrapFocus` component props slot on all responsive and desktop pickers: ```diff // Same on DesktopDatePicker, DateTimePicker, DesktopDateTimePicker, // TimePicker, DesktopTimePicker, DateRangePicker and DesktopDateRangePicker. <DatePicker - TrapFocusProps={{ isEnabled: () => false }} + componentsProps={{ desktopTrapFocus: { isEnabled: () => false }}} /> ``` - The view components allowing to pick a date or parts of a date without an input have been renamed to better fit their usage: ```diff -<CalendarPicker {...props} /> +<DateCalendar {...props} /> ``` ```diff -<DayPicker {...props} /> +<DayCalendar {...props} /> ``` ```diff -<CalendarPickerSkeleton {...props} /> +<DayCalendarSkeleton {...props} /> ``` ```diff -<MonthPicker {...props} /> +<MonthCalendar {...props} /> ``` ```diff -<YearPicker {...props} /> +<YearCalendar {...props} /> ``` - Component names in the theme have changed as well: ```diff -MuiCalendarPicker: { +MuiDateCalendar: { ``` ```diff -MuiDayPicker: { +MuiDayCalendar: { ``` ```diff -MuiCalendarPickerSkeleton: { +MuiDayCalendarSkeleton: { ``` ```diff -MuiMonthPicker: { +MuiMonthCalendar: { ``` ```diff -MuiYearPicker: { +MuiYearCalendar: { ``` ##### Changes - \[DatePicker] Allows to fix the number of week displayed ([#&#8203;6299](https://github.com/mui/mui-x/issues/6299)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[DateRangePicker] Fix calendar day outside of month layout shifting on hover ([#&#8203;6448](https://github.com/mui/mui-x/issues/6448)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[fields] New components: `MultiInputDateTimeRangePicker` and `MultiInputTimeRangePicker` ([#&#8203;6392](https://github.com/mui/mui-x/issues/6392)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[fields] Prepare the field exports for the public release ([#&#8203;6467](https://github.com/mui/mui-x/issues/6467)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[fields] Support paste in single section ([#&#8203;6422](https://github.com/mui/mui-x/issues/6422)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[pickers] Add field placeholders to the locale ([#&#8203;6337](https://github.com/mui/mui-x/issues/6337)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] Do not use `Partial` for `components` and `componentsProps` props ([#&#8203;6463](https://github.com/mui/mui-x/issues/6463)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] New component: `DateRangeCalendar` ([#&#8203;6416](https://github.com/mui/mui-x/issues/6416)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] Replace the `Picker` prefix in the view component by `Calendar` (eg: `MonthPicker` => `MonthCalendar`) ([#&#8203;6389](https://github.com/mui/mui-x/issues/6389)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] Support pasting on fields ([#&#8203;6364](https://github.com/mui/mui-x/issues/6364)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[pickers] Use slots in the mobile and desktop wrappers instead of `XXXComponent` and `XXXProps` ([#&#8203;6381](https://github.com/mui/mui-x/issues/6381)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) ##### Docs - \[docs] Add migration to DataGrid v6 page ([#&#8203;6235](https://github.com/mui/mui-x/issues/6235)) [@&#8203;m4theushw](https://github.com/m4theushw) - \[docs] Create first publishable version of the field doc ([#&#8203;6323](https://github.com/mui/mui-x/issues/6323)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[docs] Fix trailing spaces in the readme [@&#8203;oliviertassinari](https://github.com/oliviertassinari) - \[docs] New page for the pickers: Validation ([#&#8203;6064](https://github.com/mui/mui-x/issues/6064)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[docs] Organize migration pages ([#&#8203;6480](https://github.com/mui/mui-x/issues/6480)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) ##### Core - \[core] Add CodeQL workflow ([#&#8203;6387](https://github.com/mui/mui-x/issues/6387)) [@&#8203;DanailH](https://github.com/DanailH) - \[core] Add missing breaking change to the changelog ([#&#8203;6471](https://github.com/mui/mui-x/issues/6471)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[core] Fix playground structure ([#&#8203;6466](https://github.com/mui/mui-x/issues/6466)) [@&#8203;LukasTy](https://github.com/LukasTy) - \[core] Fix tests for pasting on fields ([#&#8203;6465](https://github.com/mui/mui-x/issues/6465)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[core] Remove absolute link ([#&#8203;6420](https://github.com/mui/mui-x/issues/6420)) [@&#8203;flaviendelangle](https://github.com/flaviendelangle) - \[core] Remove unused `react-text-mask` package ([#&#8203;6408](https://github.com/mui/mui-x/issues/6408)) [@&#8203;LukasTy](https://github.com/LukasTy) - \[core] Send explicit warning when dayjs locale is not found ([#&#8203;6424](https://github.com/mui/mui-x/issues/6424)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[core] Test validation on textfield and date views ([#&#8203;6265](https://github.com/mui/mui-x/issues/6265)) [@&#8203;alexfauquette](https://github.com/alexfauquette) - \[test] Sync comment with monorepo [@&#8203;oliviertassinari](https://github.com/oliviertassinari) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNy4xIiwidXBkYXRlZEluVmVyIjoiMzcuMjcuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->
pierre added 1 commit 2023-10-19 00:07:11 +00:00
Update dependency @mui/x-tree-view to v6.0.0-beta.0
Some checks failed
continuous-integration/drone/pr Build is failing
continuous-integration/drone/push Build is passing
fb9ec24986
pierre scheduled this pull request to auto merge when all checks succeed 2023-10-19 00:07:12 +00:00
pierre merged commit fb9ec24986 into master 2023-10-19 01:00:47 +00:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: pierre/GeneIT#40