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