@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 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.2",
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.15",
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.87.0",
236
+ "sass-embedded": "1.97.2",
238
237
  "storybook": "10.1.10",
239
238
  "tsup": "8.5.0",
240
239
  "typescript": "5.9.3"
@@ -1,7 +1,3 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
-
5
1
  import { render, screen } from '@testing-library/react';
6
2
  import userEvent from '@testing-library/user-event';
7
3
  import { GlobalChartsProvider } from '../../../providers';
@@ -1,7 +1,3 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
-
5
1
  import { render, screen } from '@testing-library/react';
6
2
  import {
7
3
  marketingChannelsComparison as salesByChannel,
@@ -1,7 +1,3 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
-
5
1
  import { render, screen } from '@testing-library/react';
6
2
  import { GlobalChartsProvider } from '../../../providers';
7
3
  import GeoChart, { GeoChartUnresponsive } from '../geo-chart';
@@ -1,7 +1,3 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
-
5
1
  import { getLabelPosition } from '../private/line-chart-annotation';
6
2
 
7
3
  describe( 'LineChartAnnotation', () => {
@@ -1,7 +1,4 @@
1
1
  /* eslint-disable react/jsx-no-bind */
2
- /**
3
- * @jest-environment jsdom
4
- */
5
2
 
6
3
  import { render, screen, waitFor } from '@testing-library/react';
7
4
  import userEvent from '@testing-library/user-event';
@@ -1,7 +1,3 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
-
5
1
  import { render, screen, waitFor } from '@testing-library/react';
6
2
  import userEvent from '@testing-library/user-event';
7
3
  import { GlobalChartsProvider } from '../../../providers';
@@ -1,7 +1,3 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
-
5
1
  /* eslint-disable testing-library/no-container, testing-library/no-node-access */
6
2
 
7
3
  import { render, screen } from '@testing-library/react';
@@ -1,6 +1,3 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
1
  import { getStringWidth } from '@visx/text';
5
2
  import { getLongestTickWidth } from '../get-longest-tick-width';
6
3
 
@@ -1,6 +1,3 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
1
  import { ChartTheme } from '../../types';
5
2
  import { getSeriesLineStyles, getSeriesStroke, getItemShapeStyles } from '../get-styles';
6
3
 
@@ -1,6 +1,3 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
1
  import { isSafari } from '../is-safari';
5
2
 
6
3
  describe( 'isSafari', () => {
@@ -1,6 +1,3 @@
1
- /**
2
- * @jest-environment jsdom
3
- */
4
1
  import { resolveCssVariable } from '../resolve-css-var';
5
2
 
6
3
  describe( 'resolveCssVariable', () => {