@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,1252 @@
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 { ScatterPlot } from "./ScatterPlot.mjs";
8
+ import { ChartsAxis } from "../ChartsAxis/index.mjs";
9
+ import { ChartsTooltip } from "../ChartsTooltip/index.mjs";
10
+ import { ChartsLegend } from "../ChartsLegend/index.mjs";
11
+ import { ChartsOverlay } from "../ChartsOverlay/index.mjs";
12
+ import { ChartsAxisHighlight } from "../ChartsAxisHighlight/index.mjs";
13
+ import { ChartsGrid } from "../ChartsGrid/index.mjs";
14
+ import { useScatterChartProps } from "./useScatterChartProps.mjs";
15
+ import { useChartContainerProps } from "../ChartContainer/useChartContainerProps.mjs";
16
+ import { ChartDataProvider } from "../ChartDataProvider/index.mjs";
17
+ import { ChartsSurface } from "../ChartsSurface/index.mjs";
18
+ import { ChartsWrapper } from "../ChartsWrapper/index.mjs";
19
+ import { FocusedScatterMark } from "./FocusedScatterMark.mjs";
20
+ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
21
+ /**
22
+ * Demos:
23
+ *
24
+ * - [Scatter](https://mui.com/x/react-charts/scatter/)
25
+ * - [Scatter demonstration](https://mui.com/x/react-charts/scatter-demo/)
26
+ *
27
+ * API:
28
+ *
29
+ * - [ScatterChart API](https://mui.com/x/api/charts/scatter-chart/)
30
+ */
31
+ const ScatterChart = /*#__PURE__*/React.forwardRef(function ScatterChart(inProps, ref) {
32
+ const props = useThemeProps({
33
+ props: inProps,
34
+ name: 'MuiScatterChart'
35
+ });
36
+ const {
37
+ chartsWrapperProps,
38
+ chartContainerProps,
39
+ chartsAxisProps,
40
+ gridProps,
41
+ scatterPlotProps,
42
+ overlayProps,
43
+ legendProps,
44
+ axisHighlightProps,
45
+ children
46
+ } = useScatterChartProps(props);
47
+ const {
48
+ chartDataProviderProps,
49
+ chartsSurfaceProps
50
+ } = useChartContainerProps(chartContainerProps);
51
+ const Tooltip = props.slots?.tooltip ?? ChartsTooltip;
52
+ const Toolbar = props.slots?.toolbar;
53
+ return /*#__PURE__*/_jsx(ChartDataProvider, _extends({}, chartDataProviderProps, {
54
+ children: /*#__PURE__*/_jsxs(ChartsWrapper, _extends({}, chartsWrapperProps, {
55
+ ref: ref,
56
+ children: [props.showToolbar && Toolbar ? /*#__PURE__*/_jsx(Toolbar, _extends({}, props.slotProps?.toolbar)) : null, !props.hideLegend && /*#__PURE__*/_jsx(ChartsLegend, _extends({}, legendProps)), /*#__PURE__*/_jsxs(ChartsSurface, _extends({}, chartsSurfaceProps, {
57
+ children: [/*#__PURE__*/_jsx(ChartsAxis, _extends({}, chartsAxisProps)), /*#__PURE__*/_jsx(ChartsGrid, _extends({}, gridProps)), /*#__PURE__*/_jsx("g", {
58
+ "data-drawing-container": true,
59
+ children: /*#__PURE__*/_jsx(ScatterPlot, _extends({}, scatterPlotProps))
60
+ }), /*#__PURE__*/_jsx(ChartsOverlay, _extends({}, overlayProps)), /*#__PURE__*/_jsx(ChartsAxisHighlight, _extends({}, axisHighlightProps)), /*#__PURE__*/_jsx(FocusedScatterMark, {}), children]
61
+ })), !props.loading && /*#__PURE__*/_jsx(Tooltip, _extends({
62
+ trigger: "item"
63
+ }, props.slotProps?.tooltip))]
64
+ }))
65
+ }));
66
+ });
67
+ if (process.env.NODE_ENV !== "production") ScatterChart.displayName = "ScatterChart";
68
+ process.env.NODE_ENV !== "production" ? ScatterChart.propTypes = {
69
+ // ----------------------------- Warning --------------------------------
70
+ // | These PropTypes are generated from the TypeScript type definitions |
71
+ // | To update them edit the TypeScript types and run "pnpm proptypes" |
72
+ // ----------------------------------------------------------------------
73
+ apiRef: PropTypes.shape({
74
+ current: PropTypes.object
75
+ }),
76
+ /**
77
+ * A gap added between axes when multiple axes are rendered on the same side of the chart.
78
+ * @default 0
79
+ */
80
+ axesGap: PropTypes.number,
81
+ /**
82
+ * The configuration of axes highlight.
83
+ * @see See {@link https://mui.com/x/react-charts/highlighting/ highlighting docs} for more details.
84
+ * @default { x: 'none', y: 'none' }
85
+ */
86
+ axisHighlight: PropTypes.shape({
87
+ x: PropTypes.oneOf(['band', 'line', 'none']),
88
+ y: PropTypes.oneOf(['band', 'line', 'none'])
89
+ }),
90
+ /**
91
+ * Configuration for the brush interaction.
92
+ */
93
+ brushConfig: PropTypes.shape({
94
+ enabled: PropTypes.bool,
95
+ preventHighlight: PropTypes.bool,
96
+ preventTooltip: PropTypes.bool
97
+ }),
98
+ children: PropTypes.node,
99
+ className: PropTypes.string,
100
+ /**
101
+ * Color palette used to colorize multiple series.
102
+ * @default rainbowSurgePalette
103
+ */
104
+ colors: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string), PropTypes.func]),
105
+ /**
106
+ * An array of objects that can be used to populate series and axes data using their `dataKey` property.
107
+ */
108
+ dataset: PropTypes.arrayOf(PropTypes.object),
109
+ desc: PropTypes.string,
110
+ /**
111
+ * If `true`, the charts will not listen to the mouse move event.
112
+ * It might break interactive features, but will improve performance.
113
+ * @default false
114
+ */
115
+ disableAxisListener: PropTypes.bool,
116
+ /**
117
+ * If true, the interaction will not use the Voronoi cell and fall back to hover events.
118
+ * @default false
119
+ */
120
+ disableVoronoi: PropTypes.bool,
121
+ enableKeyboardNavigation: PropTypes.bool,
122
+ /**
123
+ * Option to display a cartesian grid in the background.
124
+ */
125
+ grid: PropTypes.shape({
126
+ horizontal: PropTypes.bool,
127
+ vertical: PropTypes.bool
128
+ }),
129
+ /**
130
+ * The height of the chart in px. If not defined, it takes the height of the parent element.
131
+ */
132
+ height: PropTypes.number,
133
+ /**
134
+ * List of hidden series and/or items.
135
+ *
136
+ * Different chart types use different keys.
137
+ *
138
+ * @example
139
+ * ```ts
140
+ * [
141
+ * {
142
+ * type: 'pie',
143
+ * seriesId: 'series-1',
144
+ * dataIndex: 3,
145
+ * },
146
+ * {
147
+ * type: 'line',
148
+ * seriesId: 'series-2',
149
+ * }
150
+ * ]
151
+ * ```
152
+ */
153
+ hiddenItems: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.shape({
154
+ dataIndex: PropTypes.number,
155
+ seriesId: PropTypes.string.isRequired,
156
+ type: PropTypes.oneOf(['scatter']).isRequired
157
+ }), PropTypes.shape({
158
+ dataIndex: PropTypes.number,
159
+ seriesId: PropTypes.string.isRequired,
160
+ type: PropTypes.oneOf(['scatter'])
161
+ })]).isRequired),
162
+ /**
163
+ * If `true`, the legend is not rendered.
164
+ */
165
+ hideLegend: PropTypes.bool,
166
+ /**
167
+ * The highlighted item.
168
+ * Used when the highlight is controlled.
169
+ */
170
+ highlightedItem: PropTypes.oneOfType([PropTypes.shape({
171
+ dataIndex: PropTypes.number,
172
+ seriesId: PropTypes.string.isRequired,
173
+ type: PropTypes.oneOf(['scatter']).isRequired
174
+ }), PropTypes.shape({
175
+ dataIndex: PropTypes.number,
176
+ seriesId: PropTypes.string.isRequired
177
+ })]),
178
+ /**
179
+ * This prop is used to help implement the accessibility logic.
180
+ * If you don't provide this prop. It falls back to a randomly generated id.
181
+ */
182
+ id: PropTypes.string,
183
+ /**
184
+ * List of initially hidden series and/or items.
185
+ * Used for uncontrolled state.
186
+ *
187
+ * Different chart types use different keys.
188
+ *
189
+ * @example
190
+ * ```ts
191
+ * [
192
+ * {
193
+ * type: 'pie',
194
+ * seriesId: 'series-1',
195
+ * dataIndex: 3,
196
+ * },
197
+ * {
198
+ * type: 'line',
199
+ * seriesId: 'series-2',
200
+ * }
201
+ * ]
202
+ * ```
203
+ */
204
+ initialHiddenItems: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.shape({
205
+ dataIndex: PropTypes.number,
206
+ seriesId: PropTypes.string.isRequired,
207
+ type: PropTypes.oneOf(['scatter']).isRequired
208
+ }), PropTypes.shape({
209
+ dataIndex: PropTypes.number,
210
+ seriesId: PropTypes.string.isRequired,
211
+ type: PropTypes.oneOf(['scatter'])
212
+ })]).isRequired),
213
+ /**
214
+ * If `true`, a loading overlay is displayed.
215
+ * @default false
216
+ */
217
+ loading: PropTypes.bool,
218
+ /**
219
+ * Localized text for chart components.
220
+ */
221
+ localeText: PropTypes.object,
222
+ /**
223
+ * The margin between the SVG and the drawing area.
224
+ * It's used for leaving some space for extra information such as the x- and y-axis or legend.
225
+ *
226
+ * Accepts a `number` to be used on all sides or an object with the optional properties: `top`, `bottom`, `left`, and `right`.
227
+ */
228
+ margin: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
229
+ bottom: PropTypes.number,
230
+ left: PropTypes.number,
231
+ right: PropTypes.number,
232
+ top: PropTypes.number
233
+ })]),
234
+ /**
235
+ * The function called for onClick events.
236
+ * The second argument contains information about all line/bar elements at the current mouse position.
237
+ * @param {MouseEvent} event The mouse event recorded on the `<svg/>` element.
238
+ * @param {null | ChartsAxisData} data The data about the clicked axis and items associated with it.
239
+ */
240
+ onAxisClick: PropTypes.func,
241
+ /**
242
+ * Callback fired when any hidden identifiers change.
243
+ * @param {VisibilityIdentifierWithType[]} hiddenItems The new list of hidden identifiers.
244
+ */
245
+ onHiddenItemsChange: PropTypes.func,
246
+ /**
247
+ * The callback fired when the highlighted item changes.
248
+ *
249
+ * @param {HighlightItemIdentifierWithType<SeriesType> | null} highlightedItem The newly highlighted item.
250
+ */
251
+ onHighlightChange: PropTypes.func,
252
+ /**
253
+ * Callback fired when clicking on a scatter item.
254
+ * @param {MouseEvent} event The mouse event recorded on the `<svg/>` element if using Voronoi cells. Or the Mouse event from the scatter element, when `disableVoronoi=true`.
255
+ * @param {ScatterItemIdentifier} scatterItemIdentifier The scatter item identifier.
256
+ */
257
+ onItemClick: PropTypes.func,
258
+ /**
259
+ * The function called when the pointer position corresponds to a new axis data item.
260
+ * This update can either be caused by a pointer movement, or an axis update.
261
+ * In case of multiple axes, the function is called if at least one axis is updated.
262
+ * The argument contains the identifier for all axes with a `data` property.
263
+ * @param {AxisItemIdentifier[]} axisItems The array of axes item identifiers.
264
+ */
265
+ onTooltipAxisChange: PropTypes.func,
266
+ /**
267
+ * The callback fired when the tooltip item changes.
268
+ *
269
+ * @param {SeriesItemIdentifier<TSeries> | null} tooltipItem The newly highlighted item.
270
+ */
271
+ onTooltipItemChange: PropTypes.func,
272
+ /**
273
+ * The type of renderer to use for the scatter plot.
274
+ * - `svg-single`: Renders every scatter item in a `<circle />` element.
275
+ * - `svg-batch`: Batch renders scatter items in `<path />` elements for better performance with large datasets, at the cost of some limitations.
276
+ * Read more: https://mui.com/x/react-charts/scatter/#performance
277
+ *
278
+ * @default 'svg-single'
279
+ */
280
+ renderer: PropTypes.oneOf(['svg-batch', 'svg-single']),
281
+ /**
282
+ * The series to display in the scatter chart.
283
+ * An array of [[ScatterSeries]] objects.
284
+ */
285
+ series: PropTypes.arrayOf(PropTypes.object).isRequired,
286
+ /**
287
+ * If true, shows the default chart toolbar.
288
+ * @default false
289
+ */
290
+ showToolbar: PropTypes.bool,
291
+ /**
292
+ * If `true`, animations are skipped.
293
+ * If unset or `false`, the animations respects the user's `prefers-reduced-motion` setting.
294
+ */
295
+ skipAnimation: PropTypes.bool,
296
+ /**
297
+ * The props used for each component slot.
298
+ * @default {}
299
+ */
300
+ slotProps: PropTypes.object,
301
+ /**
302
+ * Overridable component slots.
303
+ * @default {}
304
+ */
305
+ slots: PropTypes.object,
306
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
307
+ theme: PropTypes.oneOf(['dark', 'light']),
308
+ title: PropTypes.string,
309
+ /**
310
+ * The controlled axis tooltip.
311
+ * Identified by the axis id, and data index.
312
+ */
313
+ tooltipAxis: PropTypes.arrayOf(PropTypes.shape({
314
+ axisId: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired,
315
+ dataIndex: PropTypes.number.isRequired
316
+ })),
317
+ /**
318
+ * The tooltip item.
319
+ * Used when the tooltip is controlled.
320
+ */
321
+ tooltipItem: PropTypes.oneOfType([PropTypes.shape({
322
+ dataIndex: PropTypes.number.isRequired,
323
+ seriesId: PropTypes.string.isRequired,
324
+ type: PropTypes.oneOf(['scatter']).isRequired
325
+ }), PropTypes.shape({
326
+ dataIndex: PropTypes.number.isRequired,
327
+ seriesId: PropTypes.string.isRequired
328
+ })]),
329
+ /**
330
+ * Defines the maximum distance between a scatter point and the pointer that triggers the interaction.
331
+ * If set to `'item'`, the radius is the `markerSize`.
332
+ * If `undefined`, the radius is assumed to be infinite.
333
+ */
334
+ voronoiMaxRadius: PropTypes.oneOfType([PropTypes.oneOf(['item']), PropTypes.number]),
335
+ /**
336
+ * The width of the chart in px. If not defined, it takes the width of the parent element.
337
+ */
338
+ width: PropTypes.number,
339
+ /**
340
+ * The configuration of the x-axes.
341
+ * If not provided, a default axis config is used.
342
+ * An array of [[AxisConfig]] objects.
343
+ */
344
+ xAxis: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.shape({
345
+ axis: PropTypes.oneOf(['x']),
346
+ barGapRatio: PropTypes.number,
347
+ categoryGapRatio: PropTypes.number,
348
+ classes: PropTypes.object,
349
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
350
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
351
+ type: PropTypes.oneOf(['ordinal']).isRequired,
352
+ unknownColor: PropTypes.string,
353
+ values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired)
354
+ }), PropTypes.shape({
355
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
356
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
357
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
358
+ type: PropTypes.oneOf(['continuous']).isRequired
359
+ }), PropTypes.shape({
360
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
361
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
362
+ type: PropTypes.oneOf(['piecewise']).isRequired
363
+ })]),
364
+ data: PropTypes.array,
365
+ dataKey: PropTypes.string,
366
+ disableLine: PropTypes.bool,
367
+ disableTicks: PropTypes.bool,
368
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
369
+ groups: PropTypes.arrayOf(PropTypes.shape({
370
+ getValue: PropTypes.func.isRequired,
371
+ tickLabelStyle: PropTypes.object,
372
+ tickSize: PropTypes.number
373
+ })),
374
+ height: PropTypes.number,
375
+ hideTooltip: PropTypes.bool,
376
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
377
+ ignoreTooltip: PropTypes.bool,
378
+ label: PropTypes.string,
379
+ labelStyle: PropTypes.object,
380
+ offset: PropTypes.number,
381
+ ordinalTimeTicks: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(['biweekly', 'days', 'hours', 'months', 'quarterly', 'weeks', 'years']), PropTypes.shape({
382
+ format: PropTypes.func.isRequired,
383
+ getTickNumber: PropTypes.func.isRequired,
384
+ isTick: PropTypes.func.isRequired
385
+ })]).isRequired),
386
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
387
+ reverse: PropTypes.bool,
388
+ scaleType: PropTypes.oneOf(['band']),
389
+ slotProps: PropTypes.object,
390
+ slots: PropTypes.object,
391
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
392
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
393
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
394
+ tickLabelMinGap: PropTypes.number,
395
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
396
+ tickLabelStyle: PropTypes.object,
397
+ tickMaxStep: PropTypes.number,
398
+ tickMinStep: PropTypes.number,
399
+ tickNumber: PropTypes.number,
400
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
401
+ tickSize: PropTypes.number,
402
+ tickSpacing: PropTypes.number,
403
+ valueFormatter: PropTypes.func
404
+ }), PropTypes.shape({
405
+ axis: PropTypes.oneOf(['x']),
406
+ classes: PropTypes.object,
407
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
408
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
409
+ type: PropTypes.oneOf(['ordinal']).isRequired,
410
+ unknownColor: PropTypes.string,
411
+ values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired)
412
+ }), PropTypes.shape({
413
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
414
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
415
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
416
+ type: PropTypes.oneOf(['continuous']).isRequired
417
+ }), PropTypes.shape({
418
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
419
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
420
+ type: PropTypes.oneOf(['piecewise']).isRequired
421
+ })]),
422
+ data: PropTypes.array,
423
+ dataKey: PropTypes.string,
424
+ disableLine: PropTypes.bool,
425
+ disableTicks: PropTypes.bool,
426
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
427
+ groups: PropTypes.arrayOf(PropTypes.shape({
428
+ getValue: PropTypes.func.isRequired,
429
+ tickLabelStyle: PropTypes.object,
430
+ tickSize: PropTypes.number
431
+ })),
432
+ height: PropTypes.number,
433
+ hideTooltip: PropTypes.bool,
434
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
435
+ ignoreTooltip: PropTypes.bool,
436
+ label: PropTypes.string,
437
+ labelStyle: PropTypes.object,
438
+ offset: PropTypes.number,
439
+ ordinalTimeTicks: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(['biweekly', 'days', 'hours', 'months', 'quarterly', 'weeks', 'years']), PropTypes.shape({
440
+ format: PropTypes.func.isRequired,
441
+ getTickNumber: PropTypes.func.isRequired,
442
+ isTick: PropTypes.func.isRequired
443
+ })]).isRequired),
444
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
445
+ reverse: PropTypes.bool,
446
+ scaleType: PropTypes.oneOf(['point']),
447
+ slotProps: PropTypes.object,
448
+ slots: PropTypes.object,
449
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
450
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
451
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
452
+ tickLabelMinGap: PropTypes.number,
453
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
454
+ tickLabelStyle: PropTypes.object,
455
+ tickMaxStep: PropTypes.number,
456
+ tickMinStep: PropTypes.number,
457
+ tickNumber: PropTypes.number,
458
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
459
+ tickSize: PropTypes.number,
460
+ tickSpacing: PropTypes.number,
461
+ valueFormatter: PropTypes.func
462
+ }), PropTypes.shape({
463
+ axis: PropTypes.oneOf(['x']),
464
+ classes: PropTypes.object,
465
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
466
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
467
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
468
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
469
+ type: PropTypes.oneOf(['continuous']).isRequired
470
+ }), PropTypes.shape({
471
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
472
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
473
+ type: PropTypes.oneOf(['piecewise']).isRequired
474
+ })]),
475
+ data: PropTypes.array,
476
+ dataKey: PropTypes.string,
477
+ disableLine: PropTypes.bool,
478
+ disableTicks: PropTypes.bool,
479
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
480
+ height: PropTypes.number,
481
+ hideTooltip: PropTypes.bool,
482
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
483
+ ignoreTooltip: PropTypes.bool,
484
+ label: PropTypes.string,
485
+ labelStyle: PropTypes.object,
486
+ max: PropTypes.number,
487
+ min: PropTypes.number,
488
+ offset: PropTypes.number,
489
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
490
+ reverse: PropTypes.bool,
491
+ scaleType: PropTypes.oneOf(['log']),
492
+ slotProps: PropTypes.object,
493
+ slots: PropTypes.object,
494
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
495
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
496
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
497
+ tickLabelMinGap: PropTypes.number,
498
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
499
+ tickLabelStyle: PropTypes.object,
500
+ tickMaxStep: PropTypes.number,
501
+ tickMinStep: PropTypes.number,
502
+ tickNumber: PropTypes.number,
503
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
504
+ tickSize: PropTypes.number,
505
+ tickSpacing: PropTypes.number,
506
+ valueFormatter: PropTypes.func
507
+ }), PropTypes.shape({
508
+ axis: PropTypes.oneOf(['x']),
509
+ classes: PropTypes.object,
510
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
511
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
512
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
513
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
514
+ type: PropTypes.oneOf(['continuous']).isRequired
515
+ }), PropTypes.shape({
516
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
517
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
518
+ type: PropTypes.oneOf(['piecewise']).isRequired
519
+ })]),
520
+ constant: PropTypes.number,
521
+ data: PropTypes.array,
522
+ dataKey: PropTypes.string,
523
+ disableLine: PropTypes.bool,
524
+ disableTicks: PropTypes.bool,
525
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
526
+ height: PropTypes.number,
527
+ hideTooltip: PropTypes.bool,
528
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
529
+ ignoreTooltip: PropTypes.bool,
530
+ label: PropTypes.string,
531
+ labelStyle: PropTypes.object,
532
+ max: PropTypes.number,
533
+ min: PropTypes.number,
534
+ offset: PropTypes.number,
535
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
536
+ reverse: PropTypes.bool,
537
+ scaleType: PropTypes.oneOf(['symlog']),
538
+ slotProps: PropTypes.object,
539
+ slots: PropTypes.object,
540
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
541
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
542
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
543
+ tickLabelMinGap: PropTypes.number,
544
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
545
+ tickLabelStyle: PropTypes.object,
546
+ tickMaxStep: PropTypes.number,
547
+ tickMinStep: PropTypes.number,
548
+ tickNumber: PropTypes.number,
549
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
550
+ tickSize: PropTypes.number,
551
+ tickSpacing: PropTypes.number,
552
+ valueFormatter: PropTypes.func
553
+ }), PropTypes.shape({
554
+ axis: PropTypes.oneOf(['x']),
555
+ classes: PropTypes.object,
556
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
557
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
558
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
559
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
560
+ type: PropTypes.oneOf(['continuous']).isRequired
561
+ }), PropTypes.shape({
562
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
563
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
564
+ type: PropTypes.oneOf(['piecewise']).isRequired
565
+ })]),
566
+ data: PropTypes.array,
567
+ dataKey: PropTypes.string,
568
+ disableLine: PropTypes.bool,
569
+ disableTicks: PropTypes.bool,
570
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
571
+ height: PropTypes.number,
572
+ hideTooltip: PropTypes.bool,
573
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
574
+ ignoreTooltip: PropTypes.bool,
575
+ label: PropTypes.string,
576
+ labelStyle: PropTypes.object,
577
+ max: PropTypes.number,
578
+ min: PropTypes.number,
579
+ offset: PropTypes.number,
580
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
581
+ reverse: PropTypes.bool,
582
+ scaleType: PropTypes.oneOf(['pow']),
583
+ slotProps: PropTypes.object,
584
+ slots: PropTypes.object,
585
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
586
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
587
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
588
+ tickLabelMinGap: PropTypes.number,
589
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
590
+ tickLabelStyle: PropTypes.object,
591
+ tickMaxStep: PropTypes.number,
592
+ tickMinStep: PropTypes.number,
593
+ tickNumber: PropTypes.number,
594
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
595
+ tickSize: PropTypes.number,
596
+ tickSpacing: PropTypes.number,
597
+ valueFormatter: PropTypes.func
598
+ }), PropTypes.shape({
599
+ axis: PropTypes.oneOf(['x']),
600
+ classes: PropTypes.object,
601
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
602
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
603
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
604
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
605
+ type: PropTypes.oneOf(['continuous']).isRequired
606
+ }), PropTypes.shape({
607
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
608
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
609
+ type: PropTypes.oneOf(['piecewise']).isRequired
610
+ })]),
611
+ data: PropTypes.array,
612
+ dataKey: PropTypes.string,
613
+ disableLine: PropTypes.bool,
614
+ disableTicks: PropTypes.bool,
615
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
616
+ height: PropTypes.number,
617
+ hideTooltip: PropTypes.bool,
618
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
619
+ ignoreTooltip: PropTypes.bool,
620
+ label: PropTypes.string,
621
+ labelStyle: PropTypes.object,
622
+ max: PropTypes.number,
623
+ min: PropTypes.number,
624
+ offset: PropTypes.number,
625
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
626
+ reverse: PropTypes.bool,
627
+ scaleType: PropTypes.oneOf(['sqrt']),
628
+ slotProps: PropTypes.object,
629
+ slots: PropTypes.object,
630
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
631
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
632
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
633
+ tickLabelMinGap: PropTypes.number,
634
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
635
+ tickLabelStyle: PropTypes.object,
636
+ tickMaxStep: PropTypes.number,
637
+ tickMinStep: PropTypes.number,
638
+ tickNumber: PropTypes.number,
639
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
640
+ tickSize: PropTypes.number,
641
+ tickSpacing: PropTypes.number,
642
+ valueFormatter: PropTypes.func
643
+ }), PropTypes.shape({
644
+ axis: PropTypes.oneOf(['x']),
645
+ classes: PropTypes.object,
646
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
647
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
648
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
649
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
650
+ type: PropTypes.oneOf(['continuous']).isRequired
651
+ }), PropTypes.shape({
652
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
653
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
654
+ type: PropTypes.oneOf(['piecewise']).isRequired
655
+ })]),
656
+ data: PropTypes.array,
657
+ dataKey: PropTypes.string,
658
+ disableLine: PropTypes.bool,
659
+ disableTicks: PropTypes.bool,
660
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
661
+ height: PropTypes.number,
662
+ hideTooltip: PropTypes.bool,
663
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
664
+ ignoreTooltip: PropTypes.bool,
665
+ label: PropTypes.string,
666
+ labelStyle: PropTypes.object,
667
+ max: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
668
+ valueOf: PropTypes.func.isRequired
669
+ })]),
670
+ min: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
671
+ valueOf: PropTypes.func.isRequired
672
+ })]),
673
+ offset: PropTypes.number,
674
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
675
+ reverse: PropTypes.bool,
676
+ scaleType: PropTypes.oneOf(['time']),
677
+ slotProps: PropTypes.object,
678
+ slots: PropTypes.object,
679
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
680
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
681
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
682
+ tickLabelMinGap: PropTypes.number,
683
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
684
+ tickLabelStyle: PropTypes.object,
685
+ tickMaxStep: PropTypes.number,
686
+ tickMinStep: PropTypes.number,
687
+ tickNumber: PropTypes.number,
688
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
689
+ tickSize: PropTypes.number,
690
+ tickSpacing: PropTypes.number,
691
+ valueFormatter: PropTypes.func
692
+ }), PropTypes.shape({
693
+ axis: PropTypes.oneOf(['x']),
694
+ classes: PropTypes.object,
695
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
696
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
697
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
698
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
699
+ type: PropTypes.oneOf(['continuous']).isRequired
700
+ }), PropTypes.shape({
701
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
702
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
703
+ type: PropTypes.oneOf(['piecewise']).isRequired
704
+ })]),
705
+ data: PropTypes.array,
706
+ dataKey: PropTypes.string,
707
+ disableLine: PropTypes.bool,
708
+ disableTicks: PropTypes.bool,
709
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
710
+ height: PropTypes.number,
711
+ hideTooltip: PropTypes.bool,
712
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
713
+ ignoreTooltip: PropTypes.bool,
714
+ label: PropTypes.string,
715
+ labelStyle: PropTypes.object,
716
+ max: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
717
+ valueOf: PropTypes.func.isRequired
718
+ })]),
719
+ min: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
720
+ valueOf: PropTypes.func.isRequired
721
+ })]),
722
+ offset: PropTypes.number,
723
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
724
+ reverse: PropTypes.bool,
725
+ scaleType: PropTypes.oneOf(['utc']),
726
+ slotProps: PropTypes.object,
727
+ slots: PropTypes.object,
728
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
729
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
730
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
731
+ tickLabelMinGap: PropTypes.number,
732
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
733
+ tickLabelStyle: PropTypes.object,
734
+ tickMaxStep: PropTypes.number,
735
+ tickMinStep: PropTypes.number,
736
+ tickNumber: PropTypes.number,
737
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
738
+ tickSize: PropTypes.number,
739
+ tickSpacing: PropTypes.number,
740
+ valueFormatter: PropTypes.func
741
+ }), PropTypes.shape({
742
+ axis: PropTypes.oneOf(['x']),
743
+ classes: PropTypes.object,
744
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
745
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
746
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
747
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
748
+ type: PropTypes.oneOf(['continuous']).isRequired
749
+ }), PropTypes.shape({
750
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
751
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
752
+ type: PropTypes.oneOf(['piecewise']).isRequired
753
+ })]),
754
+ data: PropTypes.array,
755
+ dataKey: PropTypes.string,
756
+ disableLine: PropTypes.bool,
757
+ disableTicks: PropTypes.bool,
758
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
759
+ height: PropTypes.number,
760
+ hideTooltip: PropTypes.bool,
761
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
762
+ ignoreTooltip: PropTypes.bool,
763
+ label: PropTypes.string,
764
+ labelStyle: PropTypes.object,
765
+ max: PropTypes.number,
766
+ min: PropTypes.number,
767
+ offset: PropTypes.number,
768
+ position: PropTypes.oneOf(['bottom', 'none', 'top']),
769
+ reverse: PropTypes.bool,
770
+ scaleType: PropTypes.oneOf(['linear']),
771
+ slotProps: PropTypes.object,
772
+ slots: PropTypes.object,
773
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
774
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
775
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
776
+ tickLabelMinGap: PropTypes.number,
777
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
778
+ tickLabelStyle: PropTypes.object,
779
+ tickMaxStep: PropTypes.number,
780
+ tickMinStep: PropTypes.number,
781
+ tickNumber: PropTypes.number,
782
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
783
+ tickSize: PropTypes.number,
784
+ tickSpacing: PropTypes.number,
785
+ valueFormatter: PropTypes.func
786
+ })]).isRequired),
787
+ /**
788
+ * The configuration of the y-axes.
789
+ * If not provided, a default axis config is used.
790
+ * An array of [[AxisConfig]] objects.
791
+ */
792
+ yAxis: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.shape({
793
+ axis: PropTypes.oneOf(['y']),
794
+ barGapRatio: PropTypes.number,
795
+ categoryGapRatio: PropTypes.number,
796
+ classes: PropTypes.object,
797
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
798
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
799
+ type: PropTypes.oneOf(['ordinal']).isRequired,
800
+ unknownColor: PropTypes.string,
801
+ values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired)
802
+ }), PropTypes.shape({
803
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
804
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
805
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
806
+ type: PropTypes.oneOf(['continuous']).isRequired
807
+ }), PropTypes.shape({
808
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
809
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
810
+ type: PropTypes.oneOf(['piecewise']).isRequired
811
+ })]),
812
+ data: PropTypes.array,
813
+ dataKey: PropTypes.string,
814
+ disableLine: PropTypes.bool,
815
+ disableTicks: PropTypes.bool,
816
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
817
+ groups: PropTypes.arrayOf(PropTypes.shape({
818
+ getValue: PropTypes.func.isRequired,
819
+ tickLabelStyle: PropTypes.object,
820
+ tickSize: PropTypes.number
821
+ })),
822
+ hideTooltip: PropTypes.bool,
823
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
824
+ ignoreTooltip: PropTypes.bool,
825
+ label: PropTypes.string,
826
+ labelStyle: PropTypes.object,
827
+ offset: PropTypes.number,
828
+ ordinalTimeTicks: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(['biweekly', 'days', 'hours', 'months', 'quarterly', 'weeks', 'years']), PropTypes.shape({
829
+ format: PropTypes.func.isRequired,
830
+ getTickNumber: PropTypes.func.isRequired,
831
+ isTick: PropTypes.func.isRequired
832
+ })]).isRequired),
833
+ position: PropTypes.oneOf(['left', 'none', 'right']),
834
+ reverse: PropTypes.bool,
835
+ scaleType: PropTypes.oneOf(['band']),
836
+ slotProps: PropTypes.object,
837
+ slots: PropTypes.object,
838
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
839
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
840
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
841
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
842
+ tickLabelStyle: PropTypes.object,
843
+ tickMaxStep: PropTypes.number,
844
+ tickMinStep: PropTypes.number,
845
+ tickNumber: PropTypes.number,
846
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
847
+ tickSize: PropTypes.number,
848
+ tickSpacing: PropTypes.number,
849
+ valueFormatter: PropTypes.func,
850
+ width: PropTypes.number
851
+ }), PropTypes.shape({
852
+ axis: PropTypes.oneOf(['y']),
853
+ classes: PropTypes.object,
854
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
855
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
856
+ type: PropTypes.oneOf(['ordinal']).isRequired,
857
+ unknownColor: PropTypes.string,
858
+ values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired)
859
+ }), PropTypes.shape({
860
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
861
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
862
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
863
+ type: PropTypes.oneOf(['continuous']).isRequired
864
+ }), PropTypes.shape({
865
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
866
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
867
+ type: PropTypes.oneOf(['piecewise']).isRequired
868
+ })]),
869
+ data: PropTypes.array,
870
+ dataKey: PropTypes.string,
871
+ disableLine: PropTypes.bool,
872
+ disableTicks: PropTypes.bool,
873
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
874
+ groups: PropTypes.arrayOf(PropTypes.shape({
875
+ getValue: PropTypes.func.isRequired,
876
+ tickLabelStyle: PropTypes.object,
877
+ tickSize: PropTypes.number
878
+ })),
879
+ hideTooltip: PropTypes.bool,
880
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
881
+ ignoreTooltip: PropTypes.bool,
882
+ label: PropTypes.string,
883
+ labelStyle: PropTypes.object,
884
+ offset: PropTypes.number,
885
+ ordinalTimeTicks: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.oneOf(['biweekly', 'days', 'hours', 'months', 'quarterly', 'weeks', 'years']), PropTypes.shape({
886
+ format: PropTypes.func.isRequired,
887
+ getTickNumber: PropTypes.func.isRequired,
888
+ isTick: PropTypes.func.isRequired
889
+ })]).isRequired),
890
+ position: PropTypes.oneOf(['left', 'none', 'right']),
891
+ reverse: PropTypes.bool,
892
+ scaleType: PropTypes.oneOf(['point']),
893
+ slotProps: PropTypes.object,
894
+ slots: PropTypes.object,
895
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
896
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
897
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
898
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
899
+ tickLabelStyle: PropTypes.object,
900
+ tickMaxStep: PropTypes.number,
901
+ tickMinStep: PropTypes.number,
902
+ tickNumber: PropTypes.number,
903
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
904
+ tickSize: PropTypes.number,
905
+ tickSpacing: PropTypes.number,
906
+ valueFormatter: PropTypes.func,
907
+ width: PropTypes.number
908
+ }), PropTypes.shape({
909
+ axis: PropTypes.oneOf(['y']),
910
+ classes: PropTypes.object,
911
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
912
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
913
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
914
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
915
+ type: PropTypes.oneOf(['continuous']).isRequired
916
+ }), PropTypes.shape({
917
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
918
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
919
+ type: PropTypes.oneOf(['piecewise']).isRequired
920
+ })]),
921
+ data: PropTypes.array,
922
+ dataKey: PropTypes.string,
923
+ disableLine: PropTypes.bool,
924
+ disableTicks: PropTypes.bool,
925
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
926
+ hideTooltip: PropTypes.bool,
927
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
928
+ ignoreTooltip: PropTypes.bool,
929
+ label: PropTypes.string,
930
+ labelStyle: PropTypes.object,
931
+ max: PropTypes.number,
932
+ min: PropTypes.number,
933
+ offset: PropTypes.number,
934
+ position: PropTypes.oneOf(['left', 'none', 'right']),
935
+ reverse: PropTypes.bool,
936
+ scaleType: PropTypes.oneOf(['log']),
937
+ slotProps: PropTypes.object,
938
+ slots: PropTypes.object,
939
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
940
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
941
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
942
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
943
+ tickLabelStyle: PropTypes.object,
944
+ tickMaxStep: PropTypes.number,
945
+ tickMinStep: PropTypes.number,
946
+ tickNumber: PropTypes.number,
947
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
948
+ tickSize: PropTypes.number,
949
+ tickSpacing: PropTypes.number,
950
+ valueFormatter: PropTypes.func,
951
+ width: PropTypes.number
952
+ }), PropTypes.shape({
953
+ axis: PropTypes.oneOf(['y']),
954
+ classes: PropTypes.object,
955
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
956
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
957
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
958
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
959
+ type: PropTypes.oneOf(['continuous']).isRequired
960
+ }), PropTypes.shape({
961
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
962
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
963
+ type: PropTypes.oneOf(['piecewise']).isRequired
964
+ })]),
965
+ constant: PropTypes.number,
966
+ data: PropTypes.array,
967
+ dataKey: PropTypes.string,
968
+ disableLine: PropTypes.bool,
969
+ disableTicks: PropTypes.bool,
970
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
971
+ hideTooltip: PropTypes.bool,
972
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
973
+ ignoreTooltip: PropTypes.bool,
974
+ label: PropTypes.string,
975
+ labelStyle: PropTypes.object,
976
+ max: PropTypes.number,
977
+ min: PropTypes.number,
978
+ offset: PropTypes.number,
979
+ position: PropTypes.oneOf(['left', 'none', 'right']),
980
+ reverse: PropTypes.bool,
981
+ scaleType: PropTypes.oneOf(['symlog']),
982
+ slotProps: PropTypes.object,
983
+ slots: PropTypes.object,
984
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
985
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
986
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
987
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
988
+ tickLabelStyle: PropTypes.object,
989
+ tickMaxStep: PropTypes.number,
990
+ tickMinStep: PropTypes.number,
991
+ tickNumber: PropTypes.number,
992
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
993
+ tickSize: PropTypes.number,
994
+ tickSpacing: PropTypes.number,
995
+ valueFormatter: PropTypes.func,
996
+ width: PropTypes.number
997
+ }), PropTypes.shape({
998
+ axis: PropTypes.oneOf(['y']),
999
+ classes: PropTypes.object,
1000
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
1001
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
1002
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1003
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1004
+ type: PropTypes.oneOf(['continuous']).isRequired
1005
+ }), PropTypes.shape({
1006
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1007
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
1008
+ type: PropTypes.oneOf(['piecewise']).isRequired
1009
+ })]),
1010
+ data: PropTypes.array,
1011
+ dataKey: PropTypes.string,
1012
+ disableLine: PropTypes.bool,
1013
+ disableTicks: PropTypes.bool,
1014
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
1015
+ hideTooltip: PropTypes.bool,
1016
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
1017
+ ignoreTooltip: PropTypes.bool,
1018
+ label: PropTypes.string,
1019
+ labelStyle: PropTypes.object,
1020
+ max: PropTypes.number,
1021
+ min: PropTypes.number,
1022
+ offset: PropTypes.number,
1023
+ position: PropTypes.oneOf(['left', 'none', 'right']),
1024
+ reverse: PropTypes.bool,
1025
+ scaleType: PropTypes.oneOf(['pow']),
1026
+ slotProps: PropTypes.object,
1027
+ slots: PropTypes.object,
1028
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
1029
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
1030
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
1031
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
1032
+ tickLabelStyle: PropTypes.object,
1033
+ tickMaxStep: PropTypes.number,
1034
+ tickMinStep: PropTypes.number,
1035
+ tickNumber: PropTypes.number,
1036
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
1037
+ tickSize: PropTypes.number,
1038
+ tickSpacing: PropTypes.number,
1039
+ valueFormatter: PropTypes.func,
1040
+ width: PropTypes.number
1041
+ }), PropTypes.shape({
1042
+ axis: PropTypes.oneOf(['y']),
1043
+ classes: PropTypes.object,
1044
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
1045
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
1046
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1047
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1048
+ type: PropTypes.oneOf(['continuous']).isRequired
1049
+ }), PropTypes.shape({
1050
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1051
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
1052
+ type: PropTypes.oneOf(['piecewise']).isRequired
1053
+ })]),
1054
+ data: PropTypes.array,
1055
+ dataKey: PropTypes.string,
1056
+ disableLine: PropTypes.bool,
1057
+ disableTicks: PropTypes.bool,
1058
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
1059
+ hideTooltip: PropTypes.bool,
1060
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
1061
+ ignoreTooltip: PropTypes.bool,
1062
+ label: PropTypes.string,
1063
+ labelStyle: PropTypes.object,
1064
+ max: PropTypes.number,
1065
+ min: PropTypes.number,
1066
+ offset: PropTypes.number,
1067
+ position: PropTypes.oneOf(['left', 'none', 'right']),
1068
+ reverse: PropTypes.bool,
1069
+ scaleType: PropTypes.oneOf(['sqrt']),
1070
+ slotProps: PropTypes.object,
1071
+ slots: PropTypes.object,
1072
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
1073
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
1074
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
1075
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
1076
+ tickLabelStyle: PropTypes.object,
1077
+ tickMaxStep: PropTypes.number,
1078
+ tickMinStep: PropTypes.number,
1079
+ tickNumber: PropTypes.number,
1080
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
1081
+ tickSize: PropTypes.number,
1082
+ tickSpacing: PropTypes.number,
1083
+ valueFormatter: PropTypes.func,
1084
+ width: PropTypes.number
1085
+ }), PropTypes.shape({
1086
+ axis: PropTypes.oneOf(['y']),
1087
+ classes: PropTypes.object,
1088
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
1089
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
1090
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1091
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1092
+ type: PropTypes.oneOf(['continuous']).isRequired
1093
+ }), PropTypes.shape({
1094
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1095
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
1096
+ type: PropTypes.oneOf(['piecewise']).isRequired
1097
+ })]),
1098
+ data: PropTypes.array,
1099
+ dataKey: PropTypes.string,
1100
+ disableLine: PropTypes.bool,
1101
+ disableTicks: PropTypes.bool,
1102
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
1103
+ hideTooltip: PropTypes.bool,
1104
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
1105
+ ignoreTooltip: PropTypes.bool,
1106
+ label: PropTypes.string,
1107
+ labelStyle: PropTypes.object,
1108
+ max: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
1109
+ valueOf: PropTypes.func.isRequired
1110
+ })]),
1111
+ min: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
1112
+ valueOf: PropTypes.func.isRequired
1113
+ })]),
1114
+ offset: PropTypes.number,
1115
+ position: PropTypes.oneOf(['left', 'none', 'right']),
1116
+ reverse: PropTypes.bool,
1117
+ scaleType: PropTypes.oneOf(['time']),
1118
+ slotProps: PropTypes.object,
1119
+ slots: PropTypes.object,
1120
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
1121
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
1122
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
1123
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
1124
+ tickLabelStyle: PropTypes.object,
1125
+ tickMaxStep: PropTypes.number,
1126
+ tickMinStep: PropTypes.number,
1127
+ tickNumber: PropTypes.number,
1128
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
1129
+ tickSize: PropTypes.number,
1130
+ tickSpacing: PropTypes.number,
1131
+ valueFormatter: PropTypes.func,
1132
+ width: PropTypes.number
1133
+ }), PropTypes.shape({
1134
+ axis: PropTypes.oneOf(['y']),
1135
+ classes: PropTypes.object,
1136
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
1137
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
1138
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1139
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1140
+ type: PropTypes.oneOf(['continuous']).isRequired
1141
+ }), PropTypes.shape({
1142
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1143
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
1144
+ type: PropTypes.oneOf(['piecewise']).isRequired
1145
+ })]),
1146
+ data: PropTypes.array,
1147
+ dataKey: PropTypes.string,
1148
+ disableLine: PropTypes.bool,
1149
+ disableTicks: PropTypes.bool,
1150
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
1151
+ hideTooltip: PropTypes.bool,
1152
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
1153
+ ignoreTooltip: PropTypes.bool,
1154
+ label: PropTypes.string,
1155
+ labelStyle: PropTypes.object,
1156
+ max: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
1157
+ valueOf: PropTypes.func.isRequired
1158
+ })]),
1159
+ min: PropTypes.oneOfType([PropTypes.number, PropTypes.shape({
1160
+ valueOf: PropTypes.func.isRequired
1161
+ })]),
1162
+ offset: PropTypes.number,
1163
+ position: PropTypes.oneOf(['left', 'none', 'right']),
1164
+ reverse: PropTypes.bool,
1165
+ scaleType: PropTypes.oneOf(['utc']),
1166
+ slotProps: PropTypes.object,
1167
+ slots: PropTypes.object,
1168
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
1169
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
1170
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
1171
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
1172
+ tickLabelStyle: PropTypes.object,
1173
+ tickMaxStep: PropTypes.number,
1174
+ tickMinStep: PropTypes.number,
1175
+ tickNumber: PropTypes.number,
1176
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
1177
+ tickSize: PropTypes.number,
1178
+ tickSpacing: PropTypes.number,
1179
+ valueFormatter: PropTypes.func,
1180
+ width: PropTypes.number
1181
+ }), PropTypes.shape({
1182
+ axis: PropTypes.oneOf(['y']),
1183
+ classes: PropTypes.object,
1184
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
1185
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
1186
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1187
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1188
+ type: PropTypes.oneOf(['continuous']).isRequired
1189
+ }), PropTypes.shape({
1190
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1191
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
1192
+ type: PropTypes.oneOf(['piecewise']).isRequired
1193
+ })]),
1194
+ data: PropTypes.array,
1195
+ dataKey: PropTypes.string,
1196
+ disableLine: PropTypes.bool,
1197
+ disableTicks: PropTypes.bool,
1198
+ domainLimit: PropTypes.oneOfType([PropTypes.oneOf(['nice', 'strict']), PropTypes.func]),
1199
+ hideTooltip: PropTypes.bool,
1200
+ id: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
1201
+ ignoreTooltip: PropTypes.bool,
1202
+ label: PropTypes.string,
1203
+ labelStyle: PropTypes.object,
1204
+ max: PropTypes.number,
1205
+ min: PropTypes.number,
1206
+ offset: PropTypes.number,
1207
+ position: PropTypes.oneOf(['left', 'none', 'right']),
1208
+ reverse: PropTypes.bool,
1209
+ scaleType: PropTypes.oneOf(['linear']),
1210
+ slotProps: PropTypes.object,
1211
+ slots: PropTypes.object,
1212
+ sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
1213
+ tickInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.array, PropTypes.func]),
1214
+ tickLabelInterval: PropTypes.oneOfType([PropTypes.oneOf(['auto']), PropTypes.func]),
1215
+ tickLabelPlacement: PropTypes.oneOf(['middle', 'tick']),
1216
+ tickLabelStyle: PropTypes.object,
1217
+ tickMaxStep: PropTypes.number,
1218
+ tickMinStep: PropTypes.number,
1219
+ tickNumber: PropTypes.number,
1220
+ tickPlacement: PropTypes.oneOf(['end', 'extremities', 'middle', 'start']),
1221
+ tickSize: PropTypes.number,
1222
+ tickSpacing: PropTypes.number,
1223
+ valueFormatter: PropTypes.func,
1224
+ width: PropTypes.number
1225
+ })]).isRequired),
1226
+ /**
1227
+ * The configuration of the z-axes.
1228
+ */
1229
+ zAxis: PropTypes.arrayOf(PropTypes.shape({
1230
+ colorMap: PropTypes.oneOfType([PropTypes.shape({
1231
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1232
+ type: PropTypes.oneOf(['ordinal']).isRequired,
1233
+ unknownColor: PropTypes.string,
1234
+ values: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number, PropTypes.string]).isRequired)
1235
+ }), PropTypes.shape({
1236
+ color: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.string.isRequired), PropTypes.func]).isRequired,
1237
+ max: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1238
+ min: PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]),
1239
+ type: PropTypes.oneOf(['continuous']).isRequired
1240
+ }), PropTypes.shape({
1241
+ colors: PropTypes.arrayOf(PropTypes.string).isRequired,
1242
+ thresholds: PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.instanceOf(Date), PropTypes.number]).isRequired).isRequired,
1243
+ type: PropTypes.oneOf(['piecewise']).isRequired
1244
+ })]),
1245
+ data: PropTypes.array,
1246
+ dataKey: PropTypes.string,
1247
+ id: PropTypes.string,
1248
+ max: PropTypes.number,
1249
+ min: PropTypes.number
1250
+ }))
1251
+ } : void 0;
1252
+ export { ScatterChart };