Skip to content

Commit 4ce15b0

Browse files
fix(deps): update dependency recharts to v2.14.1 (#6684)
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [recharts](https://redirect.github.com/recharts/recharts) | [`2.13.3` -> `2.14.1`](https://renovatebot.com/diffs/npm/recharts/2.13.3/2.14.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/recharts/2.14.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/recharts/2.14.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/recharts/2.13.3/2.14.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/recharts/2.13.3/2.14.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>recharts/recharts (recharts)</summary> ### [`v2.14.1`](https://redirect.github.com/recharts/recharts/releases/tag/v2.14.1) [Compare Source](https://redirect.github.com/recharts/recharts/compare/v2.14.0...v2.14.1) ##### What's Changed ##### Fix - `X/YAxis`: omit unused/accidentally added (in 2.13) `ref` prop from axis types in [https://github.com/recharts/recharts/pull/5295](https://redirect.github.com/recharts/recharts/pull/5295). Resolves [https://github.com/recharts/recharts/issues/5294](https://redirect.github.com/recharts/recharts/issues/5294) **Full Changelog**: recharts/recharts@v2.14.0...v2.14.1 ### [`v2.14.0`](https://redirect.github.com/recharts/recharts/releases/tag/v2.14.0) [Compare Source](https://redirect.github.com/recharts/recharts/compare/v2.13.3...v2.14.0) #### What's Changed Small release to get new top level chart events out there. Still working on 3.x, a little slower right now because of the holidays. #### Feat - `Area`/`Line`/`Bar`/`Scatter`/`Pie`/`Radar`/`RadialBar`/`Funnel` Chart components: add support for top level `onContextMenu` and `onDoubleClick` events [#&#8203;5254](https://redirect.github.com/recharts/recharts/issues/5254) by [@&#8203;abarreau](https://redirect.github.com/abarreau) in [https://github.com/recharts/recharts/pull/5255](https://redirect.github.com/recharts/recharts/pull/5255) #### Fix ##### Typescript fixes - `LabelList`: `dataKey` prop for LabelList should accept any object by [@&#8203;ckifer](https://redirect.github.com/ckifer) in [https://github.com/recharts/recharts/pull/5252](https://redirect.github.com/recharts/recharts/pull/5252) - `Pie`: `PieSectorDataItem.payload` should be an object rather than an array by [@&#8203;BTOdell](https://redirect.github.com/BTOdell) in [https://github.com/recharts/recharts/pull/5263](https://redirect.github.com/recharts/recharts/pull/5263) #### New Contributors - [@&#8203;abarreau](https://redirect.github.com/abarreau) made their first contribution in [https://github.com/recharts/recharts/pull/5255](https://redirect.github.com/recharts/recharts/pull/5255) - [@&#8203;BTOdell](https://redirect.github.com/BTOdell) made their first contribution in [https://github.com/recharts/recharts/pull/5263](https://redirect.github.com/recharts/recharts/pull/5263) **Full Changelog**: recharts/recharts@v2.13.3...v2.14.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, 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 was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/SAP/ui5-webcomponents-react). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS40Mi40IiwidXBkYXRlZEluVmVyIjoiMzkuNDIuNCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Lukas Harbarth <[email protected]>
1 parent fba512c commit 4ce15b0

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

packages/charts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"dependencies": {
3737
"clsx": "2.1.1",
3838
"react-content-loader": "7.0.2",
39-
"recharts": "2.13.3"
39+
"recharts": "2.14.1"
4040
},
4141
"peerDependencies": {
4242
"@ui5/webcomponents-react": "~2.4.0",

packages/charts/src/interfaces/ICartesianChartConfig.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,23 +61,23 @@ export interface ICartesianChartConfig {
6161
*
6262
* __Note:__ It is possible to overwrite internally used props. Please use with caution!
6363
*/
64-
yAxisConfig?: Omit<YAxisProps, 'mirror' | 'ref'>;
64+
yAxisConfig?: Omit<YAxisProps, 'mirror'>;
6565
/**
6666
* Defines possible configurations for the `XAxis`.
6767
*
6868
* __Note:__ It is possible to overwrite internally used props. Please use with caution!
6969
*/
70-
xAxisConfig?: Omit<XAxisProps, 'mirror' | 'ref'>;
70+
xAxisConfig?: Omit<XAxisProps, 'mirror'>;
7171
/**
7272
* Defines possible configurations for the second `YAxis`.
7373
*
7474
* __Note:__ It is possible to overwrite internally used props. Please use with caution!
7575
*/
76-
secondYAxisConfig?: Omit<YAxisProps, 'mirror' | 'ref'>;
76+
secondYAxisConfig?: Omit<YAxisProps, 'mirror'>;
7777
/**
7878
* Defines possible configurations for the second `YAxis`.
7979
*
8080
* __Note:__ It is possible to overwrite internally used props. Please use with caution!
8181
*/
82-
secondXAxisConfig?: Omit<XAxisProps, 'mirror' | 'ref'>;
82+
secondXAxisConfig?: Omit<XAxisProps, 'mirror'>;
8383
}

yarn.lock

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5642,7 +5642,7 @@ __metadata:
56425642
dependencies:
56435643
clsx: "npm:2.1.1"
56445644
react-content-loader: "npm:7.0.2"
5645-
recharts: "npm:2.13.3"
5645+
recharts: "npm:2.14.1"
56465646
peerDependencies:
56475647
"@ui5/webcomponents-react": ~2.4.0
56485648
"@ui5/webcomponents-react-base": ~2.4.0
@@ -18351,9 +18351,9 @@ __metadata:
1835118351
languageName: node
1835218352
linkType: hard
1835318353

18354-
"recharts@npm:2.13.3":
18355-
version: 2.13.3
18356-
resolution: "recharts@npm:2.13.3"
18354+
"recharts@npm:2.14.1":
18355+
version: 2.14.1
18356+
resolution: "recharts@npm:2.14.1"
1835718357
dependencies:
1835818358
clsx: "npm:^2.0.0"
1835918359
eventemitter3: "npm:^4.0.1"
@@ -18366,7 +18366,7 @@ __metadata:
1836618366
peerDependencies:
1836718367
react: ^16.0.0 || ^17.0.0 || ^18.0.0
1836818368
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
18369-
checksum: 10c0/67c516cd142da0e5968cf9b723c1bc08c2324ff4c41952d623dfce06e8c13751e1ef885b2e39aaeb5e32595566c8d91633328850adee70ad53bc8685adff456d
18369+
checksum: 10c0/dfc1840ee03a5a51d08e77b83e2120f6723ab5349fad012d3a29ea0299da0bf1f30d1955fad60aec830d29f44d6f7fd4d6f41a5017094a40c03429dfa8461ef5
1837018370
languageName: node
1837118371
linkType: hard
1837218372

0 commit comments

Comments
 (0)