@mui/x-charts 8.0.0-alpha.0 → 8.0.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (417) hide show
  1. package/BarChart/AnimatedBarElement.d.ts +15 -0
  2. package/BarChart/AnimatedBarElement.js +21 -0
  3. package/BarChart/BarChart.d.ts +4 -9
  4. package/BarChart/BarChart.js +3 -35
  5. package/BarChart/BarElement.d.ts +5 -1342
  6. package/BarChart/BarElement.js +10 -20
  7. package/BarChart/BarLabel/BarLabel.d.ts +298 -298
  8. package/BarChart/BarPlot.js +12 -2
  9. package/BarChart/useBarChartProps.d.ts +0 -2
  10. package/BarChart/useBarChartProps.js +2 -8
  11. package/CHANGELOG.md +651 -6
  12. package/ChartContainer/ChartContainer.d.ts +26 -19
  13. package/ChartContainer/ChartContainer.js +31 -25
  14. package/ChartContainer/useChartContainerProps.d.ts +5 -7
  15. package/ChartContainer/useChartContainerProps.js +12 -27
  16. package/ChartsAxis/axisClasses.js +2 -1
  17. package/ChartsAxisHighlight/ChartsAxisHighlight.d.ts +1 -17
  18. package/ChartsAxisHighlight/ChartsAxisHighlight.js +10 -96
  19. package/ChartsAxisHighlight/ChartsAxisHighlight.types.d.ts +5 -0
  20. package/ChartsAxisHighlight/ChartsAxisHighlight.types.js +1 -0
  21. package/ChartsAxisHighlight/ChartsAxisHighlightPath.d.ts +6 -0
  22. package/ChartsAxisHighlight/ChartsAxisHighlightPath.js +34 -0
  23. package/ChartsAxisHighlight/ChartsXAxisHighlight.d.ts +10 -0
  24. package/ChartsAxisHighlight/ChartsXAxisHighlight.js +53 -0
  25. package/ChartsAxisHighlight/ChartsYAxisHighlight.d.ts +10 -0
  26. package/ChartsAxisHighlight/ChartsYAxisHighlight.js +53 -0
  27. package/ChartsAxisHighlight/chartsAxisHighlightClasses.d.ts +7 -0
  28. package/ChartsAxisHighlight/chartsAxisHighlightClasses.js +6 -0
  29. package/ChartsAxisHighlight/index.d.ts +3 -0
  30. package/ChartsAxisHighlight/index.js +4 -1
  31. package/ChartsGrid/ChartsGrid.js +1 -1
  32. package/ChartsGrid/ChartsHorizontalGrid.d.ts +2 -2
  33. package/ChartsGrid/ChartsHorizontalGrid.js +3 -3
  34. package/ChartsGrid/ChartsVerticalGrid.d.ts +2 -2
  35. package/ChartsGrid/ChartsVerticalGrid.js +3 -3
  36. package/ChartsLegend/LegendPerItem.d.ts +2 -2
  37. package/ChartsLegend/chartsLegendClasses.js +2 -1
  38. package/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +9 -7
  39. package/ChartsSurface/ChartsSurface.d.ts +14 -15
  40. package/ChartsSurface/ChartsSurface.js +68 -35
  41. package/ChartsTooltip/ChartTooltip.types.d.ts +15 -0
  42. package/ChartsTooltip/ChartTooltip.types.js +1 -0
  43. package/ChartsTooltip/ChartsAxisTooltipContent.d.ts +7 -39
  44. package/ChartsTooltip/ChartsAxisTooltipContent.js +83 -72
  45. package/ChartsTooltip/ChartsItemTooltipContent.d.ts +5 -28
  46. package/ChartsTooltip/ChartsItemTooltipContent.js +54 -44
  47. package/ChartsTooltip/ChartsTooltip.d.ts +3 -69
  48. package/ChartsTooltip/ChartsTooltip.js +143 -145
  49. package/ChartsTooltip/ChartsTooltipContainer.d.ts +33 -0
  50. package/ChartsTooltip/ChartsTooltipContainer.js +280 -0
  51. package/ChartsTooltip/ChartsTooltipTable.js +1 -1
  52. package/ChartsTooltip/chartsTooltipClasses.d.ts +1 -0
  53. package/ChartsTooltip/chartsTooltipClasses.js +18 -2
  54. package/ChartsTooltip/index.d.ts +3 -3
  55. package/ChartsTooltip/index.js +2 -3
  56. package/ChartsTooltip/useAxisTooltip.d.ts +2 -2
  57. package/ChartsTooltip/useAxisTooltip.js +19 -19
  58. package/ChartsTooltip/useItemTooltip.d.ts +2 -3
  59. package/ChartsTooltip/useItemTooltip.js +5 -4
  60. package/ChartsTooltip/utils.d.ts +0 -3
  61. package/ChartsTooltip/utils.js +0 -8
  62. package/ChartsVoronoiHandler/ChartsVoronoiHandler.js +49 -36
  63. package/ChartsXAxis/ChartsXAxis.js +3 -17
  64. package/ChartsYAxis/ChartsYAxis.js +2 -17
  65. package/Gauge/Gauge.d.ts +1 -1
  66. package/Gauge/Gauge.js +0 -6
  67. package/Gauge/GaugeContainer.d.ts +3 -3
  68. package/Gauge/GaugeContainer.js +42 -76
  69. package/LineChart/AnimatedArea.d.ts +0 -1333
  70. package/LineChart/AnimatedArea.js +9 -18
  71. package/LineChart/AnimatedLine.d.ts +0 -1333
  72. package/LineChart/AnimatedLine.js +9 -20
  73. package/LineChart/AreaPlot.js +12 -2
  74. package/LineChart/CircleMarkElement.js +6 -5
  75. package/LineChart/LineChart.d.ts +4 -10
  76. package/LineChart/LineChart.js +3 -36
  77. package/LineChart/LineHighlightPlot.js +6 -5
  78. package/LineChart/LinePlot.js +12 -2
  79. package/LineChart/MarkElement.js +6 -5
  80. package/LineChart/useLineChartProps.d.ts +0 -2
  81. package/LineChart/useLineChartProps.js +2 -8
  82. package/PieChart/PieChart.d.ts +3 -9
  83. package/PieChart/PieChart.js +5 -41
  84. package/PieChart/PiePlot.js +2 -2
  85. package/PieChart/getPieCoordinates.d.ts +2 -2
  86. package/README.md +2 -2
  87. package/ScatterChart/Scatter.js +6 -5
  88. package/ScatterChart/ScatterChart.d.ts +4 -10
  89. package/ScatterChart/ScatterChart.js +5 -36
  90. package/ScatterChart/useScatterChartProps.d.ts +0 -2
  91. package/ScatterChart/useScatterChartProps.js +1 -9
  92. package/SparkLineChart/SparkLineChart.d.ts +3 -4
  93. package/SparkLineChart/SparkLineChart.js +4 -35
  94. package/context/CartesianProvider/defaultizeAxis.d.ts +9 -11
  95. package/context/ChartDataProvider/ChartDataProvider.d.ts +36 -19
  96. package/context/ChartDataProvider/ChartDataProvider.js +55 -48
  97. package/context/ChartDataProvider/useChartDataProviderProps.d.ts +25 -32
  98. package/context/ChartDataProvider/useChartDataProviderProps.js +22 -42
  99. package/context/ChartDataProvider/useDefaultizeAxis.d.ts +9 -11
  100. package/context/ChartProvider/ChartContext.d.ts +6 -0
  101. package/context/ChartProvider/ChartContext.js +8 -0
  102. package/context/ChartProvider/ChartProvider.d.ts +4 -0
  103. package/context/ChartProvider/ChartProvider.js +19 -0
  104. package/context/ChartProvider/ChartProvider.types.d.ts +24 -0
  105. package/context/ChartProvider/ChartProvider.types.js +1 -0
  106. package/context/ChartProvider/index.d.ts +3 -0
  107. package/context/ChartProvider/index.js +3 -0
  108. package/context/ChartProvider/useChartContext.d.ts +3 -0
  109. package/context/ChartProvider/useChartContext.js +11 -0
  110. package/context/{DrawingProvider.d.ts → DrawingAreaProvider/DrawingArea.types.d.ts} +3 -14
  111. package/context/DrawingAreaProvider/DrawingArea.types.js +1 -0
  112. package/context/DrawingAreaProvider/DrawingAreaContext.d.ts +3 -0
  113. package/context/DrawingAreaProvider/DrawingAreaContext.js +15 -0
  114. package/context/DrawingAreaProvider/DrawingAreaProvider.d.ts +3 -0
  115. package/{modern/context/DrawingProvider.js → context/DrawingAreaProvider/DrawingAreaProvider.js} +11 -41
  116. package/context/DrawingAreaProvider/index.d.ts +3 -0
  117. package/context/DrawingAreaProvider/index.js +3 -0
  118. package/context/InteractionSelectors.d.ts +382 -0
  119. package/context/InteractionSelectors.js +12 -0
  120. package/context/SizeProvider/Size.types.d.ts +30 -0
  121. package/context/SizeProvider/Size.types.js +1 -0
  122. package/context/SizeProvider/SizeContext.d.ts +4 -0
  123. package/context/SizeProvider/SizeContext.js +15 -0
  124. package/context/SizeProvider/SizeProvider.d.ts +11 -0
  125. package/context/SizeProvider/SizeProvider.js +26 -0
  126. package/context/SizeProvider/index.d.ts +4 -0
  127. package/context/SizeProvider/index.js +4 -0
  128. package/context/SizeProvider/useChartContainerDimensions.d.ts +9 -0
  129. package/{modern/ChartContainer → context/SizeProvider}/useChartContainerDimensions.js +16 -6
  130. package/context/SizeProvider/useSize.d.ts +5 -0
  131. package/context/SizeProvider/useSize.js +13 -0
  132. package/context/index.d.ts +2 -0
  133. package/context/index.js +2 -1
  134. package/hooks/useAxisEvents.js +32 -19
  135. package/hooks/useChartId.js +5 -6
  136. package/hooks/useDrawingArea.d.ts +2 -2
  137. package/hooks/useDrawingArea.js +2 -2
  138. package/hooks/useInteractionItemProps.js +22 -13
  139. package/hooks/useSvgRef.d.ts +1 -1
  140. package/hooks/useSvgRef.js +4 -8
  141. package/index.js +1 -1
  142. package/internals/components/ChartsAxesGradients/ChartsAxesGradients.d.ts +1 -1
  143. package/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +9 -7
  144. package/internals/computeAxisValue.d.ts +2 -2
  145. package/internals/defaultizeColor.d.ts +1 -1
  146. package/internals/index.d.ts +3 -4
  147. package/internals/index.js +3 -4
  148. package/internals/plugins/allPlugins.d.ts +1 -0
  149. package/internals/plugins/allPlugins.js +3 -0
  150. package/internals/plugins/corePlugins/corePlugins.d.ts +10 -0
  151. package/internals/plugins/corePlugins/corePlugins.js +7 -0
  152. package/internals/plugins/corePlugins/index.d.ts +2 -0
  153. package/internals/plugins/corePlugins/index.js +1 -0
  154. package/internals/plugins/corePlugins/useChartId/index.d.ts +2 -0
  155. package/internals/plugins/corePlugins/useChartId/index.js +1 -0
  156. package/internals/plugins/corePlugins/useChartId/useChartId.d.ts +3 -0
  157. package/internals/plugins/corePlugins/useChartId/useChartId.js +32 -0
  158. package/internals/plugins/corePlugins/useChartId/useChartId.selectors.d.ts +36 -0
  159. package/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +9 -0
  160. package/internals/plugins/corePlugins/useChartId/useChartId.types.d.ts +20 -0
  161. package/internals/plugins/corePlugins/useChartId/useChartId.types.js +1 -0
  162. package/internals/plugins/corePlugins/useChartId/useChartId.utils.d.ts +1 -0
  163. package/internals/plugins/corePlugins/useChartId/useChartId.utils.js +5 -0
  164. package/internals/plugins/featurePlugins/useChartInteraction/index.d.ts +3 -0
  165. package/internals/plugins/featurePlugins/useChartInteraction/index.js +2 -0
  166. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.d.ts +3 -0
  167. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +73 -0
  168. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.d.ts +376 -0
  169. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +10 -0
  170. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.d.ts +57 -0
  171. package/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js +1 -0
  172. package/internals/plugins/models/chart.d.ts +14 -0
  173. package/internals/plugins/models/chart.js +1 -0
  174. package/internals/plugins/models/helpers.d.ts +7 -0
  175. package/internals/plugins/models/helpers.js +1 -0
  176. package/internals/plugins/models/index.d.ts +3 -0
  177. package/internals/plugins/models/index.js +3 -0
  178. package/internals/plugins/models/plugin.d.ts +75 -0
  179. package/internals/plugins/models/plugin.js +1 -0
  180. package/internals/plugins/utils/ChartStore.d.ts +13 -0
  181. package/internals/plugins/utils/ChartStore.js +24 -0
  182. package/internals/plugins/utils/selectors.d.ts +9 -0
  183. package/internals/plugins/utils/selectors.js +37 -0
  184. package/internals/store/useCharts.d.ts +14 -0
  185. package/internals/store/useCharts.js +72 -0
  186. package/internals/store/useCharts.types.d.ts +5 -0
  187. package/internals/store/useCharts.types.js +1 -0
  188. package/internals/store/useSelector.d.ts +4 -0
  189. package/internals/store/useSelector.js +6 -0
  190. package/internals/store/useStore.d.ts +3 -0
  191. package/internals/store/useStore.js +17 -0
  192. package/models/axis.d.ts +1 -13
  193. package/modern/BarChart/AnimatedBarElement.js +21 -0
  194. package/modern/BarChart/BarChart.js +3 -35
  195. package/modern/BarChart/BarElement.js +10 -20
  196. package/modern/BarChart/BarPlot.js +12 -2
  197. package/modern/BarChart/useBarChartProps.js +2 -8
  198. package/modern/ChartContainer/ChartContainer.js +31 -25
  199. package/modern/ChartContainer/useChartContainerProps.js +12 -27
  200. package/modern/ChartsAxis/axisClasses.js +2 -1
  201. package/modern/ChartsAxisHighlight/ChartsAxisHighlight.js +10 -96
  202. package/modern/ChartsAxisHighlight/ChartsAxisHighlight.types.js +1 -0
  203. package/modern/ChartsAxisHighlight/ChartsAxisHighlightPath.js +34 -0
  204. package/modern/ChartsAxisHighlight/ChartsXAxisHighlight.js +53 -0
  205. package/modern/ChartsAxisHighlight/ChartsYAxisHighlight.js +53 -0
  206. package/modern/ChartsAxisHighlight/chartsAxisHighlightClasses.js +6 -0
  207. package/modern/ChartsAxisHighlight/index.js +4 -1
  208. package/modern/ChartsGrid/ChartsGrid.js +1 -1
  209. package/modern/ChartsGrid/ChartsHorizontalGrid.js +3 -3
  210. package/modern/ChartsGrid/ChartsVerticalGrid.js +3 -3
  211. package/modern/ChartsLegend/chartsLegendClasses.js +2 -1
  212. package/modern/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +9 -7
  213. package/modern/ChartsSurface/ChartsSurface.js +68 -35
  214. package/modern/ChartsTooltip/ChartTooltip.types.js +1 -0
  215. package/modern/ChartsTooltip/ChartsAxisTooltipContent.js +83 -72
  216. package/modern/ChartsTooltip/ChartsItemTooltipContent.js +54 -44
  217. package/modern/ChartsTooltip/ChartsTooltip.js +143 -145
  218. package/modern/ChartsTooltip/ChartsTooltipContainer.js +280 -0
  219. package/modern/ChartsTooltip/ChartsTooltipTable.js +1 -1
  220. package/modern/ChartsTooltip/chartsTooltipClasses.js +18 -2
  221. package/modern/ChartsTooltip/index.js +2 -3
  222. package/modern/ChartsTooltip/useAxisTooltip.js +19 -19
  223. package/modern/ChartsTooltip/useItemTooltip.js +5 -4
  224. package/modern/ChartsTooltip/utils.js +0 -8
  225. package/modern/ChartsVoronoiHandler/ChartsVoronoiHandler.js +49 -36
  226. package/modern/ChartsXAxis/ChartsXAxis.js +3 -17
  227. package/modern/ChartsYAxis/ChartsYAxis.js +2 -17
  228. package/modern/Gauge/Gauge.js +0 -6
  229. package/modern/Gauge/GaugeContainer.js +42 -76
  230. package/modern/LineChart/AnimatedArea.js +9 -18
  231. package/modern/LineChart/AnimatedLine.js +9 -20
  232. package/modern/LineChart/AreaPlot.js +12 -2
  233. package/modern/LineChart/CircleMarkElement.js +6 -5
  234. package/modern/LineChart/LineChart.js +3 -36
  235. package/modern/LineChart/LineHighlightPlot.js +6 -5
  236. package/modern/LineChart/LinePlot.js +12 -2
  237. package/modern/LineChart/MarkElement.js +6 -5
  238. package/modern/LineChart/useLineChartProps.js +2 -8
  239. package/modern/PieChart/PieChart.js +5 -41
  240. package/modern/PieChart/PiePlot.js +2 -2
  241. package/modern/ScatterChart/Scatter.js +6 -5
  242. package/modern/ScatterChart/ScatterChart.js +5 -36
  243. package/modern/ScatterChart/useScatterChartProps.js +1 -9
  244. package/modern/SparkLineChart/SparkLineChart.js +4 -35
  245. package/modern/context/ChartDataProvider/ChartDataProvider.js +55 -48
  246. package/modern/context/ChartDataProvider/useChartDataProviderProps.js +22 -42
  247. package/modern/context/ChartProvider/ChartContext.js +8 -0
  248. package/modern/context/ChartProvider/ChartProvider.js +19 -0
  249. package/modern/context/ChartProvider/ChartProvider.types.js +1 -0
  250. package/modern/context/ChartProvider/index.js +3 -0
  251. package/modern/context/ChartProvider/useChartContext.js +11 -0
  252. package/modern/context/DrawingAreaProvider/DrawingArea.types.js +1 -0
  253. package/modern/context/DrawingAreaProvider/DrawingAreaContext.js +15 -0
  254. package/{context/DrawingProvider.js → modern/context/DrawingAreaProvider/DrawingAreaProvider.js} +11 -41
  255. package/modern/context/DrawingAreaProvider/index.js +3 -0
  256. package/modern/context/InteractionSelectors.js +12 -0
  257. package/modern/context/SizeProvider/Size.types.js +1 -0
  258. package/modern/context/SizeProvider/SizeContext.js +15 -0
  259. package/modern/context/SizeProvider/SizeProvider.js +26 -0
  260. package/modern/context/SizeProvider/index.js +4 -0
  261. package/{ChartContainer → modern/context/SizeProvider}/useChartContainerDimensions.js +16 -6
  262. package/modern/context/SizeProvider/useSize.js +13 -0
  263. package/modern/context/index.js +2 -1
  264. package/modern/hooks/useAxisEvents.js +32 -19
  265. package/modern/hooks/useChartId.js +5 -6
  266. package/modern/hooks/useDrawingArea.js +2 -2
  267. package/modern/hooks/useInteractionItemProps.js +22 -13
  268. package/modern/hooks/useSvgRef.js +4 -8
  269. package/modern/index.js +1 -1
  270. package/modern/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +9 -7
  271. package/modern/internals/index.js +3 -4
  272. package/modern/internals/plugins/allPlugins.js +3 -0
  273. package/modern/internals/plugins/corePlugins/corePlugins.js +7 -0
  274. package/modern/internals/plugins/corePlugins/index.js +1 -0
  275. package/modern/internals/plugins/corePlugins/useChartId/index.js +1 -0
  276. package/modern/internals/plugins/corePlugins/useChartId/useChartId.js +32 -0
  277. package/modern/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +9 -0
  278. package/modern/internals/plugins/corePlugins/useChartId/useChartId.types.js +1 -0
  279. package/modern/internals/plugins/corePlugins/useChartId/useChartId.utils.js +5 -0
  280. package/modern/internals/plugins/featurePlugins/useChartInteraction/index.js +2 -0
  281. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +73 -0
  282. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +10 -0
  283. package/modern/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js +1 -0
  284. package/modern/internals/plugins/models/chart.js +1 -0
  285. package/modern/internals/plugins/models/helpers.js +1 -0
  286. package/modern/internals/plugins/models/index.js +3 -0
  287. package/modern/internals/plugins/models/plugin.js +1 -0
  288. package/modern/internals/plugins/utils/ChartStore.js +24 -0
  289. package/modern/internals/plugins/utils/selectors.js +37 -0
  290. package/modern/internals/store/useCharts.js +72 -0
  291. package/modern/internals/store/useCharts.types.js +1 -0
  292. package/modern/internals/store/useSelector.js +6 -0
  293. package/modern/internals/store/useStore.js +17 -0
  294. package/node/BarChart/AnimatedBarElement.js +28 -0
  295. package/node/BarChart/BarChart.js +3 -35
  296. package/node/BarChart/BarElement.js +11 -21
  297. package/node/BarChart/BarPlot.js +11 -1
  298. package/node/BarChart/useBarChartProps.js +2 -8
  299. package/node/ChartContainer/ChartContainer.js +31 -25
  300. package/node/ChartContainer/useChartContainerProps.js +12 -27
  301. package/node/ChartsAxis/axisClasses.js +5 -3
  302. package/node/ChartsAxisHighlight/ChartsAxisHighlight.js +12 -100
  303. package/node/ChartsAxisHighlight/ChartsAxisHighlight.types.js +5 -0
  304. package/node/ChartsAxisHighlight/ChartsAxisHighlightPath.js +40 -0
  305. package/node/ChartsAxisHighlight/ChartsXAxisHighlight.js +57 -0
  306. package/node/ChartsAxisHighlight/ChartsYAxisHighlight.js +57 -0
  307. package/node/ChartsAxisHighlight/chartsAxisHighlightClasses.js +14 -0
  308. package/node/ChartsAxisHighlight/index.js +33 -0
  309. package/node/ChartsGrid/ChartsGrid.js +2 -2
  310. package/node/ChartsGrid/ChartsHorizontalGrid.js +4 -4
  311. package/node/ChartsGrid/ChartsVerticalGrid.js +4 -4
  312. package/node/ChartsLegend/chartsLegendClasses.js +5 -3
  313. package/node/ChartsOnAxisClickHandler/ChartsOnAxisClickHandler.js +9 -7
  314. package/node/ChartsSurface/ChartsSurface.js +68 -35
  315. package/node/ChartsTooltip/ChartTooltip.types.js +5 -0
  316. package/node/ChartsTooltip/ChartsAxisTooltipContent.js +83 -73
  317. package/node/ChartsTooltip/ChartsItemTooltipContent.js +54 -45
  318. package/node/ChartsTooltip/ChartsTooltip.js +142 -144
  319. package/node/ChartsTooltip/ChartsTooltipContainer.js +286 -0
  320. package/node/ChartsTooltip/ChartsTooltipTable.js +2 -2
  321. package/node/ChartsTooltip/chartsTooltipClasses.js +22 -3
  322. package/node/ChartsTooltip/index.js +19 -28
  323. package/node/ChartsTooltip/useAxisTooltip.js +19 -19
  324. package/node/ChartsTooltip/useItemTooltip.js +5 -4
  325. package/node/ChartsTooltip/utils.js +0 -9
  326. package/node/ChartsVoronoiHandler/ChartsVoronoiHandler.js +50 -37
  327. package/node/ChartsXAxis/ChartsXAxis.js +3 -17
  328. package/node/ChartsYAxis/ChartsYAxis.js +2 -17
  329. package/node/Gauge/Gauge.js +0 -6
  330. package/node/Gauge/GaugeContainer.js +42 -76
  331. package/node/LineChart/AnimatedArea.js +9 -19
  332. package/node/LineChart/AnimatedLine.js +9 -21
  333. package/node/LineChart/AreaPlot.js +11 -1
  334. package/node/LineChart/CircleMarkElement.js +6 -5
  335. package/node/LineChart/LineChart.js +3 -36
  336. package/node/LineChart/LineHighlightPlot.js +6 -5
  337. package/node/LineChart/LinePlot.js +11 -1
  338. package/node/LineChart/MarkElement.js +6 -5
  339. package/node/LineChart/useLineChartProps.js +2 -8
  340. package/node/PieChart/PieChart.js +5 -41
  341. package/node/PieChart/PiePlot.js +2 -2
  342. package/node/ScatterChart/Scatter.js +6 -5
  343. package/node/ScatterChart/ScatterChart.js +5 -36
  344. package/node/ScatterChart/useScatterChartProps.js +1 -9
  345. package/node/SparkLineChart/SparkLineChart.js +4 -35
  346. package/node/context/ChartDataProvider/ChartDataProvider.js +55 -48
  347. package/node/context/ChartDataProvider/useChartDataProviderProps.js +22 -44
  348. package/node/context/ChartProvider/ChartContext.js +15 -0
  349. package/node/context/ChartProvider/ChartProvider.js +24 -0
  350. package/node/context/ChartProvider/ChartProvider.types.js +5 -0
  351. package/node/context/ChartProvider/index.js +38 -0
  352. package/node/context/ChartProvider/useChartContext.js +18 -0
  353. package/node/context/DrawingAreaProvider/DrawingArea.types.js +5 -0
  354. package/node/context/DrawingAreaProvider/DrawingAreaContext.js +21 -0
  355. package/node/context/{DrawingProvider.js → DrawingAreaProvider/DrawingAreaProvider.js} +12 -44
  356. package/node/context/DrawingAreaProvider/index.js +38 -0
  357. package/node/context/InteractionSelectors.js +18 -0
  358. package/node/context/SizeProvider/Size.types.js +5 -0
  359. package/node/context/SizeProvider/SizeContext.js +22 -0
  360. package/node/context/SizeProvider/SizeProvider.js +29 -0
  361. package/node/context/SizeProvider/index.js +49 -0
  362. package/node/{ChartContainer → context/SizeProvider}/useChartContainerDimensions.js +16 -6
  363. package/node/context/SizeProvider/useSize.js +20 -0
  364. package/node/context/index.js +10 -2
  365. package/node/hooks/useAxisEvents.js +33 -19
  366. package/node/hooks/useChartId.js +5 -7
  367. package/node/hooks/useDrawingArea.js +2 -2
  368. package/node/hooks/useInteractionItemProps.js +23 -14
  369. package/node/hooks/useSvgRef.js +4 -9
  370. package/node/index.js +1 -1
  371. package/node/internals/components/ChartsAxesGradients/ChartsAxesGradients.js +8 -6
  372. package/node/internals/index.js +28 -40
  373. package/node/internals/plugins/allPlugins.js +10 -0
  374. package/node/internals/plugins/corePlugins/corePlugins.js +12 -0
  375. package/node/internals/plugins/corePlugins/index.js +12 -0
  376. package/node/internals/plugins/corePlugins/useChartId/index.js +12 -0
  377. package/node/internals/plugins/corePlugins/useChartId/useChartId.js +41 -0
  378. package/node/internals/plugins/corePlugins/useChartId/useChartId.selectors.js +15 -0
  379. package/node/internals/plugins/corePlugins/useChartId/useChartId.types.js +5 -0
  380. package/node/internals/plugins/corePlugins/useChartId/useChartId.utils.js +12 -0
  381. package/node/internals/plugins/featurePlugins/useChartInteraction/index.js +27 -0
  382. package/node/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.js +81 -0
  383. package/node/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.selectors.js +16 -0
  384. package/node/internals/plugins/featurePlugins/useChartInteraction/useChartInteraction.types.js +5 -0
  385. package/node/internals/plugins/models/chart.js +5 -0
  386. package/node/internals/plugins/models/helpers.js +5 -0
  387. package/node/internals/plugins/models/index.js +38 -0
  388. package/node/internals/plugins/models/plugin.js +5 -0
  389. package/node/internals/plugins/utils/ChartStore.js +31 -0
  390. package/node/internals/plugins/utils/selectors.js +44 -0
  391. package/node/internals/store/useCharts.js +80 -0
  392. package/node/internals/store/useCharts.types.js +5 -0
  393. package/node/internals/store/useSelector.js +13 -0
  394. package/node/internals/store/useStore.js +23 -0
  395. package/package.json +7 -5
  396. package/themeAugmentation/props.d.ts +1 -2
  397. package/ChartContainer/ResizableContainer.d.ts +0 -9
  398. package/ChartContainer/ResizableContainer.js +0 -26
  399. package/ChartContainer/useChartContainerDimensions.d.ts +0 -6
  400. package/ChartsTooltip/DefaultChartsAxisTooltipContent.d.ts +0 -7
  401. package/ChartsTooltip/DefaultChartsAxisTooltipContent.js +0 -123
  402. package/ChartsTooltip/DefaultChartsItemTooltipContent.d.ts +0 -8
  403. package/ChartsTooltip/DefaultChartsItemTooltipContent.js +0 -92
  404. package/context/InteractionProvider.d.ts +0 -50
  405. package/context/InteractionProvider.js +0 -78
  406. package/modern/ChartContainer/ResizableContainer.js +0 -26
  407. package/modern/ChartsTooltip/DefaultChartsAxisTooltipContent.js +0 -123
  408. package/modern/ChartsTooltip/DefaultChartsItemTooltipContent.js +0 -92
  409. package/modern/context/InteractionProvider.js +0 -78
  410. package/node/ChartContainer/ResizableContainer.js +0 -32
  411. package/node/ChartsTooltip/DefaultChartsAxisTooltipContent.js +0 -129
  412. package/node/ChartsTooltip/DefaultChartsItemTooltipContent.js +0 -98
  413. package/node/context/InteractionProvider.js +0 -85
  414. /package/ChartsGrid/{styledCommonents.d.ts → styledComponents.d.ts} +0 -0
  415. /package/ChartsGrid/{styledCommonents.js → styledComponents.js} +0 -0
  416. /package/modern/ChartsGrid/{styledCommonents.js → styledComponents.js} +0 -0
  417. /package/node/ChartsGrid/{styledCommonents.js → styledComponents.js} +0 -0
@@ -1,1338 +1,5 @@
1
1
  import * as React from 'react';
2
2
  import type { AreaElementOwnerState } from './AreaElement';
3
- export declare const AreaElementPath: import("@emotion/styled").StyledComponent<Pick<import("@react-spring/web").AnimatedProps<{
4
- string?: number | string | undefined;
5
- end?: number | string | undefined;
6
- accumulate?: "none" | "sum" | undefined;
7
- local?: number | string | undefined;
8
- color?: string | undefined;
9
- clip?: number | string | undefined;
10
- style?: {
11
- accentColor?: import("csstype").Property.AccentColor | undefined;
12
- alignContent?: import("csstype").Property.AlignContent | undefined;
13
- alignItems?: import("csstype").Property.AlignItems | undefined;
14
- alignSelf?: import("csstype").Property.AlignSelf | undefined;
15
- alignTracks?: import("csstype").Property.AlignTracks | undefined;
16
- animationComposition?: import("csstype").Property.AnimationComposition | undefined;
17
- animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
18
- animationDirection?: import("csstype").Property.AnimationDirection | undefined;
19
- animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
20
- animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
21
- animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
22
- animationName?: import("csstype").Property.AnimationName | undefined;
23
- animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
24
- animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
25
- animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
26
- animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
27
- animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
28
- appearance?: import("csstype").Property.Appearance | undefined;
29
- aspectRatio?: import("csstype").Property.AspectRatio | undefined;
30
- backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
31
- backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
32
- backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
33
- backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
34
- backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
35
- backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
36
- backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
37
- backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
38
- backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
39
- backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
40
- backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
41
- backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
42
- blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
43
- blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
44
- borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
45
- borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
46
- borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
47
- borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
48
- borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
49
- borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
50
- borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
51
- borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
52
- borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
53
- borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
54
- borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
55
- borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
56
- borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
57
- borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
58
- borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
59
- borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
60
- borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
61
- borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
62
- borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
63
- borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
64
- borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
65
- borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
66
- borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
67
- borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
68
- borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
69
- borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
70
- borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
71
- borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
72
- borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
73
- borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
74
- borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
75
- borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
76
- borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
77
- borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
78
- borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
79
- borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
80
- borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
81
- borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
82
- borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
83
- borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
84
- borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
85
- borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
86
- borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
87
- borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
88
- borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
89
- bottom?: import("csstype").Property.Bottom<string | number> | undefined;
90
- boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
91
- boxShadow?: import("csstype").Property.BoxShadow | undefined;
92
- boxSizing?: import("csstype").Property.BoxSizing | undefined;
93
- breakAfter?: import("csstype").Property.BreakAfter | undefined;
94
- breakBefore?: import("csstype").Property.BreakBefore | undefined;
95
- breakInside?: import("csstype").Property.BreakInside | undefined;
96
- captionSide?: import("csstype").Property.CaptionSide | undefined;
97
- caretColor?: import("csstype").Property.CaretColor | undefined;
98
- caretShape?: import("csstype").Property.CaretShape | undefined;
99
- clear?: import("csstype").Property.Clear | undefined;
100
- clipPath?: import("csstype").Property.ClipPath | undefined;
101
- color?: import("csstype").Property.Color | undefined;
102
- colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
103
- colorScheme?: import("csstype").Property.ColorScheme | undefined;
104
- columnCount?: import("csstype").Property.ColumnCount | undefined;
105
- columnFill?: import("csstype").Property.ColumnFill | undefined;
106
- columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
107
- columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
108
- columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
109
- columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
110
- columnSpan?: import("csstype").Property.ColumnSpan | undefined;
111
- columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
112
- contain?: import("csstype").Property.Contain | undefined;
113
- containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
114
- containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
115
- containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
116
- containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
117
- containerName?: import("csstype").Property.ContainerName | undefined;
118
- containerType?: import("csstype").Property.ContainerType | undefined;
119
- content?: import("csstype").Property.Content | undefined;
120
- contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
121
- counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
122
- counterReset?: import("csstype").Property.CounterReset | undefined;
123
- counterSet?: import("csstype").Property.CounterSet | undefined;
124
- cursor?: import("csstype").Property.Cursor | undefined;
125
- direction?: import("csstype").Property.Direction | undefined;
126
- display?: import("csstype").Property.Display | undefined;
127
- emptyCells?: import("csstype").Property.EmptyCells | undefined;
128
- filter?: import("csstype").Property.Filter | undefined;
129
- flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
130
- flexDirection?: import("csstype").Property.FlexDirection | undefined;
131
- flexGrow?: import("csstype").Property.FlexGrow | undefined;
132
- flexShrink?: import("csstype").Property.FlexShrink | undefined;
133
- flexWrap?: import("csstype").Property.FlexWrap | undefined;
134
- float?: import("csstype").Property.Float | undefined;
135
- fontFamily?: import("csstype").Property.FontFamily | undefined;
136
- fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
137
- fontKerning?: import("csstype").Property.FontKerning | undefined;
138
- fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
139
- fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
140
- fontPalette?: import("csstype").Property.FontPalette | undefined;
141
- fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
142
- fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
143
- fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
144
- fontStretch?: import("csstype").Property.FontStretch | undefined;
145
- fontStyle?: import("csstype").Property.FontStyle | undefined;
146
- fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
147
- fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
148
- fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
149
- fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
150
- fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
151
- fontVariant?: import("csstype").Property.FontVariant | undefined;
152
- fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
153
- fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
154
- fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
155
- fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
156
- fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
157
- fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
158
- fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
159
- fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
160
- fontWeight?: import("csstype").Property.FontWeight | undefined;
161
- forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
162
- gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
163
- gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
164
- gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
165
- gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
166
- gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
167
- gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
168
- gridRowStart?: import("csstype").Property.GridRowStart | undefined;
169
- gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
170
- gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
171
- gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
172
- hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
173
- height?: import("csstype").Property.Height<string | number> | undefined;
174
- hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
175
- hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
176
- hyphens?: import("csstype").Property.Hyphens | undefined;
177
- imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
178
- imageRendering?: import("csstype").Property.ImageRendering | undefined;
179
- imageResolution?: import("csstype").Property.ImageResolution | undefined;
180
- initialLetter?: import("csstype").Property.InitialLetter | undefined;
181
- inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
182
- inputSecurity?: import("csstype").Property.InputSecurity | undefined;
183
- insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
184
- insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
185
- insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
186
- insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
187
- isolation?: import("csstype").Property.Isolation | undefined;
188
- justifyContent?: import("csstype").Property.JustifyContent | undefined;
189
- justifyItems?: import("csstype").Property.JustifyItems | undefined;
190
- justifySelf?: import("csstype").Property.JustifySelf | undefined;
191
- justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
192
- left?: import("csstype").Property.Left<string | number> | undefined;
193
- letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
194
- lineBreak?: import("csstype").Property.LineBreak | undefined;
195
- lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
196
- lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
197
- listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
198
- listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
199
- listStyleType?: import("csstype").Property.ListStyleType | undefined;
200
- marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
201
- marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
202
- marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
203
- marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
204
- marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
205
- marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
206
- marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
207
- marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
208
- marginTrim?: import("csstype").Property.MarginTrim | undefined;
209
- maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
210
- maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
211
- maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
212
- maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
213
- maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
214
- maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
215
- maskClip?: import("csstype").Property.MaskClip | undefined;
216
- maskComposite?: import("csstype").Property.MaskComposite | undefined;
217
- maskImage?: import("csstype").Property.MaskImage | undefined;
218
- maskMode?: import("csstype").Property.MaskMode | undefined;
219
- maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
220
- maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
221
- maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
222
- maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
223
- maskType?: import("csstype").Property.MaskType | undefined;
224
- masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
225
- mathDepth?: import("csstype").Property.MathDepth | undefined;
226
- mathShift?: import("csstype").Property.MathShift | undefined;
227
- mathStyle?: import("csstype").Property.MathStyle | undefined;
228
- maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
229
- maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
230
- maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
231
- maxLines?: import("csstype").Property.MaxLines | undefined;
232
- maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
233
- minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
234
- minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
235
- minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
236
- minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
237
- mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
238
- motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
239
- motionPath?: import("csstype").Property.OffsetPath | undefined;
240
- motionRotation?: import("csstype").Property.OffsetRotate | undefined;
241
- objectFit?: import("csstype").Property.ObjectFit | undefined;
242
- objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
243
- offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
244
- offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
245
- offsetPath?: import("csstype").Property.OffsetPath | undefined;
246
- offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
247
- offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
248
- offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
249
- opacity?: import("csstype").Property.Opacity | undefined;
250
- order?: import("csstype").Property.Order | undefined;
251
- orphans?: import("csstype").Property.Orphans | undefined;
252
- outlineColor?: import("csstype").Property.OutlineColor | undefined;
253
- outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
254
- outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
255
- outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
256
- overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
257
- overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
258
- overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
259
- overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
260
- overflowInline?: import("csstype").Property.OverflowInline | undefined;
261
- overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
262
- overflowX?: import("csstype").Property.OverflowX | undefined;
263
- overflowY?: import("csstype").Property.OverflowY | undefined;
264
- overlay?: import("csstype").Property.Overlay | undefined;
265
- overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
266
- overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
267
- overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
268
- overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
269
- paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
270
- paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
271
- paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
272
- paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
273
- paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
274
- paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
275
- paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
276
- paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
277
- page?: import("csstype").Property.Page | undefined;
278
- pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
279
- pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
280
- pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
281
- paintOrder?: import("csstype").Property.PaintOrder | undefined;
282
- perspective?: import("csstype").Property.Perspective<string | number> | undefined;
283
- perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
284
- pointerEvents?: import("csstype").Property.PointerEvents | undefined;
285
- position?: import("csstype").Property.Position | undefined;
286
- printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
287
- quotes?: import("csstype").Property.Quotes | undefined;
288
- resize?: import("csstype").Property.Resize | undefined;
289
- right?: import("csstype").Property.Right<string | number> | undefined;
290
- rotate?: (string | number) | undefined;
291
- rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
292
- rubyAlign?: import("csstype").Property.RubyAlign | undefined;
293
- rubyMerge?: import("csstype").Property.RubyMerge | undefined;
294
- rubyPosition?: import("csstype").Property.RubyPosition | undefined;
295
- scale?: string | number | readonly [number, number] | undefined;
296
- scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
297
- scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
298
- scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
299
- scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
300
- scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
301
- scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
302
- scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
303
- scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
304
- scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
305
- scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
306
- scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
307
- scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
308
- scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
309
- scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
310
- scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
311
- scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
312
- scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
313
- scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
314
- scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
315
- scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
316
- scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
317
- scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
318
- scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
319
- scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
320
- scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
321
- scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
322
- scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
323
- scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
324
- scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
325
- shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
326
- shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
327
- shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
328
- tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
329
- tableLayout?: import("csstype").Property.TableLayout | undefined;
330
- textAlign?: import("csstype").Property.TextAlign | undefined;
331
- textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
332
- textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
333
- textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
334
- textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
335
- textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
336
- textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
337
- textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
338
- textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
339
- textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
340
- textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
341
- textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
342
- textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
343
- textJustify?: import("csstype").Property.TextJustify | undefined;
344
- textOrientation?: import("csstype").Property.TextOrientation | undefined;
345
- textOverflow?: import("csstype").Property.TextOverflow | undefined;
346
- textRendering?: import("csstype").Property.TextRendering | undefined;
347
- textShadow?: import("csstype").Property.TextShadow | undefined;
348
- textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
349
- textTransform?: import("csstype").Property.TextTransform | undefined;
350
- textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
351
- textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
352
- textWrap?: import("csstype").Property.TextWrap | undefined;
353
- timelineScope?: import("csstype").Property.TimelineScope | undefined;
354
- top?: import("csstype").Property.Top<string | number> | undefined;
355
- touchAction?: import("csstype").Property.TouchAction | undefined;
356
- transform?: string | undefined;
357
- transformBox?: import("csstype").Property.TransformBox | undefined;
358
- transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
359
- transformStyle?: import("csstype").Property.TransformStyle | undefined;
360
- transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
361
- transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
362
- transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
363
- transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
364
- transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
365
- translate?: (string | number) | readonly [string | number, string | number] | undefined;
366
- unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
367
- userSelect?: import("csstype").Property.UserSelect | undefined;
368
- verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
369
- viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
370
- viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
371
- viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
372
- viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
373
- visibility?: import("csstype").Property.Visibility | undefined;
374
- whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
375
- whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
376
- whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
377
- widows?: import("csstype").Property.Widows | undefined;
378
- width?: import("csstype").Property.Width<string | number> | undefined;
379
- willChange?: import("csstype").Property.WillChange | undefined;
380
- wordBreak?: import("csstype").Property.WordBreak | undefined;
381
- wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
382
- wordWrap?: import("csstype").Property.WordWrap | undefined;
383
- writingMode?: import("csstype").Property.WritingMode | undefined;
384
- zIndex?: import("csstype").Property.ZIndex | undefined;
385
- zoom?: import("csstype").Property.Zoom | undefined;
386
- all?: import("csstype").Property.All | undefined;
387
- animation?: import("csstype").Property.Animation<string & {}> | undefined;
388
- animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
389
- background?: import("csstype").Property.Background<string | number> | undefined;
390
- backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
391
- border?: import("csstype").Property.Border<string | number> | undefined;
392
- borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
393
- borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
394
- borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
395
- borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
396
- borderColor?: import("csstype").Property.BorderColor | undefined;
397
- borderImage?: import("csstype").Property.BorderImage | undefined;
398
- borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
399
- borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
400
- borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
401
- borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
402
- borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
403
- borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
404
- borderStyle?: import("csstype").Property.BorderStyle | undefined;
405
- borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
406
- borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
407
- caret?: import("csstype").Property.Caret | undefined;
408
- columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
409
- columns?: import("csstype").Property.Columns<string | number> | undefined;
410
- containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
411
- container?: import("csstype").Property.Container | undefined;
412
- flex?: import("csstype").Property.Flex<string | number> | undefined;
413
- flexFlow?: import("csstype").Property.FlexFlow | undefined;
414
- font?: import("csstype").Property.Font | undefined;
415
- gap?: import("csstype").Property.Gap<string | number> | undefined;
416
- grid?: import("csstype").Property.Grid | undefined;
417
- gridArea?: import("csstype").Property.GridArea | undefined;
418
- gridColumn?: import("csstype").Property.GridColumn | undefined;
419
- gridRow?: import("csstype").Property.GridRow | undefined;
420
- gridTemplate?: import("csstype").Property.GridTemplate | undefined;
421
- inset?: import("csstype").Property.Inset<string | number> | undefined;
422
- insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
423
- insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
424
- lineClamp?: import("csstype").Property.LineClamp | undefined;
425
- listStyle?: import("csstype").Property.ListStyle | undefined;
426
- margin?: import("csstype").Property.Margin<string | number> | undefined;
427
- marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
428
- marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
429
- mask?: import("csstype").Property.Mask<string | number> | undefined;
430
- maskBorder?: import("csstype").Property.MaskBorder | undefined;
431
- motion?: import("csstype").Property.Offset<string | number> | undefined;
432
- offset?: import("csstype").Property.Offset<string | number> | undefined;
433
- outline?: import("csstype").Property.Outline<string | number> | undefined;
434
- overflow?: import("csstype").Property.Overflow | undefined;
435
- overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
436
- padding?: import("csstype").Property.Padding<string | number> | undefined;
437
- paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
438
- paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
439
- placeContent?: import("csstype").Property.PlaceContent | undefined;
440
- placeItems?: import("csstype").Property.PlaceItems | undefined;
441
- placeSelf?: import("csstype").Property.PlaceSelf | undefined;
442
- scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
443
- scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
444
- scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
445
- scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
446
- scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
447
- scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
448
- scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
449
- scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
450
- textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
451
- textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
452
- transition?: import("csstype").Property.Transition<string & {}> | undefined;
453
- viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
454
- MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
455
- MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
456
- MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
457
- MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
458
- MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
459
- MozAnimationName?: import("csstype").Property.AnimationName | undefined;
460
- MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
461
- MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
462
- MozAppearance?: import("csstype").Property.MozAppearance | undefined;
463
- MozBinding?: import("csstype").Property.MozBinding | undefined;
464
- MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
465
- MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
466
- MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
467
- MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
468
- MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
469
- MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
470
- MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
471
- MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
472
- MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
473
- MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
474
- MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
475
- MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
476
- MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
477
- MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
478
- MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
479
- MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
480
- MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
481
- MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
482
- MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
483
- MozHyphens?: import("csstype").Property.Hyphens | undefined;
484
- MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
485
- MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
486
- MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
487
- MozOrient?: import("csstype").Property.MozOrient | undefined;
488
- MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
489
- MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
490
- MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
491
- MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
492
- MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
493
- MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
494
- MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
495
- MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
496
- MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
497
- MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
498
- MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
499
- MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
500
- MozUserModify?: import("csstype").Property.MozUserModify | undefined;
501
- MozUserSelect?: import("csstype").Property.UserSelect | undefined;
502
- MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
503
- MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
504
- msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
505
- msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
506
- msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
507
- msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
508
- msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
509
- msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
510
- msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
511
- msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
512
- msFilter?: import("csstype").Property.MsFilter | undefined;
513
- msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
514
- msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
515
- msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
516
- msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
517
- msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
518
- msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
519
- msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
520
- msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
521
- msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
522
- msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
523
- msHyphens?: import("csstype").Property.Hyphens | undefined;
524
- msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
525
- msLineBreak?: import("csstype").Property.LineBreak | undefined;
526
- msOrder?: import("csstype").Property.Order | undefined;
527
- msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
528
- msOverflowX?: import("csstype").Property.OverflowX | undefined;
529
- msOverflowY?: import("csstype").Property.OverflowY | undefined;
530
- msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
531
- msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
532
- msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
533
- msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
534
- msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
535
- msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
536
- msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
537
- msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
538
- msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
539
- msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
540
- msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
541
- msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
542
- msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
543
- msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
544
- msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
545
- msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
546
- msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
547
- msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
548
- msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
549
- msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
550
- msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
551
- msTouchAction?: import("csstype").Property.TouchAction | undefined;
552
- msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
553
- msTransform?: import("csstype").Property.Transform | undefined;
554
- msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
555
- msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
556
- msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
557
- msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
558
- msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
559
- msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
560
- msWordBreak?: import("csstype").Property.WordBreak | undefined;
561
- msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
562
- msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
563
- msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
564
- msWritingMode?: import("csstype").Property.WritingMode | undefined;
565
- WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
566
- WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
567
- WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
568
- WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
569
- WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
570
- WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
571
- WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
572
- WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
573
- WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
574
- WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
575
- WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
576
- WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
577
- WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
578
- WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
579
- WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
580
- WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
581
- WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
582
- WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
583
- WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
584
- WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
585
- WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
586
- WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
587
- WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
588
- WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
589
- WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
590
- WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
591
- WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
592
- WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
593
- WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
594
- WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
595
- WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
596
- WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
597
- WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
598
- WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
599
- WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
600
- WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
601
- WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
602
- WebkitFilter?: import("csstype").Property.Filter | undefined;
603
- WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
604
- WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
605
- WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
606
- WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
607
- WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
608
- WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
609
- WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
610
- WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
611
- WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
612
- WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
613
- WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
614
- WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
615
- WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
616
- WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
617
- WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
618
- WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
619
- WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
620
- WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
621
- WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
622
- WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
623
- WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
624
- WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
625
- WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
626
- WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
627
- WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
628
- WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
629
- WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
630
- WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
631
- WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
632
- WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
633
- WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
634
- WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
635
- WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
636
- WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
637
- WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
638
- WebkitOrder?: import("csstype").Property.Order | undefined;
639
- WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
640
- WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
641
- WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
642
- WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
643
- WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
644
- WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
645
- WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
646
- WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
647
- WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
648
- WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
649
- WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
650
- WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
651
- WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
652
- WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
653
- WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
654
- WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
655
- WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
656
- WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
657
- WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
658
- WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
659
- WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
660
- WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
661
- WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
662
- WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
663
- WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
664
- WebkitTransform?: import("csstype").Property.Transform | undefined;
665
- WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
666
- WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
667
- WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
668
- WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
669
- WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
670
- WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
671
- WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
672
- WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
673
- WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
674
- MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
675
- MozBorderImage?: import("csstype").Property.BorderImage | undefined;
676
- MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
677
- MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
678
- MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
679
- msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
680
- msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
681
- msFlex?: import("csstype").Property.Flex<string | number> | undefined;
682
- msScrollLimit?: import("csstype").Property.MsScrollLimit | undefined;
683
- msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
684
- msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
685
- msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
686
- WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
687
- WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
688
- WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
689
- WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
690
- WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
691
- WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
692
- WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
693
- WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
694
- WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
695
- WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
696
- WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
697
- WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
698
- WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
699
- azimuth?: import("csstype").Property.Azimuth | undefined;
700
- boxAlign?: import("csstype").Property.BoxAlign | undefined;
701
- boxDirection?: import("csstype").Property.BoxDirection | undefined;
702
- boxFlex?: import("csstype").Property.BoxFlex | undefined;
703
- boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
704
- boxLines?: import("csstype").Property.BoxLines | undefined;
705
- boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
706
- boxOrient?: import("csstype").Property.BoxOrient | undefined;
707
- boxPack?: import("csstype").Property.BoxPack | undefined;
708
- clip?: import("csstype").Property.Clip | undefined;
709
- gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
710
- gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
711
- gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
712
- imeMode?: import("csstype").Property.ImeMode | undefined;
713
- offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
714
- offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
715
- offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
716
- offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
717
- offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
718
- offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
719
- scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
720
- scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
721
- scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
722
- scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
723
- scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
724
- scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
725
- KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
726
- KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
727
- KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
728
- KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
729
- KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
730
- KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
731
- KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
732
- KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
733
- KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
734
- KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
735
- KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
736
- MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
737
- MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
738
- MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
739
- MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
740
- MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
741
- MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
742
- MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
743
- MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
744
- MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
745
- MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
746
- MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
747
- MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
748
- MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
749
- MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
750
- MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
751
- MozBoxPack?: import("csstype").Property.BoxPack | undefined;
752
- MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
753
- MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
754
- MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
755
- MozOpacity?: import("csstype").Property.Opacity | undefined;
756
- MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
757
- MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
758
- MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
759
- MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
760
- MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
761
- MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
762
- MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
763
- MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
764
- MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
765
- MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
766
- MozTransform?: import("csstype").Property.Transform | undefined;
767
- MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
768
- MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
769
- MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
770
- MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
771
- MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
772
- MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
773
- MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
774
- MozUserInput?: import("csstype").Property.MozUserInput | undefined;
775
- msImeMode?: import("csstype").Property.ImeMode | undefined;
776
- OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
777
- OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
778
- OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
779
- OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
780
- OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
781
- OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
782
- OAnimationName?: import("csstype").Property.AnimationName | undefined;
783
- OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
784
- OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
785
- OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
786
- OBorderImage?: import("csstype").Property.BorderImage | undefined;
787
- OObjectFit?: import("csstype").Property.ObjectFit | undefined;
788
- OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
789
- OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
790
- OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
791
- OTransform?: import("csstype").Property.Transform | undefined;
792
- OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
793
- OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
794
- OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
795
- OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
796
- OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
797
- OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
798
- WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
799
- WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
800
- WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
801
- WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
802
- WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
803
- WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
804
- WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
805
- WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
806
- alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
807
- baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
808
- clipRule?: import("csstype").Property.ClipRule | undefined;
809
- colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
810
- colorRendering?: import("csstype").Property.ColorRendering | undefined;
811
- dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
812
- fill?: import("csstype").Property.Fill | undefined;
813
- fillOpacity?: import("csstype").Property.FillOpacity | undefined;
814
- fillRule?: import("csstype").Property.FillRule | undefined;
815
- floodColor?: import("csstype").Property.FloodColor | undefined;
816
- floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
817
- glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
818
- lightingColor?: import("csstype").Property.LightingColor | undefined;
819
- marker?: import("csstype").Property.Marker | undefined;
820
- markerEnd?: import("csstype").Property.MarkerEnd | undefined;
821
- markerMid?: import("csstype").Property.MarkerMid | undefined;
822
- markerStart?: import("csstype").Property.MarkerStart | undefined;
823
- shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
824
- stopColor?: import("csstype").Property.StopColor | undefined;
825
- stopOpacity?: import("csstype").Property.StopOpacity | undefined;
826
- stroke?: import("csstype").Property.Stroke | undefined;
827
- strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
828
- strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
829
- strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
830
- strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
831
- strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
832
- strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
833
- strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
834
- textAnchor?: import("csstype").Property.TextAnchor | undefined;
835
- vectorEffect?: import("csstype").Property.VectorEffect | undefined;
836
- x?: (string | number) | undefined;
837
- y?: (string | number) | undefined;
838
- z?: (string | number) | undefined;
839
- translateX?: (string | number) | undefined;
840
- translateY?: (string | number) | undefined;
841
- translateZ?: (string | number) | undefined;
842
- translate3d?: readonly [string | number, string | number, string | number] | undefined;
843
- rotateX?: (string | number) | undefined;
844
- rotateY?: (string | number) | undefined;
845
- rotateZ?: (string | number) | undefined;
846
- rotate3d?: readonly [number, number, number, string | number] | undefined;
847
- scaleX?: number | undefined;
848
- scaleY?: number | undefined;
849
- scaleZ?: number | undefined;
850
- scale3d?: readonly [number, number, number] | undefined;
851
- skew?: ((string | number) | readonly [string | number, string | number]) | undefined;
852
- skewX?: (string | number) | undefined;
853
- skewY?: (string | number) | undefined;
854
- matrix?: readonly [number, number, number, number, number, number] | undefined;
855
- matrix3d?: readonly [number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number] | undefined;
856
- } | undefined;
857
- unicode?: number | string | undefined;
858
- fill?: string | undefined;
859
- stroke?: string | undefined;
860
- x?: number | string | undefined;
861
- y?: number | string | undefined;
862
- clipPath?: string | undefined;
863
- cursor?: number | string | undefined;
864
- direction?: number | string | undefined;
865
- display?: number | string | undefined;
866
- filter?: string | undefined;
867
- fontFamily?: string | undefined;
868
- fontSize?: number | string | undefined;
869
- fontSizeAdjust?: number | string | undefined;
870
- fontStretch?: number | string | undefined;
871
- fontStyle?: number | string | undefined;
872
- fontVariant?: number | string | undefined;
873
- fontWeight?: number | string | undefined;
874
- height?: number | string | undefined;
875
- imageRendering?: number | string | undefined;
876
- letterSpacing?: number | string | undefined;
877
- opacity?: number | string | undefined;
878
- order?: number | string | undefined;
879
- paintOrder?: number | string | undefined;
880
- pointerEvents?: number | string | undefined;
881
- rotate?: number | string | undefined;
882
- scale?: number | string | undefined;
883
- textRendering?: number | string | undefined;
884
- transform?: string | undefined;
885
- unicodeBidi?: number | string | undefined;
886
- visibility?: number | string | undefined;
887
- width?: number | string | undefined;
888
- wordSpacing?: number | string | undefined;
889
- writingMode?: number | string | undefined;
890
- alphabetic?: number | string | undefined;
891
- hanging?: number | string | undefined;
892
- ideographic?: number | string | undefined;
893
- mathematical?: number | string | undefined;
894
- mask?: string | undefined;
895
- offset?: number | string | undefined;
896
- overflow?: number | string | undefined;
897
- textDecoration?: number | string | undefined;
898
- azimuth?: number | string | undefined;
899
- alignmentBaseline?: "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit" | undefined;
900
- baselineShift?: number | string | undefined;
901
- clipRule?: number | string | undefined;
902
- colorInterpolation?: number | string | undefined;
903
- colorRendering?: number | string | undefined;
904
- dominantBaseline?: number | string | undefined;
905
- fillOpacity?: number | string | undefined;
906
- fillRule?: "nonzero" | "evenodd" | "inherit" | undefined;
907
- floodColor?: number | string | undefined;
908
- floodOpacity?: number | string | undefined;
909
- glyphOrientationVertical?: number | string | undefined;
910
- lightingColor?: number | string | undefined;
911
- markerEnd?: string | undefined;
912
- markerMid?: string | undefined;
913
- markerStart?: string | undefined;
914
- shapeRendering?: number | string | undefined;
915
- stopColor?: string | undefined;
916
- stopOpacity?: number | string | undefined;
917
- strokeDasharray?: string | number | undefined;
918
- strokeDashoffset?: string | number | undefined;
919
- strokeLinecap?: "butt" | "round" | "square" | "inherit" | undefined;
920
- strokeLinejoin?: "miter" | "round" | "bevel" | "inherit" | undefined;
921
- strokeMiterlimit?: number | string | undefined;
922
- strokeOpacity?: number | string | undefined;
923
- strokeWidth?: number | string | undefined;
924
- textAnchor?: string | undefined;
925
- vectorEffect?: number | string | undefined;
926
- additive?: "replace" | "sum" | undefined;
927
- path?: string | undefined;
928
- suppressHydrationWarning?: boolean | undefined;
929
- className?: string | undefined;
930
- id?: string | undefined;
931
- lang?: string | undefined;
932
- max?: number | string | undefined;
933
- media?: string | undefined;
934
- method?: string | undefined;
935
- min?: number | string | undefined;
936
- name?: string | undefined;
937
- target?: string | undefined;
938
- type?: string | undefined;
939
- role?: React.AriaRole | undefined;
940
- tabIndex?: number | undefined;
941
- crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
942
- accentHeight?: number | string | undefined;
943
- allowReorder?: "no" | "yes" | undefined;
944
- amplitude?: number | string | undefined;
945
- arabicForm?: "initial" | "medial" | "terminal" | "isolated" | undefined;
946
- ascent?: number | string | undefined;
947
- attributeName?: string | undefined;
948
- attributeType?: string | undefined;
949
- autoReverse?: (boolean | "false" | "true") | undefined;
950
- baseFrequency?: number | string | undefined;
951
- baseProfile?: number | string | undefined;
952
- bbox?: number | string | undefined;
953
- begin?: number | string | undefined;
954
- bias?: number | string | undefined;
955
- by?: number | string | undefined;
956
- calcMode?: number | string | undefined;
957
- capHeight?: number | string | undefined;
958
- clipPathUnits?: number | string | undefined;
959
- colorInterpolationFilters?: "auto" | "sRGB" | "linearRGB" | "inherit" | undefined;
960
- colorProfile?: number | string | undefined;
961
- contentScriptType?: number | string | undefined;
962
- contentStyleType?: number | string | undefined;
963
- cx?: number | string | undefined;
964
- cy?: number | string | undefined;
965
- d?: string | undefined;
966
- decelerate?: number | string | undefined;
967
- descent?: number | string | undefined;
968
- diffuseConstant?: number | string | undefined;
969
- divisor?: number | string | undefined;
970
- dur?: number | string | undefined;
971
- dx?: number | string | undefined;
972
- dy?: number | string | undefined;
973
- edgeMode?: number | string | undefined;
974
- elevation?: number | string | undefined;
975
- enableBackground?: number | string | undefined;
976
- exponent?: number | string | undefined;
977
- externalResourcesRequired?: (boolean | "false" | "true") | undefined;
978
- filterRes?: number | string | undefined;
979
- filterUnits?: number | string | undefined;
980
- focusable?: (boolean | "false" | "true") | "auto" | undefined;
981
- format?: number | string | undefined;
982
- fr?: number | string | undefined;
983
- from?: number | string | undefined;
984
- fx?: number | string | undefined;
985
- fy?: number | string | undefined;
986
- g1?: number | string | undefined;
987
- g2?: number | string | undefined;
988
- glyphName?: number | string | undefined;
989
- glyphOrientationHorizontal?: number | string | undefined;
990
- glyphRef?: number | string | undefined;
991
- gradientTransform?: string | undefined;
992
- gradientUnits?: string | undefined;
993
- horizAdvX?: number | string | undefined;
994
- horizOriginX?: number | string | undefined;
995
- href?: string | undefined;
996
- in2?: number | string | undefined;
997
- in?: string | undefined;
998
- intercept?: number | string | undefined;
999
- k1?: number | string | undefined;
1000
- k2?: number | string | undefined;
1001
- k3?: number | string | undefined;
1002
- k4?: number | string | undefined;
1003
- k?: number | string | undefined;
1004
- kernelMatrix?: number | string | undefined;
1005
- kernelUnitLength?: number | string | undefined;
1006
- kerning?: number | string | undefined;
1007
- keyPoints?: number | string | undefined;
1008
- keySplines?: number | string | undefined;
1009
- keyTimes?: number | string | undefined;
1010
- lengthAdjust?: number | string | undefined;
1011
- limitingConeAngle?: number | string | undefined;
1012
- markerHeight?: number | string | undefined;
1013
- markerUnits?: number | string | undefined;
1014
- markerWidth?: number | string | undefined;
1015
- maskContentUnits?: number | string | undefined;
1016
- maskUnits?: number | string | undefined;
1017
- mode?: number | string | undefined;
1018
- numOctaves?: number | string | undefined;
1019
- operator?: number | string | undefined;
1020
- orient?: number | string | undefined;
1021
- orientation?: number | string | undefined;
1022
- origin?: number | string | undefined;
1023
- overlinePosition?: number | string | undefined;
1024
- overlineThickness?: number | string | undefined;
1025
- panose1?: number | string | undefined;
1026
- pathLength?: number | string | undefined;
1027
- patternContentUnits?: string | undefined;
1028
- patternTransform?: number | string | undefined;
1029
- patternUnits?: string | undefined;
1030
- points?: string | undefined;
1031
- pointsAtX?: number | string | undefined;
1032
- pointsAtY?: number | string | undefined;
1033
- pointsAtZ?: number | string | undefined;
1034
- preserveAlpha?: (boolean | "false" | "true") | undefined;
1035
- preserveAspectRatio?: string | undefined;
1036
- primitiveUnits?: number | string | undefined;
1037
- r?: number | string | undefined;
1038
- radius?: number | string | undefined;
1039
- refX?: number | string | undefined;
1040
- refY?: number | string | undefined;
1041
- renderingIntent?: number | string | undefined;
1042
- repeatCount?: number | string | undefined;
1043
- repeatDur?: number | string | undefined;
1044
- requiredExtensions?: number | string | undefined;
1045
- requiredFeatures?: number | string | undefined;
1046
- restart?: number | string | undefined;
1047
- result?: string | undefined;
1048
- rx?: number | string | undefined;
1049
- ry?: number | string | undefined;
1050
- seed?: number | string | undefined;
1051
- slope?: number | string | undefined;
1052
- spacing?: number | string | undefined;
1053
- specularConstant?: number | string | undefined;
1054
- specularExponent?: number | string | undefined;
1055
- speed?: number | string | undefined;
1056
- spreadMethod?: string | undefined;
1057
- startOffset?: number | string | undefined;
1058
- stdDeviation?: number | string | undefined;
1059
- stemh?: number | string | undefined;
1060
- stemv?: number | string | undefined;
1061
- stitchTiles?: number | string | undefined;
1062
- strikethroughPosition?: number | string | undefined;
1063
- strikethroughThickness?: number | string | undefined;
1064
- surfaceScale?: number | string | undefined;
1065
- systemLanguage?: number | string | undefined;
1066
- tableValues?: number | string | undefined;
1067
- targetX?: number | string | undefined;
1068
- targetY?: number | string | undefined;
1069
- textLength?: number | string | undefined;
1070
- to?: number | string | undefined;
1071
- u1?: number | string | undefined;
1072
- u2?: number | string | undefined;
1073
- underlinePosition?: number | string | undefined;
1074
- underlineThickness?: number | string | undefined;
1075
- unicodeRange?: number | string | undefined;
1076
- unitsPerEm?: number | string | undefined;
1077
- vAlphabetic?: number | string | undefined;
1078
- values?: string | undefined;
1079
- version?: string | undefined;
1080
- vertAdvY?: number | string | undefined;
1081
- vertOriginX?: number | string | undefined;
1082
- vertOriginY?: number | string | undefined;
1083
- vHanging?: number | string | undefined;
1084
- vIdeographic?: number | string | undefined;
1085
- viewBox?: string | undefined;
1086
- viewTarget?: number | string | undefined;
1087
- vMathematical?: number | string | undefined;
1088
- widths?: number | string | undefined;
1089
- x1?: number | string | undefined;
1090
- x2?: number | string | undefined;
1091
- xChannelSelector?: string | undefined;
1092
- xHeight?: number | string | undefined;
1093
- xlinkActuate?: string | undefined;
1094
- xlinkArcrole?: string | undefined;
1095
- xlinkHref?: string | undefined;
1096
- xlinkRole?: string | undefined;
1097
- xlinkShow?: string | undefined;
1098
- xlinkTitle?: string | undefined;
1099
- xlinkType?: string | undefined;
1100
- xmlBase?: string | undefined;
1101
- xmlLang?: string | undefined;
1102
- xmlns?: string | undefined;
1103
- xmlnsXlink?: string | undefined;
1104
- xmlSpace?: string | undefined;
1105
- y1?: number | string | undefined;
1106
- y2?: number | string | undefined;
1107
- yChannelSelector?: string | undefined;
1108
- z?: number | string | undefined;
1109
- zoomAndPan?: string | undefined;
1110
- "aria-activedescendant"?: string | undefined;
1111
- "aria-atomic"?: (boolean | "false" | "true") | undefined;
1112
- "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
1113
- "aria-braillelabel"?: string | undefined;
1114
- "aria-brailleroledescription"?: string | undefined;
1115
- "aria-busy"?: (boolean | "false" | "true") | undefined;
1116
- "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
1117
- "aria-colcount"?: number | undefined;
1118
- "aria-colindex"?: number | undefined;
1119
- "aria-colindextext"?: string | undefined;
1120
- "aria-colspan"?: number | undefined;
1121
- "aria-controls"?: string | undefined;
1122
- "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
1123
- "aria-describedby"?: string | undefined;
1124
- "aria-description"?: string | undefined;
1125
- "aria-details"?: string | undefined;
1126
- "aria-disabled"?: (boolean | "false" | "true") | undefined;
1127
- "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
1128
- "aria-errormessage"?: string | undefined;
1129
- "aria-expanded"?: (boolean | "false" | "true") | undefined;
1130
- "aria-flowto"?: string | undefined;
1131
- "aria-grabbed"?: (boolean | "false" | "true") | undefined;
1132
- "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
1133
- "aria-hidden"?: (boolean | "false" | "true") | undefined;
1134
- "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
1135
- "aria-keyshortcuts"?: string | undefined;
1136
- "aria-label"?: string | undefined;
1137
- "aria-labelledby"?: string | undefined;
1138
- "aria-level"?: number | undefined;
1139
- "aria-live"?: "off" | "assertive" | "polite" | undefined;
1140
- "aria-modal"?: (boolean | "false" | "true") | undefined;
1141
- "aria-multiline"?: (boolean | "false" | "true") | undefined;
1142
- "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
1143
- "aria-orientation"?: "horizontal" | "vertical" | undefined;
1144
- "aria-owns"?: string | undefined;
1145
- "aria-placeholder"?: string | undefined;
1146
- "aria-posinset"?: number | undefined;
1147
- "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
1148
- "aria-readonly"?: (boolean | "false" | "true") | undefined;
1149
- "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
1150
- "aria-required"?: (boolean | "false" | "true") | undefined;
1151
- "aria-roledescription"?: string | undefined;
1152
- "aria-rowcount"?: number | undefined;
1153
- "aria-rowindex"?: number | undefined;
1154
- "aria-rowindextext"?: string | undefined;
1155
- "aria-rowspan"?: number | undefined;
1156
- "aria-selected"?: (boolean | "false" | "true") | undefined;
1157
- "aria-setsize"?: number | undefined;
1158
- "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
1159
- "aria-valuemax"?: number | undefined;
1160
- "aria-valuemin"?: number | undefined;
1161
- "aria-valuenow"?: number | undefined;
1162
- "aria-valuetext"?: string | undefined;
1163
- children?: React.ReactNode | undefined;
1164
- dangerouslySetInnerHTML?: {
1165
- __html: string | TrustedHTML;
1166
- } | undefined;
1167
- onCopy?: React.ClipboardEventHandler<SVGPathElement> | undefined;
1168
- onCopyCapture?: React.ClipboardEventHandler<SVGPathElement> | undefined;
1169
- onCut?: React.ClipboardEventHandler<SVGPathElement> | undefined;
1170
- onCutCapture?: React.ClipboardEventHandler<SVGPathElement> | undefined;
1171
- onPaste?: React.ClipboardEventHandler<SVGPathElement> | undefined;
1172
- onPasteCapture?: React.ClipboardEventHandler<SVGPathElement> | undefined;
1173
- onCompositionEnd?: React.CompositionEventHandler<SVGPathElement> | undefined;
1174
- onCompositionEndCapture?: React.CompositionEventHandler<SVGPathElement> | undefined;
1175
- onCompositionStart?: React.CompositionEventHandler<SVGPathElement> | undefined;
1176
- onCompositionStartCapture?: React.CompositionEventHandler<SVGPathElement> | undefined;
1177
- onCompositionUpdate?: React.CompositionEventHandler<SVGPathElement> | undefined;
1178
- onCompositionUpdateCapture?: React.CompositionEventHandler<SVGPathElement> | undefined;
1179
- onFocus?: React.FocusEventHandler<SVGPathElement> | undefined;
1180
- onFocusCapture?: React.FocusEventHandler<SVGPathElement> | undefined;
1181
- onBlur?: React.FocusEventHandler<SVGPathElement> | undefined;
1182
- onBlurCapture?: React.FocusEventHandler<SVGPathElement> | undefined;
1183
- onChange?: React.FormEventHandler<SVGPathElement> | undefined;
1184
- onChangeCapture?: React.FormEventHandler<SVGPathElement> | undefined;
1185
- onBeforeInput?: React.FormEventHandler<SVGPathElement> | undefined;
1186
- onBeforeInputCapture?: React.FormEventHandler<SVGPathElement> | undefined;
1187
- onInput?: React.FormEventHandler<SVGPathElement> | undefined;
1188
- onInputCapture?: React.FormEventHandler<SVGPathElement> | undefined;
1189
- onReset?: React.FormEventHandler<SVGPathElement> | undefined;
1190
- onResetCapture?: React.FormEventHandler<SVGPathElement> | undefined;
1191
- onSubmit?: React.FormEventHandler<SVGPathElement> | undefined;
1192
- onSubmitCapture?: React.FormEventHandler<SVGPathElement> | undefined;
1193
- onInvalid?: React.FormEventHandler<SVGPathElement> | undefined;
1194
- onInvalidCapture?: React.FormEventHandler<SVGPathElement> | undefined;
1195
- onLoad?: React.ReactEventHandler<SVGPathElement> | undefined;
1196
- onLoadCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1197
- onError?: React.ReactEventHandler<SVGPathElement> | undefined;
1198
- onErrorCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1199
- onKeyDown?: React.KeyboardEventHandler<SVGPathElement> | undefined;
1200
- onKeyDownCapture?: React.KeyboardEventHandler<SVGPathElement> | undefined;
1201
- onKeyPress?: React.KeyboardEventHandler<SVGPathElement> | undefined;
1202
- onKeyPressCapture?: React.KeyboardEventHandler<SVGPathElement> | undefined;
1203
- onKeyUp?: React.KeyboardEventHandler<SVGPathElement> | undefined;
1204
- onKeyUpCapture?: React.KeyboardEventHandler<SVGPathElement> | undefined;
1205
- onAbort?: React.ReactEventHandler<SVGPathElement> | undefined;
1206
- onAbortCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1207
- onCanPlay?: React.ReactEventHandler<SVGPathElement> | undefined;
1208
- onCanPlayCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1209
- onCanPlayThrough?: React.ReactEventHandler<SVGPathElement> | undefined;
1210
- onCanPlayThroughCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1211
- onDurationChange?: React.ReactEventHandler<SVGPathElement> | undefined;
1212
- onDurationChangeCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1213
- onEmptied?: React.ReactEventHandler<SVGPathElement> | undefined;
1214
- onEmptiedCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1215
- onEncrypted?: React.ReactEventHandler<SVGPathElement> | undefined;
1216
- onEncryptedCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1217
- onEnded?: React.ReactEventHandler<SVGPathElement> | undefined;
1218
- onEndedCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1219
- onLoadedData?: React.ReactEventHandler<SVGPathElement> | undefined;
1220
- onLoadedDataCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1221
- onLoadedMetadata?: React.ReactEventHandler<SVGPathElement> | undefined;
1222
- onLoadedMetadataCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1223
- onLoadStart?: React.ReactEventHandler<SVGPathElement> | undefined;
1224
- onLoadStartCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1225
- onPause?: React.ReactEventHandler<SVGPathElement> | undefined;
1226
- onPauseCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1227
- onPlay?: React.ReactEventHandler<SVGPathElement> | undefined;
1228
- onPlayCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1229
- onPlaying?: React.ReactEventHandler<SVGPathElement> | undefined;
1230
- onPlayingCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1231
- onProgress?: React.ReactEventHandler<SVGPathElement> | undefined;
1232
- onProgressCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1233
- onRateChange?: React.ReactEventHandler<SVGPathElement> | undefined;
1234
- onRateChangeCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1235
- onResize?: React.ReactEventHandler<SVGPathElement> | undefined;
1236
- onResizeCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1237
- onSeeked?: React.ReactEventHandler<SVGPathElement> | undefined;
1238
- onSeekedCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1239
- onSeeking?: React.ReactEventHandler<SVGPathElement> | undefined;
1240
- onSeekingCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1241
- onStalled?: React.ReactEventHandler<SVGPathElement> | undefined;
1242
- onStalledCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1243
- onSuspend?: React.ReactEventHandler<SVGPathElement> | undefined;
1244
- onSuspendCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1245
- onTimeUpdate?: React.ReactEventHandler<SVGPathElement> | undefined;
1246
- onTimeUpdateCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1247
- onVolumeChange?: React.ReactEventHandler<SVGPathElement> | undefined;
1248
- onVolumeChangeCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1249
- onWaiting?: React.ReactEventHandler<SVGPathElement> | undefined;
1250
- onWaitingCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1251
- onAuxClick?: React.MouseEventHandler<SVGPathElement> | undefined;
1252
- onAuxClickCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1253
- onClick?: React.MouseEventHandler<SVGPathElement> | undefined;
1254
- onClickCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1255
- onContextMenu?: React.MouseEventHandler<SVGPathElement> | undefined;
1256
- onContextMenuCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1257
- onDoubleClick?: React.MouseEventHandler<SVGPathElement> | undefined;
1258
- onDoubleClickCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1259
- onDrag?: React.DragEventHandler<SVGPathElement> | undefined;
1260
- onDragCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1261
- onDragEnd?: React.DragEventHandler<SVGPathElement> | undefined;
1262
- onDragEndCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1263
- onDragEnter?: React.DragEventHandler<SVGPathElement> | undefined;
1264
- onDragEnterCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1265
- onDragExit?: React.DragEventHandler<SVGPathElement> | undefined;
1266
- onDragExitCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1267
- onDragLeave?: React.DragEventHandler<SVGPathElement> | undefined;
1268
- onDragLeaveCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1269
- onDragOver?: React.DragEventHandler<SVGPathElement> | undefined;
1270
- onDragOverCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1271
- onDragStart?: React.DragEventHandler<SVGPathElement> | undefined;
1272
- onDragStartCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1273
- onDrop?: React.DragEventHandler<SVGPathElement> | undefined;
1274
- onDropCapture?: React.DragEventHandler<SVGPathElement> | undefined;
1275
- onMouseDown?: React.MouseEventHandler<SVGPathElement> | undefined;
1276
- onMouseDownCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1277
- onMouseEnter?: React.MouseEventHandler<SVGPathElement> | undefined;
1278
- onMouseLeave?: React.MouseEventHandler<SVGPathElement> | undefined;
1279
- onMouseMove?: React.MouseEventHandler<SVGPathElement> | undefined;
1280
- onMouseMoveCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1281
- onMouseOut?: React.MouseEventHandler<SVGPathElement> | undefined;
1282
- onMouseOutCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1283
- onMouseOver?: React.MouseEventHandler<SVGPathElement> | undefined;
1284
- onMouseOverCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1285
- onMouseUp?: React.MouseEventHandler<SVGPathElement> | undefined;
1286
- onMouseUpCapture?: React.MouseEventHandler<SVGPathElement> | undefined;
1287
- onSelect?: React.ReactEventHandler<SVGPathElement> | undefined;
1288
- onSelectCapture?: React.ReactEventHandler<SVGPathElement> | undefined;
1289
- onTouchCancel?: React.TouchEventHandler<SVGPathElement> | undefined;
1290
- onTouchCancelCapture?: React.TouchEventHandler<SVGPathElement> | undefined;
1291
- onTouchEnd?: React.TouchEventHandler<SVGPathElement> | undefined;
1292
- onTouchEndCapture?: React.TouchEventHandler<SVGPathElement> | undefined;
1293
- onTouchMove?: React.TouchEventHandler<SVGPathElement> | undefined;
1294
- onTouchMoveCapture?: React.TouchEventHandler<SVGPathElement> | undefined;
1295
- onTouchStart?: React.TouchEventHandler<SVGPathElement> | undefined;
1296
- onTouchStartCapture?: React.TouchEventHandler<SVGPathElement> | undefined;
1297
- onPointerDown?: React.PointerEventHandler<SVGPathElement> | undefined;
1298
- onPointerDownCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1299
- onPointerMove?: React.PointerEventHandler<SVGPathElement> | undefined;
1300
- onPointerMoveCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1301
- onPointerUp?: React.PointerEventHandler<SVGPathElement> | undefined;
1302
- onPointerUpCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1303
- onPointerCancel?: React.PointerEventHandler<SVGPathElement> | undefined;
1304
- onPointerCancelCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1305
- onPointerEnter?: React.PointerEventHandler<SVGPathElement> | undefined;
1306
- onPointerLeave?: React.PointerEventHandler<SVGPathElement> | undefined;
1307
- onPointerOver?: React.PointerEventHandler<SVGPathElement> | undefined;
1308
- onPointerOverCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1309
- onPointerOut?: React.PointerEventHandler<SVGPathElement> | undefined;
1310
- onPointerOutCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1311
- onGotPointerCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1312
- onGotPointerCaptureCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1313
- onLostPointerCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1314
- onLostPointerCaptureCapture?: React.PointerEventHandler<SVGPathElement> | undefined;
1315
- onScroll?: React.UIEventHandler<SVGPathElement> | undefined;
1316
- onScrollCapture?: React.UIEventHandler<SVGPathElement> | undefined;
1317
- onWheel?: React.WheelEventHandler<SVGPathElement> | undefined;
1318
- onWheelCapture?: React.WheelEventHandler<SVGPathElement> | undefined;
1319
- onAnimationStart?: React.AnimationEventHandler<SVGPathElement> | undefined;
1320
- onAnimationStartCapture?: React.AnimationEventHandler<SVGPathElement> | undefined;
1321
- onAnimationEnd?: React.AnimationEventHandler<SVGPathElement> | undefined;
1322
- onAnimationEndCapture?: React.AnimationEventHandler<SVGPathElement> | undefined;
1323
- onAnimationIteration?: React.AnimationEventHandler<SVGPathElement> | undefined;
1324
- onAnimationIterationCapture?: React.AnimationEventHandler<SVGPathElement> | undefined;
1325
- onTransitionEnd?: React.TransitionEventHandler<SVGPathElement> | undefined;
1326
- onTransitionEndCapture?: React.TransitionEventHandler<SVGPathElement> | undefined;
1327
- key?: React.Key | null | undefined;
1328
- ref?: ((instance: SVGPathElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<SVGPathElement> | null | undefined;
1329
- }> & {
1330
- scrollTop?: number | import("@react-spring/shared").FluidValue<number, any> | undefined;
1331
- scrollLeft?: number | import("@react-spring/shared").FluidValue<number, any> | undefined;
1332
- viewBox?: string | import("@react-spring/shared").FluidValue<string, any> | undefined;
1333
- }, "string" | "end" | "accumulate" | "local" | "color" | "clip" | "style" | "unicode" | "fill" | "stroke" | "x" | "y" | "clipPath" | "cursor" | "direction" | "display" | "filter" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "height" | "imageRendering" | "letterSpacing" | "opacity" | "order" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "width" | "wordSpacing" | "writingMode" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "mask" | "offset" | "overflow" | "textDecoration" | "azimuth" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "additive" | "path" | "ref" | "suppressHydrationWarning" | "className" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "href" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "operator" | "orient" | "orientation" | "origin" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "scrollTop" | "scrollLeft"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material").Theme> & {
1334
- ownerState: AreaElementOwnerState;
1335
- }, {}, {}>;
1336
3
  export interface AnimatedAreaProps extends React.ComponentPropsWithoutRef<'path'> {
1337
4
  ownerState: AreaElementOwnerState;
1338
5
  d: string;