@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.
- package/BarChartPro/BarChartPro.js +20 -0
- package/CHANGELOG.md +217 -6
- package/ChartDataProviderPro/ChartDataProviderPro.js +1 -1
- package/FunnelChart/FunnelChart.js +2 -2
- package/FunnelChart/curves/bump.js +10 -11
- package/FunnelChart/curves/linear.js +16 -17
- package/FunnelChart/curves/pyramid.js +15 -16
- package/FunnelChart/curves/step-pyramid.js +15 -16
- package/FunnelChart/curves/step.js +7 -8
- package/FunnelChart/funnelSlots.types.d.ts +8 -2
- package/FunnelChart/index.d.ts +5 -1
- package/FunnelChart/index.js +14 -7
- package/Heatmap/Heatmap.js +10 -0
- package/LineChartPro/LineChartPro.js +20 -0
- package/ScatterChartPro/ScatterChartPro.d.ts +8 -1
- package/ScatterChartPro/ScatterChartPro.js +22 -2
- package/esm/BarChartPro/BarChartPro.js +20 -0
- package/esm/ChartDataProviderPro/ChartDataProviderPro.js +1 -1
- package/esm/FunnelChart/FunnelChart.js +2 -2
- package/esm/FunnelChart/curves/bump.js +10 -11
- package/esm/FunnelChart/curves/linear.js +16 -17
- package/esm/FunnelChart/curves/pyramid.js +15 -16
- package/esm/FunnelChart/curves/step-pyramid.js +15 -16
- package/esm/FunnelChart/curves/step.js +7 -8
- package/esm/FunnelChart/funnelSlots.types.d.ts +8 -2
- package/esm/FunnelChart/index.d.ts +5 -1
- package/esm/FunnelChart/index.js +7 -1
- package/esm/Heatmap/Heatmap.js +10 -0
- package/esm/LineChartPro/LineChartPro.js +20 -0
- package/esm/ScatterChartPro/ScatterChartPro.d.ts +8 -1
- package/esm/ScatterChartPro/ScatterChartPro.js +22 -2
- package/esm/index.js +1 -1
- package/esm/internals/plugins/allPlugins.d.ts +2 -2
- package/index.js +1 -1
- package/internals/plugins/allPlugins.d.ts +2 -2
- 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.
|
|
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.
|
|
32
|
+
"@mui/utils": "^7.3.1",
|
|
33
33
|
"clsx": "^2.1.1",
|
|
34
34
|
"prop-types": "^15.8.1",
|
|
35
|
-
"@mui/x-charts": "8.
|
|
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.
|
|
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
|
-
"
|
|
64
|
-
"
|
|
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
|
-
|
|
89
|
-
},
|
|
90
|
-
"types": "./index.d.ts"
|
|
87
|
+
"./esm": null
|
|
88
|
+
}
|
|
91
89
|
}
|