Skip to content

Commit

Permalink
Merge branch 'master' into onclick_handler
Browse files Browse the repository at this point in the history
Signed-off-by: yared tsegaye <34584266+yaredtsy@users.noreply.github.com>
  • Loading branch information
yaredtsy authored Oct 12, 2023
2 parents bbb0d1d + 87815c0 commit 13a9efd
Show file tree
Hide file tree
Showing 187 changed files with 4,011 additions and 1,307 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/no-response.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ jobs:
contents: read
issues: write
steps:
- uses: lee-dohm/no-response@9bb0a4b5e6a45046f00353d5de7d90fb8bd773bb # v0.5.0
- uses: MBilalShafi/no-response-add-label@9657b5bc1e09373e571df54429c3c167edaad556
with:
token: ${{ secrets.GITHUB_TOKEN }}
# Number of days of inactivity before an Issue is closed for lack of response
daysUntilClose: 7
# Label requiring a response
responseRequiredLabel: 'status: waiting for follow-up'
responseRequiredLabel: 'status: waiting for author'
# Label to add back when required label is removed
optionalFollowupLabel: 'status: waiting for maintainer'
# Comment to post when closing an Issue for lack of response. Set to `false` to disable
closeComment: >
The issue has been inactive for 7 days and has been automatically closed.
Expand Down
60 changes: 60 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,66 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 6.16.1

_Oct 6, 2023_

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

- 🥧 Support interaction with pie chart
- 🐞 Bugfixes
- 📚 Documentation improvements

### Data Grid

#### `@mui/x-data-grid@6.16.1`

- [DataGrid] Add a new demo with sparklines (#9228) @flaviendelangle
- [DataGrid] Fix autosize missing a few pixels (#10471) @romgrk
- [DataGrid] Make `disableColumnSelector` demo idempotent (#10548) @MBilalShafi

#### `@mui/x-data-grid-pro@6.16.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')

Same changes as in `@mui/x-data-grid@6.16.1`.

#### `@mui/x-data-grid-premium@6.16.1` [![premium](https://mui.com/r/x-premium-svg)](https://mui.com/r/x-premium-svg-link 'Premium plan')

Same changes as in `@mui/x-data-grid-pro@6.16.1`.

### Date Pickers

#### `@mui/x-date-pickers@6.16.1`

- [pickers] Avoid calendar layout shifting when changing views (#10541) @LukasTy
- [pickers] Fix clearable behavior when disabled (#10542) @noraleonte
- [pickers] Improve customization playground examples (#10544) @noraleonte

#### `@mui/x-date-pickers-pro@6.16.1` [![pro](https://mui.com/r/x-pro-svg)](https://mui.com/r/x-pro-svg-link 'Pro plan')

Same changes as in `@mui/x-date-pickers@6.16.1`, plus:

- [DateRangePicker] Fix `InputProps` propagation in multi input (#10564) @alexfauquette

### Charts / `@mui/x-charts@6.0.0-alpha.14`

- [charts] Display cursor pointer for pie chart only if `onClick` is provided (#10551) @giladappsforce
- [charts] Add `onClick` prop to PieChart (#10506) @giladappsforce
- [charts] Support `slots`/`slotProps` for the tooltip (#10515) @alexfauquette

### Docs

- [docs] Add `DateRangePicker` example with a `Button` trigger (#10485) @LukasTy
- [docs] Add section about disabling columns panel (#10328) @MBilalShafi
- [docs] Add section about overriding slots to base concepts (#10421) @noraleonte
- [docs] Add "What's new" page listing all release announcements (#9727) @joserodolfofreitas
- [docs] Update RTL Support section of the grid localization docs (#10561) @MBilalShafi

### Core

- [core] Fix casing consistency with legal and marketing content @oliviertassinari
- [core] Revert the link in the priority support ticket description (#10517) @michelengelen
- [CHANGELOG] Polish image @oliviertassinari

## 6.16.0

_Sep 29, 2023_
Expand Down
2 changes: 1 addition & 1 deletion docs/data/charts/axis/AxisCustomizationNoSnap.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const defaultXAxis = {
disableLine: false,
disableTicks: false,
fontSize: 12,
label: 'my axis',
label: 'My axis',
labelFontSize: 14,
tickSize: 6,
};
Expand Down
4 changes: 2 additions & 2 deletions docs/data/charts/axis/AxisWithComposition.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ export default function AxisWithComposition() {
margin={{ left: 70, right: 70 }}
sx={{
[`.${axisClasses.left} .${axisClasses.label}`]: {
transform: 'rotate(-90deg) translate(0px, -20px)',
transform: 'translate(-25px, 0)',
},
[`.${axisClasses.right} .${axisClasses.label}`]: {
transform: 'rotate(90deg) translate(0px, -25px)',
transform: 'translate(30px, 0)',
},
}}
>
Expand Down
4 changes: 2 additions & 2 deletions docs/data/charts/axis/AxisWithComposition.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ export default function AxisWithComposition() {
margin={{ left: 70, right: 70 }}
sx={{
[`.${axisClasses.left} .${axisClasses.label}`]: {
transform: 'rotate(-90deg) translate(0px, -20px)',
transform: 'translate(-25px, 0)',
},
[`.${axisClasses.right} .${axisClasses.label}`]: {
transform: 'rotate(90deg) translate(0px, -25px)',
transform: 'translate(30px, 0)',
},
}}
>
Expand Down
2 changes: 1 addition & 1 deletion docs/data/charts/bars/BarsDataset.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const chartSetting = {
height: 300,
sx: {
[`.${axisClasses.left} .${axisClasses.label}`]: {
transform: 'rotate(-90deg) translate(0px, -20px)',
transform: 'translate(-20px, 0)',
},
},
};
Expand Down
2 changes: 1 addition & 1 deletion docs/data/charts/bars/BarsDataset.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const chartSetting = {
height: 300,
sx: {
[`.${axisClasses.left} .${axisClasses.label}`]: {
transform: 'rotate(-90deg) translate(0px, -20px)',
transform: 'translate(-20px, 0)',
},
},
};
Expand Down
10 changes: 5 additions & 5 deletions docs/data/charts/bars/StackBars.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ export default function StackBars() {
return (
<BarChart
series={[
{ data: [3, 4, 1, 6, 5], stack: 'A', label: 'series A1' },
{ data: [4, 3, 1, 5, 8], stack: 'A', label: 'series A2' },
{ data: [4, 2, 5, 4, 1], stack: 'B', label: 'series B1' },
{ data: [2, 8, 1, 3, 1], stack: 'B', label: 'series B2' },
{ data: [10, 6, 5, 8, 9], label: 'series C1' },
{ data: [3, 4, 1, 6, 5], stack: 'A', label: 'Series A1' },
{ data: [4, 3, 1, 5, 8], stack: 'A', label: 'Series A2' },
{ data: [4, 2, 5, 4, 1], stack: 'B', label: 'Series B1' },
{ data: [2, 8, 1, 3, 1], stack: 'B', label: 'Series B2' },
{ data: [10, 6, 5, 8, 9], label: 'Series C1' },
]}
width={600}
height={350}
Expand Down
10 changes: 5 additions & 5 deletions docs/data/charts/bars/StackBars.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ export default function StackBars() {
return (
<BarChart
series={[
{ data: [3, 4, 1, 6, 5], stack: 'A', label: 'series A1' },
{ data: [4, 3, 1, 5, 8], stack: 'A', label: 'series A2' },
{ data: [4, 2, 5, 4, 1], stack: 'B', label: 'series B1' },
{ data: [2, 8, 1, 3, 1], stack: 'B', label: 'series B2' },
{ data: [10, 6, 5, 8, 9], label: 'series C1' },
{ data: [3, 4, 1, 6, 5], stack: 'A', label: 'Series A1' },
{ data: [4, 3, 1, 5, 8], stack: 'A', label: 'Series A2' },
{ data: [4, 2, 5, 4, 1], stack: 'B', label: 'Series B1' },
{ data: [2, 8, 1, 3, 1], stack: 'B', label: 'Series B2' },
{ data: [10, 6, 5, 8, 9], label: 'Series C1' },
]}
width={600}
height={350}
Expand Down
10 changes: 5 additions & 5 deletions docs/data/charts/bars/StackBars.tsx.preview
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<BarChart
series={[
{ data: [3, 4, 1, 6, 5], stack: 'A', label: 'series A1' },
{ data: [4, 3, 1, 5, 8], stack: 'A', label: 'series A2' },
{ data: [4, 2, 5, 4, 1], stack: 'B', label: 'series B1' },
{ data: [2, 8, 1, 3, 1], stack: 'B', label: 'series B2' },
{ data: [10, 6, 5, 8, 9], label: 'series C1' },
{ data: [3, 4, 1, 6, 5], stack: 'A', label: 'Series A1' },
{ data: [4, 3, 1, 5, 8], stack: 'A', label: 'Series A2' },
{ data: [4, 2, 5, 4, 1], stack: 'B', label: 'Series B1' },
{ data: [2, 8, 1, 3, 1], stack: 'B', label: 'Series B2' },
{ data: [10, 6, 5, 8, 9], label: 'Series C1' },
]}
width={600}
height={350}
Expand Down
4 changes: 2 additions & 2 deletions docs/data/charts/legend/BasicLegend.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export default function BasicLegend() {
return (
<ScatterChart
series={[
{ type: 'scatter', label: 'var A', data: data.slice(0, 25) },
{ type: 'scatter', label: 'var B', data: data.slice(25) },
{ type: 'scatter', label: 'Var A', data: data.slice(0, 25) },
{ type: 'scatter', label: 'Var B', data: data.slice(25) },
]}
width={400}
height={300}
Expand Down
4 changes: 2 additions & 2 deletions docs/data/charts/legend/BasicLegend.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ export default function BasicLegend() {
return (
<ScatterChart
series={[
{ type: 'scatter', label: 'var A', data: data.slice(0, 25) },
{ type: 'scatter', label: 'var B', data: data.slice(25) },
{ type: 'scatter', label: 'Var A', data: data.slice(0, 25) },
{ type: 'scatter', label: 'Var B', data: data.slice(25) },
]}
width={400}
height={300}
Expand Down
4 changes: 2 additions & 2 deletions docs/data/charts/legend/BasicLegend.tsx.preview
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<ScatterChart
series={[
{ type: 'scatter', label: 'var A', data: data.slice(0, 25) },
{ type: 'scatter', label: 'var B', data: data.slice(25) },
{ type: 'scatter', label: 'Var A', data: data.slice(0, 25) },
{ type: 'scatter', label: 'Var B', data: data.slice(25) },
]}
width={400}
height={300}
Expand Down
102 changes: 0 additions & 102 deletions docs/data/charts/legend/DimensionsNoSnap.js

This file was deleted.

Loading

0 comments on commit 13a9efd

Please sign in to comment.