@mui/x-charts 8.28.2 → 8.29.2

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 (2076) hide show
  1. package/BarChart/AnimatedBarElement.d.mts +42 -0
  2. package/BarChart/AnimatedBarElement.mjs +21 -0
  3. package/BarChart/BarChart.d.mts +74 -0
  4. package/BarChart/BarChart.mjs +1215 -0
  5. package/BarChart/BarChart.plugins.d.mts +11 -0
  6. package/BarChart/BarChart.plugins.mjs +9 -0
  7. package/BarChart/BarClipPath.d.mts +37 -0
  8. package/BarChart/BarClipPath.mjs +122 -0
  9. package/BarChart/BarElement.d.mts +40 -0
  10. package/BarChart/BarElement.mjs +115 -0
  11. package/BarChart/BarLabel/BarLabel.d.mts +42 -0
  12. package/BarChart/BarLabel/BarLabel.mjs +130 -0
  13. package/BarChart/BarLabel/BarLabel.types.d.mts +42 -0
  14. package/BarChart/BarLabel/BarLabelItem.d.mts +87 -0
  15. package/BarChart/BarLabel/BarLabelItem.mjs +139 -0
  16. package/BarChart/BarLabel/BarLabelPlot.d.mts +32 -0
  17. package/BarChart/BarLabel/BarLabelPlot.mjs +60 -0
  18. package/BarChart/BarLabel/barLabelClasses.d.mts +40 -0
  19. package/BarChart/BarLabel/getBarLabel.d.mts +11 -0
  20. package/BarChart/BarLabel/index.d.mts +6 -0
  21. package/BarChart/BarLabel/index.mjs +2 -0
  22. package/BarChart/BarPlot.d.mts +69 -0
  23. package/BarChart/BarPlot.mjs +135 -0
  24. package/BarChart/BatchBarPlot/BarGroup.mjs +134 -0
  25. package/BarChart/BatchBarPlot/BatchBarPlot.d.mts +12 -0
  26. package/BarChart/BatchBarPlot/BatchBarPlot.mjs +135 -0
  27. package/BarChart/BatchBarPlot/index.d.mts +1 -0
  28. package/BarChart/BatchBarPlot/index.mjs +1 -0
  29. package/BarChart/BatchBarPlot/useCreateBarPaths.d.mts +8 -0
  30. package/BarChart/BatchBarPlot/useCreateBarPaths.mjs +46 -0
  31. package/BarChart/FocusedBar.mjs +65 -0
  32. package/BarChart/IndividualBarPlot.d.mts +21 -0
  33. package/BarChart/IndividualBarPlot.mjs +98 -0
  34. package/BarChart/barClasses.d.mts +32 -0
  35. package/BarChart/barElementClasses.d.mts +38 -0
  36. package/BarChart/checkBarChartScaleErrors.d.mts +7 -0
  37. package/BarChart/checkBarChartScaleErrors.mjs +32 -0
  38. package/BarChart/index.d.mts +10 -0
  39. package/BarChart/index.mjs +8 -0
  40. package/BarChart/seriesConfig/bar/extremums.d.mts +3 -0
  41. package/BarChart/seriesConfig/bar/extremums.mjs +74 -0
  42. package/BarChart/seriesConfig/bar/getColor.d.mts +3 -0
  43. package/BarChart/seriesConfig/bar/getColor.mjs +57 -0
  44. package/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.d.mts +22 -0
  45. package/BarChart/seriesConfig/bar/keyboardFocusHandler.d.mts +3 -0
  46. package/BarChart/seriesConfig/bar/keyboardFocusHandler.mjs +17 -0
  47. package/BarChart/seriesConfig/bar/legend.d.mts +3 -0
  48. package/BarChart/seriesConfig/bar/legend.mjs +23 -0
  49. package/BarChart/seriesConfig/bar/seriesProcessor.d.mts +3 -0
  50. package/BarChart/seriesConfig/bar/seriesProcessor.mjs +104 -0
  51. package/BarChart/seriesConfig/bar/tooltip.d.mts +4 -0
  52. package/BarChart/seriesConfig/bar/tooltip.mjs +37 -0
  53. package/BarChart/seriesConfig/bar/tooltipPosition.d.mts +3 -0
  54. package/BarChart/seriesConfig/bar/tooltipPosition.mjs +61 -0
  55. package/BarChart/seriesConfig/index.d.mts +2 -0
  56. package/BarChart/seriesConfig/index.mjs +22 -0
  57. package/BarChart/types.d.mts +35 -0
  58. package/BarChart/useBarChartProps.d.mts +38 -0
  59. package/BarChart/useBarChartProps.mjs +158 -0
  60. package/BarChart/useBarPlotData.d.mts +23 -0
  61. package/BarChart/useBarPlotData.mjs +127 -0
  62. package/BarChart/useRegisterItemClickHandlers.d.mts +6 -0
  63. package/BarChart/useRegisterItemClickHandlers.mjs +67 -0
  64. package/CHANGELOG.md +406 -0
  65. package/ChartContainer/ChartContainer.d.mts +22 -0
  66. package/ChartContainer/ChartContainer.mjs +20 -0
  67. package/ChartContainer/index.d.mts +8 -0
  68. package/ChartContainer/index.mjs +6 -0
  69. package/ChartContainer/useChartContainerProps.d.mts +14 -0
  70. package/ChartContainer/useChartContainerProps.mjs +14 -0
  71. package/ChartDataProvider/ChartDataProvider.d.mts +20 -0
  72. package/ChartDataProvider/ChartDataProvider.mjs +20 -0
  73. package/ChartDataProvider/index.d.mts +1 -0
  74. package/ChartDataProvider/index.mjs +1 -0
  75. package/ChartDataProvider/useChartDataProviderProps.d.mts +10 -0
  76. package/ChartDataProvider/useChartDataProviderProps.mjs +8 -0
  77. package/ChartsAxis/ChartsAxis.d.mts +27 -0
  78. package/ChartsAxis/ChartsAxis.mjs +69 -0
  79. package/ChartsAxis/index.d.mts +2 -0
  80. package/ChartsAxis/index.mjs +2 -0
  81. package/ChartsAxisHighlight/ChartsAxisHighlight.d.mts +15 -0
  82. package/ChartsAxisHighlight/ChartsAxisHighlight.mjs +50 -0
  83. package/ChartsAxisHighlight/ChartsAxisHighlightPath.d.mts +6 -0
  84. package/ChartsAxisHighlight/ChartsXAxisHighlight.d.mts +9 -0
  85. package/ChartsAxisHighlight/ChartsXAxisHighlight.mjs +59 -0
  86. package/ChartsAxisHighlight/ChartsYAxisHighlight.d.mts +9 -0
  87. package/ChartsAxisHighlight/ChartsYAxisHighlight.mjs +59 -0
  88. package/ChartsAxisHighlight/index.d.mts +4 -0
  89. package/ChartsAxisHighlight/index.mjs +4 -0
  90. package/ChartsBrushOverlay/ChartsBrushOverlay.mjs +94 -0
  91. package/ChartsBrushOverlay/index.d.mts +4 -0
  92. package/ChartsBrushOverlay/index.mjs +2 -0
  93. package/ChartsClipPath/ChartsClipPath.mjs +60 -0
  94. package/ChartsClipPath/index.d.mts +1 -0
  95. package/ChartsClipPath/index.mjs +1 -0
  96. package/ChartsContainer/ChartsContainer.d.mts +37 -0
  97. package/ChartsContainer/ChartsContainer.mjs +1696 -0
  98. package/ChartsContainer/index.d.mts +1 -0
  99. package/ChartsContainer/index.mjs +1 -0
  100. package/ChartsContainer/useChartsContainerProps.d.mts +15 -0
  101. package/ChartsContainer/useChartsContainerProps.mjs +97 -0
  102. package/ChartsDataProvider/ChartsDataProvider.d.mts +51 -0
  103. package/ChartsDataProvider/ChartsDataProvider.mjs +132 -0
  104. package/ChartsDataProvider/index.d.mts +1 -0
  105. package/ChartsDataProvider/index.mjs +1 -0
  106. package/ChartsDataProvider/useChartsDataProviderProps.d.mts +13 -0
  107. package/ChartsDataProvider/useChartsDataProviderProps.js +1 -1
  108. package/ChartsDataProvider/useChartsDataProviderProps.mjs +38 -0
  109. package/ChartsGrid/ChartsGrid.d.mts +29 -0
  110. package/ChartsGrid/ChartsGrid.mjs +90 -0
  111. package/ChartsGrid/ChartsHorizontalGrid.d.mts +13 -0
  112. package/ChartsGrid/ChartsHorizontalGrid.mjs +45 -0
  113. package/ChartsGrid/ChartsVerticalGrid.d.mts +13 -0
  114. package/ChartsGrid/ChartsVerticalGrid.mjs +45 -0
  115. package/ChartsGrid/index.d.mts +2 -0
  116. package/ChartsGrid/index.mjs +2 -0
  117. package/ChartsGrid/styledComponents.mjs +21 -0
  118. package/ChartsLabel/ChartsLabel.d.mts +18 -0
  119. package/ChartsLabel/ChartsLabel.mjs +43 -0
  120. package/ChartsLabel/ChartsLabelGradient.d.mts +41 -0
  121. package/ChartsLabel/ChartsLabelGradient.mjs +134 -0
  122. package/ChartsLabel/ChartsLabelMark.d.mts +32 -0
  123. package/ChartsLabel/ChartsLabelMark.mjs +123 -0
  124. package/ChartsLabel/index.d.mts +9 -0
  125. package/ChartsLabel/index.mjs +5 -0
  126. package/ChartsLabel/labelClasses.d.mts +8 -0
  127. package/ChartsLabel/labelGradientClasses.d.mts +16 -0
  128. package/ChartsLabel/labelMarkClasses.d.mts +18 -0
  129. package/ChartsLegend/ChartsLegend.d.mts +33 -0
  130. package/ChartsLegend/ChartsLegend.mjs +185 -0
  131. package/ChartsLegend/ContinuousColorLegend.d.mts +57 -0
  132. package/ChartsLegend/ContinuousColorLegend.mjs +271 -0
  133. package/ChartsLegend/PiecewiseColorLegend.d.mts +43 -0
  134. package/ChartsLegend/PiecewiseColorLegend.mjs +277 -0
  135. package/ChartsLegend/chartsLegend.types.d.mts +26 -0
  136. package/ChartsLegend/chartsLegendClasses.d.mts +22 -0
  137. package/ChartsLegend/colorLegend.types.d.mts +13 -0
  138. package/ChartsLegend/continuousColorLegendClasses.d.mts +26 -0
  139. package/ChartsLegend/index.d.mts +16 -0
  140. package/ChartsLegend/index.mjs +12 -0
  141. package/ChartsLegend/legend.types.d.mts +9 -0
  142. package/ChartsLegend/legendContext.types.d.mts +67 -0
  143. package/ChartsLegend/onClickContextBuilder.d.mts +2 -0
  144. package/ChartsLegend/piecewiseColorDefaultLabelFormatter.d.mts +2 -0
  145. package/ChartsLegend/piecewiseColorLegendClasses.d.mts +32 -0
  146. package/ChartsLegend/useAxis.d.mts +10 -0
  147. package/ChartsLegend/useAxis.mjs +42 -0
  148. package/ChartsLocalizationProvider/ChartsLocalizationProvider.d.mts +27 -0
  149. package/ChartsLocalizationProvider/ChartsLocalizationProvider.mjs +64 -0
  150. package/ChartsLocalizationProvider/index.d.mts +2 -0
  151. package/ChartsLocalizationProvider/index.mjs +1 -0
  152. package/ChartsOverlay/ChartsLoadingOverlay.d.mts +2 -0
  153. package/ChartsOverlay/ChartsLoadingOverlay.mjs +42 -0
  154. package/ChartsOverlay/ChartsNoDataOverlay.d.mts +2 -0
  155. package/ChartsOverlay/ChartsNoDataOverlay.mjs +42 -0
  156. package/ChartsOverlay/ChartsOverlay.mjs +43 -0
  157. package/ChartsOverlay/index.d.mts +4 -0
  158. package/ChartsOverlay/index.mjs +3 -0
  159. package/ChartsReferenceLine/ChartsReferenceLine.d.mts +9 -0
  160. package/ChartsReferenceLine/ChartsReferenceLine.mjs +75 -0
  161. package/ChartsReferenceLine/ChartsXReferenceLine.d.mts +15 -0
  162. package/ChartsReferenceLine/ChartsXReferenceLine.mjs +153 -0
  163. package/ChartsReferenceLine/ChartsYReferenceLine.d.mts +15 -0
  164. package/ChartsReferenceLine/ChartsYReferenceLine.mjs +153 -0
  165. package/ChartsReferenceLine/common.d.mts +43 -0
  166. package/ChartsReferenceLine/common.mjs +25 -0
  167. package/ChartsReferenceLine/index.d.mts +4 -0
  168. package/ChartsReferenceLine/index.mjs +3 -0
  169. package/ChartsSurface/ChartsSurface.mjs +122 -0
  170. package/ChartsSurface/index.d.mts +2 -0
  171. package/ChartsSurface/index.mjs +2 -0
  172. package/ChartsText/ChartsText.d.mts +17 -0
  173. package/ChartsText/ChartsText.mjs +89 -0
  174. package/ChartsText/defaultTextPlacement.d.mts +9 -0
  175. package/ChartsText/defaultTextPlacement.mjs +34 -0
  176. package/ChartsText/index.d.mts +3 -0
  177. package/ChartsText/index.mjs +1 -0
  178. package/ChartsTooltip/ChartTooltip.types.d.mts +15 -0
  179. package/ChartsTooltip/ChartsAxisTooltipContent.d.mts +14 -0
  180. package/ChartsTooltip/ChartsAxisTooltipContent.mjs +79 -0
  181. package/ChartsTooltip/ChartsItemTooltipContent.d.mts +14 -0
  182. package/ChartsTooltip/ChartsItemTooltipContent.mjs +108 -0
  183. package/ChartsTooltip/ChartsTooltip.d.mts +17 -0
  184. package/ChartsTooltip/ChartsTooltip.mjs +207 -0
  185. package/ChartsTooltip/ChartsTooltipContainer.d.mts +42 -0
  186. package/ChartsTooltip/ChartsTooltipContainer.mjs +363 -0
  187. package/ChartsTooltip/ChartsTooltipTable.mjs +98 -0
  188. package/ChartsTooltip/index.d.mts +14 -0
  189. package/ChartsTooltip/index.mjs +11 -0
  190. package/ChartsTooltip/useAxesTooltip.d.mts +7 -0
  191. package/ChartsTooltip/useAxesTooltip.mjs +12 -0
  192. package/ChartsTooltip/useAxisTooltip.d.mts +42 -0
  193. package/ChartsTooltip/useAxisTooltip.mjs +176 -0
  194. package/ChartsTooltip/useItemTooltip.d.mts +16 -0
  195. package/ChartsTooltip/useItemTooltip.mjs +76 -0
  196. package/ChartsTooltip/utils.mjs +59 -0
  197. package/ChartsWrapper/ChartsWrapper.d.mts +37 -0
  198. package/ChartsWrapper/ChartsWrapper.mjs +163 -0
  199. package/ChartsWrapper/index.d.mts +1 -0
  200. package/ChartsWrapper/index.mjs +1 -0
  201. package/ChartsXAxis/ChartsGroupedXAxisTicks.d.mts +7 -0
  202. package/ChartsXAxis/ChartsGroupedXAxisTicks.mjs +94 -0
  203. package/ChartsXAxis/ChartsSingleXAxisTicks.d.mts +11 -0
  204. package/ChartsXAxis/ChartsSingleXAxisTicks.mjs +106 -0
  205. package/ChartsXAxis/ChartsXAxis.d.mts +15 -0
  206. package/ChartsXAxis/ChartsXAxis.mjs +139 -0
  207. package/ChartsXAxis/ChartsXAxisImpl.d.mts +12 -0
  208. package/ChartsXAxis/ChartsXAxisImpl.js +1 -1
  209. package/ChartsXAxis/ChartsXAxisImpl.mjs +117 -0
  210. package/ChartsXAxis/getVisibleLabels.d.mts +14 -0
  211. package/ChartsXAxis/getVisibleLabels.mjs +91 -0
  212. package/ChartsXAxis/index.d.mts +1 -0
  213. package/ChartsXAxis/index.mjs +1 -0
  214. package/ChartsXAxis/shortenLabels.d.mts +4 -0
  215. package/ChartsXAxis/shortenLabels.mjs +42 -0
  216. package/ChartsXAxis/useAxisTicksProps.d.mts +3810 -0
  217. package/ChartsXAxis/useAxisTicksProps.js +1 -1
  218. package/ChartsXAxis/useAxisTicksProps.mjs +74 -0
  219. package/ChartsXAxis/utilities.d.mts +10 -0
  220. package/ChartsXAxis/utilities.mjs +29 -0
  221. package/ChartsYAxis/ChartsGroupedYAxisTicks.d.mts +6 -0
  222. package/ChartsYAxis/ChartsGroupedYAxisTicks.mjs +95 -0
  223. package/ChartsYAxis/ChartsSingleYAxisTicks.d.mts +11 -0
  224. package/ChartsYAxis/ChartsSingleYAxisTicks.mjs +96 -0
  225. package/ChartsYAxis/ChartsYAxis.d.mts +15 -0
  226. package/ChartsYAxis/ChartsYAxis.mjs +133 -0
  227. package/ChartsYAxis/ChartsYAxisImpl.d.mts +12 -0
  228. package/ChartsYAxis/ChartsYAxisImpl.js +1 -1
  229. package/ChartsYAxis/ChartsYAxisImpl.mjs +133 -0
  230. package/ChartsYAxis/index.d.mts +1 -0
  231. package/ChartsYAxis/index.mjs +1 -0
  232. package/ChartsYAxis/shortenLabels.d.mts +4 -0
  233. package/ChartsYAxis/shortenLabels.mjs +41 -0
  234. package/ChartsYAxis/useAxisTicksProps.d.mts +3728 -0
  235. package/ChartsYAxis/useAxisTicksProps.js +1 -1
  236. package/ChartsYAxis/useAxisTicksProps.mjs +72 -0
  237. package/ChartsYAxis/utilities.d.mts +9 -0
  238. package/ChartsYAxis/utilities.mjs +28 -0
  239. package/Gauge/Gauge.d.mts +10 -0
  240. package/Gauge/Gauge.mjs +145 -0
  241. package/Gauge/GaugeContainer.d.mts +10 -0
  242. package/Gauge/GaugeContainer.mjs +183 -0
  243. package/Gauge/GaugeProvider.mjs +89 -0
  244. package/Gauge/GaugeReferenceArc.mjs +45 -0
  245. package/Gauge/GaugeValueArc.mjs +102 -0
  246. package/Gauge/GaugeValueText.d.mts +14 -0
  247. package/Gauge/GaugeValueText.mjs +72 -0
  248. package/Gauge/index.d.mts +7 -0
  249. package/Gauge/index.mjs +7 -0
  250. package/Gauge/utils.mjs +66 -0
  251. package/LineChart/AnimatedArea.d.mts +26 -0
  252. package/LineChart/AnimatedArea.mjs +64 -0
  253. package/LineChart/AnimatedLine.d.mts +23 -0
  254. package/LineChart/AnimatedLine.mjs +71 -0
  255. package/LineChart/AppearingMask.d.mts +17 -0
  256. package/LineChart/AppearingMask.mjs +50 -0
  257. package/LineChart/AreaElement.d.mts +82 -0
  258. package/LineChart/AreaElement.mjs +136 -0
  259. package/LineChart/AreaPlot.d.mts +29 -0
  260. package/LineChart/AreaPlot.mjs +113 -0
  261. package/LineChart/CircleMarkElement.d.mts +45 -0
  262. package/LineChart/CircleMarkElement.mjs +114 -0
  263. package/LineChart/FocusedLineMark.mjs +41 -0
  264. package/LineChart/LineChart.d.mts +90 -0
  265. package/LineChart/LineChart.mjs +1211 -0
  266. package/LineChart/LineChart.plugins.d.mts +11 -0
  267. package/LineChart/LineChart.plugins.mjs +9 -0
  268. package/LineChart/LineElement.d.mts +86 -0
  269. package/LineChart/LineElement.mjs +140 -0
  270. package/LineChart/LineHighlightElement.d.mts +48 -0
  271. package/LineChart/LineHighlightElement.d.ts +2 -2
  272. package/LineChart/LineHighlightElement.mjs +100 -0
  273. package/LineChart/LineHighlightPlot.d.mts +36 -0
  274. package/LineChart/LineHighlightPlot.mjs +123 -0
  275. package/LineChart/LinePlot.d.mts +28 -0
  276. package/LineChart/LinePlot.mjs +115 -0
  277. package/LineChart/MarkElement.d.mts +47 -0
  278. package/LineChart/MarkElement.mjs +130 -0
  279. package/LineChart/MarkPlot.d.mts +42 -0
  280. package/LineChart/MarkPlot.mjs +151 -0
  281. package/LineChart/index.d.mts +17 -0
  282. package/LineChart/index.mjs +15 -0
  283. package/LineChart/lineClasses.d.mts +34 -0
  284. package/LineChart/markElementClasses.d.mts +43 -0
  285. package/LineChart/seriesConfig/extremums.d.mts +3 -0
  286. package/LineChart/seriesConfig/extremums.mjs +56 -0
  287. package/LineChart/seriesConfig/getColor.d.mts +3 -0
  288. package/LineChart/seriesConfig/getColor.mjs +55 -0
  289. package/LineChart/seriesConfig/getSeriesWithDefaultValues.d.mts +3 -0
  290. package/LineChart/seriesConfig/index.d.mts +2 -0
  291. package/LineChart/seriesConfig/index.mjs +22 -0
  292. package/LineChart/seriesConfig/keyboardFocusHandler.d.mts +3 -0
  293. package/LineChart/seriesConfig/keyboardFocusHandler.mjs +17 -0
  294. package/LineChart/seriesConfig/legend.d.mts +3 -0
  295. package/LineChart/seriesConfig/legend.mjs +23 -0
  296. package/LineChart/seriesConfig/seriesProcessor.d.mts +3 -0
  297. package/LineChart/seriesConfig/seriesProcessor.mjs +106 -0
  298. package/LineChart/seriesConfig/tooltip.d.mts +4 -0
  299. package/LineChart/seriesConfig/tooltip.mjs +31 -0
  300. package/LineChart/seriesConfig/tooltipPosition.d.mts +3 -0
  301. package/LineChart/useAreaPlotData.d.mts +12 -0
  302. package/LineChart/useAreaPlotData.mjs +120 -0
  303. package/LineChart/useLineChartProps.d.mts +40 -0
  304. package/LineChart/useLineChartProps.mjs +143 -0
  305. package/LineChart/useLinePlotData.d.mts +12 -0
  306. package/LineChart/useLinePlotData.mjs +109 -0
  307. package/LineChart/useMarkPlotData.d.mts +19 -0
  308. package/LineChart/useMarkPlotData.mjs +102 -0
  309. package/PieChart/FocusedPieArc.d.mts +2 -0
  310. package/PieChart/FocusedPieArc.mjs +57 -0
  311. package/PieChart/PieArc.d.mts +70 -0
  312. package/PieChart/PieArc.mjs +155 -0
  313. package/PieChart/PieArcLabel.d.mts +67 -0
  314. package/PieChart/PieArcLabel.mjs +147 -0
  315. package/PieChart/PieArcLabelPlot.d.mts +36 -0
  316. package/PieChart/PieArcLabelPlot.mjs +188 -0
  317. package/PieChart/PieArcPlot.d.mts +43 -0
  318. package/PieChart/PieArcPlot.mjs +166 -0
  319. package/PieChart/PieChart.d.mts +57 -0
  320. package/PieChart/PieChart.mjs +281 -0
  321. package/PieChart/PieChart.plugins.d.mts +8 -0
  322. package/PieChart/PieChart.plugins.mjs +6 -0
  323. package/PieChart/PiePlot.d.mts +32 -0
  324. package/PieChart/PiePlot.mjs +127 -0
  325. package/PieChart/dataTransform/getModifiedArcProperties.d.mts +11 -0
  326. package/PieChart/dataTransform/getModifiedArcProperties.mjs +36 -0
  327. package/PieChart/dataTransform/useTransformData.d.mts +17 -0
  328. package/PieChart/dataTransform/useTransformData.mjs +53 -0
  329. package/PieChart/getPieCoordinates.d.mts +7 -0
  330. package/PieChart/getPieCoordinates.mjs +19 -0
  331. package/PieChart/index.d.mts +10 -0
  332. package/PieChart/index.mjs +9 -0
  333. package/PieChart/pieClasses.d.mts +33 -0
  334. package/PieChart/seriesConfig/getColor.d.mts +3 -0
  335. package/PieChart/seriesConfig/getSeriesWithDefaultValues.d.mts +3 -0
  336. package/PieChart/seriesConfig/index.d.mts +2 -0
  337. package/PieChart/seriesConfig/index.mjs +20 -0
  338. package/PieChart/seriesConfig/keyboardFocusHandler.d.mts +3 -0
  339. package/PieChart/seriesConfig/keyboardFocusHandler.mjs +17 -0
  340. package/PieChart/seriesConfig/legend.d.mts +3 -0
  341. package/PieChart/seriesConfig/legend.mjs +28 -0
  342. package/PieChart/seriesConfig/seriesLayout.d.mts +3 -0
  343. package/PieChart/seriesConfig/seriesLayout.mjs +42 -0
  344. package/PieChart/seriesConfig/seriesProcessor.d.mts +3 -0
  345. package/PieChart/seriesConfig/seriesProcessor.mjs +87 -0
  346. package/PieChart/seriesConfig/tooltip.d.mts +3 -0
  347. package/PieChart/seriesConfig/tooltip.mjs +32 -0
  348. package/PieChart/seriesConfig/tooltipPosition.d.mts +3 -0
  349. package/PieChart/seriesConfig/tooltipPosition.mjs +60 -0
  350. package/RadarChart/FocusedRadarMark.mjs +28 -0
  351. package/RadarChart/RadarAxis/RadarAxis.d.mts +29 -0
  352. package/RadarChart/RadarAxis/RadarAxis.mjs +96 -0
  353. package/RadarChart/RadarAxis/RadarAxis.utils.d.mts +20 -0
  354. package/RadarChart/RadarAxis/index.d.mts +3 -0
  355. package/RadarChart/RadarAxis/index.mjs +3 -0
  356. package/RadarChart/RadarAxis/useRadarAxis.mjs +75 -0
  357. package/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.mts +12 -0
  358. package/RadarChart/RadarAxisHighlight/RadarAxisHighlight.mjs +76 -0
  359. package/RadarChart/RadarAxisHighlight/index.d.mts +1 -0
  360. package/RadarChart/RadarAxisHighlight/index.mjs +1 -0
  361. package/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.d.mts +51 -0
  362. package/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.mjs +58 -0
  363. package/RadarChart/RadarChart.d.mts +46 -0
  364. package/RadarChart/RadarChart.mjs +287 -0
  365. package/RadarChart/RadarChart.plugins.d.mts +8 -0
  366. package/RadarChart/RadarChart.plugins.mjs +7 -0
  367. package/RadarChart/RadarDataProvider/RadarDataProvider.d.mts +25 -0
  368. package/RadarChart/RadarDataProvider/RadarDataProvider.mjs +86 -0
  369. package/RadarChart/RadarDataProvider/index.d.mts +1 -0
  370. package/RadarChart/RadarDataProvider/index.mjs +1 -0
  371. package/RadarChart/RadarDataProvider/radar.types.d.mts +43 -0
  372. package/RadarChart/RadarGrid/CircularRadarGrid.d.mts +5 -0
  373. package/RadarChart/RadarGrid/CircularRadarStripes.d.mts +5 -0
  374. package/RadarChart/RadarGrid/RadarGrid.d.mts +6 -0
  375. package/RadarChart/RadarGrid/RadarGrid.mjs +96 -0
  376. package/RadarChart/RadarGrid/RadarGrid.types.d.mts +49 -0
  377. package/RadarChart/RadarGrid/SharpRadarGrid.d.mts +5 -0
  378. package/RadarChart/RadarGrid/SharpRadarStripes.d.mts +5 -0
  379. package/RadarChart/RadarGrid/index.d.mts +2 -0
  380. package/RadarChart/RadarGrid/index.mjs +2 -0
  381. package/RadarChart/RadarGrid/useRadarGridData.mjs +40 -0
  382. package/RadarChart/RadarMetricLabels/RadarMetricLabels.mjs +35 -0
  383. package/RadarChart/RadarMetricLabels/index.d.mts +1 -0
  384. package/RadarChart/RadarMetricLabels/index.mjs +1 -0
  385. package/RadarChart/RadarMetricLabels/useRadarMetricData.mjs +37 -0
  386. package/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.mts +23 -0
  387. package/RadarChart/RadarSeriesPlot/RadarSeriesArea.mjs +111 -0
  388. package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.mts +23 -0
  389. package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.mjs +108 -0
  390. package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.d.mts +6 -0
  391. package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.mjs +108 -0
  392. package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.mts +46 -0
  393. package/RadarChart/RadarSeriesPlot/index.d.mts +6 -0
  394. package/RadarChart/RadarSeriesPlot/index.mjs +4 -0
  395. package/RadarChart/RadarSeriesPlot/useInteractionAllItemProps.d.mts +7 -0
  396. package/RadarChart/RadarSeriesPlot/useInteractionAllItemProps.mjs +18 -0
  397. package/RadarChart/RadarSeriesPlot/useRadarRotationIndex.mjs +31 -0
  398. package/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.mts +32 -0
  399. package/RadarChart/RadarSeriesPlot/useRadarSeriesData.mjs +69 -0
  400. package/RadarChart/index.d.mts +22 -0
  401. package/RadarChart/index.mjs +22 -0
  402. package/RadarChart/seriesConfig/extremums.d.mts +3 -0
  403. package/RadarChart/seriesConfig/getColor.d.mts +3 -0
  404. package/RadarChart/seriesConfig/getColor.mjs +15 -0
  405. package/RadarChart/seriesConfig/getSeriesWithDefaultValues.d.mts +3 -0
  406. package/RadarChart/seriesConfig/index.d.mts +2 -0
  407. package/RadarChart/seriesConfig/index.mjs +22 -0
  408. package/RadarChart/seriesConfig/keyboardFocusHandler.d.mts +3 -0
  409. package/RadarChart/seriesConfig/keyboardFocusHandler.mjs +17 -0
  410. package/RadarChart/seriesConfig/legend.d.mts +3 -0
  411. package/RadarChart/seriesConfig/legend.mjs +23 -0
  412. package/RadarChart/seriesConfig/seriesProcessor.d.mts +3 -0
  413. package/RadarChart/seriesConfig/tooltip.d.mts +4 -0
  414. package/RadarChart/seriesConfig/tooltip.mjs +39 -0
  415. package/RadarChart/seriesConfig/tooltipPosition.d.mts +3 -0
  416. package/RadarChart/seriesConfig/tooltipPosition.mjs +100 -0
  417. package/RadarChart/useRadarChartProps.d.mts +28 -0
  418. package/RadarChart/useRadarChartProps.mjs +93 -0
  419. package/ScatterChart/BatchScatter.d.mts +32 -0
  420. package/ScatterChart/BatchScatter.mjs +159 -0
  421. package/ScatterChart/FocusedScatterMark.mjs +54 -0
  422. package/ScatterChart/Scatter.d.mts +44 -0
  423. package/ScatterChart/Scatter.mjs +115 -0
  424. package/ScatterChart/ScatterChart.d.mts +85 -0
  425. package/ScatterChart/ScatterChart.mjs +1215 -0
  426. package/ScatterChart/ScatterChart.plugins.d.mts +12 -0
  427. package/ScatterChart/ScatterChart.plugins.mjs +10 -0
  428. package/ScatterChart/ScatterMarker.d.mts +46 -0
  429. package/ScatterChart/ScatterMarker.types.d.mts +24 -0
  430. package/ScatterChart/ScatterPlot.d.mts +46 -0
  431. package/ScatterChart/ScatterPlot.mjs +129 -0
  432. package/ScatterChart/index.d.mts +9 -0
  433. package/ScatterChart/index.mjs +8 -0
  434. package/ScatterChart/seriesConfig/extremums.d.mts +3 -0
  435. package/ScatterChart/seriesConfig/getColor.d.mts +3 -0
  436. package/ScatterChart/seriesConfig/getColor.mjs +81 -0
  437. package/ScatterChart/seriesConfig/getSeriesWithDefaultValues.d.mts +3 -0
  438. package/ScatterChart/seriesConfig/index.d.mts +2 -0
  439. package/ScatterChart/seriesConfig/index.mjs +21 -0
  440. package/ScatterChart/seriesConfig/keyboardFocusHandler.d.mts +3 -0
  441. package/ScatterChart/seriesConfig/keyboardFocusHandler.mjs +17 -0
  442. package/ScatterChart/seriesConfig/legend.d.mts +3 -0
  443. package/ScatterChart/seriesConfig/legend.mjs +23 -0
  444. package/ScatterChart/seriesConfig/seriesProcessor.d.mts +3 -0
  445. package/ScatterChart/seriesConfig/tooltip.d.mts +3 -0
  446. package/ScatterChart/seriesConfig/tooltip.mjs +25 -0
  447. package/ScatterChart/seriesConfig/tooltipPosition.d.mts +3 -0
  448. package/ScatterChart/useScatterChartProps.d.mts +29 -0
  449. package/ScatterChart/useScatterChartProps.mjs +110 -0
  450. package/ScatterChart/useScatterPlotData.d.mts +8 -0
  451. package/ScatterChart/useScatterPlotData.mjs +26 -0
  452. package/SparkLineChart/SparkLineChart.d.mts +129 -0
  453. package/SparkLineChart/SparkLineChart.mjs +1367 -0
  454. package/SparkLineChart/index.d.mts +1 -0
  455. package/SparkLineChart/index.mjs +1 -0
  456. package/Toolbar/Toolbar.mjs +58 -0
  457. package/Toolbar/ToolbarButton.d.mts +11 -0
  458. package/Toolbar/ToolbarButton.mjs +56 -0
  459. package/Toolbar/index.d.mts +4 -0
  460. package/Toolbar/index.mjs +4 -0
  461. package/colorPalettes/categorical/blueberryTwilight.d.mts +4 -0
  462. package/colorPalettes/categorical/cheerfulFiesta.d.mts +4 -0
  463. package/colorPalettes/categorical/mangoFusion.d.mts +4 -0
  464. package/colorPalettes/categorical/rainbowSurge.d.mts +4 -0
  465. package/colorPalettes/index.d.mts +14 -0
  466. package/colorPalettes/index.mjs +20 -0
  467. package/colorPalettes/sequential/blue.d.mts +4 -0
  468. package/colorPalettes/sequential/cyan.d.mts +4 -0
  469. package/colorPalettes/sequential/green.d.mts +4 -0
  470. package/colorPalettes/sequential/orange.d.mts +4 -0
  471. package/colorPalettes/sequential/pink.d.mts +4 -0
  472. package/colorPalettes/sequential/purple.d.mts +4 -0
  473. package/colorPalettes/sequential/red.d.mts +4 -0
  474. package/colorPalettes/sequential/strawberrySky.d.mts +4 -0
  475. package/colorPalettes/sequential/yellow.d.mts +4 -0
  476. package/context/ChartApi.d.mts +22 -0
  477. package/context/ChartProvider/ChartContext.d.mts +5 -0
  478. package/context/ChartProvider/ChartContext.mjs +9 -0
  479. package/context/ChartProvider/ChartProvider.d.mts +5 -0
  480. package/context/ChartProvider/ChartProvider.mjs +8 -0
  481. package/context/ChartProvider/ChartProvider.types.d.mts +15 -0
  482. package/context/ChartProvider/index.d.mts +3 -0
  483. package/context/ChartProvider/index.mjs +3 -0
  484. package/context/ChartProvider/useChartContext.d.mts +4 -0
  485. package/context/ChartProvider/useChartContext.mjs +8 -0
  486. package/context/ChartsProvider/ChartsContext.d.mts +6 -0
  487. package/context/ChartsProvider/ChartsProvider.d.mts +8 -0
  488. package/context/ChartsProvider/ChartsProvider.mjs +41 -0
  489. package/context/ChartsProvider/ChartsProvider.types.d.mts +40 -0
  490. package/context/ChartsProvider/index.d.mts +3 -0
  491. package/context/ChartsProvider/index.mjs +3 -0
  492. package/context/ChartsProvider/useChartsContext.d.mts +3 -0
  493. package/context/ChartsProvider/useChartsContext.mjs +11 -0
  494. package/context/ChartsSlotsContext.d.mts +20 -0
  495. package/context/index.d.mts +3 -0
  496. package/context/index.mjs +2 -0
  497. package/context/useChartApiContext.d.mts +10 -0
  498. package/context/useChartApiContext.mjs +21 -0
  499. package/hooks/animation/index.d.mts +7 -0
  500. package/hooks/animation/index.mjs +7 -0
  501. package/hooks/animation/useAnimate.mjs +49 -0
  502. package/hooks/animation/useAnimateArea.d.mts +15 -0
  503. package/hooks/animation/useAnimateArea.mjs +24 -0
  504. package/hooks/animation/useAnimateBar.d.mts +17 -0
  505. package/hooks/animation/useAnimateBar.mjs +50 -0
  506. package/hooks/animation/useAnimateBarLabel.d.mts +19 -0
  507. package/hooks/animation/useAnimateBarLabel.mjs +102 -0
  508. package/hooks/animation/useAnimateGaugeValueArc.mjs +54 -0
  509. package/hooks/animation/useAnimateLine.d.mts +14 -0
  510. package/hooks/animation/useAnimateLine.mjs +23 -0
  511. package/hooks/animation/useAnimatePieArc.d.mts +15 -0
  512. package/hooks/animation/useAnimatePieArc.mjs +62 -0
  513. package/hooks/animation/useAnimatePieArcLabel.d.mts +24 -0
  514. package/hooks/animation/useAnimatePieArcLabel.mjs +68 -0
  515. package/hooks/index.d.mts +23 -0
  516. package/hooks/index.mjs +23 -0
  517. package/hooks/useAxis.d.mts +151 -0
  518. package/hooks/useAxis.mjs +222 -0
  519. package/hooks/useAxisSystem.mjs +25 -0
  520. package/hooks/useBarSeries.d.mts +36 -0
  521. package/hooks/useBarSeries.mjs +41 -0
  522. package/hooks/useBrush.mjs +15 -0
  523. package/hooks/useChartGradientId.d.mts +31 -0
  524. package/hooks/useChartGradientId.mjs +47 -0
  525. package/hooks/useChartId.mjs +13 -0
  526. package/hooks/useChartRootRef.mjs +12 -0
  527. package/hooks/useChartsLocalization.d.mts +1 -0
  528. package/hooks/useChartsLocalization.mjs +11 -0
  529. package/hooks/useColorScale.d.mts +22 -0
  530. package/hooks/useColorScale.mjs +37 -0
  531. package/hooks/useDataset.d.mts +6 -0
  532. package/hooks/useDataset.mjs +12 -0
  533. package/hooks/useDrawingArea.mjs +15 -0
  534. package/hooks/useFocusedItem.d.mts +4 -0
  535. package/hooks/useFocusedItem.mjs +12 -0
  536. package/hooks/useInteractionItemProps.d.mts +18 -0
  537. package/hooks/useInteractionItemProps.mjs +73 -0
  538. package/hooks/useIsItemFocused.d.mts +13 -0
  539. package/hooks/useIsItemFocused.mjs +16 -0
  540. package/hooks/useIsItemFocusedGetter.d.mts +9 -0
  541. package/hooks/useIsItemFocusedGetter.mjs +15 -0
  542. package/hooks/useItemHighlighted.d.mts +23 -0
  543. package/hooks/useItemHighlighted.mjs +22 -0
  544. package/hooks/useItemHighlightedGetter.d.mts +12 -0
  545. package/hooks/useItemHighlightedGetter.mjs +21 -0
  546. package/hooks/useLegend.d.mts +13 -0
  547. package/hooks/useLegend.mjs +29 -0
  548. package/hooks/useLineSeries.d.mts +36 -0
  549. package/hooks/useLineSeries.mjs +41 -0
  550. package/hooks/usePieSeries.d.mts +41 -0
  551. package/hooks/usePieSeries.mjs +52 -0
  552. package/hooks/useRadarSeries.d.mts +35 -0
  553. package/hooks/useRadarSeries.mjs +40 -0
  554. package/hooks/useScale.d.mts +47 -0
  555. package/hooks/useScale.mjs +74 -0
  556. package/hooks/useScatterSeries.d.mts +35 -0
  557. package/hooks/useScatterSeries.mjs +40 -0
  558. package/hooks/useSeries.d.mts +7 -0
  559. package/hooks/useSeries.mjs +14 -0
  560. package/hooks/useSkipAnimation.mjs +15 -0
  561. package/hooks/useSvgRef.mjs +15 -0
  562. package/hooks/useTicks.d.mts +76 -0
  563. package/hooks/useTicks.mjs +260 -0
  564. package/hooks/useTicksGrouped.d.mts +28 -0
  565. package/hooks/useTicksGrouped.mjs +98 -0
  566. package/hooks/useZAxis.d.mts +7 -0
  567. package/hooks/useZAxis.mjs +26 -0
  568. package/index.d.mts +36 -0
  569. package/index.js +1 -1
  570. package/index.mjs +44 -0
  571. package/internals/animation/Transition.d.mts +37 -0
  572. package/internals/animation/Transition.d.ts +1 -1
  573. package/internals/animation/Transition.js +6 -6
  574. package/internals/animation/Transition.mjs +78 -0
  575. package/internals/animation/useAnimateInternal.mjs +76 -0
  576. package/internals/colorScale.d.mts +5 -0
  577. package/internals/commonNextFocusItem.d.mts +39 -0
  578. package/internals/commonNextFocusItem.mjs +122 -0
  579. package/internals/components/AxisSharedComponents.mjs +25 -0
  580. package/internals/components/ChartsAxesGradients/ChartsAxesGradients.mjs +133 -0
  581. package/internals/components/ChartsAxesGradients/ChartsContinuousGradient.d.mts +18 -0
  582. package/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.d.mts +12 -0
  583. package/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.d.mts +11 -0
  584. package/internals/components/ChartsAxesGradients/index.d.mts +1 -0
  585. package/internals/components/ChartsAxesGradients/index.mjs +1 -0
  586. package/internals/configInit.d.mts +16 -0
  587. package/internals/constants.d.mts +16 -0
  588. package/internals/consumeSlots.js +1 -1
  589. package/internals/consumeSlots.mjs +100 -0
  590. package/internals/consumeThemeProps.js +1 -1
  591. package/internals/consumeThemeProps.mjs +74 -0
  592. package/internals/createSvgIcon.d.mts +3 -0
  593. package/internals/dateHelpers.d.mts +17 -0
  594. package/internals/defaultValueFormatters.d.mts +6 -0
  595. package/internals/defaultizeMargin.d.mts +3 -0
  596. package/internals/ellipsize.mjs +53 -0
  597. package/internals/geometry.mjs +35 -0
  598. package/internals/getBarDimensions.d.mts +16 -0
  599. package/internals/getBarDimensions.mjs +55 -0
  600. package/internals/getCurve.d.mts +2 -0
  601. package/internals/getScale.d.mts +3 -0
  602. package/internals/getScale.mjs +20 -0
  603. package/internals/getSeriesColorFn.d.mts +5 -0
  604. package/internals/getWordsByLines.mjs +14 -0
  605. package/internals/identifierSerializer.d.mts +9 -0
  606. package/internals/index.d.mts +83 -0
  607. package/internals/index.mjs +97 -0
  608. package/internals/invertScale.d.mts +6 -0
  609. package/internals/invertScale.mjs +16 -0
  610. package/internals/invertTextAnchor.d.mts +2 -0
  611. package/internals/isCartesian.d.mts +3 -0
  612. package/internals/isCartesian.mjs +7 -0
  613. package/internals/isPolar.d.mts +2 -0
  614. package/internals/isPolar.mjs +4 -0
  615. package/internals/material/index.d.mts +6 -0
  616. package/internals/plugins/allPlugins.d.mts +14 -0
  617. package/internals/plugins/allPlugins.mjs +12 -0
  618. package/internals/plugins/corePlugins/corePlugins.d.mts +14 -0
  619. package/internals/plugins/corePlugins/corePlugins.mjs +11 -0
  620. package/internals/plugins/corePlugins/index.d.mts +2 -0
  621. package/internals/plugins/corePlugins/index.mjs +1 -0
  622. package/internals/plugins/corePlugins/useChartAnimation/index.d.mts +3 -0
  623. package/internals/plugins/corePlugins/useChartAnimation/index.mjs +2 -0
  624. package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.d.mts +3 -0
  625. package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.d.mts +3 -0
  626. package/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.d.mts +39 -0
  627. package/internals/plugins/corePlugins/useChartDimensions/index.d.mts +3 -0
  628. package/internals/plugins/corePlugins/useChartDimensions/index.mjs +2 -0
  629. package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.d.mts +3 -0
  630. package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.mjs +180 -0
  631. package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.mts +27 -0
  632. package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.mjs +31 -0
  633. package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.d.mts +93 -0
  634. package/internals/plugins/corePlugins/useChartExperimentalFeature/index.d.mts +3 -0
  635. package/internals/plugins/corePlugins/useChartExperimentalFeature/index.mjs +2 -0
  636. package/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.d.mts +3 -0
  637. package/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.selectors.d.mts +6 -0
  638. package/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.types.d.mts +21 -0
  639. package/internals/plugins/corePlugins/useChartId/index.d.mts +3 -0
  640. package/internals/plugins/corePlugins/useChartId/index.mjs +2 -0
  641. package/internals/plugins/corePlugins/useChartId/useChartId.d.mts +3 -0
  642. package/internals/plugins/corePlugins/useChartId/useChartId.mjs +30 -0
  643. package/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.mts +8 -0
  644. package/internals/plugins/corePlugins/useChartId/useChartId.types.d.mts +20 -0
  645. package/internals/plugins/corePlugins/useChartInteractionListener/index.d.mts +2 -0
  646. package/internals/plugins/corePlugins/useChartInteractionListener/index.mjs +1 -0
  647. package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.d.mts +3 -0
  648. package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.d.mts +51 -0
  649. package/internals/plugins/corePlugins/useChartSeries/index.d.mts +3 -0
  650. package/internals/plugins/corePlugins/useChartSeries/index.mjs +2 -0
  651. package/internals/plugins/corePlugins/useChartSeries/processSeries.d.mts +39 -0
  652. package/internals/plugins/corePlugins/useChartSeries/serializeIdentifier.d.mts +14 -0
  653. package/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.mts +3 -0
  654. package/internals/plugins/corePlugins/useChartSeries/useChartSeries.mjs +71 -0
  655. package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.mts +32 -0
  656. package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.mjs +31 -0
  657. package/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.mts +65 -0
  658. package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.mts +5 -0
  659. package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.mjs +21 -0
  660. package/internals/plugins/featurePlugins/shared/useRegisterPointerInteractions.d.mts +11 -0
  661. package/internals/plugins/featurePlugins/shared/useRegisterPointerInteractions.mjs +74 -0
  662. package/internals/plugins/featurePlugins/useChartBrush/index.d.mts +3 -0
  663. package/internals/plugins/featurePlugins/useChartBrush/index.mjs +3 -0
  664. package/internals/plugins/featurePlugins/useChartBrush/useChartBrush.d.mts +3 -0
  665. package/internals/plugins/featurePlugins/useChartBrush/useChartBrush.mjs +109 -0
  666. package/internals/plugins/featurePlugins/useChartBrush/useChartBrush.selectors.d.mts +54 -0
  667. package/internals/plugins/featurePlugins/useChartBrush/useChartBrush.selectors.mjs +75 -0
  668. package/internals/plugins/featurePlugins/useChartBrush/useChartBrush.types.d.mts +81 -0
  669. package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.mts +32 -0
  670. package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.mjs +129 -0
  671. package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.mts +7 -0
  672. package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.mjs +43 -0
  673. package/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.d.mts +4 -0
  674. package/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.mjs +14 -0
  675. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.d.mts +13 -0
  676. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.mjs +103 -0
  677. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.mts +20 -0
  678. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.mjs +41 -0
  679. package/internals/plugins/featurePlugins/useChartCartesianAxis/domain.d.mts +20 -0
  680. package/internals/plugins/featurePlugins/useChartCartesianAxis/domain.mjs +77 -0
  681. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisDomainLimit.d.mts +7 -0
  682. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtrema.d.mts +6 -0
  683. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtrema.mjs +24 -0
  684. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.d.mts +5 -0
  685. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.mjs +24 -0
  686. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.d.mts +5 -0
  687. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.mjs +21 -0
  688. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.mts +15 -0
  689. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.mjs +61 -0
  690. package/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.mts +11 -0
  691. package/internals/plugins/featurePlugins/useChartCartesianAxis/index.mjs +10 -0
  692. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.mts +20 -0
  693. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.mjs +22 -0
  694. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.d.mts +3 -0
  695. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.mjs +224 -0
  696. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.mts +100 -0
  697. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.mts +11 -0
  698. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPosition.selectors.d.mts +4 -0
  699. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPosition.selectors.mjs +83 -0
  700. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.d.mts +13 -0
  701. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.mjs +122 -0
  702. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.mts +160 -0
  703. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.mjs +300 -0
  704. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianHighlight.selectors.d.mts +45 -0
  705. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianHighlight.selectors.mjs +90 -0
  706. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.mts +44 -0
  707. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.mjs +102 -0
  708. package/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.mjs +18 -0
  709. package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.mts +109 -0
  710. package/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.d.mts +4 -0
  711. package/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.mjs +33 -0
  712. package/internals/plugins/featurePlugins/useChartClosestPoint/index.d.mts +3 -0
  713. package/internals/plugins/featurePlugins/useChartClosestPoint/index.mjs +2 -0
  714. package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.d.mts +3 -0
  715. package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.mjs +208 -0
  716. package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.selectors.d.mts +3 -0
  717. package/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.types.d.mts +59 -0
  718. package/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.mts +3 -0
  719. package/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.mts +3 -0
  720. package/internals/plugins/featurePlugins/useChartHighlight/highlightStates.d.mts +16 -0
  721. package/internals/plugins/featurePlugins/useChartHighlight/index.d.mts +4 -0
  722. package/internals/plugins/featurePlugins/useChartHighlight/index.mjs +2 -0
  723. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.mts +3 -0
  724. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.mts +36 -0
  725. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +2 -2
  726. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.mjs +43 -0
  727. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.mts +81 -0
  728. package/internals/plugins/featurePlugins/useChartInteraction/checkHasInteractionPlugin.d.mts +3 -0
  729. package/internals/plugins/featurePlugins/useChartInteraction/index.d.mts +3 -0
  730. package/internals/plugins/featurePlugins/useChartInteraction/index.mjs +2 -0
  731. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.mts +3 -0
  732. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.mts +18 -0
  733. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.mts +54 -0
  734. package/internals/plugins/featurePlugins/useChartItemClick/index.d.mts +2 -0
  735. package/internals/plugins/featurePlugins/useChartItemClick/index.mjs +1 -0
  736. package/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.d.mts +3 -0
  737. package/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.mjs +48 -0
  738. package/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.types.d.mts +22 -0
  739. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/index.d.mts +4 -0
  740. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/index.mjs +2 -0
  741. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/keyboardFocusHandler.types.d.mts +14 -0
  742. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.d.mts +3 -0
  743. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.mjs +80 -0
  744. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.d.mts +23 -0
  745. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.mjs +46 -0
  746. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.mts +24 -0
  747. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getMaxSeriesLength.d.mts +3 -0
  748. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNextNonEmptySeries.d.mts +15 -0
  749. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNextNonEmptySeries.mjs +18 -0
  750. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNonEmptySeriesArray.d.mts +7 -0
  751. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getPreviousNonEmptySeries.d.mts +11 -0
  752. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getPreviousNonEmptySeries.mjs +18 -0
  753. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.mts +27 -0
  754. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.mjs +125 -0
  755. package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.d.mts +5 -0
  756. package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.mjs +24 -0
  757. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.mts +5 -0
  758. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.mjs +21 -0
  759. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.d.mts +6 -0
  760. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.mjs +26 -0
  761. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.d.mts +5 -0
  762. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.mjs +21 -0
  763. package/internals/plugins/featurePlugins/useChartPolarAxis/index.d.mts +3 -0
  764. package/internals/plugins/featurePlugins/useChartPolarAxis/index.mjs +2 -0
  765. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.d.mts +3 -0
  766. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.mjs +220 -0
  767. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.mts +32 -0
  768. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.mjs +33 -0
  769. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.mts +74 -0
  770. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.mts +29 -0
  771. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.mjs +86 -0
  772. package/internals/plugins/featurePlugins/useChartTooltip/index.d.mts +3 -0
  773. package/internals/plugins/featurePlugins/useChartTooltip/index.mjs +2 -0
  774. package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.d.mts +3 -0
  775. package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.d.mts +18 -0
  776. package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.mjs +58 -0
  777. package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.types.d.mts +51 -0
  778. package/internals/plugins/featurePlugins/useChartVisibilityManager/index.d.mts +3 -0
  779. package/internals/plugins/featurePlugins/useChartVisibilityManager/index.mjs +3 -0
  780. package/internals/plugins/featurePlugins/useChartVisibilityManager/isIdentifierVisible.d.mts +4 -0
  781. package/internals/plugins/featurePlugins/useChartVisibilityManager/isIdentifierVisible.mjs +5 -0
  782. package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.d.mts +3 -0
  783. package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.mjs +82 -0
  784. package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.selectors.d.mts +16 -0
  785. package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.selectors.mjs +19 -0
  786. package/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.types.d.mts +112 -0
  787. package/internals/plugins/featurePlugins/useChartVisibilityManager/visibilityParamToMap.d.mts +4 -0
  788. package/internals/plugins/featurePlugins/useChartVisibilityManager/visibilityParamToMap.mjs +11 -0
  789. package/internals/plugins/featurePlugins/useChartZAxis/index.d.mts +3 -0
  790. package/internals/plugins/featurePlugins/useChartZAxis/index.mjs +2 -0
  791. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.d.mts +3 -0
  792. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.mjs +84 -0
  793. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.mts +8 -0
  794. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.mts +37 -0
  795. package/internals/plugins/models/chart.d.mts +15 -0
  796. package/internals/plugins/models/helpers.d.mts +6 -0
  797. package/internals/plugins/models/index.d.mts +4 -0
  798. package/internals/plugins/models/index.mjs +4 -0
  799. package/internals/plugins/models/plugin.d.mts +146 -0
  800. package/internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.d.mts +22 -0
  801. package/internals/plugins/models/seriesConfig/colorProcessor.types.d.mts +19 -0
  802. package/internals/plugins/models/seriesConfig/getItemAtPosition.types.d.mts +8 -0
  803. package/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.d.mts +3 -0
  804. package/internals/plugins/models/seriesConfig/identifierSerializer.types.d.mts +2 -0
  805. package/internals/plugins/models/seriesConfig/index.d.mts +11 -0
  806. package/internals/plugins/models/seriesConfig/index.mjs +11 -0
  807. package/internals/plugins/models/seriesConfig/legendGetter.types.d.mts +4 -0
  808. package/internals/plugins/models/seriesConfig/polarExtremumGetter.types.d.mts +12 -0
  809. package/internals/plugins/models/seriesConfig/seriesConfig.types.d.mts +49 -0
  810. package/internals/plugins/models/seriesConfig/seriesLayout.types.d.mts +6 -0
  811. package/internals/plugins/models/seriesConfig/seriesProcessor.types.d.mts +17 -0
  812. package/internals/plugins/models/seriesConfig/tooltipGetter.types.d.mts +74 -0
  813. package/internals/plugins/models/seriesConfig/tooltipItemPositionGetter.types.d.mts +27 -0
  814. package/internals/plugins/utils/selectors.d.mts +5 -0
  815. package/internals/plugins/utils/useLazySelectorEffect.d.mts +7 -0
  816. package/internals/scaleGuards.d.mts +17 -0
  817. package/internals/scales/index.d.mts +3 -0
  818. package/internals/scales/index.mjs +3 -0
  819. package/internals/scales/scalePoint.mjs +41 -0
  820. package/internals/seriesHasData.d.mts +4 -0
  821. package/internals/seriesSelectorOfType.d.mts +20 -0
  822. package/internals/seriesSelectorOfType.mjs +37 -0
  823. package/internals/stacking/index.d.mts +1 -0
  824. package/internals/stacking/index.mjs +1 -0
  825. package/internals/stacking/offset/index.d.mts +1 -0
  826. package/internals/stacking/offset/index.mjs +1 -0
  827. package/internals/stacking/stackSeries.d.mts +72 -0
  828. package/internals/stacking/stackSeries.d.ts +3 -2
  829. package/internals/stacking/stackSeries.js +0 -1
  830. package/internals/stacking/stackSeries.mjs +95 -0
  831. package/internals/store/extractPluginParamsFromProps.d.mts +13 -0
  832. package/internals/store/useCharts.d.mts +25 -0
  833. package/internals/store/useCharts.mjs +89 -0
  834. package/internals/store/useCharts.types.d.mts +5 -0
  835. package/internals/store/useStore.d.mts +3 -0
  836. package/internals/store/useStore.mjs +9 -0
  837. package/internals/ticks.d.mts +4 -0
  838. package/locales/elGR.d.mts +115 -0
  839. package/locales/elGR.mjs +113 -0
  840. package/locales/enUS.d.mts +116 -0
  841. package/locales/enUS.mjs +117 -0
  842. package/locales/frFR.d.mts +115 -0
  843. package/locales/frFR.mjs +114 -0
  844. package/locales/index.d.mts +8 -0
  845. package/locales/index.mjs +8 -0
  846. package/locales/nbNO.d.mts +115 -0
  847. package/locales/nbNO.mjs +113 -0
  848. package/locales/ptBR.d.mts +115 -0
  849. package/locales/ptBR.mjs +113 -0
  850. package/locales/ptPT.d.mts +115 -0
  851. package/locales/ptPT.mjs +115 -0
  852. package/locales/svSE.d.mts +115 -0
  853. package/locales/svSE.mjs +115 -0
  854. package/locales/utils/chartsLocaleTextApi.d.mts +420 -0
  855. package/locales/utils/getChartsLocalization.d.mts +119 -0
  856. package/models/axis.d.mts +560 -0
  857. package/models/index.d.mts +9 -0
  858. package/models/index.mjs +7 -0
  859. package/models/seriesType/bar.d.mts +67 -0
  860. package/models/seriesType/common.d.mts +85 -0
  861. package/models/seriesType/config.d.mts +97 -0
  862. package/models/seriesType/index.d.mts +40 -0
  863. package/models/seriesType/index.mjs +41 -0
  864. package/models/seriesType/line.d.mts +108 -0
  865. package/models/seriesType/pie.d.mts +202 -0
  866. package/models/seriesType/radar.d.mts +30 -0
  867. package/models/seriesType/scatter.d.mts +78 -0
  868. package/models/slots/chartsBaseSlots.d.mts +6 -0
  869. package/models/slots/index.d.mts +3 -0
  870. package/models/slots/index.mjs +3 -0
  871. package/models/z-axis.d.mts +22 -0
  872. package/moduleAugmentation/barChartBatchRendererOnItemClick.d.mts +13 -0
  873. package/package.json +549 -20
  874. package/plugins/index.d.mts +8 -0
  875. package/plugins/index.mjs +14 -0
  876. package/themeAugmentation/index.d.mts +3 -0
  877. package/themeAugmentation/overrides.d.mts +43 -0
  878. package/themeAugmentation/props.d.mts +33 -0
  879. package/utils/index.d.mts +5 -0
  880. package/utils/index.mjs +6 -0
  881. package/utils/niceDomain.d.mts +20 -0
  882. package/utils/niceDomain.mjs +24 -0
  883. package/utils/timeTicks.d.mts +2 -0
  884. package/esm/BarChart/AnimatedBarElement.d.ts +0 -42
  885. package/esm/BarChart/AnimatedBarElement.js +0 -21
  886. package/esm/BarChart/BarChart.d.ts +0 -74
  887. package/esm/BarChart/BarChart.js +0 -1215
  888. package/esm/BarChart/BarChart.plugins.d.ts +0 -11
  889. package/esm/BarChart/BarChart.plugins.js +0 -9
  890. package/esm/BarChart/BarClipPath.d.ts +0 -37
  891. package/esm/BarChart/BarClipPath.js +0 -122
  892. package/esm/BarChart/BarElement.d.ts +0 -40
  893. package/esm/BarChart/BarElement.js +0 -115
  894. package/esm/BarChart/BarLabel/BarLabel.d.ts +0 -42
  895. package/esm/BarChart/BarLabel/BarLabel.js +0 -130
  896. package/esm/BarChart/BarLabel/BarLabel.types.d.ts +0 -42
  897. package/esm/BarChart/BarLabel/BarLabelItem.d.ts +0 -87
  898. package/esm/BarChart/BarLabel/BarLabelItem.js +0 -139
  899. package/esm/BarChart/BarLabel/BarLabelPlot.d.ts +0 -32
  900. package/esm/BarChart/BarLabel/BarLabelPlot.js +0 -60
  901. package/esm/BarChart/BarLabel/barLabelClasses.d.ts +0 -40
  902. package/esm/BarChart/BarLabel/getBarLabel.d.ts +0 -11
  903. package/esm/BarChart/BarLabel/index.d.ts +0 -6
  904. package/esm/BarChart/BarLabel/index.js +0 -2
  905. package/esm/BarChart/BarPlot.d.ts +0 -69
  906. package/esm/BarChart/BarPlot.js +0 -135
  907. package/esm/BarChart/BatchBarPlot/BarGroup.js +0 -134
  908. package/esm/BarChart/BatchBarPlot/BatchBarPlot.d.ts +0 -12
  909. package/esm/BarChart/BatchBarPlot/BatchBarPlot.js +0 -135
  910. package/esm/BarChart/BatchBarPlot/index.d.ts +0 -1
  911. package/esm/BarChart/BatchBarPlot/index.js +0 -1
  912. package/esm/BarChart/BatchBarPlot/useCreateBarPaths.d.ts +0 -8
  913. package/esm/BarChart/BatchBarPlot/useCreateBarPaths.js +0 -46
  914. package/esm/BarChart/FocusedBar.js +0 -65
  915. package/esm/BarChart/IndividualBarPlot.d.ts +0 -21
  916. package/esm/BarChart/IndividualBarPlot.js +0 -98
  917. package/esm/BarChart/barClasses.d.ts +0 -32
  918. package/esm/BarChart/barElementClasses.d.ts +0 -38
  919. package/esm/BarChart/checkBarChartScaleErrors.d.ts +0 -7
  920. package/esm/BarChart/checkBarChartScaleErrors.js +0 -32
  921. package/esm/BarChart/index.d.ts +0 -10
  922. package/esm/BarChart/index.js +0 -8
  923. package/esm/BarChart/seriesConfig/bar/extremums.d.ts +0 -3
  924. package/esm/BarChart/seriesConfig/bar/extremums.js +0 -74
  925. package/esm/BarChart/seriesConfig/bar/getColor.d.ts +0 -3
  926. package/esm/BarChart/seriesConfig/bar/getColor.js +0 -57
  927. package/esm/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.d.ts +0 -22
  928. package/esm/BarChart/seriesConfig/bar/keyboardFocusHandler.d.ts +0 -3
  929. package/esm/BarChart/seriesConfig/bar/keyboardFocusHandler.js +0 -17
  930. package/esm/BarChart/seriesConfig/bar/legend.d.ts +0 -3
  931. package/esm/BarChart/seriesConfig/bar/legend.js +0 -23
  932. package/esm/BarChart/seriesConfig/bar/seriesProcessor.d.ts +0 -3
  933. package/esm/BarChart/seriesConfig/bar/seriesProcessor.js +0 -104
  934. package/esm/BarChart/seriesConfig/bar/tooltip.d.ts +0 -4
  935. package/esm/BarChart/seriesConfig/bar/tooltip.js +0 -37
  936. package/esm/BarChart/seriesConfig/bar/tooltipPosition.d.ts +0 -3
  937. package/esm/BarChart/seriesConfig/bar/tooltipPosition.js +0 -61
  938. package/esm/BarChart/seriesConfig/index.d.ts +0 -2
  939. package/esm/BarChart/seriesConfig/index.js +0 -22
  940. package/esm/BarChart/types.d.ts +0 -35
  941. package/esm/BarChart/useBarChartProps.d.ts +0 -38
  942. package/esm/BarChart/useBarChartProps.js +0 -158
  943. package/esm/BarChart/useBarPlotData.d.ts +0 -23
  944. package/esm/BarChart/useBarPlotData.js +0 -127
  945. package/esm/BarChart/useRegisterItemClickHandlers.d.ts +0 -6
  946. package/esm/BarChart/useRegisterItemClickHandlers.js +0 -67
  947. package/esm/ChartContainer/ChartContainer.d.ts +0 -22
  948. package/esm/ChartContainer/ChartContainer.js +0 -20
  949. package/esm/ChartContainer/index.d.ts +0 -8
  950. package/esm/ChartContainer/index.js +0 -6
  951. package/esm/ChartContainer/useChartContainerProps.d.ts +0 -14
  952. package/esm/ChartContainer/useChartContainerProps.js +0 -14
  953. package/esm/ChartDataProvider/ChartDataProvider.d.ts +0 -20
  954. package/esm/ChartDataProvider/ChartDataProvider.js +0 -20
  955. package/esm/ChartDataProvider/index.d.ts +0 -1
  956. package/esm/ChartDataProvider/index.js +0 -1
  957. package/esm/ChartDataProvider/useChartDataProviderProps.d.ts +0 -10
  958. package/esm/ChartDataProvider/useChartDataProviderProps.js +0 -8
  959. package/esm/ChartsAxis/ChartsAxis.d.ts +0 -27
  960. package/esm/ChartsAxis/ChartsAxis.js +0 -69
  961. package/esm/ChartsAxis/index.d.ts +0 -2
  962. package/esm/ChartsAxis/index.js +0 -2
  963. package/esm/ChartsAxisHighlight/ChartsAxisHighlight.d.ts +0 -15
  964. package/esm/ChartsAxisHighlight/ChartsAxisHighlight.js +0 -50
  965. package/esm/ChartsAxisHighlight/ChartsAxisHighlightPath.d.ts +0 -6
  966. package/esm/ChartsAxisHighlight/ChartsXAxisHighlight.d.ts +0 -9
  967. package/esm/ChartsAxisHighlight/ChartsXAxisHighlight.js +0 -59
  968. package/esm/ChartsAxisHighlight/ChartsYAxisHighlight.d.ts +0 -9
  969. package/esm/ChartsAxisHighlight/ChartsYAxisHighlight.js +0 -59
  970. package/esm/ChartsAxisHighlight/index.d.ts +0 -4
  971. package/esm/ChartsAxisHighlight/index.js +0 -4
  972. package/esm/ChartsBrushOverlay/ChartsBrushOverlay.js +0 -94
  973. package/esm/ChartsBrushOverlay/index.d.ts +0 -4
  974. package/esm/ChartsBrushOverlay/index.js +0 -2
  975. package/esm/ChartsClipPath/ChartsClipPath.js +0 -60
  976. package/esm/ChartsClipPath/index.d.ts +0 -1
  977. package/esm/ChartsClipPath/index.js +0 -1
  978. package/esm/ChartsContainer/ChartsContainer.d.ts +0 -37
  979. package/esm/ChartsContainer/ChartsContainer.js +0 -1696
  980. package/esm/ChartsContainer/index.d.ts +0 -1
  981. package/esm/ChartsContainer/index.js +0 -1
  982. package/esm/ChartsContainer/useChartsContainerProps.d.ts +0 -15
  983. package/esm/ChartsContainer/useChartsContainerProps.js +0 -97
  984. package/esm/ChartsDataProvider/ChartsDataProvider.d.ts +0 -51
  985. package/esm/ChartsDataProvider/ChartsDataProvider.js +0 -132
  986. package/esm/ChartsDataProvider/index.d.ts +0 -1
  987. package/esm/ChartsDataProvider/index.js +0 -1
  988. package/esm/ChartsDataProvider/useChartsDataProviderProps.d.ts +0 -13
  989. package/esm/ChartsDataProvider/useChartsDataProviderProps.js +0 -38
  990. package/esm/ChartsGrid/ChartsGrid.d.ts +0 -29
  991. package/esm/ChartsGrid/ChartsGrid.js +0 -90
  992. package/esm/ChartsGrid/ChartsHorizontalGrid.d.ts +0 -13
  993. package/esm/ChartsGrid/ChartsHorizontalGrid.js +0 -45
  994. package/esm/ChartsGrid/ChartsVerticalGrid.d.ts +0 -13
  995. package/esm/ChartsGrid/ChartsVerticalGrid.js +0 -45
  996. package/esm/ChartsGrid/index.d.ts +0 -2
  997. package/esm/ChartsGrid/index.js +0 -2
  998. package/esm/ChartsGrid/styledComponents.js +0 -21
  999. package/esm/ChartsLabel/ChartsLabel.d.ts +0 -18
  1000. package/esm/ChartsLabel/ChartsLabel.js +0 -43
  1001. package/esm/ChartsLabel/ChartsLabelGradient.d.ts +0 -41
  1002. package/esm/ChartsLabel/ChartsLabelGradient.js +0 -134
  1003. package/esm/ChartsLabel/ChartsLabelMark.d.ts +0 -32
  1004. package/esm/ChartsLabel/ChartsLabelMark.js +0 -123
  1005. package/esm/ChartsLabel/index.d.ts +0 -9
  1006. package/esm/ChartsLabel/index.js +0 -5
  1007. package/esm/ChartsLabel/labelClasses.d.ts +0 -8
  1008. package/esm/ChartsLabel/labelGradientClasses.d.ts +0 -16
  1009. package/esm/ChartsLabel/labelMarkClasses.d.ts +0 -18
  1010. package/esm/ChartsLegend/ChartsLegend.d.ts +0 -33
  1011. package/esm/ChartsLegend/ChartsLegend.js +0 -185
  1012. package/esm/ChartsLegend/ContinuousColorLegend.d.ts +0 -57
  1013. package/esm/ChartsLegend/ContinuousColorLegend.js +0 -271
  1014. package/esm/ChartsLegend/PiecewiseColorLegend.d.ts +0 -43
  1015. package/esm/ChartsLegend/PiecewiseColorLegend.js +0 -277
  1016. package/esm/ChartsLegend/chartsLegend.types.d.ts +0 -26
  1017. package/esm/ChartsLegend/chartsLegendClasses.d.ts +0 -22
  1018. package/esm/ChartsLegend/colorLegend.types.d.ts +0 -13
  1019. package/esm/ChartsLegend/continuousColorLegendClasses.d.ts +0 -26
  1020. package/esm/ChartsLegend/index.d.ts +0 -16
  1021. package/esm/ChartsLegend/index.js +0 -12
  1022. package/esm/ChartsLegend/legend.types.d.ts +0 -9
  1023. package/esm/ChartsLegend/legendContext.types.d.ts +0 -67
  1024. package/esm/ChartsLegend/onClickContextBuilder.d.ts +0 -2
  1025. package/esm/ChartsLegend/piecewiseColorDefaultLabelFormatter.d.ts +0 -2
  1026. package/esm/ChartsLegend/piecewiseColorLegendClasses.d.ts +0 -32
  1027. package/esm/ChartsLegend/useAxis.d.ts +0 -10
  1028. package/esm/ChartsLegend/useAxis.js +0 -42
  1029. package/esm/ChartsLocalizationProvider/ChartsLocalizationProvider.d.ts +0 -27
  1030. package/esm/ChartsLocalizationProvider/ChartsLocalizationProvider.js +0 -64
  1031. package/esm/ChartsLocalizationProvider/index.d.ts +0 -2
  1032. package/esm/ChartsLocalizationProvider/index.js +0 -1
  1033. package/esm/ChartsOverlay/ChartsLoadingOverlay.d.ts +0 -2
  1034. package/esm/ChartsOverlay/ChartsLoadingOverlay.js +0 -42
  1035. package/esm/ChartsOverlay/ChartsNoDataOverlay.d.ts +0 -2
  1036. package/esm/ChartsOverlay/ChartsNoDataOverlay.js +0 -42
  1037. package/esm/ChartsOverlay/ChartsOverlay.js +0 -43
  1038. package/esm/ChartsOverlay/index.d.ts +0 -4
  1039. package/esm/ChartsOverlay/index.js +0 -3
  1040. package/esm/ChartsReferenceLine/ChartsReferenceLine.d.ts +0 -9
  1041. package/esm/ChartsReferenceLine/ChartsReferenceLine.js +0 -75
  1042. package/esm/ChartsReferenceLine/ChartsXReferenceLine.d.ts +0 -15
  1043. package/esm/ChartsReferenceLine/ChartsXReferenceLine.js +0 -153
  1044. package/esm/ChartsReferenceLine/ChartsYReferenceLine.d.ts +0 -15
  1045. package/esm/ChartsReferenceLine/ChartsYReferenceLine.js +0 -153
  1046. package/esm/ChartsReferenceLine/common.d.ts +0 -43
  1047. package/esm/ChartsReferenceLine/common.js +0 -25
  1048. package/esm/ChartsReferenceLine/index.d.ts +0 -4
  1049. package/esm/ChartsReferenceLine/index.js +0 -3
  1050. package/esm/ChartsSurface/ChartsSurface.js +0 -122
  1051. package/esm/ChartsSurface/index.d.ts +0 -2
  1052. package/esm/ChartsSurface/index.js +0 -2
  1053. package/esm/ChartsText/ChartsText.d.ts +0 -17
  1054. package/esm/ChartsText/ChartsText.js +0 -89
  1055. package/esm/ChartsText/defaultTextPlacement.d.ts +0 -9
  1056. package/esm/ChartsText/defaultTextPlacement.js +0 -34
  1057. package/esm/ChartsText/index.d.ts +0 -3
  1058. package/esm/ChartsText/index.js +0 -1
  1059. package/esm/ChartsTooltip/ChartTooltip.types.d.ts +0 -15
  1060. package/esm/ChartsTooltip/ChartsAxisTooltipContent.d.ts +0 -14
  1061. package/esm/ChartsTooltip/ChartsAxisTooltipContent.js +0 -79
  1062. package/esm/ChartsTooltip/ChartsItemTooltipContent.d.ts +0 -14
  1063. package/esm/ChartsTooltip/ChartsItemTooltipContent.js +0 -108
  1064. package/esm/ChartsTooltip/ChartsTooltip.d.ts +0 -17
  1065. package/esm/ChartsTooltip/ChartsTooltip.js +0 -207
  1066. package/esm/ChartsTooltip/ChartsTooltipContainer.d.ts +0 -42
  1067. package/esm/ChartsTooltip/ChartsTooltipContainer.js +0 -363
  1068. package/esm/ChartsTooltip/ChartsTooltipTable.js +0 -98
  1069. package/esm/ChartsTooltip/index.d.ts +0 -14
  1070. package/esm/ChartsTooltip/index.js +0 -11
  1071. package/esm/ChartsTooltip/useAxesTooltip.d.ts +0 -7
  1072. package/esm/ChartsTooltip/useAxesTooltip.js +0 -12
  1073. package/esm/ChartsTooltip/useAxisTooltip.d.ts +0 -42
  1074. package/esm/ChartsTooltip/useAxisTooltip.js +0 -176
  1075. package/esm/ChartsTooltip/useItemTooltip.d.ts +0 -16
  1076. package/esm/ChartsTooltip/useItemTooltip.js +0 -76
  1077. package/esm/ChartsTooltip/utils.js +0 -59
  1078. package/esm/ChartsWrapper/ChartsWrapper.d.ts +0 -37
  1079. package/esm/ChartsWrapper/ChartsWrapper.js +0 -163
  1080. package/esm/ChartsWrapper/index.d.ts +0 -1
  1081. package/esm/ChartsWrapper/index.js +0 -1
  1082. package/esm/ChartsXAxis/ChartsGroupedXAxisTicks.d.ts +0 -7
  1083. package/esm/ChartsXAxis/ChartsGroupedXAxisTicks.js +0 -94
  1084. package/esm/ChartsXAxis/ChartsSingleXAxisTicks.d.ts +0 -11
  1085. package/esm/ChartsXAxis/ChartsSingleXAxisTicks.js +0 -106
  1086. package/esm/ChartsXAxis/ChartsXAxis.d.ts +0 -15
  1087. package/esm/ChartsXAxis/ChartsXAxis.js +0 -139
  1088. package/esm/ChartsXAxis/ChartsXAxisImpl.d.ts +0 -12
  1089. package/esm/ChartsXAxis/ChartsXAxisImpl.js +0 -117
  1090. package/esm/ChartsXAxis/getVisibleLabels.d.ts +0 -14
  1091. package/esm/ChartsXAxis/getVisibleLabels.js +0 -91
  1092. package/esm/ChartsXAxis/index.d.ts +0 -1
  1093. package/esm/ChartsXAxis/index.js +0 -1
  1094. package/esm/ChartsXAxis/shortenLabels.d.ts +0 -4
  1095. package/esm/ChartsXAxis/shortenLabels.js +0 -42
  1096. package/esm/ChartsXAxis/useAxisTicksProps.d.ts +0 -3810
  1097. package/esm/ChartsXAxis/useAxisTicksProps.js +0 -74
  1098. package/esm/ChartsXAxis/utilities.d.ts +0 -10
  1099. package/esm/ChartsXAxis/utilities.js +0 -29
  1100. package/esm/ChartsYAxis/ChartsGroupedYAxisTicks.d.ts +0 -6
  1101. package/esm/ChartsYAxis/ChartsGroupedYAxisTicks.js +0 -95
  1102. package/esm/ChartsYAxis/ChartsSingleYAxisTicks.d.ts +0 -11
  1103. package/esm/ChartsYAxis/ChartsSingleYAxisTicks.js +0 -96
  1104. package/esm/ChartsYAxis/ChartsYAxis.d.ts +0 -15
  1105. package/esm/ChartsYAxis/ChartsYAxis.js +0 -133
  1106. package/esm/ChartsYAxis/ChartsYAxisImpl.d.ts +0 -12
  1107. package/esm/ChartsYAxis/ChartsYAxisImpl.js +0 -133
  1108. package/esm/ChartsYAxis/index.d.ts +0 -1
  1109. package/esm/ChartsYAxis/index.js +0 -1
  1110. package/esm/ChartsYAxis/shortenLabels.d.ts +0 -4
  1111. package/esm/ChartsYAxis/shortenLabels.js +0 -41
  1112. package/esm/ChartsYAxis/useAxisTicksProps.d.ts +0 -3728
  1113. package/esm/ChartsYAxis/useAxisTicksProps.js +0 -72
  1114. package/esm/ChartsYAxis/utilities.d.ts +0 -9
  1115. package/esm/ChartsYAxis/utilities.js +0 -28
  1116. package/esm/Gauge/Gauge.d.ts +0 -10
  1117. package/esm/Gauge/Gauge.js +0 -145
  1118. package/esm/Gauge/GaugeContainer.d.ts +0 -10
  1119. package/esm/Gauge/GaugeContainer.js +0 -183
  1120. package/esm/Gauge/GaugeProvider.js +0 -89
  1121. package/esm/Gauge/GaugeReferenceArc.js +0 -45
  1122. package/esm/Gauge/GaugeValueArc.js +0 -102
  1123. package/esm/Gauge/GaugeValueText.d.ts +0 -14
  1124. package/esm/Gauge/GaugeValueText.js +0 -72
  1125. package/esm/Gauge/index.d.ts +0 -7
  1126. package/esm/Gauge/index.js +0 -7
  1127. package/esm/Gauge/utils.js +0 -66
  1128. package/esm/LineChart/AnimatedArea.d.ts +0 -26
  1129. package/esm/LineChart/AnimatedArea.js +0 -64
  1130. package/esm/LineChart/AnimatedLine.d.ts +0 -23
  1131. package/esm/LineChart/AnimatedLine.js +0 -71
  1132. package/esm/LineChart/AppearingMask.d.ts +0 -17
  1133. package/esm/LineChart/AppearingMask.js +0 -50
  1134. package/esm/LineChart/AreaElement.d.ts +0 -82
  1135. package/esm/LineChart/AreaElement.js +0 -136
  1136. package/esm/LineChart/AreaPlot.d.ts +0 -29
  1137. package/esm/LineChart/AreaPlot.js +0 -113
  1138. package/esm/LineChart/CircleMarkElement.d.ts +0 -45
  1139. package/esm/LineChart/CircleMarkElement.js +0 -114
  1140. package/esm/LineChart/FocusedLineMark.js +0 -41
  1141. package/esm/LineChart/LineChart.d.ts +0 -90
  1142. package/esm/LineChart/LineChart.js +0 -1211
  1143. package/esm/LineChart/LineChart.plugins.d.ts +0 -11
  1144. package/esm/LineChart/LineChart.plugins.js +0 -9
  1145. package/esm/LineChart/LineElement.d.ts +0 -86
  1146. package/esm/LineChart/LineElement.js +0 -140
  1147. package/esm/LineChart/LineHighlightElement.d.ts +0 -48
  1148. package/esm/LineChart/LineHighlightElement.js +0 -100
  1149. package/esm/LineChart/LineHighlightPlot.d.ts +0 -36
  1150. package/esm/LineChart/LineHighlightPlot.js +0 -123
  1151. package/esm/LineChart/LinePlot.d.ts +0 -28
  1152. package/esm/LineChart/LinePlot.js +0 -115
  1153. package/esm/LineChart/MarkElement.d.ts +0 -47
  1154. package/esm/LineChart/MarkElement.js +0 -130
  1155. package/esm/LineChart/MarkPlot.d.ts +0 -42
  1156. package/esm/LineChart/MarkPlot.js +0 -151
  1157. package/esm/LineChart/index.d.ts +0 -17
  1158. package/esm/LineChart/index.js +0 -15
  1159. package/esm/LineChart/lineClasses.d.ts +0 -34
  1160. package/esm/LineChart/markElementClasses.d.ts +0 -43
  1161. package/esm/LineChart/seriesConfig/extremums.d.ts +0 -3
  1162. package/esm/LineChart/seriesConfig/extremums.js +0 -56
  1163. package/esm/LineChart/seriesConfig/getColor.d.ts +0 -3
  1164. package/esm/LineChart/seriesConfig/getColor.js +0 -55
  1165. package/esm/LineChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
  1166. package/esm/LineChart/seriesConfig/index.d.ts +0 -2
  1167. package/esm/LineChart/seriesConfig/index.js +0 -22
  1168. package/esm/LineChart/seriesConfig/keyboardFocusHandler.d.ts +0 -3
  1169. package/esm/LineChart/seriesConfig/keyboardFocusHandler.js +0 -17
  1170. package/esm/LineChart/seriesConfig/legend.d.ts +0 -3
  1171. package/esm/LineChart/seriesConfig/legend.js +0 -23
  1172. package/esm/LineChart/seriesConfig/seriesProcessor.d.ts +0 -3
  1173. package/esm/LineChart/seriesConfig/seriesProcessor.js +0 -106
  1174. package/esm/LineChart/seriesConfig/tooltip.d.ts +0 -4
  1175. package/esm/LineChart/seriesConfig/tooltip.js +0 -31
  1176. package/esm/LineChart/seriesConfig/tooltipPosition.d.ts +0 -3
  1177. package/esm/LineChart/useAreaPlotData.d.ts +0 -12
  1178. package/esm/LineChart/useAreaPlotData.js +0 -120
  1179. package/esm/LineChart/useLineChartProps.d.ts +0 -40
  1180. package/esm/LineChart/useLineChartProps.js +0 -143
  1181. package/esm/LineChart/useLinePlotData.d.ts +0 -12
  1182. package/esm/LineChart/useLinePlotData.js +0 -109
  1183. package/esm/LineChart/useMarkPlotData.d.ts +0 -19
  1184. package/esm/LineChart/useMarkPlotData.js +0 -102
  1185. package/esm/PieChart/FocusedPieArc.d.ts +0 -2
  1186. package/esm/PieChart/FocusedPieArc.js +0 -57
  1187. package/esm/PieChart/PieArc.d.ts +0 -70
  1188. package/esm/PieChart/PieArc.js +0 -155
  1189. package/esm/PieChart/PieArcLabel.d.ts +0 -67
  1190. package/esm/PieChart/PieArcLabel.js +0 -147
  1191. package/esm/PieChart/PieArcLabelPlot.d.ts +0 -36
  1192. package/esm/PieChart/PieArcLabelPlot.js +0 -188
  1193. package/esm/PieChart/PieArcPlot.d.ts +0 -43
  1194. package/esm/PieChart/PieArcPlot.js +0 -166
  1195. package/esm/PieChart/PieChart.d.ts +0 -57
  1196. package/esm/PieChart/PieChart.js +0 -281
  1197. package/esm/PieChart/PieChart.plugins.d.ts +0 -8
  1198. package/esm/PieChart/PieChart.plugins.js +0 -6
  1199. package/esm/PieChart/PiePlot.d.ts +0 -32
  1200. package/esm/PieChart/PiePlot.js +0 -127
  1201. package/esm/PieChart/dataTransform/getModifiedArcProperties.d.ts +0 -11
  1202. package/esm/PieChart/dataTransform/getModifiedArcProperties.js +0 -36
  1203. package/esm/PieChart/dataTransform/useTransformData.d.ts +0 -17
  1204. package/esm/PieChart/dataTransform/useTransformData.js +0 -53
  1205. package/esm/PieChart/getPieCoordinates.d.ts +0 -7
  1206. package/esm/PieChart/getPieCoordinates.js +0 -19
  1207. package/esm/PieChart/index.d.ts +0 -10
  1208. package/esm/PieChart/index.js +0 -9
  1209. package/esm/PieChart/pieClasses.d.ts +0 -33
  1210. package/esm/PieChart/seriesConfig/getColor.d.ts +0 -3
  1211. package/esm/PieChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
  1212. package/esm/PieChart/seriesConfig/index.d.ts +0 -2
  1213. package/esm/PieChart/seriesConfig/index.js +0 -20
  1214. package/esm/PieChart/seriesConfig/keyboardFocusHandler.d.ts +0 -3
  1215. package/esm/PieChart/seriesConfig/keyboardFocusHandler.js +0 -17
  1216. package/esm/PieChart/seriesConfig/legend.d.ts +0 -3
  1217. package/esm/PieChart/seriesConfig/legend.js +0 -28
  1218. package/esm/PieChart/seriesConfig/seriesLayout.d.ts +0 -3
  1219. package/esm/PieChart/seriesConfig/seriesLayout.js +0 -42
  1220. package/esm/PieChart/seriesConfig/seriesProcessor.d.ts +0 -3
  1221. package/esm/PieChart/seriesConfig/seriesProcessor.js +0 -87
  1222. package/esm/PieChart/seriesConfig/tooltip.d.ts +0 -3
  1223. package/esm/PieChart/seriesConfig/tooltip.js +0 -32
  1224. package/esm/PieChart/seriesConfig/tooltipPosition.d.ts +0 -3
  1225. package/esm/PieChart/seriesConfig/tooltipPosition.js +0 -60
  1226. package/esm/RadarChart/FocusedRadarMark.js +0 -28
  1227. package/esm/RadarChart/RadarAxis/RadarAxis.d.ts +0 -29
  1228. package/esm/RadarChart/RadarAxis/RadarAxis.js +0 -96
  1229. package/esm/RadarChart/RadarAxis/RadarAxis.utils.d.ts +0 -20
  1230. package/esm/RadarChart/RadarAxis/index.d.ts +0 -3
  1231. package/esm/RadarChart/RadarAxis/index.js +0 -3
  1232. package/esm/RadarChart/RadarAxis/useRadarAxis.js +0 -75
  1233. package/esm/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.ts +0 -12
  1234. package/esm/RadarChart/RadarAxisHighlight/RadarAxisHighlight.js +0 -76
  1235. package/esm/RadarChart/RadarAxisHighlight/index.d.ts +0 -1
  1236. package/esm/RadarChart/RadarAxisHighlight/index.js +0 -1
  1237. package/esm/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.d.ts +0 -51
  1238. package/esm/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.js +0 -58
  1239. package/esm/RadarChart/RadarChart.d.ts +0 -46
  1240. package/esm/RadarChart/RadarChart.js +0 -287
  1241. package/esm/RadarChart/RadarChart.plugins.d.ts +0 -8
  1242. package/esm/RadarChart/RadarChart.plugins.js +0 -7
  1243. package/esm/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +0 -25
  1244. package/esm/RadarChart/RadarDataProvider/RadarDataProvider.js +0 -86
  1245. package/esm/RadarChart/RadarDataProvider/index.d.ts +0 -1
  1246. package/esm/RadarChart/RadarDataProvider/index.js +0 -1
  1247. package/esm/RadarChart/RadarDataProvider/radar.types.d.ts +0 -43
  1248. package/esm/RadarChart/RadarGrid/CircularRadarGrid.d.ts +0 -5
  1249. package/esm/RadarChart/RadarGrid/CircularRadarStripes.d.ts +0 -5
  1250. package/esm/RadarChart/RadarGrid/RadarGrid.d.ts +0 -6
  1251. package/esm/RadarChart/RadarGrid/RadarGrid.js +0 -96
  1252. package/esm/RadarChart/RadarGrid/RadarGrid.types.d.ts +0 -49
  1253. package/esm/RadarChart/RadarGrid/SharpRadarGrid.d.ts +0 -5
  1254. package/esm/RadarChart/RadarGrid/SharpRadarStripes.d.ts +0 -5
  1255. package/esm/RadarChart/RadarGrid/index.d.ts +0 -2
  1256. package/esm/RadarChart/RadarGrid/index.js +0 -2
  1257. package/esm/RadarChart/RadarGrid/useRadarGridData.js +0 -40
  1258. package/esm/RadarChart/RadarMetricLabels/RadarMetricLabels.js +0 -35
  1259. package/esm/RadarChart/RadarMetricLabels/index.d.ts +0 -1
  1260. package/esm/RadarChart/RadarMetricLabels/index.js +0 -1
  1261. package/esm/RadarChart/RadarMetricLabels/useRadarMetricData.js +0 -37
  1262. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +0 -23
  1263. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +0 -111
  1264. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +0 -23
  1265. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +0 -108
  1266. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.d.ts +0 -6
  1267. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +0 -108
  1268. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.ts +0 -46
  1269. package/esm/RadarChart/RadarSeriesPlot/index.d.ts +0 -6
  1270. package/esm/RadarChart/RadarSeriesPlot/index.js +0 -4
  1271. package/esm/RadarChart/RadarSeriesPlot/useInteractionAllItemProps.d.ts +0 -7
  1272. package/esm/RadarChart/RadarSeriesPlot/useInteractionAllItemProps.js +0 -18
  1273. package/esm/RadarChart/RadarSeriesPlot/useRadarRotationIndex.js +0 -31
  1274. package/esm/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +0 -32
  1275. package/esm/RadarChart/RadarSeriesPlot/useRadarSeriesData.js +0 -69
  1276. package/esm/RadarChart/index.d.ts +0 -22
  1277. package/esm/RadarChart/index.js +0 -22
  1278. package/esm/RadarChart/seriesConfig/extremums.d.ts +0 -3
  1279. package/esm/RadarChart/seriesConfig/getColor.d.ts +0 -3
  1280. package/esm/RadarChart/seriesConfig/getColor.js +0 -15
  1281. package/esm/RadarChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
  1282. package/esm/RadarChart/seriesConfig/index.d.ts +0 -2
  1283. package/esm/RadarChart/seriesConfig/index.js +0 -22
  1284. package/esm/RadarChart/seriesConfig/keyboardFocusHandler.d.ts +0 -3
  1285. package/esm/RadarChart/seriesConfig/keyboardFocusHandler.js +0 -17
  1286. package/esm/RadarChart/seriesConfig/legend.d.ts +0 -3
  1287. package/esm/RadarChart/seriesConfig/legend.js +0 -23
  1288. package/esm/RadarChart/seriesConfig/seriesProcessor.d.ts +0 -3
  1289. package/esm/RadarChart/seriesConfig/tooltip.d.ts +0 -4
  1290. package/esm/RadarChart/seriesConfig/tooltip.js +0 -39
  1291. package/esm/RadarChart/seriesConfig/tooltipPosition.d.ts +0 -3
  1292. package/esm/RadarChart/seriesConfig/tooltipPosition.js +0 -100
  1293. package/esm/RadarChart/useRadarChartProps.d.ts +0 -28
  1294. package/esm/RadarChart/useRadarChartProps.js +0 -93
  1295. package/esm/ScatterChart/BatchScatter.d.ts +0 -32
  1296. package/esm/ScatterChart/BatchScatter.js +0 -159
  1297. package/esm/ScatterChart/FocusedScatterMark.js +0 -54
  1298. package/esm/ScatterChart/Scatter.d.ts +0 -44
  1299. package/esm/ScatterChart/Scatter.js +0 -115
  1300. package/esm/ScatterChart/ScatterChart.d.ts +0 -85
  1301. package/esm/ScatterChart/ScatterChart.js +0 -1215
  1302. package/esm/ScatterChart/ScatterChart.plugins.d.ts +0 -12
  1303. package/esm/ScatterChart/ScatterChart.plugins.js +0 -10
  1304. package/esm/ScatterChart/ScatterMarker.d.ts +0 -46
  1305. package/esm/ScatterChart/ScatterMarker.types.d.ts +0 -24
  1306. package/esm/ScatterChart/ScatterPlot.d.ts +0 -46
  1307. package/esm/ScatterChart/ScatterPlot.js +0 -129
  1308. package/esm/ScatterChart/index.d.ts +0 -9
  1309. package/esm/ScatterChart/index.js +0 -8
  1310. package/esm/ScatterChart/seriesConfig/extremums.d.ts +0 -3
  1311. package/esm/ScatterChart/seriesConfig/getColor.d.ts +0 -3
  1312. package/esm/ScatterChart/seriesConfig/getColor.js +0 -81
  1313. package/esm/ScatterChart/seriesConfig/getSeriesWithDefaultValues.d.ts +0 -3
  1314. package/esm/ScatterChart/seriesConfig/index.d.ts +0 -2
  1315. package/esm/ScatterChart/seriesConfig/index.js +0 -21
  1316. package/esm/ScatterChart/seriesConfig/keyboardFocusHandler.d.ts +0 -3
  1317. package/esm/ScatterChart/seriesConfig/keyboardFocusHandler.js +0 -17
  1318. package/esm/ScatterChart/seriesConfig/legend.d.ts +0 -3
  1319. package/esm/ScatterChart/seriesConfig/legend.js +0 -23
  1320. package/esm/ScatterChart/seriesConfig/seriesProcessor.d.ts +0 -3
  1321. package/esm/ScatterChart/seriesConfig/tooltip.d.ts +0 -3
  1322. package/esm/ScatterChart/seriesConfig/tooltip.js +0 -25
  1323. package/esm/ScatterChart/seriesConfig/tooltipPosition.d.ts +0 -3
  1324. package/esm/ScatterChart/useScatterChartProps.d.ts +0 -29
  1325. package/esm/ScatterChart/useScatterChartProps.js +0 -110
  1326. package/esm/ScatterChart/useScatterPlotData.d.ts +0 -8
  1327. package/esm/ScatterChart/useScatterPlotData.js +0 -26
  1328. package/esm/SparkLineChart/SparkLineChart.d.ts +0 -129
  1329. package/esm/SparkLineChart/SparkLineChart.js +0 -1367
  1330. package/esm/SparkLineChart/index.d.ts +0 -1
  1331. package/esm/SparkLineChart/index.js +0 -1
  1332. package/esm/Toolbar/Toolbar.js +0 -58
  1333. package/esm/Toolbar/ToolbarButton.d.ts +0 -11
  1334. package/esm/Toolbar/ToolbarButton.js +0 -56
  1335. package/esm/Toolbar/index.d.ts +0 -4
  1336. package/esm/Toolbar/index.js +0 -4
  1337. package/esm/colorPalettes/categorical/blueberryTwilight.d.ts +0 -4
  1338. package/esm/colorPalettes/categorical/cheerfulFiesta.d.ts +0 -4
  1339. package/esm/colorPalettes/categorical/mangoFusion.d.ts +0 -4
  1340. package/esm/colorPalettes/categorical/rainbowSurge.d.ts +0 -4
  1341. package/esm/colorPalettes/index.d.ts +0 -14
  1342. package/esm/colorPalettes/index.js +0 -20
  1343. package/esm/colorPalettes/sequential/blue.d.ts +0 -4
  1344. package/esm/colorPalettes/sequential/cyan.d.ts +0 -4
  1345. package/esm/colorPalettes/sequential/green.d.ts +0 -4
  1346. package/esm/colorPalettes/sequential/orange.d.ts +0 -4
  1347. package/esm/colorPalettes/sequential/pink.d.ts +0 -4
  1348. package/esm/colorPalettes/sequential/purple.d.ts +0 -4
  1349. package/esm/colorPalettes/sequential/red.d.ts +0 -4
  1350. package/esm/colorPalettes/sequential/strawberrySky.d.ts +0 -4
  1351. package/esm/colorPalettes/sequential/yellow.d.ts +0 -4
  1352. package/esm/context/ChartApi.d.ts +0 -22
  1353. package/esm/context/ChartProvider/ChartContext.d.ts +0 -5
  1354. package/esm/context/ChartProvider/ChartContext.js +0 -9
  1355. package/esm/context/ChartProvider/ChartProvider.d.ts +0 -5
  1356. package/esm/context/ChartProvider/ChartProvider.js +0 -8
  1357. package/esm/context/ChartProvider/ChartProvider.types.d.ts +0 -15
  1358. package/esm/context/ChartProvider/index.d.ts +0 -3
  1359. package/esm/context/ChartProvider/index.js +0 -3
  1360. package/esm/context/ChartProvider/useChartContext.d.ts +0 -4
  1361. package/esm/context/ChartProvider/useChartContext.js +0 -8
  1362. package/esm/context/ChartsProvider/ChartsContext.d.ts +0 -6
  1363. package/esm/context/ChartsProvider/ChartsProvider.d.ts +0 -8
  1364. package/esm/context/ChartsProvider/ChartsProvider.js +0 -41
  1365. package/esm/context/ChartsProvider/ChartsProvider.types.d.ts +0 -40
  1366. package/esm/context/ChartsProvider/index.d.ts +0 -3
  1367. package/esm/context/ChartsProvider/index.js +0 -3
  1368. package/esm/context/ChartsProvider/useChartsContext.d.ts +0 -3
  1369. package/esm/context/ChartsProvider/useChartsContext.js +0 -11
  1370. package/esm/context/ChartsSlotsContext.d.ts +0 -20
  1371. package/esm/context/index.d.ts +0 -3
  1372. package/esm/context/index.js +0 -2
  1373. package/esm/context/useChartApiContext.d.ts +0 -10
  1374. package/esm/context/useChartApiContext.js +0 -21
  1375. package/esm/hooks/animation/index.d.ts +0 -7
  1376. package/esm/hooks/animation/index.js +0 -7
  1377. package/esm/hooks/animation/useAnimate.js +0 -49
  1378. package/esm/hooks/animation/useAnimateArea.d.ts +0 -15
  1379. package/esm/hooks/animation/useAnimateArea.js +0 -24
  1380. package/esm/hooks/animation/useAnimateBar.d.ts +0 -17
  1381. package/esm/hooks/animation/useAnimateBar.js +0 -50
  1382. package/esm/hooks/animation/useAnimateBarLabel.d.ts +0 -19
  1383. package/esm/hooks/animation/useAnimateBarLabel.js +0 -102
  1384. package/esm/hooks/animation/useAnimateGaugeValueArc.js +0 -54
  1385. package/esm/hooks/animation/useAnimateLine.d.ts +0 -14
  1386. package/esm/hooks/animation/useAnimateLine.js +0 -23
  1387. package/esm/hooks/animation/useAnimatePieArc.d.ts +0 -15
  1388. package/esm/hooks/animation/useAnimatePieArc.js +0 -62
  1389. package/esm/hooks/animation/useAnimatePieArcLabel.d.ts +0 -24
  1390. package/esm/hooks/animation/useAnimatePieArcLabel.js +0 -68
  1391. package/esm/hooks/index.d.ts +0 -23
  1392. package/esm/hooks/index.js +0 -23
  1393. package/esm/hooks/useAxis.d.ts +0 -151
  1394. package/esm/hooks/useAxis.js +0 -222
  1395. package/esm/hooks/useAxisSystem.js +0 -25
  1396. package/esm/hooks/useBarSeries.d.ts +0 -36
  1397. package/esm/hooks/useBarSeries.js +0 -41
  1398. package/esm/hooks/useBrush.js +0 -15
  1399. package/esm/hooks/useChartGradientId.d.ts +0 -31
  1400. package/esm/hooks/useChartGradientId.js +0 -47
  1401. package/esm/hooks/useChartId.js +0 -13
  1402. package/esm/hooks/useChartRootRef.js +0 -12
  1403. package/esm/hooks/useChartsLocalization.d.ts +0 -1
  1404. package/esm/hooks/useChartsLocalization.js +0 -11
  1405. package/esm/hooks/useColorScale.d.ts +0 -22
  1406. package/esm/hooks/useColorScale.js +0 -37
  1407. package/esm/hooks/useDataset.d.ts +0 -6
  1408. package/esm/hooks/useDataset.js +0 -12
  1409. package/esm/hooks/useDrawingArea.js +0 -15
  1410. package/esm/hooks/useFocusedItem.d.ts +0 -4
  1411. package/esm/hooks/useFocusedItem.js +0 -12
  1412. package/esm/hooks/useInteractionItemProps.d.ts +0 -18
  1413. package/esm/hooks/useInteractionItemProps.js +0 -73
  1414. package/esm/hooks/useIsItemFocused.d.ts +0 -13
  1415. package/esm/hooks/useIsItemFocused.js +0 -16
  1416. package/esm/hooks/useIsItemFocusedGetter.d.ts +0 -9
  1417. package/esm/hooks/useIsItemFocusedGetter.js +0 -15
  1418. package/esm/hooks/useItemHighlighted.d.ts +0 -23
  1419. package/esm/hooks/useItemHighlighted.js +0 -22
  1420. package/esm/hooks/useItemHighlightedGetter.d.ts +0 -12
  1421. package/esm/hooks/useItemHighlightedGetter.js +0 -21
  1422. package/esm/hooks/useLegend.d.ts +0 -13
  1423. package/esm/hooks/useLegend.js +0 -29
  1424. package/esm/hooks/useLineSeries.d.ts +0 -36
  1425. package/esm/hooks/useLineSeries.js +0 -41
  1426. package/esm/hooks/usePieSeries.d.ts +0 -41
  1427. package/esm/hooks/usePieSeries.js +0 -52
  1428. package/esm/hooks/useRadarSeries.d.ts +0 -35
  1429. package/esm/hooks/useRadarSeries.js +0 -40
  1430. package/esm/hooks/useScale.d.ts +0 -47
  1431. package/esm/hooks/useScale.js +0 -74
  1432. package/esm/hooks/useScatterSeries.d.ts +0 -35
  1433. package/esm/hooks/useScatterSeries.js +0 -40
  1434. package/esm/hooks/useSeries.d.ts +0 -7
  1435. package/esm/hooks/useSeries.js +0 -14
  1436. package/esm/hooks/useSkipAnimation.js +0 -15
  1437. package/esm/hooks/useSvgRef.js +0 -15
  1438. package/esm/hooks/useTicks.d.ts +0 -76
  1439. package/esm/hooks/useTicks.js +0 -260
  1440. package/esm/hooks/useTicksGrouped.d.ts +0 -28
  1441. package/esm/hooks/useTicksGrouped.js +0 -98
  1442. package/esm/hooks/useZAxis.d.ts +0 -7
  1443. package/esm/hooks/useZAxis.js +0 -26
  1444. package/esm/index.d.ts +0 -36
  1445. package/esm/index.js +0 -44
  1446. package/esm/internals/animation/Transition.d.ts +0 -37
  1447. package/esm/internals/animation/Transition.js +0 -78
  1448. package/esm/internals/animation/useAnimateInternal.js +0 -76
  1449. package/esm/internals/colorScale.d.ts +0 -5
  1450. package/esm/internals/commonNextFocusItem.d.ts +0 -39
  1451. package/esm/internals/commonNextFocusItem.js +0 -122
  1452. package/esm/internals/components/AxisSharedComponents.js +0 -25
  1453. package/esm/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +0 -133
  1454. package/esm/internals/components/ChartsAxesGradients/ChartsContinuousGradient.d.ts +0 -18
  1455. package/esm/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.d.ts +0 -12
  1456. package/esm/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.d.ts +0 -11
  1457. package/esm/internals/components/ChartsAxesGradients/index.d.ts +0 -1
  1458. package/esm/internals/components/ChartsAxesGradients/index.js +0 -1
  1459. package/esm/internals/configInit.d.ts +0 -16
  1460. package/esm/internals/constants.d.ts +0 -16
  1461. package/esm/internals/consumeSlots.js +0 -100
  1462. package/esm/internals/consumeThemeProps.js +0 -74
  1463. package/esm/internals/createSvgIcon.d.ts +0 -3
  1464. package/esm/internals/dateHelpers.d.ts +0 -17
  1465. package/esm/internals/defaultValueFormatters.d.ts +0 -6
  1466. package/esm/internals/defaultizeMargin.d.ts +0 -3
  1467. package/esm/internals/ellipsize.js +0 -53
  1468. package/esm/internals/geometry.js +0 -35
  1469. package/esm/internals/getBarDimensions.d.ts +0 -16
  1470. package/esm/internals/getBarDimensions.js +0 -55
  1471. package/esm/internals/getCurve.d.ts +0 -2
  1472. package/esm/internals/getScale.d.ts +0 -3
  1473. package/esm/internals/getScale.js +0 -20
  1474. package/esm/internals/getSeriesColorFn.d.ts +0 -5
  1475. package/esm/internals/getWordsByLines.js +0 -14
  1476. package/esm/internals/identifierSerializer.d.ts +0 -9
  1477. package/esm/internals/index.d.ts +0 -83
  1478. package/esm/internals/index.js +0 -97
  1479. package/esm/internals/invertScale.d.ts +0 -6
  1480. package/esm/internals/invertScale.js +0 -16
  1481. package/esm/internals/invertTextAnchor.d.ts +0 -2
  1482. package/esm/internals/isCartesian.d.ts +0 -3
  1483. package/esm/internals/isCartesian.js +0 -7
  1484. package/esm/internals/isPolar.d.ts +0 -2
  1485. package/esm/internals/isPolar.js +0 -4
  1486. package/esm/internals/material/index.d.ts +0 -6
  1487. package/esm/internals/plugins/allPlugins.d.ts +0 -14
  1488. package/esm/internals/plugins/allPlugins.js +0 -12
  1489. package/esm/internals/plugins/corePlugins/corePlugins.d.ts +0 -14
  1490. package/esm/internals/plugins/corePlugins/corePlugins.js +0 -11
  1491. package/esm/internals/plugins/corePlugins/index.d.ts +0 -2
  1492. package/esm/internals/plugins/corePlugins/index.js +0 -1
  1493. package/esm/internals/plugins/corePlugins/useChartAnimation/index.d.ts +0 -3
  1494. package/esm/internals/plugins/corePlugins/useChartAnimation/index.js +0 -2
  1495. package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.d.ts +0 -3
  1496. package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.d.ts +0 -3
  1497. package/esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.d.ts +0 -39
  1498. package/esm/internals/plugins/corePlugins/useChartDimensions/index.d.ts +0 -3
  1499. package/esm/internals/plugins/corePlugins/useChartDimensions/index.js +0 -2
  1500. package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.d.ts +0 -3
  1501. package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +0 -180
  1502. package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +0 -27
  1503. package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +0 -31
  1504. package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.d.ts +0 -93
  1505. package/esm/internals/plugins/corePlugins/useChartExperimentalFeature/index.d.ts +0 -3
  1506. package/esm/internals/plugins/corePlugins/useChartExperimentalFeature/index.js +0 -2
  1507. package/esm/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.d.ts +0 -3
  1508. package/esm/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.selectors.d.ts +0 -6
  1509. package/esm/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.types.d.ts +0 -21
  1510. package/esm/internals/plugins/corePlugins/useChartId/index.d.ts +0 -3
  1511. package/esm/internals/plugins/corePlugins/useChartId/index.js +0 -2
  1512. package/esm/internals/plugins/corePlugins/useChartId/useChartId.d.ts +0 -3
  1513. package/esm/internals/plugins/corePlugins/useChartId/useChartId.js +0 -30
  1514. package/esm/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +0 -8
  1515. package/esm/internals/plugins/corePlugins/useChartId/useChartId.types.d.ts +0 -20
  1516. package/esm/internals/plugins/corePlugins/useChartInteractionListener/index.d.ts +0 -2
  1517. package/esm/internals/plugins/corePlugins/useChartInteractionListener/index.js +0 -1
  1518. package/esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.d.ts +0 -3
  1519. package/esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.d.ts +0 -51
  1520. package/esm/internals/plugins/corePlugins/useChartSeries/index.d.ts +0 -3
  1521. package/esm/internals/plugins/corePlugins/useChartSeries/index.js +0 -2
  1522. package/esm/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +0 -39
  1523. package/esm/internals/plugins/corePlugins/useChartSeries/serializeIdentifier.d.ts +0 -14
  1524. package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.ts +0 -3
  1525. package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +0 -71
  1526. package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +0 -32
  1527. package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +0 -31
  1528. package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +0 -65
  1529. package/esm/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +0 -5
  1530. package/esm/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +0 -21
  1531. package/esm/internals/plugins/featurePlugins/shared/useRegisterPointerInteractions.d.ts +0 -11
  1532. package/esm/internals/plugins/featurePlugins/shared/useRegisterPointerInteractions.js +0 -74
  1533. package/esm/internals/plugins/featurePlugins/useChartBrush/index.d.ts +0 -3
  1534. package/esm/internals/plugins/featurePlugins/useChartBrush/index.js +0 -3
  1535. package/esm/internals/plugins/featurePlugins/useChartBrush/useChartBrush.d.ts +0 -3
  1536. package/esm/internals/plugins/featurePlugins/useChartBrush/useChartBrush.js +0 -109
  1537. package/esm/internals/plugins/featurePlugins/useChartBrush/useChartBrush.selectors.d.ts +0 -54
  1538. package/esm/internals/plugins/featurePlugins/useChartBrush/useChartBrush.selectors.js +0 -75
  1539. package/esm/internals/plugins/featurePlugins/useChartBrush/useChartBrush.types.d.ts +0 -81
  1540. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +0 -32
  1541. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +0 -129
  1542. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +0 -7
  1543. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +0 -43
  1544. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.d.ts +0 -4
  1545. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.js +0 -14
  1546. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.d.ts +0 -13
  1547. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +0 -103
  1548. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +0 -20
  1549. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +0 -41
  1550. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/domain.d.ts +0 -20
  1551. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/domain.js +0 -77
  1552. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisDomainLimit.d.ts +0 -7
  1553. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtrema.d.ts +0 -6
  1554. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtrema.js +0 -24
  1555. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.d.ts +0 -5
  1556. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisScale.js +0 -24
  1557. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.d.ts +0 -5
  1558. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisTriggerTooltip.js +0 -21
  1559. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +0 -15
  1560. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +0 -61
  1561. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +0 -11
  1562. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +0 -10
  1563. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +0 -20
  1564. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.js +0 -22
  1565. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.d.ts +0 -3
  1566. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +0 -224
  1567. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +0 -100
  1568. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +0 -11
  1569. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPosition.selectors.d.ts +0 -4
  1570. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPosition.selectors.js +0 -83
  1571. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.d.ts +0 -13
  1572. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisPreview.selectors.js +0 -122
  1573. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +0 -160
  1574. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +0 -300
  1575. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianHighlight.selectors.d.ts +0 -45
  1576. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianHighlight.selectors.js +0 -90
  1577. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.d.ts +0 -44
  1578. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianInteraction.selectors.js +0 -102
  1579. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.js +0 -18
  1580. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +0 -109
  1581. package/esm/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.d.ts +0 -4
  1582. package/esm/internals/plugins/featurePlugins/useChartClosestPoint/findClosestPoints.js +0 -33
  1583. package/esm/internals/plugins/featurePlugins/useChartClosestPoint/index.d.ts +0 -3
  1584. package/esm/internals/plugins/featurePlugins/useChartClosestPoint/index.js +0 -2
  1585. package/esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.d.ts +0 -3
  1586. package/esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.js +0 -208
  1587. package/esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.selectors.d.ts +0 -3
  1588. package/esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.types.d.ts +0 -59
  1589. package/esm/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.ts +0 -3
  1590. package/esm/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.ts +0 -3
  1591. package/esm/internals/plugins/featurePlugins/useChartHighlight/highlightStates.d.ts +0 -16
  1592. package/esm/internals/plugins/featurePlugins/useChartHighlight/index.d.ts +0 -4
  1593. package/esm/internals/plugins/featurePlugins/useChartHighlight/index.js +0 -2
  1594. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.ts +0 -3
  1595. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +0 -36
  1596. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +0 -43
  1597. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +0 -81
  1598. package/esm/internals/plugins/featurePlugins/useChartInteraction/checkHasInteractionPlugin.d.ts +0 -3
  1599. package/esm/internals/plugins/featurePlugins/useChartInteraction/index.d.ts +0 -3
  1600. package/esm/internals/plugins/featurePlugins/useChartInteraction/index.js +0 -2
  1601. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.ts +0 -3
  1602. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +0 -18
  1603. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +0 -54
  1604. package/esm/internals/plugins/featurePlugins/useChartItemClick/index.d.ts +0 -2
  1605. package/esm/internals/plugins/featurePlugins/useChartItemClick/index.js +0 -1
  1606. package/esm/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.d.ts +0 -3
  1607. package/esm/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.js +0 -48
  1608. package/esm/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.types.d.ts +0 -22
  1609. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/index.d.ts +0 -4
  1610. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/index.js +0 -2
  1611. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/keyboardFocusHandler.types.d.ts +0 -14
  1612. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.d.ts +0 -3
  1613. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.js +0 -80
  1614. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.d.ts +0 -23
  1615. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.selectors.js +0 -46
  1616. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.d.ts +0 -24
  1617. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getMaxSeriesLength.d.ts +0 -3
  1618. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNextNonEmptySeries.d.ts +0 -15
  1619. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNextNonEmptySeries.js +0 -18
  1620. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNonEmptySeriesArray.d.ts +0 -7
  1621. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getPreviousNonEmptySeries.d.ts +0 -11
  1622. package/esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getPreviousNonEmptySeries.js +0 -18
  1623. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +0 -27
  1624. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +0 -125
  1625. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.d.ts +0 -5
  1626. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.js +0 -24
  1627. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.ts +0 -5
  1628. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.js +0 -21
  1629. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.d.ts +0 -6
  1630. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.js +0 -26
  1631. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.d.ts +0 -5
  1632. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisTriggerTooltip.js +0 -21
  1633. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/index.d.ts +0 -3
  1634. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/index.js +0 -2
  1635. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.d.ts +0 -3
  1636. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +0 -220
  1637. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +0 -32
  1638. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.js +0 -33
  1639. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +0 -74
  1640. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +0 -29
  1641. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.js +0 -86
  1642. package/esm/internals/plugins/featurePlugins/useChartTooltip/index.d.ts +0 -3
  1643. package/esm/internals/plugins/featurePlugins/useChartTooltip/index.js +0 -2
  1644. package/esm/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.d.ts +0 -3
  1645. package/esm/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.d.ts +0 -18
  1646. package/esm/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.js +0 -58
  1647. package/esm/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.types.d.ts +0 -51
  1648. package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/index.d.ts +0 -3
  1649. package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/index.js +0 -3
  1650. package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/isIdentifierVisible.d.ts +0 -4
  1651. package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/isIdentifierVisible.js +0 -5
  1652. package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.d.ts +0 -3
  1653. package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.js +0 -82
  1654. package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.selectors.d.ts +0 -16
  1655. package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.selectors.js +0 -19
  1656. package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.types.d.ts +0 -112
  1657. package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/visibilityParamToMap.d.ts +0 -4
  1658. package/esm/internals/plugins/featurePlugins/useChartVisibilityManager/visibilityParamToMap.js +0 -11
  1659. package/esm/internals/plugins/featurePlugins/useChartZAxis/index.d.ts +0 -3
  1660. package/esm/internals/plugins/featurePlugins/useChartZAxis/index.js +0 -2
  1661. package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.d.ts +0 -3
  1662. package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +0 -84
  1663. package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +0 -8
  1664. package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +0 -37
  1665. package/esm/internals/plugins/models/chart.d.ts +0 -15
  1666. package/esm/internals/plugins/models/helpers.d.ts +0 -6
  1667. package/esm/internals/plugins/models/index.d.ts +0 -4
  1668. package/esm/internals/plugins/models/index.js +0 -4
  1669. package/esm/internals/plugins/models/plugin.d.ts +0 -146
  1670. package/esm/internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.d.ts +0 -22
  1671. package/esm/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +0 -19
  1672. package/esm/internals/plugins/models/seriesConfig/getItemAtPosition.types.d.ts +0 -8
  1673. package/esm/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.d.ts +0 -3
  1674. package/esm/internals/plugins/models/seriesConfig/identifierSerializer.types.d.ts +0 -2
  1675. package/esm/internals/plugins/models/seriesConfig/index.d.ts +0 -11
  1676. package/esm/internals/plugins/models/seriesConfig/index.js +0 -11
  1677. package/esm/internals/plugins/models/seriesConfig/legendGetter.types.d.ts +0 -4
  1678. package/esm/internals/plugins/models/seriesConfig/polarExtremumGetter.types.d.ts +0 -12
  1679. package/esm/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +0 -49
  1680. package/esm/internals/plugins/models/seriesConfig/seriesLayout.types.d.ts +0 -6
  1681. package/esm/internals/plugins/models/seriesConfig/seriesProcessor.types.d.ts +0 -17
  1682. package/esm/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +0 -74
  1683. package/esm/internals/plugins/models/seriesConfig/tooltipItemPositionGetter.types.d.ts +0 -27
  1684. package/esm/internals/plugins/utils/selectors.d.ts +0 -5
  1685. package/esm/internals/plugins/utils/useLazySelectorEffect.d.ts +0 -7
  1686. package/esm/internals/scaleGuards.d.ts +0 -17
  1687. package/esm/internals/scales/index.d.ts +0 -3
  1688. package/esm/internals/scales/index.js +0 -3
  1689. package/esm/internals/scales/scalePoint.js +0 -41
  1690. package/esm/internals/seriesHasData.d.ts +0 -4
  1691. package/esm/internals/seriesSelectorOfType.d.ts +0 -20
  1692. package/esm/internals/seriesSelectorOfType.js +0 -37
  1693. package/esm/internals/stacking/index.d.ts +0 -1
  1694. package/esm/internals/stacking/index.js +0 -1
  1695. package/esm/internals/stacking/offset/index.d.ts +0 -1
  1696. package/esm/internals/stacking/offset/index.js +0 -1
  1697. package/esm/internals/stacking/stackSeries.d.ts +0 -71
  1698. package/esm/internals/stacking/stackSeries.js +0 -96
  1699. package/esm/internals/store/extractPluginParamsFromProps.d.ts +0 -13
  1700. package/esm/internals/store/useCharts.d.ts +0 -25
  1701. package/esm/internals/store/useCharts.js +0 -89
  1702. package/esm/internals/store/useCharts.types.d.ts +0 -5
  1703. package/esm/internals/store/useStore.d.ts +0 -3
  1704. package/esm/internals/store/useStore.js +0 -9
  1705. package/esm/internals/ticks.d.ts +0 -4
  1706. package/esm/locales/elGR.d.ts +0 -115
  1707. package/esm/locales/elGR.js +0 -113
  1708. package/esm/locales/enUS.d.ts +0 -116
  1709. package/esm/locales/enUS.js +0 -117
  1710. package/esm/locales/frFR.d.ts +0 -115
  1711. package/esm/locales/frFR.js +0 -114
  1712. package/esm/locales/index.d.ts +0 -8
  1713. package/esm/locales/index.js +0 -8
  1714. package/esm/locales/nbNO.d.ts +0 -115
  1715. package/esm/locales/nbNO.js +0 -113
  1716. package/esm/locales/ptBR.d.ts +0 -115
  1717. package/esm/locales/ptBR.js +0 -113
  1718. package/esm/locales/ptPT.d.ts +0 -115
  1719. package/esm/locales/ptPT.js +0 -115
  1720. package/esm/locales/svSE.d.ts +0 -115
  1721. package/esm/locales/svSE.js +0 -115
  1722. package/esm/locales/utils/chartsLocaleTextApi.d.ts +0 -420
  1723. package/esm/locales/utils/getChartsLocalization.d.ts +0 -119
  1724. package/esm/models/axis.d.ts +0 -560
  1725. package/esm/models/index.d.ts +0 -9
  1726. package/esm/models/index.js +0 -7
  1727. package/esm/models/seriesType/bar.d.ts +0 -67
  1728. package/esm/models/seriesType/common.d.ts +0 -85
  1729. package/esm/models/seriesType/config.d.ts +0 -97
  1730. package/esm/models/seriesType/index.d.ts +0 -40
  1731. package/esm/models/seriesType/index.js +0 -41
  1732. package/esm/models/seriesType/line.d.ts +0 -108
  1733. package/esm/models/seriesType/pie.d.ts +0 -202
  1734. package/esm/models/seriesType/radar.d.ts +0 -30
  1735. package/esm/models/seriesType/scatter.d.ts +0 -78
  1736. package/esm/models/slots/chartsBaseSlots.d.ts +0 -6
  1737. package/esm/models/slots/index.d.ts +0 -3
  1738. package/esm/models/slots/index.js +0 -3
  1739. package/esm/models/z-axis.d.ts +0 -22
  1740. package/esm/moduleAugmentation/barChartBatchRendererOnItemClick.d.ts +0 -13
  1741. package/esm/package.json +0 -1
  1742. package/esm/plugins/index.d.ts +0 -8
  1743. package/esm/plugins/index.js +0 -14
  1744. package/esm/themeAugmentation/index.d.ts +0 -3
  1745. package/esm/themeAugmentation/overrides.d.ts +0 -43
  1746. package/esm/themeAugmentation/props.d.ts +0 -33
  1747. package/esm/utils/index.d.ts +0 -5
  1748. package/esm/utils/index.js +0 -6
  1749. package/esm/utils/niceDomain.d.ts +0 -20
  1750. package/esm/utils/niceDomain.js +0 -24
  1751. package/esm/utils/timeTicks.d.ts +0 -2
  1752. /package/{esm/BarChart/BarLabel/BarLabel.types.js → BarChart/BarLabel/BarLabel.types.mjs} +0 -0
  1753. /package/{esm/BarChart/BarLabel/barLabelClasses.js → BarChart/BarLabel/barLabelClasses.mjs} +0 -0
  1754. /package/{esm/BarChart/BarLabel/getBarLabel.js → BarChart/BarLabel/getBarLabel.mjs} +0 -0
  1755. /package/{esm/BarChart/BatchBarPlot/BarGroup.d.ts → BarChart/BatchBarPlot/BarGroup.d.mts} +0 -0
  1756. /package/{esm/BarChart/FocusedBar.d.ts → BarChart/FocusedBar.d.mts} +0 -0
  1757. /package/{esm/BarChart/barClasses.js → BarChart/barClasses.mjs} +0 -0
  1758. /package/{esm/BarChart/barElementClasses.js → BarChart/barElementClasses.mjs} +0 -0
  1759. /package/{esm/BarChart/seriesConfig/bar/getSeriesWithDefaultValues.js → BarChart/seriesConfig/bar/getSeriesWithDefaultValues.mjs} +0 -0
  1760. /package/{esm/BarChart/types.js → BarChart/types.mjs} +0 -0
  1761. /package/{esm/ChartsAxis/axisClasses.d.ts → ChartsAxis/axisClasses.d.mts} +0 -0
  1762. /package/{esm/ChartsAxis/axisClasses.js → ChartsAxis/axisClasses.mjs} +0 -0
  1763. /package/{esm/ChartsAxisHighlight/ChartsAxisHighlight.types.d.ts → ChartsAxisHighlight/ChartsAxisHighlight.types.d.mts} +0 -0
  1764. /package/{esm/ChartsAxisHighlight/ChartsAxisHighlight.types.js → ChartsAxisHighlight/ChartsAxisHighlight.types.mjs} +0 -0
  1765. /package/{esm/ChartsAxisHighlight/ChartsAxisHighlightPath.js → ChartsAxisHighlight/ChartsAxisHighlightPath.mjs} +0 -0
  1766. /package/{esm/ChartsAxisHighlight/chartsAxisHighlightClasses.d.ts → ChartsAxisHighlight/chartsAxisHighlightClasses.d.mts} +0 -0
  1767. /package/{esm/ChartsAxisHighlight/chartsAxisHighlightClasses.js → ChartsAxisHighlight/chartsAxisHighlightClasses.mjs} +0 -0
  1768. /package/{esm/ChartsBrushOverlay/ChartsBrushOverlay.classes.d.ts → ChartsBrushOverlay/ChartsBrushOverlay.classes.d.mts} +0 -0
  1769. /package/{esm/ChartsBrushOverlay/ChartsBrushOverlay.classes.js → ChartsBrushOverlay/ChartsBrushOverlay.classes.mjs} +0 -0
  1770. /package/{esm/ChartsBrushOverlay/ChartsBrushOverlay.d.ts → ChartsBrushOverlay/ChartsBrushOverlay.d.mts} +0 -0
  1771. /package/{esm/ChartsClipPath/ChartsClipPath.d.ts → ChartsClipPath/ChartsClipPath.d.mts} +0 -0
  1772. /package/{esm/ChartsGrid/chartsGridClasses.d.ts → ChartsGrid/chartsGridClasses.d.mts} +0 -0
  1773. /package/{esm/ChartsGrid/chartsGridClasses.js → ChartsGrid/chartsGridClasses.mjs} +0 -0
  1774. /package/{esm/ChartsGrid/styledComponents.d.ts → ChartsGrid/styledComponents.d.mts} +0 -0
  1775. /package/{esm/ChartsLabel/labelClasses.js → ChartsLabel/labelClasses.mjs} +0 -0
  1776. /package/{esm/ChartsLabel/labelGradientClasses.js → ChartsLabel/labelGradientClasses.mjs} +0 -0
  1777. /package/{esm/ChartsLabel/labelMarkClasses.js → ChartsLabel/labelMarkClasses.mjs} +0 -0
  1778. /package/{esm/ChartsLegend/chartsLegend.types.js → ChartsLegend/chartsLegend.types.mjs} +0 -0
  1779. /package/{esm/ChartsLegend/chartsLegendClasses.js → ChartsLegend/chartsLegendClasses.mjs} +0 -0
  1780. /package/{esm/ChartsLegend/colorLegend.types.js → ChartsLegend/colorLegend.types.mjs} +0 -0
  1781. /package/{esm/ChartsLegend/continuousColorLegendClasses.js → ChartsLegend/continuousColorLegendClasses.mjs} +0 -0
  1782. /package/{esm/ChartsLegend/direction.d.ts → ChartsLegend/direction.d.mts} +0 -0
  1783. /package/{esm/ChartsLegend/direction.js → ChartsLegend/direction.mjs} +0 -0
  1784. /package/{esm/ChartsLegend/legend.types.js → ChartsLegend/legend.types.mjs} +0 -0
  1785. /package/{esm/ChartsLegend/legendContext.types.js → ChartsLegend/legendContext.types.mjs} +0 -0
  1786. /package/{esm/ChartsLegend/onClickContextBuilder.js → ChartsLegend/onClickContextBuilder.mjs} +0 -0
  1787. /package/{esm/ChartsLegend/piecewiseColorDefaultLabelFormatter.js → ChartsLegend/piecewiseColorDefaultLabelFormatter.mjs} +0 -0
  1788. /package/{esm/ChartsLegend/piecewiseColorLegend.types.d.ts → ChartsLegend/piecewiseColorLegend.types.d.mts} +0 -0
  1789. /package/{esm/ChartsLegend/piecewiseColorLegend.types.js → ChartsLegend/piecewiseColorLegend.types.mjs} +0 -0
  1790. /package/{esm/ChartsLegend/piecewiseColorLegendClasses.js → ChartsLegend/piecewiseColorLegendClasses.mjs} +0 -0
  1791. /package/{esm/ChartsOverlay/ChartsOverlay.d.ts → ChartsOverlay/ChartsOverlay.d.mts} +0 -0
  1792. /package/{esm/ChartsReferenceLine/chartsReferenceLineClasses.d.ts → ChartsReferenceLine/chartsReferenceLineClasses.d.mts} +0 -0
  1793. /package/{esm/ChartsReferenceLine/chartsReferenceLineClasses.js → ChartsReferenceLine/chartsReferenceLineClasses.mjs} +0 -0
  1794. /package/{esm/ChartsSurface/ChartsSurface.d.ts → ChartsSurface/ChartsSurface.d.mts} +0 -0
  1795. /package/{esm/ChartsSurface/chartsSurfaceClasses.d.ts → ChartsSurface/chartsSurfaceClasses.d.mts} +0 -0
  1796. /package/{esm/ChartsSurface/chartsSurfaceClasses.js → ChartsSurface/chartsSurfaceClasses.mjs} +0 -0
  1797. /package/{esm/ChartsTooltip/ChartTooltip.types.js → ChartsTooltip/ChartTooltip.types.mjs} +0 -0
  1798. /package/{esm/ChartsTooltip/ChartsTooltipTable.d.ts → ChartsTooltip/ChartsTooltipTable.d.mts} +0 -0
  1799. /package/{esm/ChartsTooltip/chartsTooltipClasses.d.ts → ChartsTooltip/chartsTooltipClasses.d.mts} +0 -0
  1800. /package/{esm/ChartsTooltip/chartsTooltipClasses.js → ChartsTooltip/chartsTooltipClasses.mjs} +0 -0
  1801. /package/{esm/ChartsTooltip/utils.d.ts → ChartsTooltip/utils.d.mts} +0 -0
  1802. /package/{esm/Gauge/GaugeProvider.d.ts → Gauge/GaugeProvider.d.mts} +0 -0
  1803. /package/{esm/Gauge/GaugeReferenceArc.d.ts → Gauge/GaugeReferenceArc.d.mts} +0 -0
  1804. /package/{esm/Gauge/GaugeValueArc.d.ts → Gauge/GaugeValueArc.d.mts} +0 -0
  1805. /package/{esm/Gauge/gaugeClasses.d.ts → Gauge/gaugeClasses.d.mts} +0 -0
  1806. /package/{esm/Gauge/gaugeClasses.js → Gauge/gaugeClasses.mjs} +0 -0
  1807. /package/{esm/Gauge/utils.d.ts → Gauge/utils.d.mts} +0 -0
  1808. /package/{esm/LineChart/FocusedLineMark.d.ts → LineChart/FocusedLineMark.d.mts} +0 -0
  1809. /package/{esm/LineChart/lineClasses.js → LineChart/lineClasses.mjs} +0 -0
  1810. /package/{esm/LineChart/markElementClasses.js → LineChart/markElementClasses.mjs} +0 -0
  1811. /package/{esm/LineChart/seriesConfig/getSeriesWithDefaultValues.js → LineChart/seriesConfig/getSeriesWithDefaultValues.mjs} +0 -0
  1812. /package/{esm/LineChart/seriesConfig/tooltipPosition.js → LineChart/seriesConfig/tooltipPosition.mjs} +0 -0
  1813. /package/{esm/PieChart/pieClasses.js → PieChart/pieClasses.mjs} +0 -0
  1814. /package/{esm/PieChart/seriesConfig/getColor.js → PieChart/seriesConfig/getColor.mjs} +0 -0
  1815. /package/{esm/PieChart/seriesConfig/getSeriesWithDefaultValues.js → PieChart/seriesConfig/getSeriesWithDefaultValues.mjs} +0 -0
  1816. /package/{esm/RadarChart/FocusedRadarMark.d.ts → RadarChart/FocusedRadarMark.d.mts} +0 -0
  1817. /package/{esm/RadarChart/RadarAxis/RadarAxis.utils.js → RadarChart/RadarAxis/RadarAxis.utils.mjs} +0 -0
  1818. /package/{esm/RadarChart/RadarAxis/radarAxisClasses.d.ts → RadarChart/RadarAxis/radarAxisClasses.d.mts} +0 -0
  1819. /package/{esm/RadarChart/RadarAxis/radarAxisClasses.js → RadarChart/RadarAxis/radarAxisClasses.mjs} +0 -0
  1820. /package/{esm/RadarChart/RadarAxis/useRadarAxis.d.ts → RadarChart/RadarAxis/useRadarAxis.d.mts} +0 -0
  1821. /package/{esm/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.ts → RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.mts} +0 -0
  1822. /package/{esm/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.js → RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.mjs} +0 -0
  1823. /package/{esm/RadarChart/RadarDataProvider/radar.types.js → RadarChart/RadarDataProvider/radar.types.mjs} +0 -0
  1824. /package/{esm/RadarChart/RadarGrid/CircularRadarGrid.js → RadarChart/RadarGrid/CircularRadarGrid.mjs} +0 -0
  1825. /package/{esm/RadarChart/RadarGrid/CircularRadarStripes.js → RadarChart/RadarGrid/CircularRadarStripes.mjs} +0 -0
  1826. /package/{esm/RadarChart/RadarGrid/RadarGrid.types.js → RadarChart/RadarGrid/RadarGrid.types.mjs} +0 -0
  1827. /package/{esm/RadarChart/RadarGrid/SharpRadarGrid.js → RadarChart/RadarGrid/SharpRadarGrid.mjs} +0 -0
  1828. /package/{esm/RadarChart/RadarGrid/SharpRadarStripes.js → RadarChart/RadarGrid/SharpRadarStripes.mjs} +0 -0
  1829. /package/{esm/RadarChart/RadarGrid/radarGridClasses.d.ts → RadarChart/RadarGrid/radarGridClasses.d.mts} +0 -0
  1830. /package/{esm/RadarChart/RadarGrid/radarGridClasses.js → RadarChart/RadarGrid/radarGridClasses.mjs} +0 -0
  1831. /package/{esm/RadarChart/RadarGrid/useRadarGridData.d.ts → RadarChart/RadarGrid/useRadarGridData.d.mts} +0 -0
  1832. /package/{esm/RadarChart/RadarMetricLabels/RadarMetricLabels.d.ts → RadarChart/RadarMetricLabels/RadarMetricLabels.d.mts} +0 -0
  1833. /package/{esm/RadarChart/RadarMetricLabels/useRadarMetricData.d.ts → RadarChart/RadarMetricLabels/useRadarMetricData.d.mts} +0 -0
  1834. /package/{esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.js → RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.mjs} +0 -0
  1835. /package/{esm/RadarChart/RadarSeriesPlot/getAreaPath.d.ts → RadarChart/RadarSeriesPlot/getAreaPath.d.mts} +0 -0
  1836. /package/{esm/RadarChart/RadarSeriesPlot/getAreaPath.js → RadarChart/RadarSeriesPlot/getAreaPath.mjs} +0 -0
  1837. /package/{esm/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts → RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.mts} +0 -0
  1838. /package/{esm/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.js → RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.mjs} +0 -0
  1839. /package/{esm/RadarChart/RadarSeriesPlot/useRadarRotationIndex.d.ts → RadarChart/RadarSeriesPlot/useRadarRotationIndex.d.mts} +0 -0
  1840. /package/{esm/RadarChart/radarClasses.d.ts → RadarChart/radarClasses.d.mts} +0 -0
  1841. /package/{esm/RadarChart/radarClasses.js → RadarChart/radarClasses.mjs} +0 -0
  1842. /package/{esm/RadarChart/seriesConfig/extremums.js → RadarChart/seriesConfig/extremums.mjs} +0 -0
  1843. /package/{esm/RadarChart/seriesConfig/getSeriesWithDefaultValues.js → RadarChart/seriesConfig/getSeriesWithDefaultValues.mjs} +0 -0
  1844. /package/{esm/RadarChart/seriesConfig/seriesProcessor.js → RadarChart/seriesConfig/seriesProcessor.mjs} +0 -0
  1845. /package/{esm/ScatterChart/FocusedScatterMark.d.ts → ScatterChart/FocusedScatterMark.d.mts} +0 -0
  1846. /package/{esm/ScatterChart/ScatterMarker.js → ScatterChart/ScatterMarker.mjs} +0 -0
  1847. /package/{esm/ScatterChart/ScatterMarker.types.js → ScatterChart/ScatterMarker.types.mjs} +0 -0
  1848. /package/{esm/ScatterChart/scatterClasses.d.ts → ScatterChart/scatterClasses.d.mts} +0 -0
  1849. /package/{esm/ScatterChart/scatterClasses.js → ScatterChart/scatterClasses.mjs} +0 -0
  1850. /package/{esm/ScatterChart/seriesConfig/extremums.js → ScatterChart/seriesConfig/extremums.mjs} +0 -0
  1851. /package/{esm/ScatterChart/seriesConfig/getSeriesWithDefaultValues.js → ScatterChart/seriesConfig/getSeriesWithDefaultValues.mjs} +0 -0
  1852. /package/{esm/ScatterChart/seriesConfig/seriesProcessor.js → ScatterChart/seriesConfig/seriesProcessor.mjs} +0 -0
  1853. /package/{esm/ScatterChart/seriesConfig/tooltipPosition.js → ScatterChart/seriesConfig/tooltipPosition.mjs} +0 -0
  1854. /package/{esm/Toolbar/Toolbar.d.ts → Toolbar/Toolbar.d.mts} +0 -0
  1855. /package/{esm/Toolbar/Toolbar.types.d.ts → Toolbar/Toolbar.types.d.mts} +0 -0
  1856. /package/{esm/Toolbar/Toolbar.types.js → Toolbar/Toolbar.types.mjs} +0 -0
  1857. /package/{esm/Toolbar/chartToolbarClasses.d.ts → Toolbar/chartToolbarClasses.d.mts} +0 -0
  1858. /package/{esm/Toolbar/chartToolbarClasses.js → Toolbar/chartToolbarClasses.mjs} +0 -0
  1859. /package/{esm/colorPalettes/categorical/blueberryTwilight.js → colorPalettes/categorical/blueberryTwilight.mjs} +0 -0
  1860. /package/{esm/colorPalettes/categorical/cheerfulFiesta.js → colorPalettes/categorical/cheerfulFiesta.mjs} +0 -0
  1861. /package/{esm/colorPalettes/categorical/mangoFusion.js → colorPalettes/categorical/mangoFusion.mjs} +0 -0
  1862. /package/{esm/colorPalettes/categorical/rainbowSurge.js → colorPalettes/categorical/rainbowSurge.mjs} +0 -0
  1863. /package/{esm/colorPalettes/sequential/blue.js → colorPalettes/sequential/blue.mjs} +0 -0
  1864. /package/{esm/colorPalettes/sequential/cyan.js → colorPalettes/sequential/cyan.mjs} +0 -0
  1865. /package/{esm/colorPalettes/sequential/green.js → colorPalettes/sequential/green.mjs} +0 -0
  1866. /package/{esm/colorPalettes/sequential/orange.js → colorPalettes/sequential/orange.mjs} +0 -0
  1867. /package/{esm/colorPalettes/sequential/pink.js → colorPalettes/sequential/pink.mjs} +0 -0
  1868. /package/{esm/colorPalettes/sequential/purple.js → colorPalettes/sequential/purple.mjs} +0 -0
  1869. /package/{esm/colorPalettes/sequential/red.js → colorPalettes/sequential/red.mjs} +0 -0
  1870. /package/{esm/colorPalettes/sequential/strawberrySky.js → colorPalettes/sequential/strawberrySky.mjs} +0 -0
  1871. /package/{esm/colorPalettes/sequential/yellow.js → colorPalettes/sequential/yellow.mjs} +0 -0
  1872. /package/{esm/colorPalettes/types.d.ts → colorPalettes/types.d.mts} +0 -0
  1873. /package/{esm/colorPalettes/types.js → colorPalettes/types.mjs} +0 -0
  1874. /package/{esm/constants/index.d.ts → constants/index.d.mts} +0 -0
  1875. /package/{esm/constants/index.js → constants/index.mjs} +0 -0
  1876. /package/{esm/context/ChartApi.js → context/ChartApi.mjs} +0 -0
  1877. /package/{esm/context/ChartProvider/ChartProvider.types.js → context/ChartProvider/ChartProvider.types.mjs} +0 -0
  1878. /package/{esm/context/ChartsProvider/ChartsContext.js → context/ChartsProvider/ChartsContext.mjs} +0 -0
  1879. /package/{esm/context/ChartsProvider/ChartsProvider.types.js → context/ChartsProvider/ChartsProvider.types.mjs} +0 -0
  1880. /package/{esm/context/ChartsSlotsContext.js → context/ChartsSlotsContext.mjs} +0 -0
  1881. /package/{esm/hooks/animation/useAnimate.d.ts → hooks/animation/useAnimate.d.mts} +0 -0
  1882. /package/{esm/hooks/animation/useAnimateGaugeValueArc.d.ts → hooks/animation/useAnimateGaugeValueArc.d.mts} +0 -0
  1883. /package/{esm/hooks/useAxisSystem.d.ts → hooks/useAxisSystem.d.mts} +0 -0
  1884. /package/{esm/hooks/useBrush.d.ts → hooks/useBrush.d.mts} +0 -0
  1885. /package/{esm/hooks/useChartId.d.ts → hooks/useChartId.d.mts} +0 -0
  1886. /package/{esm/hooks/useChartRootRef.d.ts → hooks/useChartRootRef.d.mts} +0 -0
  1887. /package/{esm/hooks/useDrawingArea.d.ts → hooks/useDrawingArea.d.mts} +0 -0
  1888. /package/{esm/hooks/useIsHydrated.d.ts → hooks/useIsHydrated.d.mts} +0 -0
  1889. /package/{esm/hooks/useIsHydrated.js → hooks/useIsHydrated.mjs} +0 -0
  1890. /package/{esm/hooks/useMounted.d.ts → hooks/useMounted.d.mts} +0 -0
  1891. /package/{esm/hooks/useMounted.js → hooks/useMounted.mjs} +0 -0
  1892. /package/{esm/hooks/useSkipAnimation.d.ts → hooks/useSkipAnimation.d.mts} +0 -0
  1893. /package/{esm/hooks/useSvgRef.d.ts → hooks/useSvgRef.d.mts} +0 -0
  1894. /package/{esm/internals/Flatbush.d.ts → internals/Flatbush.d.mts} +0 -0
  1895. /package/{esm/internals/Flatbush.js → internals/Flatbush.mjs} +0 -0
  1896. /package/{esm/internals/angleConversion.d.ts → internals/angleConversion.d.mts} +0 -0
  1897. /package/{esm/internals/angleConversion.js → internals/angleConversion.mjs} +0 -0
  1898. /package/{esm/internals/animation/animation.d.ts → internals/animation/animation.d.mts} +0 -0
  1899. /package/{esm/internals/animation/animation.js → internals/animation/animation.mjs} +0 -0
  1900. /package/{esm/internals/animation/useAnimateInternal.d.ts → internals/animation/useAnimateInternal.d.mts} +0 -0
  1901. /package/{esm/internals/appendAtKey.d.ts → internals/appendAtKey.d.mts} +0 -0
  1902. /package/{esm/internals/appendAtKey.js → internals/appendAtKey.mjs} +0 -0
  1903. /package/{esm/internals/clampAngle.d.ts → internals/clampAngle.d.mts} +0 -0
  1904. /package/{esm/internals/clampAngle.js → internals/clampAngle.mjs} +0 -0
  1905. /package/{esm/internals/cleanId.d.ts → internals/cleanId.d.mts} +0 -0
  1906. /package/{esm/internals/cleanId.js → internals/cleanId.mjs} +0 -0
  1907. /package/{esm/internals/colorScale.js → internals/colorScale.mjs} +0 -0
  1908. /package/{esm/internals/components/AxisSharedComponents.d.ts → internals/components/AxisSharedComponents.d.mts} +0 -0
  1909. /package/{esm/internals/components/ChartsAxesGradients/ChartsAxesGradients.d.ts → internals/components/ChartsAxesGradients/ChartsAxesGradients.d.mts} +0 -0
  1910. /package/{esm/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js → internals/components/ChartsAxesGradients/ChartsContinuousGradient.mjs} +0 -0
  1911. /package/{esm/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.js → internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.mjs} +0 -0
  1912. /package/{esm/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js → internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.mjs} +0 -0
  1913. /package/{esm/internals/components/NotRendered.d.ts → internals/components/NotRendered.d.mts} +0 -0
  1914. /package/{esm/internals/components/NotRendered.js → internals/components/NotRendered.mjs} +0 -0
  1915. /package/{esm/internals/configInit.js → internals/configInit.mjs} +0 -0
  1916. /package/{esm/internals/constants.js → internals/constants.mjs} +0 -0
  1917. /package/{esm/internals/consumeSlots.d.ts → internals/consumeSlots.d.mts} +0 -0
  1918. /package/{esm/internals/consumeThemeProps.d.ts → internals/consumeThemeProps.d.mts} +0 -0
  1919. /package/{esm/internals/createSvgIcon.js → internals/createSvgIcon.mjs} +0 -0
  1920. /package/{esm/internals/dateHelpers.js → internals/dateHelpers.mjs} +0 -0
  1921. /package/{esm/internals/defaultValueFormatters.js → internals/defaultValueFormatters.mjs} +0 -0
  1922. /package/{esm/internals/defaultizeMargin.js → internals/defaultizeMargin.mjs} +0 -0
  1923. /package/{esm/internals/degToRad.d.ts → internals/degToRad.d.mts} +0 -0
  1924. /package/{esm/internals/degToRad.js → internals/degToRad.mjs} +0 -0
  1925. /package/{esm/internals/domUtils.d.ts → internals/domUtils.d.mts} +0 -0
  1926. /package/{esm/internals/domUtils.js → internals/domUtils.mjs} +0 -0
  1927. /package/{esm/internals/ellipsize.d.ts → internals/ellipsize.d.mts} +0 -0
  1928. /package/{esm/internals/findMinMax.d.ts → internals/findMinMax.d.mts} +0 -0
  1929. /package/{esm/internals/findMinMax.js → internals/findMinMax.mjs} +0 -0
  1930. /package/{esm/internals/geometry.d.ts → internals/geometry.d.mts} +0 -0
  1931. /package/{esm/internals/getBandSize.d.ts → internals/getBandSize.d.mts} +0 -0
  1932. /package/{esm/internals/getBandSize.js → internals/getBandSize.mjs} +0 -0
  1933. /package/{esm/internals/getCurve.js → internals/getCurve.mjs} +0 -0
  1934. /package/{esm/internals/getGraphemeCount.d.ts → internals/getGraphemeCount.d.mts} +0 -0
  1935. /package/{esm/internals/getGraphemeCount.js → internals/getGraphemeCount.mjs} +0 -0
  1936. /package/{esm/internals/getLabel.d.ts → internals/getLabel.d.mts} +0 -0
  1937. /package/{esm/internals/getLabel.js → internals/getLabel.mjs} +0 -0
  1938. /package/{esm/internals/getPercentageValue.d.ts → internals/getPercentageValue.d.mts} +0 -0
  1939. /package/{esm/internals/getPercentageValue.js → internals/getPercentageValue.mjs} +0 -0
  1940. /package/{esm/internals/getSVGPoint.d.ts → internals/getSVGPoint.d.mts} +0 -0
  1941. /package/{esm/internals/getSVGPoint.js → internals/getSVGPoint.mjs} +0 -0
  1942. /package/{esm/internals/getSeriesColorFn.js → internals/getSeriesColorFn.mjs} +0 -0
  1943. /package/{esm/internals/getSymbol.d.ts → internals/getSymbol.d.mts} +0 -0
  1944. /package/{esm/internals/getSymbol.js → internals/getSymbol.mjs} +0 -0
  1945. /package/{esm/internals/getWordsByLines.d.ts → internals/getWordsByLines.d.mts} +0 -0
  1946. /package/{esm/internals/identifierSerializer.js → internals/identifierSerializer.mjs} +0 -0
  1947. /package/{esm/internals/invertTextAnchor.js → internals/invertTextAnchor.mjs} +0 -0
  1948. /package/{esm/internals/isDefined.d.ts → internals/isDefined.d.mts} +0 -0
  1949. /package/{esm/internals/isDefined.js → internals/isDefined.mjs} +0 -0
  1950. /package/{esm/internals/isInfinity.d.ts → internals/isInfinity.d.mts} +0 -0
  1951. /package/{esm/internals/isInfinity.js → internals/isInfinity.mjs} +0 -0
  1952. /package/{esm/internals/material/index.js → internals/material/index.mjs} +0 -0
  1953. /package/{esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.js → internals/plugins/corePlugins/useChartAnimation/useChartAnimation.mjs} +0 -0
  1954. /package/{esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.js → internals/plugins/corePlugins/useChartAnimation/useChartAnimation.selectors.mjs} +0 -0
  1955. /package/{esm/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.js → internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types.mjs} +0 -0
  1956. /package/{esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.js → internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.mjs} +0 -0
  1957. /package/{esm/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.js → internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.mjs} +0 -0
  1958. /package/{esm/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.selectors.js → internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.selectors.mjs} +0 -0
  1959. /package/{esm/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.types.js → internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.types.mjs} +0 -0
  1960. /package/{esm/internals/plugins/corePlugins/useChartId/useChartId.selectors.js → internals/plugins/corePlugins/useChartId/useChartId.selectors.mjs} +0 -0
  1961. /package/{esm/internals/plugins/corePlugins/useChartId/useChartId.types.js → internals/plugins/corePlugins/useChartId/useChartId.types.mjs} +0 -0
  1962. /package/{esm/internals/plugins/corePlugins/useChartId/useChartId.utils.d.ts → internals/plugins/corePlugins/useChartId/useChartId.utils.d.mts} +0 -0
  1963. /package/{esm/internals/plugins/corePlugins/useChartId/useChartId.utils.js → internals/plugins/corePlugins/useChartId/useChartId.utils.mjs} +0 -0
  1964. /package/{esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.js → internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.mjs} +0 -0
  1965. /package/{esm/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.js → internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.types.mjs} +0 -0
  1966. /package/{esm/internals/plugins/corePlugins/useChartSeries/processSeries.js → internals/plugins/corePlugins/useChartSeries/processSeries.mjs} +0 -0
  1967. /package/{esm/internals/plugins/corePlugins/useChartSeries/serializeIdentifier.js → internals/plugins/corePlugins/useChartSeries/serializeIdentifier.mjs} +0 -0
  1968. /package/{esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.js → internals/plugins/corePlugins/useChartSeries/useChartSeries.types.mjs} +0 -0
  1969. /package/{esm/internals/plugins/featurePlugins/useChartBrush/useChartBrush.types.js → internals/plugins/featurePlugins/useChartBrush/useChartBrush.types.mjs} +0 -0
  1970. /package/{esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisDomainLimit.js → internals/plugins/featurePlugins/useChartCartesianAxis/getAxisDomainLimit.mjs} +0 -0
  1971. /package/{esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.js → internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.mjs} +0 -0
  1972. /package/{esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.js → internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.mjs} +0 -0
  1973. /package/{esm/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.d.ts → internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.d.mts} +0 -0
  1974. /package/{esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.d.ts → internals/plugins/featurePlugins/useChartCartesianAxis/zoom.d.mts} +0 -0
  1975. /package/{esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.js → internals/plugins/featurePlugins/useChartCartesianAxis/zoom.mjs} +0 -0
  1976. /package/{esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.js → internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.mjs} +0 -0
  1977. /package/{esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.selectors.js → internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.selectors.mjs} +0 -0
  1978. /package/{esm/internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.types.js → internals/plugins/featurePlugins/useChartClosestPoint/useChartClosestPoint.types.mjs} +0 -0
  1979. /package/{esm/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js → internals/plugins/featurePlugins/useChartHighlight/createIsFaded.mjs} +0 -0
  1980. /package/{esm/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.js → internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.mjs} +0 -0
  1981. /package/{esm/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.d.ts → internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.d.mts} +0 -0
  1982. /package/{esm/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.js → internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.mjs} +0 -0
  1983. /package/{esm/internals/plugins/featurePlugins/useChartHighlight/highlightStates.js → internals/plugins/featurePlugins/useChartHighlight/highlightStates.mjs} +0 -0
  1984. /package/{esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js → internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.mjs} +0 -0
  1985. /package/{esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.js → internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.mjs} +0 -0
  1986. /package/{esm/internals/plugins/featurePlugins/useChartInteraction/checkHasInteractionPlugin.js → internals/plugins/featurePlugins/useChartInteraction/checkHasInteractionPlugin.mjs} +0 -0
  1987. /package/{esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js → internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.mjs} +0 -0
  1988. /package/{esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js → internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.mjs} +0 -0
  1989. /package/{esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js → internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.mjs} +0 -0
  1990. /package/{esm/internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.types.js → internals/plugins/featurePlugins/useChartItemClick/useChartItemClick.types.mjs} +0 -0
  1991. /package/{esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/keyboardFocusHandler.types.js → internals/plugins/featurePlugins/useChartKeyboardNavigation/keyboardFocusHandler.types.mjs} +0 -0
  1992. /package/{esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.js → internals/plugins/featurePlugins/useChartKeyboardNavigation/useChartKeyboardNavigation.types.mjs} +0 -0
  1993. /package/{esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getMaxSeriesLength.js → internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getMaxSeriesLength.mjs} +0 -0
  1994. /package/{esm/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNonEmptySeriesArray.js → internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNonEmptySeriesArray.mjs} +0 -0
  1995. /package/{esm/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.d.ts → internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.d.mts} +0 -0
  1996. /package/{esm/internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.js → internals/plugins/featurePlugins/useChartPolarAxis/coordinateTransformation.mjs} +0 -0
  1997. /package/{esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.js → internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.mjs} +0 -0
  1998. /package/{esm/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.js → internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.mjs} +0 -0
  1999. /package/{esm/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.types.js → internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.types.mjs} +0 -0
  2000. /package/{esm/internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.types.js → internals/plugins/featurePlugins/useChartVisibilityManager/useChartVisibilityManager.types.mjs} +0 -0
  2001. /package/{esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.js → internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.mjs} +0 -0
  2002. /package/{esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.js → internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.mjs} +0 -0
  2003. /package/{esm/internals/plugins/models/chart.js → internals/plugins/models/chart.mjs} +0 -0
  2004. /package/{esm/internals/plugins/models/helpers.js → internals/plugins/models/helpers.mjs} +0 -0
  2005. /package/{esm/internals/plugins/models/plugin.js → internals/plugins/models/plugin.mjs} +0 -0
  2006. /package/{esm/internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.js → internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.mjs} +0 -0
  2007. /package/{esm/internals/plugins/models/seriesConfig/colorProcessor.types.js → internals/plugins/models/seriesConfig/colorProcessor.types.mjs} +0 -0
  2008. /package/{esm/internals/plugins/models/seriesConfig/getItemAtPosition.types.js → internals/plugins/models/seriesConfig/getItemAtPosition.types.mjs} +0 -0
  2009. /package/{esm/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.js → internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.mjs} +0 -0
  2010. /package/{esm/internals/plugins/models/seriesConfig/identifierSerializer.types.js → internals/plugins/models/seriesConfig/identifierSerializer.types.mjs} +0 -0
  2011. /package/{esm/internals/plugins/models/seriesConfig/legendGetter.types.js → internals/plugins/models/seriesConfig/legendGetter.types.mjs} +0 -0
  2012. /package/{esm/internals/plugins/models/seriesConfig/polarExtremumGetter.types.js → internals/plugins/models/seriesConfig/polarExtremumGetter.types.mjs} +0 -0
  2013. /package/{esm/internals/plugins/models/seriesConfig/seriesConfig.types.js → internals/plugins/models/seriesConfig/seriesConfig.types.mjs} +0 -0
  2014. /package/{esm/internals/plugins/models/seriesConfig/seriesLayout.types.js → internals/plugins/models/seriesConfig/seriesLayout.types.mjs} +0 -0
  2015. /package/{esm/internals/plugins/models/seriesConfig/seriesProcessor.types.js → internals/plugins/models/seriesConfig/seriesProcessor.types.mjs} +0 -0
  2016. /package/{esm/internals/plugins/models/seriesConfig/tooltipGetter.types.js → internals/plugins/models/seriesConfig/tooltipGetter.types.mjs} +0 -0
  2017. /package/{esm/internals/plugins/models/seriesConfig/tooltipItemPositionGetter.types.js → internals/plugins/models/seriesConfig/tooltipItemPositionGetter.types.mjs} +0 -0
  2018. /package/{esm/internals/plugins/utils/selectors.js → internals/plugins/utils/selectors.mjs} +0 -0
  2019. /package/{esm/internals/plugins/utils/useLazySelectorEffect.js → internals/plugins/utils/useLazySelectorEffect.mjs} +0 -0
  2020. /package/{esm/internals/scaleGuards.js → internals/scaleGuards.mjs} +0 -0
  2021. /package/{esm/internals/scales/scaleBand.d.ts → internals/scales/scaleBand.d.mts} +0 -0
  2022. /package/{esm/internals/scales/scaleBand.js → internals/scales/scaleBand.mjs} +0 -0
  2023. /package/{esm/internals/scales/scalePoint.d.ts → internals/scales/scalePoint.d.mts} +0 -0
  2024. /package/{esm/internals/scales/scaleSymlog.d.ts → internals/scales/scaleSymlog.d.mts} +0 -0
  2025. /package/{esm/internals/scales/scaleSymlog.js → internals/scales/scaleSymlog.mjs} +0 -0
  2026. /package/{esm/internals/seriesHasData.js → internals/seriesHasData.mjs} +0 -0
  2027. /package/{esm/internals/shallowEqual.d.ts → internals/shallowEqual.d.mts} +0 -0
  2028. /package/{esm/internals/shallowEqual.js → internals/shallowEqual.mjs} +0 -0
  2029. /package/{esm/internals/sliceUntil.d.ts → internals/sliceUntil.d.mts} +0 -0
  2030. /package/{esm/internals/sliceUntil.js → internals/sliceUntil.mjs} +0 -0
  2031. /package/{esm/internals/stacking/offset/offsetDiverging.d.ts → internals/stacking/offset/offsetDiverging.d.mts} +0 -0
  2032. /package/{esm/internals/stacking/offset/offsetDiverging.js → internals/stacking/offset/offsetDiverging.mjs} +0 -0
  2033. /package/{esm/internals/store/extractPluginParamsFromProps.js → internals/store/extractPluginParamsFromProps.mjs} +0 -0
  2034. /package/{esm/internals/store/useCharts.types.js → internals/store/useCharts.types.mjs} +0 -0
  2035. /package/{esm/internals/ticks.js → internals/ticks.mjs} +0 -0
  2036. /package/{esm/internals/ts-generic.d.ts → internals/ts-generic.d.mts} +0 -0
  2037. /package/{esm/internals/ts-generic.js → internals/ts-generic.mjs} +0 -0
  2038. /package/{esm/locales/utils/chartsLocaleTextApi.js → locales/utils/chartsLocaleTextApi.mjs} +0 -0
  2039. /package/{esm/locales/utils/getChartsLocalization.js → locales/utils/getChartsLocalization.mjs} +0 -0
  2040. /package/{esm/locales/utils/imageMimeTypes.d.ts → locales/utils/imageMimeTypes.d.mts} +0 -0
  2041. /package/{esm/locales/utils/imageMimeTypes.js → locales/utils/imageMimeTypes.mjs} +0 -0
  2042. /package/{esm/models/axis.js → models/axis.mjs} +0 -0
  2043. /package/{esm/models/colorMapping.d.ts → models/colorMapping.d.mts} +0 -0
  2044. /package/{esm/models/colorMapping.js → models/colorMapping.mjs} +0 -0
  2045. /package/{esm/models/curve.d.ts → models/curve.d.mts} +0 -0
  2046. /package/{esm/models/curve.js → models/curve.mjs} +0 -0
  2047. /package/{esm/models/featureFlags.d.ts → models/featureFlags.d.mts} +0 -0
  2048. /package/{esm/models/featureFlags.js → models/featureFlags.mjs} +0 -0
  2049. /package/{esm/models/position.d.ts → models/position.d.mts} +0 -0
  2050. /package/{esm/models/position.js → models/position.mjs} +0 -0
  2051. /package/{esm/models/seriesType/bar.js → models/seriesType/bar.mjs} +0 -0
  2052. /package/{esm/models/seriesType/common.js → models/seriesType/common.mjs} +0 -0
  2053. /package/{esm/models/seriesType/config.js → models/seriesType/config.mjs} +0 -0
  2054. /package/{esm/models/seriesType/line.js → models/seriesType/line.mjs} +0 -0
  2055. /package/{esm/models/seriesType/pie.js → models/seriesType/pie.mjs} +0 -0
  2056. /package/{esm/models/seriesType/radar.js → models/seriesType/radar.mjs} +0 -0
  2057. /package/{esm/models/seriesType/scatter.js → models/seriesType/scatter.mjs} +0 -0
  2058. /package/{esm/models/slots/chartsBaseSlotProps.d.ts → models/slots/chartsBaseSlotProps.d.mts} +0 -0
  2059. /package/{esm/models/slots/chartsBaseSlotProps.js → models/slots/chartsBaseSlotProps.mjs} +0 -0
  2060. /package/{esm/models/slots/chartsBaseSlots.js → models/slots/chartsBaseSlots.mjs} +0 -0
  2061. /package/{esm/models/slots/chartsIconSlots.d.ts → models/slots/chartsIconSlots.d.mts} +0 -0
  2062. /package/{esm/models/slots/chartsIconSlots.js → models/slots/chartsIconSlots.mjs} +0 -0
  2063. /package/{esm/models/stacking.d.ts → models/stacking.d.mts} +0 -0
  2064. /package/{esm/models/stacking.js → models/stacking.mjs} +0 -0
  2065. /package/{esm/models/timeTicks.d.ts → models/timeTicks.d.mts} +0 -0
  2066. /package/{esm/models/timeTicks.js → models/timeTicks.mjs} +0 -0
  2067. /package/{esm/models/z-axis.js → models/z-axis.mjs} +0 -0
  2068. /package/{esm/moduleAugmentation/barChartBatchRendererOnItemClick.js → moduleAugmentation/barChartBatchRendererOnItemClick.mjs} +0 -0
  2069. /package/{esm/tests/constants.js → tests/constants.mjs} +0 -0
  2070. /package/{esm/tests/web-components.js → tests/web-components.mjs} +0 -0
  2071. /package/{esm/themeAugmentation/components.d.ts → themeAugmentation/components.d.mts} +0 -0
  2072. /package/{esm/themeAugmentation/components.js → themeAugmentation/components.mjs} +0 -0
  2073. /package/{esm/themeAugmentation/index.js → themeAugmentation/index.mjs} +0 -0
  2074. /package/{esm/themeAugmentation/overrides.js → themeAugmentation/overrides.mjs} +0 -0
  2075. /package/{esm/themeAugmentation/props.js → themeAugmentation/props.mjs} +0 -0
  2076. /package/{esm/utils/timeTicks.js → utils/timeTicks.mjs} +0 -0
@@ -0,0 +1,1367 @@
1
+ 'use client';
2
+
3
+ import _extends from "@babel/runtime/helpers/esm/extends";
4
+ import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
5
+ const _excluded = ["xAxis", "yAxis", "width", "height", "margin", "color", "baseline", "sx", "showTooltip", "showHighlight", "axisHighlight", "children", "slots", "slotProps", "data", "plotType", "valueFormatter", "area", "curve", "className", "disableClipping", "clipAreaOffset", "onHighlightChange", "onHighlightedAxisChange", "highlightedAxis", "highlightedItem"];
6
+ import * as React from 'react';
7
+ import PropTypes from 'prop-types';
8
+ import useId from '@mui/utils/useId';
9
+ import { ChartsClipPath } from "../ChartsClipPath/index.mjs";
10
+ import { BarPlot } from "../BarChart/index.mjs";
11
+ import { LinePlot, AreaPlot, LineHighlightPlot } from "../LineChart/index.mjs";
12
+ import { ChartDataProvider } from "../ChartDataProvider/index.mjs";
13
+ import { ChartsSurface } from "../ChartsSurface/index.mjs";
14
+ import { DEFAULT_X_AXIS_KEY, DEFAULT_Y_AXIS_KEY } from "../constants/index.mjs";
15
+ import { ChartsTooltip } from "../ChartsTooltip/index.mjs";
16
+ import { ChartsAxisHighlight } from "../ChartsAxisHighlight/index.mjs";
17
+ import { FocusedLineMark } from "../LineChart/FocusedLineMark.mjs";
18
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
19
+ const SPARK_LINE_DEFAULT_MARGIN = 5;
20
+
21
+ /**
22
+ * Demos:
23
+ *
24
+ * - [SparkLine](https://mui.com/x/react-charts/sparkline/)
25
+ *
26
+ * API:
27
+ *
28
+ * - [SparkLineChart API](https://mui.com/x/api/charts/spark-line-chart/)
29
+ */
30
+ const SparkLineChart = /*#__PURE__*/React.forwardRef(function SparkLineChart(props, ref) {
31
+ const {
32
+ xAxis: xAxisProps,
33
+ yAxis: yAxisProps,
34
+ width,
35
+ height,
36
+ margin = SPARK_LINE_DEFAULT_MARGIN,
37
+ color,
38
+ baseline,
39
+ sx,
40
+ showTooltip,
41
+ showHighlight,
42
+ axisHighlight: inAxisHighlight,
43
+ children,
44
+ slots,
45
+ slotProps,
46
+ data,
47
+ plotType = 'line',
48
+ valueFormatter = value => value === null ? '' : value.toString(),
49
+ area,
50
+ curve = 'linear',
51
+ className,
52
+ disableClipping,
53
+ clipAreaOffset,
54
+ onHighlightChange,
55
+ onHighlightedAxisChange,
56
+ highlightedAxis,
57
+ highlightedItem
58
+ } = props,
59
+ other = _objectWithoutPropertiesLoose(props, _excluded);
60
+ const id = useId();
61
+ const clipPathId = `${id}-clip-path`;
62
+ const clipPathOffset = React.useMemo(() => ({
63
+ top: clipAreaOffset?.top ?? 1,
64
+ right: clipAreaOffset?.right ?? 1,
65
+ bottom: clipAreaOffset?.bottom ?? 1,
66
+ left: clipAreaOffset?.left ?? 1
67
+ }), [clipAreaOffset?.bottom, clipAreaOffset?.left, clipAreaOffset?.right, clipAreaOffset?.top]);
68
+ const defaultXHighlight = React.useMemo(() => showHighlight && plotType === 'bar' ? {
69
+ x: 'band'
70
+ } : {
71
+ x: 'none'
72
+ }, [plotType, showHighlight]);
73
+ const axisHighlight = React.useMemo(() => _extends({}, defaultXHighlight, inAxisHighlight), [defaultXHighlight, inAxisHighlight]);
74
+ const Tooltip = props.slots?.tooltip ?? ChartsTooltip;
75
+ const colors = React.useMemo(() => {
76
+ if (color == null) {
77
+ return undefined;
78
+ }
79
+ return typeof color === 'function' ? mode => [color(mode)] : [color];
80
+ }, [color]);
81
+ const series = React.useMemo(() => [_extends({
82
+ type: plotType,
83
+ data,
84
+ valueFormatter
85
+ }, plotType === 'bar' ? {} : {
86
+ area,
87
+ curve,
88
+ baseline,
89
+ disableHighlight: !showHighlight
90
+ })], [area, baseline, curve, data, plotType, showHighlight, valueFormatter]);
91
+ const xAxis = React.useMemo(() => [_extends({
92
+ id: DEFAULT_X_AXIS_KEY,
93
+ scaleType: plotType === 'bar' ? 'band' : 'point',
94
+ hideTooltip: xAxisProps === undefined
95
+ }, xAxisProps, {
96
+ data: xAxisProps?.data ?? Array.from({
97
+ length: data.length
98
+ }, (_, index) => index),
99
+ position: 'none'
100
+ })], [data.length, plotType, xAxisProps]);
101
+ const yAxis = React.useMemo(() => [_extends({
102
+ id: DEFAULT_Y_AXIS_KEY
103
+ }, yAxisProps, {
104
+ position: 'none'
105
+ })], [yAxisProps]);
106
+ return /*#__PURE__*/_jsxs(ChartDataProvider, {
107
+ series: series,
108
+ width: width,
109
+ height: height,
110
+ margin: margin,
111
+ xAxis: xAxis,
112
+ yAxis: yAxis,
113
+ colors: colors,
114
+ disableAxisListener: onHighlightedAxisChange === undefined && (!showTooltip || slotProps?.tooltip?.trigger !== 'axis') && axisHighlight?.x === 'none' && axisHighlight?.y === 'none',
115
+ onHighlightChange: onHighlightChange,
116
+ onHighlightedAxisChange: onHighlightedAxisChange,
117
+ highlightedAxis: highlightedAxis,
118
+ highlightedItem: highlightedItem,
119
+ children: [/*#__PURE__*/_jsxs(ChartsSurface, _extends({
120
+ className: className,
121
+ ref: ref,
122
+ sx: sx
123
+ }, other, {
124
+ children: [/*#__PURE__*/_jsxs("g", {
125
+ clipPath: `url(#${clipPathId})`,
126
+ children: [plotType === 'bar' && /*#__PURE__*/_jsx(BarPlot, {
127
+ skipAnimation: true,
128
+ slots: slots,
129
+ slotProps: slotProps
130
+ }), plotType === 'line' && /*#__PURE__*/_jsxs(React.Fragment, {
131
+ children: [/*#__PURE__*/_jsx(AreaPlot, {
132
+ skipAnimation: true,
133
+ slots: slots,
134
+ slotProps: slotProps
135
+ }), /*#__PURE__*/_jsx(LinePlot, {
136
+ skipAnimation: true,
137
+ slots: slots,
138
+ slotProps: slotProps
139
+ })]
140
+ })]
141
+ }), plotType === 'line' && /*#__PURE__*/_jsxs(React.Fragment, {
142
+ children: [/*#__PURE__*/_jsx(LineHighlightPlot, {
143
+ slots: slots,
144
+ slotProps: slotProps
145
+ }), /*#__PURE__*/_jsx(FocusedLineMark, {})]
146
+ }), disableClipping ? null : /*#__PURE__*/_jsx(ChartsClipPath, {
147
+ id: clipPathId,
148
+ offset: clipPathOffset
149
+ }), /*#__PURE__*/_jsx(ChartsAxisHighlight, _extends({}, axisHighlight)), children]
150
+ })), showTooltip && /*#__PURE__*/_jsx(Tooltip, _extends({}, props.slotProps?.tooltip))]
151
+ });
152
+ });
153
+ if (process.env.NODE_ENV !== "production") SparkLineChart.displayName = "SparkLineChart";
154
+ process.env.NODE_ENV !== "production" ? SparkLineChart.propTypes = {
155
+ // ----------------------------- Warning --------------------------------
156
+ // | These PropTypes are generated from the TypeScript type definitions |
157
+ // | To update them edit the TypeScript types and run "pnpm proptypes" |
158
+ // ----------------------------------------------------------------------
159
+ apiRef: PropTypes.shape({
160
+ current: PropTypes.object
161
+ }),
162
+ /**
163
+ * Set to `true` to fill spark line area.
164
+ * Has no effect if plotType='bar'.
165
+ * @default false
166
+ */
167
+ area: PropTypes.bool,
168
+ axisHighlight: PropTypes.shape({
169
+ x: PropTypes.oneOf(['band', 'line', 'none']),
170
+ y: PropTypes.oneOf(['band', 'line', 'none'])
171
+ }),
172
+ /**
173
+ * The value of the line at the base of the series area.
174
+ *
175
+ * - `'min'` the area will fill the space **under** the line.
176
+ * - `'max'` the area will fill the space **above** the line.
177
+ * - `number` the area will fill the space between this value and the line
178
+ *
179
+ * @default 0
180
+ */
181
+ baseline: PropTypes.oneOfType([PropTypes.oneOf(['max', 'min']), PropTypes.number]),
182
+ /**
183
+ * Configuration for the brush interaction.
184
+ */
185
+ brushConfig: PropTypes.shape({
186
+ enabled: PropTypes.bool,
187
+ preventHighlight: PropTypes.bool,
188
+ preventTooltip: PropTypes.bool
189
+ }),
190
+ children: PropTypes.node,
191
+ className: PropTypes.string,
192
+ /**
193
+ * The clipped area offset in pixels.
194
+ *
195
+ * This prevents partial clipping of lines when they are drawn on the edge of the drawing area.
196
+ *
197
+ * @default { top: 1, right: 1, bottom: 1, left: 1 }
198
+ */
199
+ clipAreaOffset: PropTypes.shape({
200
+ bottom: PropTypes.number,
201
+ left: PropTypes.number,
202
+ right: PropTypes.number,
203
+ top: PropTypes.number
204
+ }),
205
+ /**
206
+ * Color used to colorize the sparkline.
207
+ * @default rainbowSurgePalette[0]
208
+ */
209
+ color: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
210
+ /**
211
+ * @default 'linear'
212
+ */
213
+ curve: PropTypes.oneOf(['bumpX', 'bumpY', 'catmullRom', 'linear', 'monotoneX', 'monotoneY', 'natural', 'step', 'stepAfter', 'stepBefore']),
214
+ /**
215
+ * Data to plot.
216
+ */
217
+ data: PropTypes.arrayOf(PropTypes.number).isRequired,
218
+ /**
219
+ * An array of objects that can be used to populate series and axes data using their `dataKey` property.
220
+ */
221
+ dataset: PropTypes.arrayOf(PropTypes.object),
222
+ desc: PropTypes.string,
223
+ /**
224
+ * If `true`, the charts will not listen to the mouse move event.
225
+ * It might break interactive features, but will improve performance.
226
+ * @default false
227
+ */
228
+ disableAxisListener: PropTypes.bool,
229
+ /**
230
+ * When `true`, the chart's drawing area will not be clipped and elements within can visually overflow the chart.
231
+ *
232
+ * @default false
233
+ */
234
+ disableClipping: PropTypes.bool,
235
+ /**
236
+ * If true, the voronoi interaction are ignored.
237
+ */
238
+ disableVoronoi: PropTypes.bool,
239
+ enableKeyboardNavigation: PropTypes.bool,
240
+ /**
241
+ * The height of the chart in px. If not defined, it takes the height of the parent element.
242
+ */
243
+ height: PropTypes.number,
244
+ /**
245
+ * List of hidden series and/or items.
246
+ *
247
+ * Different chart types use different keys.
248
+ *
249
+ * @example
250
+ * ```ts
251
+ * [
252
+ * {
253
+ * type: 'pie',
254
+ * seriesId: 'series-1',
255
+ * dataIndex: 3,
256
+ * },
257
+ * {
258
+ * type: 'line',
259
+ * seriesId: 'series-2',
260
+ * }
261
+ * ]
262
+ * ```
263
+ */
264
+ hiddenItems: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.shape({
265
+ dataIndex: PropTypes.number,
266
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
267
+ type: PropTypes.oneOf(['bar']).isRequired
268
+ }), PropTypes.shape({
269
+ dataIndex: PropTypes.number,
270
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
271
+ type: PropTypes.oneOf(['line']).isRequired
272
+ }), PropTypes.shape({
273
+ dataIndex: PropTypes.number,
274
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
275
+ type: PropTypes.oneOf(['scatter']).isRequired
276
+ }), PropTypes.shape({
277
+ dataIndex: PropTypes.number,
278
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
279
+ type: PropTypes.oneOf(['pie']).isRequired
280
+ }), PropTypes.shape({
281
+ dataIndex: PropTypes.number,
282
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
283
+ type: PropTypes.oneOf(['radar']).isRequired
284
+ })]).isRequired),
285
+ /**
286
+ * The controlled axis highlight.
287
+ * Identified by the axis id, and data index.
288
+ */
289
+ highlightedAxis: PropTypes.arrayOf(PropTypes.shape({
290
+ axisId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired,
291
+ dataIndex: PropTypes.number.isRequired
292
+ })),
293
+ /**
294
+ * The highlighted item.
295
+ * Used when the highlight is controlled.
296
+ */
297
+ highlightedItem: PropTypes.shape({
298
+ dataIndex: PropTypes.number,
299
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired
300
+ }),
301
+ /**
302
+ * This prop is used to help implement the accessibility logic.
303
+ * If you don't provide this prop. It falls back to a randomly generated id.
304
+ */
305
+ id: PropTypes.string,
306
+ /**
307
+ * List of initially hidden series and/or items.
308
+ * Used for uncontrolled state.
309
+ *
310
+ * Different chart types use different keys.
311
+ *
312
+ * @example
313
+ * ```ts
314
+ * [
315
+ * {
316
+ * type: 'pie',
317
+ * seriesId: 'series-1',
318
+ * dataIndex: 3,
319
+ * },
320
+ * {
321
+ * type: 'line',
322
+ * seriesId: 'series-2',
323
+ * }
324
+ * ]
325
+ * ```
326
+ */
327
+ initialHiddenItems: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.shape({
328
+ dataIndex: PropTypes.number,
329
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
330
+ type: PropTypes.oneOf(['bar']).isRequired
331
+ }), PropTypes.shape({
332
+ dataIndex: PropTypes.number,
333
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
334
+ type: PropTypes.oneOf(['line']).isRequired
335
+ }), PropTypes.shape({
336
+ dataIndex: PropTypes.number,
337
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
338
+ type: PropTypes.oneOf(['scatter']).isRequired
339
+ }), PropTypes.shape({
340
+ dataIndex: PropTypes.number,
341
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
342
+ type: PropTypes.oneOf(['pie']).isRequired
343
+ }), PropTypes.shape({
344
+ dataIndex: PropTypes.number,
345
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
346
+ type: PropTypes.oneOf(['radar']).isRequired
347
+ })]).isRequired),
348
+ /**
349
+ * Localized text for chart components.
350
+ */
351
+ localeText: PropTypes.object,
352
+ /**
353
+ * The margin between the SVG and the drawing area.
354
+ * It's used for leaving some space for extra information such as the x- and y-axis or legend.
355
+ *
356
+ * Accepts a `number` to be used on all sides or an object with the optional properties: `top`, `bottom`, `left`, and `right`.
357
+ * @default 5
358
+ */
359
+ margin: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
360
+ bottom: PropTypes.number,
361
+ left: PropTypes.number,
362
+ right: PropTypes.number,
363
+ top: PropTypes.number
364
+ })]),
365
+ /**
366
+ * The function called for onClick events.
367
+ * The second argument contains information about all line/bar elements at the current mouse position.
368
+ * @param {MouseEvent} event The mouse event recorded on the `<svg/>` element.
369
+ * @param {null | ChartsAxisData} data The data about the clicked axis and items associated with it.
370
+ */
371
+ onAxisClick: PropTypes.func,
372
+ /**
373
+ * Callback fired when any hidden identifiers change.
374
+ * @param {VisibilityIdentifier[]} hiddenItems The new list of hidden identifiers.
375
+ */
376
+ onHiddenItemsChange: PropTypes.func,
377
+ /**
378
+ * The callback fired when the highlighted item changes.
379
+ *
380
+ * @param {HighlightItemData | null} highlightedItem The newly highlighted item.
381
+ */
382
+ onHighlightChange: PropTypes.func,
383
+ /**
384
+ * The function called when the pointer position corresponds to a new axis data item.
385
+ * This update can either be caused by a pointer movement, or an axis update.
386
+ * In case of multiple axes, the function is called if at least one axis is updated.
387
+ * The argument contains the identifier for all axes with a `data` property.
388
+ * @param {AxisItemIdentifier[]} axisItems The array of axes item identifiers.
389
+ */
390
+ onHighlightedAxisChange: PropTypes.func,
391
+ /**
392
+ * Callback fired when clicking close to an item.
393
+ * This is only available for scatter plot for now.
394
+ * @param {MouseEvent} event Mouse event caught at the svg level
395
+ * @param {ScatterItemIdentifier} scatterItemIdentifier Identify which item got clicked
396
+ */
397
+ onItemClick: PropTypes.func,
398
+ /**
399
+ * The callback fired when the tooltip item changes.
400
+ *
401
+ * @param {SeriesItemIdentifier<TSeries> | null} tooltipItem The newly highlighted item.
402
+ */
403
+ onTooltipItemChange: PropTypes.func,
404
+ /**
405
+ * Type of plot used.
406
+ * @default 'line'
407
+ */
408
+ plotType: PropTypes.oneOf(['bar', 'line']),
409
+ /**
410
+ * Set to `true` to highlight the value.
411
+ * With line, it shows a point.
412
+ * With bar, it shows a highlight band.
413
+ * @default false
414
+ */
415
+ showHighlight: PropTypes.bool,
416
+ /**
417
+ * Set to `true` to enable the tooltip in the sparkline.
418
+ * @default false
419
+ */
420
+ showTooltip: PropTypes.bool,
421
+ /**
422
+ * If `true`, animations are skipped.
423
+ * If unset or `false`, the animations respects the user's `prefers-reduced-motion` setting.
424
+ */
425
+ skipAnimation: PropTypes.bool,
426
+ /**
427
+ * The props used for each component slot.
428
+ * @default {}
429
+ */
430
+ slotProps: PropTypes.object,
431
+ /**
432
+ * Overridable component slots.
433
+ * @default {}
434
+ */
435
+ slots: PropTypes.object,
436
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
437
+ theme: PropTypes.oneOf(['dark', 'light']),
438
+ title: PropTypes.string,
439
+ /**
440
+ * The tooltip item.
441
+ * Used when the tooltip is controlled.
442
+ */
443
+ tooltipItem: PropTypes.oneOfType([PropTypes.shape({
444
+ dataIndex: PropTypes.number.isRequired,
445
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired,
446
+ type: PropTypes.oneOf(['bar']).isRequired
447
+ }), PropTypes.shape({
448
+ dataIndex: PropTypes.number,
449
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired,
450
+ type: PropTypes.oneOf(['line']).isRequired
451
+ }), PropTypes.shape({
452
+ dataIndex: PropTypes.number.isRequired,
453
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired,
454
+ type: PropTypes.oneOf(['scatter']).isRequired
455
+ }), PropTypes.shape({
456
+ dataIndex: PropTypes.number.isRequired,
457
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired,
458
+ type: PropTypes.oneOf(['pie']).isRequired
459
+ }), PropTypes.shape({
460
+ dataIndex: PropTypes.number,
461
+ seriesId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired,
462
+ type: PropTypes.oneOf(['radar']).isRequired
463
+ })]),
464
+ /**
465
+ * Formatter used by the tooltip.
466
+ * @param {number} value The value to format.
467
+ * @returns {string} the formatted value.
468
+ * @default (value: number | null) => (value === null ? '' : value.toString())
469
+ */
470
+ valueFormatter: PropTypes.func,
471
+ /**
472
+ * Defines the maximum distance between a scatter point and the pointer that triggers the interaction.
473
+ * If set to `'item'`, the radius is the `markerSize`.
474
+ * If `undefined`, the radius is assumed to be infinite.
475
+ */
476
+ voronoiMaxRadius: PropTypes.oneOfType([PropTypes.oneOf(['item']), PropTypes.number]),
477
+ /**
478
+ * The width of the chart in px. If not defined, it takes the width of the parent element.
479
+ */
480
+ width: PropTypes.number,
481
+ /**
482
+ * The xAxis configuration.
483
+ * Notice it is a single [[AxisConfig]] object, not an array of configuration.
484
+ */
485
+ xAxis: PropTypes.oneOfType([PropTypes.shape({
486
+ axis: PropTypes.oneOf(['x']),
487
+ barGapRatio: PropTypes.number,
488
+ categoryGapRatio: PropTypes.number,
489
+ classes: PropTypes.object,
490
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
491
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
492
+ type: PropTypes.oneOf(['ordinal']).isRequired,
493
+ unknownColor: PropTypes.string,
494
+ values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired)
495
+ }), PropTypes.shape({
496
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
497
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
498
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
499
+ type: PropTypes.oneOf(['continuous']).isRequired
500
+ }), PropTypes.shape({
501
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
502
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
503
+ type: PropTypes.oneOf(['piecewise']).isRequired
504
+ })]),
505
+ data: PropTypes.array,
506
+ dataKey: PropTypes.string,
507
+ disableLine: PropTypes.bool,
508
+ disableTicks: PropTypes.bool,
509
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
510
+ groups: PropTypes.arrayOf(PropTypes.shape({
511
+ getValue: PropTypes.func.isRequired,
512
+ tickLabelStyle: PropTypes.object,
513
+ tickSize: PropTypes.number
514
+ })),
515
+ height: PropTypes.number,
516
+ hideTooltip: PropTypes.bool,
517
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
518
+ ignoreTooltip: PropTypes.bool,
519
+ label: PropTypes.string,
520
+ labelStyle: PropTypes.object,
521
+ offset: PropTypes.number,
522
+ ordinalTimeTicks: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(['biweekly', 'days', 'hours', 'months', 'quarterly', 'weeks', 'years']), PropTypes.shape({
523
+ format: PropTypes.func.isRequired,
524
+ getTickNumber: PropTypes.func.isRequired,
525
+ isTick: PropTypes.func.isRequired
526
+ })]).isRequired),
527
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
528
+ reverse: PropTypes.bool,
529
+ scaleType: PropTypes.oneOf(['band']),
530
+ slotProps: PropTypes.object,
531
+ slots: PropTypes.object,
532
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
533
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
534
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
535
+ tickLabelMinGap: PropTypes.number,
536
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
537
+ tickLabelStyle: PropTypes.object,
538
+ tickMaxStep: PropTypes.number,
539
+ tickMinStep: PropTypes.number,
540
+ tickNumber: PropTypes.number,
541
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
542
+ tickSize: PropTypes.number,
543
+ tickSpacing: PropTypes.number,
544
+ valueFormatter: PropTypes.func
545
+ }), PropTypes.shape({
546
+ axis: PropTypes.oneOf(['x']),
547
+ classes: PropTypes.object,
548
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
549
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
550
+ type: PropTypes.oneOf(['ordinal']).isRequired,
551
+ unknownColor: PropTypes.string,
552
+ values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired)
553
+ }), PropTypes.shape({
554
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
555
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
556
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
557
+ type: PropTypes.oneOf(['continuous']).isRequired
558
+ }), PropTypes.shape({
559
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
560
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
561
+ type: PropTypes.oneOf(['piecewise']).isRequired
562
+ })]),
563
+ data: PropTypes.array,
564
+ dataKey: PropTypes.string,
565
+ disableLine: PropTypes.bool,
566
+ disableTicks: PropTypes.bool,
567
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
568
+ groups: PropTypes.arrayOf(PropTypes.shape({
569
+ getValue: PropTypes.func.isRequired,
570
+ tickLabelStyle: PropTypes.object,
571
+ tickSize: PropTypes.number
572
+ })),
573
+ height: PropTypes.number,
574
+ hideTooltip: PropTypes.bool,
575
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
576
+ ignoreTooltip: PropTypes.bool,
577
+ label: PropTypes.string,
578
+ labelStyle: PropTypes.object,
579
+ offset: PropTypes.number,
580
+ ordinalTimeTicks: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(['biweekly', 'days', 'hours', 'months', 'quarterly', 'weeks', 'years']), PropTypes.shape({
581
+ format: PropTypes.func.isRequired,
582
+ getTickNumber: PropTypes.func.isRequired,
583
+ isTick: PropTypes.func.isRequired
584
+ })]).isRequired),
585
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
586
+ reverse: PropTypes.bool,
587
+ scaleType: PropTypes.oneOf(['point']),
588
+ slotProps: PropTypes.object,
589
+ slots: PropTypes.object,
590
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
591
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
592
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
593
+ tickLabelMinGap: PropTypes.number,
594
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
595
+ tickLabelStyle: PropTypes.object,
596
+ tickMaxStep: PropTypes.number,
597
+ tickMinStep: PropTypes.number,
598
+ tickNumber: PropTypes.number,
599
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
600
+ tickSize: PropTypes.number,
601
+ tickSpacing: PropTypes.number,
602
+ valueFormatter: PropTypes.func
603
+ }), PropTypes.shape({
604
+ axis: PropTypes.oneOf(['x']),
605
+ classes: PropTypes.object,
606
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
607
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
608
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
609
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
610
+ type: PropTypes.oneOf(['continuous']).isRequired
611
+ }), PropTypes.shape({
612
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
613
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
614
+ type: PropTypes.oneOf(['piecewise']).isRequired
615
+ })]),
616
+ data: PropTypes.array,
617
+ dataKey: PropTypes.string,
618
+ disableLine: PropTypes.bool,
619
+ disableTicks: PropTypes.bool,
620
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
621
+ height: PropTypes.number,
622
+ hideTooltip: PropTypes.bool,
623
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
624
+ ignoreTooltip: PropTypes.bool,
625
+ label: PropTypes.string,
626
+ labelStyle: PropTypes.object,
627
+ max: PropTypes.number,
628
+ min: PropTypes.number,
629
+ offset: PropTypes.number,
630
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
631
+ reverse: PropTypes.bool,
632
+ scaleType: PropTypes.oneOf(['log']),
633
+ slotProps: PropTypes.object,
634
+ slots: PropTypes.object,
635
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
636
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
637
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
638
+ tickLabelMinGap: PropTypes.number,
639
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
640
+ tickLabelStyle: PropTypes.object,
641
+ tickMaxStep: PropTypes.number,
642
+ tickMinStep: PropTypes.number,
643
+ tickNumber: PropTypes.number,
644
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
645
+ tickSize: PropTypes.number,
646
+ tickSpacing: PropTypes.number,
647
+ valueFormatter: PropTypes.func
648
+ }), PropTypes.shape({
649
+ axis: PropTypes.oneOf(['x']),
650
+ classes: PropTypes.object,
651
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
652
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
653
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
654
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
655
+ type: PropTypes.oneOf(['continuous']).isRequired
656
+ }), PropTypes.shape({
657
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
658
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
659
+ type: PropTypes.oneOf(['piecewise']).isRequired
660
+ })]),
661
+ constant: PropTypes.number,
662
+ data: PropTypes.array,
663
+ dataKey: PropTypes.string,
664
+ disableLine: PropTypes.bool,
665
+ disableTicks: PropTypes.bool,
666
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
667
+ height: PropTypes.number,
668
+ hideTooltip: PropTypes.bool,
669
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
670
+ ignoreTooltip: PropTypes.bool,
671
+ label: PropTypes.string,
672
+ labelStyle: PropTypes.object,
673
+ max: PropTypes.number,
674
+ min: PropTypes.number,
675
+ offset: PropTypes.number,
676
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
677
+ reverse: PropTypes.bool,
678
+ scaleType: PropTypes.oneOf(['symlog']),
679
+ slotProps: PropTypes.object,
680
+ slots: PropTypes.object,
681
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
682
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
683
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
684
+ tickLabelMinGap: PropTypes.number,
685
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
686
+ tickLabelStyle: PropTypes.object,
687
+ tickMaxStep: PropTypes.number,
688
+ tickMinStep: PropTypes.number,
689
+ tickNumber: PropTypes.number,
690
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
691
+ tickSize: PropTypes.number,
692
+ tickSpacing: PropTypes.number,
693
+ valueFormatter: PropTypes.func
694
+ }), PropTypes.shape({
695
+ axis: PropTypes.oneOf(['x']),
696
+ classes: PropTypes.object,
697
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
698
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
699
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
700
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
701
+ type: PropTypes.oneOf(['continuous']).isRequired
702
+ }), PropTypes.shape({
703
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
704
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
705
+ type: PropTypes.oneOf(['piecewise']).isRequired
706
+ })]),
707
+ data: PropTypes.array,
708
+ dataKey: PropTypes.string,
709
+ disableLine: PropTypes.bool,
710
+ disableTicks: PropTypes.bool,
711
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
712
+ height: PropTypes.number,
713
+ hideTooltip: PropTypes.bool,
714
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
715
+ ignoreTooltip: PropTypes.bool,
716
+ label: PropTypes.string,
717
+ labelStyle: PropTypes.object,
718
+ max: PropTypes.number,
719
+ min: PropTypes.number,
720
+ offset: PropTypes.number,
721
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
722
+ reverse: PropTypes.bool,
723
+ scaleType: PropTypes.oneOf(['pow']),
724
+ slotProps: PropTypes.object,
725
+ slots: PropTypes.object,
726
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
727
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
728
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
729
+ tickLabelMinGap: PropTypes.number,
730
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
731
+ tickLabelStyle: PropTypes.object,
732
+ tickMaxStep: PropTypes.number,
733
+ tickMinStep: PropTypes.number,
734
+ tickNumber: PropTypes.number,
735
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
736
+ tickSize: PropTypes.number,
737
+ tickSpacing: PropTypes.number,
738
+ valueFormatter: PropTypes.func
739
+ }), PropTypes.shape({
740
+ axis: PropTypes.oneOf(['x']),
741
+ classes: PropTypes.object,
742
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
743
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
744
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
745
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
746
+ type: PropTypes.oneOf(['continuous']).isRequired
747
+ }), PropTypes.shape({
748
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
749
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
750
+ type: PropTypes.oneOf(['piecewise']).isRequired
751
+ })]),
752
+ data: PropTypes.array,
753
+ dataKey: PropTypes.string,
754
+ disableLine: PropTypes.bool,
755
+ disableTicks: PropTypes.bool,
756
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
757
+ height: PropTypes.number,
758
+ hideTooltip: PropTypes.bool,
759
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
760
+ ignoreTooltip: PropTypes.bool,
761
+ label: PropTypes.string,
762
+ labelStyle: PropTypes.object,
763
+ max: PropTypes.number,
764
+ min: PropTypes.number,
765
+ offset: PropTypes.number,
766
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
767
+ reverse: PropTypes.bool,
768
+ scaleType: PropTypes.oneOf(['sqrt']),
769
+ slotProps: PropTypes.object,
770
+ slots: PropTypes.object,
771
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
772
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
773
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
774
+ tickLabelMinGap: PropTypes.number,
775
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
776
+ tickLabelStyle: PropTypes.object,
777
+ tickMaxStep: PropTypes.number,
778
+ tickMinStep: PropTypes.number,
779
+ tickNumber: PropTypes.number,
780
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
781
+ tickSize: PropTypes.number,
782
+ tickSpacing: PropTypes.number,
783
+ valueFormatter: PropTypes.func
784
+ }), PropTypes.shape({
785
+ axis: PropTypes.oneOf(['x']),
786
+ classes: PropTypes.object,
787
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
788
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
789
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
790
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
791
+ type: PropTypes.oneOf(['continuous']).isRequired
792
+ }), PropTypes.shape({
793
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
794
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
795
+ type: PropTypes.oneOf(['piecewise']).isRequired
796
+ })]),
797
+ data: PropTypes.array,
798
+ dataKey: PropTypes.string,
799
+ disableLine: PropTypes.bool,
800
+ disableTicks: PropTypes.bool,
801
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
802
+ height: PropTypes.number,
803
+ hideTooltip: PropTypes.bool,
804
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
805
+ ignoreTooltip: PropTypes.bool,
806
+ label: PropTypes.string,
807
+ labelStyle: PropTypes.object,
808
+ max: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
809
+ valueOf: PropTypes.func.isRequired
810
+ })]),
811
+ min: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
812
+ valueOf: PropTypes.func.isRequired
813
+ })]),
814
+ offset: PropTypes.number,
815
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
816
+ reverse: PropTypes.bool,
817
+ scaleType: PropTypes.oneOf(['time']),
818
+ slotProps: PropTypes.object,
819
+ slots: PropTypes.object,
820
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
821
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
822
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
823
+ tickLabelMinGap: PropTypes.number,
824
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
825
+ tickLabelStyle: PropTypes.object,
826
+ tickMaxStep: PropTypes.number,
827
+ tickMinStep: PropTypes.number,
828
+ tickNumber: PropTypes.number,
829
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
830
+ tickSize: PropTypes.number,
831
+ tickSpacing: PropTypes.number,
832
+ valueFormatter: PropTypes.func
833
+ }), PropTypes.shape({
834
+ axis: PropTypes.oneOf(['x']),
835
+ classes: PropTypes.object,
836
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
837
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
838
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
839
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
840
+ type: PropTypes.oneOf(['continuous']).isRequired
841
+ }), PropTypes.shape({
842
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
843
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
844
+ type: PropTypes.oneOf(['piecewise']).isRequired
845
+ })]),
846
+ data: PropTypes.array,
847
+ dataKey: PropTypes.string,
848
+ disableLine: PropTypes.bool,
849
+ disableTicks: PropTypes.bool,
850
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
851
+ height: PropTypes.number,
852
+ hideTooltip: PropTypes.bool,
853
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
854
+ ignoreTooltip: PropTypes.bool,
855
+ label: PropTypes.string,
856
+ labelStyle: PropTypes.object,
857
+ max: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
858
+ valueOf: PropTypes.func.isRequired
859
+ })]),
860
+ min: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
861
+ valueOf: PropTypes.func.isRequired
862
+ })]),
863
+ offset: PropTypes.number,
864
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
865
+ reverse: PropTypes.bool,
866
+ scaleType: PropTypes.oneOf(['utc']),
867
+ slotProps: PropTypes.object,
868
+ slots: PropTypes.object,
869
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
870
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
871
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
872
+ tickLabelMinGap: PropTypes.number,
873
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
874
+ tickLabelStyle: PropTypes.object,
875
+ tickMaxStep: PropTypes.number,
876
+ tickMinStep: PropTypes.number,
877
+ tickNumber: PropTypes.number,
878
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
879
+ tickSize: PropTypes.number,
880
+ tickSpacing: PropTypes.number,
881
+ valueFormatter: PropTypes.func
882
+ }), PropTypes.shape({
883
+ axis: PropTypes.oneOf(['x']),
884
+ classes: PropTypes.object,
885
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
886
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
887
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
888
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
889
+ type: PropTypes.oneOf(['continuous']).isRequired
890
+ }), PropTypes.shape({
891
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
892
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
893
+ type: PropTypes.oneOf(['piecewise']).isRequired
894
+ })]),
895
+ data: PropTypes.array,
896
+ dataKey: PropTypes.string,
897
+ disableLine: PropTypes.bool,
898
+ disableTicks: PropTypes.bool,
899
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
900
+ height: PropTypes.number,
901
+ hideTooltip: PropTypes.bool,
902
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
903
+ ignoreTooltip: PropTypes.bool,
904
+ label: PropTypes.string,
905
+ labelStyle: PropTypes.object,
906
+ max: PropTypes.number,
907
+ min: PropTypes.number,
908
+ offset: PropTypes.number,
909
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
910
+ reverse: PropTypes.bool,
911
+ scaleType: PropTypes.oneOf(['linear']),
912
+ slotProps: PropTypes.object,
913
+ slots: PropTypes.object,
914
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
915
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
916
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
917
+ tickLabelMinGap: PropTypes.number,
918
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
919
+ tickLabelStyle: PropTypes.object,
920
+ tickMaxStep: PropTypes.number,
921
+ tickMinStep: PropTypes.number,
922
+ tickNumber: PropTypes.number,
923
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
924
+ tickSize: PropTypes.number,
925
+ tickSpacing: PropTypes.number,
926
+ valueFormatter: PropTypes.func
927
+ })]),
928
+ /**
929
+ * The yAxis configuration.
930
+ * Notice it is a single [[AxisConfig]] object, not an array of configuration.
931
+ */
932
+ yAxis: PropTypes.oneOfType([PropTypes.shape({
933
+ axis: PropTypes.oneOf(['y']),
934
+ barGapRatio: PropTypes.number,
935
+ categoryGapRatio: PropTypes.number,
936
+ classes: PropTypes.object,
937
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
938
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
939
+ type: PropTypes.oneOf(['ordinal']).isRequired,
940
+ unknownColor: PropTypes.string,
941
+ values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired)
942
+ }), PropTypes.shape({
943
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
944
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
945
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
946
+ type: PropTypes.oneOf(['continuous']).isRequired
947
+ }), PropTypes.shape({
948
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
949
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
950
+ type: PropTypes.oneOf(['piecewise']).isRequired
951
+ })]),
952
+ data: PropTypes.array,
953
+ dataKey: PropTypes.string,
954
+ disableLine: PropTypes.bool,
955
+ disableTicks: PropTypes.bool,
956
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
957
+ groups: PropTypes.arrayOf(PropTypes.shape({
958
+ getValue: PropTypes.func.isRequired,
959
+ tickLabelStyle: PropTypes.object,
960
+ tickSize: PropTypes.number
961
+ })),
962
+ hideTooltip: PropTypes.bool,
963
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
964
+ ignoreTooltip: PropTypes.bool,
965
+ label: PropTypes.string,
966
+ labelStyle: PropTypes.object,
967
+ offset: PropTypes.number,
968
+ ordinalTimeTicks: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(['biweekly', 'days', 'hours', 'months', 'quarterly', 'weeks', 'years']), PropTypes.shape({
969
+ format: PropTypes.func.isRequired,
970
+ getTickNumber: PropTypes.func.isRequired,
971
+ isTick: PropTypes.func.isRequired
972
+ })]).isRequired),
973
+ position: PropTypes.oneOf(['left', 'none', 'right']),
974
+ reverse: PropTypes.bool,
975
+ scaleType: PropTypes.oneOf(['band']),
976
+ slotProps: PropTypes.object,
977
+ slots: PropTypes.object,
978
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
979
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
980
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
981
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
982
+ tickLabelStyle: PropTypes.object,
983
+ tickMaxStep: PropTypes.number,
984
+ tickMinStep: PropTypes.number,
985
+ tickNumber: PropTypes.number,
986
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
987
+ tickSize: PropTypes.number,
988
+ tickSpacing: PropTypes.number,
989
+ valueFormatter: PropTypes.func,
990
+ width: PropTypes.number
991
+ }), PropTypes.shape({
992
+ axis: PropTypes.oneOf(['y']),
993
+ classes: PropTypes.object,
994
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
995
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
996
+ type: PropTypes.oneOf(['ordinal']).isRequired,
997
+ unknownColor: PropTypes.string,
998
+ values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired)
999
+ }), PropTypes.shape({
1000
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
1001
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1002
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1003
+ type: PropTypes.oneOf(['continuous']).isRequired
1004
+ }), PropTypes.shape({
1005
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1006
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
1007
+ type: PropTypes.oneOf(['piecewise']).isRequired
1008
+ })]),
1009
+ data: PropTypes.array,
1010
+ dataKey: PropTypes.string,
1011
+ disableLine: PropTypes.bool,
1012
+ disableTicks: PropTypes.bool,
1013
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
1014
+ groups: PropTypes.arrayOf(PropTypes.shape({
1015
+ getValue: PropTypes.func.isRequired,
1016
+ tickLabelStyle: PropTypes.object,
1017
+ tickSize: PropTypes.number
1018
+ })),
1019
+ hideTooltip: PropTypes.bool,
1020
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
1021
+ ignoreTooltip: PropTypes.bool,
1022
+ label: PropTypes.string,
1023
+ labelStyle: PropTypes.object,
1024
+ offset: PropTypes.number,
1025
+ ordinalTimeTicks: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(['biweekly', 'days', 'hours', 'months', 'quarterly', 'weeks', 'years']), PropTypes.shape({
1026
+ format: PropTypes.func.isRequired,
1027
+ getTickNumber: PropTypes.func.isRequired,
1028
+ isTick: PropTypes.func.isRequired
1029
+ })]).isRequired),
1030
+ position: PropTypes.oneOf(['left', 'none', 'right']),
1031
+ reverse: PropTypes.bool,
1032
+ scaleType: PropTypes.oneOf(['point']),
1033
+ slotProps: PropTypes.object,
1034
+ slots: PropTypes.object,
1035
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
1036
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
1037
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
1038
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
1039
+ tickLabelStyle: PropTypes.object,
1040
+ tickMaxStep: PropTypes.number,
1041
+ tickMinStep: PropTypes.number,
1042
+ tickNumber: PropTypes.number,
1043
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
1044
+ tickSize: PropTypes.number,
1045
+ tickSpacing: PropTypes.number,
1046
+ valueFormatter: PropTypes.func,
1047
+ width: PropTypes.number
1048
+ }), PropTypes.shape({
1049
+ axis: PropTypes.oneOf(['y']),
1050
+ classes: PropTypes.object,
1051
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
1052
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
1053
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1054
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1055
+ type: PropTypes.oneOf(['continuous']).isRequired
1056
+ }), PropTypes.shape({
1057
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1058
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
1059
+ type: PropTypes.oneOf(['piecewise']).isRequired
1060
+ })]),
1061
+ data: PropTypes.array,
1062
+ dataKey: PropTypes.string,
1063
+ disableLine: PropTypes.bool,
1064
+ disableTicks: PropTypes.bool,
1065
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
1066
+ hideTooltip: PropTypes.bool,
1067
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
1068
+ ignoreTooltip: PropTypes.bool,
1069
+ label: PropTypes.string,
1070
+ labelStyle: PropTypes.object,
1071
+ max: PropTypes.number,
1072
+ min: PropTypes.number,
1073
+ offset: PropTypes.number,
1074
+ position: PropTypes.oneOf(['left', 'none', 'right']),
1075
+ reverse: PropTypes.bool,
1076
+ scaleType: PropTypes.oneOf(['log']),
1077
+ slotProps: PropTypes.object,
1078
+ slots: PropTypes.object,
1079
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
1080
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
1081
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
1082
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
1083
+ tickLabelStyle: PropTypes.object,
1084
+ tickMaxStep: PropTypes.number,
1085
+ tickMinStep: PropTypes.number,
1086
+ tickNumber: PropTypes.number,
1087
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
1088
+ tickSize: PropTypes.number,
1089
+ tickSpacing: PropTypes.number,
1090
+ valueFormatter: PropTypes.func,
1091
+ width: PropTypes.number
1092
+ }), PropTypes.shape({
1093
+ axis: PropTypes.oneOf(['y']),
1094
+ classes: PropTypes.object,
1095
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
1096
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
1097
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1098
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1099
+ type: PropTypes.oneOf(['continuous']).isRequired
1100
+ }), PropTypes.shape({
1101
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1102
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
1103
+ type: PropTypes.oneOf(['piecewise']).isRequired
1104
+ })]),
1105
+ constant: PropTypes.number,
1106
+ data: PropTypes.array,
1107
+ dataKey: PropTypes.string,
1108
+ disableLine: PropTypes.bool,
1109
+ disableTicks: PropTypes.bool,
1110
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
1111
+ hideTooltip: PropTypes.bool,
1112
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
1113
+ ignoreTooltip: PropTypes.bool,
1114
+ label: PropTypes.string,
1115
+ labelStyle: PropTypes.object,
1116
+ max: PropTypes.number,
1117
+ min: PropTypes.number,
1118
+ offset: PropTypes.number,
1119
+ position: PropTypes.oneOf(['left', 'none', 'right']),
1120
+ reverse: PropTypes.bool,
1121
+ scaleType: PropTypes.oneOf(['symlog']),
1122
+ slotProps: PropTypes.object,
1123
+ slots: PropTypes.object,
1124
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
1125
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
1126
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
1127
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
1128
+ tickLabelStyle: PropTypes.object,
1129
+ tickMaxStep: PropTypes.number,
1130
+ tickMinStep: PropTypes.number,
1131
+ tickNumber: PropTypes.number,
1132
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
1133
+ tickSize: PropTypes.number,
1134
+ tickSpacing: PropTypes.number,
1135
+ valueFormatter: PropTypes.func,
1136
+ width: PropTypes.number
1137
+ }), PropTypes.shape({
1138
+ axis: PropTypes.oneOf(['y']),
1139
+ classes: PropTypes.object,
1140
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
1141
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
1142
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1143
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1144
+ type: PropTypes.oneOf(['continuous']).isRequired
1145
+ }), PropTypes.shape({
1146
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1147
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
1148
+ type: PropTypes.oneOf(['piecewise']).isRequired
1149
+ })]),
1150
+ data: PropTypes.array,
1151
+ dataKey: PropTypes.string,
1152
+ disableLine: PropTypes.bool,
1153
+ disableTicks: PropTypes.bool,
1154
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
1155
+ hideTooltip: PropTypes.bool,
1156
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
1157
+ ignoreTooltip: PropTypes.bool,
1158
+ label: PropTypes.string,
1159
+ labelStyle: PropTypes.object,
1160
+ max: PropTypes.number,
1161
+ min: PropTypes.number,
1162
+ offset: PropTypes.number,
1163
+ position: PropTypes.oneOf(['left', 'none', 'right']),
1164
+ reverse: PropTypes.bool,
1165
+ scaleType: PropTypes.oneOf(['pow']),
1166
+ slotProps: PropTypes.object,
1167
+ slots: PropTypes.object,
1168
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
1169
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
1170
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
1171
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
1172
+ tickLabelStyle: PropTypes.object,
1173
+ tickMaxStep: PropTypes.number,
1174
+ tickMinStep: PropTypes.number,
1175
+ tickNumber: PropTypes.number,
1176
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
1177
+ tickSize: PropTypes.number,
1178
+ tickSpacing: PropTypes.number,
1179
+ valueFormatter: PropTypes.func,
1180
+ width: PropTypes.number
1181
+ }), PropTypes.shape({
1182
+ axis: PropTypes.oneOf(['y']),
1183
+ classes: PropTypes.object,
1184
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
1185
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
1186
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1187
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1188
+ type: PropTypes.oneOf(['continuous']).isRequired
1189
+ }), PropTypes.shape({
1190
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1191
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
1192
+ type: PropTypes.oneOf(['piecewise']).isRequired
1193
+ })]),
1194
+ data: PropTypes.array,
1195
+ dataKey: PropTypes.string,
1196
+ disableLine: PropTypes.bool,
1197
+ disableTicks: PropTypes.bool,
1198
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
1199
+ hideTooltip: PropTypes.bool,
1200
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
1201
+ ignoreTooltip: PropTypes.bool,
1202
+ label: PropTypes.string,
1203
+ labelStyle: PropTypes.object,
1204
+ max: PropTypes.number,
1205
+ min: PropTypes.number,
1206
+ offset: PropTypes.number,
1207
+ position: PropTypes.oneOf(['left', 'none', 'right']),
1208
+ reverse: PropTypes.bool,
1209
+ scaleType: PropTypes.oneOf(['sqrt']),
1210
+ slotProps: PropTypes.object,
1211
+ slots: PropTypes.object,
1212
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
1213
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
1214
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
1215
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
1216
+ tickLabelStyle: PropTypes.object,
1217
+ tickMaxStep: PropTypes.number,
1218
+ tickMinStep: PropTypes.number,
1219
+ tickNumber: PropTypes.number,
1220
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
1221
+ tickSize: PropTypes.number,
1222
+ tickSpacing: PropTypes.number,
1223
+ valueFormatter: PropTypes.func,
1224
+ width: PropTypes.number
1225
+ }), PropTypes.shape({
1226
+ axis: PropTypes.oneOf(['y']),
1227
+ classes: PropTypes.object,
1228
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
1229
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
1230
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1231
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1232
+ type: PropTypes.oneOf(['continuous']).isRequired
1233
+ }), PropTypes.shape({
1234
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1235
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
1236
+ type: PropTypes.oneOf(['piecewise']).isRequired
1237
+ })]),
1238
+ data: PropTypes.array,
1239
+ dataKey: PropTypes.string,
1240
+ disableLine: PropTypes.bool,
1241
+ disableTicks: PropTypes.bool,
1242
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
1243
+ hideTooltip: PropTypes.bool,
1244
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
1245
+ ignoreTooltip: PropTypes.bool,
1246
+ label: PropTypes.string,
1247
+ labelStyle: PropTypes.object,
1248
+ max: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
1249
+ valueOf: PropTypes.func.isRequired
1250
+ })]),
1251
+ min: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
1252
+ valueOf: PropTypes.func.isRequired
1253
+ })]),
1254
+ offset: PropTypes.number,
1255
+ position: PropTypes.oneOf(['left', 'none', 'right']),
1256
+ reverse: PropTypes.bool,
1257
+ scaleType: PropTypes.oneOf(['time']),
1258
+ slotProps: PropTypes.object,
1259
+ slots: PropTypes.object,
1260
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
1261
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
1262
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
1263
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
1264
+ tickLabelStyle: PropTypes.object,
1265
+ tickMaxStep: PropTypes.number,
1266
+ tickMinStep: PropTypes.number,
1267
+ tickNumber: PropTypes.number,
1268
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
1269
+ tickSize: PropTypes.number,
1270
+ tickSpacing: PropTypes.number,
1271
+ valueFormatter: PropTypes.func,
1272
+ width: PropTypes.number
1273
+ }), PropTypes.shape({
1274
+ axis: PropTypes.oneOf(['y']),
1275
+ classes: PropTypes.object,
1276
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
1277
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
1278
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1279
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1280
+ type: PropTypes.oneOf(['continuous']).isRequired
1281
+ }), PropTypes.shape({
1282
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1283
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
1284
+ type: PropTypes.oneOf(['piecewise']).isRequired
1285
+ })]),
1286
+ data: PropTypes.array,
1287
+ dataKey: PropTypes.string,
1288
+ disableLine: PropTypes.bool,
1289
+ disableTicks: PropTypes.bool,
1290
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
1291
+ hideTooltip: PropTypes.bool,
1292
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
1293
+ ignoreTooltip: PropTypes.bool,
1294
+ label: PropTypes.string,
1295
+ labelStyle: PropTypes.object,
1296
+ max: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
1297
+ valueOf: PropTypes.func.isRequired
1298
+ })]),
1299
+ min: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
1300
+ valueOf: PropTypes.func.isRequired
1301
+ })]),
1302
+ offset: PropTypes.number,
1303
+ position: PropTypes.oneOf(['left', 'none', 'right']),
1304
+ reverse: PropTypes.bool,
1305
+ scaleType: PropTypes.oneOf(['utc']),
1306
+ slotProps: PropTypes.object,
1307
+ slots: PropTypes.object,
1308
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
1309
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
1310
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
1311
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
1312
+ tickLabelStyle: PropTypes.object,
1313
+ tickMaxStep: PropTypes.number,
1314
+ tickMinStep: PropTypes.number,
1315
+ tickNumber: PropTypes.number,
1316
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
1317
+ tickSize: PropTypes.number,
1318
+ tickSpacing: PropTypes.number,
1319
+ valueFormatter: PropTypes.func,
1320
+ width: PropTypes.number
1321
+ }), PropTypes.shape({
1322
+ axis: PropTypes.oneOf(['y']),
1323
+ classes: PropTypes.object,
1324
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
1325
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
1326
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1327
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1328
+ type: PropTypes.oneOf(['continuous']).isRequired
1329
+ }), PropTypes.shape({
1330
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1331
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
1332
+ type: PropTypes.oneOf(['piecewise']).isRequired
1333
+ })]),
1334
+ data: PropTypes.array,
1335
+ dataKey: PropTypes.string,
1336
+ disableLine: PropTypes.bool,
1337
+ disableTicks: PropTypes.bool,
1338
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
1339
+ hideTooltip: PropTypes.bool,
1340
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
1341
+ ignoreTooltip: PropTypes.bool,
1342
+ label: PropTypes.string,
1343
+ labelStyle: PropTypes.object,
1344
+ max: PropTypes.number,
1345
+ min: PropTypes.number,
1346
+ offset: PropTypes.number,
1347
+ position: PropTypes.oneOf(['left', 'none', 'right']),
1348
+ reverse: PropTypes.bool,
1349
+ scaleType: PropTypes.oneOf(['linear']),
1350
+ slotProps: PropTypes.object,
1351
+ slots: PropTypes.object,
1352
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
1353
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
1354
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
1355
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
1356
+ tickLabelStyle: PropTypes.object,
1357
+ tickMaxStep: PropTypes.number,
1358
+ tickMinStep: PropTypes.number,
1359
+ tickNumber: PropTypes.number,
1360
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
1361
+ tickSize: PropTypes.number,
1362
+ tickSpacing: PropTypes.number,
1363
+ valueFormatter: PropTypes.func,
1364
+ width: PropTypes.number
1365
+ })])
1366
+ } : void 0;
1367
+ export { SparkLineChart };