@trackunit/react-chart-components 1.7.148 → 1.7.152

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/index.cjs.js CHANGED
@@ -382,7 +382,7 @@ const DonutChart = ({ data, size = "full", loading = false, onClick, className,
382
382
  selectedOffset: 8,
383
383
  itemStyle: {
384
384
  borderColor: "#ffffff",
385
- borderWidth: 2,
385
+ borderWidth: size === "compact" ? 1 : 2,
386
386
  },
387
387
  avoidLabelOverlap: false,
388
388
  label: {
package/index.esm.js CHANGED
@@ -361,7 +361,7 @@ const DonutChart = ({ data, size = "full", loading = false, onClick, className,
361
361
  selectedOffset: 8,
362
362
  itemStyle: {
363
363
  borderColor: "#ffffff",
364
- borderWidth: 2,
364
+ borderWidth: size === "compact" ? 1 : 2,
365
365
  },
366
366
  avoidLabelOverlap: false,
367
367
  label: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-chart-components",
3
- "version": "1.7.148",
3
+ "version": "1.7.152",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -9,12 +9,12 @@
9
9
  "dependencies": {
10
10
  "echarts": "5.6.0",
11
11
  "react": "19.0.0",
12
- "@trackunit/date-and-time-utils": "1.7.106",
13
- "@trackunit/react-date-and-time-hooks": "1.7.138",
14
- "@trackunit/ui-design-tokens": "1.7.106",
15
- "@trackunit/shared-utils": "1.9.106",
16
- "@trackunit/css-class-variance-utilities": "1.7.106",
17
- "@trackunit/react-components": "1.10.82"
12
+ "@trackunit/date-and-time-utils": "1.7.107",
13
+ "@trackunit/react-date-and-time-hooks": "1.7.142",
14
+ "@trackunit/ui-design-tokens": "1.7.107",
15
+ "@trackunit/shared-utils": "1.9.107",
16
+ "@trackunit/css-class-variance-utilities": "1.7.107",
17
+ "@trackunit/react-components": "1.10.83"
18
18
  },
19
19
  "module": "./index.esm.js",
20
20
  "main": "./index.cjs.js",