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