@automattic/charts 1.5.3 → 1.6.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 +8969 -9570
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +315 -202
- package/dist/index.d.cts +1246 -1183
- package/dist/index.d.ts +1247 -1184
- package/dist/index.js +8548 -9570
- package/dist/index.js.map +1 -1
- package/dist/visx/group/index.cjs +8 -8
- package/dist/visx/group/index.d.cts +2 -3
- package/dist/visx/group/index.d.ts +2 -3
- package/dist/visx/group/index.js +1 -7
- package/dist/visx/legend/index.cjs +20 -10
- package/dist/visx/legend/index.d.cts +2 -1
- package/dist/visx/legend/index.d.ts +2 -1
- package/dist/visx/legend/index.js +2 -10
- package/dist/visx/text/index.cjs +20 -12
- package/dist/visx/text/index.d.cts +2 -1
- package/dist/visx/text/index.d.ts +2 -1
- package/dist/visx/text/index.js +2 -12
- package/package.json +11 -18
- package/src/charts/leaderboard-chart/leaderboard-chart.module.scss +99 -0
- package/src/charts/leaderboard-chart/leaderboard-chart.tsx +33 -5
- package/src/charts/leaderboard-chart/test/leaderboard-chart.test.tsx +35 -1
- package/src/types.ts +15 -1
- package/dist/chunk-5WRI5ZAA.js +0 -31
- package/dist/chunk-5WRI5ZAA.js.map +0 -1
- package/dist/chunk-7OZEQ5HE.cjs +0 -9
- package/dist/chunk-7OZEQ5HE.cjs.map +0 -1
- package/dist/chunk-DZUJEN5N.cjs +0 -31
- package/dist/chunk-DZUJEN5N.cjs.map +0 -1
- package/dist/chunk-NFRB2POF.js +0 -9
- package/dist/chunk-NFRB2POF.js.map +0 -1
- package/dist/index.css.map +0 -1
- package/dist/visx/group/index.cjs.map +0 -1
- package/dist/visx/group/index.js.map +0 -1
- package/dist/visx/legend/index.cjs.map +0 -1
- package/dist/visx/legend/index.js.map +0 -1
- package/dist/visx/text/index.cjs.map +0 -1
- package/dist/visx/text/index.js.map +0 -1
- package/tsup.config.ts +0 -46
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.6.0] - 2026-06-22
|
|
9
|
+
### Added
|
|
10
|
+
- Allow Leaderboard items to be made interactive via a per-entry onClick, rendering the row as a keyboard-accessible button with a hover chevron. [#49733]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Update package dependencies. [#49594] [#49631] [#49691] [#49757]
|
|
14
|
+
|
|
8
15
|
## [1.5.3] - 2026-06-10
|
|
9
16
|
### Changed
|
|
10
17
|
- Update package dependencies. [#49273]
|
|
@@ -863,6 +870,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
863
870
|
- Fixed lints following ESLint rule changes for TS [#40584]
|
|
864
871
|
- Fixing a bug in Chart storybook data. [#40640]
|
|
865
872
|
|
|
873
|
+
[1.6.0]: https://github.com/Automattic/charts/compare/v1.5.3...v1.6.0
|
|
866
874
|
[1.5.3]: https://github.com/Automattic/charts/compare/v1.5.2...v1.5.3
|
|
867
875
|
[1.5.2]: https://github.com/Automattic/charts/compare/v1.5.1...v1.5.2
|
|
868
876
|
[1.5.1]: https://github.com/Automattic/charts/compare/v1.5.0...v1.5.1
|