@mui/x-charts 7.13.0 → 7.15.0

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 (751) hide show
  1. package/BarChart/BarChart.js +180 -183
  2. package/BarChart/BarClipPath.js +17 -25
  3. package/BarChart/BarElement.js +33 -43
  4. package/BarChart/BarLabel/BarLabel.d.ts +1 -1
  5. package/BarChart/BarLabel/BarLabel.js +25 -34
  6. package/BarChart/BarLabel/BarLabel.types.js +1 -5
  7. package/BarChart/BarLabel/BarLabelItem.js +31 -39
  8. package/BarChart/BarLabel/BarLabelPlot.js +13 -21
  9. package/BarChart/BarLabel/barLabelClasses.d.ts +1 -1
  10. package/BarChart/BarLabel/barLabelClasses.js +9 -19
  11. package/BarChart/BarLabel/getBarLabel.js +2 -9
  12. package/BarChart/BarLabel/index.js +2 -25
  13. package/BarChart/BarPlot.js +39 -46
  14. package/BarChart/checkScaleErrors.js +6 -12
  15. package/BarChart/extremums.js +45 -18
  16. package/BarChart/formatter.js +9 -16
  17. package/BarChart/getColor.js +1 -7
  18. package/BarChart/getRadius.js +2 -9
  19. package/BarChart/index.js +4 -49
  20. package/BarChart/legend.js +3 -9
  21. package/BarChart/package.json +2 -2
  22. package/BarChart/plugin.js +8 -15
  23. package/BarChart/types.js +1 -5
  24. package/BarChart/useBarChartProps.js +17 -25
  25. package/CHANGELOG.md +151 -2
  26. package/ChartContainer/ChartContainer.js +164 -172
  27. package/ChartContainer/index.js +1 -16
  28. package/ChartContainer/package.json +2 -2
  29. package/ChartContainer/useChartContainerProps.d.ts +8 -8
  30. package/ChartContainer/useChartContainerProps.js +13 -23
  31. package/ChartContainer/useDefaultizeAxis.d.ts +6 -5
  32. package/ChartContainer/useDefaultizeAxis.js +22 -21
  33. package/ChartsAxis/ChartsAxis.js +24 -32
  34. package/ChartsAxis/axisClasses.js +4 -11
  35. package/ChartsAxis/index.js +2 -27
  36. package/ChartsAxis/package.json +2 -2
  37. package/ChartsAxisHighlight/ChartsAxisHighlight.js +55 -51
  38. package/ChartsAxisHighlight/index.js +1 -16
  39. package/ChartsAxisHighlight/package.json +2 -2
  40. package/ChartsClipPath/ChartsClipPath.js +17 -25
  41. package/ChartsClipPath/index.js +1 -16
  42. package/ChartsClipPath/package.json +2 -2
  43. package/ChartsGrid/ChartsGrid.d.ts +1 -1
  44. package/ChartsGrid/ChartsGrid.js +38 -44
  45. package/ChartsGrid/chartsGridClasses.js +5 -13
  46. package/ChartsGrid/index.js +2 -27
  47. package/ChartsGrid/package.json +2 -2
  48. package/ChartsLegend/ChartsLegend.js +33 -41
  49. package/ChartsLegend/ContinuousColorLegend.js +66 -73
  50. package/ChartsLegend/DefaultChartsLegend.js +38 -46
  51. package/ChartsLegend/LegendPerItem.js +30 -39
  52. package/ChartsLegend/PiecewiseColorLegend.js +36 -44
  53. package/ChartsLegend/chartsLegend.types.js +1 -5
  54. package/ChartsLegend/chartsLegendClasses.js +4 -11
  55. package/ChartsLegend/index.js +6 -71
  56. package/ChartsLegend/legend.types.js +1 -5
  57. package/ChartsLegend/legendItemsPlacement.js +6 -13
  58. package/ChartsLegend/package.json +2 -2
  59. package/ChartsLegend/useAxis.js +6 -14
  60. package/ChartsLegend/utils.js +9 -16
  61. package/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +15 -23
  62. package/ChartsOnAxisClickHandler/index.js +1 -16
  63. package/ChartsOnAxisClickHandler/package.json +2 -2
  64. package/ChartsOverlay/ChartsLoadingOverlay.js +12 -21
  65. package/ChartsOverlay/ChartsNoDataOverlay.js +12 -21
  66. package/ChartsOverlay/ChartsOverlay.js +13 -23
  67. package/ChartsOverlay/index.js +3 -26
  68. package/ChartsOverlay/package.json +2 -2
  69. package/ChartsReferenceLine/ChartsReferenceLine.js +21 -29
  70. package/ChartsReferenceLine/ChartsXReferenceLine.js +22 -31
  71. package/ChartsReferenceLine/ChartsYReferenceLine.js +22 -31
  72. package/ChartsReferenceLine/chartsReferenceLineClasses.js +5 -13
  73. package/ChartsReferenceLine/common.js +6 -13
  74. package/ChartsReferenceLine/index.js +2 -27
  75. package/ChartsReferenceLine/package.json +2 -2
  76. package/{modern → ChartsSurface}/ChartsSurface.js +7 -3
  77. package/ChartsSurface/index.d.ts +1 -0
  78. package/ChartsSurface/index.js +1 -0
  79. package/ChartsSurface/package.json +6 -0
  80. package/ChartsText/ChartsText.js +18 -26
  81. package/ChartsText/index.js +1 -12
  82. package/ChartsText/package.json +2 -2
  83. package/ChartsTooltip/ChartsAxisTooltipContent.js +22 -30
  84. package/ChartsTooltip/ChartsItemTooltipContent.js +18 -26
  85. package/ChartsTooltip/ChartsTooltip.js +34 -42
  86. package/ChartsTooltip/ChartsTooltipTable.js +11 -16
  87. package/ChartsTooltip/DefaultChartsAxisTooltipContent.js +44 -52
  88. package/ChartsTooltip/DefaultChartsItemTooltipContent.js +32 -40
  89. package/ChartsTooltip/chartsTooltipClasses.js +4 -11
  90. package/ChartsTooltip/index.js +7 -82
  91. package/ChartsTooltip/package.json +2 -2
  92. package/ChartsTooltip/utils.js +9 -21
  93. package/ChartsVoronoiHandler/ChartsVoronoiHandler.js +29 -37
  94. package/ChartsVoronoiHandler/index.js +1 -16
  95. package/ChartsVoronoiHandler/package.json +2 -2
  96. package/ChartsXAxis/ChartsXAxis.js +90 -87
  97. package/ChartsXAxis/index.js +1 -16
  98. package/ChartsXAxis/package.json +2 -2
  99. package/ChartsYAxis/ChartsYAxis.js +78 -79
  100. package/ChartsYAxis/index.js +1 -16
  101. package/ChartsYAxis/package.json +2 -2
  102. package/Gauge/Gauge.js +52 -60
  103. package/Gauge/GaugeContainer.js +51 -59
  104. package/Gauge/GaugeProvider.js +17 -28
  105. package/Gauge/GaugeReferenceArc.js +11 -20
  106. package/Gauge/GaugeValueArc.js +11 -20
  107. package/Gauge/GaugeValueText.js +18 -26
  108. package/Gauge/gaugeClasses.js +6 -14
  109. package/Gauge/index.js +7 -87
  110. package/Gauge/package.json +2 -2
  111. package/Gauge/utils.js +2 -9
  112. package/LineChart/AnimatedArea.js +35 -44
  113. package/LineChart/AnimatedLine.js +36 -45
  114. package/LineChart/AreaElement.js +33 -43
  115. package/LineChart/AreaPlot.js +30 -38
  116. package/LineChart/LineChart.js +185 -188
  117. package/LineChart/LineElement.js +33 -43
  118. package/LineChart/LineHighlightElement.js +20 -30
  119. package/LineChart/LineHighlightPlot.js +28 -36
  120. package/LineChart/LinePlot.js +30 -38
  121. package/LineChart/MarkElement.js +40 -48
  122. package/LineChart/MarkPlot.js +33 -41
  123. package/LineChart/extremums.js +23 -15
  124. package/LineChart/formatter.js +9 -16
  125. package/LineChart/getColor.js +1 -7
  126. package/LineChart/index.js +11 -126
  127. package/LineChart/legend.js +3 -9
  128. package/LineChart/package.json +2 -2
  129. package/LineChart/plugin.js +8 -15
  130. package/LineChart/useLineChartProps.js +14 -22
  131. package/PieChart/PieArc.js +34 -44
  132. package/PieChart/PieArcLabel.js +30 -40
  133. package/PieChart/PieArcLabelPlot.js +59 -67
  134. package/PieChart/PieArcPlot.js +56 -64
  135. package/PieChart/PieChart.js +180 -183
  136. package/PieChart/PiePlot.js +29 -37
  137. package/PieChart/dataTransform/transition.js +2 -8
  138. package/PieChart/dataTransform/useTransformData.js +7 -16
  139. package/PieChart/formatter.js +10 -17
  140. package/PieChart/getColor.js +1 -7
  141. package/PieChart/getPieCoordinates.js +4 -10
  142. package/PieChart/index.js +7 -82
  143. package/PieChart/legend.js +3 -9
  144. package/PieChart/package.json +2 -2
  145. package/PieChart/plugin.js +5 -12
  146. package/ResponsiveChartContainer/ResizableContainer.js +2 -8
  147. package/ResponsiveChartContainer/ResponsiveChartContainer.js +151 -159
  148. package/ResponsiveChartContainer/index.js +1 -16
  149. package/ResponsiveChartContainer/package.json +2 -2
  150. package/ResponsiveChartContainer/useChartContainerDimensions.js +7 -17
  151. package/ResponsiveChartContainer/useResponsiveChartContainerProps.js +8 -16
  152. package/ScatterChart/Scatter.js +26 -34
  153. package/ScatterChart/ScatterChart.js +198 -201
  154. package/ScatterChart/ScatterPlot.js +21 -29
  155. package/ScatterChart/extremums.js +29 -21
  156. package/ScatterChart/formatter.js +3 -9
  157. package/ScatterChart/getColor.js +1 -7
  158. package/ScatterChart/index.js +3 -38
  159. package/ScatterChart/legend.js +3 -9
  160. package/ScatterChart/package.json +2 -2
  161. package/ScatterChart/plugin.js +8 -15
  162. package/ScatterChart/useScatterChartProps.js +10 -18
  163. package/SparkLineChart/SparkLineChart.js +163 -171
  164. package/SparkLineChart/index.js +1 -16
  165. package/SparkLineChart/package.json +2 -2
  166. package/colorPalettes/colorPalettes.js +9 -18
  167. package/colorPalettes/index.js +1 -16
  168. package/colorPalettes/package.json +2 -2
  169. package/constants/package.json +6 -0
  170. package/context/CartesianProvider/Cartesian.types.d.ts +59 -0
  171. package/context/CartesianProvider/CartesianContext.d.ts +1 -22
  172. package/context/CartesianProvider/CartesianContext.js +2 -10
  173. package/context/CartesianProvider/CartesianProvider.d.ts +1 -21
  174. package/context/CartesianProvider/CartesianProvider.js +19 -29
  175. package/context/CartesianProvider/computeValue.d.ts +18 -31
  176. package/context/CartesianProvider/computeValue.js +42 -52
  177. package/context/CartesianProvider/defaultizeAxis.d.ts +4 -4
  178. package/context/CartesianProvider/defaultizeAxis.js +6 -14
  179. package/context/CartesianProvider/getAxisExtremum.d.ts +3 -2
  180. package/context/CartesianProvider/getAxisExtremum.js +12 -13
  181. package/context/CartesianProvider/index.d.ts +1 -0
  182. package/context/CartesianProvider/index.js +8 -48
  183. package/context/CartesianProvider/useCartesianContext.d.ts +1 -1
  184. package/context/CartesianProvider/useCartesianContext.js +5 -14
  185. package/context/CartesianProvider/zoom.d.ts +10 -0
  186. package/context/CartesianProvider/zoom.js +19 -0
  187. package/context/DrawingProvider.d.ts +7 -2
  188. package/context/DrawingProvider.js +24 -27
  189. package/context/HighlightedProvider/HighlightedContext.js +2 -9
  190. package/context/HighlightedProvider/HighlightedProvider.js +24 -32
  191. package/context/HighlightedProvider/createIsFaded.js +2 -9
  192. package/context/HighlightedProvider/createIsHighlighted.js +2 -9
  193. package/context/HighlightedProvider/index.js +4 -49
  194. package/context/HighlightedProvider/useHighlighted.js +4 -11
  195. package/context/HighlightedProvider/useItemHighlighted.js +3 -9
  196. package/context/InteractionProvider.d.ts +2 -2
  197. package/context/InteractionProvider.js +13 -22
  198. package/context/PluginProvider/ColorProcessor.types.js +1 -5
  199. package/context/PluginProvider/ExtremumGetter.types.d.ts +11 -1
  200. package/context/PluginProvider/ExtremumGetter.types.js +1 -5
  201. package/context/PluginProvider/Plugin.types.js +1 -5
  202. package/context/PluginProvider/PluginContext.js +2 -10
  203. package/context/PluginProvider/PluginProvider.js +8 -15
  204. package/context/PluginProvider/SeriesFormatter.types.js +1 -5
  205. package/context/PluginProvider/index.js +10 -115
  206. package/context/PluginProvider/mergePlugins.d.ts +6 -6
  207. package/context/PluginProvider/mergePlugins.js +6 -13
  208. package/context/PluginProvider/useColorProcessor.js +4 -12
  209. package/context/PluginProvider/useSeriesFormatter.js +4 -12
  210. package/context/PluginProvider/useXExtremumGetter.js +4 -12
  211. package/context/PluginProvider/useYExtremumGetter.js +4 -12
  212. package/context/SeriesProvider/Series.types.js +1 -5
  213. package/context/SeriesProvider/SeriesContext.js +2 -10
  214. package/context/SeriesProvider/SeriesProvider.js +14 -21
  215. package/context/SeriesProvider/index.js +7 -48
  216. package/context/SeriesProvider/processSeries.js +6 -14
  217. package/context/ZAxisContextProvider.js +36 -45
  218. package/context/context.types.js +1 -5
  219. package/context/index.js +2 -27
  220. package/context/package.json +2 -2
  221. package/hooks/index.js +7 -115
  222. package/hooks/package.json +2 -2
  223. package/hooks/useAxis.js +5 -12
  224. package/hooks/useAxisEvents.js +20 -26
  225. package/hooks/useChartDimensions.js +5 -14
  226. package/hooks/useChartId.js +4 -12
  227. package/hooks/useColorScale.js +9 -19
  228. package/hooks/useDrawingArea.js +4 -12
  229. package/hooks/useInteractionItemProps.js +7 -16
  230. package/hooks/useMounted.js +4 -13
  231. package/hooks/useReducedMotion.js +6 -12
  232. package/hooks/useScale.js +8 -15
  233. package/hooks/useSeries.js +8 -19
  234. package/hooks/useSvgRef.js +4 -12
  235. package/hooks/useTicks.js +7 -16
  236. package/index.js +27 -292
  237. package/internals/SlotComponentPropsFromProps.js +1 -5
  238. package/internals/cleanId.js +1 -7
  239. package/internals/colorScale.js +8 -16
  240. package/internals/components/AxisSharedComponents.js +8 -15
  241. package/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +17 -27
  242. package/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +7 -15
  243. package/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +7 -15
  244. package/internals/components/ChartsAxesGradients/index.js +1 -16
  245. package/internals/configInit.js +1 -7
  246. package/internals/defaultizeColor.d.ts +16 -16
  247. package/internals/defaultizeColor.js +5 -12
  248. package/internals/defaultizeValueFormatter.js +3 -10
  249. package/internals/domUtils.d.ts +2 -0
  250. package/internals/domUtils.js +19 -15
  251. package/internals/geometry.js +1 -7
  252. package/internals/getCurve.js +11 -17
  253. package/internals/getLabel.js +1 -7
  254. package/internals/getPercentageValue.js +1 -7
  255. package/internals/getSVGPoint.js +1 -7
  256. package/internals/getScale.js +8 -14
  257. package/internals/getSymbol.js +1 -7
  258. package/internals/getWordsByLines.js +5 -12
  259. package/internals/index.d.ts +3 -0
  260. package/internals/index.js +40 -306
  261. package/internals/isBandScale.js +1 -7
  262. package/internals/isCartesian.js +4 -11
  263. package/internals/isDefined.js +1 -7
  264. package/internals/isInfinity.js +1 -7
  265. package/internals/notNull.js +1 -7
  266. package/internals/package.json +2 -2
  267. package/internals/stackSeries.js +16 -23
  268. package/internals/ts-generic.js +1 -5
  269. package/internals/useAnimatedPath.d.ts +1 -1
  270. package/internals/useAnimatedPath.js +21 -26
  271. package/internals/warning.js +2 -9
  272. package/models/axis.d.ts +4 -0
  273. package/models/axis.js +6 -8
  274. package/models/colorMapping.js +1 -5
  275. package/models/helpers.js +1 -5
  276. package/models/index.js +4 -38
  277. package/models/layout.js +1 -5
  278. package/models/package.json +2 -2
  279. package/models/seriesType/bar.js +1 -5
  280. package/models/seriesType/common.js +1 -5
  281. package/models/seriesType/config.js +1 -5
  282. package/models/seriesType/index.js +6 -61
  283. package/models/seriesType/line.js +1 -5
  284. package/models/seriesType/pie.js +1 -5
  285. package/models/seriesType/scatter.js +1 -5
  286. package/models/stacking.js +1 -5
  287. package/models/z-axis.js +1 -5
  288. package/modern/BarChart/BarChart.js +6 -1
  289. package/modern/BarChart/BarLabel/BarLabel.js +4 -4
  290. package/modern/BarChart/BarPlot.js +4 -3
  291. package/modern/BarChart/extremums.js +42 -7
  292. package/modern/ChartContainer/useChartContainerProps.js +1 -1
  293. package/modern/ChartContainer/useDefaultizeAxis.js +16 -5
  294. package/modern/ChartsAxisHighlight/ChartsAxisHighlight.js +23 -9
  295. package/modern/ChartsGrid/ChartsGrid.js +12 -10
  296. package/modern/ChartsLegend/ContinuousColorLegend.js +3 -2
  297. package/modern/ChartsLegend/LegendPerItem.js +5 -4
  298. package/{esm → modern/ChartsSurface}/ChartsSurface.js +7 -3
  299. package/modern/ChartsSurface/index.js +1 -0
  300. package/modern/ChartsTooltip/ChartsAxisTooltipContent.js +1 -1
  301. package/modern/ChartsXAxis/ChartsXAxis.js +14 -3
  302. package/modern/ChartsYAxis/ChartsYAxis.js +11 -4
  303. package/modern/LineChart/LineChart.js +6 -1
  304. package/modern/LineChart/MarkElement.js +4 -2
  305. package/modern/LineChart/extremums.js +20 -4
  306. package/modern/PieChart/PieChart.js +10 -5
  307. package/modern/ScatterChart/ScatterChart.js +6 -1
  308. package/modern/ScatterChart/extremums.js +26 -10
  309. package/modern/context/CartesianProvider/CartesianProvider.js +2 -5
  310. package/modern/context/CartesianProvider/computeValue.js +20 -23
  311. package/modern/context/CartesianProvider/getAxisExtremum.js +11 -5
  312. package/modern/context/CartesianProvider/index.js +1 -0
  313. package/modern/context/CartesianProvider/zoom.js +19 -0
  314. package/modern/context/DrawingProvider.js +11 -3
  315. package/modern/hooks/useAxisEvents.js +5 -2
  316. package/modern/index.js +1 -1
  317. package/modern/internals/domUtils.js +16 -3
  318. package/modern/internals/index.js +4 -0
  319. package/modern/internals/useAnimatedPath.js +17 -13
  320. package/modern/models/axis.js +5 -0
  321. package/modern/tests/firePointerEvent.js +35 -0
  322. package/node/BarChart/BarChart.js +356 -0
  323. package/node/BarChart/BarClipPath.js +50 -0
  324. package/node/BarChart/BarElement.js +119 -0
  325. package/node/BarChart/BarLabel/BarLabel.js +60 -0
  326. package/node/BarChart/BarLabel/BarLabel.types.js +5 -0
  327. package/node/BarChart/BarLabel/BarLabelItem.js +127 -0
  328. package/node/BarChart/BarLabel/BarLabelPlot.js +83 -0
  329. package/node/BarChart/BarLabel/barLabelClasses.js +29 -0
  330. package/{esm → node}/BarChart/BarLabel/getBarLabel.js +9 -2
  331. package/node/BarChart/BarLabel/index.js +25 -0
  332. package/{esm → node}/BarChart/BarPlot.js +47 -38
  333. package/{esm → node}/BarChart/checkScaleErrors.js +12 -6
  334. package/node/BarChart/extremums.js +83 -0
  335. package/{esm → node}/BarChart/formatter.js +16 -9
  336. package/{esm → node}/BarChart/getColor.js +7 -1
  337. package/{esm → node}/BarChart/getRadius.js +9 -2
  338. package/node/BarChart/index.js +49 -0
  339. package/{esm/LineChart → node/BarChart}/legend.js +9 -3
  340. package/node/BarChart/plugin.js +17 -0
  341. package/node/BarChart/types.js +5 -0
  342. package/{esm → node}/BarChart/useBarChartProps.js +25 -17
  343. package/node/ChartContainer/ChartContainer.js +258 -0
  344. package/node/ChartContainer/index.js +16 -0
  345. package/node/ChartContainer/useChartContainerProps.js +92 -0
  346. package/node/ChartContainer/useDefaultizeAxis.js +40 -0
  347. package/{esm → node}/ChartsAxis/ChartsAxis.js +32 -24
  348. package/node/ChartsAxis/axisClasses.js +12 -0
  349. package/node/ChartsAxis/index.js +27 -0
  350. package/node/ChartsAxisHighlight/ChartsAxisHighlight.js +144 -0
  351. package/node/ChartsAxisHighlight/index.js +16 -0
  352. package/node/ChartsClipPath/ChartsClipPath.js +59 -0
  353. package/node/ChartsClipPath/index.js +16 -0
  354. package/node/ChartsGrid/ChartsGrid.js +141 -0
  355. package/node/ChartsGrid/chartsGridClasses.js +14 -0
  356. package/node/ChartsGrid/index.js +27 -0
  357. package/node/ChartsLegend/ChartsLegend.js +114 -0
  358. package/{esm → node}/ChartsLegend/ContinuousColorLegend.js +74 -65
  359. package/node/ChartsLegend/DefaultChartsLegend.js +105 -0
  360. package/{esm → node}/ChartsLegend/LegendPerItem.js +40 -29
  361. package/{esm → node}/ChartsLegend/PiecewiseColorLegend.js +44 -36
  362. package/node/ChartsLegend/chartsLegend.types.js +5 -0
  363. package/node/ChartsLegend/chartsLegendClasses.js +12 -0
  364. package/node/ChartsLegend/index.js +71 -0
  365. package/node/ChartsLegend/legend.types.js +5 -0
  366. package/{esm → node}/ChartsLegend/legendItemsPlacement.js +13 -6
  367. package/node/ChartsLegend/useAxis.js +47 -0
  368. package/node/ChartsLegend/utils.js +23 -0
  369. package/{esm → node}/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +23 -15
  370. package/node/ChartsOnAxisClickHandler/index.js +16 -0
  371. package/node/ChartsOverlay/ChartsLoadingOverlay.js +43 -0
  372. package/node/ChartsOverlay/ChartsNoDataOverlay.js +43 -0
  373. package/node/ChartsOverlay/ChartsOverlay.js +41 -0
  374. package/node/ChartsOverlay/index.js +26 -0
  375. package/node/ChartsReferenceLine/ChartsReferenceLine.js +82 -0
  376. package/node/ChartsReferenceLine/ChartsXReferenceLine.js +109 -0
  377. package/node/ChartsReferenceLine/ChartsYReferenceLine.js +109 -0
  378. package/node/ChartsReferenceLine/chartsReferenceLineClasses.js +14 -0
  379. package/node/ChartsReferenceLine/common.js +27 -0
  380. package/node/ChartsReferenceLine/index.js +27 -0
  381. package/{ChartsSurface.js → node/ChartsSurface/ChartsSurface.js} +6 -2
  382. package/node/ChartsSurface/index.js +16 -0
  383. package/{esm → node}/ChartsText/ChartsText.js +26 -18
  384. package/node/ChartsText/index.js +12 -0
  385. package/node/ChartsTooltip/ChartsAxisTooltipContent.js +88 -0
  386. package/node/ChartsTooltip/ChartsItemTooltipContent.js +60 -0
  387. package/node/ChartsTooltip/ChartsTooltip.js +162 -0
  388. package/{esm → node}/ChartsTooltip/ChartsTooltipTable.js +16 -11
  389. package/node/ChartsTooltip/DefaultChartsAxisTooltipContent.js +129 -0
  390. package/node/ChartsTooltip/DefaultChartsItemTooltipContent.js +98 -0
  391. package/node/ChartsTooltip/chartsTooltipClasses.js +12 -0
  392. package/node/ChartsTooltip/index.js +82 -0
  393. package/{esm → node}/ChartsTooltip/utils.js +21 -9
  394. package/{esm → node}/ChartsVoronoiHandler/ChartsVoronoiHandler.js +37 -29
  395. package/node/ChartsVoronoiHandler/index.js +16 -0
  396. package/{esm → node}/ChartsXAxis/ChartsXAxis.js +98 -79
  397. package/node/ChartsXAxis/index.js +16 -0
  398. package/{esm → node}/ChartsYAxis/ChartsYAxis.js +86 -71
  399. package/node/ChartsYAxis/index.js +16 -0
  400. package/node/Gauge/Gauge.js +157 -0
  401. package/{esm → node}/Gauge/GaugeContainer.js +59 -51
  402. package/node/Gauge/GaugeProvider.js +99 -0
  403. package/node/Gauge/GaugeReferenceArc.js +44 -0
  404. package/node/Gauge/GaugeValueArc.js +51 -0
  405. package/node/Gauge/GaugeValueText.js +77 -0
  406. package/node/Gauge/gaugeClasses.js +15 -0
  407. package/node/Gauge/index.js +87 -0
  408. package/{esm → node}/Gauge/utils.js +9 -2
  409. package/node/LineChart/AnimatedArea.js +112 -0
  410. package/node/LineChart/AnimatedLine.js +115 -0
  411. package/node/LineChart/AreaElement.js +119 -0
  412. package/{esm → node}/LineChart/AreaPlot.js +38 -30
  413. package/node/LineChart/LineChart.js +357 -0
  414. package/node/LineChart/LineElement.js +119 -0
  415. package/node/LineChart/LineHighlightElement.js +90 -0
  416. package/node/LineChart/LineHighlightPlot.js +126 -0
  417. package/{esm → node}/LineChart/LinePlot.js +38 -30
  418. package/node/LineChart/MarkElement.js +140 -0
  419. package/{esm → node}/LineChart/MarkPlot.js +41 -33
  420. package/{esm → node}/LineChart/extremums.js +31 -7
  421. package/{esm → node}/LineChart/formatter.js +16 -9
  422. package/{esm → node}/LineChart/getColor.js +7 -1
  423. package/node/LineChart/index.js +126 -0
  424. package/{esm/BarChart → node/LineChart}/legend.js +9 -3
  425. package/node/LineChart/plugin.js +17 -0
  426. package/{esm → node}/LineChart/useLineChartProps.js +22 -14
  427. package/node/PieChart/PieArc.js +117 -0
  428. package/node/PieChart/PieArcLabel.js +117 -0
  429. package/node/PieChart/PieArcLabelPlot.js +202 -0
  430. package/node/PieChart/PieArcPlot.js +184 -0
  431. package/node/PieChart/PieChart.js +401 -0
  432. package/{esm → node}/PieChart/PiePlot.js +37 -29
  433. package/{esm → node}/PieChart/dataTransform/transition.js +8 -2
  434. package/{esm → node}/PieChart/dataTransform/useTransformData.js +16 -7
  435. package/node/PieChart/formatter.js +53 -0
  436. package/node/PieChart/getColor.js +12 -0
  437. package/node/PieChart/getPieCoordinates.js +25 -0
  438. package/node/PieChart/index.js +82 -0
  439. package/{esm → node}/PieChart/legend.js +9 -3
  440. package/node/PieChart/plugin.js +14 -0
  441. package/{esm → node}/ResponsiveChartContainer/ResizableContainer.js +8 -2
  442. package/node/ResponsiveChartContainer/ResponsiveChartContainer.js +233 -0
  443. package/node/ResponsiveChartContainer/index.js +16 -0
  444. package/{esm → node}/ResponsiveChartContainer/useChartContainerDimensions.js +17 -7
  445. package/{esm → node}/ResponsiveChartContainer/useResponsiveChartContainerProps.js +16 -8
  446. package/{esm → node}/ScatterChart/Scatter.js +34 -26
  447. package/node/ScatterChart/ScatterChart.js +363 -0
  448. package/node/ScatterChart/ScatterPlot.js +107 -0
  449. package/node/ScatterChart/extremums.js +63 -0
  450. package/node/ScatterChart/formatter.js +17 -0
  451. package/{esm → node}/ScatterChart/getColor.js +7 -1
  452. package/node/ScatterChart/index.js +38 -0
  453. package/{esm → node}/ScatterChart/legend.js +9 -3
  454. package/node/ScatterChart/plugin.js +17 -0
  455. package/{esm → node}/ScatterChart/useScatterChartProps.js +18 -10
  456. package/node/SparkLineChart/SparkLineChart.js +356 -0
  457. package/node/SparkLineChart/index.js +16 -0
  458. package/node/colorPalettes/colorPalettes.js +18 -0
  459. package/node/colorPalettes/index.js +16 -0
  460. package/node/context/CartesianProvider/Cartesian.types.js +5 -0
  461. package/node/context/CartesianProvider/CartesianContext.js +21 -0
  462. package/node/context/CartesianProvider/CartesianProvider.js +54 -0
  463. package/{esm → node}/context/CartesianProvider/computeValue.js +49 -45
  464. package/node/context/CartesianProvider/defaultizeAxis.js +21 -0
  465. package/node/context/CartesianProvider/getAxisExtremum.js +27 -0
  466. package/node/context/CartesianProvider/index.js +61 -0
  467. package/node/context/CartesianProvider/useCartesianContext.js +17 -0
  468. package/node/context/CartesianProvider/zoom.js +26 -0
  469. package/node/context/DrawingProvider.js +87 -0
  470. package/node/context/HighlightedProvider/HighlightedContext.js +39 -0
  471. package/node/context/HighlightedProvider/HighlightedProvider.js +100 -0
  472. package/{esm → node}/context/HighlightedProvider/createIsFaded.js +9 -2
  473. package/{esm → node}/context/HighlightedProvider/createIsHighlighted.js +9 -2
  474. package/node/context/HighlightedProvider/index.js +49 -0
  475. package/node/context/HighlightedProvider/useHighlighted.js +27 -0
  476. package/{esm → node}/context/HighlightedProvider/useItemHighlighted.js +9 -3
  477. package/node/context/InteractionProvider.js +85 -0
  478. package/node/context/PluginProvider/ColorProcessor.types.js +5 -0
  479. package/node/context/PluginProvider/ExtremumGetter.types.js +5 -0
  480. package/node/context/PluginProvider/Plugin.types.js +5 -0
  481. package/node/context/PluginProvider/PluginContext.js +21 -0
  482. package/node/context/PluginProvider/PluginProvider.js +26 -0
  483. package/node/context/PluginProvider/SeriesFormatter.types.js +5 -0
  484. package/node/context/PluginProvider/index.js +115 -0
  485. package/{esm → node}/context/PluginProvider/mergePlugins.js +13 -6
  486. package/node/context/PluginProvider/useColorProcessor.js +23 -0
  487. package/node/context/PluginProvider/useSeriesFormatter.js +23 -0
  488. package/node/context/PluginProvider/useXExtremumGetter.js +23 -0
  489. package/node/context/PluginProvider/useYExtremumGetter.js +23 -0
  490. package/node/context/SeriesProvider/Series.types.js +5 -0
  491. package/node/context/SeriesProvider/SeriesContext.js +16 -0
  492. package/node/context/SeriesProvider/SeriesProvider.js +38 -0
  493. package/node/context/SeriesProvider/index.js +49 -0
  494. package/{esm → node}/context/SeriesProvider/processSeries.js +14 -6
  495. package/node/context/ZAxisContextProvider.js +103 -0
  496. package/node/context/context.types.js +5 -0
  497. package/node/context/index.js +27 -0
  498. package/node/hooks/index.js +115 -0
  499. package/node/hooks/useAxis.js +24 -0
  500. package/{esm → node}/hooks/useAxisEvents.js +29 -17
  501. package/node/hooks/useChartDimensions.js +25 -0
  502. package/node/hooks/useChartId.js +16 -0
  503. package/node/hooks/useColorScale.js +37 -0
  504. package/node/hooks/useDrawingArea.js +30 -0
  505. package/node/hooks/useInteractionItemProps.js +55 -0
  506. package/node/hooks/useMounted.js +25 -0
  507. package/{esm → node}/hooks/useReducedMotion.js +12 -6
  508. package/node/hooks/useScale.js +30 -0
  509. package/{esm → node}/hooks/useSeries.js +19 -8
  510. package/node/hooks/useSvgRef.js +20 -0
  511. package/{esm → node}/hooks/useTicks.js +16 -7
  512. package/node/index.js +298 -0
  513. package/node/internals/SlotComponentPropsFromProps.js +5 -0
  514. package/node/internals/cleanId.js +12 -0
  515. package/node/internals/colorScale.js +24 -0
  516. package/node/internals/components/AxisSharedComponents.js +33 -0
  517. package/node/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +105 -0
  518. package/node/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +64 -0
  519. package/node/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +48 -0
  520. package/node/internals/components/ChartsAxesGradients/index.js +16 -0
  521. package/{esm → node}/internals/configInit.js +7 -1
  522. package/node/internals/defaultizeColor.js +21 -0
  523. package/node/internals/defaultizeValueFormatter.js +17 -0
  524. package/{esm → node}/internals/domUtils.js +30 -7
  525. package/{esm → node}/internals/geometry.js +7 -1
  526. package/node/internals/getCurve.js +45 -0
  527. package/node/internals/getLabel.js +9 -0
  528. package/{esm → node}/internals/getPercentageValue.js +7 -1
  529. package/{esm → node}/internals/getSVGPoint.js +7 -1
  530. package/node/internals/getScale.js +23 -0
  531. package/{esm → node}/internals/getSymbol.js +7 -1
  532. package/node/internals/getWordsByLines.js +21 -0
  533. package/node/internals/index.js +335 -0
  534. package/node/internals/isBandScale.js +9 -0
  535. package/node/internals/isCartesian.js +14 -0
  536. package/node/internals/isDefined.js +9 -0
  537. package/node/internals/isInfinity.js +9 -0
  538. package/node/internals/notNull.js +9 -0
  539. package/{esm → node}/internals/stackSeries.js +23 -16
  540. package/node/internals/ts-generic.js +5 -0
  541. package/node/internals/useAnimatedPath.js +42 -0
  542. package/{esm → node}/internals/warning.js +9 -2
  543. package/node/models/axis.js +18 -0
  544. package/node/models/colorMapping.js +5 -0
  545. package/node/models/helpers.js +5 -0
  546. package/node/models/index.js +38 -0
  547. package/node/models/layout.js +5 -0
  548. package/node/models/seriesType/bar.js +5 -0
  549. package/node/models/seriesType/common.js +5 -0
  550. package/node/models/seriesType/config.js +5 -0
  551. package/node/models/seriesType/index.js +71 -0
  552. package/node/models/seriesType/line.js +5 -0
  553. package/node/models/seriesType/pie.js +5 -0
  554. package/node/models/seriesType/scatter.js +5 -0
  555. package/node/models/stacking.js +5 -0
  556. package/node/models/z-axis.js +5 -0
  557. package/node/tests/firePointerEvent.js +42 -0
  558. package/node/themeAugmentation/index.js +38 -0
  559. package/package.json +8 -8
  560. package/tests/firePointerEvent.js +35 -0
  561. package/themeAugmentation/components.d.ts +2 -12
  562. package/themeAugmentation/index.js +3 -38
  563. package/themeAugmentation/overrides.d.ts +6 -7
  564. package/themeAugmentation/package.json +2 -2
  565. package/themeAugmentation/props.d.ts +3 -14
  566. package/context/CartesianProvider/normalizeAxis.d.ts +0 -5
  567. package/context/CartesianProvider/normalizeAxis.js +0 -23
  568. package/esm/BarChart/BarChart.js +0 -343
  569. package/esm/BarChart/BarClipPath.js +0 -42
  570. package/esm/BarChart/BarElement.js +0 -109
  571. package/esm/BarChart/BarLabel/BarLabel.js +0 -51
  572. package/esm/BarChart/BarLabel/BarLabelItem.js +0 -119
  573. package/esm/BarChart/BarLabel/BarLabelPlot.js +0 -75
  574. package/esm/BarChart/BarLabel/barLabelClasses.js +0 -19
  575. package/esm/BarChart/BarLabel/index.js +0 -2
  576. package/esm/BarChart/extremums.js +0 -40
  577. package/esm/BarChart/index.js +0 -4
  578. package/esm/BarChart/plugin.js +0 -10
  579. package/esm/ChartContainer/ChartContainer.js +0 -250
  580. package/esm/ChartContainer/index.js +0 -1
  581. package/esm/ChartContainer/useChartContainerProps.js +0 -82
  582. package/esm/ChartContainer/useDefaultizeAxis.js +0 -19
  583. package/esm/ChartsAxis/axisClasses.js +0 -5
  584. package/esm/ChartsAxis/index.js +0 -2
  585. package/esm/ChartsAxisHighlight/ChartsAxisHighlight.js +0 -120
  586. package/esm/ChartsAxisHighlight/index.js +0 -1
  587. package/esm/ChartsClipPath/ChartsClipPath.js +0 -51
  588. package/esm/ChartsClipPath/index.js +0 -1
  589. package/esm/ChartsGrid/ChartsGrid.js +0 -131
  590. package/esm/ChartsGrid/chartsGridClasses.js +0 -6
  591. package/esm/ChartsGrid/index.js +0 -2
  592. package/esm/ChartsLegend/ChartsLegend.js +0 -106
  593. package/esm/ChartsLegend/DefaultChartsLegend.js +0 -97
  594. package/esm/ChartsLegend/chartsLegend.types.js +0 -1
  595. package/esm/ChartsLegend/chartsLegendClasses.js +0 -5
  596. package/esm/ChartsLegend/index.js +0 -6
  597. package/esm/ChartsLegend/legend.types.js +0 -1
  598. package/esm/ChartsLegend/useAxis.js +0 -39
  599. package/esm/ChartsLegend/utils.js +0 -16
  600. package/esm/ChartsOnAxisClickHandler/index.js +0 -1
  601. package/esm/ChartsOverlay/ChartsLoadingOverlay.js +0 -34
  602. package/esm/ChartsOverlay/ChartsNoDataOverlay.js +0 -34
  603. package/esm/ChartsOverlay/ChartsOverlay.js +0 -31
  604. package/esm/ChartsOverlay/index.js +0 -3
  605. package/esm/ChartsReferenceLine/ChartsReferenceLine.js +0 -74
  606. package/esm/ChartsReferenceLine/ChartsXReferenceLine.js +0 -100
  607. package/esm/ChartsReferenceLine/ChartsYReferenceLine.js +0 -100
  608. package/esm/ChartsReferenceLine/chartsReferenceLineClasses.js +0 -6
  609. package/esm/ChartsReferenceLine/common.js +0 -20
  610. package/esm/ChartsReferenceLine/index.js +0 -2
  611. package/esm/ChartsText/index.js +0 -1
  612. package/esm/ChartsTooltip/ChartsAxisTooltipContent.js +0 -80
  613. package/esm/ChartsTooltip/ChartsItemTooltipContent.js +0 -52
  614. package/esm/ChartsTooltip/ChartsTooltip.js +0 -154
  615. package/esm/ChartsTooltip/DefaultChartsAxisTooltipContent.js +0 -121
  616. package/esm/ChartsTooltip/DefaultChartsItemTooltipContent.js +0 -90
  617. package/esm/ChartsTooltip/chartsTooltipClasses.js +0 -5
  618. package/esm/ChartsTooltip/index.js +0 -7
  619. package/esm/ChartsVoronoiHandler/index.js +0 -1
  620. package/esm/ChartsXAxis/index.js +0 -1
  621. package/esm/ChartsYAxis/index.js +0 -1
  622. package/esm/Gauge/Gauge.js +0 -149
  623. package/esm/Gauge/GaugeProvider.js +0 -88
  624. package/esm/Gauge/GaugeReferenceArc.js +0 -35
  625. package/esm/Gauge/GaugeValueArc.js +0 -42
  626. package/esm/Gauge/GaugeValueText.js +0 -69
  627. package/esm/Gauge/gaugeClasses.js +0 -7
  628. package/esm/Gauge/index.js +0 -7
  629. package/esm/LineChart/AnimatedArea.js +0 -103
  630. package/esm/LineChart/AnimatedLine.js +0 -106
  631. package/esm/LineChart/AreaElement.js +0 -109
  632. package/esm/LineChart/LineChart.js +0 -344
  633. package/esm/LineChart/LineElement.js +0 -109
  634. package/esm/LineChart/LineHighlightElement.js +0 -80
  635. package/esm/LineChart/LineHighlightPlot.js +0 -118
  636. package/esm/LineChart/MarkElement.js +0 -128
  637. package/esm/LineChart/index.js +0 -11
  638. package/esm/LineChart/plugin.js +0 -10
  639. package/esm/PieChart/PieArc.js +0 -107
  640. package/esm/PieChart/PieArcLabel.js +0 -107
  641. package/esm/PieChart/PieArcLabelPlot.js +0 -194
  642. package/esm/PieChart/PieArcPlot.js +0 -176
  643. package/esm/PieChart/PieChart.js +0 -388
  644. package/esm/PieChart/formatter.js +0 -46
  645. package/esm/PieChart/getColor.js +0 -6
  646. package/esm/PieChart/getPieCoordinates.js +0 -19
  647. package/esm/PieChart/index.js +0 -7
  648. package/esm/PieChart/plugin.js +0 -7
  649. package/esm/ResponsiveChartContainer/ResponsiveChartContainer.js +0 -225
  650. package/esm/ResponsiveChartContainer/index.js +0 -1
  651. package/esm/ScatterChart/ScatterChart.js +0 -350
  652. package/esm/ScatterChart/ScatterPlot.js +0 -99
  653. package/esm/ScatterChart/extremums.js +0 -39
  654. package/esm/ScatterChart/formatter.js +0 -11
  655. package/esm/ScatterChart/index.js +0 -3
  656. package/esm/ScatterChart/plugin.js +0 -10
  657. package/esm/SparkLineChart/SparkLineChart.js +0 -348
  658. package/esm/SparkLineChart/index.js +0 -1
  659. package/esm/colorPalettes/colorPalettes.js +0 -9
  660. package/esm/colorPalettes/index.js +0 -1
  661. package/esm/context/CartesianProvider/CartesianContext.js +0 -13
  662. package/esm/context/CartesianProvider/CartesianProvider.js +0 -50
  663. package/esm/context/CartesianProvider/defaultizeAxis.js +0 -13
  664. package/esm/context/CartesianProvider/getAxisExtremum.js +0 -14
  665. package/esm/context/CartesianProvider/index.js +0 -8
  666. package/esm/context/CartesianProvider/normalizeAxis.js +0 -15
  667. package/esm/context/CartesianProvider/useCartesianContext.js +0 -8
  668. package/esm/context/DrawingProvider.js +0 -68
  669. package/esm/context/HighlightedProvider/HighlightedContext.js +0 -32
  670. package/esm/context/HighlightedProvider/HighlightedProvider.js +0 -92
  671. package/esm/context/HighlightedProvider/index.js +0 -4
  672. package/esm/context/HighlightedProvider/useHighlighted.js +0 -20
  673. package/esm/context/InteractionProvider.js +0 -76
  674. package/esm/context/PluginProvider/ColorProcessor.types.js +0 -1
  675. package/esm/context/PluginProvider/ExtremumGetter.types.js +0 -1
  676. package/esm/context/PluginProvider/Plugin.types.js +0 -1
  677. package/esm/context/PluginProvider/PluginContext.js +0 -13
  678. package/esm/context/PluginProvider/PluginProvider.js +0 -19
  679. package/esm/context/PluginProvider/SeriesFormatter.types.js +0 -1
  680. package/esm/context/PluginProvider/index.js +0 -10
  681. package/esm/context/PluginProvider/useColorProcessor.js +0 -15
  682. package/esm/context/PluginProvider/useSeriesFormatter.js +0 -15
  683. package/esm/context/PluginProvider/useXExtremumGetter.js +0 -15
  684. package/esm/context/PluginProvider/useYExtremumGetter.js +0 -15
  685. package/esm/context/SeriesProvider/Series.types.js +0 -1
  686. package/esm/context/SeriesProvider/SeriesContext.js +0 -8
  687. package/esm/context/SeriesProvider/SeriesProvider.js +0 -31
  688. package/esm/context/SeriesProvider/index.js +0 -8
  689. package/esm/context/ZAxisContextProvider.js +0 -94
  690. package/esm/context/context.types.js +0 -1
  691. package/esm/context/index.js +0 -2
  692. package/esm/hooks/index.js +0 -7
  693. package/esm/hooks/useAxis.js +0 -17
  694. package/esm/hooks/useChartDimensions.js +0 -16
  695. package/esm/hooks/useChartId.js +0 -8
  696. package/esm/hooks/useColorScale.js +0 -27
  697. package/esm/hooks/useDrawingArea.js +0 -22
  698. package/esm/hooks/useInteractionItemProps.js +0 -46
  699. package/esm/hooks/useMounted.js +0 -16
  700. package/esm/hooks/useScale.js +0 -23
  701. package/esm/hooks/useSvgRef.js +0 -12
  702. package/esm/index.js +0 -26
  703. package/esm/internals/SlotComponentPropsFromProps.js +0 -1
  704. package/esm/internals/cleanId.js +0 -6
  705. package/esm/internals/colorScale.js +0 -16
  706. package/esm/internals/components/AxisSharedComponents.js +0 -26
  707. package/esm/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +0 -95
  708. package/esm/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +0 -56
  709. package/esm/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +0 -40
  710. package/esm/internals/components/ChartsAxesGradients/index.js +0 -1
  711. package/esm/internals/defaultizeColor.js +0 -14
  712. package/esm/internals/defaultizeValueFormatter.js +0 -10
  713. package/esm/internals/getCurve.js +0 -39
  714. package/esm/internals/getLabel.js +0 -3
  715. package/esm/internals/getScale.js +0 -17
  716. package/esm/internals/getWordsByLines.js +0 -14
  717. package/esm/internals/index.js +0 -37
  718. package/esm/internals/isBandScale.js +0 -3
  719. package/esm/internals/isCartesian.js +0 -7
  720. package/esm/internals/isDefined.js +0 -3
  721. package/esm/internals/isInfinity.js +0 -3
  722. package/esm/internals/notNull.js +0 -3
  723. package/esm/internals/ts-generic.js +0 -1
  724. package/esm/internals/useAnimatedPath.js +0 -29
  725. package/esm/internals/useIsRTL.js +0 -5
  726. package/esm/models/axis.js +0 -6
  727. package/esm/models/colorMapping.js +0 -1
  728. package/esm/models/helpers.js +0 -1
  729. package/esm/models/index.js +0 -4
  730. package/esm/models/layout.js +0 -1
  731. package/esm/models/seriesType/bar.js +0 -1
  732. package/esm/models/seriesType/common.js +0 -1
  733. package/esm/models/seriesType/config.js +0 -1
  734. package/esm/models/seriesType/index.js +0 -16
  735. package/esm/models/seriesType/line.js +0 -1
  736. package/esm/models/seriesType/pie.js +0 -1
  737. package/esm/models/seriesType/scatter.js +0 -1
  738. package/esm/models/stacking.js +0 -1
  739. package/esm/models/z-axis.js +0 -1
  740. package/esm/themeAugmentation/index.js +0 -3
  741. package/internals/useIsRTL.d.ts +0 -1
  742. package/internals/useIsRTL.js +0 -12
  743. package/modern/context/CartesianProvider/normalizeAxis.js +0 -15
  744. package/modern/internals/useIsRTL.js +0 -5
  745. /package/{ChartsSurface.d.ts → ChartsSurface/ChartsSurface.d.ts} +0 -0
  746. /package/{constants.d.ts → constants/index.d.ts} +0 -0
  747. /package/{esm/constants.js → constants/index.js} +0 -0
  748. /package/{esm/BarChart/BarLabel/BarLabel.types.js → context/CartesianProvider/Cartesian.types.js} +0 -0
  749. /package/modern/{constants.js → constants/index.js} +0 -0
  750. /package/{esm/BarChart/types.js → modern/context/CartesianProvider/Cartesian.types.js} +0 -0
  751. /package/{constants.js → node/constants/index.js} +0 -0
@@ -26,12 +26,10 @@ export declare const useChartContainerProps: (props: ChartContainerProps, ref: R
26
26
  label?: string | undefined;
27
27
  max?: (number | Date) | undefined;
28
28
  min?: (number | Date) | undefined;
29
+ valueFormatter?: ((value: any, context: import("../internals").AxisValueFormatterContext) => string) | undefined;
30
+ dataKey?: string | undefined;
29
31
  sx?: import("@mui/system").SxProps | undefined;
30
32
  classes?: Partial<import("..").ChartsAxisClasses> | undefined;
31
- slots?: Partial<import("../internals").ChartsAxisSlots> | undefined;
32
- slotProps?: Partial<import("../internals").ChartsAxisSlotProps> | undefined;
33
- dataKey?: string | undefined;
34
- valueFormatter?: ((value: any, context: import("../internals").AxisValueFormatterContext) => string) | undefined;
35
33
  tickMaxStep?: number | undefined;
36
34
  tickMinStep?: number | undefined;
37
35
  tickNumber?: number | undefined;
@@ -43,6 +41,8 @@ export declare const useChartContainerProps: (props: ChartContainerProps, ref: R
43
41
  tickLabelInterval?: ("auto" | ((value: any, index: number) => boolean)) | undefined;
44
42
  labelFontSize?: number | undefined;
45
43
  tickSize?: number | undefined;
44
+ slots?: Partial<import("../internals").ChartsAxisSlots> | undefined;
45
+ slotProps?: Partial<import("../internals").ChartsAxisSlotProps> | undefined;
46
46
  tickInterval?: ("auto" | ((value: any, index: number) => boolean) | any[]) | undefined;
47
47
  tickPlacement?: ("start" | "end" | "middle" | "extremities") | undefined;
48
48
  tickLabelPlacement?: ("middle" | "tick") | undefined;
@@ -59,12 +59,10 @@ export declare const useChartContainerProps: (props: ChartContainerProps, ref: R
59
59
  label?: string | undefined;
60
60
  max?: (number | Date) | undefined;
61
61
  min?: (number | Date) | undefined;
62
+ valueFormatter?: ((value: any, context: import("../internals").AxisValueFormatterContext) => string) | undefined;
63
+ dataKey?: string | undefined;
62
64
  sx?: import("@mui/system").SxProps | undefined;
63
65
  classes?: Partial<import("..").ChartsAxisClasses> | undefined;
64
- slots?: Partial<import("../internals").ChartsAxisSlots> | undefined;
65
- slotProps?: Partial<import("../internals").ChartsAxisSlotProps> | undefined;
66
- dataKey?: string | undefined;
67
- valueFormatter?: ((value: any, context: import("../internals").AxisValueFormatterContext) => string) | undefined;
68
66
  tickMaxStep?: number | undefined;
69
67
  tickMinStep?: number | undefined;
70
68
  tickNumber?: number | undefined;
@@ -76,6 +74,8 @@ export declare const useChartContainerProps: (props: ChartContainerProps, ref: R
76
74
  tickLabelInterval?: ("auto" | ((value: any, index: number) => boolean)) | undefined;
77
75
  labelFontSize?: number | undefined;
78
76
  tickSize?: number | undefined;
77
+ slots?: Partial<import("../internals").ChartsAxisSlots> | undefined;
78
+ slotProps?: Partial<import("../internals").ChartsAxisSlotProps> | undefined;
79
79
  tickInterval?: ("auto" | ((value: any, index: number) => boolean) | any[]) | undefined;
80
80
  tickPlacement?: ("start" | "end" | "middle" | "extremities") | undefined;
81
81
  tickLabelPlacement?: ("middle" | "tick") | undefined;
@@ -1,20 +1,11 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
6
- });
7
- exports.useChartContainerProps = void 0;
8
- var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
9
- var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutPropertiesLoose"));
10
- var React = _interopRequireWildcard(require("react"));
11
- var _useForkRef = _interopRequireDefault(require("@mui/utils/useForkRef"));
12
- var _useDefaultizeAxis = require("./useDefaultizeAxis");
13
- var _useReducedMotion = require("../hooks/useReducedMotion");
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
14
3
  const _excluded = ["width", "height", "series", "margin", "xAxis", "yAxis", "zAxis", "colors", "dataset", "sx", "title", "desc", "disableAxisListener", "highlightedItem", "onHighlightChange", "plugins", "children"];
15
- function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
16
- function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
17
- const useChartContainerProps = (props, ref) => {
4
+ import * as React from 'react';
5
+ import useForkRef from '@mui/utils/useForkRef';
6
+ import { useDefaultizeAxis } from './useDefaultizeAxis';
7
+ import { useReducedMotion } from '../hooks/useReducedMotion';
8
+ export const useChartContainerProps = (props, ref) => {
18
9
  const {
19
10
  width,
20
11
  height,
@@ -34,12 +25,12 @@ const useChartContainerProps = (props, ref) => {
34
25
  plugins,
35
26
  children
36
27
  } = props,
37
- other = (0, _objectWithoutPropertiesLoose2.default)(props, _excluded);
28
+ other = _objectWithoutPropertiesLoose(props, _excluded);
38
29
  const svgRef = React.useRef(null);
39
- const chartSurfaceRef = (0, _useForkRef.default)(ref, svgRef);
40
- (0, _useReducedMotion.useReducedMotion)(); // a11y reduce motion (see: https://react-spring.dev/docs/utilities/use-reduced-motion)
30
+ const chartSurfaceRef = useForkRef(ref, svgRef);
31
+ useReducedMotion(); // a11y reduce motion (see: https://react-spring.dev/docs/utilities/use-reduced-motion)
41
32
 
42
- const [defaultizedXAxis, defaultizedYAxis] = (0, _useDefaultizeAxis.useDefaultizeAxis)(xAxis, yAxis);
33
+ const [defaultizedXAxis, defaultizedYAxis] = useDefaultizeAxis(xAxis, yAxis, dataset);
43
34
  const drawingProviderProps = {
44
35
  width,
45
36
  height,
@@ -67,7 +58,7 @@ const useChartContainerProps = (props, ref) => {
67
58
  highlightedItem,
68
59
  onHighlightChange
69
60
  };
70
- const chartsSurfaceProps = (0, _extends2.default)({}, other, {
61
+ const chartsSurfaceProps = _extends({}, other, {
71
62
  width,
72
63
  height,
73
64
  ref: chartSurfaceRef,
@@ -88,5 +79,4 @@ const useChartContainerProps = (props, ref) => {
88
79
  xAxis: defaultizedXAxis,
89
80
  yAxis: defaultizedYAxis
90
81
  };
91
- };
92
- exports.useChartContainerProps = useChartContainerProps;
82
+ };
@@ -1,7 +1,8 @@
1
1
  import { MakeOptional } from '../models/helpers';
2
2
  import { AxisConfig, ScaleName } from '../models';
3
3
  import { ChartsAxisProps } from '../models/axis';
4
- export declare const useDefaultizeAxis: (inXAxis: MakeOptional<AxisConfig<ScaleName, any, ChartsAxisProps>, "id">[] | undefined, inYAxis: MakeOptional<AxisConfig<ScaleName, any, ChartsAxisProps>, "id">[] | undefined) => {
4
+ import { DatasetType } from '../models/seriesType/config';
5
+ export declare const useDefaultizeAxis: (inXAxis: MakeOptional<AxisConfig<ScaleName, any, ChartsAxisProps>, "id">[] | undefined, inYAxis: MakeOptional<AxisConfig<ScaleName, any, ChartsAxisProps>, "id">[] | undefined, dataset: DatasetType | undefined) => {
5
6
  reverse?: boolean | undefined;
6
7
  fill?: string | undefined;
7
8
  stroke?: string | undefined;
@@ -9,12 +10,10 @@ export declare const useDefaultizeAxis: (inXAxis: MakeOptional<AxisConfig<ScaleN
9
10
  label?: string | undefined;
10
11
  max?: (number | Date) | undefined;
11
12
  min?: (number | Date) | undefined;
13
+ valueFormatter?: ((value: any, context: import("../models/axis").AxisValueFormatterContext) => string) | undefined;
14
+ dataKey?: string | undefined;
12
15
  sx?: import("@mui/system").SxProps | undefined;
13
16
  classes?: Partial<import("..").ChartsAxisClasses> | undefined;
14
- slots?: Partial<import("../models/axis").ChartsAxisSlots> | undefined;
15
- slotProps?: Partial<import("../models/axis").ChartsAxisSlotProps> | undefined;
16
- dataKey?: string | undefined;
17
- valueFormatter?: ((value: any, context: import("../models/axis").AxisValueFormatterContext) => string) | undefined;
18
17
  tickMaxStep?: number | undefined;
19
18
  tickMinStep?: number | undefined;
20
19
  tickNumber?: number | undefined;
@@ -26,6 +25,8 @@ export declare const useDefaultizeAxis: (inXAxis: MakeOptional<AxisConfig<ScaleN
26
25
  tickLabelInterval?: ("auto" | ((value: any, index: number) => boolean)) | undefined;
27
26
  labelFontSize?: number | undefined;
28
27
  tickSize?: number | undefined;
28
+ slots?: Partial<import("../models/axis").ChartsAxisSlots> | undefined;
29
+ slotProps?: Partial<import("../models/axis").ChartsAxisSlotProps> | undefined;
29
30
  tickInterval?: ("auto" | ((value: any, index: number) => boolean) | any[]) | undefined;
30
31
  tickPlacement?: ("start" | "end" | "middle" | "extremities") | undefined;
31
32
  tickLabelPlacement?: ("middle" | "tick") | undefined;
@@ -1,29 +1,30 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
6
- });
7
- exports.useDefaultizeAxis = void 0;
8
- var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
9
- var React = _interopRequireWildcard(require("react"));
10
- var _constants = require("../constants");
11
- function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
12
- function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
13
- const defaultizeAxis = (inAxis, axisName) => {
14
- const DEFAULT_AXIS_KEY = axisName === 'x' ? _constants.DEFAULT_X_AXIS_KEY : _constants.DEFAULT_Y_AXIS_KEY;
15
- return [...(inAxis?.map((axis, index) => (0, _extends2.default)({
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ import * as React from 'react';
3
+ import { DEFAULT_X_AXIS_KEY, DEFAULT_Y_AXIS_KEY } from '../constants';
4
+ const defaultizeAxis = (inAxis, dataset, axisName) => {
5
+ const DEFAULT_AXIS_KEY = axisName === 'x' ? DEFAULT_X_AXIS_KEY : DEFAULT_Y_AXIS_KEY;
6
+ return [...(inAxis?.map((axis, index) => _extends({
16
7
  id: `defaultized-${axisName}-axis-${index}`
17
8
  }, axis)) ?? []), ...(inAxis === undefined || inAxis.findIndex(({
18
9
  id
19
10
  }) => id === DEFAULT_AXIS_KEY) === -1 ? [{
20
11
  id: DEFAULT_AXIS_KEY,
21
12
  scaleType: 'linear'
22
- }] : [])];
13
+ }] : [])].map(axisConfig => {
14
+ const dataKey = axisConfig.dataKey;
15
+ if (dataKey === undefined || axisConfig.data !== undefined) {
16
+ return axisConfig;
17
+ }
18
+ if (dataset === undefined) {
19
+ throw Error(`MUI X: ${axisName}-axis uses \`dataKey\` but no \`dataset\` is provided.`);
20
+ }
21
+ return _extends({}, axisConfig, {
22
+ data: dataset.map(d => d[dataKey])
23
+ });
24
+ });
23
25
  };
24
- const useDefaultizeAxis = (inXAxis, inYAxis) => {
25
- const xAxis = React.useMemo(() => defaultizeAxis(inXAxis, 'x'), [inXAxis]);
26
- const yAxis = React.useMemo(() => defaultizeAxis(inYAxis, 'y'), [inYAxis]);
26
+ export const useDefaultizeAxis = (inXAxis, inYAxis, dataset) => {
27
+ const xAxis = React.useMemo(() => defaultizeAxis(inXAxis, dataset, 'x'), [inXAxis, dataset]);
28
+ const yAxis = React.useMemo(() => defaultizeAxis(inYAxis, dataset, 'y'), [inYAxis, dataset]);
27
29
  return [xAxis, yAxis];
28
- };
29
- exports.useDefaultizeAxis = useDefaultizeAxis;
30
+ };
@@ -1,19 +1,10 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
6
- });
7
- exports.ChartsAxis = ChartsAxis;
8
- var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
9
- var React = _interopRequireWildcard(require("react"));
10
- var _propTypes = _interopRequireDefault(require("prop-types"));
11
- var _CartesianProvider = require("../context/CartesianProvider");
12
- var _ChartsXAxis = require("../ChartsXAxis");
13
- var _ChartsYAxis = require("../ChartsYAxis");
14
- var _jsxRuntime = require("react/jsx-runtime");
15
- function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
16
- function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ import * as React from 'react';
3
+ import PropTypes from 'prop-types';
4
+ import { useCartesianContext } from '../context/CartesianProvider';
5
+ import { ChartsXAxis } from '../ChartsXAxis';
6
+ import { ChartsYAxis } from '../ChartsYAxis';
7
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
17
8
  const getAxisId = (propsValue, defaultAxisId) => {
18
9
  if (propsValue == null) {
19
10
  return null;
@@ -24,9 +15,9 @@ const getAxisId = (propsValue, defaultAxisId) => {
24
15
  return propsValue;
25
16
  };
26
17
  const mergeProps = (axisConfig, slots, slotProps) => {
27
- return typeof axisConfig === 'object' ? (0, _extends2.default)({}, axisConfig, {
28
- slots: (0, _extends2.default)({}, slots, axisConfig?.slots),
29
- slotProps: (0, _extends2.default)({}, slotProps, axisConfig?.slotProps)
18
+ return typeof axisConfig === 'object' ? _extends({}, axisConfig, {
19
+ slots: _extends({}, slots, axisConfig?.slots),
20
+ slotProps: _extends({}, slotProps, axisConfig?.slotProps)
30
21
  }) : {
31
22
  slots,
32
23
  slotProps
@@ -56,7 +47,7 @@ function ChartsAxis(props) {
56
47
  xAxisIds,
57
48
  yAxis,
58
49
  yAxisIds
59
- } = (0, _CartesianProvider.useCartesianContext)();
50
+ } = useCartesianContext();
60
51
 
61
52
  // TODO: use for plotting line without ticks or any thing
62
53
  // const drawingArea = React.useContext(DrawingContext);
@@ -81,17 +72,17 @@ function ChartsAxis(props) {
81
72
  const bottomAxisProps = mergeProps(bottomAxis, slots, slotProps);
82
73
  const leftAxisProps = mergeProps(leftAxis, slots, slotProps);
83
74
  const rightAxisProps = mergeProps(rightAxis, slots, slotProps);
84
- return /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
85
- children: [topId && /*#__PURE__*/(0, _jsxRuntime.jsx)(_ChartsXAxis.ChartsXAxis, (0, _extends2.default)({}, topAxisProps, {
75
+ return /*#__PURE__*/_jsxs(React.Fragment, {
76
+ children: [topId && /*#__PURE__*/_jsx(ChartsXAxis, _extends({}, topAxisProps, {
86
77
  position: "top",
87
78
  axisId: topId
88
- })), bottomId && /*#__PURE__*/(0, _jsxRuntime.jsx)(_ChartsXAxis.ChartsXAxis, (0, _extends2.default)({}, bottomAxisProps, {
79
+ })), bottomId && /*#__PURE__*/_jsx(ChartsXAxis, _extends({}, bottomAxisProps, {
89
80
  position: "bottom",
90
81
  axisId: bottomId
91
- })), leftId && /*#__PURE__*/(0, _jsxRuntime.jsx)(_ChartsYAxis.ChartsYAxis, (0, _extends2.default)({}, leftAxisProps, {
82
+ })), leftId && /*#__PURE__*/_jsx(ChartsYAxis, _extends({}, leftAxisProps, {
92
83
  position: "left",
93
84
  axisId: leftId
94
- })), rightId && /*#__PURE__*/(0, _jsxRuntime.jsx)(_ChartsYAxis.ChartsYAxis, (0, _extends2.default)({}, rightAxisProps, {
85
+ })), rightId && /*#__PURE__*/_jsx(ChartsYAxis, _extends({}, rightAxisProps, {
95
86
  position: "right",
96
87
  axisId: rightId
97
88
  }))]
@@ -107,33 +98,34 @@ process.env.NODE_ENV !== "production" ? ChartsAxis.propTypes = {
107
98
  * Can be a string (the id of the axis) or an object `ChartsXAxisProps`.
108
99
  * @default xAxisIds[0] The id of the first provided axis
109
100
  */
110
- bottomAxis: _propTypes.default.oneOfType([_propTypes.default.object, _propTypes.default.string]),
101
+ bottomAxis: PropTypes.oneOfType([PropTypes.object, PropTypes.string]),
111
102
  /**
112
103
  * Indicate which axis to display the left of the charts.
113
104
  * Can be a string (the id of the axis) or an object `ChartsYAxisProps`.
114
105
  * @default yAxisIds[0] The id of the first provided axis
115
106
  */
116
- leftAxis: _propTypes.default.oneOfType([_propTypes.default.object, _propTypes.default.string]),
107
+ leftAxis: PropTypes.oneOfType([PropTypes.object, PropTypes.string]),
117
108
  /**
118
109
  * Indicate which axis to display the right of the charts.
119
110
  * Can be a string (the id of the axis) or an object `ChartsYAxisProps`.
120
111
  * @default null
121
112
  */
122
- rightAxis: _propTypes.default.oneOfType([_propTypes.default.object, _propTypes.default.string]),
113
+ rightAxis: PropTypes.oneOfType([PropTypes.object, PropTypes.string]),
123
114
  /**
124
115
  * The props used for each component slot.
125
116
  * @default {}
126
117
  */
127
- slotProps: _propTypes.default.object,
118
+ slotProps: PropTypes.object,
128
119
  /**
129
120
  * Overridable component slots.
130
121
  * @default {}
131
122
  */
132
- slots: _propTypes.default.object,
123
+ slots: PropTypes.object,
133
124
  /**
134
125
  * Indicate which axis to display the top of the charts.
135
126
  * Can be a string (the id of the axis) or an object `ChartsXAxisProps`.
136
127
  * @default null
137
128
  */
138
- topAxis: _propTypes.default.oneOfType([_propTypes.default.object, _propTypes.default.string])
139
- } : void 0;
129
+ topAxis: PropTypes.oneOfType([PropTypes.object, PropTypes.string])
130
+ } : void 0;
131
+ export { ChartsAxis };
@@ -1,12 +1,5 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- exports.axisClasses = void 0;
7
- exports.getAxisUtilityClass = getAxisUtilityClass;
8
- var _utils = require("@mui/utils");
9
- function getAxisUtilityClass(slot) {
10
- return (0, _utils.unstable_generateUtilityClass)('MuiChartsAxis', slot);
1
+ import { unstable_generateUtilityClass as generateUtilityClass, unstable_generateUtilityClasses as generateUtilityClasses } from '@mui/utils';
2
+ export function getAxisUtilityClass(slot) {
3
+ return generateUtilityClass('MuiChartsAxis', slot);
11
4
  }
12
- const axisClasses = exports.axisClasses = (0, _utils.unstable_generateUtilityClasses)('MuiChartsAxis', ['root', 'line', 'tickContainer', 'tick', 'tickLabel', 'label', 'directionX', 'directionY', 'top', 'bottom', 'left', 'right']);
5
+ export const axisClasses = generateUtilityClasses('MuiChartsAxis', ['root', 'line', 'tickContainer', 'tick', 'tickLabel', 'label', 'directionX', 'directionY', 'top', 'bottom', 'left', 'right']);
@@ -1,27 +1,2 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- var _ChartsAxis = require("./ChartsAxis");
7
- Object.keys(_ChartsAxis).forEach(function (key) {
8
- if (key === "default" || key === "__esModule") return;
9
- if (key in exports && exports[key] === _ChartsAxis[key]) return;
10
- Object.defineProperty(exports, key, {
11
- enumerable: true,
12
- get: function () {
13
- return _ChartsAxis[key];
14
- }
15
- });
16
- });
17
- var _axisClasses = require("./axisClasses");
18
- Object.keys(_axisClasses).forEach(function (key) {
19
- if (key === "default" || key === "__esModule") return;
20
- if (key in exports && exports[key] === _axisClasses[key]) return;
21
- Object.defineProperty(exports, key, {
22
- enumerable: true,
23
- get: function () {
24
- return _axisClasses[key];
25
- }
26
- });
27
- });
1
+ export * from './ChartsAxis';
2
+ export * from './axisClasses';
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "sideEffects": false,
3
- "module": "../esm/ChartsAxis/index.js",
4
- "main": "./index.js",
3
+ "module": "./index.js",
4
+ "main": "../node/ChartsAxis/index.js",
5
5
  "types": "./index.d.ts"
6
6
  }
@@ -1,51 +1,54 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
6
- });
7
- exports.ChartsAxisHighlight = ChartsAxisHighlight;
8
- exports.chartsAxisHighlightClasses = exports.ChartsAxisHighlightPath = void 0;
9
- exports.getAxisHighlightUtilityClass = getAxisHighlightUtilityClass;
10
- var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
- var React = _interopRequireWildcard(require("react"));
12
- var _propTypes = _interopRequireDefault(require("prop-types"));
13
- var _composeClasses = _interopRequireDefault(require("@mui/utils/composeClasses"));
14
- var _generateUtilityClass = _interopRequireDefault(require("@mui/utils/generateUtilityClass"));
15
- var _generateUtilityClasses = _interopRequireDefault(require("@mui/utils/generateUtilityClasses"));
16
- var _styles = require("@mui/material/styles");
17
- var _InteractionProvider = require("../context/InteractionProvider");
18
- var _CartesianProvider = require("../context/CartesianProvider");
19
- var _useScale = require("../hooks/useScale");
20
- var _isBandScale = require("../internals/isBandScale");
21
- var _jsxRuntime = require("react/jsx-runtime");
22
- function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
23
- function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
24
- function getAxisHighlightUtilityClass(slot) {
25
- return (0, _generateUtilityClass.default)('MuiChartsAxisHighlight', slot);
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ import * as React from 'react';
3
+ import PropTypes from 'prop-types';
4
+ import composeClasses from '@mui/utils/composeClasses';
5
+ import generateUtilityClass from '@mui/utils/generateUtilityClass';
6
+ import generateUtilityClasses from '@mui/utils/generateUtilityClasses';
7
+ import { styled } from '@mui/material/styles';
8
+ import { InteractionContext } from '../context/InteractionProvider';
9
+ import { useCartesianContext } from '../context/CartesianProvider';
10
+ import { getValueToPositionMapper } from '../hooks/useScale';
11
+ import { isBandScale } from '../internals/isBandScale';
12
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
13
+ export function getAxisHighlightUtilityClass(slot) {
14
+ return generateUtilityClass('MuiChartsAxisHighlight', slot);
26
15
  }
27
- const chartsAxisHighlightClasses = exports.chartsAxisHighlightClasses = (0, _generateUtilityClasses.default)('MuiChartsAxisHighlight', ['root']);
16
+ export const chartsAxisHighlightClasses = generateUtilityClasses('MuiChartsAxisHighlight', ['root']);
28
17
  const useUtilityClasses = () => {
29
18
  const slots = {
30
19
  root: ['root']
31
20
  };
32
- return (0, _composeClasses.default)(slots, getAxisHighlightUtilityClass);
21
+ return composeClasses(slots, getAxisHighlightUtilityClass);
33
22
  };
34
- const ChartsAxisHighlightPath = exports.ChartsAxisHighlightPath = (0, _styles.styled)('path', {
23
+ export const ChartsAxisHighlightPath = styled('path', {
35
24
  name: 'MuiChartsAxisHighlight',
36
25
  slot: 'Root',
37
26
  overridesResolver: (_, styles) => styles.root
38
27
  })(({
39
- ownerState,
40
28
  theme
41
- }) => (0, _extends2.default)({
42
- pointerEvents: 'none'
43
- }, ownerState.axisHighlight === 'band' && {
44
- fill: theme.palette.mode === 'light' ? 'gray' : 'white',
45
- fillOpacity: 0.1
46
- }, ownerState.axisHighlight === 'line' && {
47
- strokeDasharray: '5 2',
48
- stroke: theme.palette.mode === 'light' ? '#000000' : '#ffffff'
29
+ }) => ({
30
+ pointerEvents: 'none',
31
+ variants: [{
32
+ props: {
33
+ axisHighlight: 'band'
34
+ },
35
+ style: _extends({
36
+ fill: 'white',
37
+ fillOpacity: 0.1
38
+ }, theme.applyStyles('light', {
39
+ fill: 'gray'
40
+ }))
41
+ }, {
42
+ props: {
43
+ axisHighlight: 'line'
44
+ },
45
+ style: _extends({
46
+ strokeDasharray: '5 2',
47
+ stroke: '#ffffff'
48
+ }, theme.applyStyles('light', {
49
+ stroke: '#000000'
50
+ }))
51
+ }]
49
52
  }));
50
53
  /**
51
54
  * Demos:
@@ -66,7 +69,7 @@ function ChartsAxisHighlight(props) {
66
69
  xAxis,
67
70
  yAxisIds,
68
71
  yAxis
69
- } = (0, _CartesianProvider.useCartesianContext)();
72
+ } = useCartesianContext();
70
73
  const classes = useUtilityClasses();
71
74
  const USED_X_AXIS_ID = xAxisIds[0];
72
75
  const USED_Y_AXIS_ID = yAxisIds[0];
@@ -74,13 +77,13 @@ function ChartsAxisHighlight(props) {
74
77
  const yScale = yAxis[USED_Y_AXIS_ID].scale;
75
78
  const {
76
79
  axis
77
- } = React.useContext(_InteractionProvider.InteractionContext);
78
- const getXPosition = (0, _useScale.getValueToPositionMapper)(xScale);
79
- const getYPosition = (0, _useScale.getValueToPositionMapper)(yScale);
80
+ } = React.useContext(InteractionContext);
81
+ const getXPosition = getValueToPositionMapper(xScale);
82
+ const getYPosition = getValueToPositionMapper(yScale);
80
83
  const axisX = axis.x;
81
84
  const axisY = axis.y;
82
- const isBandScaleX = xAxisHighlight === 'band' && axisX !== null && (0, _isBandScale.isBandScale)(xScale);
83
- const isBandScaleY = yAxisHighlight === 'band' && axisY !== null && (0, _isBandScale.isBandScale)(yScale);
85
+ const isBandScaleX = xAxisHighlight === 'band' && axisX !== null && isBandScale(xScale);
86
+ const isBandScaleY = yAxisHighlight === 'band' && axisY !== null && isBandScale(yScale);
84
87
  if (process.env.NODE_ENV !== 'production') {
85
88
  const isXError = isBandScaleX && xScale(axisX.value) === undefined;
86
89
  const isYError = isBandScaleY && yScale(axisY.value) === undefined;
@@ -88,8 +91,8 @@ function ChartsAxisHighlight(props) {
88
91
  console.error([`MUI X: The position value provided for the axis is not valid for the current scale.`, `This probably means something is wrong with the data passed to the chart.`, `The ChartsAxisHighlight component will not be displayed.`].join('\n'));
89
92
  }
90
93
  }
91
- return /*#__PURE__*/(0, _jsxRuntime.jsxs)(React.Fragment, {
92
- children: [isBandScaleX && xScale(axisX.value) !== undefined && /*#__PURE__*/(0, _jsxRuntime.jsx)(ChartsAxisHighlightPath
94
+ return /*#__PURE__*/_jsxs(React.Fragment, {
95
+ children: [isBandScaleX && xScale(axisX.value) !== undefined && /*#__PURE__*/_jsx(ChartsAxisHighlightPath
93
96
  // @ts-expect-error, xScale value is checked in the statement above
94
97
  , {
95
98
  d: `M ${xScale(axisX.value) - (xScale.step() - xScale.bandwidth()) / 2} ${yScale.range()[0]} l ${xScale.step()} 0 l 0 ${yScale.range()[1] - yScale.range()[0]} l ${-xScale.step()} 0 Z`,
@@ -97,7 +100,7 @@ function ChartsAxisHighlight(props) {
97
100
  ownerState: {
98
101
  axisHighlight: 'band'
99
102
  }
100
- }), isBandScaleY && yScale(axisY.value) !== undefined && /*#__PURE__*/(0, _jsxRuntime.jsx)(ChartsAxisHighlightPath, {
103
+ }), isBandScaleY && yScale(axisY.value) !== undefined && /*#__PURE__*/_jsx(ChartsAxisHighlightPath, {
101
104
  d: `M ${xScale.range()[0]} ${
102
105
  // @ts-expect-error, yScale value is checked in the statement above
103
106
  yScale(axisY.value) - (yScale.step() - yScale.bandwidth()) / 2} l 0 ${yScale.step()} l ${xScale.range()[1] - xScale.range()[0]} 0 l 0 ${-yScale.step()} Z`,
@@ -105,13 +108,13 @@ function ChartsAxisHighlight(props) {
105
108
  ownerState: {
106
109
  axisHighlight: 'band'
107
110
  }
108
- }), xAxisHighlight === 'line' && axis.x !== null && /*#__PURE__*/(0, _jsxRuntime.jsx)(ChartsAxisHighlightPath, {
111
+ }), xAxisHighlight === 'line' && axis.x !== null && /*#__PURE__*/_jsx(ChartsAxisHighlightPath, {
109
112
  d: `M ${getXPosition(axis.x.value)} ${yScale.range()[0]} L ${getXPosition(axis.x.value)} ${yScale.range()[1]}`,
110
113
  className: classes.root,
111
114
  ownerState: {
112
115
  axisHighlight: 'line'
113
116
  }
114
- }), yAxisHighlight === 'line' && axis.y !== null && /*#__PURE__*/(0, _jsxRuntime.jsx)(ChartsAxisHighlightPath, {
117
+ }), yAxisHighlight === 'line' && axis.y !== null && /*#__PURE__*/_jsx(ChartsAxisHighlightPath, {
115
118
  d: `M ${xScale.range()[0]} ${getYPosition(axis.y.value)} L ${xScale.range()[1]} ${getYPosition(axis.y.value)}`,
116
119
  className: classes.root,
117
120
  ownerState: {
@@ -125,6 +128,7 @@ process.env.NODE_ENV !== "production" ? ChartsAxisHighlight.propTypes = {
125
128
  // | These PropTypes are generated from the TypeScript type definitions |
126
129
  // | To update them edit the TypeScript types and run "pnpm proptypes" |
127
130
  // ----------------------------------------------------------------------
128
- x: _propTypes.default.oneOf(['band', 'line', 'none']),
129
- y: _propTypes.default.oneOf(['band', 'line', 'none'])
130
- } : void 0;
131
+ x: PropTypes.oneOf(['band', 'line', 'none']),
132
+ y: PropTypes.oneOf(['band', 'line', 'none'])
133
+ } : void 0;
134
+ export { ChartsAxisHighlight };
@@ -1,16 +1 @@
1
- "use strict";
2
-
3
- Object.defineProperty(exports, "__esModule", {
4
- value: true
5
- });
6
- var _ChartsAxisHighlight = require("./ChartsAxisHighlight");
7
- Object.keys(_ChartsAxisHighlight).forEach(function (key) {
8
- if (key === "default" || key === "__esModule") return;
9
- if (key in exports && exports[key] === _ChartsAxisHighlight[key]) return;
10
- Object.defineProperty(exports, key, {
11
- enumerable: true,
12
- get: function () {
13
- return _ChartsAxisHighlight[key];
14
- }
15
- });
16
- });
1
+ export * from './ChartsAxisHighlight';
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "sideEffects": false,
3
- "module": "../esm/ChartsAxisHighlight/index.js",
4
- "main": "./index.js",
3
+ "module": "./index.js",
4
+ "main": "../node/ChartsAxisHighlight/index.js",
5
5
  "types": "./index.d.ts"
6
6
  }
@@ -1,17 +1,8 @@
1
- "use strict";
2
-
3
- var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
- Object.defineProperty(exports, "__esModule", {
5
- value: true
6
- });
7
- exports.ChartsClipPath = ChartsClipPath;
8
- var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
9
- var React = _interopRequireWildcard(require("react"));
10
- var _propTypes = _interopRequireDefault(require("prop-types"));
11
- var _useDrawingArea = require("../hooks/useDrawingArea");
12
- var _jsxRuntime = require("react/jsx-runtime");
13
- function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
14
- function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
1
+ import _extends from "@babel/runtime/helpers/esm/extends";
2
+ import * as React from 'react';
3
+ import PropTypes from 'prop-types';
4
+ import { useDrawingArea } from '../hooks/useDrawingArea';
5
+ import { jsx as _jsx } from "react/jsx-runtime";
15
6
  /**
16
7
  * API:
17
8
  *
@@ -27,16 +18,16 @@ function ChartsClipPath(props) {
27
18
  top,
28
19
  width,
29
20
  height
30
- } = (0, _useDrawingArea.useDrawingArea)();
31
- const offset = (0, _extends2.default)({
21
+ } = useDrawingArea();
22
+ const offset = _extends({
32
23
  top: 0,
33
24
  right: 0,
34
25
  bottom: 0,
35
26
  left: 0
36
27
  }, offsetProps);
37
- return /*#__PURE__*/(0, _jsxRuntime.jsx)("clipPath", {
28
+ return /*#__PURE__*/_jsx("clipPath", {
38
29
  id: id,
39
- children: /*#__PURE__*/(0, _jsxRuntime.jsx)("rect", {
30
+ children: /*#__PURE__*/_jsx("rect", {
40
31
  x: left - offset.left,
41
32
  y: top - offset.top,
42
33
  width: width + offset.left + offset.right,
@@ -49,11 +40,12 @@ process.env.NODE_ENV !== "production" ? ChartsClipPath.propTypes = {
49
40
  // | These PropTypes are generated from the TypeScript type definitions |
50
41
  // | To update them edit the TypeScript types and run "pnpm proptypes" |
51
42
  // ----------------------------------------------------------------------
52
- id: _propTypes.default.string.isRequired,
53
- offset: _propTypes.default.shape({
54
- bottom: _propTypes.default.number,
55
- left: _propTypes.default.number,
56
- right: _propTypes.default.number,
57
- top: _propTypes.default.number
43
+ id: PropTypes.string.isRequired,
44
+ offset: PropTypes.shape({
45
+ bottom: PropTypes.number,
46
+ left: PropTypes.number,
47
+ right: PropTypes.number,
48
+ top: PropTypes.number
58
49
  })
59
- } : void 0;
50
+ } : void 0;
51
+ export { ChartsClipPath };