@automattic/charts 0.53.2 → 0.53.3
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 +5 -0
- package/package.json +3 -4
- package/src/charts/bar-chart/test/bar-chart.test.tsx +0 -4
- package/src/charts/bar-list-chart/test/bar-list-chart.test.tsx +0 -4
- package/src/charts/geo-chart/test/geo-chart.test.tsx +0 -4
- package/src/charts/line-chart/test/line-chart-annotation.test.tsx +0 -4
- package/src/charts/line-chart/test/line-chart.test.tsx +0 -3
- package/src/charts/pie-chart/test/pie-chart.test.tsx +0 -4
- package/src/charts/sparkline/test/sparkline.test.tsx +0 -4
- package/src/utils/test/get-longest-tick-width.test.ts +0 -3
- package/src/utils/test/get-styles.test.ts +0 -3
- package/src/utils/test/is-safari.test.ts +0 -3
- package/src/utils/test/resolve-css-var.test.ts +0 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,10 @@ 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
|
+
## [0.53.3] - 2026-01-14
|
|
9
|
+
### Changed
|
|
10
|
+
- Update package dependencies. [#46552]
|
|
11
|
+
|
|
8
12
|
## [0.53.2] - 2026-01-07
|
|
9
13
|
### Changed
|
|
10
14
|
- Update package dependencies. [#46456]
|
|
@@ -624,6 +628,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
624
628
|
- Fixed lints following ESLint rule changes for TS [#40584]
|
|
625
629
|
- Fixing a bug in Chart storybook data. [#40640]
|
|
626
630
|
|
|
631
|
+
[0.53.3]: https://github.com/Automattic/charts/compare/v0.53.2...v0.53.3
|
|
627
632
|
[0.53.2]: https://github.com/Automattic/charts/compare/v0.53.1...v0.53.2
|
|
628
633
|
[0.53.1]: https://github.com/Automattic/charts/compare/v0.53.0...v0.53.1
|
|
629
634
|
[0.53.0]: https://github.com/Automattic/charts/compare/v0.52.0...v0.53.0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@automattic/charts",
|
|
3
|
-
"version": "0.53.
|
|
3
|
+
"version": "0.53.3",
|
|
4
4
|
"description": "Display charts within Automattic products.",
|
|
5
5
|
"homepage": "https://github.com/Automattic/jetpack/tree/HEAD/projects/js-packages/charts/#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -181,7 +181,7 @@
|
|
|
181
181
|
"typecheck": "tsc --noEmit"
|
|
182
182
|
},
|
|
183
183
|
"dependencies": {
|
|
184
|
-
"@automattic/number-formatters": "^1.0.
|
|
184
|
+
"@automattic/number-formatters": "^1.0.16",
|
|
185
185
|
"@babel/runtime": "7.28.4",
|
|
186
186
|
"@react-spring/web": "9.7.5",
|
|
187
187
|
"@visx/annotation": "^3.12.0",
|
|
@@ -228,13 +228,12 @@
|
|
|
228
228
|
"esbuild": "0.25.9",
|
|
229
229
|
"esbuild-sass-plugin": "^3.1.0",
|
|
230
230
|
"jest": "30.2.0",
|
|
231
|
-
"jest-environment-jsdom": "30.2.0",
|
|
232
231
|
"jest-extended": "7.0.0",
|
|
233
232
|
"postcss": "8.5.6",
|
|
234
233
|
"postcss-modules": "6.0.1",
|
|
235
234
|
"react": "18.3.1",
|
|
236
235
|
"react-dom": "18.3.1",
|
|
237
|
-
"sass-embedded": "1.
|
|
236
|
+
"sass-embedded": "1.97.2",
|
|
238
237
|
"storybook": "10.1.10",
|
|
239
238
|
"tsup": "8.5.0",
|
|
240
239
|
"typescript": "5.9.3"
|