@mui/x-charts 8.0.0-alpha.8 → 8.0.0-beta.0

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 (2596) hide show
  1. package/BarChart/AnimatedBarElement.d.ts +6 -9
  2. package/BarChart/AnimatedBarElement.js +15 -11
  3. package/BarChart/BarChart.d.ts +51 -53
  4. package/BarChart/BarChart.js +180 -191
  5. package/BarChart/BarChart.plugins.d.ts +7 -0
  6. package/BarChart/BarChart.plugins.js +11 -0
  7. package/BarChart/BarClipPath.d.ts +7 -7
  8. package/BarChart/BarClipPath.js +24 -17
  9. package/BarChart/BarElement.d.ts +32 -32
  10. package/BarChart/BarElement.js +42 -34
  11. package/BarChart/BarLabel/BarLabel.d.ts +853 -853
  12. package/BarChart/BarLabel/BarLabel.js +30 -23
  13. package/BarChart/BarLabel/BarLabel.types.d.ts +30 -30
  14. package/BarChart/BarLabel/BarLabel.types.js +5 -1
  15. package/BarChart/BarLabel/BarLabelItem.d.ts +40 -40
  16. package/BarChart/BarLabel/BarLabelItem.js +38 -31
  17. package/BarChart/BarLabel/BarLabelPlot.d.ts +5 -5
  18. package/BarChart/BarLabel/BarLabelPlot.js +20 -13
  19. package/BarChart/BarLabel/barLabelClasses.d.ts +7 -7
  20. package/BarChart/BarLabel/barLabelClasses.js +19 -9
  21. package/BarChart/BarLabel/getBarLabel.d.ts +9 -9
  22. package/BarChart/BarLabel/getBarLabel.js +9 -2
  23. package/BarChart/BarLabel/index.d.ts +3 -3
  24. package/BarChart/BarLabel/index.js +25 -2
  25. package/BarChart/BarPlot.d.ts +32 -34
  26. package/BarChart/BarPlot.js +59 -48
  27. package/BarChart/checkScaleErrors.d.ts +9 -6
  28. package/BarChart/checkScaleErrors.js +18 -6
  29. package/BarChart/getRadius.d.ts +11 -6
  30. package/BarChart/getRadius.js +9 -2
  31. package/BarChart/index.d.ts +4 -4
  32. package/BarChart/index.js +49 -4
  33. package/BarChart/seriesConfig/extremums.d.ts +3 -0
  34. package/BarChart/seriesConfig/getColor.d.ts +3 -0
  35. package/BarChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  36. package/BarChart/seriesConfig/getSeriesWithDefaultValues.js +15 -0
  37. package/BarChart/seriesConfig/index.d.ts +2 -0
  38. package/BarChart/seriesConfig/index.js +22 -0
  39. package/BarChart/seriesConfig/legend.d.ts +3 -0
  40. package/BarChart/seriesConfig/legend.js +28 -0
  41. package/BarChart/seriesConfig/seriesProcessor.d.ts +3 -0
  42. package/BarChart/seriesConfig/seriesProcessor.js +80 -0
  43. package/BarChart/seriesConfig/tooltip.d.ts +3 -0
  44. package/BarChart/seriesConfig/tooltip.js +31 -0
  45. package/BarChart/types.d.ts +16 -16
  46. package/BarChart/types.js +5 -1
  47. package/BarChart/useBarChartProps.d.ts +23 -24
  48. package/BarChart/useBarChartProps.js +29 -41
  49. package/CHANGELOG.md +2566 -687
  50. package/ChartContainer/ChartContainer.d.ts +10 -10
  51. package/ChartContainer/ChartContainer.js +300 -154
  52. package/ChartContainer/index.d.ts +1 -1
  53. package/ChartContainer/index.js +16 -1
  54. package/ChartContainer/useChartContainerProps.d.ts +12 -11
  55. package/ChartContainer/useChartContainerProps.js +34 -13
  56. package/ChartDataProvider/ChartDataProvider.d.ts +41 -0
  57. package/ChartDataProvider/ChartDataProvider.js +104 -0
  58. package/ChartDataProvider/useChartDataProviderProps.d.ts +11 -0
  59. package/ChartDataProvider/useChartDataProviderProps.js +38 -0
  60. package/ChartsAxis/ChartsAxis.d.ts +13 -37
  61. package/ChartsAxis/ChartsAxis.js +42 -98
  62. package/ChartsAxis/axisClasses.d.ts +29 -25
  63. package/ChartsAxis/axisClasses.js +13 -5
  64. package/ChartsAxis/index.d.ts +2 -2
  65. package/ChartsAxis/index.js +27 -2
  66. package/ChartsAxisHighlight/ChartsAxisHighlight.d.ts +3 -3
  67. package/ChartsAxisHighlight/ChartsAxisHighlight.js +21 -15
  68. package/ChartsAxisHighlight/ChartsAxisHighlight.types.d.ts +3 -3
  69. package/ChartsAxisHighlight/ChartsAxisHighlight.types.js +5 -1
  70. package/ChartsAxisHighlight/ChartsAxisHighlightPath.d.ts +5 -5
  71. package/ChartsAxisHighlight/ChartsAxisHighlightPath.js +11 -5
  72. package/ChartsAxisHighlight/ChartsXAxisHighlight.d.ts +5 -5
  73. package/ChartsAxisHighlight/ChartsXAxisHighlight.js +25 -21
  74. package/ChartsAxisHighlight/ChartsYAxisHighlight.d.ts +5 -5
  75. package/ChartsAxisHighlight/ChartsYAxisHighlight.js +25 -21
  76. package/ChartsAxisHighlight/chartsAxisHighlightClasses.d.ts +3 -3
  77. package/ChartsAxisHighlight/chartsAxisHighlightClasses.js +13 -5
  78. package/ChartsAxisHighlight/index.d.ts +4 -4
  79. package/ChartsAxisHighlight/index.js +49 -4
  80. package/ChartsClipPath/ChartsClipPath.d.ts +9 -9
  81. package/ChartsClipPath/ChartsClipPath.js +23 -17
  82. package/ChartsClipPath/index.d.ts +1 -1
  83. package/ChartsClipPath/index.js +16 -1
  84. package/ChartsGrid/ChartsGrid.d.ts +15 -15
  85. package/ChartsGrid/ChartsGrid.js +33 -27
  86. package/ChartsGrid/ChartsHorizontalGrid.d.ts +7 -7
  87. package/ChartsGrid/ChartsHorizontalGrid.js +16 -9
  88. package/ChartsGrid/ChartsVerticalGrid.d.ts +7 -7
  89. package/ChartsGrid/ChartsVerticalGrid.js +16 -9
  90. package/ChartsGrid/chartsGridClasses.d.ts +9 -9
  91. package/ChartsGrid/chartsGridClasses.js +13 -5
  92. package/ChartsGrid/index.d.ts +2 -2
  93. package/ChartsGrid/index.js +27 -2
  94. package/ChartsGrid/styledComponents.d.ts +1 -1
  95. package/ChartsGrid/styledComponents.js +12 -6
  96. package/ChartsLabel/ChartsLabel.d.ts +9 -9
  97. package/ChartsLabel/ChartsLabel.js +23 -17
  98. package/ChartsLabel/ChartsLabelGradient.d.ts +32 -32
  99. package/ChartsLabel/ChartsLabelGradient.js +40 -34
  100. package/ChartsLabel/ChartsLabelMark.d.ts +22 -17
  101. package/ChartsLabel/ChartsLabelMark.js +47 -28
  102. package/ChartsLabel/index.d.ts +5 -5
  103. package/ChartsLabel/index.js +25 -5
  104. package/ChartsLabel/labelClasses.d.ts +3 -3
  105. package/ChartsLabel/labelClasses.js +18 -9
  106. package/ChartsLabel/labelGradientClasses.d.ts +11 -11
  107. package/ChartsLabel/labelGradientClasses.js +18 -9
  108. package/ChartsLabel/labelMarkClasses.d.ts +13 -13
  109. package/ChartsLabel/labelMarkClasses.js +19 -10
  110. package/ChartsLegend/ChartsLegend.d.ts +21 -21
  111. package/ChartsLegend/ChartsLegend.js +45 -39
  112. package/ChartsLegend/ContinuousColorLegend.d.ts +48 -48
  113. package/ChartsLegend/ContinuousColorLegend.js +65 -58
  114. package/ChartsLegend/PiecewiseColorLegend.d.ts +36 -36
  115. package/ChartsLegend/PiecewiseColorLegend.js +65 -59
  116. package/ChartsLegend/chartsLegend.types.d.ts +20 -20
  117. package/ChartsLegend/chartsLegend.types.js +5 -1
  118. package/ChartsLegend/chartsLegendClasses.d.ts +13 -13
  119. package/ChartsLegend/chartsLegendClasses.js +15 -7
  120. package/ChartsLegend/colorLegend.types.d.ts +12 -12
  121. package/ChartsLegend/colorLegend.types.js +5 -1
  122. package/ChartsLegend/continuousColorLegendClasses.d.ts +21 -21
  123. package/ChartsLegend/continuousColorLegendClasses.js +15 -7
  124. package/ChartsLegend/direction.d.ts +1 -1
  125. package/ChartsLegend/direction.js +5 -1
  126. package/ChartsLegend/index.d.ts +12 -12
  127. package/ChartsLegend/index.js +135 -12
  128. package/ChartsLegend/legend.types.d.ts +8 -17
  129. package/ChartsLegend/legend.types.js +5 -1
  130. package/ChartsLegend/legendContext.types.d.ts +46 -46
  131. package/ChartsLegend/legendContext.types.js +5 -1
  132. package/ChartsLegend/onClickContextBuilder.d.ts +2 -2
  133. package/ChartsLegend/onClickContextBuilder.js +9 -2
  134. package/ChartsLegend/piecewiseColorDefaultLabelFormatter.d.ts +2 -2
  135. package/ChartsLegend/piecewiseColorDefaultLabelFormatter.js +7 -1
  136. package/ChartsLegend/piecewiseColorLegend.types.d.ts +25 -25
  137. package/ChartsLegend/piecewiseColorLegend.types.js +5 -1
  138. package/ChartsLegend/piecewiseColorLegendClasses.d.ts +23 -23
  139. package/ChartsLegend/piecewiseColorLegendClasses.js +15 -7
  140. package/ChartsLegend/useAxis.d.ts +7 -4
  141. package/ChartsLegend/useAxis.js +11 -6
  142. package/ChartsOverlay/ChartsLoadingOverlay.d.ts +1 -1
  143. package/ChartsOverlay/ChartsLoadingOverlay.js +19 -12
  144. package/ChartsOverlay/ChartsNoDataOverlay.d.ts +1 -1
  145. package/ChartsOverlay/ChartsNoDataOverlay.js +19 -12
  146. package/ChartsOverlay/ChartsOverlay.d.ts +33 -33
  147. package/ChartsOverlay/ChartsOverlay.js +21 -13
  148. package/ChartsOverlay/index.d.ts +4 -4
  149. package/ChartsOverlay/index.js +26 -3
  150. package/ChartsReferenceLine/ChartsReferenceLine.d.ts +5 -5
  151. package/ChartsReferenceLine/ChartsReferenceLine.js +27 -21
  152. package/ChartsReferenceLine/ChartsXReferenceLine.d.ts +8 -8
  153. package/ChartsReferenceLine/ChartsXReferenceLine.js +29 -22
  154. package/ChartsReferenceLine/ChartsYReferenceLine.d.ts +8 -8
  155. package/ChartsReferenceLine/ChartsYReferenceLine.js +29 -22
  156. package/ChartsReferenceLine/chartsReferenceLineClasses.d.ts +11 -11
  157. package/ChartsReferenceLine/chartsReferenceLineClasses.js +13 -5
  158. package/ChartsReferenceLine/common.d.ts +39 -39
  159. package/ChartsReferenceLine/common.js +13 -6
  160. package/ChartsReferenceLine/index.d.ts +2 -2
  161. package/ChartsReferenceLine/index.js +27 -2
  162. package/ChartsSurface/ChartsSurface.d.ts +7 -13
  163. package/ChartsSurface/ChartsSurface.js +40 -43
  164. package/ChartsSurface/index.d.ts +1 -1
  165. package/ChartsSurface/index.js +16 -1
  166. package/ChartsText/ChartsText.d.ts +8 -8
  167. package/ChartsText/ChartsText.js +30 -29
  168. package/ChartsText/defaultTextPlacement.d.ts +9 -0
  169. package/ChartsText/defaultTextPlacement.js +41 -0
  170. package/ChartsText/index.d.ts +2 -2
  171. package/ChartsText/index.js +12 -1
  172. package/ChartsTooltip/ChartTooltip.types.d.ts +12 -12
  173. package/ChartsTooltip/ChartTooltip.types.js +5 -1
  174. package/ChartsTooltip/ChartsAxisTooltipContent.d.ts +8 -8
  175. package/ChartsTooltip/ChartsAxisTooltipContent.js +42 -36
  176. package/ChartsTooltip/ChartsItemTooltipContent.d.ts +8 -8
  177. package/ChartsTooltip/ChartsItemTooltipContent.js +31 -25
  178. package/ChartsTooltip/ChartsTooltip.d.ts +4 -5
  179. package/ChartsTooltip/ChartsTooltip.js +76 -66
  180. package/ChartsTooltip/ChartsTooltipContainer.d.ts +17 -17
  181. package/ChartsTooltip/ChartsTooltipContainer.js +123 -102
  182. package/ChartsTooltip/ChartsTooltipTable.d.ts +1 -1
  183. package/ChartsTooltip/ChartsTooltipTable.js +15 -10
  184. package/ChartsTooltip/chartsTooltipClasses.d.ts +21 -21
  185. package/ChartsTooltip/chartsTooltipClasses.js +19 -9
  186. package/ChartsTooltip/index.d.ts +10 -9
  187. package/ChartsTooltip/index.js +126 -9
  188. package/ChartsTooltip/useAxisTooltip.d.ts +15 -15
  189. package/ChartsTooltip/useAxisTooltip.js +30 -24
  190. package/ChartsTooltip/useItemTooltip.d.ts +11 -10
  191. package/ChartsTooltip/useItemTooltip.js +27 -50
  192. package/ChartsTooltip/utils.d.ts +5 -5
  193. package/ChartsTooltip/utils.js +17 -7
  194. package/ChartsXAxis/ChartsXAxis.d.ts +3 -3
  195. package/ChartsXAxis/ChartsXAxis.js +211 -131
  196. package/ChartsXAxis/index.d.ts +1 -1
  197. package/ChartsXAxis/index.js +16 -1
  198. package/ChartsYAxis/ChartsYAxis.d.ts +3 -3
  199. package/ChartsYAxis/ChartsYAxis.js +92 -85
  200. package/ChartsYAxis/index.d.ts +1 -1
  201. package/ChartsYAxis/index.js +16 -1
  202. package/Gauge/Gauge.d.ts +6 -6
  203. package/Gauge/Gauge.js +56 -55
  204. package/Gauge/GaugeContainer.d.ts +6 -6
  205. package/Gauge/GaugeContainer.js +53 -51
  206. package/Gauge/GaugeProvider.d.ts +103 -103
  207. package/Gauge/GaugeProvider.js +30 -19
  208. package/Gauge/GaugeReferenceArc.d.ts +1 -1
  209. package/Gauge/GaugeReferenceArc.js +18 -11
  210. package/Gauge/GaugeValueArc.d.ts +1 -1
  211. package/Gauge/GaugeValueArc.js +18 -11
  212. package/Gauge/GaugeValueText.d.ts +7 -7
  213. package/Gauge/GaugeValueText.js +24 -18
  214. package/Gauge/gaugeClasses.d.ts +9 -9
  215. package/Gauge/gaugeClasses.js +14 -6
  216. package/Gauge/index.d.ts +7 -7
  217. package/Gauge/index.js +87 -7
  218. package/Gauge/utils.d.ts +17 -12
  219. package/Gauge/utils.js +11 -6
  220. package/LineChart/AnimatedArea.d.ts +9 -9
  221. package/LineChart/AnimatedArea.js +30 -24
  222. package/LineChart/AnimatedLine.d.ts +9 -9
  223. package/LineChart/AnimatedLine.js +30 -24
  224. package/LineChart/AppearingMask.d.ts +5 -5
  225. package/LineChart/AppearingMask.js +20 -14
  226. package/LineChart/AreaElement.d.ts +33 -33
  227. package/LineChart/AreaElement.js +44 -36
  228. package/LineChart/AreaPlot.d.ts +12 -14
  229. package/LineChart/AreaPlot.js +84 -43
  230. package/LineChart/CircleMarkElement.d.ts +12 -16
  231. package/LineChart/CircleMarkElement.js +55 -47
  232. package/LineChart/LineChart.d.ts +68 -74
  233. package/LineChart/LineChart.js +185 -200
  234. package/LineChart/LineChart.plugins.d.ts +7 -0
  235. package/LineChart/LineChart.plugins.js +11 -0
  236. package/LineChart/LineElement.d.ts +33 -33
  237. package/LineChart/LineElement.js +44 -36
  238. package/LineChart/LineHighlightElement.d.ts +16 -12
  239. package/LineChart/LineHighlightElement.js +51 -46
  240. package/LineChart/LineHighlightPlot.d.ts +15 -15
  241. package/LineChart/LineHighlightPlot.js +42 -34
  242. package/LineChart/LinePlot.d.ts +12 -14
  243. package/LineChart/LinePlot.js +86 -43
  244. package/LineChart/MarkElement.d.ts +16 -16
  245. package/LineChart/MarkElement.js +56 -43
  246. package/LineChart/MarkPlot.d.ts +22 -28
  247. package/LineChart/MarkPlot.js +50 -48
  248. package/LineChart/index.d.ts +12 -12
  249. package/LineChart/index.js +154 -12
  250. package/LineChart/markElementClasses.d.ts +13 -13
  251. package/LineChart/markElementClasses.js +18 -9
  252. package/LineChart/seriesConfig/extremums.d.ts +3 -0
  253. package/LineChart/seriesConfig/getColor.d.ts +3 -0
  254. package/LineChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  255. package/LineChart/seriesConfig/getSeriesWithDefaultValues.js +15 -0
  256. package/LineChart/seriesConfig/index.d.ts +2 -0
  257. package/LineChart/seriesConfig/index.js +22 -0
  258. package/LineChart/seriesConfig/legend.d.ts +3 -0
  259. package/LineChart/seriesConfig/legend.js +28 -0
  260. package/LineChart/seriesConfig/seriesProcessor.d.ts +3 -0
  261. package/LineChart/seriesConfig/seriesProcessor.js +84 -0
  262. package/LineChart/seriesConfig/tooltip.d.ts +3 -0
  263. package/LineChart/seriesConfig/tooltip.js +31 -0
  264. package/LineChart/useLineChartProps.d.ts +29 -30
  265. package/LineChart/useLineChartProps.js +27 -41
  266. package/PieChart/PieArc.d.ts +22 -22
  267. package/PieChart/PieArc.js +42 -34
  268. package/PieChart/PieArcLabel.d.ts +22 -22
  269. package/PieChart/PieArcLabel.js +38 -30
  270. package/PieChart/PieArcLabelPlot.d.ts +26 -26
  271. package/PieChart/PieArcLabelPlot.js +66 -60
  272. package/PieChart/PieArcPlot.d.ts +33 -33
  273. package/PieChart/PieArcPlot.js +60 -54
  274. package/PieChart/PieChart.d.ts +35 -36
  275. package/PieChart/PieChart.js +76 -176
  276. package/PieChart/PieChart.plugins.d.ts +5 -0
  277. package/PieChart/PieChart.plugins.js +9 -0
  278. package/PieChart/PiePlot.d.ts +16 -18
  279. package/PieChart/PiePlot.js +37 -31
  280. package/PieChart/dataTransform/transition.d.ts +2 -2
  281. package/PieChart/dataTransform/transition.js +13 -5
  282. package/PieChart/dataTransform/useTransformData.d.ts +12 -11
  283. package/PieChart/dataTransform/useTransformData.js +17 -8
  284. package/PieChart/getPieCoordinates.d.ts +6 -6
  285. package/PieChart/getPieCoordinates.js +10 -4
  286. package/PieChart/index.d.ts +7 -7
  287. package/PieChart/index.js +82 -7
  288. package/PieChart/seriesConfig/getColor.d.ts +3 -0
  289. package/PieChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  290. package/PieChart/seriesConfig/getSeriesWithDefaultValues.js +18 -0
  291. package/PieChart/seriesConfig/index.d.ts +2 -0
  292. package/PieChart/seriesConfig/index.js +19 -0
  293. package/PieChart/seriesConfig/legend.d.ts +3 -0
  294. package/PieChart/seriesConfig/legend.js +31 -0
  295. package/PieChart/seriesConfig/seriesProcessor.d.ts +3 -0
  296. package/PieChart/seriesConfig/seriesProcessor.js +56 -0
  297. package/PieChart/seriesConfig/tooltip.d.ts +3 -0
  298. package/PieChart/seriesConfig/tooltip.js +36 -0
  299. package/README.md +1 -1
  300. package/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.ts +20 -0
  301. package/RadarChart/RadarAxisHighlight/RadarAxisHighlight.js +49 -0
  302. package/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.d.ts +13 -0
  303. package/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.js +54 -0
  304. package/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.d.ts +13 -0
  305. package/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.js +57 -0
  306. package/RadarChart/RadarAxisHighlight/index.d.ts +1 -0
  307. package/RadarChart/RadarAxisHighlight/index.js +16 -0
  308. package/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.ts +13 -0
  309. package/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.js +14 -0
  310. package/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.d.ts +62 -0
  311. package/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.js +98 -0
  312. package/RadarChart/RadarChart.d.ts +25 -0
  313. package/RadarChart/RadarChart.js +183 -0
  314. package/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +30 -0
  315. package/RadarChart/RadarDataProvider/RadarDataProvider.js +198 -0
  316. package/RadarChart/RadarDataProvider/index.d.ts +1 -0
  317. package/RadarChart/RadarDataProvider/index.js +16 -0
  318. package/RadarChart/RadarDataProvider/radar.types.d.ts +43 -0
  319. package/RadarChart/RadarGrid/CircularRadarGrid.d.ts +6 -0
  320. package/RadarChart/RadarGrid/CircularRadarGrid.js +43 -0
  321. package/RadarChart/RadarGrid/RadarGrid.d.ts +7 -0
  322. package/RadarChart/RadarGrid/RadarGrid.js +52 -0
  323. package/RadarChart/RadarGrid/RadarGrid.types.d.ts +24 -0
  324. package/RadarChart/RadarGrid/SharpRadarGrid.d.ts +6 -0
  325. package/RadarChart/RadarGrid/SharpRadarGrid.js +43 -0
  326. package/RadarChart/RadarGrid/index.d.ts +2 -0
  327. package/RadarChart/RadarGrid/index.js +16 -0
  328. package/RadarChart/RadarGrid/useRadarGridData.d.ts +11 -0
  329. package/RadarChart/RadarGrid/useRadarGridData.js +41 -0
  330. package/RadarChart/RadarMetricLabels/RadarMetricLabels.d.ts +3 -0
  331. package/RadarChart/RadarMetricLabels/RadarMetricLabels.js +42 -0
  332. package/RadarChart/RadarMetricLabels/index.d.ts +1 -0
  333. package/RadarChart/RadarMetricLabels/index.js +16 -0
  334. package/RadarChart/RadarMetricLabels/useRadarMetricData.d.ts +8 -0
  335. package/RadarChart/RadarMetricLabels/useRadarMetricData.js +41 -0
  336. package/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +7 -0
  337. package/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +46 -0
  338. package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +7 -0
  339. package/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +45 -0
  340. package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.d.ts +7 -0
  341. package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +75 -0
  342. package/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.ts +18 -0
  343. package/RadarChart/RadarSeriesPlot/getAreaPath.d.ts +4 -0
  344. package/RadarChart/RadarSeriesPlot/getAreaPath.js +9 -0
  345. package/RadarChart/RadarSeriesPlot/index.d.ts +6 -0
  346. package/RadarChart/RadarSeriesPlot/index.js +51 -0
  347. package/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts +12 -0
  348. package/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.js +24 -0
  349. package/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +27 -0
  350. package/RadarChart/RadarSeriesPlot/useRadarSeriesData.js +68 -0
  351. package/RadarChart/index.d.ts +8 -0
  352. package/RadarChart/index.js +71 -0
  353. package/RadarChart/seriesConfig/extremums.d.ts +3 -0
  354. package/RadarChart/seriesConfig/extremums.js +26 -0
  355. package/RadarChart/seriesConfig/formatter.d.ts +3 -0
  356. package/RadarChart/seriesConfig/formatter.js +18 -0
  357. package/RadarChart/seriesConfig/getColor.d.ts +3 -0
  358. package/RadarChart/seriesConfig/getColor.js +10 -0
  359. package/RadarChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  360. package/RadarChart/seriesConfig/getSeriesWithDefaultValues.js +15 -0
  361. package/RadarChart/seriesConfig/index.d.ts +2 -0
  362. package/RadarChart/seriesConfig/index.js +22 -0
  363. package/RadarChart/seriesConfig/legend.d.ts +3 -0
  364. package/RadarChart/seriesConfig/legend.js +28 -0
  365. package/RadarChart/seriesConfig/tooltip.d.ts +3 -0
  366. package/RadarChart/seriesConfig/tooltip.js +31 -0
  367. package/RadarChart/useRadarChartProps.d.ts +26 -0
  368. package/RadarChart/useRadarChartProps.js +84 -0
  369. package/ScatterChart/Scatter.d.ts +20 -16
  370. package/ScatterChart/Scatter.js +65 -42
  371. package/ScatterChart/ScatterChart.d.ts +56 -57
  372. package/ScatterChart/ScatterChart.js +204 -208
  373. package/ScatterChart/ScatterChart.plugins.d.ts +8 -0
  374. package/ScatterChart/ScatterChart.plugins.js +12 -0
  375. package/ScatterChart/ScatterMarker.d.ts +46 -0
  376. package/ScatterChart/ScatterMarker.js +77 -0
  377. package/ScatterChart/ScatterMarker.types.d.ts +24 -0
  378. package/ScatterChart/ScatterPlot.d.ts +17 -17
  379. package/ScatterChart/ScatterPlot.js +31 -25
  380. package/ScatterChart/index.d.ts +5 -3
  381. package/ScatterChart/index.js +60 -3
  382. package/ScatterChart/seriesConfig/extremums.d.ts +3 -0
  383. package/ScatterChart/seriesConfig/getColor.d.ts +3 -0
  384. package/ScatterChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  385. package/ScatterChart/seriesConfig/getSeriesWithDefaultValues.js +15 -0
  386. package/ScatterChart/seriesConfig/index.d.ts +2 -0
  387. package/ScatterChart/seriesConfig/index.js +22 -0
  388. package/ScatterChart/seriesConfig/legend.d.ts +3 -0
  389. package/ScatterChart/seriesConfig/legend.js +28 -0
  390. package/ScatterChart/seriesConfig/seriesProcessor.d.ts +3 -0
  391. package/ScatterChart/seriesConfig/seriesProcessor.js +40 -0
  392. package/ScatterChart/seriesConfig/tooltip.d.ts +3 -0
  393. package/ScatterChart/seriesConfig/tooltip.js +31 -0
  394. package/ScatterChart/useScatterChartProps.d.ts +17 -18
  395. package/ScatterChart/useScatterChartProps.js +23 -32
  396. package/SparkLineChart/SparkLineChart.d.ts +88 -88
  397. package/SparkLineChart/SparkLineChart.js +215 -177
  398. package/SparkLineChart/index.d.ts +1 -1
  399. package/SparkLineChart/index.js +16 -1
  400. package/colorPalettes/colorPalettes.d.ts +6 -1
  401. package/colorPalettes/colorPalettes.js +22 -9
  402. package/colorPalettes/index.d.ts +1 -1
  403. package/colorPalettes/index.js +16 -1
  404. package/constants/index.d.ts +9 -5
  405. package/constants/index.js +20 -8
  406. package/context/AnimationProvider/Animation.types.d.ts +12 -12
  407. package/context/AnimationProvider/Animation.types.js +5 -1
  408. package/context/AnimationProvider/AnimationContext.d.ts +3 -3
  409. package/context/AnimationProvider/AnimationContext.js +9 -2
  410. package/context/AnimationProvider/AnimationProvider.d.ts +2 -2
  411. package/context/AnimationProvider/AnimationProvider.js +15 -10
  412. package/context/AnimationProvider/index.d.ts +4 -4
  413. package/context/AnimationProvider/index.js +49 -4
  414. package/context/AnimationProvider/useSkipAnimation.d.ts +1 -1
  415. package/context/AnimationProvider/useSkipAnimation.js +11 -6
  416. package/context/ChartProvider/ChartContext.d.ts +2 -2
  417. package/context/ChartProvider/ChartContext.js +9 -2
  418. package/context/ChartProvider/ChartProvider.d.ts +5 -5
  419. package/context/ChartProvider/ChartProvider.js +28 -21
  420. package/context/ChartProvider/ChartProvider.types.d.ts +36 -36
  421. package/context/ChartProvider/ChartProvider.types.js +5 -1
  422. package/context/ChartProvider/index.d.ts +3 -3
  423. package/context/ChartProvider/index.js +38 -3
  424. package/context/ChartProvider/useChartContext.d.ts +3 -3
  425. package/context/ChartProvider/useChartContext.js +12 -5
  426. package/context/context.types.d.ts +3 -3
  427. package/context/context.types.js +5 -1
  428. package/context/index.d.ts +1 -3
  429. package/context/index.js +5 -2
  430. package/esm/BarChart/AnimatedBarElement.d.ts +12 -0
  431. package/esm/BarChart/AnimatedBarElement.js +19 -0
  432. package/esm/BarChart/BarChart.d.ts +66 -0
  433. package/esm/BarChart/BarChart.js +321 -0
  434. package/esm/BarChart/BarChart.plugins.d.ts +7 -0
  435. package/esm/BarChart/BarChart.plugins.js +5 -0
  436. package/esm/BarChart/BarClipPath.d.ts +14 -0
  437. package/esm/BarChart/BarClipPath.js +42 -0
  438. package/esm/BarChart/BarElement.d.ts +50 -0
  439. package/esm/BarChart/BarElement.js +101 -0
  440. package/esm/BarChart/BarLabel/BarLabel.d.ts +861 -0
  441. package/esm/BarChart/BarLabel/BarLabel.js +53 -0
  442. package/esm/BarChart/BarLabel/BarLabel.types.d.ts +39 -0
  443. package/esm/BarChart/BarLabel/BarLabelItem.d.ts +54 -0
  444. package/esm/BarChart/BarLabel/BarLabelItem.js +119 -0
  445. package/esm/BarChart/BarLabel/BarLabelPlot.d.ts +13 -0
  446. package/esm/BarChart/BarLabel/BarLabelPlot.js +75 -0
  447. package/esm/BarChart/BarLabel/barLabelClasses.d.ts +13 -0
  448. package/esm/BarChart/BarLabel/barLabelClasses.js +19 -0
  449. package/esm/BarChart/BarLabel/getBarLabel.d.ts +10 -0
  450. package/esm/BarChart/BarLabel/getBarLabel.js +24 -0
  451. package/esm/BarChart/BarLabel/index.d.ts +6 -0
  452. package/esm/BarChart/BarLabel/index.js +2 -0
  453. package/esm/BarChart/BarPlot.d.ts +49 -0
  454. package/esm/BarChart/BarPlot.js +327 -0
  455. package/esm/BarChart/checkScaleErrors.d.ts +10 -0
  456. package/esm/BarChart/checkScaleErrors.js +33 -0
  457. package/esm/BarChart/getRadius.d.ts +20 -0
  458. package/esm/BarChart/getRadius.js +30 -0
  459. package/esm/BarChart/index.d.ts +4 -0
  460. package/esm/BarChart/index.js +4 -0
  461. package/esm/BarChart/seriesConfig/extremums.d.ts +3 -0
  462. package/esm/BarChart/seriesConfig/getColor.d.ts +3 -0
  463. package/esm/BarChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  464. package/esm/BarChart/seriesConfig/getSeriesWithDefaultValues.js +8 -0
  465. package/esm/BarChart/seriesConfig/index.d.ts +2 -0
  466. package/esm/BarChart/seriesConfig/index.js +15 -0
  467. package/esm/BarChart/seriesConfig/legend.d.ts +3 -0
  468. package/esm/BarChart/seriesConfig/legend.js +22 -0
  469. package/esm/BarChart/seriesConfig/seriesProcessor.d.ts +3 -0
  470. package/esm/BarChart/seriesConfig/seriesProcessor.js +73 -0
  471. package/esm/BarChart/seriesConfig/tooltip.d.ts +3 -0
  472. package/esm/BarChart/seriesConfig/tooltip.js +25 -0
  473. package/esm/BarChart/types.d.ts +23 -0
  474. package/esm/BarChart/useBarChartProps.d.ts +33 -0
  475. package/esm/BarChart/useBarChartProps.js +130 -0
  476. package/esm/ChartContainer/ChartContainer.d.ts +35 -0
  477. package/esm/ChartContainer/ChartContainer.js +396 -0
  478. package/esm/ChartContainer/index.d.ts +1 -0
  479. package/esm/ChartContainer/index.js +1 -0
  480. package/esm/ChartContainer/useChartContainerProps.d.ts +15 -0
  481. package/esm/ChartContainer/useChartContainerProps.js +71 -0
  482. package/esm/ChartDataProvider/ChartDataProvider.d.ts +41 -0
  483. package/esm/ChartDataProvider/ChartDataProvider.js +98 -0
  484. package/esm/ChartDataProvider/index.js +1 -0
  485. package/esm/ChartDataProvider/useChartDataProviderProps.d.ts +11 -0
  486. package/esm/ChartDataProvider/useChartDataProviderProps.js +31 -0
  487. package/esm/ChartsAxis/ChartsAxis.d.ts +28 -0
  488. package/esm/ChartsAxis/ChartsAxis.js +69 -0
  489. package/esm/ChartsAxis/axisClasses.d.ts +33 -0
  490. package/esm/ChartsAxis/axisClasses.js +6 -0
  491. package/esm/ChartsAxis/index.d.ts +2 -0
  492. package/esm/ChartsAxis/index.js +2 -0
  493. package/esm/ChartsAxisHighlight/ChartsAxisHighlight.d.ts +16 -0
  494. package/esm/ChartsAxisHighlight/ChartsAxisHighlight.js +50 -0
  495. package/esm/ChartsAxisHighlight/ChartsAxisHighlight.types.d.ts +5 -0
  496. package/esm/ChartsAxisHighlight/ChartsAxisHighlightPath.d.ts +6 -0
  497. package/esm/ChartsAxisHighlight/ChartsAxisHighlightPath.js +34 -0
  498. package/esm/ChartsAxisHighlight/ChartsXAxisHighlight.d.ts +10 -0
  499. package/esm/ChartsAxisHighlight/ChartsXAxisHighlight.js +53 -0
  500. package/esm/ChartsAxisHighlight/ChartsYAxisHighlight.d.ts +10 -0
  501. package/esm/ChartsAxisHighlight/ChartsYAxisHighlight.js +53 -0
  502. package/esm/ChartsAxisHighlight/chartsAxisHighlightClasses.d.ts +7 -0
  503. package/esm/ChartsAxisHighlight/chartsAxisHighlightClasses.js +6 -0
  504. package/esm/ChartsAxisHighlight/index.d.ts +4 -0
  505. package/esm/ChartsAxisHighlight/index.js +4 -0
  506. package/esm/ChartsClipPath/ChartsClipPath.d.ts +20 -0
  507. package/esm/ChartsClipPath/ChartsClipPath.js +53 -0
  508. package/esm/ChartsClipPath/index.d.ts +1 -0
  509. package/esm/ChartsClipPath/index.js +1 -0
  510. package/esm/ChartsGrid/ChartsGrid.d.ts +30 -0
  511. package/esm/ChartsGrid/ChartsGrid.js +91 -0
  512. package/esm/ChartsGrid/ChartsHorizontalGrid.d.ts +14 -0
  513. package/esm/ChartsGrid/ChartsHorizontalGrid.js +37 -0
  514. package/esm/ChartsGrid/ChartsVerticalGrid.d.ts +14 -0
  515. package/esm/ChartsGrid/ChartsVerticalGrid.js +37 -0
  516. package/esm/ChartsGrid/chartsGridClasses.d.ts +13 -0
  517. package/esm/ChartsGrid/chartsGridClasses.js +6 -0
  518. package/esm/ChartsGrid/index.d.ts +2 -0
  519. package/esm/ChartsGrid/index.js +2 -0
  520. package/esm/ChartsGrid/styledComponents.d.ts +2 -0
  521. package/esm/ChartsGrid/styledComponents.js +22 -0
  522. package/esm/ChartsLabel/ChartsLabel.d.ts +18 -0
  523. package/esm/ChartsLabel/ChartsLabel.js +43 -0
  524. package/esm/ChartsLabel/ChartsLabelGradient.d.ts +41 -0
  525. package/esm/ChartsLabel/ChartsLabelGradient.js +135 -0
  526. package/esm/ChartsLabel/ChartsLabelMark.d.ts +31 -0
  527. package/esm/ChartsLabel/ChartsLabelMark.js +124 -0
  528. package/esm/ChartsLabel/index.d.ts +7 -0
  529. package/esm/ChartsLabel/index.js +3 -0
  530. package/esm/ChartsLabel/labelClasses.d.ts +8 -0
  531. package/esm/ChartsLabel/labelClasses.js +13 -0
  532. package/esm/ChartsLabel/labelGradientClasses.d.ts +16 -0
  533. package/esm/ChartsLabel/labelGradientClasses.js +18 -0
  534. package/esm/ChartsLabel/labelMarkClasses.d.ts +18 -0
  535. package/esm/ChartsLabel/labelMarkClasses.js +18 -0
  536. package/esm/ChartsLegend/ChartsLegend.d.ts +27 -0
  537. package/esm/ChartsLegend/ChartsLegend.js +138 -0
  538. package/esm/ChartsLegend/ContinuousColorLegend.d.ts +56 -0
  539. package/esm/ChartsLegend/ContinuousColorLegend.js +271 -0
  540. package/esm/ChartsLegend/PiecewiseColorLegend.d.ts +42 -0
  541. package/esm/ChartsLegend/PiecewiseColorLegend.js +267 -0
  542. package/esm/ChartsLegend/chartsLegend.types.d.ts +26 -0
  543. package/esm/ChartsLegend/chartsLegendClasses.d.ts +18 -0
  544. package/esm/ChartsLegend/chartsLegendClasses.js +20 -0
  545. package/esm/ChartsLegend/colorLegend.types.d.ts +13 -0
  546. package/esm/ChartsLegend/continuousColorLegendClasses.d.ts +26 -0
  547. package/esm/ChartsLegend/continuousColorLegendClasses.js +23 -0
  548. package/esm/ChartsLegend/direction.d.ts +1 -0
  549. package/esm/ChartsLegend/index.d.ts +16 -0
  550. package/esm/ChartsLegend/index.js +12 -0
  551. package/esm/ChartsLegend/legend.types.d.ts +9 -0
  552. package/esm/ChartsLegend/legend.types.js +1 -0
  553. package/esm/ChartsLegend/legendContext.types.d.ts +55 -0
  554. package/esm/ChartsLegend/legendContext.types.js +1 -0
  555. package/esm/ChartsLegend/onClickContextBuilder.d.ts +2 -0
  556. package/esm/ChartsLegend/onClickContextBuilder.js +7 -0
  557. package/esm/ChartsLegend/piecewiseColorDefaultLabelFormatter.d.ts +2 -0
  558. package/esm/ChartsLegend/piecewiseColorDefaultLabelFormatter.js +9 -0
  559. package/esm/ChartsLegend/piecewiseColorLegend.types.d.ts +26 -0
  560. package/esm/ChartsLegend/piecewiseColorLegend.types.js +1 -0
  561. package/esm/ChartsLegend/piecewiseColorLegendClasses.d.ts +28 -0
  562. package/esm/ChartsLegend/piecewiseColorLegendClasses.js +23 -0
  563. package/esm/ChartsLegend/useAxis.d.ts +10 -0
  564. package/esm/ChartsLegend/useAxis.js +42 -0
  565. package/esm/ChartsOverlay/ChartsLoadingOverlay.d.ts +3 -0
  566. package/esm/ChartsOverlay/ChartsLoadingOverlay.js +36 -0
  567. package/esm/ChartsOverlay/ChartsNoDataOverlay.d.ts +3 -0
  568. package/esm/ChartsOverlay/ChartsNoDataOverlay.js +36 -0
  569. package/esm/ChartsOverlay/ChartsOverlay.d.ts +45 -0
  570. package/esm/ChartsOverlay/ChartsOverlay.js +33 -0
  571. package/esm/ChartsOverlay/index.d.ts +4 -0
  572. package/esm/ChartsOverlay/index.js +3 -0
  573. package/esm/ChartsReferenceLine/ChartsReferenceLine.d.ts +10 -0
  574. package/esm/ChartsReferenceLine/ChartsReferenceLine.js +76 -0
  575. package/esm/ChartsReferenceLine/ChartsXReferenceLine.d.ts +13 -0
  576. package/esm/ChartsReferenceLine/ChartsXReferenceLine.js +102 -0
  577. package/esm/ChartsReferenceLine/ChartsYReferenceLine.d.ts +13 -0
  578. package/esm/ChartsReferenceLine/ChartsYReferenceLine.js +102 -0
  579. package/esm/ChartsReferenceLine/chartsReferenceLineClasses.d.ts +15 -0
  580. package/esm/ChartsReferenceLine/chartsReferenceLineClasses.js +6 -0
  581. package/esm/ChartsReferenceLine/common.d.ts +41 -0
  582. package/esm/ChartsReferenceLine/common.js +20 -0
  583. package/esm/ChartsReferenceLine/index.d.ts +2 -0
  584. package/esm/ChartsReferenceLine/index.js +2 -0
  585. package/esm/ChartsSurface/ChartsSurface.d.ts +25 -0
  586. package/esm/ChartsSurface/ChartsSurface.js +100 -0
  587. package/esm/ChartsSurface/index.d.ts +1 -0
  588. package/esm/ChartsSurface/index.js +1 -0
  589. package/esm/ChartsText/ChartsText.d.ts +17 -0
  590. package/esm/ChartsText/ChartsText.js +89 -0
  591. package/esm/ChartsText/defaultTextPlacement.d.ts +9 -0
  592. package/esm/ChartsText/defaultTextPlacement.js +34 -0
  593. package/esm/ChartsText/index.d.ts +3 -0
  594. package/esm/ChartsText/index.js +1 -0
  595. package/esm/ChartsTooltip/ChartTooltip.types.d.ts +15 -0
  596. package/esm/ChartsTooltip/ChartTooltip.types.js +1 -0
  597. package/esm/ChartsTooltip/ChartsAxisTooltipContent.d.ts +15 -0
  598. package/esm/ChartsTooltip/ChartsAxisTooltipContent.js +96 -0
  599. package/esm/ChartsTooltip/ChartsItemTooltipContent.d.ts +15 -0
  600. package/esm/ChartsTooltip/ChartsItemTooltipContent.js +65 -0
  601. package/esm/ChartsTooltip/ChartsTooltip.d.ts +17 -0
  602. package/esm/ChartsTooltip/ChartsTooltip.js +199 -0
  603. package/esm/ChartsTooltip/ChartsTooltipContainer.d.ts +33 -0
  604. package/esm/ChartsTooltip/ChartsTooltipContainer.js +295 -0
  605. package/esm/ChartsTooltip/ChartsTooltipTable.d.ts +16 -0
  606. package/esm/ChartsTooltip/ChartsTooltipTable.js +85 -0
  607. package/esm/ChartsTooltip/chartsTooltipClasses.d.ts +26 -0
  608. package/esm/ChartsTooltip/chartsTooltipClasses.js +22 -0
  609. package/esm/ChartsTooltip/index.d.ts +11 -0
  610. package/esm/ChartsTooltip/index.js +10 -0
  611. package/esm/ChartsTooltip/useAxisTooltip.d.ts +20 -0
  612. package/esm/ChartsTooltip/useAxisTooltip.js +88 -0
  613. package/esm/ChartsTooltip/useItemTooltip.d.ts +12 -0
  614. package/esm/ChartsTooltip/useItemTooltip.js +40 -0
  615. package/esm/ChartsTooltip/utils.d.ts +16 -0
  616. package/esm/ChartsTooltip/utils.js +84 -0
  617. package/esm/ChartsXAxis/ChartsXAxis.d.ts +16 -0
  618. package/esm/ChartsXAxis/ChartsXAxis.js +457 -0
  619. package/esm/ChartsXAxis/index.d.ts +1 -0
  620. package/esm/ChartsXAxis/index.js +1 -0
  621. package/esm/ChartsYAxis/ChartsYAxis.d.ts +16 -0
  622. package/esm/ChartsYAxis/ChartsYAxis.js +327 -0
  623. package/esm/ChartsYAxis/index.d.ts +1 -0
  624. package/esm/ChartsYAxis/index.js +1 -0
  625. package/esm/Gauge/Gauge.d.ts +10 -0
  626. package/esm/Gauge/Gauge.js +144 -0
  627. package/esm/Gauge/GaugeContainer.d.ts +10 -0
  628. package/esm/Gauge/GaugeContainer.js +174 -0
  629. package/esm/Gauge/GaugeProvider.d.ts +117 -0
  630. package/esm/Gauge/GaugeProvider.js +91 -0
  631. package/esm/Gauge/GaugeReferenceArc.d.ts +2 -0
  632. package/esm/Gauge/GaugeReferenceArc.js +37 -0
  633. package/esm/Gauge/GaugeValueArc.d.ts +2 -0
  634. package/esm/Gauge/GaugeValueArc.js +44 -0
  635. package/esm/Gauge/GaugeValueText.d.ts +15 -0
  636. package/esm/Gauge/GaugeValueText.js +71 -0
  637. package/esm/Gauge/gaugeClasses.d.ts +14 -0
  638. package/esm/Gauge/gaugeClasses.js +7 -0
  639. package/esm/Gauge/index.d.ts +7 -0
  640. package/esm/Gauge/index.js +7 -0
  641. package/esm/Gauge/utils.d.ts +24 -0
  642. package/esm/Gauge/utils.js +66 -0
  643. package/esm/LineChart/AnimatedArea.d.ts +26 -0
  644. package/esm/LineChart/AnimatedArea.js +78 -0
  645. package/esm/LineChart/AnimatedLine.d.ts +26 -0
  646. package/esm/LineChart/AnimatedLine.js +78 -0
  647. package/esm/LineChart/AppearingMask.d.ts +12 -0
  648. package/esm/LineChart/AppearingMask.js +43 -0
  649. package/esm/LineChart/AreaElement.d.ts +61 -0
  650. package/esm/LineChart/AreaElement.js +111 -0
  651. package/esm/LineChart/AreaPlot.d.ts +29 -0
  652. package/esm/LineChart/AreaPlot.js +215 -0
  653. package/esm/LineChart/CircleMarkElement.d.ts +30 -0
  654. package/esm/LineChart/CircleMarkElement.js +111 -0
  655. package/esm/LineChart/LineChart.d.ts +82 -0
  656. package/esm/LineChart/LineChart.js +321 -0
  657. package/esm/LineChart/LineChart.plugins.d.ts +7 -0
  658. package/esm/LineChart/LineChart.plugins.js +5 -0
  659. package/esm/LineChart/LineElement.d.ts +61 -0
  660. package/esm/LineChart/LineElement.js +111 -0
  661. package/esm/LineChart/LineHighlightElement.d.ts +36 -0
  662. package/esm/LineChart/LineHighlightElement.js +79 -0
  663. package/esm/LineChart/LineHighlightPlot.d.ts +36 -0
  664. package/esm/LineChart/LineHighlightPlot.js +122 -0
  665. package/esm/LineChart/LinePlot.d.ts +28 -0
  666. package/esm/LineChart/LinePlot.js +199 -0
  667. package/esm/LineChart/MarkElement.d.ts +32 -0
  668. package/esm/LineChart/MarkElement.js +124 -0
  669. package/esm/LineChart/MarkPlot.d.ts +42 -0
  670. package/esm/LineChart/MarkPlot.js +181 -0
  671. package/esm/LineChart/index.d.ts +13 -0
  672. package/esm/LineChart/index.js +12 -0
  673. package/esm/LineChart/markElementClasses.d.ts +20 -0
  674. package/esm/LineChart/markElementClasses.js +19 -0
  675. package/esm/LineChart/seriesConfig/extremums.d.ts +3 -0
  676. package/esm/LineChart/seriesConfig/getColor.d.ts +3 -0
  677. package/esm/LineChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  678. package/esm/LineChart/seriesConfig/getSeriesWithDefaultValues.js +8 -0
  679. package/esm/LineChart/seriesConfig/index.d.ts +2 -0
  680. package/esm/LineChart/seriesConfig/index.js +15 -0
  681. package/esm/LineChart/seriesConfig/legend.d.ts +3 -0
  682. package/esm/LineChart/seriesConfig/legend.js +22 -0
  683. package/esm/LineChart/seriesConfig/seriesProcessor.d.ts +3 -0
  684. package/esm/LineChart/seriesConfig/seriesProcessor.js +77 -0
  685. package/esm/LineChart/seriesConfig/tooltip.d.ts +3 -0
  686. package/esm/LineChart/seriesConfig/tooltip.js +25 -0
  687. package/esm/LineChart/useLineChartProps.d.ts +39 -0
  688. package/esm/LineChart/useLineChartProps.js +138 -0
  689. package/esm/PieChart/PieArc.d.ts +36 -0
  690. package/esm/PieChart/PieArc.js +108 -0
  691. package/esm/PieChart/PieArcLabel.d.ts +37 -0
  692. package/esm/PieChart/PieArcLabel.js +113 -0
  693. package/esm/PieChart/PieArcLabelPlot.d.ts +36 -0
  694. package/esm/PieChart/PieArcLabelPlot.js +197 -0
  695. package/esm/PieChart/PieArcPlot.d.ts +43 -0
  696. package/esm/PieChart/PieArcPlot.js +170 -0
  697. package/esm/PieChart/PieChart.d.ts +49 -0
  698. package/esm/PieChart/PieChart.js +201 -0
  699. package/esm/PieChart/PieChart.plugins.d.ts +5 -0
  700. package/esm/PieChart/PieChart.plugins.js +3 -0
  701. package/esm/PieChart/PiePlot.d.ts +32 -0
  702. package/esm/PieChart/PiePlot.js +163 -0
  703. package/esm/PieChart/dataTransform/transition.d.ts +4 -0
  704. package/esm/PieChart/dataTransform/transition.js +137 -0
  705. package/esm/PieChart/dataTransform/useTransformData.d.ts +16 -0
  706. package/esm/PieChart/dataTransform/useTransformData.js +50 -0
  707. package/esm/PieChart/getPieCoordinates.d.ts +7 -0
  708. package/esm/PieChart/getPieCoordinates.js +19 -0
  709. package/esm/PieChart/index.d.ts +7 -0
  710. package/esm/PieChart/index.js +7 -0
  711. package/esm/PieChart/seriesConfig/getColor.d.ts +3 -0
  712. package/esm/PieChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  713. package/esm/PieChart/seriesConfig/getSeriesWithDefaultValues.js +11 -0
  714. package/esm/PieChart/seriesConfig/index.d.ts +2 -0
  715. package/esm/PieChart/seriesConfig/index.js +12 -0
  716. package/esm/PieChart/seriesConfig/legend.d.ts +3 -0
  717. package/esm/PieChart/seriesConfig/legend.js +25 -0
  718. package/esm/PieChart/seriesConfig/seriesProcessor.d.ts +3 -0
  719. package/esm/PieChart/seriesConfig/seriesProcessor.js +49 -0
  720. package/esm/PieChart/seriesConfig/tooltip.d.ts +3 -0
  721. package/esm/PieChart/seriesConfig/tooltip.js +29 -0
  722. package/esm/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.ts +20 -0
  723. package/esm/RadarChart/RadarAxisHighlight/RadarAxisHighlight.js +42 -0
  724. package/esm/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.d.ts +13 -0
  725. package/esm/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.js +47 -0
  726. package/esm/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.d.ts +13 -0
  727. package/esm/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.js +50 -0
  728. package/esm/RadarChart/RadarAxisHighlight/index.d.ts +1 -0
  729. package/esm/RadarChart/RadarAxisHighlight/index.js +1 -0
  730. package/esm/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.ts +13 -0
  731. package/esm/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.js +6 -0
  732. package/esm/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.d.ts +62 -0
  733. package/esm/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.js +92 -0
  734. package/esm/RadarChart/RadarChart.d.ts +25 -0
  735. package/esm/RadarChart/RadarChart.js +177 -0
  736. package/esm/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +30 -0
  737. package/esm/RadarChart/RadarDataProvider/RadarDataProvider.js +192 -0
  738. package/esm/RadarChart/RadarDataProvider/index.d.ts +1 -0
  739. package/esm/RadarChart/RadarDataProvider/index.js +1 -0
  740. package/esm/RadarChart/RadarDataProvider/radar.types.d.ts +43 -0
  741. package/esm/RadarChart/RadarDataProvider/radar.types.js +1 -0
  742. package/esm/RadarChart/RadarGrid/CircularRadarGrid.d.ts +6 -0
  743. package/esm/RadarChart/RadarGrid/CircularRadarGrid.js +36 -0
  744. package/esm/RadarChart/RadarGrid/RadarGrid.d.ts +7 -0
  745. package/esm/RadarChart/RadarGrid/RadarGrid.js +45 -0
  746. package/esm/RadarChart/RadarGrid/RadarGrid.types.d.ts +24 -0
  747. package/esm/RadarChart/RadarGrid/RadarGrid.types.js +1 -0
  748. package/esm/RadarChart/RadarGrid/SharpRadarGrid.d.ts +6 -0
  749. package/esm/RadarChart/RadarGrid/SharpRadarGrid.js +36 -0
  750. package/esm/RadarChart/RadarGrid/index.d.ts +2 -0
  751. package/esm/RadarChart/RadarGrid/index.js +2 -0
  752. package/esm/RadarChart/RadarGrid/useRadarGridData.d.ts +11 -0
  753. package/esm/RadarChart/RadarGrid/useRadarGridData.js +35 -0
  754. package/esm/RadarChart/RadarMetricLabels/RadarMetricLabels.d.ts +3 -0
  755. package/esm/RadarChart/RadarMetricLabels/RadarMetricLabels.js +35 -0
  756. package/esm/RadarChart/RadarMetricLabels/index.d.ts +1 -0
  757. package/esm/RadarChart/RadarMetricLabels/index.js +1 -0
  758. package/esm/RadarChart/RadarMetricLabels/useRadarMetricData.d.ts +8 -0
  759. package/esm/RadarChart/RadarMetricLabels/useRadarMetricData.js +35 -0
  760. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +7 -0
  761. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +39 -0
  762. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +7 -0
  763. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +38 -0
  764. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.d.ts +7 -0
  765. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +68 -0
  766. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.ts +18 -0
  767. package/esm/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.js +1 -0
  768. package/esm/RadarChart/RadarSeriesPlot/getAreaPath.d.ts +4 -0
  769. package/esm/RadarChart/RadarSeriesPlot/getAreaPath.js +3 -0
  770. package/esm/RadarChart/RadarSeriesPlot/index.d.ts +6 -0
  771. package/esm/RadarChart/RadarSeriesPlot/index.js +4 -0
  772. package/esm/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts +12 -0
  773. package/esm/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.js +15 -0
  774. package/esm/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +27 -0
  775. package/esm/RadarChart/RadarSeriesPlot/useRadarSeriesData.js +62 -0
  776. package/esm/RadarChart/index.d.ts +8 -0
  777. package/esm/RadarChart/index.js +6 -0
  778. package/esm/RadarChart/seriesConfig/extremums.d.ts +3 -0
  779. package/esm/RadarChart/seriesConfig/extremums.js +18 -0
  780. package/esm/RadarChart/seriesConfig/formatter.d.ts +3 -0
  781. package/esm/RadarChart/seriesConfig/formatter.js +12 -0
  782. package/esm/RadarChart/seriesConfig/getColor.d.ts +3 -0
  783. package/esm/RadarChart/seriesConfig/getColor.js +4 -0
  784. package/esm/RadarChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  785. package/esm/RadarChart/seriesConfig/getSeriesWithDefaultValues.js +8 -0
  786. package/esm/RadarChart/seriesConfig/index.d.ts +2 -0
  787. package/esm/RadarChart/seriesConfig/index.js +15 -0
  788. package/esm/RadarChart/seriesConfig/legend.d.ts +3 -0
  789. package/esm/RadarChart/seriesConfig/legend.js +22 -0
  790. package/esm/RadarChart/seriesConfig/tooltip.d.ts +3 -0
  791. package/esm/RadarChart/seriesConfig/tooltip.js +25 -0
  792. package/esm/RadarChart/useRadarChartProps.d.ts +26 -0
  793. package/esm/RadarChart/useRadarChartProps.js +77 -0
  794. package/esm/ScatterChart/Scatter.d.ts +36 -0
  795. package/esm/ScatterChart/Scatter.js +134 -0
  796. package/esm/ScatterChart/ScatterChart.d.ts +70 -0
  797. package/esm/ScatterChart/ScatterChart.js +337 -0
  798. package/esm/ScatterChart/ScatterChart.plugins.d.ts +8 -0
  799. package/esm/ScatterChart/ScatterChart.plugins.js +6 -0
  800. package/esm/ScatterChart/ScatterMarker.d.ts +46 -0
  801. package/esm/ScatterChart/ScatterMarker.js +70 -0
  802. package/esm/ScatterChart/ScatterMarker.types.d.ts +24 -0
  803. package/esm/ScatterChart/ScatterMarker.types.js +1 -0
  804. package/esm/ScatterChart/ScatterPlot.d.ts +35 -0
  805. package/esm/ScatterChart/ScatterPlot.js +99 -0
  806. package/esm/ScatterChart/index.d.ts +5 -0
  807. package/esm/ScatterChart/index.js +5 -0
  808. package/esm/ScatterChart/seriesConfig/extremums.d.ts +3 -0
  809. package/esm/ScatterChart/seriesConfig/getColor.d.ts +3 -0
  810. package/esm/ScatterChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  811. package/esm/ScatterChart/seriesConfig/getSeriesWithDefaultValues.js +8 -0
  812. package/esm/ScatterChart/seriesConfig/index.d.ts +2 -0
  813. package/esm/ScatterChart/seriesConfig/index.js +15 -0
  814. package/esm/ScatterChart/seriesConfig/legend.d.ts +3 -0
  815. package/esm/ScatterChart/seriesConfig/legend.js +22 -0
  816. package/esm/ScatterChart/seriesConfig/seriesProcessor.d.ts +3 -0
  817. package/esm/ScatterChart/seriesConfig/seriesProcessor.js +33 -0
  818. package/esm/ScatterChart/seriesConfig/tooltip.d.ts +3 -0
  819. package/esm/ScatterChart/seriesConfig/tooltip.js +25 -0
  820. package/esm/ScatterChart/useScatterChartProps.d.ts +28 -0
  821. package/esm/ScatterChart/useScatterChartProps.js +100 -0
  822. package/esm/SparkLineChart/SparkLineChart.d.ts +101 -0
  823. package/esm/SparkLineChart/SparkLineChart.js +374 -0
  824. package/esm/SparkLineChart/index.d.ts +1 -0
  825. package/esm/SparkLineChart/index.js +1 -0
  826. package/esm/colorPalettes/colorPalettes.d.ts +16 -0
  827. package/esm/colorPalettes/colorPalettes.js +12 -0
  828. package/esm/colorPalettes/index.d.ts +1 -0
  829. package/esm/colorPalettes/index.js +1 -0
  830. package/esm/constants/index.d.ts +13 -0
  831. package/esm/constants/index.js +15 -0
  832. package/esm/context/AnimationProvider/Animation.types.d.ts +15 -0
  833. package/esm/context/AnimationProvider/Animation.types.js +1 -0
  834. package/esm/context/AnimationProvider/AnimationContext.d.ts +4 -0
  835. package/esm/context/AnimationProvider/AnimationContext.js +10 -0
  836. package/esm/context/AnimationProvider/AnimationProvider.d.ts +4 -0
  837. package/esm/context/AnimationProvider/AnimationProvider.js +55 -0
  838. package/esm/context/AnimationProvider/index.d.ts +4 -0
  839. package/esm/context/AnimationProvider/index.js +4 -0
  840. package/esm/context/AnimationProvider/useSkipAnimation.d.ts +6 -0
  841. package/esm/context/AnimationProvider/useSkipAnimation.js +20 -0
  842. package/esm/context/ChartProvider/ChartContext.d.ts +6 -0
  843. package/esm/context/ChartProvider/ChartContext.js +8 -0
  844. package/esm/context/ChartProvider/ChartProvider.d.ts +8 -0
  845. package/esm/context/ChartProvider/ChartProvider.js +40 -0
  846. package/esm/context/ChartProvider/ChartProvider.types.d.ts +39 -0
  847. package/esm/context/ChartProvider/ChartProvider.types.js +1 -0
  848. package/esm/context/ChartProvider/index.d.ts +3 -0
  849. package/esm/context/ChartProvider/index.js +3 -0
  850. package/esm/context/ChartProvider/useChartContext.d.ts +3 -0
  851. package/esm/context/ChartProvider/useChartContext.js +11 -0
  852. package/esm/context/context.types.d.ts +4 -0
  853. package/esm/context/context.types.js +1 -0
  854. package/esm/context/index.d.ts +1 -0
  855. package/esm/context/index.js +1 -0
  856. package/esm/hooks/getValueToPositionMapper.d.ts +8 -0
  857. package/esm/hooks/getValueToPositionMapper.js +15 -0
  858. package/esm/hooks/index.d.ts +16 -0
  859. package/esm/hooks/index.js +16 -0
  860. package/esm/hooks/useAxis.d.ts +51 -0
  861. package/esm/hooks/useAxis.js +119 -0
  862. package/esm/hooks/useBarSeries.d.ts +36 -0
  863. package/esm/hooks/useBarSeries.js +43 -0
  864. package/esm/hooks/useChartGradientId.d.ts +31 -0
  865. package/esm/hooks/useChartGradientId.js +47 -0
  866. package/esm/hooks/useChartId.d.ts +5 -0
  867. package/esm/hooks/useChartId.js +14 -0
  868. package/esm/hooks/useColorScale.d.ts +22 -0
  869. package/esm/hooks/useColorScale.js +37 -0
  870. package/esm/hooks/useDrawingArea.d.ts +16 -0
  871. package/esm/hooks/useDrawingArea.js +16 -0
  872. package/esm/hooks/useInteractionItemProps.d.ts +16 -0
  873. package/esm/hooks/useInteractionItemProps.js +76 -0
  874. package/esm/hooks/useIsHydrated.d.ts +4 -0
  875. package/esm/hooks/useIsHydrated.js +14 -0
  876. package/esm/hooks/useItemHighlighted.d.ts +23 -0
  877. package/esm/hooks/useItemHighlighted.js +23 -0
  878. package/esm/hooks/useItemHighlightedGetter.d.ts +12 -0
  879. package/esm/hooks/useItemHighlightedGetter.js +23 -0
  880. package/esm/hooks/useLegend.d.ts +13 -0
  881. package/esm/hooks/useLegend.js +30 -0
  882. package/esm/hooks/useLineSeries.d.ts +36 -0
  883. package/esm/hooks/useLineSeries.js +43 -0
  884. package/esm/hooks/useMounted.d.ts +1 -0
  885. package/esm/hooks/useMounted.js +18 -0
  886. package/esm/hooks/usePieSeries.d.ts +35 -0
  887. package/esm/hooks/usePieSeries.js +42 -0
  888. package/esm/hooks/useRadarSeries.d.ts +35 -0
  889. package/esm/hooks/useRadarSeries.js +42 -0
  890. package/esm/hooks/useScale.d.ts +24 -0
  891. package/esm/hooks/useScale.js +47 -0
  892. package/esm/hooks/useScatterSeries.d.ts +35 -0
  893. package/esm/hooks/useScatterSeries.js +42 -0
  894. package/esm/hooks/useSeries.d.ts +7 -0
  895. package/esm/hooks/useSeries.js +15 -0
  896. package/esm/hooks/useSvgRef.d.ts +6 -0
  897. package/esm/hooks/useSvgRef.js +15 -0
  898. package/esm/hooks/useTicks.d.ts +59 -0
  899. package/esm/hooks/useTicks.js +91 -0
  900. package/esm/hooks/useZAxis.d.ts +7 -0
  901. package/esm/hooks/useZAxis.js +27 -0
  902. package/esm/index.d.ts +26 -0
  903. package/esm/index.js +33 -0
  904. package/esm/internals/angleConversion.d.ts +2 -0
  905. package/esm/internals/angleConversion.js +12 -0
  906. package/esm/internals/clampAngle.d.ts +6 -0
  907. package/esm/internals/clampAngle.js +11 -0
  908. package/esm/internals/cleanId.d.ts +4 -0
  909. package/esm/internals/cleanId.js +6 -0
  910. package/esm/internals/colorScale.d.ts +5 -0
  911. package/esm/internals/colorScale.js +16 -0
  912. package/esm/internals/components/AxisSharedComponents.d.ts +1 -0
  913. package/esm/internals/components/AxisSharedComponents.js +26 -0
  914. package/esm/internals/components/ChartsAxesGradients/ChartsAxesGradients.d.ts +2 -0
  915. package/esm/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +133 -0
  916. package/esm/internals/components/ChartsAxesGradients/ChartsContinuousGradient.d.ts +19 -0
  917. package/esm/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +56 -0
  918. package/esm/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.d.ts +13 -0
  919. package/esm/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.js +61 -0
  920. package/esm/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.d.ts +12 -0
  921. package/esm/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +46 -0
  922. package/esm/internals/components/ChartsAxesGradients/index.d.ts +1 -0
  923. package/esm/internals/components/ChartsAxesGradients/index.js +1 -0
  924. package/esm/internals/components/ChartsWrapper/ChartsWrapper.d.ts +18 -0
  925. package/esm/internals/components/ChartsWrapper/ChartsWrapper.js +66 -0
  926. package/esm/internals/components/ChartsWrapper/index.d.ts +1 -0
  927. package/esm/internals/components/ChartsWrapper/index.js +1 -0
  928. package/esm/internals/configInit.d.ts +16 -0
  929. package/esm/internals/configInit.js +38 -0
  930. package/esm/internals/consumeSlots.d.ts +48 -0
  931. package/esm/internals/consumeSlots.js +97 -0
  932. package/esm/internals/consumeThemeProps.d.ts +50 -0
  933. package/esm/internals/consumeThemeProps.js +70 -0
  934. package/esm/internals/createSeriesSelectorOfType.d.ts +4 -0
  935. package/esm/internals/createSeriesSelectorOfType.js +43 -0
  936. package/esm/internals/defaultizeMargin.d.ts +3 -0
  937. package/esm/internals/defaultizeMargin.js +15 -0
  938. package/esm/internals/defaultizeValueFormatter.d.ts +6 -0
  939. package/esm/internals/defaultizeValueFormatter.js +10 -0
  940. package/esm/internals/degToRad.d.ts +2 -0
  941. package/esm/internals/degToRad.js +4 -0
  942. package/esm/internals/domUtils.d.ts +18 -0
  943. package/esm/internals/domUtils.js +129 -0
  944. package/esm/internals/ellipsize.d.ts +20 -0
  945. package/esm/internals/ellipsize.js +53 -0
  946. package/esm/internals/geometry.d.ts +9 -0
  947. package/esm/internals/geometry.js +35 -0
  948. package/esm/internals/getCurve.d.ts +2 -0
  949. package/esm/internals/getCurve.js +27 -0
  950. package/esm/internals/getGraphemeCount.d.ts +4 -0
  951. package/esm/internals/getGraphemeCount.js +19 -0
  952. package/esm/internals/getLabel.d.ts +1 -0
  953. package/esm/internals/getLabel.js +3 -0
  954. package/esm/internals/getPercentageValue.d.ts +7 -0
  955. package/esm/internals/getPercentageValue.js +28 -0
  956. package/esm/internals/getSVGPoint.d.ts +6 -0
  957. package/esm/internals/getSVGPoint.js +11 -0
  958. package/esm/internals/getScale.d.ts +2 -0
  959. package/esm/internals/getScale.js +17 -0
  960. package/esm/internals/getSymbol.d.ts +2 -0
  961. package/esm/internals/getSymbol.js +21 -0
  962. package/esm/internals/getWordsByLines.d.ts +33 -0
  963. package/esm/internals/getWordsByLines.js +14 -0
  964. package/esm/internals/index.d.ts +49 -0
  965. package/esm/internals/index.js +63 -0
  966. package/esm/internals/invertTextAnchor.d.ts +2 -0
  967. package/esm/internals/invertTextAnchor.js +10 -0
  968. package/esm/internals/isBandScale.d.ts +5 -0
  969. package/esm/internals/isBandScale.js +3 -0
  970. package/esm/internals/isCartesian.d.ts +7 -0
  971. package/esm/internals/isCartesian.js +7 -0
  972. package/esm/internals/isDefined.d.ts +1 -0
  973. package/esm/internals/isDefined.js +3 -0
  974. package/esm/internals/isInfinity.d.ts +1 -0
  975. package/esm/internals/isInfinity.js +3 -0
  976. package/esm/internals/isPolar.d.ts +7 -0
  977. package/esm/internals/isPolar.js +7 -0
  978. package/esm/internals/notNull.d.ts +1 -0
  979. package/esm/internals/notNull.js +3 -0
  980. package/esm/internals/plugins/allPlugins.d.ts +14 -0
  981. package/esm/internals/plugins/allPlugins.js +10 -0
  982. package/esm/internals/plugins/corePlugins/corePlugins.d.ts +9 -0
  983. package/esm/internals/plugins/corePlugins/corePlugins.js +9 -0
  984. package/esm/internals/plugins/corePlugins/index.d.ts +2 -0
  985. package/esm/internals/plugins/corePlugins/index.js +1 -0
  986. package/esm/internals/plugins/corePlugins/useChartDimensions/index.d.ts +3 -0
  987. package/esm/internals/plugins/corePlugins/useChartDimensions/index.js +2 -0
  988. package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.d.ts +3 -0
  989. package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +196 -0
  990. package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +708 -0
  991. package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +26 -0
  992. package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.d.ts +90 -0
  993. package/esm/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.js +1 -0
  994. package/esm/internals/plugins/corePlugins/useChartId/index.d.ts +3 -0
  995. package/esm/internals/plugins/corePlugins/useChartId/index.js +2 -0
  996. package/esm/internals/plugins/corePlugins/useChartId/useChartId.d.ts +3 -0
  997. package/esm/internals/plugins/corePlugins/useChartId/useChartId.js +32 -0
  998. package/esm/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +36 -0
  999. package/esm/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +9 -0
  1000. package/esm/internals/plugins/corePlugins/useChartId/useChartId.types.d.ts +20 -0
  1001. package/esm/internals/plugins/corePlugins/useChartId/useChartId.types.js +1 -0
  1002. package/esm/internals/plugins/corePlugins/useChartId/useChartId.utils.d.ts +1 -0
  1003. package/esm/internals/plugins/corePlugins/useChartId/useChartId.utils.js +5 -0
  1004. package/esm/internals/plugins/corePlugins/useChartSeries/index.d.ts +3 -0
  1005. package/esm/internals/plugins/corePlugins/useChartSeries/index.js +2 -0
  1006. package/esm/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +23 -0
  1007. package/esm/internals/plugins/corePlugins/useChartSeries/processSeries.js +44 -0
  1008. package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.ts +3 -0
  1009. package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +71 -0
  1010. package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +61 -0
  1011. package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +4 -0
  1012. package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +51 -0
  1013. package/esm/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.js +1 -0
  1014. package/esm/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +8 -0
  1015. package/esm/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +21 -0
  1016. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +29 -0
  1017. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +135 -0
  1018. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +22 -0
  1019. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +63 -0
  1020. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.d.ts +4 -0
  1021. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.js +13 -0
  1022. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.d.ts +6 -0
  1023. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +92 -0
  1024. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +4 -0
  1025. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +25 -0
  1026. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.d.ts +6 -0
  1027. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js +22 -0
  1028. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +9 -0
  1029. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +59 -0
  1030. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +7 -0
  1031. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +6 -0
  1032. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +216 -0
  1033. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.js +6 -0
  1034. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.d.ts +3 -0
  1035. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +203 -0
  1036. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +75 -0
  1037. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.js +1 -0
  1038. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +70 -0
  1039. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.js +4 -0
  1040. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +3106 -0
  1041. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +89 -0
  1042. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.d.ts +10 -0
  1043. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.js +19 -0
  1044. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.d.ts +10 -0
  1045. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.js +19 -0
  1046. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +68 -0
  1047. package/esm/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.js +1 -0
  1048. package/esm/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.ts +3 -0
  1049. package/esm/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js +12 -0
  1050. package/esm/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.ts +3 -0
  1051. package/esm/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.js +12 -0
  1052. package/esm/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.d.ts +20 -0
  1053. package/esm/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.js +1 -0
  1054. package/esm/internals/plugins/featurePlugins/useChartHighlight/index.d.ts +4 -0
  1055. package/esm/internals/plugins/featurePlugins/useChartHighlight/index.js +2 -0
  1056. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.ts +3 -0
  1057. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +44 -0
  1058. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +634 -0
  1059. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +31 -0
  1060. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +71 -0
  1061. package/esm/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.js +1 -0
  1062. package/esm/internals/plugins/featurePlugins/useChartInteraction/index.d.ts +3 -0
  1063. package/esm/internals/plugins/featurePlugins/useChartInteraction/index.js +2 -0
  1064. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.ts +3 -0
  1065. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +80 -0
  1066. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +448 -0
  1067. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +14 -0
  1068. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +49 -0
  1069. package/esm/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js +1 -0
  1070. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +27 -0
  1071. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +128 -0
  1072. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.d.ts +5 -0
  1073. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.js +24 -0
  1074. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.ts +5 -0
  1075. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.js +21 -0
  1076. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +9 -0
  1077. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.js +33 -0
  1078. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/index.d.ts +3 -0
  1079. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/index.js +2 -0
  1080. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.d.ts +3 -0
  1081. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +180 -0
  1082. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +2056 -0
  1083. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.js +30 -0
  1084. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +85 -0
  1085. package/esm/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.js +1 -0
  1086. package/esm/internals/plugins/featurePlugins/useChartVoronoi/index.d.ts +3 -0
  1087. package/esm/internals/plugins/featurePlugins/useChartVoronoi/index.js +2 -0
  1088. package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.d.ts +3 -0
  1089. package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.js +231 -0
  1090. package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +29 -0
  1091. package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.js +3 -0
  1092. package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.d.ts +54 -0
  1093. package/esm/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.js +1 -0
  1094. package/esm/internals/plugins/featurePlugins/useChartZAxis/index.d.ts +3 -0
  1095. package/esm/internals/plugins/featurePlugins/useChartZAxis/index.js +2 -0
  1096. package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.d.ts +3 -0
  1097. package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +86 -0
  1098. package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +45 -0
  1099. package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.js +3 -0
  1100. package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +38 -0
  1101. package/esm/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.js +1 -0
  1102. package/esm/internals/plugins/models/chart.d.ts +14 -0
  1103. package/esm/internals/plugins/models/chart.js +1 -0
  1104. package/esm/internals/plugins/models/helpers.d.ts +7 -0
  1105. package/esm/internals/plugins/models/helpers.js +1 -0
  1106. package/esm/internals/plugins/models/index.d.ts +4 -0
  1107. package/esm/internals/plugins/models/index.js +4 -0
  1108. package/esm/internals/plugins/models/plugin.d.ts +171 -0
  1109. package/esm/internals/plugins/models/plugin.js +1 -0
  1110. package/esm/internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.d.ts +22 -0
  1111. package/esm/internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.js +1 -0
  1112. package/esm/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +5 -0
  1113. package/esm/internals/plugins/models/seriesConfig/colorProcessor.types.js +1 -0
  1114. package/esm/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.d.ts +3 -0
  1115. package/esm/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.js +1 -0
  1116. package/esm/internals/plugins/models/seriesConfig/index.d.ts +8 -0
  1117. package/esm/internals/plugins/models/seriesConfig/index.js +8 -0
  1118. package/esm/internals/plugins/models/seriesConfig/legendGetter.types.d.ts +4 -0
  1119. package/esm/internals/plugins/models/seriesConfig/legendGetter.types.js +1 -0
  1120. package/esm/internals/plugins/models/seriesConfig/polarExtremumGetter.types.d.ts +16 -0
  1121. package/esm/internals/plugins/models/seriesConfig/polarExtremumGetter.types.js +1 -0
  1122. package/esm/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +22 -0
  1123. package/esm/internals/plugins/models/seriesConfig/seriesConfig.types.js +1 -0
  1124. package/esm/internals/plugins/models/seriesConfig/seriesProcessor.types.d.ts +16 -0
  1125. package/esm/internals/plugins/models/seriesConfig/seriesProcessor.types.js +1 -0
  1126. package/esm/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +7 -0
  1127. package/esm/internals/plugins/models/seriesConfig/tooltipGetter.types.js +1 -0
  1128. package/esm/internals/plugins/utils/ChartStore.d.ts +13 -0
  1129. package/esm/internals/plugins/utils/ChartStore.js +24 -0
  1130. package/esm/internals/plugins/utils/selectors.d.ts +10 -0
  1131. package/esm/internals/plugins/utils/selectors.js +37 -0
  1132. package/esm/internals/sliceUntil.d.ts +4 -0
  1133. package/esm/internals/sliceUntil.js +22 -0
  1134. package/esm/internals/stackSeries.d.ts +25 -0
  1135. package/esm/internals/stackSeries.js +94 -0
  1136. package/esm/internals/store/extractPluginParamsFromProps.d.ts +13 -0
  1137. package/esm/internals/store/extractPluginParamsFromProps.js +28 -0
  1138. package/esm/internals/store/useChartModels.d.ts +7 -0
  1139. package/esm/internals/store/useChartModels.js +64 -0
  1140. package/esm/internals/store/useCharts.d.ts +25 -0
  1141. package/esm/internals/store/useCharts.js +85 -0
  1142. package/esm/internals/store/useCharts.types.d.ts +5 -0
  1143. package/esm/internals/store/useCharts.types.js +1 -0
  1144. package/esm/internals/store/useSelector.d.ts +4 -0
  1145. package/esm/internals/store/useSelector.js +9 -0
  1146. package/esm/internals/store/useStore.d.ts +5 -0
  1147. package/esm/internals/store/useStore.js +9 -0
  1148. package/esm/internals/ts-generic.d.ts +3 -0
  1149. package/esm/internals/ts-generic.js +1 -0
  1150. package/esm/internals/useStringInterpolator.d.ts +1 -0
  1151. package/esm/internals/useStringInterpolator.js +21 -0
  1152. package/esm/models/axis.d.ts +388 -0
  1153. package/esm/models/axis.js +19 -0
  1154. package/esm/models/colorMapping.d.ts +46 -0
  1155. package/esm/models/colorMapping.js +1 -0
  1156. package/esm/models/curve.d.ts +6 -0
  1157. package/esm/models/curve.js +1 -0
  1158. package/esm/models/index.d.ts +6 -0
  1159. package/esm/models/index.js +5 -0
  1160. package/esm/models/position.d.ts +10 -0
  1161. package/esm/models/position.js +1 -0
  1162. package/esm/models/seriesType/bar.d.ts +38 -0
  1163. package/esm/models/seriesType/bar.js +1 -0
  1164. package/esm/models/seriesType/common.d.ts +60 -0
  1165. package/esm/models/seriesType/common.js +1 -0
  1166. package/esm/models/seriesType/config.d.ts +91 -0
  1167. package/esm/models/seriesType/config.js +1 -0
  1168. package/esm/models/seriesType/index.d.ts +16 -0
  1169. package/esm/models/seriesType/index.js +17 -0
  1170. package/esm/models/seriesType/line.d.ts +104 -0
  1171. package/esm/models/seriesType/line.js +1 -0
  1172. package/esm/models/seriesType/pie.d.ts +166 -0
  1173. package/esm/models/seriesType/pie.js +1 -0
  1174. package/esm/models/seriesType/radar.d.ts +24 -0
  1175. package/esm/models/seriesType/radar.js +1 -0
  1176. package/esm/models/seriesType/scatter.d.ts +63 -0
  1177. package/esm/models/seriesType/scatter.js +1 -0
  1178. package/esm/models/stacking.d.ts +2 -0
  1179. package/esm/models/stacking.js +1 -0
  1180. package/esm/models/z-axis.d.ts +22 -0
  1181. package/esm/models/z-axis.js +1 -0
  1182. package/esm/package.json +1 -0
  1183. package/esm/themeAugmentation/components.d.ts +62 -0
  1184. package/esm/themeAugmentation/index.d.ts +3 -0
  1185. package/esm/themeAugmentation/overrides.d.ts +34 -0
  1186. package/esm/themeAugmentation/props.d.ts +34 -0
  1187. package/hooks/getValueToPositionMapper.d.ts +8 -0
  1188. package/hooks/getValueToPositionMapper.js +20 -0
  1189. package/hooks/index.d.ts +16 -10
  1190. package/hooks/index.js +202 -10
  1191. package/hooks/useAxis.d.ts +47 -6
  1192. package/hooks/useAxis.js +103 -17
  1193. package/hooks/useAxisEvents.d.ts +0 -1
  1194. package/hooks/useAxisEvents.js +1 -165
  1195. package/hooks/useBarSeries.d.ts +36 -0
  1196. package/hooks/useBarSeries.js +49 -0
  1197. package/hooks/useChartGradientId.d.ts +2 -2
  1198. package/hooks/useChartGradientId.js +17 -8
  1199. package/hooks/useChartId.d.ts +5 -1
  1200. package/hooks/useChartId.js +15 -6
  1201. package/hooks/useColorScale.d.ts +22 -4
  1202. package/hooks/useColorScale.js +38 -23
  1203. package/hooks/useDrawingArea.d.ts +14 -14
  1204. package/hooks/useDrawingArea.js +18 -6
  1205. package/hooks/useInteractionItemProps.d.ts +15 -6
  1206. package/hooks/useInteractionItemProps.js +76 -49
  1207. package/hooks/useIsHydrated.d.ts +4 -0
  1208. package/hooks/useIsHydrated.js +19 -0
  1209. package/hooks/useItemHighlighted.d.ts +23 -0
  1210. package/hooks/useItemHighlighted.js +28 -0
  1211. package/hooks/useItemHighlightedGetter.d.ts +12 -0
  1212. package/hooks/useItemHighlightedGetter.js +27 -0
  1213. package/hooks/useLegend.d.ts +2 -2
  1214. package/hooks/useLegend.js +16 -16
  1215. package/hooks/useLineSeries.d.ts +36 -0
  1216. package/hooks/useLineSeries.js +49 -0
  1217. package/hooks/useMounted.d.ts +1 -1
  1218. package/hooks/useMounted.js +11 -4
  1219. package/hooks/usePieSeries.d.ts +35 -0
  1220. package/hooks/usePieSeries.js +48 -0
  1221. package/hooks/useRadarSeries.d.ts +35 -0
  1222. package/hooks/useRadarSeries.js +48 -0
  1223. package/hooks/useScale.d.ts +19 -5
  1224. package/hooks/useScale.js +41 -11
  1225. package/hooks/useScatterSeries.d.ts +35 -0
  1226. package/hooks/useScatterSeries.js +48 -0
  1227. package/hooks/useSeries.d.ts +1 -39
  1228. package/hooks/useSeries.js +11 -55
  1229. package/hooks/useSvgRef.d.ts +5 -1
  1230. package/hooks/useSvgRef.js +13 -4
  1231. package/hooks/useTicks.d.ts +52 -52
  1232. package/hooks/useTicks.js +35 -19
  1233. package/hooks/useZAxis.d.ts +5 -5
  1234. package/hooks/useZAxis.js +13 -7
  1235. package/index.d.ts +26 -26
  1236. package/index.js +292 -27
  1237. package/internals/angleConversion.d.ts +2 -0
  1238. package/internals/angleConversion.js +20 -0
  1239. package/internals/clampAngle.d.ts +6 -0
  1240. package/internals/clampAngle.js +18 -0
  1241. package/internals/cleanId.d.ts +1 -1
  1242. package/internals/cleanId.js +7 -1
  1243. package/internals/colorScale.d.ts +2 -2
  1244. package/internals/colorScale.js +16 -8
  1245. package/internals/components/AxisSharedComponents.d.ts +1 -1
  1246. package/internals/components/AxisSharedComponents.js +16 -9
  1247. package/internals/components/ChartsAxesGradients/ChartsAxesGradients.d.ts +1 -1
  1248. package/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +33 -25
  1249. package/internals/components/ChartsAxesGradients/ChartsContinuousGradient.d.ts +15 -15
  1250. package/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +14 -7
  1251. package/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.d.ts +6 -6
  1252. package/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.js +16 -8
  1253. package/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.d.ts +8 -8
  1254. package/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +14 -7
  1255. package/internals/components/ChartsAxesGradients/index.d.ts +1 -1
  1256. package/internals/components/ChartsAxesGradients/index.js +16 -1
  1257. package/internals/components/ChartsWrapper/ChartsWrapper.d.ts +7 -6
  1258. package/internals/components/ChartsWrapper/ChartsWrapper.js +16 -10
  1259. package/internals/components/ChartsWrapper/index.d.ts +1 -1
  1260. package/internals/components/ChartsWrapper/index.js +16 -1
  1261. package/internals/configInit.d.ts +13 -6
  1262. package/internals/configInit.js +29 -5
  1263. package/internals/consumeSlots.d.ts +5 -5
  1264. package/internals/consumeSlots.js +28 -24
  1265. package/internals/consumeThemeProps.d.ts +3 -3
  1266. package/internals/consumeThemeProps.js +19 -11
  1267. package/internals/createSeriesSelectorOfType.d.ts +4 -0
  1268. package/internals/createSeriesSelectorOfType.js +50 -0
  1269. package/internals/defaultizeMargin.d.ts +3 -0
  1270. package/internals/defaultizeMargin.js +22 -0
  1271. package/internals/defaultizeValueFormatter.d.ts +4 -4
  1272. package/internals/defaultizeValueFormatter.js +10 -3
  1273. package/internals/degToRad.d.ts +2 -0
  1274. package/internals/degToRad.js +10 -0
  1275. package/internals/domUtils.d.ts +5 -2
  1276. package/internals/domUtils.js +17 -6
  1277. package/internals/ellipsize.d.ts +20 -0
  1278. package/internals/ellipsize.js +60 -0
  1279. package/internals/geometry.d.ts +1 -1
  1280. package/internals/geometry.js +11 -4
  1281. package/internals/getCurve.d.ts +2 -2
  1282. package/internals/getCurve.js +21 -27
  1283. package/internals/getGraphemeCount.d.ts +4 -0
  1284. package/internals/getGraphemeCount.js +25 -0
  1285. package/internals/getLabel.d.ts +1 -1
  1286. package/internals/getLabel.js +7 -1
  1287. package/internals/getPercentageValue.d.ts +1 -1
  1288. package/internals/getPercentageValue.js +7 -1
  1289. package/internals/getSVGPoint.d.ts +1 -1
  1290. package/internals/getSVGPoint.js +7 -1
  1291. package/internals/getScale.d.ts +2 -2
  1292. package/internals/getScale.js +14 -8
  1293. package/internals/getSymbol.d.ts +1 -1
  1294. package/internals/getSymbol.js +7 -1
  1295. package/internals/getWordsByLines.d.ts +29 -21
  1296. package/internals/getWordsByLines.js +12 -5
  1297. package/internals/index.d.ts +48 -37
  1298. package/internals/index.js +550 -48
  1299. package/internals/invertTextAnchor.d.ts +2 -0
  1300. package/internals/invertTextAnchor.js +16 -0
  1301. package/internals/isBandScale.d.ts +3 -3
  1302. package/internals/isBandScale.js +7 -1
  1303. package/internals/isCartesian.d.ts +4 -4
  1304. package/internals/isCartesian.js +11 -4
  1305. package/internals/isDefined.d.ts +1 -1
  1306. package/internals/isDefined.js +7 -1
  1307. package/internals/isInfinity.d.ts +1 -1
  1308. package/internals/isInfinity.js +7 -1
  1309. package/internals/isPolar.d.ts +7 -0
  1310. package/internals/isPolar.js +14 -0
  1311. package/internals/notNull.d.ts +1 -1
  1312. package/internals/notNull.js +7 -1
  1313. package/internals/plugins/allPlugins.d.ts +13 -11
  1314. package/internals/plugins/allPlugins.js +14 -4
  1315. package/internals/plugins/corePlugins/corePlugins.d.ts +3 -4
  1316. package/internals/plugins/corePlugins/corePlugins.js +9 -4
  1317. package/internals/plugins/corePlugins/index.d.ts +2 -2
  1318. package/internals/plugins/corePlugins/index.js +12 -1
  1319. package/internals/plugins/corePlugins/useChartDimensions/index.d.ts +3 -3
  1320. package/internals/plugins/corePlugins/useChartDimensions/index.js +27 -2
  1321. package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.d.ts +3 -3
  1322. package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +71 -42
  1323. package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +613 -169
  1324. package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +29 -21
  1325. package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.d.ts +75 -84
  1326. package/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.js +5 -1
  1327. package/internals/plugins/corePlugins/useChartId/index.d.ts +3 -3
  1328. package/internals/plugins/corePlugins/useChartId/index.js +27 -2
  1329. package/internals/plugins/corePlugins/useChartId/useChartId.d.ts +3 -3
  1330. package/internals/plugins/corePlugins/useChartId/useChartId.js +16 -7
  1331. package/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +25 -25
  1332. package/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +8 -2
  1333. package/internals/plugins/corePlugins/useChartId/useChartId.types.d.ts +14 -14
  1334. package/internals/plugins/corePlugins/useChartId/useChartId.types.js +5 -1
  1335. package/internals/plugins/corePlugins/useChartId/useChartId.utils.d.ts +1 -1
  1336. package/internals/plugins/corePlugins/useChartId/useChartId.utils.js +9 -2
  1337. package/internals/plugins/corePlugins/useChartSeries/index.d.ts +3 -3
  1338. package/internals/plugins/corePlugins/useChartSeries/index.js +27 -2
  1339. package/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +15 -10
  1340. package/internals/plugins/corePlugins/useChartSeries/processSeries.js +16 -15
  1341. package/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.ts +3 -3
  1342. package/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +20 -13
  1343. package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +47 -47
  1344. package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +11 -4
  1345. package/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +44 -44
  1346. package/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.js +5 -1
  1347. package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +6 -8
  1348. package/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +13 -7
  1349. package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +21 -21
  1350. package/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +43 -28
  1351. package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +22 -18
  1352. package/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +51 -41
  1353. package/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.d.ts +4 -0
  1354. package/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.js +20 -0
  1355. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.d.ts +5 -38
  1356. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +90 -14
  1357. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +4 -0
  1358. package/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +33 -0
  1359. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.d.ts +6 -6
  1360. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js +11 -4
  1361. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +9 -0
  1362. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +65 -0
  1363. package/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +6 -4
  1364. package/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +78 -4
  1365. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +216 -0
  1366. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.js +12 -0
  1367. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.d.ts +3 -4
  1368. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +166 -23
  1369. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +63 -64
  1370. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.js +5 -1
  1371. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +70 -0
  1372. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.js +11 -0
  1373. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +3106 -0
  1374. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +97 -0
  1375. package/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.d.ts +10 -0
  1376. package/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.js +24 -0
  1377. package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.d.ts +1 -1
  1378. package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.js +9 -2
  1379. package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +60 -10
  1380. package/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.js +5 -1
  1381. package/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.ts +3 -0
  1382. package/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js +19 -0
  1383. package/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.ts +3 -0
  1384. package/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.js +19 -0
  1385. package/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.d.ts +20 -0
  1386. package/internals/plugins/featurePlugins/useChartHighlight/index.d.ts +4 -0
  1387. package/internals/plugins/featurePlugins/useChartHighlight/index.js +27 -0
  1388. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.ts +3 -0
  1389. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +52 -0
  1390. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +634 -0
  1391. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +37 -0
  1392. package/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +71 -0
  1393. package/internals/plugins/featurePlugins/useChartInteraction/index.d.ts +3 -3
  1394. package/internals/plugins/featurePlugins/useChartInteraction/index.js +27 -2
  1395. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.ts +3 -3
  1396. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +55 -40
  1397. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +360 -288
  1398. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +19 -9
  1399. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +42 -50
  1400. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js +5 -1
  1401. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +27 -0
  1402. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +135 -0
  1403. package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.d.ts +5 -0
  1404. package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.js +31 -0
  1405. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.ts +5 -0
  1406. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.js +28 -0
  1407. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +9 -0
  1408. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.js +38 -0
  1409. package/internals/plugins/featurePlugins/useChartPolarAxis/index.d.ts +3 -0
  1410. package/internals/plugins/featurePlugins/useChartPolarAxis/index.js +27 -0
  1411. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.d.ts +3 -0
  1412. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +188 -0
  1413. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +2056 -0
  1414. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.js +37 -0
  1415. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +85 -0
  1416. package/internals/plugins/featurePlugins/useChartVoronoi/index.d.ts +3 -0
  1417. package/internals/plugins/featurePlugins/useChartVoronoi/index.js +27 -0
  1418. package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.d.ts +3 -0
  1419. package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.js +240 -0
  1420. package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +29 -0
  1421. package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.js +9 -0
  1422. package/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.d.ts +54 -0
  1423. package/internals/plugins/featurePlugins/useChartZAxis/index.d.ts +2 -2
  1424. package/internals/plugins/featurePlugins/useChartZAxis/index.js +27 -2
  1425. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.d.ts +3 -3
  1426. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +18 -10
  1427. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +35 -35
  1428. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.js +8 -2
  1429. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +27 -28
  1430. package/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.js +5 -1
  1431. package/internals/plugins/featurePlugins/useChartZAxis/utils.js +1 -0
  1432. package/internals/plugins/models/chart.d.ts +6 -6
  1433. package/internals/plugins/models/chart.js +5 -1
  1434. package/internals/plugins/models/helpers.d.ts +1 -1
  1435. package/internals/plugins/models/helpers.js +5 -1
  1436. package/internals/plugins/models/index.d.ts +4 -4
  1437. package/internals/plugins/models/index.js +49 -4
  1438. package/internals/plugins/models/plugin.d.ts +152 -86
  1439. package/internals/plugins/models/plugin.js +5 -1
  1440. package/internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.d.ts +22 -0
  1441. package/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +1 -1
  1442. package/internals/plugins/models/seriesConfig/colorProcessor.types.js +5 -1
  1443. package/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.d.ts +3 -0
  1444. package/internals/plugins/models/seriesConfig/index.d.ts +8 -4
  1445. package/internals/plugins/models/seriesConfig/index.js +93 -4
  1446. package/internals/plugins/models/seriesConfig/legendGetter.types.d.ts +4 -0
  1447. package/internals/plugins/models/seriesConfig/polarExtremumGetter.types.d.ts +16 -0
  1448. package/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +19 -11
  1449. package/internals/plugins/models/seriesConfig/seriesConfig.types.js +5 -1
  1450. package/internals/plugins/models/seriesConfig/seriesProcessor.types.d.ts +8 -10
  1451. package/internals/plugins/models/seriesConfig/seriesProcessor.types.js +5 -1
  1452. package/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +7 -0
  1453. package/internals/plugins/utils/ChartStore.d.ts +9 -9
  1454. package/internals/plugins/utils/ChartStore.js +9 -2
  1455. package/internals/plugins/utils/selectors.d.ts +3 -2
  1456. package/internals/plugins/utils/selectors.js +12 -5
  1457. package/internals/sliceUntil.d.ts +4 -0
  1458. package/internals/sliceUntil.js +28 -0
  1459. package/internals/stackSeries.d.ts +15 -21
  1460. package/internals/stackSeries.js +23 -16
  1461. package/internals/store/extractPluginParamsFromProps.d.ts +13 -7
  1462. package/internals/store/extractPluginParamsFromProps.js +12 -4
  1463. package/internals/store/useChartModels.d.ts +3 -3
  1464. package/internals/store/useChartModels.js +14 -5
  1465. package/internals/store/useCharts.d.ts +22 -13
  1466. package/internals/store/useCharts.js +42 -31
  1467. package/internals/store/useCharts.types.d.ts +3 -3
  1468. package/internals/store/useCharts.types.js +5 -1
  1469. package/internals/store/useSelector.d.ts +4 -4
  1470. package/internals/store/useSelector.js +15 -4
  1471. package/internals/store/useStore.d.ts +5 -7
  1472. package/internals/store/useStore.js +10 -4
  1473. package/internals/ts-generic.d.ts +2 -4
  1474. package/internals/ts-generic.js +5 -1
  1475. package/internals/useStringInterpolator.d.ts +1 -1
  1476. package/internals/useStringInterpolator.js +14 -5
  1477. package/models/axis.d.ts +351 -258
  1478. package/models/axis.js +18 -3
  1479. package/models/colorMapping.d.ts +41 -41
  1480. package/models/colorMapping.js +5 -1
  1481. package/models/curve.d.ts +6 -0
  1482. package/models/index.d.ts +5 -4
  1483. package/models/index.js +26 -5
  1484. package/models/position.d.ts +10 -0
  1485. package/models/seriesType/bar.d.ts +28 -29
  1486. package/models/seriesType/bar.js +5 -1
  1487. package/models/seriesType/common.d.ts +47 -49
  1488. package/models/seriesType/common.js +5 -1
  1489. package/models/seriesType/config.d.ts +77 -71
  1490. package/models/seriesType/config.js +5 -1
  1491. package/models/seriesType/index.d.ts +9 -8
  1492. package/models/seriesType/index.js +73 -6
  1493. package/models/seriesType/line.d.ts +92 -82
  1494. package/models/seriesType/line.js +5 -1
  1495. package/models/seriesType/pie.d.ts +139 -142
  1496. package/models/seriesType/pie.js +5 -1
  1497. package/models/seriesType/radar.d.ts +24 -0
  1498. package/models/seriesType/scatter.d.ts +44 -45
  1499. package/models/seriesType/scatter.js +5 -1
  1500. package/models/stacking.d.ts +1 -1
  1501. package/models/stacking.js +5 -1
  1502. package/models/z-axis.d.ts +18 -18
  1503. package/models/z-axis.js +5 -1
  1504. package/modern/BarChart/AnimatedBarElement.d.ts +12 -0
  1505. package/modern/BarChart/AnimatedBarElement.js +0 -3
  1506. package/modern/BarChart/BarChart.d.ts +66 -0
  1507. package/modern/BarChart/BarChart.js +20 -37
  1508. package/modern/BarChart/BarChart.plugins.d.ts +7 -0
  1509. package/modern/BarChart/BarChart.plugins.js +5 -0
  1510. package/modern/BarChart/BarClipPath.d.ts +14 -0
  1511. package/modern/BarChart/BarElement.d.ts +50 -0
  1512. package/modern/BarChart/BarElement.js +7 -7
  1513. package/modern/BarChart/BarLabel/BarLabel.d.ts +861 -0
  1514. package/modern/BarChart/BarLabel/BarLabel.types.d.ts +39 -0
  1515. package/modern/BarChart/BarLabel/BarLabelItem.d.ts +54 -0
  1516. package/modern/BarChart/BarLabel/BarLabelItem.js +1 -1
  1517. package/modern/BarChart/BarLabel/BarLabelPlot.d.ts +13 -0
  1518. package/modern/BarChart/BarLabel/barLabelClasses.d.ts +13 -0
  1519. package/modern/BarChart/BarLabel/getBarLabel.d.ts +10 -0
  1520. package/modern/BarChart/BarLabel/index.d.ts +6 -0
  1521. package/modern/BarChart/BarPlot.d.ts +49 -0
  1522. package/modern/BarChart/BarPlot.js +18 -12
  1523. package/modern/BarChart/checkScaleErrors.d.ts +10 -0
  1524. package/modern/BarChart/checkScaleErrors.js +7 -1
  1525. package/modern/BarChart/getRadius.d.ts +20 -0
  1526. package/modern/BarChart/index.d.ts +4 -0
  1527. package/modern/BarChart/seriesConfig/extremums.d.ts +3 -0
  1528. package/modern/BarChart/seriesConfig/getColor.d.ts +3 -0
  1529. package/modern/BarChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  1530. package/modern/BarChart/seriesConfig/getSeriesWithDefaultValues.js +8 -0
  1531. package/modern/BarChart/seriesConfig/index.d.ts +2 -0
  1532. package/modern/BarChart/seriesConfig/index.js +15 -0
  1533. package/modern/BarChart/seriesConfig/legend.d.ts +3 -0
  1534. package/modern/BarChart/seriesConfig/legend.js +22 -0
  1535. package/modern/BarChart/seriesConfig/seriesProcessor.d.ts +3 -0
  1536. package/modern/BarChart/seriesConfig/seriesProcessor.js +73 -0
  1537. package/modern/BarChart/seriesConfig/tooltip.d.ts +3 -0
  1538. package/modern/BarChart/seriesConfig/tooltip.js +25 -0
  1539. package/modern/BarChart/types.d.ts +23 -0
  1540. package/modern/BarChart/useBarChartProps.d.ts +33 -0
  1541. package/modern/BarChart/useBarChartProps.js +7 -25
  1542. package/modern/ChartContainer/ChartContainer.d.ts +35 -0
  1543. package/modern/ChartContainer/ChartContainer.js +152 -12
  1544. package/modern/ChartContainer/index.d.ts +1 -0
  1545. package/modern/ChartContainer/useChartContainerProps.d.ts +15 -0
  1546. package/modern/ChartContainer/useChartContainerProps.js +22 -8
  1547. package/modern/ChartDataProvider/ChartDataProvider.d.ts +41 -0
  1548. package/modern/ChartDataProvider/ChartDataProvider.js +98 -0
  1549. package/modern/ChartDataProvider/index.d.ts +1 -0
  1550. package/modern/ChartDataProvider/index.js +1 -0
  1551. package/modern/ChartDataProvider/useChartDataProviderProps.d.ts +11 -0
  1552. package/modern/ChartDataProvider/useChartDataProviderProps.js +31 -0
  1553. package/modern/ChartsAxis/ChartsAxis.d.ts +28 -0
  1554. package/modern/ChartsAxis/ChartsAxis.js +24 -86
  1555. package/modern/ChartsAxis/axisClasses.d.ts +33 -0
  1556. package/modern/ChartsAxis/index.d.ts +2 -0
  1557. package/modern/ChartsAxisHighlight/ChartsAxisHighlight.d.ts +16 -0
  1558. package/modern/ChartsAxisHighlight/ChartsAxisHighlight.types.d.ts +5 -0
  1559. package/modern/ChartsAxisHighlight/ChartsAxisHighlightPath.d.ts +6 -0
  1560. package/modern/ChartsAxisHighlight/ChartsXAxisHighlight.d.ts +10 -0
  1561. package/modern/ChartsAxisHighlight/ChartsYAxisHighlight.d.ts +10 -0
  1562. package/modern/ChartsAxisHighlight/chartsAxisHighlightClasses.d.ts +7 -0
  1563. package/modern/ChartsAxisHighlight/index.d.ts +4 -0
  1564. package/modern/ChartsClipPath/ChartsClipPath.d.ts +20 -0
  1565. package/modern/ChartsClipPath/index.d.ts +1 -0
  1566. package/modern/ChartsGrid/ChartsGrid.d.ts +30 -0
  1567. package/modern/ChartsGrid/ChartsHorizontalGrid.d.ts +14 -0
  1568. package/modern/ChartsGrid/ChartsHorizontalGrid.js +1 -1
  1569. package/modern/ChartsGrid/ChartsVerticalGrid.d.ts +14 -0
  1570. package/modern/ChartsGrid/ChartsVerticalGrid.js +1 -1
  1571. package/modern/ChartsGrid/chartsGridClasses.d.ts +13 -0
  1572. package/modern/ChartsGrid/index.d.ts +2 -0
  1573. package/modern/ChartsGrid/styledComponents.d.ts +2 -0
  1574. package/modern/ChartsLabel/ChartsLabel.d.ts +18 -0
  1575. package/modern/ChartsLabel/ChartsLabelGradient.d.ts +41 -0
  1576. package/modern/ChartsLabel/ChartsLabelMark.d.ts +31 -0
  1577. package/modern/ChartsLabel/ChartsLabelMark.js +15 -2
  1578. package/modern/ChartsLabel/index.d.ts +7 -0
  1579. package/modern/ChartsLabel/index.js +0 -3
  1580. package/modern/ChartsLabel/labelClasses.d.ts +8 -0
  1581. package/modern/ChartsLabel/labelGradientClasses.d.ts +16 -0
  1582. package/modern/ChartsLabel/labelMarkClasses.d.ts +18 -0
  1583. package/modern/ChartsLabel/labelMarkClasses.js +1 -1
  1584. package/modern/ChartsLegend/ChartsLegend.d.ts +27 -0
  1585. package/modern/ChartsLegend/ChartsLegend.js +2 -2
  1586. package/modern/ChartsLegend/ContinuousColorLegend.d.ts +56 -0
  1587. package/modern/ChartsLegend/ContinuousColorLegend.js +2 -1
  1588. package/modern/ChartsLegend/PiecewiseColorLegend.d.ts +42 -0
  1589. package/modern/ChartsLegend/chartsLegend.types.d.ts +26 -0
  1590. package/modern/ChartsLegend/chartsLegendClasses.d.ts +18 -0
  1591. package/modern/ChartsLegend/colorLegend.types.d.ts +13 -0
  1592. package/modern/ChartsLegend/continuousColorLegendClasses.d.ts +26 -0
  1593. package/modern/ChartsLegend/direction.d.ts +1 -0
  1594. package/modern/ChartsLegend/index.d.ts +16 -0
  1595. package/modern/ChartsLegend/legend.types.d.ts +9 -0
  1596. package/modern/ChartsLegend/legendContext.types.d.ts +55 -0
  1597. package/modern/ChartsLegend/onClickContextBuilder.d.ts +2 -0
  1598. package/modern/ChartsLegend/piecewiseColorDefaultLabelFormatter.d.ts +2 -0
  1599. package/modern/ChartsLegend/piecewiseColorLegend.types.d.ts +26 -0
  1600. package/modern/ChartsLegend/piecewiseColorLegendClasses.d.ts +28 -0
  1601. package/modern/ChartsLegend/useAxis.d.ts +10 -0
  1602. package/modern/ChartsOverlay/ChartsLoadingOverlay.d.ts +3 -0
  1603. package/modern/ChartsOverlay/ChartsNoDataOverlay.d.ts +3 -0
  1604. package/modern/ChartsOverlay/ChartsOverlay.d.ts +45 -0
  1605. package/modern/ChartsOverlay/index.d.ts +4 -0
  1606. package/modern/ChartsReferenceLine/ChartsReferenceLine.d.ts +10 -0
  1607. package/modern/ChartsReferenceLine/ChartsXReferenceLine.d.ts +13 -0
  1608. package/modern/ChartsReferenceLine/ChartsYReferenceLine.d.ts +13 -0
  1609. package/modern/ChartsReferenceLine/chartsReferenceLineClasses.d.ts +15 -0
  1610. package/modern/ChartsReferenceLine/common.d.ts +41 -0
  1611. package/modern/ChartsReferenceLine/index.d.ts +2 -0
  1612. package/modern/ChartsSurface/ChartsSurface.d.ts +25 -0
  1613. package/modern/ChartsSurface/ChartsSurface.js +2 -11
  1614. package/modern/ChartsSurface/index.d.ts +1 -0
  1615. package/modern/ChartsText/ChartsText.d.ts +17 -0
  1616. package/modern/ChartsText/ChartsText.js +6 -11
  1617. package/modern/ChartsText/defaultTextPlacement.d.ts +9 -0
  1618. package/modern/ChartsText/defaultTextPlacement.js +34 -0
  1619. package/modern/ChartsText/index.d.ts +3 -0
  1620. package/modern/ChartsTooltip/ChartTooltip.types.d.ts +15 -0
  1621. package/modern/ChartsTooltip/ChartsAxisTooltipContent.d.ts +15 -0
  1622. package/modern/ChartsTooltip/ChartsItemTooltipContent.d.ts +15 -0
  1623. package/modern/ChartsTooltip/ChartsTooltip.d.ts +17 -0
  1624. package/modern/ChartsTooltip/ChartsTooltip.js +4 -0
  1625. package/modern/ChartsTooltip/ChartsTooltipContainer.d.ts +33 -0
  1626. package/modern/ChartsTooltip/ChartsTooltipContainer.js +36 -21
  1627. package/modern/ChartsTooltip/ChartsTooltipTable.d.ts +16 -0
  1628. package/modern/ChartsTooltip/ChartsTooltipTable.js +1 -1
  1629. package/modern/ChartsTooltip/chartsTooltipClasses.d.ts +26 -0
  1630. package/modern/ChartsTooltip/index.d.ts +11 -0
  1631. package/modern/ChartsTooltip/index.js +2 -1
  1632. package/modern/ChartsTooltip/useAxisTooltip.d.ts +20 -0
  1633. package/modern/ChartsTooltip/useAxisTooltip.js +2 -1
  1634. package/modern/ChartsTooltip/useItemTooltip.d.ts +12 -0
  1635. package/modern/ChartsTooltip/useItemTooltip.js +10 -38
  1636. package/modern/ChartsTooltip/utils.d.ts +16 -0
  1637. package/modern/ChartsTooltip/utils.js +2 -0
  1638. package/modern/ChartsXAxis/ChartsXAxis.d.ts +16 -0
  1639. package/modern/ChartsXAxis/ChartsXAxis.js +141 -67
  1640. package/modern/ChartsXAxis/index.d.ts +1 -0
  1641. package/modern/ChartsYAxis/ChartsYAxis.d.ts +16 -0
  1642. package/modern/ChartsYAxis/ChartsYAxis.js +22 -21
  1643. package/modern/ChartsYAxis/index.d.ts +1 -0
  1644. package/modern/Gauge/Gauge.d.ts +10 -0
  1645. package/modern/Gauge/Gauge.js +4 -9
  1646. package/modern/Gauge/GaugeContainer.d.ts +10 -0
  1647. package/modern/Gauge/GaugeContainer.js +7 -11
  1648. package/modern/Gauge/GaugeProvider.d.ts +117 -0
  1649. package/modern/Gauge/GaugeProvider.js +5 -2
  1650. package/modern/Gauge/GaugeReferenceArc.d.ts +2 -0
  1651. package/modern/Gauge/GaugeValueArc.d.ts +2 -0
  1652. package/modern/Gauge/GaugeValueText.d.ts +15 -0
  1653. package/modern/Gauge/gaugeClasses.d.ts +14 -0
  1654. package/modern/Gauge/index.d.ts +7 -0
  1655. package/modern/Gauge/utils.d.ts +24 -0
  1656. package/modern/Gauge/utils.js +1 -3
  1657. package/modern/LineChart/AnimatedArea.d.ts +26 -0
  1658. package/modern/LineChart/AnimatedLine.d.ts +26 -0
  1659. package/modern/LineChart/AppearingMask.d.ts +12 -0
  1660. package/modern/LineChart/AreaElement.d.ts +61 -0
  1661. package/modern/LineChart/AreaElement.js +6 -6
  1662. package/modern/LineChart/AreaPlot.d.ts +29 -0
  1663. package/modern/LineChart/AreaPlot.js +49 -14
  1664. package/modern/LineChart/CircleMarkElement.d.ts +30 -0
  1665. package/modern/LineChart/CircleMarkElement.js +24 -22
  1666. package/modern/LineChart/LineChart.d.ts +82 -0
  1667. package/modern/LineChart/LineChart.js +20 -41
  1668. package/modern/LineChart/LineChart.plugins.d.ts +7 -0
  1669. package/modern/LineChart/LineChart.plugins.js +5 -0
  1670. package/modern/LineChart/LineElement.d.ts +61 -0
  1671. package/modern/LineChart/LineElement.js +6 -6
  1672. package/modern/LineChart/LineHighlightElement.d.ts +36 -0
  1673. package/modern/LineChart/LineHighlightElement.js +27 -30
  1674. package/modern/LineChart/LineHighlightPlot.d.ts +36 -0
  1675. package/modern/LineChart/LineHighlightPlot.js +7 -5
  1676. package/modern/LineChart/LinePlot.d.ts +28 -0
  1677. package/modern/LineChart/LinePlot.js +51 -14
  1678. package/modern/LineChart/MarkElement.d.ts +32 -0
  1679. package/modern/LineChart/MarkElement.js +22 -15
  1680. package/modern/LineChart/MarkPlot.d.ts +42 -0
  1681. package/modern/LineChart/MarkPlot.js +12 -16
  1682. package/modern/LineChart/index.d.ts +13 -0
  1683. package/modern/LineChart/markElementClasses.d.ts +20 -0
  1684. package/modern/LineChart/seriesConfig/extremums.d.ts +3 -0
  1685. package/modern/LineChart/seriesConfig/getColor.d.ts +3 -0
  1686. package/modern/LineChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  1687. package/modern/LineChart/seriesConfig/getSeriesWithDefaultValues.js +8 -0
  1688. package/modern/LineChart/seriesConfig/index.d.ts +2 -0
  1689. package/modern/LineChart/seriesConfig/index.js +15 -0
  1690. package/modern/LineChart/seriesConfig/legend.d.ts +3 -0
  1691. package/modern/LineChart/seriesConfig/legend.js +22 -0
  1692. package/modern/LineChart/seriesConfig/seriesProcessor.d.ts +3 -0
  1693. package/modern/LineChart/seriesConfig/seriesProcessor.js +77 -0
  1694. package/modern/LineChart/seriesConfig/tooltip.d.ts +3 -0
  1695. package/modern/LineChart/seriesConfig/tooltip.js +25 -0
  1696. package/modern/LineChart/useLineChartProps.d.ts +39 -0
  1697. package/modern/LineChart/useLineChartProps.js +8 -28
  1698. package/modern/PieChart/PieArc.d.ts +36 -0
  1699. package/modern/PieChart/PieArc.js +6 -6
  1700. package/modern/PieChart/PieArcLabel.d.ts +37 -0
  1701. package/modern/PieChart/PieArcLabelPlot.d.ts +36 -0
  1702. package/modern/PieChart/PieArcLabelPlot.js +2 -2
  1703. package/modern/PieChart/PieArcPlot.d.ts +43 -0
  1704. package/modern/PieChart/PieArcPlot.js +2 -2
  1705. package/modern/PieChart/PieChart.d.ts +49 -0
  1706. package/modern/PieChart/PieChart.js +16 -122
  1707. package/modern/PieChart/PieChart.plugins.d.ts +5 -0
  1708. package/modern/PieChart/PieChart.plugins.js +3 -0
  1709. package/modern/PieChart/PiePlot.d.ts +32 -0
  1710. package/modern/PieChart/PiePlot.js +2 -2
  1711. package/modern/PieChart/dataTransform/transition.d.ts +4 -0
  1712. package/modern/PieChart/dataTransform/transition.js +2 -2
  1713. package/modern/PieChart/dataTransform/useTransformData.d.ts +16 -0
  1714. package/modern/PieChart/dataTransform/useTransformData.js +5 -3
  1715. package/modern/PieChart/getPieCoordinates.d.ts +7 -0
  1716. package/modern/PieChart/index.d.ts +7 -0
  1717. package/modern/PieChart/seriesConfig/getColor.d.ts +3 -0
  1718. package/modern/PieChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  1719. package/modern/PieChart/seriesConfig/getSeriesWithDefaultValues.js +11 -0
  1720. package/modern/PieChart/seriesConfig/index.d.ts +2 -0
  1721. package/modern/PieChart/seriesConfig/index.js +12 -0
  1722. package/modern/PieChart/seriesConfig/legend.d.ts +3 -0
  1723. package/modern/PieChart/seriesConfig/legend.js +25 -0
  1724. package/modern/PieChart/seriesConfig/seriesProcessor.d.ts +3 -0
  1725. package/modern/PieChart/seriesConfig/seriesProcessor.js +49 -0
  1726. package/modern/PieChart/seriesConfig/tooltip.d.ts +3 -0
  1727. package/modern/PieChart/seriesConfig/tooltip.js +29 -0
  1728. package/modern/RadarChart/RadarAxisHighlight/RadarAxisHighlight.d.ts +20 -0
  1729. package/modern/RadarChart/RadarAxisHighlight/RadarAxisHighlight.js +42 -0
  1730. package/modern/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.d.ts +13 -0
  1731. package/modern/RadarChart/RadarAxisHighlight/RadarAxisPointsHighlight.js +47 -0
  1732. package/modern/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.d.ts +13 -0
  1733. package/modern/RadarChart/RadarAxisHighlight/RadarAxisSliceHighlight.js +50 -0
  1734. package/modern/RadarChart/RadarAxisHighlight/index.d.ts +1 -0
  1735. package/modern/RadarChart/RadarAxisHighlight/index.js +1 -0
  1736. package/modern/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.d.ts +13 -0
  1737. package/modern/RadarChart/RadarAxisHighlight/radarAxisHighlightClasses.js +6 -0
  1738. package/modern/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.d.ts +62 -0
  1739. package/modern/RadarChart/RadarAxisHighlight/useRadarAxisHighlight.js +92 -0
  1740. package/modern/RadarChart/RadarChart.d.ts +25 -0
  1741. package/modern/RadarChart/RadarChart.js +177 -0
  1742. package/modern/RadarChart/RadarDataProvider/RadarDataProvider.d.ts +30 -0
  1743. package/modern/RadarChart/RadarDataProvider/RadarDataProvider.js +192 -0
  1744. package/modern/RadarChart/RadarDataProvider/index.d.ts +1 -0
  1745. package/modern/RadarChart/RadarDataProvider/index.js +1 -0
  1746. package/modern/RadarChart/RadarDataProvider/radar.types.d.ts +43 -0
  1747. package/modern/RadarChart/RadarDataProvider/radar.types.js +1 -0
  1748. package/modern/RadarChart/RadarGrid/CircularRadarGrid.d.ts +6 -0
  1749. package/modern/RadarChart/RadarGrid/CircularRadarGrid.js +36 -0
  1750. package/modern/RadarChart/RadarGrid/RadarGrid.d.ts +7 -0
  1751. package/modern/RadarChart/RadarGrid/RadarGrid.js +45 -0
  1752. package/modern/RadarChart/RadarGrid/RadarGrid.types.d.ts +24 -0
  1753. package/modern/RadarChart/RadarGrid/RadarGrid.types.js +1 -0
  1754. package/modern/RadarChart/RadarGrid/SharpRadarGrid.d.ts +6 -0
  1755. package/modern/RadarChart/RadarGrid/SharpRadarGrid.js +36 -0
  1756. package/modern/RadarChart/RadarGrid/index.d.ts +2 -0
  1757. package/modern/RadarChart/RadarGrid/index.js +2 -0
  1758. package/modern/RadarChart/RadarGrid/useRadarGridData.d.ts +11 -0
  1759. package/modern/RadarChart/RadarGrid/useRadarGridData.js +35 -0
  1760. package/modern/RadarChart/RadarMetricLabels/RadarMetricLabels.d.ts +3 -0
  1761. package/modern/RadarChart/RadarMetricLabels/RadarMetricLabels.js +35 -0
  1762. package/modern/RadarChart/RadarMetricLabels/index.d.ts +1 -0
  1763. package/modern/RadarChart/RadarMetricLabels/index.js +1 -0
  1764. package/modern/RadarChart/RadarMetricLabels/useRadarMetricData.d.ts +8 -0
  1765. package/modern/RadarChart/RadarMetricLabels/useRadarMetricData.js +35 -0
  1766. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesArea.d.ts +7 -0
  1767. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesArea.js +39 -0
  1768. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesMarks.d.ts +7 -0
  1769. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesMarks.js +38 -0
  1770. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.d.ts +7 -0
  1771. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.js +68 -0
  1772. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.d.ts +18 -0
  1773. package/modern/RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.js +1 -0
  1774. package/modern/RadarChart/RadarSeriesPlot/getAreaPath.d.ts +4 -0
  1775. package/modern/RadarChart/RadarSeriesPlot/getAreaPath.js +3 -0
  1776. package/modern/RadarChart/RadarSeriesPlot/index.d.ts +6 -0
  1777. package/modern/RadarChart/RadarSeriesPlot/index.js +4 -0
  1778. package/modern/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.d.ts +12 -0
  1779. package/modern/RadarChart/RadarSeriesPlot/radarSeriesPlotClasses.js +15 -0
  1780. package/modern/RadarChart/RadarSeriesPlot/useRadarSeriesData.d.ts +27 -0
  1781. package/modern/RadarChart/RadarSeriesPlot/useRadarSeriesData.js +62 -0
  1782. package/modern/RadarChart/index.d.ts +8 -0
  1783. package/modern/RadarChart/index.js +6 -0
  1784. package/modern/RadarChart/seriesConfig/extremums.d.ts +3 -0
  1785. package/modern/RadarChart/seriesConfig/extremums.js +18 -0
  1786. package/modern/RadarChart/seriesConfig/formatter.d.ts +3 -0
  1787. package/modern/RadarChart/seriesConfig/formatter.js +12 -0
  1788. package/modern/RadarChart/seriesConfig/getColor.d.ts +3 -0
  1789. package/modern/RadarChart/seriesConfig/getColor.js +4 -0
  1790. package/modern/RadarChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  1791. package/modern/RadarChart/seriesConfig/getSeriesWithDefaultValues.js +8 -0
  1792. package/modern/RadarChart/seriesConfig/index.d.ts +2 -0
  1793. package/modern/RadarChart/seriesConfig/index.js +15 -0
  1794. package/modern/RadarChart/seriesConfig/legend.d.ts +3 -0
  1795. package/modern/RadarChart/seriesConfig/legend.js +22 -0
  1796. package/modern/RadarChart/seriesConfig/tooltip.d.ts +3 -0
  1797. package/modern/RadarChart/seriesConfig/tooltip.js +25 -0
  1798. package/modern/RadarChart/useRadarChartProps.d.ts +26 -0
  1799. package/modern/RadarChart/useRadarChartProps.js +77 -0
  1800. package/modern/ScatterChart/Scatter.d.ts +36 -0
  1801. package/modern/ScatterChart/Scatter.js +38 -21
  1802. package/modern/ScatterChart/ScatterChart.d.ts +70 -0
  1803. package/modern/ScatterChart/ScatterChart.js +27 -37
  1804. package/modern/ScatterChart/ScatterChart.plugins.d.ts +8 -0
  1805. package/modern/ScatterChart/ScatterChart.plugins.js +6 -0
  1806. package/modern/ScatterChart/ScatterMarker.d.ts +46 -0
  1807. package/modern/ScatterChart/ScatterMarker.js +70 -0
  1808. package/modern/ScatterChart/ScatterMarker.types.d.ts +24 -0
  1809. package/modern/ScatterChart/ScatterMarker.types.js +1 -0
  1810. package/modern/ScatterChart/ScatterPlot.d.ts +35 -0
  1811. package/modern/ScatterChart/ScatterPlot.js +6 -6
  1812. package/modern/ScatterChart/index.d.ts +5 -0
  1813. package/modern/ScatterChart/index.js +3 -1
  1814. package/modern/ScatterChart/seriesConfig/extremums.d.ts +3 -0
  1815. package/modern/ScatterChart/seriesConfig/getColor.d.ts +3 -0
  1816. package/modern/ScatterChart/seriesConfig/getSeriesWithDefaultValues.d.ts +3 -0
  1817. package/modern/ScatterChart/seriesConfig/getSeriesWithDefaultValues.js +8 -0
  1818. package/modern/ScatterChart/seriesConfig/index.d.ts +2 -0
  1819. package/modern/ScatterChart/seriesConfig/index.js +15 -0
  1820. package/modern/ScatterChart/seriesConfig/legend.d.ts +3 -0
  1821. package/modern/ScatterChart/seriesConfig/legend.js +22 -0
  1822. package/modern/ScatterChart/seriesConfig/seriesProcessor.d.ts +3 -0
  1823. package/modern/ScatterChart/seriesConfig/seriesProcessor.js +33 -0
  1824. package/modern/ScatterChart/seriesConfig/tooltip.d.ts +3 -0
  1825. package/modern/ScatterChart/seriesConfig/tooltip.js +25 -0
  1826. package/modern/ScatterChart/useScatterChartProps.d.ts +28 -0
  1827. package/modern/ScatterChart/useScatterChartProps.js +8 -24
  1828. package/modern/SparkLineChart/SparkLineChart.d.ts +101 -0
  1829. package/modern/SparkLineChart/SparkLineChart.js +61 -29
  1830. package/modern/SparkLineChart/index.d.ts +1 -0
  1831. package/modern/colorPalettes/colorPalettes.d.ts +16 -0
  1832. package/modern/colorPalettes/colorPalettes.js +3 -0
  1833. package/modern/colorPalettes/index.d.ts +1 -0
  1834. package/modern/constants/index.d.ts +13 -0
  1835. package/modern/constants/index.js +11 -5
  1836. package/modern/context/AnimationProvider/Animation.types.d.ts +15 -0
  1837. package/modern/context/AnimationProvider/AnimationContext.d.ts +4 -0
  1838. package/modern/context/AnimationProvider/AnimationProvider.d.ts +4 -0
  1839. package/modern/context/AnimationProvider/AnimationProvider.js +1 -1
  1840. package/modern/context/AnimationProvider/index.d.ts +4 -0
  1841. package/modern/context/AnimationProvider/useSkipAnimation.d.ts +6 -0
  1842. package/modern/context/AnimationProvider/useSkipAnimation.js +1 -1
  1843. package/modern/context/ChartProvider/ChartContext.d.ts +6 -0
  1844. package/modern/context/ChartProvider/ChartProvider.d.ts +8 -0
  1845. package/modern/context/ChartProvider/ChartProvider.js +10 -9
  1846. package/modern/context/ChartProvider/ChartProvider.types.d.ts +39 -0
  1847. package/modern/context/ChartProvider/index.d.ts +3 -0
  1848. package/modern/context/ChartProvider/useChartContext.d.ts +3 -0
  1849. package/modern/context/context.types.d.ts +4 -0
  1850. package/modern/context/index.d.ts +1 -0
  1851. package/modern/context/index.js +1 -2
  1852. package/modern/hooks/getValueToPositionMapper.d.ts +8 -0
  1853. package/modern/hooks/getValueToPositionMapper.js +15 -0
  1854. package/modern/hooks/index.d.ts +16 -0
  1855. package/modern/hooks/index.js +7 -1
  1856. package/modern/hooks/useAxis.d.ts +51 -0
  1857. package/modern/hooks/useAxis.js +79 -5
  1858. package/modern/hooks/useAxisEvents.js +0 -165
  1859. package/modern/hooks/useBarSeries.d.ts +36 -0
  1860. package/modern/hooks/useBarSeries.js +43 -0
  1861. package/modern/hooks/useChartGradientId.d.ts +31 -0
  1862. package/modern/hooks/useChartId.d.ts +5 -0
  1863. package/modern/hooks/useChartId.js +5 -0
  1864. package/modern/hooks/useColorScale.d.ts +22 -0
  1865. package/modern/hooks/useColorScale.js +32 -23
  1866. package/modern/hooks/useDrawingArea.d.ts +16 -0
  1867. package/modern/hooks/useDrawingArea.js +7 -0
  1868. package/modern/hooks/useInteractionItemProps.d.ts +16 -0
  1869. package/modern/hooks/useInteractionItemProps.js +67 -48
  1870. package/modern/hooks/useIsHydrated.d.ts +4 -0
  1871. package/modern/hooks/useIsHydrated.js +14 -0
  1872. package/modern/hooks/useItemHighlighted.d.ts +23 -0
  1873. package/modern/hooks/useItemHighlighted.js +23 -0
  1874. package/modern/hooks/useItemHighlightedGetter.d.ts +12 -0
  1875. package/modern/hooks/useItemHighlightedGetter.js +23 -0
  1876. package/modern/hooks/useLegend.d.ts +13 -0
  1877. package/modern/hooks/useLegend.js +8 -13
  1878. package/modern/hooks/useLineSeries.d.ts +36 -0
  1879. package/modern/hooks/useLineSeries.js +43 -0
  1880. package/modern/hooks/useMounted.d.ts +1 -0
  1881. package/modern/hooks/usePieSeries.d.ts +35 -0
  1882. package/modern/hooks/usePieSeries.js +42 -0
  1883. package/modern/hooks/useRadarSeries.d.ts +35 -0
  1884. package/modern/hooks/useRadarSeries.js +42 -0
  1885. package/modern/hooks/useScale.d.ts +24 -0
  1886. package/modern/hooks/useScale.js +29 -7
  1887. package/modern/hooks/useScatterSeries.d.ts +35 -0
  1888. package/modern/hooks/useScatterSeries.js +42 -0
  1889. package/modern/hooks/useSeries.d.ts +7 -0
  1890. package/modern/hooks/useSeries.js +0 -49
  1891. package/modern/hooks/useSvgRef.d.ts +6 -0
  1892. package/modern/hooks/useSvgRef.js +6 -1
  1893. package/modern/hooks/useTicks.d.ts +59 -0
  1894. package/modern/hooks/useTicks.js +21 -12
  1895. package/modern/hooks/useZAxis.d.ts +7 -0
  1896. package/modern/index.d.ts +26 -0
  1897. package/modern/index.js +4 -4
  1898. package/modern/internals/angleConversion.d.ts +2 -0
  1899. package/modern/internals/angleConversion.js +12 -0
  1900. package/modern/internals/clampAngle.d.ts +6 -0
  1901. package/modern/internals/clampAngle.js +11 -0
  1902. package/modern/internals/cleanId.d.ts +4 -0
  1903. package/modern/internals/colorScale.d.ts +5 -0
  1904. package/modern/internals/components/AxisSharedComponents.d.ts +1 -0
  1905. package/modern/internals/components/AxisSharedComponents.js +2 -2
  1906. package/modern/internals/components/ChartsAxesGradients/ChartsAxesGradients.d.ts +2 -0
  1907. package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradient.d.ts +19 -0
  1908. package/modern/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.d.ts +13 -0
  1909. package/modern/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.d.ts +12 -0
  1910. package/modern/internals/components/ChartsAxesGradients/index.d.ts +1 -0
  1911. package/modern/internals/components/ChartsWrapper/ChartsWrapper.d.ts +18 -0
  1912. package/modern/internals/components/ChartsWrapper/ChartsWrapper.js +3 -3
  1913. package/modern/internals/components/ChartsWrapper/index.d.ts +1 -0
  1914. package/modern/internals/configInit.d.ts +16 -0
  1915. package/modern/internals/configInit.js +22 -4
  1916. package/modern/internals/consumeSlots.d.ts +48 -0
  1917. package/modern/internals/consumeSlots.js +2 -6
  1918. package/modern/internals/consumeThemeProps.d.ts +50 -0
  1919. package/modern/internals/createSeriesSelectorOfType.d.ts +4 -0
  1920. package/modern/internals/createSeriesSelectorOfType.js +43 -0
  1921. package/modern/internals/defaultizeMargin.d.ts +3 -0
  1922. package/modern/internals/defaultizeMargin.js +15 -0
  1923. package/modern/internals/defaultizeValueFormatter.d.ts +6 -0
  1924. package/modern/internals/degToRad.d.ts +2 -0
  1925. package/modern/internals/degToRad.js +4 -0
  1926. package/modern/internals/domUtils.d.ts +18 -0
  1927. package/modern/internals/domUtils.js +1 -0
  1928. package/modern/internals/ellipsize.d.ts +20 -0
  1929. package/modern/internals/ellipsize.js +53 -0
  1930. package/modern/internals/geometry.d.ts +9 -0
  1931. package/modern/internals/geometry.js +2 -1
  1932. package/modern/internals/getCurve.d.ts +2 -0
  1933. package/modern/internals/getCurve.js +14 -26
  1934. package/modern/internals/getGraphemeCount.d.ts +4 -0
  1935. package/modern/internals/getGraphemeCount.js +19 -0
  1936. package/modern/internals/getLabel.d.ts +1 -0
  1937. package/modern/internals/getPercentageValue.d.ts +7 -0
  1938. package/modern/internals/getSVGPoint.d.ts +6 -0
  1939. package/modern/internals/getScale.d.ts +2 -0
  1940. package/modern/internals/getSymbol.d.ts +2 -0
  1941. package/modern/internals/getWordsByLines.d.ts +33 -0
  1942. package/modern/internals/index.d.ts +49 -0
  1943. package/modern/internals/index.js +16 -2
  1944. package/modern/internals/invertTextAnchor.d.ts +2 -0
  1945. package/modern/internals/invertTextAnchor.js +10 -0
  1946. package/modern/internals/isBandScale.d.ts +5 -0
  1947. package/modern/internals/isCartesian.d.ts +7 -0
  1948. package/modern/internals/isDefined.d.ts +1 -0
  1949. package/modern/internals/isInfinity.d.ts +1 -0
  1950. package/modern/internals/isPolar.d.ts +7 -0
  1951. package/modern/internals/isPolar.js +7 -0
  1952. package/modern/internals/notNull.d.ts +1 -0
  1953. package/modern/internals/plugins/allPlugins.d.ts +14 -0
  1954. package/modern/internals/plugins/allPlugins.js +5 -1
  1955. package/modern/internals/plugins/corePlugins/corePlugins.d.ts +9 -0
  1956. package/modern/internals/plugins/corePlugins/index.d.ts +2 -0
  1957. package/modern/internals/plugins/corePlugins/useChartDimensions/index.d.ts +3 -0
  1958. package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.d.ts +3 -0
  1959. package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +52 -31
  1960. package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.d.ts +708 -0
  1961. package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +19 -18
  1962. package/modern/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.d.ts +90 -0
  1963. package/modern/internals/plugins/corePlugins/useChartId/index.d.ts +3 -0
  1964. package/modern/internals/plugins/corePlugins/useChartId/useChartId.d.ts +3 -0
  1965. package/modern/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +36 -0
  1966. package/modern/internals/plugins/corePlugins/useChartId/useChartId.types.d.ts +20 -0
  1967. package/modern/internals/plugins/corePlugins/useChartId/useChartId.utils.d.ts +1 -0
  1968. package/modern/internals/plugins/corePlugins/useChartSeries/index.d.ts +3 -0
  1969. package/modern/internals/plugins/corePlugins/useChartSeries/processSeries.d.ts +23 -0
  1970. package/modern/internals/plugins/corePlugins/useChartSeries/processSeries.js +7 -13
  1971. package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.d.ts +3 -0
  1972. package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +4 -5
  1973. package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +61 -0
  1974. package/modern/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.d.ts +51 -0
  1975. package/modern/internals/plugins/corePlugins/useChartSeries/useColorProcessor.d.ts +8 -0
  1976. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.d.ts +29 -0
  1977. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +10 -2
  1978. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.d.ts +22 -0
  1979. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +37 -35
  1980. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.d.ts +4 -0
  1981. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/createZoomLookup.js +13 -0
  1982. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.d.ts +6 -0
  1983. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +81 -13
  1984. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.d.ts +4 -0
  1985. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeZoom.js +25 -0
  1986. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.d.ts +6 -0
  1987. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.d.ts +9 -0
  1988. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +59 -0
  1989. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/index.d.ts +7 -0
  1990. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +3 -1
  1991. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.d.ts +216 -0
  1992. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartAxisSize.selectors.js +6 -0
  1993. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.d.ts +3 -0
  1994. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +147 -12
  1995. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.d.ts +75 -0
  1996. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.d.ts +70 -0
  1997. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisLayout.selectors.js +4 -0
  1998. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +3106 -0
  1999. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.js +89 -0
  2000. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.d.ts +10 -0
  2001. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useInternalIsZoomInteracting.js +19 -0
  2002. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.d.ts +10 -0
  2003. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.d.ts +68 -0
  2004. package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.ts +3 -0
  2005. package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.js +12 -0
  2006. package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.ts +3 -0
  2007. package/modern/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.js +12 -0
  2008. package/modern/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.d.ts +20 -0
  2009. package/modern/internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.js +1 -0
  2010. package/modern/internals/plugins/featurePlugins/useChartHighlight/index.d.ts +4 -0
  2011. package/modern/internals/plugins/featurePlugins/useChartHighlight/index.js +2 -0
  2012. package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.d.ts +3 -0
  2013. package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.js +44 -0
  2014. package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.d.ts +634 -0
  2015. package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.selectors.js +31 -0
  2016. package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.d.ts +71 -0
  2017. package/modern/internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.js +1 -0
  2018. package/modern/internals/plugins/featurePlugins/useChartInteraction/index.d.ts +3 -0
  2019. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.ts +3 -0
  2020. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +36 -29
  2021. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +448 -0
  2022. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +10 -6
  2023. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +49 -0
  2024. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +27 -0
  2025. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +128 -0
  2026. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.d.ts +5 -0
  2027. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.js +24 -0
  2028. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.ts +5 -0
  2029. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.js +21 -0
  2030. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.d.ts +9 -0
  2031. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/getAxisValue.js +33 -0
  2032. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/index.d.ts +3 -0
  2033. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/index.js +2 -0
  2034. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.d.ts +3 -0
  2035. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.js +180 -0
  2036. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +2056 -0
  2037. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.js +30 -0
  2038. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +85 -0
  2039. package/modern/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.js +1 -0
  2040. package/modern/internals/plugins/featurePlugins/useChartVoronoi/index.d.ts +3 -0
  2041. package/modern/internals/plugins/featurePlugins/useChartVoronoi/index.js +2 -0
  2042. package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.d.ts +3 -0
  2043. package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.js +231 -0
  2044. package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.d.ts +29 -0
  2045. package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.selectors.js +3 -0
  2046. package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.d.ts +54 -0
  2047. package/modern/internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.js +1 -0
  2048. package/modern/internals/plugins/featurePlugins/useChartZAxis/index.d.ts +3 -0
  2049. package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.d.ts +3 -0
  2050. package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.d.ts +45 -0
  2051. package/modern/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.d.ts +38 -0
  2052. package/modern/internals/plugins/featurePlugins/useChartZAxis/utils.d.ts +0 -0
  2053. package/modern/internals/plugins/models/chart.d.ts +14 -0
  2054. package/modern/internals/plugins/models/helpers.d.ts +7 -0
  2055. package/modern/internals/plugins/models/index.d.ts +4 -0
  2056. package/modern/internals/plugins/models/plugin.d.ts +171 -0
  2057. package/modern/internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.d.ts +22 -0
  2058. package/modern/internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.js +1 -0
  2059. package/modern/internals/plugins/models/seriesConfig/colorProcessor.types.d.ts +5 -0
  2060. package/modern/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.d.ts +3 -0
  2061. package/modern/internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.js +1 -0
  2062. package/modern/internals/plugins/models/seriesConfig/index.d.ts +8 -0
  2063. package/modern/internals/plugins/models/seriesConfig/index.js +6 -2
  2064. package/modern/internals/plugins/models/seriesConfig/legendGetter.types.d.ts +4 -0
  2065. package/modern/internals/plugins/models/seriesConfig/legendGetter.types.js +1 -0
  2066. package/modern/internals/plugins/models/seriesConfig/polarExtremumGetter.types.d.ts +16 -0
  2067. package/modern/internals/plugins/models/seriesConfig/polarExtremumGetter.types.js +1 -0
  2068. package/modern/internals/plugins/models/seriesConfig/seriesConfig.types.d.ts +22 -0
  2069. package/modern/internals/plugins/models/seriesConfig/seriesProcessor.types.d.ts +16 -0
  2070. package/modern/internals/plugins/models/seriesConfig/tooltipGetter.types.d.ts +7 -0
  2071. package/modern/internals/plugins/models/seriesConfig/tooltipGetter.types.js +1 -0
  2072. package/modern/internals/plugins/utils/ChartStore.d.ts +13 -0
  2073. package/modern/internals/plugins/utils/selectors.d.ts +10 -0
  2074. package/modern/internals/sliceUntil.d.ts +4 -0
  2075. package/modern/internals/sliceUntil.js +22 -0
  2076. package/modern/internals/stackSeries.d.ts +25 -0
  2077. package/modern/internals/store/extractPluginParamsFromProps.d.ts +13 -0
  2078. package/modern/internals/store/useChartModels.d.ts +7 -0
  2079. package/modern/internals/store/useCharts.d.ts +25 -0
  2080. package/modern/internals/store/useCharts.js +21 -19
  2081. package/modern/internals/store/useCharts.types.d.ts +5 -0
  2082. package/modern/internals/store/useSelector.d.ts +4 -0
  2083. package/modern/internals/store/useSelector.js +4 -1
  2084. package/modern/internals/store/useStore.d.ts +5 -0
  2085. package/modern/internals/store/useStore.js +1 -1
  2086. package/modern/internals/ts-generic.d.ts +3 -0
  2087. package/modern/internals/useStringInterpolator.d.ts +1 -0
  2088. package/modern/models/axis.d.ts +388 -0
  2089. package/modern/models/axis.js +9 -1
  2090. package/modern/models/colorMapping.d.ts +46 -0
  2091. package/modern/models/curve.d.ts +6 -0
  2092. package/modern/models/curve.js +1 -0
  2093. package/modern/models/index.d.ts +6 -0
  2094. package/modern/models/index.js +0 -1
  2095. package/modern/models/position.d.ts +10 -0
  2096. package/modern/models/position.js +1 -0
  2097. package/modern/models/seriesType/bar.d.ts +38 -0
  2098. package/modern/models/seriesType/common.d.ts +60 -0
  2099. package/modern/models/seriesType/config.d.ts +91 -0
  2100. package/modern/models/seriesType/index.d.ts +16 -0
  2101. package/modern/models/seriesType/index.js +1 -0
  2102. package/modern/models/seriesType/line.d.ts +104 -0
  2103. package/modern/models/seriesType/pie.d.ts +166 -0
  2104. package/modern/models/seriesType/radar.d.ts +24 -0
  2105. package/modern/models/seriesType/radar.js +1 -0
  2106. package/modern/models/seriesType/scatter.d.ts +63 -0
  2107. package/modern/models/stacking.d.ts +2 -0
  2108. package/modern/models/z-axis.d.ts +22 -0
  2109. package/modern/package.json +1 -0
  2110. package/modern/themeAugmentation/components.d.ts +62 -0
  2111. package/modern/themeAugmentation/index.d.ts +3 -0
  2112. package/modern/themeAugmentation/overrides.d.ts +34 -0
  2113. package/modern/themeAugmentation/props.d.ts +34 -0
  2114. package/package.json +42 -9
  2115. package/themeAugmentation/components.d.ts +1 -3
  2116. package/themeAugmentation/index.d.ts +1 -1
  2117. package/themeAugmentation/index.js +1 -0
  2118. package/themeAugmentation/overrides.d.ts +7 -10
  2119. package/themeAugmentation/props.d.ts +11 -13
  2120. package/tsconfig.build.tsbuildinfo +1 -0
  2121. package/BarChart/extremums.d.ts +0 -3
  2122. package/BarChart/formatter.d.ts +0 -3
  2123. package/BarChart/formatter.js +0 -73
  2124. package/BarChart/getColor.d.ts +0 -3
  2125. package/BarChart/legend.d.ts +0 -3
  2126. package/BarChart/legend.js +0 -22
  2127. package/BarChart/package.json +0 -6
  2128. package/BarChart/plugin.d.ts +0 -2
  2129. package/BarChart/plugin.js +0 -9
  2130. package/ChartContainer/package.json +0 -6
  2131. package/ChartsAxis/package.json +0 -6
  2132. package/ChartsAxisHighlight/package.json +0 -6
  2133. package/ChartsClipPath/package.json +0 -6
  2134. package/ChartsGrid/package.json +0 -6
  2135. package/ChartsLabel/package.json +0 -6
  2136. package/ChartsLegend/package.json +0 -6
  2137. package/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.d.ts +0 -20
  2138. package/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +0 -82
  2139. package/ChartsOnAxisClickHandler/index.d.ts +0 -1
  2140. package/ChartsOnAxisClickHandler/index.js +0 -1
  2141. package/ChartsOnAxisClickHandler/package.json +0 -6
  2142. package/ChartsOverlay/package.json +0 -6
  2143. package/ChartsReferenceLine/package.json +0 -6
  2144. package/ChartsSurface/package.json +0 -6
  2145. package/ChartsText/package.json +0 -6
  2146. package/ChartsTooltip/package.json +0 -6
  2147. package/ChartsVoronoiHandler/ChartsVoronoiHandler.d.ts +0 -20
  2148. package/ChartsVoronoiHandler/ChartsVoronoiHandler.js +0 -254
  2149. package/ChartsVoronoiHandler/index.d.ts +0 -1
  2150. package/ChartsVoronoiHandler/index.js +0 -1
  2151. package/ChartsVoronoiHandler/package.json +0 -6
  2152. package/ChartsXAxis/package.json +0 -6
  2153. package/ChartsYAxis/package.json +0 -6
  2154. package/Gauge/package.json +0 -6
  2155. package/LineChart/extremums.d.ts +0 -3
  2156. package/LineChart/formatter.d.ts +0 -3
  2157. package/LineChart/formatter.js +0 -77
  2158. package/LineChart/getColor.d.ts +0 -3
  2159. package/LineChart/legend.d.ts +0 -3
  2160. package/LineChart/legend.js +0 -22
  2161. package/LineChart/package.json +0 -6
  2162. package/LineChart/plugin.d.ts +0 -2
  2163. package/LineChart/plugin.js +0 -9
  2164. package/PieChart/formatter.d.ts +0 -3
  2165. package/PieChart/formatter.js +0 -49
  2166. package/PieChart/getColor.d.ts +0 -3
  2167. package/PieChart/legend.d.ts +0 -3
  2168. package/PieChart/legend.js +0 -25
  2169. package/PieChart/package.json +0 -6
  2170. package/PieChart/plugin.d.ts +0 -2
  2171. package/PieChart/plugin.js +0 -6
  2172. package/ScatterChart/extremums.d.ts +0 -3
  2173. package/ScatterChart/formatter.d.ts +0 -3
  2174. package/ScatterChart/formatter.js +0 -32
  2175. package/ScatterChart/getColor.d.ts +0 -3
  2176. package/ScatterChart/legend.d.ts +0 -3
  2177. package/ScatterChart/legend.js +0 -22
  2178. package/ScatterChart/package.json +0 -6
  2179. package/ScatterChart/plugin.d.ts +0 -2
  2180. package/ScatterChart/plugin.js +0 -9
  2181. package/SparkLineChart/package.json +0 -6
  2182. package/colorPalettes/package.json +0 -6
  2183. package/constants/package.json +0 -6
  2184. package/context/ChartDataProvider/ChartDataProvider.d.ts +0 -42
  2185. package/context/ChartDataProvider/ChartDataProvider.js +0 -108
  2186. package/context/ChartDataProvider/index.d.ts +0 -1
  2187. package/context/ChartDataProvider/useChartDataProviderProps.d.ts +0 -13
  2188. package/context/ChartDataProvider/useChartDataProviderProps.js +0 -52
  2189. package/context/HighlightedProvider/HighlightedContext.d.ts +0 -58
  2190. package/context/HighlightedProvider/HighlightedContext.js +0 -32
  2191. package/context/HighlightedProvider/HighlightedProvider.d.ts +0 -20
  2192. package/context/HighlightedProvider/HighlightedProvider.js +0 -79
  2193. package/context/HighlightedProvider/createIsFaded.d.ts +0 -2
  2194. package/context/HighlightedProvider/createIsFaded.js +0 -12
  2195. package/context/HighlightedProvider/createIsHighlighted.d.ts +0 -2
  2196. package/context/HighlightedProvider/createIsHighlighted.js +0 -12
  2197. package/context/HighlightedProvider/index.d.ts +0 -4
  2198. package/context/HighlightedProvider/index.js +0 -4
  2199. package/context/HighlightedProvider/useHighlighted.d.ts +0 -9
  2200. package/context/HighlightedProvider/useHighlighted.js +0 -22
  2201. package/context/HighlightedProvider/useItemHighlighted.d.ts +0 -21
  2202. package/context/HighlightedProvider/useItemHighlighted.js +0 -27
  2203. package/context/InteractionSelectors.d.ts +0 -382
  2204. package/context/InteractionSelectors.js +0 -12
  2205. package/context/PolarProvider/Polar.types.d.ts +0 -42
  2206. package/context/PolarProvider/PolarContext.d.ts +0 -4
  2207. package/context/PolarProvider/PolarContext.js +0 -13
  2208. package/context/PolarProvider/PolarProvider.js +0 -61
  2209. package/context/PolarProvider/getAxisExtremum.js +0 -48
  2210. package/context/PolarProvider/usePolarContext.js +0 -11
  2211. package/context/package.json +0 -6
  2212. package/hooks/package.json +0 -6
  2213. package/hooks/useChartDimensions.d.ts +0 -10
  2214. package/hooks/useChartDimensions.js +0 -18
  2215. package/internals/calculateMargins.d.ts +0 -7
  2216. package/internals/calculateMargins.js +0 -25
  2217. package/internals/defaultizeColor.d.ts +0 -105
  2218. package/internals/defaultizeColor.js +0 -14
  2219. package/internals/package.json +0 -6
  2220. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.d.ts +0 -1372
  2221. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.js +0 -87
  2222. package/internals/plugins/models/seriesConfig/extremumGetter.types.d.ts +0 -22
  2223. package/models/layout.d.ts +0 -18
  2224. package/models/package.json +0 -6
  2225. package/modern/BarChart/formatter.js +0 -73
  2226. package/modern/BarChart/legend.js +0 -22
  2227. package/modern/BarChart/plugin.js +0 -9
  2228. package/modern/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +0 -82
  2229. package/modern/ChartsOnAxisClickHandler/index.js +0 -1
  2230. package/modern/ChartsVoronoiHandler/ChartsVoronoiHandler.js +0 -254
  2231. package/modern/ChartsVoronoiHandler/index.js +0 -1
  2232. package/modern/LineChart/formatter.js +0 -77
  2233. package/modern/LineChart/legend.js +0 -22
  2234. package/modern/LineChart/plugin.js +0 -9
  2235. package/modern/PieChart/formatter.js +0 -49
  2236. package/modern/PieChart/legend.js +0 -25
  2237. package/modern/PieChart/plugin.js +0 -6
  2238. package/modern/ScatterChart/formatter.js +0 -32
  2239. package/modern/ScatterChart/legend.js +0 -22
  2240. package/modern/ScatterChart/plugin.js +0 -9
  2241. package/modern/context/ChartDataProvider/ChartDataProvider.js +0 -108
  2242. package/modern/context/ChartDataProvider/useChartDataProviderProps.js +0 -52
  2243. package/modern/context/HighlightedProvider/HighlightedContext.js +0 -32
  2244. package/modern/context/HighlightedProvider/HighlightedProvider.js +0 -79
  2245. package/modern/context/HighlightedProvider/createIsFaded.js +0 -12
  2246. package/modern/context/HighlightedProvider/createIsHighlighted.js +0 -12
  2247. package/modern/context/HighlightedProvider/index.js +0 -4
  2248. package/modern/context/HighlightedProvider/useHighlighted.js +0 -22
  2249. package/modern/context/HighlightedProvider/useItemHighlighted.js +0 -27
  2250. package/modern/context/InteractionSelectors.js +0 -12
  2251. package/modern/context/PolarProvider/PolarContext.js +0 -13
  2252. package/modern/context/PolarProvider/PolarProvider.js +0 -61
  2253. package/modern/context/PolarProvider/getAxisExtremum.js +0 -48
  2254. package/modern/context/PolarProvider/usePolarContext.js +0 -11
  2255. package/modern/hooks/useChartDimensions.js +0 -18
  2256. package/modern/internals/calculateMargins.js +0 -25
  2257. package/modern/internals/defaultizeColor.js +0 -14
  2258. package/modern/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.js +0 -87
  2259. package/modern/tests/firePointerEvent.js +0 -35
  2260. package/node/BarChart/AnimatedBarElement.js +0 -29
  2261. package/node/BarChart/BarChart.js +0 -344
  2262. package/node/BarChart/BarClipPath.js +0 -49
  2263. package/node/BarChart/BarElement.js +0 -109
  2264. package/node/BarChart/BarLabel/BarLabel.js +0 -60
  2265. package/node/BarChart/BarLabel/BarLabelItem.js +0 -126
  2266. package/node/BarChart/BarLabel/BarLabelPlot.js +0 -82
  2267. package/node/BarChart/BarLabel/barLabelClasses.js +0 -29
  2268. package/node/BarChart/BarLabel/getBarLabel.js +0 -31
  2269. package/node/BarChart/BarLabel/index.js +0 -25
  2270. package/node/BarChart/BarPlot.js +0 -327
  2271. package/node/BarChart/checkScaleErrors.js +0 -33
  2272. package/node/BarChart/formatter.js +0 -80
  2273. package/node/BarChart/getRadius.js +0 -37
  2274. package/node/BarChart/index.js +0 -49
  2275. package/node/BarChart/legend.js +0 -28
  2276. package/node/BarChart/plugin.js +0 -16
  2277. package/node/BarChart/useBarChartProps.js +0 -154
  2278. package/node/ChartContainer/ChartContainer.js +0 -262
  2279. package/node/ChartContainer/index.js +0 -16
  2280. package/node/ChartContainer/useChartContainerProps.js +0 -64
  2281. package/node/ChartsAxis/ChartsAxis.js +0 -137
  2282. package/node/ChartsAxis/axisClasses.js +0 -14
  2283. package/node/ChartsAxis/index.js +0 -27
  2284. package/node/ChartsAxisHighlight/ChartsAxisHighlight.js +0 -56
  2285. package/node/ChartsAxisHighlight/ChartsAxisHighlightPath.js +0 -40
  2286. package/node/ChartsAxisHighlight/ChartsXAxisHighlight.js +0 -57
  2287. package/node/ChartsAxisHighlight/ChartsYAxisHighlight.js +0 -57
  2288. package/node/ChartsAxisHighlight/chartsAxisHighlightClasses.js +0 -14
  2289. package/node/ChartsAxisHighlight/index.js +0 -49
  2290. package/node/ChartsClipPath/ChartsClipPath.js +0 -59
  2291. package/node/ChartsClipPath/index.js +0 -16
  2292. package/node/ChartsGrid/ChartsGrid.js +0 -97
  2293. package/node/ChartsGrid/ChartsHorizontalGrid.js +0 -44
  2294. package/node/ChartsGrid/ChartsVerticalGrid.js +0 -44
  2295. package/node/ChartsGrid/chartsGridClasses.js +0 -14
  2296. package/node/ChartsGrid/index.js +0 -27
  2297. package/node/ChartsGrid/styledComponents.js +0 -28
  2298. package/node/ChartsLabel/ChartsLabel.js +0 -49
  2299. package/node/ChartsLabel/ChartsLabelGradient.js +0 -141
  2300. package/node/ChartsLabel/ChartsLabelMark.js +0 -117
  2301. package/node/ChartsLabel/index.js +0 -26
  2302. package/node/ChartsLabel/labelClasses.js +0 -22
  2303. package/node/ChartsLabel/labelGradientClasses.js +0 -27
  2304. package/node/ChartsLabel/labelMarkClasses.js +0 -27
  2305. package/node/ChartsLegend/ChartsLegend.js +0 -144
  2306. package/node/ChartsLegend/ContinuousColorLegend.js +0 -276
  2307. package/node/ChartsLegend/PiecewiseColorLegend.js +0 -273
  2308. package/node/ChartsLegend/chartsLegendClasses.js +0 -28
  2309. package/node/ChartsLegend/continuousColorLegendClasses.js +0 -31
  2310. package/node/ChartsLegend/index.js +0 -135
  2311. package/node/ChartsLegend/onClickContextBuilder.js +0 -14
  2312. package/node/ChartsLegend/piecewiseColorDefaultLabelFormatter.js +0 -15
  2313. package/node/ChartsLegend/piecewiseColorLegendClasses.js +0 -31
  2314. package/node/ChartsLegend/useAxis.js +0 -47
  2315. package/node/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +0 -88
  2316. package/node/ChartsOnAxisClickHandler/index.js +0 -16
  2317. package/node/ChartsOverlay/ChartsLoadingOverlay.js +0 -43
  2318. package/node/ChartsOverlay/ChartsNoDataOverlay.js +0 -43
  2319. package/node/ChartsOverlay/ChartsOverlay.js +0 -41
  2320. package/node/ChartsOverlay/index.js +0 -26
  2321. package/node/ChartsReferenceLine/ChartsReferenceLine.js +0 -82
  2322. package/node/ChartsReferenceLine/ChartsXReferenceLine.js +0 -109
  2323. package/node/ChartsReferenceLine/ChartsYReferenceLine.js +0 -109
  2324. package/node/ChartsReferenceLine/chartsReferenceLineClasses.js +0 -14
  2325. package/node/ChartsReferenceLine/common.js +0 -27
  2326. package/node/ChartsReferenceLine/index.js +0 -27
  2327. package/node/ChartsSurface/ChartsSurface.js +0 -115
  2328. package/node/ChartsSurface/index.js +0 -16
  2329. package/node/ChartsText/ChartsText.js +0 -100
  2330. package/node/ChartsText/index.js +0 -12
  2331. package/node/ChartsTooltip/ChartsAxisTooltipContent.js +0 -102
  2332. package/node/ChartsTooltip/ChartsItemTooltipContent.js +0 -71
  2333. package/node/ChartsTooltip/ChartsTooltip.js +0 -201
  2334. package/node/ChartsTooltip/ChartsTooltipContainer.js +0 -286
  2335. package/node/ChartsTooltip/ChartsTooltipTable.js +0 -90
  2336. package/node/ChartsTooltip/chartsTooltipClasses.js +0 -32
  2337. package/node/ChartsTooltip/index.js +0 -114
  2338. package/node/ChartsTooltip/useAxisTooltip.js +0 -92
  2339. package/node/ChartsTooltip/useItemTooltip.js +0 -74
  2340. package/node/ChartsTooltip/utils.js +0 -91
  2341. package/node/ChartsVoronoiHandler/ChartsVoronoiHandler.js +0 -260
  2342. package/node/ChartsVoronoiHandler/index.js +0 -16
  2343. package/node/ChartsXAxis/ChartsXAxis.js +0 -389
  2344. package/node/ChartsXAxis/index.js +0 -16
  2345. package/node/ChartsYAxis/ChartsYAxis.js +0 -332
  2346. package/node/ChartsYAxis/index.js +0 -16
  2347. package/node/Gauge/Gauge.js +0 -155
  2348. package/node/Gauge/GaugeContainer.js +0 -184
  2349. package/node/Gauge/GaugeProvider.js +0 -98
  2350. package/node/Gauge/GaugeReferenceArc.js +0 -44
  2351. package/node/Gauge/GaugeValueArc.js +0 -51
  2352. package/node/Gauge/GaugeValueText.js +0 -77
  2353. package/node/Gauge/gaugeClasses.js +0 -15
  2354. package/node/Gauge/index.js +0 -87
  2355. package/node/Gauge/utils.js +0 -75
  2356. package/node/LineChart/AnimatedArea.js +0 -84
  2357. package/node/LineChart/AnimatedLine.js +0 -84
  2358. package/node/LineChart/AppearingMask.js +0 -49
  2359. package/node/LineChart/AreaElement.js +0 -119
  2360. package/node/LineChart/AreaPlot.js +0 -186
  2361. package/node/LineChart/CircleMarkElement.js +0 -115
  2362. package/node/LineChart/LineChart.js +0 -348
  2363. package/node/LineChart/LineElement.js +0 -119
  2364. package/node/LineChart/LineHighlightElement.js +0 -90
  2365. package/node/LineChart/LineHighlightPlot.js +0 -126
  2366. package/node/LineChart/LinePlot.js +0 -168
  2367. package/node/LineChart/MarkElement.js +0 -123
  2368. package/node/LineChart/MarkPlot.js +0 -191
  2369. package/node/LineChart/formatter.js +0 -84
  2370. package/node/LineChart/index.js +0 -154
  2371. package/node/LineChart/legend.js +0 -28
  2372. package/node/LineChart/markElementClasses.js +0 -28
  2373. package/node/LineChart/plugin.js +0 -16
  2374. package/node/LineChart/useLineChartProps.js +0 -164
  2375. package/node/PieChart/PieArc.js +0 -116
  2376. package/node/PieChart/PieArcLabel.js +0 -121
  2377. package/node/PieChart/PieArcLabelPlot.js +0 -203
  2378. package/node/PieChart/PieArcPlot.js +0 -176
  2379. package/node/PieChart/PieChart.js +0 -313
  2380. package/node/PieChart/PiePlot.js +0 -169
  2381. package/node/PieChart/dataTransform/transition.js +0 -145
  2382. package/node/PieChart/dataTransform/useTransformData.js +0 -55
  2383. package/node/PieChart/formatter.js +0 -56
  2384. package/node/PieChart/getPieCoordinates.js +0 -25
  2385. package/node/PieChart/index.js +0 -82
  2386. package/node/PieChart/legend.js +0 -31
  2387. package/node/PieChart/plugin.js +0 -13
  2388. package/node/ScatterChart/Scatter.js +0 -123
  2389. package/node/ScatterChart/ScatterChart.js +0 -353
  2390. package/node/ScatterChart/ScatterPlot.js +0 -105
  2391. package/node/ScatterChart/formatter.js +0 -39
  2392. package/node/ScatterChart/index.js +0 -38
  2393. package/node/ScatterChart/legend.js +0 -28
  2394. package/node/ScatterChart/plugin.js +0 -16
  2395. package/node/ScatterChart/useScatterChartProps.js +0 -122
  2396. package/node/SparkLineChart/SparkLineChart.js +0 -348
  2397. package/node/SparkLineChart/index.js +0 -16
  2398. package/node/colorPalettes/colorPalettes.js +0 -18
  2399. package/node/colorPalettes/index.js +0 -16
  2400. package/node/constants/index.js +0 -15
  2401. package/node/context/AnimationProvider/AnimationContext.js +0 -17
  2402. package/node/context/AnimationProvider/AnimationProvider.js +0 -60
  2403. package/node/context/AnimationProvider/index.js +0 -49
  2404. package/node/context/AnimationProvider/useSkipAnimation.js +0 -25
  2405. package/node/context/ChartDataProvider/ChartDataProvider.js +0 -114
  2406. package/node/context/ChartDataProvider/useChartDataProviderProps.js +0 -59
  2407. package/node/context/ChartProvider/ChartContext.js +0 -15
  2408. package/node/context/ChartProvider/ChartProvider.js +0 -45
  2409. package/node/context/ChartProvider/index.js +0 -38
  2410. package/node/context/ChartProvider/useChartContext.js +0 -18
  2411. package/node/context/HighlightedProvider/HighlightedContext.js +0 -38
  2412. package/node/context/HighlightedProvider/HighlightedProvider.js +0 -85
  2413. package/node/context/HighlightedProvider/createIsFaded.js +0 -19
  2414. package/node/context/HighlightedProvider/createIsHighlighted.js +0 -19
  2415. package/node/context/HighlightedProvider/index.js +0 -49
  2416. package/node/context/HighlightedProvider/useHighlighted.js +0 -27
  2417. package/node/context/HighlightedProvider/useItemHighlighted.js +0 -32
  2418. package/node/context/InteractionSelectors.js +0 -18
  2419. package/node/context/PolarProvider/PolarContext.js +0 -20
  2420. package/node/context/PolarProvider/PolarProvider.js +0 -62
  2421. package/node/context/PolarProvider/getAxisExtremum.js +0 -49
  2422. package/node/context/PolarProvider/index.js +0 -1
  2423. package/node/context/PolarProvider/usePolarContext.js +0 -12
  2424. package/node/context/index.js +0 -27
  2425. package/node/hooks/index.js +0 -154
  2426. package/node/hooks/useAxis.js +0 -53
  2427. package/node/hooks/useAxisEvents.js +0 -173
  2428. package/node/hooks/useChartDimensions.js +0 -25
  2429. package/node/hooks/useChartGradientId.js +0 -56
  2430. package/node/hooks/useChartId.js +0 -14
  2431. package/node/hooks/useColorScale.js +0 -35
  2432. package/node/hooks/useDrawingArea.js +0 -14
  2433. package/node/hooks/useInteractionItemProps.js +0 -64
  2434. package/node/hooks/useLegend.js +0 -41
  2435. package/node/hooks/useMounted.js +0 -25
  2436. package/node/hooks/useScale.js +0 -31
  2437. package/node/hooks/useSeries.js +0 -74
  2438. package/node/hooks/useSvgRef.js +0 -15
  2439. package/node/hooks/useTicks.js +0 -89
  2440. package/node/hooks/useZAxis.js +0 -33
  2441. package/node/index.js +0 -298
  2442. package/node/internals/calculateMargins.js +0 -33
  2443. package/node/internals/cleanId.js +0 -12
  2444. package/node/internals/colorScale.js +0 -24
  2445. package/node/internals/components/AxisSharedComponents.js +0 -33
  2446. package/node/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +0 -141
  2447. package/node/internals/components/ChartsAxesGradients/ChartsContinuousGradient.js +0 -63
  2448. package/node/internals/components/ChartsAxesGradients/ChartsContinuousGradientObjectBound.js +0 -69
  2449. package/node/internals/components/ChartsAxesGradients/ChartsPiecewiseGradient.js +0 -53
  2450. package/node/internals/components/ChartsAxesGradients/index.js +0 -16
  2451. package/node/internals/components/ChartsWrapper/ChartsWrapper.js +0 -72
  2452. package/node/internals/components/ChartsWrapper/index.js +0 -16
  2453. package/node/internals/configInit.js +0 -26
  2454. package/node/internals/consumeSlots.js +0 -109
  2455. package/node/internals/consumeThemeProps.js +0 -78
  2456. package/node/internals/defaultizeColor.js +0 -21
  2457. package/node/internals/defaultizeValueFormatter.js +0 -17
  2458. package/node/internals/domUtils.js +0 -138
  2459. package/node/internals/geometry.js +0 -40
  2460. package/node/internals/getCurve.js +0 -45
  2461. package/node/internals/getLabel.js +0 -9
  2462. package/node/internals/getPercentageValue.js +0 -34
  2463. package/node/internals/getSVGPoint.js +0 -17
  2464. package/node/internals/getScale.js +0 -23
  2465. package/node/internals/getSymbol.js +0 -27
  2466. package/node/internals/getWordsByLines.js +0 -21
  2467. package/node/internals/index.js +0 -419
  2468. package/node/internals/isBandScale.js +0 -9
  2469. package/node/internals/isCartesian.js +0 -14
  2470. package/node/internals/isDefined.js +0 -9
  2471. package/node/internals/isInfinity.js +0 -9
  2472. package/node/internals/notNull.js +0 -9
  2473. package/node/internals/plugins/allPlugins.js +0 -12
  2474. package/node/internals/plugins/corePlugins/corePlugins.js +0 -14
  2475. package/node/internals/plugins/corePlugins/index.js +0 -12
  2476. package/node/internals/plugins/corePlugins/useChartDimensions/index.js +0 -27
  2477. package/node/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.js +0 -183
  2478. package/node/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.selectors.js +0 -32
  2479. package/node/internals/plugins/corePlugins/useChartId/index.js +0 -27
  2480. package/node/internals/plugins/corePlugins/useChartId/useChartId.js +0 -41
  2481. package/node/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +0 -15
  2482. package/node/internals/plugins/corePlugins/useChartId/useChartId.utils.js +0 -12
  2483. package/node/internals/plugins/corePlugins/useChartSeries/index.js +0 -27
  2484. package/node/internals/plugins/corePlugins/useChartSeries/processSeries.js +0 -58
  2485. package/node/internals/plugins/corePlugins/useChartSeries/useChartSeries.js +0 -80
  2486. package/node/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.js +0 -11
  2487. package/node/internals/plugins/corePlugins/useChartSeries/useChartSeries.types.js +0 -5
  2488. package/node/internals/plugins/corePlugins/useChartSeries/useColorProcessor.js +0 -27
  2489. package/node/internals/plugins/featurePlugins/useChartCartesianAxis/computeAxisValue.js +0 -134
  2490. package/node/internals/plugins/featurePlugins/useChartCartesianAxis/createAxisFilterMapper.js +0 -69
  2491. package/node/internals/plugins/featurePlugins/useChartCartesianAxis/defaultizeAxis.js +0 -31
  2492. package/node/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisExtremum.js +0 -29
  2493. package/node/internals/plugins/featurePlugins/useChartCartesianAxis/index.js +0 -47
  2494. package/node/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.js +0 -76
  2495. package/node/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.selectors.js +0 -96
  2496. package/node/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxis.types.js +0 -5
  2497. package/node/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.js +0 -26
  2498. package/node/internals/plugins/featurePlugins/useChartCartesianAxis/zoom.types.js +0 -5
  2499. package/node/internals/plugins/featurePlugins/useChartInteraction/index.js +0 -27
  2500. package/node/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +0 -81
  2501. package/node/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +0 -16
  2502. package/node/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js +0 -5
  2503. package/node/internals/plugins/featurePlugins/useChartZAxis/index.js +0 -27
  2504. package/node/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.js +0 -94
  2505. package/node/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.selectors.js +0 -9
  2506. package/node/internals/plugins/featurePlugins/useChartZAxis/useChartZAxis.types.js +0 -5
  2507. package/node/internals/plugins/featurePlugins/useChartZAxis/utils.js +0 -1
  2508. package/node/internals/plugins/models/chart.js +0 -5
  2509. package/node/internals/plugins/models/helpers.js +0 -5
  2510. package/node/internals/plugins/models/index.js +0 -49
  2511. package/node/internals/plugins/models/plugin.js +0 -5
  2512. package/node/internals/plugins/models/seriesConfig/colorProcessor.types.js +0 -5
  2513. package/node/internals/plugins/models/seriesConfig/extremumGetter.types.js +0 -5
  2514. package/node/internals/plugins/models/seriesConfig/index.js +0 -49
  2515. package/node/internals/plugins/models/seriesConfig/seriesConfig.types.js +0 -5
  2516. package/node/internals/plugins/models/seriesConfig/seriesProcessor.types.js +0 -5
  2517. package/node/internals/plugins/utils/ChartStore.js +0 -31
  2518. package/node/internals/plugins/utils/selectors.js +0 -44
  2519. package/node/internals/stackSeries.js +0 -101
  2520. package/node/internals/store/extractPluginParamsFromProps.js +0 -36
  2521. package/node/internals/store/useChartModels.js +0 -73
  2522. package/node/internals/store/useCharts.js +0 -92
  2523. package/node/internals/store/useCharts.types.js +0 -5
  2524. package/node/internals/store/useSelector.js +0 -13
  2525. package/node/internals/store/useStore.js +0 -15
  2526. package/node/internals/ts-generic.js +0 -5
  2527. package/node/internals/useStringInterpolator.js +0 -30
  2528. package/node/models/axis.js +0 -18
  2529. package/node/models/colorMapping.js +0 -5
  2530. package/node/models/index.js +0 -38
  2531. package/node/models/layout.js +0 -5
  2532. package/node/models/seriesType/bar.js +0 -5
  2533. package/node/models/seriesType/common.js +0 -5
  2534. package/node/models/seriesType/config.js +0 -5
  2535. package/node/models/seriesType/index.js +0 -71
  2536. package/node/models/seriesType/line.js +0 -5
  2537. package/node/models/seriesType/pie.js +0 -5
  2538. package/node/models/seriesType/scatter.js +0 -5
  2539. package/node/models/stacking.js +0 -5
  2540. package/node/models/z-axis.js +0 -5
  2541. package/node/tests/firePointerEvent.js +0 -42
  2542. package/node/themeAugmentation/index.js +0 -1
  2543. package/tests/firePointerEvent.js +0 -35
  2544. package/themeAugmentation/package.json +0 -6
  2545. /package/{node/BarChart → BarChart/seriesConfig}/extremums.js +0 -0
  2546. /package/{node/BarChart → BarChart/seriesConfig}/getColor.js +0 -0
  2547. /package/{context/ChartDataProvider/index.js → ChartDataProvider/index.d.ts} +0 -0
  2548. /package/{node/context/ChartDataProvider → ChartDataProvider}/index.js +0 -0
  2549. /package/{node/LineChart → LineChart/seriesConfig}/extremums.js +0 -0
  2550. /package/{node/LineChart → LineChart/seriesConfig}/getColor.js +0 -0
  2551. /package/{node/PieChart → PieChart/seriesConfig}/getColor.js +0 -0
  2552. /package/{node/BarChart/BarLabel/BarLabel.types.js → RadarChart/RadarDataProvider/radar.types.js} +0 -0
  2553. /package/{node/BarChart/types.js → RadarChart/RadarGrid/RadarGrid.types.js} +0 -0
  2554. /package/{node/ChartsAxisHighlight/ChartsAxisHighlight.types.js → RadarChart/RadarSeriesPlot/RadarSeriesPlot.types.js} +0 -0
  2555. /package/{node/ChartsLegend/chartsLegend.types.js → ScatterChart/ScatterMarker.types.js} +0 -0
  2556. /package/{node/ScatterChart → ScatterChart/seriesConfig}/extremums.js +0 -0
  2557. /package/{node/ScatterChart → ScatterChart/seriesConfig}/getColor.js +0 -0
  2558. /package/{context/PolarProvider/Polar.types.js → esm/BarChart/BarLabel/BarLabel.types.js} +0 -0
  2559. /package/{BarChart → esm/BarChart/seriesConfig}/extremums.js +0 -0
  2560. /package/{BarChart → esm/BarChart/seriesConfig}/getColor.js +0 -0
  2561. /package/{internals/plugins/models/seriesConfig/extremumGetter.types.js → esm/BarChart/types.js} +0 -0
  2562. /package/{modern/context/ChartDataProvider/index.js → esm/ChartDataProvider/index.d.ts} +0 -0
  2563. /package/{models/layout.js → esm/ChartsAxisHighlight/ChartsAxisHighlight.types.js} +0 -0
  2564. /package/{modern/context/PolarProvider/Polar.types.js → esm/ChartsLegend/chartsLegend.types.js} +0 -0
  2565. /package/{modern/internals/plugins/models/seriesConfig/extremumGetter.types.js → esm/ChartsLegend/colorLegend.types.js} +0 -0
  2566. /package/{modern/models/layout.js → esm/ChartsLegend/direction.js} +0 -0
  2567. /package/{LineChart → esm/LineChart/seriesConfig}/extremums.js +0 -0
  2568. /package/{LineChart → esm/LineChart/seriesConfig}/getColor.js +0 -0
  2569. /package/{PieChart → esm/PieChart/seriesConfig}/getColor.js +0 -0
  2570. /package/{ScatterChart → esm/ScatterChart/seriesConfig}/extremums.js +0 -0
  2571. /package/{ScatterChart → esm/ScatterChart/seriesConfig}/getColor.js +0 -0
  2572. /package/{context/PolarProvider/PolarProvider.d.ts → esm/hooks/useAxisEvents.d.ts} +0 -0
  2573. /package/{context/PolarProvider/getAxisExtremum.d.ts → esm/hooks/useAxisEvents.js} +0 -0
  2574. /package/{context/PolarProvider/index.d.ts → esm/internals/plugins/featurePlugins/useChartZAxis/utils.d.ts} +0 -0
  2575. /package/{context/PolarProvider/index.js → esm/internals/plugins/featurePlugins/useChartZAxis/utils.js} +0 -0
  2576. /package/{modern/context/PolarProvider → esm/themeAugmentation}/index.js +0 -0
  2577. /package/{node/ChartsLegend/colorLegend.types.js → internals/plugins/featurePlugins/useChartHighlight/highlightConfig.types.js} +0 -0
  2578. /package/{node/ChartsLegend/direction.js → internals/plugins/featurePlugins/useChartHighlight/useChartHighlight.types.js} +0 -0
  2579. /package/{node/ChartsLegend/legend.types.js → internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.js} +0 -0
  2580. /package/{node/ChartsLegend/legendContext.types.js → internals/plugins/featurePlugins/useChartVoronoi/useChartVoronoi.types.js} +0 -0
  2581. /package/{node/ChartsLegend/piecewiseColorLegend.types.js → internals/plugins/models/seriesConfig/cartesianExtremumGetter.types.js} +0 -0
  2582. /package/{node/ChartsTooltip/ChartTooltip.types.js → internals/plugins/models/seriesConfig/getSeriesWithDefaultValues.types.js} +0 -0
  2583. /package/{node/context/AnimationProvider/Animation.types.js → internals/plugins/models/seriesConfig/legendGetter.types.js} +0 -0
  2584. /package/{node/context/ChartProvider/ChartProvider.types.js → internals/plugins/models/seriesConfig/polarExtremumGetter.types.js} +0 -0
  2585. /package/{node/context/PolarProvider/Polar.types.js → internals/plugins/models/seriesConfig/tooltipGetter.types.js} +0 -0
  2586. /package/{node/context/context.types.js → models/curve.js} +0 -0
  2587. /package/{node/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types.js → models/position.js} +0 -0
  2588. /package/{node/internals/plugins/corePlugins/useChartId/useChartId.types.js → models/seriesType/radar.js} +0 -0
  2589. /package/modern/BarChart/{extremums.js → seriesConfig/extremums.js} +0 -0
  2590. /package/modern/BarChart/{getColor.js → seriesConfig/getColor.js} +0 -0
  2591. /package/modern/LineChart/{extremums.js → seriesConfig/extremums.js} +0 -0
  2592. /package/modern/LineChart/{getColor.js → seriesConfig/getColor.js} +0 -0
  2593. /package/modern/PieChart/{getColor.js → seriesConfig/getColor.js} +0 -0
  2594. /package/modern/ScatterChart/{extremums.js → seriesConfig/extremums.js} +0 -0
  2595. /package/modern/ScatterChart/{getColor.js → seriesConfig/getColor.js} +0 -0
  2596. /package/{context/PolarProvider/usePolarContext.d.ts → modern/hooks/useAxisEvents.d.ts} +0 -0
@@ -1,861 +1,861 @@
1
1
  import * as React from 'react';
2
- import { BarLabelOwnerState } from './BarLabel.types';
2
+ import { BarLabelOwnerState } from "./BarLabel.types.js";
3
3
  export declare const BarLabelComponent: import("@emotion/styled").StyledComponent<Pick<import("@react-spring/web").AnimatedProps<{
4
- style?: {
5
- accentColor?: import("csstype").Property.AccentColor | undefined;
6
- alignContent?: import("csstype").Property.AlignContent | undefined;
7
- alignItems?: import("csstype").Property.AlignItems | undefined;
8
- alignSelf?: import("csstype").Property.AlignSelf | undefined;
9
- alignTracks?: import("csstype").Property.AlignTracks | undefined;
10
- animationComposition?: import("csstype").Property.AnimationComposition | undefined;
11
- animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
12
- animationDirection?: import("csstype").Property.AnimationDirection | undefined;
13
- animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
14
- animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
15
- animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
16
- animationName?: import("csstype").Property.AnimationName | undefined;
17
- animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
18
- animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
19
- animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
20
- animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
21
- animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
22
- appearance?: import("csstype").Property.Appearance | undefined;
23
- aspectRatio?: import("csstype").Property.AspectRatio | undefined;
24
- backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
25
- backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
26
- backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
27
- backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
28
- backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
29
- backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
30
- backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
31
- backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
32
- backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
33
- backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
34
- backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
35
- backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
36
- blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
37
- blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
38
- borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
39
- borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
40
- borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
41
- borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
42
- borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
43
- borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
44
- borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
45
- borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
46
- borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
47
- borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
48
- borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
49
- borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
50
- borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
51
- borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
52
- borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
53
- borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
54
- borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
55
- borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
56
- borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
57
- borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
58
- borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
59
- borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
60
- borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
61
- borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
62
- borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
63
- borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
64
- borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
65
- borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
66
- borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
67
- borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
68
- borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
69
- borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
70
- borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
71
- borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
72
- borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
73
- borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
74
- borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
75
- borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
76
- borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
77
- borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
78
- borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
79
- borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
80
- borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
81
- borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
82
- borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
83
- bottom?: import("csstype").Property.Bottom<string | number> | undefined;
84
- boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
85
- boxShadow?: import("csstype").Property.BoxShadow | undefined;
86
- boxSizing?: import("csstype").Property.BoxSizing | undefined;
87
- breakAfter?: import("csstype").Property.BreakAfter | undefined;
88
- breakBefore?: import("csstype").Property.BreakBefore | undefined;
89
- breakInside?: import("csstype").Property.BreakInside | undefined;
90
- captionSide?: import("csstype").Property.CaptionSide | undefined;
91
- caretColor?: import("csstype").Property.CaretColor | undefined;
92
- caretShape?: import("csstype").Property.CaretShape | undefined;
93
- clear?: import("csstype").Property.Clear | undefined;
94
- clipPath?: import("csstype").Property.ClipPath | undefined;
95
- color?: import("csstype").Property.Color | undefined;
96
- colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
97
- colorScheme?: import("csstype").Property.ColorScheme | undefined;
98
- columnCount?: import("csstype").Property.ColumnCount | undefined;
99
- columnFill?: import("csstype").Property.ColumnFill | undefined;
100
- columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
101
- columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
102
- columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
103
- columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
104
- columnSpan?: import("csstype").Property.ColumnSpan | undefined;
105
- columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
106
- contain?: import("csstype").Property.Contain | undefined;
107
- containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
108
- containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
109
- containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
110
- containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
111
- containerName?: import("csstype").Property.ContainerName | undefined;
112
- containerType?: import("csstype").Property.ContainerType | undefined;
113
- content?: import("csstype").Property.Content | undefined;
114
- contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
115
- counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
116
- counterReset?: import("csstype").Property.CounterReset | undefined;
117
- counterSet?: import("csstype").Property.CounterSet | undefined;
118
- cursor?: import("csstype").Property.Cursor | undefined;
119
- direction?: import("csstype").Property.Direction | undefined;
120
- display?: import("csstype").Property.Display | undefined;
121
- emptyCells?: import("csstype").Property.EmptyCells | undefined;
122
- filter?: import("csstype").Property.Filter | undefined;
123
- flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
124
- flexDirection?: import("csstype").Property.FlexDirection | undefined;
125
- flexGrow?: import("csstype").Property.FlexGrow | undefined;
126
- flexShrink?: import("csstype").Property.FlexShrink | undefined;
127
- flexWrap?: import("csstype").Property.FlexWrap | undefined;
128
- float?: import("csstype").Property.Float | undefined;
129
- fontFamily?: import("csstype").Property.FontFamily | undefined;
130
- fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
131
- fontKerning?: import("csstype").Property.FontKerning | undefined;
132
- fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
133
- fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
134
- fontPalette?: import("csstype").Property.FontPalette | undefined;
135
- fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
136
- fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
137
- fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
138
- fontStretch?: import("csstype").Property.FontStretch | undefined;
139
- fontStyle?: import("csstype").Property.FontStyle | undefined;
140
- fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
141
- fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
142
- fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
143
- fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
144
- fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
145
- fontVariant?: import("csstype").Property.FontVariant | undefined;
146
- fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
147
- fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
148
- fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
149
- fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
150
- fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
151
- fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
152
- fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
153
- fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
154
- fontWeight?: import("csstype").Property.FontWeight | undefined;
155
- forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
156
- gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
157
- gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
158
- gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
159
- gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
160
- gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
161
- gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
162
- gridRowStart?: import("csstype").Property.GridRowStart | undefined;
163
- gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
164
- gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
165
- gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
166
- hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
167
- height?: import("csstype").Property.Height<string | number> | undefined;
168
- hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
169
- hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
170
- hyphens?: import("csstype").Property.Hyphens | undefined;
171
- imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
172
- imageRendering?: import("csstype").Property.ImageRendering | undefined;
173
- imageResolution?: import("csstype").Property.ImageResolution | undefined;
174
- initialLetter?: import("csstype").Property.InitialLetter | undefined;
175
- inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
176
- inputSecurity?: import("csstype").Property.InputSecurity | undefined;
177
- insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
178
- insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
179
- insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
180
- insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
181
- isolation?: import("csstype").Property.Isolation | undefined;
182
- justifyContent?: import("csstype").Property.JustifyContent | undefined;
183
- justifyItems?: import("csstype").Property.JustifyItems | undefined;
184
- justifySelf?: import("csstype").Property.JustifySelf | undefined;
185
- justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
186
- left?: import("csstype").Property.Left<string | number> | undefined;
187
- letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
188
- lineBreak?: import("csstype").Property.LineBreak | undefined;
189
- lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
190
- lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
191
- listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
192
- listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
193
- listStyleType?: import("csstype").Property.ListStyleType | undefined;
194
- marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
195
- marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
196
- marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
197
- marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
198
- marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
199
- marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
200
- marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
201
- marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
202
- marginTrim?: import("csstype").Property.MarginTrim | undefined;
203
- maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
204
- maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
205
- maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
206
- maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
207
- maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
208
- maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
209
- maskClip?: import("csstype").Property.MaskClip | undefined;
210
- maskComposite?: import("csstype").Property.MaskComposite | undefined;
211
- maskImage?: import("csstype").Property.MaskImage | undefined;
212
- maskMode?: import("csstype").Property.MaskMode | undefined;
213
- maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
214
- maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
215
- maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
216
- maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
217
- maskType?: import("csstype").Property.MaskType | undefined;
218
- masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
219
- mathDepth?: import("csstype").Property.MathDepth | undefined;
220
- mathShift?: import("csstype").Property.MathShift | undefined;
221
- mathStyle?: import("csstype").Property.MathStyle | undefined;
222
- maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
223
- maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
224
- maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
225
- maxLines?: import("csstype").Property.MaxLines | undefined;
226
- maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
227
- minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
228
- minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
229
- minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
230
- minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
231
- mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
232
- motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
233
- motionPath?: import("csstype").Property.OffsetPath | undefined;
234
- motionRotation?: import("csstype").Property.OffsetRotate | undefined;
235
- objectFit?: import("csstype").Property.ObjectFit | undefined;
236
- objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
237
- offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
238
- offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
239
- offsetPath?: import("csstype").Property.OffsetPath | undefined;
240
- offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
241
- offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
242
- offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
243
- opacity?: import("csstype").Property.Opacity | undefined;
244
- order?: import("csstype").Property.Order | undefined;
245
- orphans?: import("csstype").Property.Orphans | undefined;
246
- outlineColor?: import("csstype").Property.OutlineColor | undefined;
247
- outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
248
- outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
249
- outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
250
- overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
251
- overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
252
- overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
253
- overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
254
- overflowInline?: import("csstype").Property.OverflowInline | undefined;
255
- overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
256
- overflowX?: import("csstype").Property.OverflowX | undefined;
257
- overflowY?: import("csstype").Property.OverflowY | undefined;
258
- overlay?: import("csstype").Property.Overlay | undefined;
259
- overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
260
- overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
261
- overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
262
- overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
263
- paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
264
- paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
265
- paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
266
- paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
267
- paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
268
- paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
269
- paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
270
- paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
271
- page?: import("csstype").Property.Page | undefined;
272
- pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
273
- pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
274
- pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
275
- paintOrder?: import("csstype").Property.PaintOrder | undefined;
276
- perspective?: import("csstype").Property.Perspective<string | number> | undefined;
277
- perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
278
- pointerEvents?: import("csstype").Property.PointerEvents | undefined;
279
- position?: import("csstype").Property.Position | undefined;
280
- printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
281
- quotes?: import("csstype").Property.Quotes | undefined;
282
- resize?: import("csstype").Property.Resize | undefined;
283
- right?: import("csstype").Property.Right<string | number> | undefined;
284
- rotate?: (string | number) | undefined;
285
- rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
286
- rubyAlign?: import("csstype").Property.RubyAlign | undefined;
287
- rubyMerge?: import("csstype").Property.RubyMerge | undefined;
288
- rubyPosition?: import("csstype").Property.RubyPosition | undefined;
289
- scale?: string | number | readonly [number, number] | undefined;
290
- scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
291
- scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
292
- scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
293
- scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
294
- scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
295
- scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
296
- scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
297
- scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
298
- scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
299
- scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
300
- scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
301
- scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
302
- scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
303
- scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
304
- scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
305
- scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
306
- scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
307
- scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
308
- scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
309
- scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
310
- scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
311
- scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
312
- scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
313
- scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
314
- scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
315
- scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
316
- scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
317
- scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
318
- scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
319
- shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
320
- shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
321
- shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
322
- tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
323
- tableLayout?: import("csstype").Property.TableLayout | undefined;
324
- textAlign?: import("csstype").Property.TextAlign | undefined;
325
- textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
326
- textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
327
- textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
328
- textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
329
- textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
330
- textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
331
- textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
332
- textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
333
- textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
334
- textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
335
- textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
336
- textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
337
- textJustify?: import("csstype").Property.TextJustify | undefined;
338
- textOrientation?: import("csstype").Property.TextOrientation | undefined;
339
- textOverflow?: import("csstype").Property.TextOverflow | undefined;
340
- textRendering?: import("csstype").Property.TextRendering | undefined;
341
- textShadow?: import("csstype").Property.TextShadow | undefined;
342
- textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
343
- textTransform?: import("csstype").Property.TextTransform | undefined;
344
- textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
345
- textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
346
- textWrap?: import("csstype").Property.TextWrap | undefined;
347
- timelineScope?: import("csstype").Property.TimelineScope | undefined;
348
- top?: import("csstype").Property.Top<string | number> | undefined;
349
- touchAction?: import("csstype").Property.TouchAction | undefined;
350
- transform?: string | undefined;
351
- transformBox?: import("csstype").Property.TransformBox | undefined;
352
- transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
353
- transformStyle?: import("csstype").Property.TransformStyle | undefined;
354
- transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
355
- transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
356
- transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
357
- transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
358
- transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
359
- translate?: (string | number) | readonly [string | number, string | number] | undefined;
360
- unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
361
- userSelect?: import("csstype").Property.UserSelect | undefined;
362
- verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
363
- viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
364
- viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
365
- viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
366
- viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
367
- visibility?: import("csstype").Property.Visibility | undefined;
368
- whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
369
- whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
370
- whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
371
- widows?: import("csstype").Property.Widows | undefined;
372
- width?: import("csstype").Property.Width<string | number> | undefined;
373
- willChange?: import("csstype").Property.WillChange | undefined;
374
- wordBreak?: import("csstype").Property.WordBreak | undefined;
375
- wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
376
- wordWrap?: import("csstype").Property.WordWrap | undefined;
377
- writingMode?: import("csstype").Property.WritingMode | undefined;
378
- zIndex?: import("csstype").Property.ZIndex | undefined;
379
- zoom?: import("csstype").Property.Zoom | undefined;
380
- all?: import("csstype").Globals | undefined;
381
- animation?: import("csstype").Property.Animation<string & {}> | undefined;
382
- animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
383
- background?: import("csstype").Property.Background<string | number> | undefined;
384
- backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
385
- border?: import("csstype").Property.Border<string | number> | undefined;
386
- borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
387
- borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
388
- borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
389
- borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
390
- borderColor?: import("csstype").Property.BorderColor | undefined;
391
- borderImage?: import("csstype").Property.BorderImage | undefined;
392
- borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
393
- borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
394
- borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
395
- borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
396
- borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
397
- borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
398
- borderStyle?: import("csstype").Property.BorderStyle | undefined;
399
- borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
400
- borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
401
- caret?: import("csstype").Property.Caret | undefined;
402
- columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
403
- columns?: import("csstype").Property.Columns<string | number> | undefined;
404
- containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
405
- container?: import("csstype").Property.Container | undefined;
406
- flex?: import("csstype").Property.Flex<string | number> | undefined;
407
- flexFlow?: import("csstype").Property.FlexFlow | undefined;
408
- font?: import("csstype").Property.Font | undefined;
409
- gap?: import("csstype").Property.Gap<string | number> | undefined;
410
- grid?: import("csstype").Property.Grid | undefined;
411
- gridArea?: import("csstype").Property.GridArea | undefined;
412
- gridColumn?: import("csstype").Property.GridColumn | undefined;
413
- gridRow?: import("csstype").Property.GridRow | undefined;
414
- gridTemplate?: import("csstype").Property.GridTemplate | undefined;
415
- inset?: import("csstype").Property.Inset<string | number> | undefined;
416
- insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
417
- insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
418
- lineClamp?: import("csstype").Property.LineClamp | undefined;
419
- listStyle?: import("csstype").Property.ListStyle | undefined;
420
- margin?: import("csstype").Property.Margin<string | number> | undefined;
421
- marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
422
- marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
423
- mask?: import("csstype").Property.Mask<string | number> | undefined;
424
- maskBorder?: import("csstype").Property.MaskBorder | undefined;
425
- motion?: import("csstype").Property.Offset<string | number> | undefined;
426
- offset?: import("csstype").Property.Offset<string | number> | undefined;
427
- outline?: import("csstype").Property.Outline<string | number> | undefined;
428
- overflow?: import("csstype").Property.Overflow | undefined;
429
- overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
430
- padding?: import("csstype").Property.Padding<string | number> | undefined;
431
- paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
432
- paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
433
- placeContent?: import("csstype").Property.PlaceContent | undefined;
434
- placeItems?: import("csstype").Property.PlaceItems | undefined;
435
- placeSelf?: import("csstype").Property.PlaceSelf | undefined;
436
- scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
437
- scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
438
- scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
439
- scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
440
- scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
441
- scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
442
- scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
443
- scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
444
- textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
445
- textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
446
- transition?: import("csstype").Property.Transition<string & {}> | undefined;
447
- viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
448
- MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
449
- MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
450
- MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
451
- MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
452
- MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
453
- MozAnimationName?: import("csstype").Property.AnimationName | undefined;
454
- MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
455
- MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
456
- MozAppearance?: import("csstype").Property.MozAppearance | undefined;
457
- MozBinding?: import("csstype").Property.MozBinding | undefined;
458
- MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
459
- MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
460
- MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
461
- MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
462
- MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
463
- MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
464
- MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
465
- MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
466
- MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
467
- MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
468
- MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
469
- MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
470
- MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
471
- MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
472
- MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
473
- MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
474
- MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
475
- MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
476
- MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
477
- MozHyphens?: import("csstype").Property.Hyphens | undefined;
478
- MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
479
- MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
480
- MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
481
- MozOrient?: import("csstype").Property.MozOrient | undefined;
482
- MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
483
- MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
484
- MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
485
- MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
486
- MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
487
- MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
488
- MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
489
- MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
490
- MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
491
- MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
492
- MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
493
- MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
494
- MozUserModify?: import("csstype").Property.MozUserModify | undefined;
495
- MozUserSelect?: import("csstype").Property.UserSelect | undefined;
496
- MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
497
- MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
498
- msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
499
- msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
500
- msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
501
- msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
502
- msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
503
- msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
504
- msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
505
- msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
506
- msFilter?: import("csstype").Property.MsFilter | undefined;
507
- msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
508
- msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
509
- msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
510
- msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
511
- msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
512
- msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
513
- msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
514
- msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
515
- msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
516
- msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
517
- msHyphens?: import("csstype").Property.Hyphens | undefined;
518
- msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
519
- msLineBreak?: import("csstype").Property.LineBreak | undefined;
520
- msOrder?: import("csstype").Property.Order | undefined;
521
- msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
522
- msOverflowX?: import("csstype").Property.OverflowX | undefined;
523
- msOverflowY?: import("csstype").Property.OverflowY | undefined;
524
- msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
525
- msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
526
- msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
527
- msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
528
- msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
529
- msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
530
- msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
531
- msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
532
- msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
533
- msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
534
- msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
535
- msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
536
- msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
537
- msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
538
- msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
539
- msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
540
- msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
541
- msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
542
- msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
543
- msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
544
- msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
545
- msTouchAction?: import("csstype").Property.TouchAction | undefined;
546
- msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
547
- msTransform?: import("csstype").Property.Transform | undefined;
548
- msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
549
- msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
550
- msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
551
- msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
552
- msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
553
- msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
554
- msWordBreak?: import("csstype").Property.WordBreak | undefined;
555
- msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
556
- msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
557
- msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
558
- msWritingMode?: import("csstype").Property.WritingMode | undefined;
559
- WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
560
- WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
561
- WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
562
- WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
563
- WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
564
- WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
565
- WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
566
- WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
567
- WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
568
- WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
569
- WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
570
- WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
571
- WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
572
- WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
573
- WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
574
- WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
575
- WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
576
- WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
577
- WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
578
- WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
579
- WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
580
- WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
581
- WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
582
- WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
583
- WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
584
- WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
585
- WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
586
- WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
587
- WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
588
- WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
589
- WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
590
- WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
591
- WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
592
- WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
593
- WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
594
- WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
595
- WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
596
- WebkitFilter?: import("csstype").Property.Filter | undefined;
597
- WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
598
- WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
599
- WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
600
- WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
601
- WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
602
- WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
603
- WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
604
- WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
605
- WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
606
- WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
607
- WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
608
- WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
609
- WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
610
- WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
611
- WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
612
- WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
613
- WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
614
- WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
615
- WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
616
- WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
617
- WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
618
- WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
619
- WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
620
- WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
621
- WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
622
- WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
623
- WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
624
- WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
625
- WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
626
- WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
627
- WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
628
- WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
629
- WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
630
- WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
631
- WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
632
- WebkitOrder?: import("csstype").Property.Order | undefined;
633
- WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
634
- WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
635
- WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
636
- WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
637
- WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
638
- WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
639
- WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
640
- WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
641
- WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
642
- WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
643
- WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
644
- WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
645
- WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
646
- WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
647
- WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
648
- WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
649
- WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
650
- WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
651
- WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
652
- WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
653
- WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
654
- WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
655
- WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
656
- WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
657
- WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
658
- WebkitTransform?: import("csstype").Property.Transform | undefined;
659
- WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
660
- WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
661
- WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
662
- WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
663
- WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
664
- WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
665
- WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
666
- WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
667
- WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
668
- MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
669
- MozBorderImage?: import("csstype").Property.BorderImage | undefined;
670
- MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
671
- MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
672
- MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
673
- msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
674
- msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
675
- msFlex?: import("csstype").Property.Flex<string | number> | undefined;
676
- msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
677
- msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
678
- msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
679
- msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
680
- WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
681
- WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
682
- WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
683
- WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
684
- WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
685
- WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
686
- WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
687
- WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
688
- WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
689
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
690
- WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
691
- WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
692
- WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
693
- azimuth?: import("csstype").Property.Azimuth | undefined;
694
- boxAlign?: import("csstype").Property.BoxAlign | undefined;
695
- boxDirection?: import("csstype").Property.BoxDirection | undefined;
696
- boxFlex?: import("csstype").Property.BoxFlex | undefined;
697
- boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
698
- boxLines?: import("csstype").Property.BoxLines | undefined;
699
- boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
700
- boxOrient?: import("csstype").Property.BoxOrient | undefined;
701
- boxPack?: import("csstype").Property.BoxPack | undefined;
702
- clip?: import("csstype").Property.Clip | undefined;
703
- gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
704
- gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
705
- gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
706
- imeMode?: import("csstype").Property.ImeMode | undefined;
707
- offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
708
- offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
709
- offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
710
- offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
711
- offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
712
- offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
713
- scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
714
- scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
715
- scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
716
- scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
717
- scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
718
- scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
719
- KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
720
- KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
721
- KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
722
- KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
723
- KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
724
- KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
725
- KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
726
- KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
727
- KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
728
- KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
729
- KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
730
- MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
731
- MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
732
- MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
733
- MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
734
- MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
735
- MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
736
- MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
737
- MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
738
- MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
739
- MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
740
- MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
741
- MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
742
- MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
743
- MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
744
- MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
745
- MozBoxPack?: import("csstype").Property.BoxPack | undefined;
746
- MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
747
- MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
748
- MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
749
- MozOpacity?: import("csstype").Property.Opacity | undefined;
750
- MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
751
- MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
752
- MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
753
- MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
754
- MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
755
- MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
756
- MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
757
- MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
758
- MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
759
- MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
760
- MozTransform?: import("csstype").Property.Transform | undefined;
761
- MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
762
- MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
763
- MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
764
- MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
765
- MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
766
- MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
767
- MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
768
- MozUserInput?: import("csstype").Property.MozUserInput | undefined;
769
- msImeMode?: import("csstype").Property.ImeMode | undefined;
770
- OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
771
- OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
772
- OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
773
- OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
774
- OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
775
- OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
776
- OAnimationName?: import("csstype").Property.AnimationName | undefined;
777
- OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
778
- OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
779
- OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
780
- OBorderImage?: import("csstype").Property.BorderImage | undefined;
781
- OObjectFit?: import("csstype").Property.ObjectFit | undefined;
782
- OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
783
- OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
784
- OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
785
- OTransform?: import("csstype").Property.Transform | undefined;
786
- OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
787
- OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
788
- OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
789
- OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
790
- OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
791
- OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
792
- WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
793
- WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
794
- WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
795
- WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
796
- WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
797
- WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
798
- WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
799
- WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
800
- alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
801
- baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
802
- clipRule?: import("csstype").Property.ClipRule | undefined;
803
- colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
804
- colorRendering?: import("csstype").Property.ColorRendering | undefined;
805
- dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
806
- fill?: import("csstype").Property.Fill | undefined;
807
- fillOpacity?: import("csstype").Property.FillOpacity | undefined;
808
- fillRule?: import("csstype").Property.FillRule | undefined;
809
- floodColor?: import("csstype").Property.FloodColor | undefined;
810
- floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
811
- glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
812
- lightingColor?: import("csstype").Property.LightingColor | undefined;
813
- marker?: import("csstype").Property.Marker | undefined;
814
- markerEnd?: import("csstype").Property.MarkerEnd | undefined;
815
- markerMid?: import("csstype").Property.MarkerMid | undefined;
816
- markerStart?: import("csstype").Property.MarkerStart | undefined;
817
- shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
818
- stopColor?: import("csstype").Property.StopColor | undefined;
819
- stopOpacity?: import("csstype").Property.StopOpacity | undefined;
820
- stroke?: import("csstype").Property.Stroke | undefined;
821
- strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
822
- strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
823
- strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
824
- strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
825
- strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
826
- strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
827
- strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
828
- textAnchor?: import("csstype").Property.TextAnchor | undefined;
829
- vectorEffect?: import("csstype").Property.VectorEffect | undefined;
830
- x?: (string | number) | undefined;
831
- y?: (string | number) | undefined;
832
- z?: (string | number) | undefined;
833
- translateX?: (string | number) | undefined;
834
- translateY?: (string | number) | undefined;
835
- translateZ?: (string | number) | undefined;
836
- translate3d?: readonly [string | number, string | number, string | number] | undefined;
837
- rotateX?: (string | number) | undefined;
838
- rotateY?: (string | number) | undefined;
839
- rotateZ?: (string | number) | undefined;
840
- rotate3d?: readonly [number, number, number, string | number] | undefined;
841
- scaleX?: number | undefined;
842
- scaleY?: number | undefined;
843
- scaleZ?: number | undefined;
844
- scale3d?: readonly [number, number, number] | undefined;
845
- skew?: ((string | number) | readonly [string | number, string | number]) | undefined;
846
- skewX?: (string | number) | undefined;
847
- skewY?: (string | number) | undefined;
848
- matrix?: readonly [number, number, number, number, number, number] | undefined;
849
- matrix3d?: readonly [number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number] | undefined;
850
- } | undefined;
4
+ style?: {
5
+ accentColor?: import("csstype").Property.AccentColor | undefined;
6
+ alignContent?: import("csstype").Property.AlignContent | undefined;
7
+ alignItems?: import("csstype").Property.AlignItems | undefined;
8
+ alignSelf?: import("csstype").Property.AlignSelf | undefined;
9
+ alignTracks?: import("csstype").Property.AlignTracks | undefined;
10
+ animationComposition?: import("csstype").Property.AnimationComposition | undefined;
11
+ animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
12
+ animationDirection?: import("csstype").Property.AnimationDirection | undefined;
13
+ animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
14
+ animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
15
+ animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
16
+ animationName?: import("csstype").Property.AnimationName | undefined;
17
+ animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
18
+ animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
19
+ animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
20
+ animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
21
+ animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
22
+ appearance?: import("csstype").Property.Appearance | undefined;
23
+ aspectRatio?: import("csstype").Property.AspectRatio | undefined;
24
+ backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
25
+ backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
26
+ backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
27
+ backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
28
+ backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
29
+ backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
30
+ backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
31
+ backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
32
+ backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
33
+ backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
34
+ backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
35
+ backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
36
+ blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
37
+ blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
38
+ borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
39
+ borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
40
+ borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
41
+ borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
42
+ borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
43
+ borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
44
+ borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
45
+ borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
46
+ borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
47
+ borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
48
+ borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
49
+ borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
50
+ borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
51
+ borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
52
+ borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
53
+ borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
54
+ borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
55
+ borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
56
+ borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
57
+ borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
58
+ borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
59
+ borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
60
+ borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
61
+ borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
62
+ borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
63
+ borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
64
+ borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
65
+ borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
66
+ borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
67
+ borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
68
+ borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
69
+ borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
70
+ borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
71
+ borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
72
+ borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
73
+ borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
74
+ borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
75
+ borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
76
+ borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
77
+ borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
78
+ borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
79
+ borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
80
+ borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
81
+ borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
82
+ borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
83
+ bottom?: import("csstype").Property.Bottom<string | number> | undefined;
84
+ boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
85
+ boxShadow?: import("csstype").Property.BoxShadow | undefined;
86
+ boxSizing?: import("csstype").Property.BoxSizing | undefined;
87
+ breakAfter?: import("csstype").Property.BreakAfter | undefined;
88
+ breakBefore?: import("csstype").Property.BreakBefore | undefined;
89
+ breakInside?: import("csstype").Property.BreakInside | undefined;
90
+ captionSide?: import("csstype").Property.CaptionSide | undefined;
91
+ caretColor?: import("csstype").Property.CaretColor | undefined;
92
+ caretShape?: import("csstype").Property.CaretShape | undefined;
93
+ clear?: import("csstype").Property.Clear | undefined;
94
+ clipPath?: import("csstype").Property.ClipPath | undefined;
95
+ color?: import("csstype").Property.Color | undefined;
96
+ colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
97
+ colorScheme?: import("csstype").Property.ColorScheme | undefined;
98
+ columnCount?: import("csstype").Property.ColumnCount | undefined;
99
+ columnFill?: import("csstype").Property.ColumnFill | undefined;
100
+ columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
101
+ columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
102
+ columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
103
+ columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
104
+ columnSpan?: import("csstype").Property.ColumnSpan | undefined;
105
+ columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
106
+ contain?: import("csstype").Property.Contain | undefined;
107
+ containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
108
+ containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
109
+ containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
110
+ containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
111
+ containerName?: import("csstype").Property.ContainerName | undefined;
112
+ containerType?: import("csstype").Property.ContainerType | undefined;
113
+ content?: import("csstype").Property.Content | undefined;
114
+ contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
115
+ counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
116
+ counterReset?: import("csstype").Property.CounterReset | undefined;
117
+ counterSet?: import("csstype").Property.CounterSet | undefined;
118
+ cursor?: import("csstype").Property.Cursor | undefined;
119
+ direction?: import("csstype").Property.Direction | undefined;
120
+ display?: import("csstype").Property.Display | undefined;
121
+ emptyCells?: import("csstype").Property.EmptyCells | undefined;
122
+ filter?: import("csstype").Property.Filter | undefined;
123
+ flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
124
+ flexDirection?: import("csstype").Property.FlexDirection | undefined;
125
+ flexGrow?: import("csstype").Property.FlexGrow | undefined;
126
+ flexShrink?: import("csstype").Property.FlexShrink | undefined;
127
+ flexWrap?: import("csstype").Property.FlexWrap | undefined;
128
+ float?: import("csstype").Property.Float | undefined;
129
+ fontFamily?: import("csstype").Property.FontFamily | undefined;
130
+ fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
131
+ fontKerning?: import("csstype").Property.FontKerning | undefined;
132
+ fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
133
+ fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
134
+ fontPalette?: import("csstype").Property.FontPalette | undefined;
135
+ fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
136
+ fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
137
+ fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
138
+ fontStretch?: import("csstype").Property.FontStretch | undefined;
139
+ fontStyle?: import("csstype").Property.FontStyle | undefined;
140
+ fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
141
+ fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
142
+ fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
143
+ fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
144
+ fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
145
+ fontVariant?: import("csstype").Property.FontVariant | undefined;
146
+ fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
147
+ fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
148
+ fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
149
+ fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
150
+ fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
151
+ fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
152
+ fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
153
+ fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
154
+ fontWeight?: import("csstype").Property.FontWeight | undefined;
155
+ forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
156
+ gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
157
+ gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
158
+ gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
159
+ gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
160
+ gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
161
+ gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
162
+ gridRowStart?: import("csstype").Property.GridRowStart | undefined;
163
+ gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
164
+ gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
165
+ gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
166
+ hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
167
+ height?: import("csstype").Property.Height<string | number> | undefined;
168
+ hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
169
+ hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
170
+ hyphens?: import("csstype").Property.Hyphens | undefined;
171
+ imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
172
+ imageRendering?: import("csstype").Property.ImageRendering | undefined;
173
+ imageResolution?: import("csstype").Property.ImageResolution | undefined;
174
+ initialLetter?: import("csstype").Property.InitialLetter | undefined;
175
+ inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
176
+ inputSecurity?: import("csstype").Property.InputSecurity | undefined;
177
+ insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
178
+ insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
179
+ insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
180
+ insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
181
+ isolation?: import("csstype").Property.Isolation | undefined;
182
+ justifyContent?: import("csstype").Property.JustifyContent | undefined;
183
+ justifyItems?: import("csstype").Property.JustifyItems | undefined;
184
+ justifySelf?: import("csstype").Property.JustifySelf | undefined;
185
+ justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
186
+ left?: import("csstype").Property.Left<string | number> | undefined;
187
+ letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
188
+ lineBreak?: import("csstype").Property.LineBreak | undefined;
189
+ lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
190
+ lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
191
+ listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
192
+ listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
193
+ listStyleType?: import("csstype").Property.ListStyleType | undefined;
194
+ marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
195
+ marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
196
+ marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
197
+ marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
198
+ marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
199
+ marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
200
+ marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
201
+ marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
202
+ marginTrim?: import("csstype").Property.MarginTrim | undefined;
203
+ maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
204
+ maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
205
+ maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
206
+ maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
207
+ maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
208
+ maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
209
+ maskClip?: import("csstype").Property.MaskClip | undefined;
210
+ maskComposite?: import("csstype").Property.MaskComposite | undefined;
211
+ maskImage?: import("csstype").Property.MaskImage | undefined;
212
+ maskMode?: import("csstype").Property.MaskMode | undefined;
213
+ maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
214
+ maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
215
+ maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
216
+ maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
217
+ maskType?: import("csstype").Property.MaskType | undefined;
218
+ masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
219
+ mathDepth?: import("csstype").Property.MathDepth | undefined;
220
+ mathShift?: import("csstype").Property.MathShift | undefined;
221
+ mathStyle?: import("csstype").Property.MathStyle | undefined;
222
+ maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
223
+ maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
224
+ maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
225
+ maxLines?: import("csstype").Property.MaxLines | undefined;
226
+ maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
227
+ minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
228
+ minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
229
+ minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
230
+ minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
231
+ mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
232
+ motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
233
+ motionPath?: import("csstype").Property.OffsetPath | undefined;
234
+ motionRotation?: import("csstype").Property.OffsetRotate | undefined;
235
+ objectFit?: import("csstype").Property.ObjectFit | undefined;
236
+ objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
237
+ offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
238
+ offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
239
+ offsetPath?: import("csstype").Property.OffsetPath | undefined;
240
+ offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
241
+ offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
242
+ offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
243
+ opacity?: import("csstype").Property.Opacity | undefined;
244
+ order?: import("csstype").Property.Order | undefined;
245
+ orphans?: import("csstype").Property.Orphans | undefined;
246
+ outlineColor?: import("csstype").Property.OutlineColor | undefined;
247
+ outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
248
+ outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
249
+ outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
250
+ overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
251
+ overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
252
+ overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
253
+ overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
254
+ overflowInline?: import("csstype").Property.OverflowInline | undefined;
255
+ overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
256
+ overflowX?: import("csstype").Property.OverflowX | undefined;
257
+ overflowY?: import("csstype").Property.OverflowY | undefined;
258
+ overlay?: import("csstype").Property.Overlay | undefined;
259
+ overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
260
+ overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
261
+ overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
262
+ overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
263
+ paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
264
+ paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
265
+ paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
266
+ paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
267
+ paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
268
+ paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
269
+ paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
270
+ paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
271
+ page?: import("csstype").Property.Page | undefined;
272
+ pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
273
+ pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
274
+ pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
275
+ paintOrder?: import("csstype").Property.PaintOrder | undefined;
276
+ perspective?: import("csstype").Property.Perspective<string | number> | undefined;
277
+ perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
278
+ pointerEvents?: import("csstype").Property.PointerEvents | undefined;
279
+ position?: import("csstype").Property.Position | undefined;
280
+ printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
281
+ quotes?: import("csstype").Property.Quotes | undefined;
282
+ resize?: import("csstype").Property.Resize | undefined;
283
+ right?: import("csstype").Property.Right<string | number> | undefined;
284
+ rotate?: (string | number) | undefined;
285
+ rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
286
+ rubyAlign?: import("csstype").Property.RubyAlign | undefined;
287
+ rubyMerge?: import("csstype").Property.RubyMerge | undefined;
288
+ rubyPosition?: import("csstype").Property.RubyPosition | undefined;
289
+ scale?: string | number | readonly [number, number] | undefined;
290
+ scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
291
+ scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
292
+ scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
293
+ scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
294
+ scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
295
+ scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
296
+ scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
297
+ scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
298
+ scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
299
+ scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
300
+ scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
301
+ scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
302
+ scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
303
+ scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
304
+ scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
305
+ scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
306
+ scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
307
+ scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
308
+ scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
309
+ scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
310
+ scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
311
+ scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
312
+ scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
313
+ scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
314
+ scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
315
+ scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
316
+ scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
317
+ scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
318
+ scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
319
+ shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
320
+ shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
321
+ shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
322
+ tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
323
+ tableLayout?: import("csstype").Property.TableLayout | undefined;
324
+ textAlign?: import("csstype").Property.TextAlign | undefined;
325
+ textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
326
+ textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
327
+ textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
328
+ textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
329
+ textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
330
+ textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
331
+ textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
332
+ textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
333
+ textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
334
+ textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
335
+ textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
336
+ textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
337
+ textJustify?: import("csstype").Property.TextJustify | undefined;
338
+ textOrientation?: import("csstype").Property.TextOrientation | undefined;
339
+ textOverflow?: import("csstype").Property.TextOverflow | undefined;
340
+ textRendering?: import("csstype").Property.TextRendering | undefined;
341
+ textShadow?: import("csstype").Property.TextShadow | undefined;
342
+ textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
343
+ textTransform?: import("csstype").Property.TextTransform | undefined;
344
+ textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
345
+ textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
346
+ textWrap?: import("csstype").Property.TextWrap | undefined;
347
+ timelineScope?: import("csstype").Property.TimelineScope | undefined;
348
+ top?: import("csstype").Property.Top<string | number> | undefined;
349
+ touchAction?: import("csstype").Property.TouchAction | undefined;
350
+ transform?: string | undefined;
351
+ transformBox?: import("csstype").Property.TransformBox | undefined;
352
+ transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
353
+ transformStyle?: import("csstype").Property.TransformStyle | undefined;
354
+ transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
355
+ transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
356
+ transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
357
+ transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
358
+ transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
359
+ translate?: (string | number) | readonly [string | number, string | number] | undefined;
360
+ unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
361
+ userSelect?: import("csstype").Property.UserSelect | undefined;
362
+ verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
363
+ viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
364
+ viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
365
+ viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
366
+ viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
367
+ visibility?: import("csstype").Property.Visibility | undefined;
368
+ whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
369
+ whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
370
+ whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
371
+ widows?: import("csstype").Property.Widows | undefined;
372
+ width?: import("csstype").Property.Width<string | number> | undefined;
373
+ willChange?: import("csstype").Property.WillChange | undefined;
374
+ wordBreak?: import("csstype").Property.WordBreak | undefined;
375
+ wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
376
+ wordWrap?: import("csstype").Property.WordWrap | undefined;
377
+ writingMode?: import("csstype").Property.WritingMode | undefined;
378
+ zIndex?: import("csstype").Property.ZIndex | undefined;
379
+ zoom?: import("csstype").Property.Zoom | undefined;
380
+ all?: import("csstype").Globals | undefined;
381
+ animation?: import("csstype").Property.Animation<string & {}> | undefined;
382
+ animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
383
+ background?: import("csstype").Property.Background<string | number> | undefined;
384
+ backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
385
+ border?: import("csstype").Property.Border<string | number> | undefined;
386
+ borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
387
+ borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
388
+ borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
389
+ borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
390
+ borderColor?: import("csstype").Property.BorderColor | undefined;
391
+ borderImage?: import("csstype").Property.BorderImage | undefined;
392
+ borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
393
+ borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
394
+ borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
395
+ borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
396
+ borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
397
+ borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
398
+ borderStyle?: import("csstype").Property.BorderStyle | undefined;
399
+ borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
400
+ borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
401
+ caret?: import("csstype").Property.Caret | undefined;
402
+ columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
403
+ columns?: import("csstype").Property.Columns<string | number> | undefined;
404
+ containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
405
+ container?: import("csstype").Property.Container | undefined;
406
+ flex?: import("csstype").Property.Flex<string | number> | undefined;
407
+ flexFlow?: import("csstype").Property.FlexFlow | undefined;
408
+ font?: import("csstype").Property.Font | undefined;
409
+ gap?: import("csstype").Property.Gap<string | number> | undefined;
410
+ grid?: import("csstype").Property.Grid | undefined;
411
+ gridArea?: import("csstype").Property.GridArea | undefined;
412
+ gridColumn?: import("csstype").Property.GridColumn | undefined;
413
+ gridRow?: import("csstype").Property.GridRow | undefined;
414
+ gridTemplate?: import("csstype").Property.GridTemplate | undefined;
415
+ inset?: import("csstype").Property.Inset<string | number> | undefined;
416
+ insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
417
+ insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
418
+ lineClamp?: import("csstype").Property.LineClamp | undefined;
419
+ listStyle?: import("csstype").Property.ListStyle | undefined;
420
+ margin?: import("csstype").Property.Margin<string | number> | undefined;
421
+ marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
422
+ marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
423
+ mask?: import("csstype").Property.Mask<string | number> | undefined;
424
+ maskBorder?: import("csstype").Property.MaskBorder | undefined;
425
+ motion?: import("csstype").Property.Offset<string | number> | undefined;
426
+ offset?: import("csstype").Property.Offset<string | number> | undefined;
427
+ outline?: import("csstype").Property.Outline<string | number> | undefined;
428
+ overflow?: import("csstype").Property.Overflow | undefined;
429
+ overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
430
+ padding?: import("csstype").Property.Padding<string | number> | undefined;
431
+ paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
432
+ paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
433
+ placeContent?: import("csstype").Property.PlaceContent | undefined;
434
+ placeItems?: import("csstype").Property.PlaceItems | undefined;
435
+ placeSelf?: import("csstype").Property.PlaceSelf | undefined;
436
+ scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
437
+ scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
438
+ scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
439
+ scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
440
+ scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
441
+ scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
442
+ scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
443
+ scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
444
+ textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
445
+ textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
446
+ transition?: import("csstype").Property.Transition<string & {}> | undefined;
447
+ viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
448
+ MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
449
+ MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
450
+ MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
451
+ MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
452
+ MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
453
+ MozAnimationName?: import("csstype").Property.AnimationName | undefined;
454
+ MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
455
+ MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
456
+ MozAppearance?: import("csstype").Property.MozAppearance | undefined;
457
+ MozBinding?: import("csstype").Property.MozBinding | undefined;
458
+ MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
459
+ MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
460
+ MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
461
+ MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
462
+ MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
463
+ MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
464
+ MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
465
+ MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
466
+ MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
467
+ MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
468
+ MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
469
+ MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
470
+ MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
471
+ MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
472
+ MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
473
+ MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
474
+ MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
475
+ MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
476
+ MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
477
+ MozHyphens?: import("csstype").Property.Hyphens | undefined;
478
+ MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
479
+ MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
480
+ MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
481
+ MozOrient?: import("csstype").Property.MozOrient | undefined;
482
+ MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
483
+ MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
484
+ MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
485
+ MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
486
+ MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
487
+ MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
488
+ MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
489
+ MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
490
+ MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
491
+ MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
492
+ MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
493
+ MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
494
+ MozUserModify?: import("csstype").Property.MozUserModify | undefined;
495
+ MozUserSelect?: import("csstype").Property.UserSelect | undefined;
496
+ MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
497
+ MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
498
+ msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
499
+ msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
500
+ msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
501
+ msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
502
+ msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
503
+ msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
504
+ msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
505
+ msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
506
+ msFilter?: import("csstype").Property.MsFilter | undefined;
507
+ msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
508
+ msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
509
+ msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
510
+ msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
511
+ msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
512
+ msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
513
+ msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
514
+ msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
515
+ msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
516
+ msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
517
+ msHyphens?: import("csstype").Property.Hyphens | undefined;
518
+ msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
519
+ msLineBreak?: import("csstype").Property.LineBreak | undefined;
520
+ msOrder?: import("csstype").Property.Order | undefined;
521
+ msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
522
+ msOverflowX?: import("csstype").Property.OverflowX | undefined;
523
+ msOverflowY?: import("csstype").Property.OverflowY | undefined;
524
+ msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
525
+ msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
526
+ msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
527
+ msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
528
+ msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
529
+ msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
530
+ msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
531
+ msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
532
+ msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
533
+ msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
534
+ msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
535
+ msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
536
+ msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
537
+ msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
538
+ msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
539
+ msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
540
+ msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
541
+ msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
542
+ msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
543
+ msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
544
+ msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
545
+ msTouchAction?: import("csstype").Property.TouchAction | undefined;
546
+ msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
547
+ msTransform?: import("csstype").Property.Transform | undefined;
548
+ msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
549
+ msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
550
+ msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
551
+ msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
552
+ msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
553
+ msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
554
+ msWordBreak?: import("csstype").Property.WordBreak | undefined;
555
+ msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
556
+ msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
557
+ msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
558
+ msWritingMode?: import("csstype").Property.WritingMode | undefined;
559
+ WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
560
+ WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
561
+ WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
562
+ WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
563
+ WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
564
+ WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
565
+ WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
566
+ WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
567
+ WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
568
+ WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
569
+ WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
570
+ WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
571
+ WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
572
+ WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
573
+ WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
574
+ WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
575
+ WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
576
+ WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
577
+ WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
578
+ WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
579
+ WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
580
+ WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
581
+ WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
582
+ WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
583
+ WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
584
+ WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
585
+ WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
586
+ WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
587
+ WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
588
+ WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
589
+ WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
590
+ WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
591
+ WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
592
+ WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
593
+ WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
594
+ WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
595
+ WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
596
+ WebkitFilter?: import("csstype").Property.Filter | undefined;
597
+ WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
598
+ WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
599
+ WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
600
+ WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
601
+ WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
602
+ WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
603
+ WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
604
+ WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
605
+ WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
606
+ WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
607
+ WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
608
+ WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
609
+ WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
610
+ WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
611
+ WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
612
+ WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
613
+ WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
614
+ WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
615
+ WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
616
+ WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
617
+ WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
618
+ WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
619
+ WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
620
+ WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
621
+ WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
622
+ WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
623
+ WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
624
+ WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
625
+ WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
626
+ WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
627
+ WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
628
+ WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
629
+ WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
630
+ WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
631
+ WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
632
+ WebkitOrder?: import("csstype").Property.Order | undefined;
633
+ WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
634
+ WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
635
+ WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
636
+ WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
637
+ WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
638
+ WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
639
+ WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
640
+ WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
641
+ WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
642
+ WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
643
+ WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
644
+ WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
645
+ WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
646
+ WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
647
+ WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
648
+ WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
649
+ WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
650
+ WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
651
+ WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
652
+ WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
653
+ WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
654
+ WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
655
+ WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
656
+ WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
657
+ WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
658
+ WebkitTransform?: import("csstype").Property.Transform | undefined;
659
+ WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
660
+ WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
661
+ WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
662
+ WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
663
+ WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
664
+ WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
665
+ WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
666
+ WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
667
+ WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
668
+ MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
669
+ MozBorderImage?: import("csstype").Property.BorderImage | undefined;
670
+ MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
671
+ MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
672
+ MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
673
+ msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
674
+ msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
675
+ msFlex?: import("csstype").Property.Flex<string | number> | undefined;
676
+ msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
677
+ msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
678
+ msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
679
+ msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
680
+ WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
681
+ WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
682
+ WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
683
+ WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
684
+ WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
685
+ WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
686
+ WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
687
+ WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
688
+ WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
689
+ WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
690
+ WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
691
+ WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
692
+ WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
693
+ azimuth?: import("csstype").Property.Azimuth | undefined;
694
+ boxAlign?: import("csstype").Property.BoxAlign | undefined;
695
+ boxDirection?: import("csstype").Property.BoxDirection | undefined;
696
+ boxFlex?: import("csstype").Property.BoxFlex | undefined;
697
+ boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
698
+ boxLines?: import("csstype").Property.BoxLines | undefined;
699
+ boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
700
+ boxOrient?: import("csstype").Property.BoxOrient | undefined;
701
+ boxPack?: import("csstype").Property.BoxPack | undefined;
702
+ clip?: import("csstype").Property.Clip | undefined;
703
+ gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
704
+ gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
705
+ gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
706
+ imeMode?: import("csstype").Property.ImeMode | undefined;
707
+ offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
708
+ offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
709
+ offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
710
+ offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
711
+ offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
712
+ offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
713
+ scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
714
+ scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
715
+ scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
716
+ scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
717
+ scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
718
+ scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
719
+ KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
720
+ KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
721
+ KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
722
+ KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
723
+ KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
724
+ KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
725
+ KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
726
+ KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
727
+ KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
728
+ KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
729
+ KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
730
+ MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
731
+ MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
732
+ MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
733
+ MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
734
+ MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
735
+ MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
736
+ MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
737
+ MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
738
+ MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
739
+ MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
740
+ MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
741
+ MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
742
+ MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
743
+ MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
744
+ MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
745
+ MozBoxPack?: import("csstype").Property.BoxPack | undefined;
746
+ MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
747
+ MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
748
+ MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
749
+ MozOpacity?: import("csstype").Property.Opacity | undefined;
750
+ MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
751
+ MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
752
+ MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
753
+ MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
754
+ MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
755
+ MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
756
+ MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
757
+ MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
758
+ MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
759
+ MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
760
+ MozTransform?: import("csstype").Property.Transform | undefined;
761
+ MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
762
+ MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
763
+ MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
764
+ MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
765
+ MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
766
+ MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
767
+ MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
768
+ MozUserInput?: import("csstype").Property.MozUserInput | undefined;
769
+ msImeMode?: import("csstype").Property.ImeMode | undefined;
770
+ OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
771
+ OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
772
+ OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
773
+ OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
774
+ OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
775
+ OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
776
+ OAnimationName?: import("csstype").Property.AnimationName | undefined;
777
+ OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
778
+ OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
779
+ OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
780
+ OBorderImage?: import("csstype").Property.BorderImage | undefined;
781
+ OObjectFit?: import("csstype").Property.ObjectFit | undefined;
782
+ OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
783
+ OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
784
+ OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
785
+ OTransform?: import("csstype").Property.Transform | undefined;
786
+ OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
787
+ OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
788
+ OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
789
+ OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
790
+ OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
791
+ OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
792
+ WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
793
+ WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
794
+ WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
795
+ WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
796
+ WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
797
+ WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
798
+ WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
799
+ WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
800
+ alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
801
+ baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
802
+ clipRule?: import("csstype").Property.ClipRule | undefined;
803
+ colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
804
+ colorRendering?: import("csstype").Property.ColorRendering | undefined;
805
+ dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
806
+ fill?: import("csstype").Property.Fill | undefined;
807
+ fillOpacity?: import("csstype").Property.FillOpacity | undefined;
808
+ fillRule?: import("csstype").Property.FillRule | undefined;
809
+ floodColor?: import("csstype").Property.FloodColor | undefined;
810
+ floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
811
+ glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
812
+ lightingColor?: import("csstype").Property.LightingColor | undefined;
813
+ marker?: import("csstype").Property.Marker | undefined;
814
+ markerEnd?: import("csstype").Property.MarkerEnd | undefined;
815
+ markerMid?: import("csstype").Property.MarkerMid | undefined;
816
+ markerStart?: import("csstype").Property.MarkerStart | undefined;
817
+ shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
818
+ stopColor?: import("csstype").Property.StopColor | undefined;
819
+ stopOpacity?: import("csstype").Property.StopOpacity | undefined;
820
+ stroke?: import("csstype").Property.Stroke | undefined;
821
+ strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
822
+ strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
823
+ strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
824
+ strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
825
+ strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
826
+ strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
827
+ strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
828
+ textAnchor?: import("csstype").Property.TextAnchor | undefined;
829
+ vectorEffect?: import("csstype").Property.VectorEffect | undefined;
830
+ x?: (string | number) | undefined;
831
+ y?: (string | number) | undefined;
832
+ z?: (string | number) | undefined;
833
+ translateX?: (string | number) | undefined;
834
+ translateY?: (string | number) | undefined;
835
+ translateZ?: (string | number) | undefined;
836
+ translate3d?: readonly [string | number, string | number, string | number] | undefined;
837
+ rotateX?: (string | number) | undefined;
838
+ rotateY?: (string | number) | undefined;
839
+ rotateZ?: (string | number) | undefined;
840
+ rotate3d?: readonly [number, number, number, string | number] | undefined;
841
+ scaleX?: number | undefined;
842
+ scaleY?: number | undefined;
843
+ scaleZ?: number | undefined;
844
+ scale3d?: readonly [number, number, number] | undefined;
845
+ skew?: ((string | number) | readonly [string | number, string | number]) | undefined;
846
+ skewX?: (string | number) | undefined;
847
+ skewY?: (string | number) | undefined;
848
+ matrix?: readonly [number, number, number, number, number, number] | undefined;
849
+ matrix3d?: readonly [number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number] | undefined;
850
+ } | undefined;
851
851
  }> & {
852
- scrollTop?: number | import("@react-spring/shared").FluidValue<number, any> | undefined;
853
- scrollLeft?: number | import("@react-spring/shared").FluidValue<number, any> | undefined;
854
- viewBox?: string | import("@react-spring/shared").FluidValue<string, any> | undefined;
852
+ scrollTop?: number | import("@react-spring/shared").FluidValue<number, any> | undefined;
853
+ scrollLeft?: number | import("@react-spring/shared").FluidValue<number, any> | undefined;
854
+ viewBox?: string | import("@react-spring/shared").FluidValue<string, any> | undefined;
855
855
  }, "style" | "viewBox" | "scrollTop" | "scrollLeft"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme>, {}, {}>;
856
856
  export type BarLabelProps = Omit<React.SVGProps<SVGTextElement>, 'ref' | 'id'> & BarLabelOwnerState;
857
857
  declare function BarLabel(inProps: BarLabelProps): React.JSX.Element;
858
858
  declare namespace BarLabel {
859
- var propTypes: any;
859
+ var propTypes: any;
860
860
  }
861
- export { BarLabel };
861
+ export { BarLabel };