-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into fix-cellValue-type-in-quick-filter-v7
- Loading branch information
Showing
37 changed files
with
1,787 additions
and
997 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,67 @@ | |
All notable changes to this project will be documented in this file. | ||
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. | ||
|
||
## 6.18.0 | ||
|
||
_Nov 3, 2023_ | ||
|
||
We'd like to offer a big thanks to the 7 contributors who made this release possible. Here are some highlights ✨: | ||
|
||
- 🎁 The Charts package is now officially stable! | ||
- 🥧 Pie charts are now animated. | ||
- 📈 Line charts now support partial data, and can interpolate missing data. | ||
|
||
<img width="380" alt="line charts with partial data" src="https://github.com/mui/mui-x/assets/45398769/385ecf77-19b2-4a03-8aef-5d547db1d9ad"> | ||
|
||
- ✨ Allow to ignore [diacritics](https://en.wikipedia.org/wiki/Diacritic) when filtering | ||
- 📚 Documentation improvements | ||
|
||
### Data Grid | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [DataGrid] Allow to ignore [diacritics](https://en.wikipedia.org/wiki/Diacritic) when filtering (#10569) @cherniavskii | ||
- [DataGrid] Fix a typo in `gridFilterApi` (#10786) @vu-dao-93 | ||
- [DataGrid] Fix `undefined` row id (#10670) @romgrk | ||
- [DataGrid] Make column autosizing work with dynamic row height (#10693) @cherniavskii | ||
- [l10n] Allow to customize sorting label per column (#10839) @JerryWu1234 | ||
|
||
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') | ||
|
||
Same changes as in `@mui/[email protected]`. | ||
|
||
#### `@mui/[email protected]` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan') | ||
|
||
Same changes as in `@mui/[email protected]`. | ||
|
||
### Date Pickers | ||
|
||
#### `@mui/[email protected]` | ||
|
||
- [pickers] Add reference links to calendar components (#10644) @michelengelen | ||
|
||
#### `@mui/[email protected]` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan') | ||
|
||
Same changes as in `@mui/[email protected]`. | ||
|
||
### Charts / `@mui/[email protected]` | ||
|
||
- [charts] Add animation on pie chart (#10782) @alexfauquette | ||
- [charts] Add reference links to shared/misc chart components (#10660) @michelengelen | ||
- [charts] Allows to connect nulls (#10803) @alexfauquette | ||
- [charts] Fix axis highlight in dark mode (#10820) @LukasTy | ||
|
||
### Docs | ||
|
||
- [docs] Add a data grid recipe for autosizing columns after fetching row-data (#10822) @michelengelen | ||
- [docs] Add a data grid recipe showing how to remove cell outline on `focus` (#10843) @michelengelen | ||
- [docs] Add demo about how to use charts margin (#10886) @alexfauquette | ||
- [docs] Improve custom field input demos readability (#10559) @LukasTy | ||
|
||
### Core | ||
|
||
- [core] Generate `slot` API descriptions based on `slots` or `components` (#10879) @LukasTy | ||
|
||
## 6.17.0 | ||
|
||
_Oct 27, 2023_ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import * as React from 'react'; | ||
import ChartsUsageDemo from 'docsx/src/modules/components/ChartsUsageDemo'; | ||
import { BarChart } from '@mui/x-charts/BarChart'; | ||
import { DEFAULT_X_AXIS_KEY, DEFAULT_Y_AXIS_KEY } from '@mui/x-charts/constants'; | ||
|
||
const data = ['left', 'right', 'top', 'bottom'].map((propName) => ({ | ||
propName, | ||
knob: 'number', | ||
defaultValue: 80, | ||
step: 1, | ||
min: 0, | ||
max: 200, | ||
})); | ||
export default function MarginNoSnap() { | ||
return ( | ||
<ChartsUsageDemo | ||
componentName="Margin demos" | ||
data={data} | ||
renderDemo={(props) => ( | ||
<BarChart | ||
series={[{ data: [6, 18, 12] }]} | ||
width={500} | ||
height={300} | ||
margin={{ | ||
left: props.left, | ||
right: props.right, | ||
top: props.top, | ||
bottom: props.bottom, | ||
}} | ||
xAxis={[ | ||
{ | ||
id: DEFAULT_X_AXIS_KEY, | ||
scaleType: 'band', | ||
data: ['Page 1', 'Page 2', 'Page 3'], | ||
}, | ||
]} | ||
topAxis={DEFAULT_X_AXIS_KEY} | ||
rightAxis={DEFAULT_Y_AXIS_KEY} | ||
/> | ||
)} | ||
getCode={({ props }) => { | ||
return [ | ||
`import { BarChart } from '@mui/x-charts/BarChart';`, | ||
'', | ||
`<BarChart`, | ||
` // ...`, | ||
` margin={{`, | ||
` left: ${props.left},`, | ||
` right: ${props.right},`, | ||
` top: ${props.top},`, | ||
` bottom: ${props.bottom},`, | ||
` }}`, | ||
'/>', | ||
].join('\n'); | ||
}} | ||
/> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.