@mui/x-charts-pro 8.9.2 → 8.10.1

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.
Files changed (36) hide show
  1. package/BarChartPro/BarChartPro.js +20 -0
  2. package/CHANGELOG.md +217 -6
  3. package/ChartDataProviderPro/ChartDataProviderPro.js +1 -1
  4. package/FunnelChart/FunnelChart.js +2 -2
  5. package/FunnelChart/curves/bump.js +10 -11
  6. package/FunnelChart/curves/linear.js +16 -17
  7. package/FunnelChart/curves/pyramid.js +15 -16
  8. package/FunnelChart/curves/step-pyramid.js +15 -16
  9. package/FunnelChart/curves/step.js +7 -8
  10. package/FunnelChart/funnelSlots.types.d.ts +8 -2
  11. package/FunnelChart/index.d.ts +5 -1
  12. package/FunnelChart/index.js +14 -7
  13. package/Heatmap/Heatmap.js +10 -0
  14. package/LineChartPro/LineChartPro.js +20 -0
  15. package/ScatterChartPro/ScatterChartPro.d.ts +8 -1
  16. package/ScatterChartPro/ScatterChartPro.js +22 -2
  17. package/esm/BarChartPro/BarChartPro.js +20 -0
  18. package/esm/ChartDataProviderPro/ChartDataProviderPro.js +1 -1
  19. package/esm/FunnelChart/FunnelChart.js +2 -2
  20. package/esm/FunnelChart/curves/bump.js +10 -11
  21. package/esm/FunnelChart/curves/linear.js +16 -17
  22. package/esm/FunnelChart/curves/pyramid.js +15 -16
  23. package/esm/FunnelChart/curves/step-pyramid.js +15 -16
  24. package/esm/FunnelChart/curves/step.js +7 -8
  25. package/esm/FunnelChart/funnelSlots.types.d.ts +8 -2
  26. package/esm/FunnelChart/index.d.ts +5 -1
  27. package/esm/FunnelChart/index.js +7 -1
  28. package/esm/Heatmap/Heatmap.js +10 -0
  29. package/esm/LineChartPro/LineChartPro.js +20 -0
  30. package/esm/ScatterChartPro/ScatterChartPro.d.ts +8 -1
  31. package/esm/ScatterChartPro/ScatterChartPro.js +22 -2
  32. package/esm/index.js +1 -1
  33. package/esm/internals/plugins/allPlugins.d.ts +2 -2
  34. package/index.js +1 -1
  35. package/internals/plugins/allPlugins.d.ts +2 -2
  36. package/package.json +18 -20
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-charts-pro",
3
- "version": "8.9.2",
3
+ "version": "8.10.1",
4
4
  "author": "MUI Team",
5
5
  "description": "The Pro plan edition of the MUI X Charts components.",
6
6
  "main": "./index.js",
@@ -29,14 +29,14 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@babel/runtime": "^7.28.2",
32
- "@mui/utils": "^7.2.0",
32
+ "@mui/utils": "^7.3.1",
33
33
  "clsx": "^2.1.1",
34
34
  "prop-types": "^15.8.1",
35
- "@mui/x-charts": "8.9.2",
36
- "@mui/x-internals": "8.9.2",
37
- "@mui/x-license": "8.9.2",
35
+ "@mui/x-charts": "8.10.1",
38
36
  "@mui/x-charts-vendor": "8.6.0",
39
- "@mui/x-internal-gestures": "0.2.2"
37
+ "@mui/x-internal-gestures": "0.2.4",
38
+ "@mui/x-internals": "8.10.0",
39
+ "@mui/x-license": "8.10.1"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "@emotion/react": "^11.9.0",
@@ -60,32 +60,30 @@
60
60
  "engines": {
61
61
  "node": ">=14.0.0"
62
62
  },
63
- "private": false,
64
- "module": "./esm/index.js",
63
+ "type": "commonjs",
64
+ "types": "./index.d.ts",
65
65
  "exports": {
66
66
  "./package.json": "./package.json",
67
67
  ".": {
68
- "require": {
69
- "types": "./index.d.ts",
70
- "default": "./index.js"
71
- },
72
68
  "import": {
73
69
  "types": "./esm/index.d.ts",
74
70
  "default": "./esm/index.js"
71
+ },
72
+ "require": {
73
+ "types": "./index.d.ts",
74
+ "default": "./index.js"
75
75
  }
76
76
  },
77
77
  "./*": {
78
- "require": {
79
- "types": "./*/index.d.ts",
80
- "default": "./*/index.js"
81
- },
82
78
  "import": {
83
79
  "types": "./esm/*/index.d.ts",
84
80
  "default": "./esm/*/index.js"
81
+ },
82
+ "require": {
83
+ "types": "./*/index.d.ts",
84
+ "default": "./*/index.js"
85
85
  }
86
86
  },
87
- "./esm": null,
88
- "./modern": null
89
- },
90
- "types": "./index.d.ts"
87
+ "./esm": null
88
+ }
91
89
  }