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