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