@mui/x-charts 7.7.1 → 7.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/BarChart/BarElement.d.ts +225 -228
- package/BarChart/BarLabel/BarLabel.d.ts +225 -228
- package/BarChart/BarLabel/getBarLabel.d.ts +1 -1
- package/BarChart/useBarChartProps.d.ts +20 -88
- package/CHANGELOG.md +100 -1
- package/ChartContainer/ChartContainer.d.ts +1 -1
- package/ChartContainer/useChartContainerHooks.d.ts +1 -1
- package/ChartsAxisHighlight/ChartsAxisHighlight.js +19 -4
- package/ChartsReferenceLine/common.d.ts +0 -1
- package/ChartsTooltip/ChartsTooltipTable.d.ts +0 -1
- package/ChartsVoronoiHandler/ChartsVoronoiHandler.js +2 -2
- package/ChartsYAxis/ChartsYAxis.js +3 -1
- package/Gauge/GaugeProvider.d.ts +1 -1
- package/LineChart/AnimatedArea.d.ts +225 -228
- package/LineChart/AnimatedLine.d.ts +225 -228
- package/LineChart/useLineChartProps.d.ts +26 -103
- package/LineChart/useLineChartProps.js +3 -3
- package/PieChart/PieArc.d.ts +0 -1
- package/PieChart/PieArcLabel.d.ts +0 -1
- package/PieChart/dataTransform/transition.d.ts +0 -1
- package/ResponsiveChartContainer/ResizableContainer.d.ts +1 -2
- package/ScatterChart/useScatterChartProps.d.ts +20 -75
- package/context/CartesianProvider/computeValue.js +15 -0
- package/context/CartesianProvider/normalizeAxis.d.ts +1 -1
- package/esm/BarChart/useBarChartProps.js +0 -1
- package/esm/ChartsAxisHighlight/ChartsAxisHighlight.js +19 -4
- package/esm/ChartsVoronoiHandler/ChartsVoronoiHandler.js +1 -1
- package/esm/ChartsYAxis/ChartsYAxis.js +3 -1
- package/esm/LineChart/useLineChartProps.js +3 -3
- package/esm/context/CartesianProvider/computeValue.js +16 -1
- package/esm/hooks/useAxisEvents.js +5 -8
- package/esm/hooks/useScale.js +1 -1
- package/esm/hooks/useTicks.js +2 -1
- package/esm/internals/getSVGPoint.js +11 -0
- package/esm/internals/index.js +2 -0
- package/esm/internals/utils.js +0 -12
- package/hooks/useAxisEvents.js +6 -9
- package/hooks/useChartDimensions.d.ts +1 -1
- package/hooks/useColor.d.ts +1 -1
- package/hooks/useScale.js +1 -1
- package/hooks/useTicks.js +2 -1
- package/index.js +1 -1
- package/internals/components/AxisSharedComponents.d.ts +0 -1
- package/internals/components/ChartsAxesGradients/ChartsAxesGradients.d.ts +1 -1
- package/internals/defaultizeColor.d.ts +68 -68
- package/internals/getSVGPoint.d.ts +6 -0
- package/internals/getSVGPoint.js +17 -0
- package/internals/getWordsByLines.d.ts +0 -1
- package/internals/index.d.ts +2 -0
- package/internals/index.js +20 -0
- package/internals/useAnimatedPath.d.ts +0 -1
- package/internals/utils.d.ts +0 -6
- package/internals/utils.js +0 -13
- package/models/axis.d.ts +1 -2
- package/modern/BarChart/useBarChartProps.js +0 -1
- package/modern/ChartsAxisHighlight/ChartsAxisHighlight.js +19 -4
- package/modern/ChartsVoronoiHandler/ChartsVoronoiHandler.js +1 -1
- package/modern/ChartsYAxis/ChartsYAxis.js +3 -1
- package/modern/LineChart/useLineChartProps.js +3 -3
- package/modern/context/CartesianProvider/computeValue.js +16 -1
- package/modern/hooks/useAxisEvents.js +5 -8
- package/modern/hooks/useScale.js +1 -1
- package/modern/hooks/useTicks.js +2 -1
- package/modern/index.js +1 -1
- package/modern/internals/getSVGPoint.js +11 -0
- package/modern/internals/index.js +2 -0
- package/modern/internals/utils.js +0 -12
- package/package.json +1 -1
package/BarChart/BarElement.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="@react-spring/shared" />
|
|
2
1
|
import * as React from 'react';
|
|
3
2
|
import { AnimatedProps } from '@react-spring/web';
|
|
4
3
|
import { SeriesId } from '../models/seriesType/common';
|
|
@@ -18,12 +17,12 @@ export interface BarElementOwnerState {
|
|
|
18
17
|
export declare function getBarElementUtilityClass(slot: string): string;
|
|
19
18
|
export declare const barElementClasses: BarElementClasses;
|
|
20
19
|
export declare const BarElementPath: import("@emotion/styled").StyledComponent<Pick<AnimatedProps<{
|
|
21
|
-
string?:
|
|
22
|
-
end?:
|
|
20
|
+
string?: number | string | undefined;
|
|
21
|
+
end?: number | string | undefined;
|
|
23
22
|
accumulate?: "none" | "sum" | undefined;
|
|
24
|
-
local?:
|
|
23
|
+
local?: number | string | undefined;
|
|
25
24
|
color?: string | undefined;
|
|
26
|
-
clip?:
|
|
25
|
+
clip?: number | string | undefined;
|
|
27
26
|
style?: {
|
|
28
27
|
accentColor?: import("csstype").Property.AccentColor | undefined;
|
|
29
28
|
alignContent?: import("csstype").Property.AlignContent | undefined;
|
|
@@ -400,7 +399,7 @@ export declare const BarElementPath: import("@emotion/styled").StyledComponent<P
|
|
|
400
399
|
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
401
400
|
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
402
401
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
403
|
-
all?: import("csstype").
|
|
402
|
+
all?: import("csstype").Property.All | undefined;
|
|
404
403
|
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
405
404
|
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
406
405
|
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
@@ -850,263 +849,263 @@ export declare const BarElementPath: import("@emotion/styled").StyledComponent<P
|
|
|
850
849
|
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
851
850
|
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
852
851
|
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
853
|
-
x?:
|
|
854
|
-
y?:
|
|
855
|
-
z?:
|
|
856
|
-
translateX?:
|
|
857
|
-
translateY?:
|
|
858
|
-
translateZ?:
|
|
859
|
-
translate3d?: readonly [string | number, string | number, string | number]
|
|
860
|
-
rotateX?:
|
|
861
|
-
rotateY?:
|
|
862
|
-
rotateZ?:
|
|
863
|
-
rotate3d?: readonly [number, number, number, string | number]
|
|
864
|
-
scaleX?: number
|
|
865
|
-
scaleY?: number
|
|
866
|
-
scaleZ?: number
|
|
867
|
-
scale3d?: readonly [number, number, number]
|
|
868
|
-
skew?: (string | number) | readonly [string | number, string | number]
|
|
869
|
-
skewX?:
|
|
870
|
-
skewY?:
|
|
871
|
-
matrix?: readonly [number, number, number, number, number, number]
|
|
872
|
-
matrix3d?: readonly [number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number]
|
|
852
|
+
x?: string | number;
|
|
853
|
+
y?: string | number;
|
|
854
|
+
z?: string | number;
|
|
855
|
+
translateX?: string | number;
|
|
856
|
+
translateY?: string | number;
|
|
857
|
+
translateZ?: string | number;
|
|
858
|
+
translate3d?: readonly [string | number, string | number, string | number];
|
|
859
|
+
rotateX?: string | number;
|
|
860
|
+
rotateY?: string | number;
|
|
861
|
+
rotateZ?: string | number;
|
|
862
|
+
rotate3d?: readonly [number, number, number, string | number];
|
|
863
|
+
scaleX?: number;
|
|
864
|
+
scaleY?: number;
|
|
865
|
+
scaleZ?: number;
|
|
866
|
+
scale3d?: readonly [number, number, number];
|
|
867
|
+
skew?: (string | number) | readonly [string | number, string | number];
|
|
868
|
+
skewX?: string | number;
|
|
869
|
+
skewY?: string | number;
|
|
870
|
+
matrix?: readonly [number, number, number, number, number, number];
|
|
871
|
+
matrix3d?: readonly [number, number, number, number, number, number, number, number, number, number, number, number, number, number, number, number];
|
|
873
872
|
} | undefined;
|
|
874
|
-
unicode?:
|
|
873
|
+
unicode?: number | string | undefined;
|
|
875
874
|
fill?: string | undefined;
|
|
876
875
|
stroke?: string | undefined;
|
|
877
|
-
x?:
|
|
878
|
-
y?:
|
|
876
|
+
x?: number | string | undefined;
|
|
877
|
+
y?: number | string | undefined;
|
|
879
878
|
clipPath?: string | undefined;
|
|
880
|
-
cursor?:
|
|
881
|
-
direction?:
|
|
882
|
-
display?:
|
|
879
|
+
cursor?: number | string | undefined;
|
|
880
|
+
direction?: number | string | undefined;
|
|
881
|
+
display?: number | string | undefined;
|
|
883
882
|
filter?: string | undefined;
|
|
884
883
|
fontFamily?: string | undefined;
|
|
885
|
-
fontSize?:
|
|
886
|
-
fontSizeAdjust?:
|
|
887
|
-
fontStretch?:
|
|
888
|
-
fontStyle?:
|
|
889
|
-
fontVariant?:
|
|
890
|
-
fontWeight?:
|
|
891
|
-
height?:
|
|
892
|
-
imageRendering?:
|
|
893
|
-
letterSpacing?:
|
|
894
|
-
opacity?:
|
|
895
|
-
order?:
|
|
896
|
-
paintOrder?:
|
|
897
|
-
pointerEvents?:
|
|
898
|
-
rotate?:
|
|
899
|
-
scale?:
|
|
900
|
-
textRendering?:
|
|
884
|
+
fontSize?: number | string | undefined;
|
|
885
|
+
fontSizeAdjust?: number | string | undefined;
|
|
886
|
+
fontStretch?: number | string | undefined;
|
|
887
|
+
fontStyle?: number | string | undefined;
|
|
888
|
+
fontVariant?: number | string | undefined;
|
|
889
|
+
fontWeight?: number | string | undefined;
|
|
890
|
+
height?: number | string | undefined;
|
|
891
|
+
imageRendering?: number | string | undefined;
|
|
892
|
+
letterSpacing?: number | string | undefined;
|
|
893
|
+
opacity?: number | string | undefined;
|
|
894
|
+
order?: number | string | undefined;
|
|
895
|
+
paintOrder?: number | string | undefined;
|
|
896
|
+
pointerEvents?: number | string | undefined;
|
|
897
|
+
rotate?: number | string | undefined;
|
|
898
|
+
scale?: number | string | undefined;
|
|
899
|
+
textRendering?: number | string | undefined;
|
|
901
900
|
transform?: string | undefined;
|
|
902
|
-
unicodeBidi?:
|
|
903
|
-
visibility?:
|
|
904
|
-
width?:
|
|
905
|
-
wordSpacing?:
|
|
906
|
-
writingMode?:
|
|
907
|
-
alphabetic?:
|
|
908
|
-
hanging?:
|
|
909
|
-
ideographic?:
|
|
910
|
-
mathematical?:
|
|
901
|
+
unicodeBidi?: number | string | undefined;
|
|
902
|
+
visibility?: number | string | undefined;
|
|
903
|
+
width?: number | string | undefined;
|
|
904
|
+
wordSpacing?: number | string | undefined;
|
|
905
|
+
writingMode?: number | string | undefined;
|
|
906
|
+
alphabetic?: number | string | undefined;
|
|
907
|
+
hanging?: number | string | undefined;
|
|
908
|
+
ideographic?: number | string | undefined;
|
|
909
|
+
mathematical?: number | string | undefined;
|
|
911
910
|
mask?: string | undefined;
|
|
912
|
-
offset?:
|
|
913
|
-
overflow?:
|
|
914
|
-
textDecoration?:
|
|
915
|
-
azimuth?:
|
|
916
|
-
alignmentBaseline?: "
|
|
917
|
-
baselineShift?:
|
|
918
|
-
clipRule?:
|
|
919
|
-
colorInterpolation?:
|
|
920
|
-
colorRendering?:
|
|
921
|
-
dominantBaseline?:
|
|
922
|
-
fillOpacity?:
|
|
923
|
-
fillRule?: "
|
|
924
|
-
floodColor?:
|
|
925
|
-
floodOpacity?:
|
|
926
|
-
glyphOrientationVertical?:
|
|
927
|
-
lightingColor?:
|
|
911
|
+
offset?: number | string | undefined;
|
|
912
|
+
overflow?: number | string | undefined;
|
|
913
|
+
textDecoration?: number | string | undefined;
|
|
914
|
+
azimuth?: number | string | undefined;
|
|
915
|
+
alignmentBaseline?: "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "inherit" | undefined;
|
|
916
|
+
baselineShift?: number | string | undefined;
|
|
917
|
+
clipRule?: number | string | undefined;
|
|
918
|
+
colorInterpolation?: number | string | undefined;
|
|
919
|
+
colorRendering?: number | string | undefined;
|
|
920
|
+
dominantBaseline?: number | string | undefined;
|
|
921
|
+
fillOpacity?: number | string | undefined;
|
|
922
|
+
fillRule?: "nonzero" | "evenodd" | "inherit" | undefined;
|
|
923
|
+
floodColor?: number | string | undefined;
|
|
924
|
+
floodOpacity?: number | string | undefined;
|
|
925
|
+
glyphOrientationVertical?: number | string | undefined;
|
|
926
|
+
lightingColor?: number | string | undefined;
|
|
928
927
|
markerEnd?: string | undefined;
|
|
929
928
|
markerMid?: string | undefined;
|
|
930
929
|
markerStart?: string | undefined;
|
|
931
|
-
shapeRendering?:
|
|
930
|
+
shapeRendering?: number | string | undefined;
|
|
932
931
|
stopColor?: string | undefined;
|
|
933
|
-
stopOpacity?:
|
|
932
|
+
stopOpacity?: number | string | undefined;
|
|
934
933
|
strokeDasharray?: string | number | undefined;
|
|
935
934
|
strokeDashoffset?: string | number | undefined;
|
|
936
|
-
strokeLinecap?: "
|
|
937
|
-
strokeLinejoin?: "
|
|
938
|
-
strokeMiterlimit?:
|
|
939
|
-
strokeOpacity?:
|
|
940
|
-
strokeWidth?:
|
|
935
|
+
strokeLinecap?: "butt" | "round" | "square" | "inherit" | undefined;
|
|
936
|
+
strokeLinejoin?: "miter" | "round" | "bevel" | "inherit" | undefined;
|
|
937
|
+
strokeMiterlimit?: number | string | undefined;
|
|
938
|
+
strokeOpacity?: number | string | undefined;
|
|
939
|
+
strokeWidth?: number | string | undefined;
|
|
941
940
|
textAnchor?: string | undefined;
|
|
942
|
-
vectorEffect?:
|
|
941
|
+
vectorEffect?: number | string | undefined;
|
|
943
942
|
additive?: "replace" | "sum" | undefined;
|
|
944
943
|
path?: string | undefined;
|
|
945
944
|
suppressHydrationWarning?: boolean | undefined;
|
|
946
945
|
className?: string | undefined;
|
|
947
946
|
id?: string | undefined;
|
|
948
947
|
lang?: string | undefined;
|
|
949
|
-
max?:
|
|
948
|
+
max?: number | string | undefined;
|
|
950
949
|
media?: string | undefined;
|
|
951
950
|
method?: string | undefined;
|
|
952
|
-
min?:
|
|
951
|
+
min?: number | string | undefined;
|
|
953
952
|
name?: string | undefined;
|
|
954
953
|
target?: string | undefined;
|
|
955
954
|
type?: string | undefined;
|
|
956
955
|
role?: React.AriaRole | undefined;
|
|
957
956
|
tabIndex?: number | undefined;
|
|
958
957
|
crossOrigin?: "" | "anonymous" | "use-credentials" | undefined;
|
|
959
|
-
accentHeight?:
|
|
960
|
-
allowReorder?: "
|
|
961
|
-
amplitude?:
|
|
958
|
+
accentHeight?: number | string | undefined;
|
|
959
|
+
allowReorder?: "no" | "yes" | undefined;
|
|
960
|
+
amplitude?: number | string | undefined;
|
|
962
961
|
arabicForm?: "initial" | "medial" | "terminal" | "isolated" | undefined;
|
|
963
|
-
ascent?:
|
|
962
|
+
ascent?: number | string | undefined;
|
|
964
963
|
attributeName?: string | undefined;
|
|
965
964
|
attributeType?: string | undefined;
|
|
966
965
|
autoReverse?: (boolean | "false" | "true") | undefined;
|
|
967
|
-
baseFrequency?:
|
|
968
|
-
baseProfile?:
|
|
969
|
-
bbox?:
|
|
970
|
-
begin?:
|
|
971
|
-
bias?:
|
|
972
|
-
by?:
|
|
973
|
-
calcMode?:
|
|
974
|
-
capHeight?:
|
|
975
|
-
clipPathUnits?:
|
|
976
|
-
colorInterpolationFilters?: "
|
|
977
|
-
colorProfile?:
|
|
978
|
-
contentScriptType?:
|
|
979
|
-
contentStyleType?:
|
|
980
|
-
cx?:
|
|
981
|
-
cy?:
|
|
966
|
+
baseFrequency?: number | string | undefined;
|
|
967
|
+
baseProfile?: number | string | undefined;
|
|
968
|
+
bbox?: number | string | undefined;
|
|
969
|
+
begin?: number | string | undefined;
|
|
970
|
+
bias?: number | string | undefined;
|
|
971
|
+
by?: number | string | undefined;
|
|
972
|
+
calcMode?: number | string | undefined;
|
|
973
|
+
capHeight?: number | string | undefined;
|
|
974
|
+
clipPathUnits?: number | string | undefined;
|
|
975
|
+
colorInterpolationFilters?: "auto" | "sRGB" | "linearRGB" | "inherit" | undefined;
|
|
976
|
+
colorProfile?: number | string | undefined;
|
|
977
|
+
contentScriptType?: number | string | undefined;
|
|
978
|
+
contentStyleType?: number | string | undefined;
|
|
979
|
+
cx?: number | string | undefined;
|
|
980
|
+
cy?: number | string | undefined;
|
|
982
981
|
d?: string | undefined;
|
|
983
|
-
decelerate?:
|
|
984
|
-
descent?:
|
|
985
|
-
diffuseConstant?:
|
|
986
|
-
divisor?:
|
|
987
|
-
dur?:
|
|
988
|
-
dx?:
|
|
989
|
-
dy?:
|
|
990
|
-
edgeMode?:
|
|
991
|
-
elevation?:
|
|
992
|
-
enableBackground?:
|
|
993
|
-
exponent?:
|
|
982
|
+
decelerate?: number | string | undefined;
|
|
983
|
+
descent?: number | string | undefined;
|
|
984
|
+
diffuseConstant?: number | string | undefined;
|
|
985
|
+
divisor?: number | string | undefined;
|
|
986
|
+
dur?: number | string | undefined;
|
|
987
|
+
dx?: number | string | undefined;
|
|
988
|
+
dy?: number | string | undefined;
|
|
989
|
+
edgeMode?: number | string | undefined;
|
|
990
|
+
elevation?: number | string | undefined;
|
|
991
|
+
enableBackground?: number | string | undefined;
|
|
992
|
+
exponent?: number | string | undefined;
|
|
994
993
|
externalResourcesRequired?: (boolean | "false" | "true") | undefined;
|
|
995
|
-
filterRes?:
|
|
996
|
-
filterUnits?:
|
|
997
|
-
focusable?:
|
|
998
|
-
format?:
|
|
999
|
-
fr?:
|
|
1000
|
-
from?:
|
|
1001
|
-
fx?:
|
|
1002
|
-
fy?:
|
|
1003
|
-
g1?:
|
|
1004
|
-
g2?:
|
|
1005
|
-
glyphName?:
|
|
1006
|
-
glyphOrientationHorizontal?:
|
|
1007
|
-
glyphRef?:
|
|
994
|
+
filterRes?: number | string | undefined;
|
|
995
|
+
filterUnits?: number | string | undefined;
|
|
996
|
+
focusable?: (boolean | "false" | "true") | "auto" | undefined;
|
|
997
|
+
format?: number | string | undefined;
|
|
998
|
+
fr?: number | string | undefined;
|
|
999
|
+
from?: number | string | undefined;
|
|
1000
|
+
fx?: number | string | undefined;
|
|
1001
|
+
fy?: number | string | undefined;
|
|
1002
|
+
g1?: number | string | undefined;
|
|
1003
|
+
g2?: number | string | undefined;
|
|
1004
|
+
glyphName?: number | string | undefined;
|
|
1005
|
+
glyphOrientationHorizontal?: number | string | undefined;
|
|
1006
|
+
glyphRef?: number | string | undefined;
|
|
1008
1007
|
gradientTransform?: string | undefined;
|
|
1009
1008
|
gradientUnits?: string | undefined;
|
|
1010
|
-
horizAdvX?:
|
|
1011
|
-
horizOriginX?:
|
|
1009
|
+
horizAdvX?: number | string | undefined;
|
|
1010
|
+
horizOriginX?: number | string | undefined;
|
|
1012
1011
|
href?: string | undefined;
|
|
1013
|
-
in2?:
|
|
1012
|
+
in2?: number | string | undefined;
|
|
1014
1013
|
in?: string | undefined;
|
|
1015
|
-
intercept?:
|
|
1016
|
-
k1?:
|
|
1017
|
-
k2?:
|
|
1018
|
-
k3?:
|
|
1019
|
-
k4?:
|
|
1020
|
-
k?:
|
|
1021
|
-
kernelMatrix?:
|
|
1022
|
-
kernelUnitLength?:
|
|
1023
|
-
kerning?:
|
|
1024
|
-
keyPoints?:
|
|
1025
|
-
keySplines?:
|
|
1026
|
-
keyTimes?:
|
|
1027
|
-
lengthAdjust?:
|
|
1028
|
-
limitingConeAngle?:
|
|
1029
|
-
markerHeight?:
|
|
1030
|
-
markerUnits?:
|
|
1031
|
-
markerWidth?:
|
|
1032
|
-
maskContentUnits?:
|
|
1033
|
-
maskUnits?:
|
|
1034
|
-
mode?:
|
|
1035
|
-
numOctaves?:
|
|
1036
|
-
operator?:
|
|
1037
|
-
orient?:
|
|
1038
|
-
orientation?:
|
|
1039
|
-
origin?:
|
|
1040
|
-
overlinePosition?:
|
|
1041
|
-
overlineThickness?:
|
|
1042
|
-
panose1?:
|
|
1043
|
-
pathLength?:
|
|
1014
|
+
intercept?: number | string | undefined;
|
|
1015
|
+
k1?: number | string | undefined;
|
|
1016
|
+
k2?: number | string | undefined;
|
|
1017
|
+
k3?: number | string | undefined;
|
|
1018
|
+
k4?: number | string | undefined;
|
|
1019
|
+
k?: number | string | undefined;
|
|
1020
|
+
kernelMatrix?: number | string | undefined;
|
|
1021
|
+
kernelUnitLength?: number | string | undefined;
|
|
1022
|
+
kerning?: number | string | undefined;
|
|
1023
|
+
keyPoints?: number | string | undefined;
|
|
1024
|
+
keySplines?: number | string | undefined;
|
|
1025
|
+
keyTimes?: number | string | undefined;
|
|
1026
|
+
lengthAdjust?: number | string | undefined;
|
|
1027
|
+
limitingConeAngle?: number | string | undefined;
|
|
1028
|
+
markerHeight?: number | string | undefined;
|
|
1029
|
+
markerUnits?: number | string | undefined;
|
|
1030
|
+
markerWidth?: number | string | undefined;
|
|
1031
|
+
maskContentUnits?: number | string | undefined;
|
|
1032
|
+
maskUnits?: number | string | undefined;
|
|
1033
|
+
mode?: number | string | undefined;
|
|
1034
|
+
numOctaves?: number | string | undefined;
|
|
1035
|
+
operator?: number | string | undefined;
|
|
1036
|
+
orient?: number | string | undefined;
|
|
1037
|
+
orientation?: number | string | undefined;
|
|
1038
|
+
origin?: number | string | undefined;
|
|
1039
|
+
overlinePosition?: number | string | undefined;
|
|
1040
|
+
overlineThickness?: number | string | undefined;
|
|
1041
|
+
panose1?: number | string | undefined;
|
|
1042
|
+
pathLength?: number | string | undefined;
|
|
1044
1043
|
patternContentUnits?: string | undefined;
|
|
1045
|
-
patternTransform?:
|
|
1044
|
+
patternTransform?: number | string | undefined;
|
|
1046
1045
|
patternUnits?: string | undefined;
|
|
1047
1046
|
points?: string | undefined;
|
|
1048
|
-
pointsAtX?:
|
|
1049
|
-
pointsAtY?:
|
|
1050
|
-
pointsAtZ?:
|
|
1047
|
+
pointsAtX?: number | string | undefined;
|
|
1048
|
+
pointsAtY?: number | string | undefined;
|
|
1049
|
+
pointsAtZ?: number | string | undefined;
|
|
1051
1050
|
preserveAlpha?: (boolean | "false" | "true") | undefined;
|
|
1052
1051
|
preserveAspectRatio?: string | undefined;
|
|
1053
|
-
primitiveUnits?:
|
|
1054
|
-
r?:
|
|
1055
|
-
radius?:
|
|
1056
|
-
refX?:
|
|
1057
|
-
refY?:
|
|
1058
|
-
renderingIntent?:
|
|
1059
|
-
repeatCount?:
|
|
1060
|
-
repeatDur?:
|
|
1061
|
-
requiredExtensions?:
|
|
1062
|
-
requiredFeatures?:
|
|
1063
|
-
restart?:
|
|
1052
|
+
primitiveUnits?: number | string | undefined;
|
|
1053
|
+
r?: number | string | undefined;
|
|
1054
|
+
radius?: number | string | undefined;
|
|
1055
|
+
refX?: number | string | undefined;
|
|
1056
|
+
refY?: number | string | undefined;
|
|
1057
|
+
renderingIntent?: number | string | undefined;
|
|
1058
|
+
repeatCount?: number | string | undefined;
|
|
1059
|
+
repeatDur?: number | string | undefined;
|
|
1060
|
+
requiredExtensions?: number | string | undefined;
|
|
1061
|
+
requiredFeatures?: number | string | undefined;
|
|
1062
|
+
restart?: number | string | undefined;
|
|
1064
1063
|
result?: string | undefined;
|
|
1065
|
-
rx?:
|
|
1066
|
-
ry?:
|
|
1067
|
-
seed?:
|
|
1068
|
-
slope?:
|
|
1069
|
-
spacing?:
|
|
1070
|
-
specularConstant?:
|
|
1071
|
-
specularExponent?:
|
|
1072
|
-
speed?:
|
|
1064
|
+
rx?: number | string | undefined;
|
|
1065
|
+
ry?: number | string | undefined;
|
|
1066
|
+
seed?: number | string | undefined;
|
|
1067
|
+
slope?: number | string | undefined;
|
|
1068
|
+
spacing?: number | string | undefined;
|
|
1069
|
+
specularConstant?: number | string | undefined;
|
|
1070
|
+
specularExponent?: number | string | undefined;
|
|
1071
|
+
speed?: number | string | undefined;
|
|
1073
1072
|
spreadMethod?: string | undefined;
|
|
1074
|
-
startOffset?:
|
|
1075
|
-
stdDeviation?:
|
|
1076
|
-
stemh?:
|
|
1077
|
-
stemv?:
|
|
1078
|
-
stitchTiles?:
|
|
1079
|
-
strikethroughPosition?:
|
|
1080
|
-
strikethroughThickness?:
|
|
1081
|
-
surfaceScale?:
|
|
1082
|
-
systemLanguage?:
|
|
1083
|
-
tableValues?:
|
|
1084
|
-
targetX?:
|
|
1085
|
-
targetY?:
|
|
1086
|
-
textLength?:
|
|
1087
|
-
to?:
|
|
1088
|
-
u1?:
|
|
1089
|
-
u2?:
|
|
1090
|
-
underlinePosition?:
|
|
1091
|
-
underlineThickness?:
|
|
1092
|
-
unicodeRange?:
|
|
1093
|
-
unitsPerEm?:
|
|
1094
|
-
vAlphabetic?:
|
|
1073
|
+
startOffset?: number | string | undefined;
|
|
1074
|
+
stdDeviation?: number | string | undefined;
|
|
1075
|
+
stemh?: number | string | undefined;
|
|
1076
|
+
stemv?: number | string | undefined;
|
|
1077
|
+
stitchTiles?: number | string | undefined;
|
|
1078
|
+
strikethroughPosition?: number | string | undefined;
|
|
1079
|
+
strikethroughThickness?: number | string | undefined;
|
|
1080
|
+
surfaceScale?: number | string | undefined;
|
|
1081
|
+
systemLanguage?: number | string | undefined;
|
|
1082
|
+
tableValues?: number | string | undefined;
|
|
1083
|
+
targetX?: number | string | undefined;
|
|
1084
|
+
targetY?: number | string | undefined;
|
|
1085
|
+
textLength?: number | string | undefined;
|
|
1086
|
+
to?: number | string | undefined;
|
|
1087
|
+
u1?: number | string | undefined;
|
|
1088
|
+
u2?: number | string | undefined;
|
|
1089
|
+
underlinePosition?: number | string | undefined;
|
|
1090
|
+
underlineThickness?: number | string | undefined;
|
|
1091
|
+
unicodeRange?: number | string | undefined;
|
|
1092
|
+
unitsPerEm?: number | string | undefined;
|
|
1093
|
+
vAlphabetic?: number | string | undefined;
|
|
1095
1094
|
values?: string | undefined;
|
|
1096
1095
|
version?: string | undefined;
|
|
1097
|
-
vertAdvY?:
|
|
1098
|
-
vertOriginX?:
|
|
1099
|
-
vertOriginY?:
|
|
1100
|
-
vHanging?:
|
|
1101
|
-
vIdeographic?:
|
|
1096
|
+
vertAdvY?: number | string | undefined;
|
|
1097
|
+
vertOriginX?: number | string | undefined;
|
|
1098
|
+
vertOriginY?: number | string | undefined;
|
|
1099
|
+
vHanging?: number | string | undefined;
|
|
1100
|
+
vIdeographic?: number | string | undefined;
|
|
1102
1101
|
viewBox?: string | undefined;
|
|
1103
|
-
viewTarget?:
|
|
1104
|
-
vMathematical?:
|
|
1105
|
-
widths?:
|
|
1106
|
-
x1?:
|
|
1107
|
-
x2?:
|
|
1102
|
+
viewTarget?: number | string | undefined;
|
|
1103
|
+
vMathematical?: number | string | undefined;
|
|
1104
|
+
widths?: number | string | undefined;
|
|
1105
|
+
x1?: number | string | undefined;
|
|
1106
|
+
x2?: number | string | undefined;
|
|
1108
1107
|
xChannelSelector?: string | undefined;
|
|
1109
|
-
xHeight?:
|
|
1108
|
+
xHeight?: number | string | undefined;
|
|
1110
1109
|
xlinkActuate?: string | undefined;
|
|
1111
1110
|
xlinkArcrole?: string | undefined;
|
|
1112
1111
|
xlinkHref?: string | undefined;
|
|
@@ -1119,34 +1118,34 @@ export declare const BarElementPath: import("@emotion/styled").StyledComponent<P
|
|
|
1119
1118
|
xmlns?: string | undefined;
|
|
1120
1119
|
xmlnsXlink?: string | undefined;
|
|
1121
1120
|
xmlSpace?: string | undefined;
|
|
1122
|
-
y1?:
|
|
1123
|
-
y2?:
|
|
1121
|
+
y1?: number | string | undefined;
|
|
1122
|
+
y2?: number | string | undefined;
|
|
1124
1123
|
yChannelSelector?: string | undefined;
|
|
1125
|
-
z?:
|
|
1124
|
+
z?: number | string | undefined;
|
|
1126
1125
|
zoomAndPan?: string | undefined;
|
|
1127
1126
|
"aria-activedescendant"?: string | undefined;
|
|
1128
1127
|
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
1129
|
-
"aria-autocomplete"?: "
|
|
1128
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
1130
1129
|
"aria-braillelabel"?: string | undefined;
|
|
1131
1130
|
"aria-brailleroledescription"?: string | undefined;
|
|
1132
1131
|
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
1133
|
-
"aria-checked"?: boolean | "
|
|
1132
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
1134
1133
|
"aria-colcount"?: number | undefined;
|
|
1135
1134
|
"aria-colindex"?: number | undefined;
|
|
1136
1135
|
"aria-colindextext"?: string | undefined;
|
|
1137
1136
|
"aria-colspan"?: number | undefined;
|
|
1138
1137
|
"aria-controls"?: string | undefined;
|
|
1139
|
-
"aria-current"?: boolean | "
|
|
1138
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
1140
1139
|
"aria-describedby"?: string | undefined;
|
|
1141
1140
|
"aria-description"?: string | undefined;
|
|
1142
1141
|
"aria-details"?: string | undefined;
|
|
1143
1142
|
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
1144
|
-
"aria-dropeffect"?: "none" | "copy" | "
|
|
1143
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
1145
1144
|
"aria-errormessage"?: string | undefined;
|
|
1146
1145
|
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
1147
1146
|
"aria-flowto"?: string | undefined;
|
|
1148
1147
|
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
1149
|
-
"aria-haspopup"?: boolean | "
|
|
1148
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
1150
1149
|
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
1151
1150
|
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
1152
1151
|
"aria-keyshortcuts"?: string | undefined;
|
|
@@ -1161,9 +1160,9 @@ export declare const BarElementPath: import("@emotion/styled").StyledComponent<P
|
|
|
1161
1160
|
"aria-owns"?: string | undefined;
|
|
1162
1161
|
"aria-placeholder"?: string | undefined;
|
|
1163
1162
|
"aria-posinset"?: number | undefined;
|
|
1164
|
-
"aria-pressed"?: boolean | "
|
|
1163
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
1165
1164
|
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
1166
|
-
"aria-relevant"?: "
|
|
1165
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
1167
1166
|
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
1168
1167
|
"aria-roledescription"?: string | undefined;
|
|
1169
1168
|
"aria-rowcount"?: number | undefined;
|
|
@@ -1177,7 +1176,7 @@ export declare const BarElementPath: import("@emotion/styled").StyledComponent<P
|
|
|
1177
1176
|
"aria-valuemin"?: number | undefined;
|
|
1178
1177
|
"aria-valuenow"?: number | undefined;
|
|
1179
1178
|
"aria-valuetext"?: string | undefined;
|
|
1180
|
-
children?: React.ReactNode;
|
|
1179
|
+
children?: React.ReactNode | undefined;
|
|
1181
1180
|
dangerouslySetInnerHTML?: {
|
|
1182
1181
|
__html: string | TrustedHTML;
|
|
1183
1182
|
} | undefined;
|
|
@@ -1320,9 +1319,7 @@ export declare const BarElementPath: import("@emotion/styled").StyledComponent<P
|
|
|
1320
1319
|
onPointerCancel?: React.PointerEventHandler<SVGRectElement> | undefined;
|
|
1321
1320
|
onPointerCancelCapture?: React.PointerEventHandler<SVGRectElement> | undefined;
|
|
1322
1321
|
onPointerEnter?: React.PointerEventHandler<SVGRectElement> | undefined;
|
|
1323
|
-
onPointerEnterCapture?: React.PointerEventHandler<SVGRectElement> | undefined;
|
|
1324
1322
|
onPointerLeave?: React.PointerEventHandler<SVGRectElement> | undefined;
|
|
1325
|
-
onPointerLeaveCapture?: React.PointerEventHandler<SVGRectElement> | undefined;
|
|
1326
1323
|
onPointerOver?: React.PointerEventHandler<SVGRectElement> | undefined;
|
|
1327
1324
|
onPointerOverCapture?: React.PointerEventHandler<SVGRectElement> | undefined;
|
|
1328
1325
|
onPointerOut?: React.PointerEventHandler<SVGRectElement> | undefined;
|
|
@@ -1344,12 +1341,12 @@ export declare const BarElementPath: import("@emotion/styled").StyledComponent<P
|
|
|
1344
1341
|
onTransitionEnd?: React.TransitionEventHandler<SVGRectElement> | undefined;
|
|
1345
1342
|
onTransitionEndCapture?: React.TransitionEventHandler<SVGRectElement> | undefined;
|
|
1346
1343
|
key?: React.Key | null | undefined;
|
|
1347
|
-
ref?: ((instance: SVGRectElement | null) => void) | React.RefObject<SVGRectElement> | null | undefined;
|
|
1344
|
+
ref?: ((instance: SVGRectElement | null) => void | React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof React.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | React.RefObject<SVGRectElement> | null | undefined;
|
|
1348
1345
|
}> & {
|
|
1349
1346
|
scrollTop?: number | import("@react-spring/shared").FluidValue<number, any> | undefined;
|
|
1350
1347
|
scrollLeft?: number | import("@react-spring/shared").FluidValue<number, any> | undefined;
|
|
1351
1348
|
viewBox?: string | import("@react-spring/shared").FluidValue<string, any> | undefined;
|
|
1352
|
-
}, "string" | "end" | "accumulate" | "local" | "color" | "clip" | "style" | "unicode" | "fill" | "stroke" | "x" | "y" | "clipPath" | "cursor" | "direction" | "display" | "filter" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "height" | "imageRendering" | "letterSpacing" | "opacity" | "order" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "width" | "wordSpacing" | "writingMode" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "mask" | "offset" | "overflow" | "textDecoration" | "azimuth" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "additive" | "path" | "ref" | "suppressHydrationWarning" | "className" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "href" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "operator" | "orient" | "orientation" | "origin" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "
|
|
1349
|
+
}, "string" | "end" | "accumulate" | "local" | "color" | "clip" | "style" | "unicode" | "fill" | "stroke" | "x" | "y" | "clipPath" | "cursor" | "direction" | "display" | "filter" | "fontFamily" | "fontSize" | "fontSizeAdjust" | "fontStretch" | "fontStyle" | "fontVariant" | "fontWeight" | "height" | "imageRendering" | "letterSpacing" | "opacity" | "order" | "paintOrder" | "pointerEvents" | "rotate" | "scale" | "textRendering" | "transform" | "unicodeBidi" | "visibility" | "width" | "wordSpacing" | "writingMode" | "alphabetic" | "hanging" | "ideographic" | "mathematical" | "mask" | "offset" | "overflow" | "textDecoration" | "azimuth" | "alignmentBaseline" | "baselineShift" | "clipRule" | "colorInterpolation" | "colorRendering" | "dominantBaseline" | "fillOpacity" | "fillRule" | "floodColor" | "floodOpacity" | "glyphOrientationVertical" | "lightingColor" | "markerEnd" | "markerMid" | "markerStart" | "shapeRendering" | "stopColor" | "stopOpacity" | "strokeDasharray" | "strokeDashoffset" | "strokeLinecap" | "strokeLinejoin" | "strokeMiterlimit" | "strokeOpacity" | "strokeWidth" | "textAnchor" | "vectorEffect" | "additive" | "path" | "ref" | "suppressHydrationWarning" | "className" | "id" | "lang" | "max" | "media" | "method" | "min" | "name" | "target" | "type" | "role" | "tabIndex" | "crossOrigin" | "accentHeight" | "allowReorder" | "amplitude" | "arabicForm" | "ascent" | "attributeName" | "attributeType" | "autoReverse" | "baseFrequency" | "baseProfile" | "bbox" | "begin" | "bias" | "by" | "calcMode" | "capHeight" | "clipPathUnits" | "colorInterpolationFilters" | "colorProfile" | "contentScriptType" | "contentStyleType" | "cx" | "cy" | "d" | "decelerate" | "descent" | "diffuseConstant" | "divisor" | "dur" | "dx" | "dy" | "edgeMode" | "elevation" | "enableBackground" | "exponent" | "externalResourcesRequired" | "filterRes" | "filterUnits" | "focusable" | "format" | "fr" | "from" | "fx" | "fy" | "g1" | "g2" | "glyphName" | "glyphOrientationHorizontal" | "glyphRef" | "gradientTransform" | "gradientUnits" | "horizAdvX" | "horizOriginX" | "href" | "in2" | "in" | "intercept" | "k1" | "k2" | "k3" | "k4" | "k" | "kernelMatrix" | "kernelUnitLength" | "kerning" | "keyPoints" | "keySplines" | "keyTimes" | "lengthAdjust" | "limitingConeAngle" | "markerHeight" | "markerUnits" | "markerWidth" | "maskContentUnits" | "maskUnits" | "mode" | "numOctaves" | "operator" | "orient" | "orientation" | "origin" | "overlinePosition" | "overlineThickness" | "panose1" | "pathLength" | "patternContentUnits" | "patternTransform" | "patternUnits" | "points" | "pointsAtX" | "pointsAtY" | "pointsAtZ" | "preserveAlpha" | "preserveAspectRatio" | "primitiveUnits" | "r" | "radius" | "refX" | "refY" | "renderingIntent" | "repeatCount" | "repeatDur" | "requiredExtensions" | "requiredFeatures" | "restart" | "result" | "rx" | "ry" | "seed" | "slope" | "spacing" | "specularConstant" | "specularExponent" | "speed" | "spreadMethod" | "startOffset" | "stdDeviation" | "stemh" | "stemv" | "stitchTiles" | "strikethroughPosition" | "strikethroughThickness" | "surfaceScale" | "systemLanguage" | "tableValues" | "targetX" | "targetY" | "textLength" | "to" | "u1" | "u2" | "underlinePosition" | "underlineThickness" | "unicodeRange" | "unitsPerEm" | "vAlphabetic" | "values" | "version" | "vertAdvY" | "vertOriginX" | "vertOriginY" | "vHanging" | "vIdeographic" | "viewBox" | "viewTarget" | "vMathematical" | "widths" | "x1" | "x2" | "xChannelSelector" | "xHeight" | "xlinkActuate" | "xlinkArcrole" | "xlinkHref" | "xlinkRole" | "xlinkShow" | "xlinkTitle" | "xlinkType" | "xmlBase" | "xmlLang" | "xmlns" | "xmlnsXlink" | "xmlSpace" | "y1" | "y2" | "yChannelSelector" | "z" | "zoomAndPan" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-braillelabel" | "aria-brailleroledescription" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colindextext" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-description" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowindextext" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "children" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onResize" | "onResizeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerLeave" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "key" | "scrollTop" | "scrollLeft"> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
|
|
1353
1350
|
ownerState: BarElementOwnerState;
|
|
1354
1351
|
}, {}, {}>;
|
|
1355
1352
|
interface BarProps extends Omit<React.SVGProps<SVGRectElement>, 'id' | 'color' | 'ref' | 'x' | 'y' | 'height' | 'width'>, AnimatedProps<{
|