@mui/x-charts 7.22.3 → 8.0.0-alpha.1

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