Releases: rsuite/charts
Releases · rsuite/charts
v4.1.1
v4.1.0
v4.0.1
4.0.1 (2022-02-22)
Bug Fixes
What's Changed
- build(deps): bump ssri from 6.0.1 to 6.0.2 by @dependabot in #39
- build(deps): bump ua-parser-js from 0.7.22 to 0.7.28 by @dependabot in #40
- build(deps): bump hosted-git-info from 2.8.8 to 2.8.9 by @dependabot in #41
- build(deps): bump browserslist from 4.16.3 to 4.16.6 by @dependabot in #42
- build(deps): bump dns-packet from 1.3.1 to 1.3.4 by @dependabot in #43
- build(deps): bump ws from 6.2.1 to 6.2.2 by @dependabot in #44
- build(deps): bump postcss from 7.0.35 to 7.0.36 by @dependabot in #45
- build(deps): bump path-parse from 1.0.6 to 1.0.7 by @dependabot in #47
- build(deps): bump url-parse from 1.5.1 to 1.5.3 by @dependabot in #50
- fix(Chart): 修复地图,饼图传递 locale 到 series by @MarvelSQ in #53
- Fix error import for funnel by @hiyangguo in #55
- Fix error import for scatter by @hiyangguo in #56
- build(deps): bump follow-redirects from 1.13.3 to 1.14.7 by @dependabot in #57
- build(deps-dev): bump marked from 0.7.0 to 4.0.10 by @dependabot in #58
- build(deps): bump tmpl from 1.0.4 to 1.0.5 by @dependabot in #54
- build(deps): bump url-parse from 1.5.3 to 1.5.7 by @dependabot in #61
- Fix some bug in by @hiyangguo in #60
- build(deps): bump follow-redirects from 1.14.7 to 1.14.8 by @dependabot in #59
New Contributors
Full Changelog: v4.0.0...v4.0.1
4.0.0 (March 5, 2021)
Bugfixes
- Fix type keys for
<Scatter>
<Tree>
and<Treemap>
.
4.0.0 RC+2 (March 3, 2021)
Changes
- Do not render empty message when chart is in loading state.
4.0.0 RC+1 (Nov 7, 2020)
Bugfixes
- Fix
ref
on charts components. - Fix runtime
__DEV__ is not defined
. - Fix props conflicting with ECharts options on
<Bars>
<Line>
<XAxis>
<YAxis>
.
4.0.0 RC (Dec 6, 2020)
Features
- Import everything from index.
import { LineChart } from '@rsuite/charts';
BREAKING CHANGES
- Import on demand has been dropped
import LineChart from '@rsuite/charts/lib/charts/LineChart'; // ⚠️ Causes error!
Other
- Migrate codebase to TypeScript
3.2.5 (Nov 15, 2020)
Bugfixes
- Fix
<DataZoom>
rendering multipledataZoom
options. (537e6b5)
v3.2.4
3.1.0
- Add
components/Radar
,series/RadarLine
for creating radar charts, along with acharts/RadarChart
out of the box. - Add
series/Funnel
for creating funnel charts, along withcharts/FunnelChart
. - Add
charts/ScatterChart
for easily creating scatter charts.