@automattic/charts 1.2.1 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/dist/index.cjs +5013 -4565
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +108 -90
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +120 -64
- package/dist/index.d.ts +120 -64
- package/dist/index.js +5032 -4584
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/charts/area-chart/area-chart.module.scss +23 -0
- package/src/charts/area-chart/area-chart.tsx +444 -0
- package/src/charts/area-chart/index.ts +2 -0
- package/src/charts/area-chart/private/index.ts +2 -0
- package/src/charts/area-chart/private/overlays.tsx +123 -0
- package/src/charts/area-chart/private/validate-data.ts +31 -0
- package/src/charts/area-chart/test/area-chart.test.tsx +264 -0
- package/src/charts/area-chart/types.ts +51 -0
- package/src/charts/line-chart/index.ts +1 -1
- package/src/charts/line-chart/line-chart.tsx +8 -118
- package/src/charts/private/time-axis.ts +106 -0
- package/src/components/legend/legend.tsx +1 -0
- package/src/index.ts +2 -0
- package/src/types.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.3.0] - 2026-05-04
|
|
9
|
+
### Added
|
|
10
|
+
- Charts: Add AreaChart component for stacked and overlapping area visualisations. [#48388]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Internal: No longer require automattic/jetpack-changelogger as a per-project dev dependency. [#48225]
|
|
14
|
+
|
|
8
15
|
## [1.2.1] - 2026-04-27
|
|
9
16
|
### Changed
|
|
10
17
|
- Update package dependencies. [#48302]
|
|
@@ -809,6 +816,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
809
816
|
- Fixed lints following ESLint rule changes for TS [#40584]
|
|
810
817
|
- Fixing a bug in Chart storybook data. [#40640]
|
|
811
818
|
|
|
819
|
+
[1.3.0]: https://github.com/Automattic/charts/compare/v1.2.1...v1.3.0
|
|
812
820
|
[1.2.1]: https://github.com/Automattic/charts/compare/v1.2.0...v1.2.1
|
|
813
821
|
[1.2.0]: https://github.com/Automattic/charts/compare/v1.1.1...v1.2.0
|
|
814
822
|
[1.1.1]: https://github.com/Automattic/charts/compare/v1.1.0...v1.1.1
|