@m4l/styles 0.0.29 → 0.0.31
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/index.js +9 -9
- package/package.json +1 -1
- package/theme/{defaultThemeOptions.b3a908dd.js → defaultThemeOptions.85da8657.js} +5 -5
- package/theme/index.4dffae0a.js +7 -0
- package/theme/index.d.ts +1 -0
- package/theme/overrides/M4LExtendedComponents/M4LAccountPopover.d.ts +5 -0
- package/theme/overrides/M4LExtendedComponents/M4LAreasAdmin.d.ts +5989 -12461
- package/theme/overrides/M4LExtendedComponents/M4LAreasViewer.d.ts +114 -907
- package/theme/overrides/M4LExtendedComponents/M4LDataGrid.d.ts +31 -28
- package/theme/overrides/M4LExtendedComponents/M4LDynamicFilter.d.ts +2 -0
- package/theme/overrides/M4LExtendedComponents/M4LFormatter.d.ts +19 -0
- package/theme/overrides/M4LExtendedComponents/M4LMFLoader.d.ts +14 -0
- package/theme/overrides/M4LExtendedComponents/M4LModalDialog.d.ts +6 -38
- package/theme/overrides/M4LExtendedComponents/M4LModuleLayout.d.ts +1 -0
- package/theme/overrides/M4LExtendedComponents/M4LPrintingSystem.d.ts +1000 -0
- package/theme/overrides/M4LExtendedComponents/M4LPropertyValue.d.ts +1 -4
- package/theme/overrides/M4LExtendedComponents/M4LSideBar.d.ts +0 -6
- package/theme/overrides/M4LExtendedComponents/M4LoadingError.d.ts +884 -0
- package/theme/overrides/M4LExtendedComponents/{index.c76da8b1.js → index.1cd7b9f2.js} +512 -329
- package/theme/overrides/M4LRHFComponents/M4LRHFDateTime.d.ts +18 -1
- package/theme/overrides/M4LRHFComponents/{index.d3125fd8.js → index.2dbe138a.js} +24 -7
- package/theme/overrides/MUIComponents/Accordion.d.ts +34 -17
- package/theme/overrides/MUIComponents/ControlLabel.d.ts +34 -17
- package/theme/overrides/MUIComponents/Input.d.ts +68 -34
- package/theme/overrides/MUIComponents/LoadingButton.d.ts +34 -17
- package/theme/overrides/MUIComponents/Table.d.ts +136 -68
- package/theme/overrides/MUIComponents/Tabs.d.ts +34 -17
- package/theme/overrides/index.a465322b.js +104 -0
- package/theme/{palette.18138191.js → palette.76ca123c.js} +25 -24
- package/theme/palette.d.ts +2 -2
- package/theme/{shadows.6e84fd80.js → shadows.1c46a94e.js} +1 -1
- package/theme/{typography.05534ee9.js → typography.89adddae.js} +4 -4
- package/theme/typography.d.ts +1 -0
- package/utils/{getColorPresets.60a0f2ca.js → getColorPresets.5bb0236e.js} +1 -1
- package/utils/{getColorState.e6b609a7.js → getColorState.42ed5268.js} +6 -6
- package/theme/index.30213ab6.js +0 -7
- package/theme/overrides/M4LExtendedComponents/M4LToolkitDivider.d.ts +0 -18
- package/theme/overrides/M4LExtendedComponents/M4LToolkitPage.d.ts +0 -16
- package/theme/overrides/M4LExtendedComponents/M4LToolkitSection.d.ts +0 -24
- package/theme/overrides/index.04787df9.js +0 -103
|
@@ -5,6 +5,14 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
5
5
|
'&.M4LAreasViewer-root': {
|
|
6
6
|
test: string;
|
|
7
7
|
background: string;
|
|
8
|
+
'& .M4LGridLayout-gridItemRoot.M4LGridLayout-colapsed-40 .M4LAreasViewer-windowHeader': {
|
|
9
|
+
minHeight: string;
|
|
10
|
+
height: string;
|
|
11
|
+
};
|
|
12
|
+
'& .M4LGridLayout-gridItemRoot.M4LGridLayout-colapsed-48 .M4LAreasViewer-windowHeader': {
|
|
13
|
+
minHeight: string;
|
|
14
|
+
height: string;
|
|
15
|
+
};
|
|
8
16
|
'& .M4LAreasViewer-areaGridLayout': {
|
|
9
17
|
'& .M4LAreasViewer-resizeHandle': {
|
|
10
18
|
test: string;
|
|
@@ -42,7 +50,6 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
42
50
|
'& .M4LAreasViewer-windowHeader': {
|
|
43
51
|
[x: string]: string | {
|
|
44
52
|
height: string;
|
|
45
|
-
minHeight: string;
|
|
46
53
|
display?: undefined;
|
|
47
54
|
width?: undefined;
|
|
48
55
|
alignItems?: undefined;
|
|
@@ -66,12 +73,10 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
66
73
|
width: string;
|
|
67
74
|
};
|
|
68
75
|
};
|
|
69
|
-
minHeight?: undefined;
|
|
70
76
|
} | {
|
|
71
77
|
color: string;
|
|
72
78
|
overflow: string;
|
|
73
79
|
height?: undefined;
|
|
74
|
-
minHeight?: undefined;
|
|
75
80
|
display?: undefined;
|
|
76
81
|
width?: undefined;
|
|
77
82
|
alignItems?: undefined;
|
|
@@ -81,10 +86,9 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
81
86
|
flexDirection: string;
|
|
82
87
|
background: string;
|
|
83
88
|
padding: string;
|
|
84
|
-
height: string;
|
|
85
|
-
minHeight: string;
|
|
86
89
|
border: string;
|
|
87
90
|
boxShadow: string;
|
|
91
|
+
height: string;
|
|
88
92
|
'& .M4LAreasViewer-windowHeaderContent': {
|
|
89
93
|
display: string;
|
|
90
94
|
width: string;
|
|
@@ -235,9 +239,32 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
235
239
|
'& .M4LAreasViewer-windowContent': {
|
|
236
240
|
[x: string]: string | {
|
|
237
241
|
padding: string;
|
|
242
|
+
display?: undefined;
|
|
238
243
|
width?: undefined;
|
|
239
244
|
height?: undefined;
|
|
245
|
+
overflow?: undefined;
|
|
246
|
+
position?: undefined;
|
|
247
|
+
margin?: undefined;
|
|
248
|
+
alignItems?: undefined;
|
|
249
|
+
'& .MuiLinearProgress-root'?: undefined;
|
|
250
|
+
} | {
|
|
251
|
+
display: string;
|
|
252
|
+
width: string;
|
|
253
|
+
height: string;
|
|
254
|
+
overflow: string;
|
|
255
|
+
padding?: undefined;
|
|
256
|
+
position?: undefined;
|
|
257
|
+
margin?: undefined;
|
|
258
|
+
alignItems?: undefined;
|
|
259
|
+
'& .MuiLinearProgress-root'?: undefined;
|
|
260
|
+
} | {
|
|
261
|
+
position: string;
|
|
262
|
+
margin: string;
|
|
263
|
+
padding?: undefined;
|
|
240
264
|
display?: undefined;
|
|
265
|
+
width?: undefined;
|
|
266
|
+
height?: undefined;
|
|
267
|
+
overflow?: undefined;
|
|
241
268
|
alignItems?: undefined;
|
|
242
269
|
'& .MuiLinearProgress-root'?: undefined;
|
|
243
270
|
} | {
|
|
@@ -249,6 +276,9 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
249
276
|
'& .MuiLinearProgress-root': {
|
|
250
277
|
background: string;
|
|
251
278
|
};
|
|
279
|
+
overflow?: undefined;
|
|
280
|
+
position?: undefined;
|
|
281
|
+
margin?: undefined;
|
|
252
282
|
};
|
|
253
283
|
padding: string;
|
|
254
284
|
background: string;
|
|
@@ -259,6 +289,22 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
259
289
|
width: string;
|
|
260
290
|
flex: string;
|
|
261
291
|
overflow: string;
|
|
292
|
+
'& .M4LAreasViewer-containerComponent': {
|
|
293
|
+
display: string;
|
|
294
|
+
width: string;
|
|
295
|
+
height: string;
|
|
296
|
+
overflow: string;
|
|
297
|
+
};
|
|
298
|
+
'& .M4LAreasViewer-loaderContainer': {
|
|
299
|
+
width: string;
|
|
300
|
+
height: string;
|
|
301
|
+
overflow: string;
|
|
302
|
+
display: string;
|
|
303
|
+
};
|
|
304
|
+
'& .M4LPrintingSystem-root': {
|
|
305
|
+
position: string;
|
|
306
|
+
margin: string;
|
|
307
|
+
};
|
|
262
308
|
'& .M4LAreasViewer-containerLinearProgress': {
|
|
263
309
|
width: string;
|
|
264
310
|
height: string;
|
|
@@ -286,7 +332,6 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
286
332
|
justifyContent: string;
|
|
287
333
|
overflow: string;
|
|
288
334
|
cursor: string;
|
|
289
|
-
height: string;
|
|
290
335
|
'& .M4LTypography-root .MuiTypography-root': {
|
|
291
336
|
[x: string]: any;
|
|
292
337
|
};
|
|
@@ -476,6 +521,36 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
476
521
|
};
|
|
477
522
|
};
|
|
478
523
|
};
|
|
524
|
+
};
|
|
525
|
+
};
|
|
526
|
+
};
|
|
527
|
+
M4LAreasViewerModal: {
|
|
528
|
+
styleOverrides: {
|
|
529
|
+
'&.M4LAreasViewer-windowModalRoot .M4LAreasViewer-windowRoot': {
|
|
530
|
+
borderRadius: string;
|
|
531
|
+
boxShadow: string;
|
|
532
|
+
background: string;
|
|
533
|
+
border: string;
|
|
534
|
+
borderColor: string;
|
|
535
|
+
'& .M4LAreasViewer-windowContent': {
|
|
536
|
+
borderRadius: string;
|
|
537
|
+
boxShadow: string;
|
|
538
|
+
background: string;
|
|
539
|
+
};
|
|
540
|
+
'& .M4LAreasViewer-windowHeaderTitle': {
|
|
541
|
+
display: string;
|
|
542
|
+
alignItems: string;
|
|
543
|
+
overflow: string;
|
|
544
|
+
width: string;
|
|
545
|
+
padding: string;
|
|
546
|
+
height: string;
|
|
547
|
+
'& .MuiTypography-root': {
|
|
548
|
+
whiteSpace: string;
|
|
549
|
+
overflow: string;
|
|
550
|
+
textOverflow: string;
|
|
551
|
+
width: string;
|
|
552
|
+
};
|
|
553
|
+
};
|
|
479
554
|
'& .M4LAreasViewer-areasLoadingErrorRoot': {
|
|
480
555
|
display: string;
|
|
481
556
|
flexDirection: string;
|
|
@@ -522,6 +597,8 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
522
597
|
animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
523
598
|
animationName?: import("csstype").Property.AnimationName | undefined;
|
|
524
599
|
animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
600
|
+
animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | undefined;
|
|
601
|
+
animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | undefined;
|
|
525
602
|
animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
|
|
526
603
|
animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
527
604
|
appearance?: import("csstype").Property.Appearance | undefined;
|
|
@@ -642,6 +719,10 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
642
719
|
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
643
720
|
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
644
721
|
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
722
|
+
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | undefined;
|
|
723
|
+
fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | undefined;
|
|
724
|
+
fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | undefined;
|
|
725
|
+
fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | undefined;
|
|
645
726
|
fontVariant?: import("csstype").Property.FontVariant | undefined;
|
|
646
727
|
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
647
728
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
@@ -715,6 +796,7 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
715
796
|
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
716
797
|
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
717
798
|
maskType?: import("csstype").Property.MaskType | undefined;
|
|
799
|
+
masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | undefined;
|
|
718
800
|
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
719
801
|
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
720
802
|
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
@@ -754,6 +836,7 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
754
836
|
overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
|
|
755
837
|
overflowX?: import("csstype").Property.OverflowX | undefined;
|
|
756
838
|
overflowY?: import("csstype").Property.OverflowY | undefined;
|
|
839
|
+
overlay?: import("csstype").Property.Overlay | undefined;
|
|
757
840
|
overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
|
|
758
841
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
759
842
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
@@ -841,12 +924,15 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
841
924
|
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
842
925
|
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
843
926
|
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
927
|
+
textWrap?: import("csstype").Property.TextWrap | undefined;
|
|
928
|
+
timelineScope?: import("csstype").Property.TimelineScope | undefined;
|
|
844
929
|
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
845
930
|
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
846
931
|
transform?: import("csstype").Property.Transform | undefined;
|
|
847
932
|
transformBox?: import("csstype").Property.TransformBox | undefined;
|
|
848
933
|
transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
849
934
|
transformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
935
|
+
transitionBehavior?: import("csstype").Property.TransitionBehavior | undefined;
|
|
850
936
|
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
851
937
|
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
852
938
|
transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
@@ -855,9 +941,14 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
855
941
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
856
942
|
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
857
943
|
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
944
|
+
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | undefined;
|
|
945
|
+
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | undefined;
|
|
946
|
+
viewTimelineName?: import("csstype").Property.ViewTimelineName | undefined;
|
|
858
947
|
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
859
948
|
visibility?: import("csstype").Property.Visibility | undefined;
|
|
860
949
|
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
950
|
+
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | undefined;
|
|
951
|
+
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | undefined;
|
|
861
952
|
widows?: import("csstype").Property.Widows | undefined;
|
|
862
953
|
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
863
954
|
willChange?: import("csstype").Property.WillChange | undefined;
|
|
@@ -869,6 +960,7 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
869
960
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
870
961
|
all?: import("csstype").Globals | undefined;
|
|
871
962
|
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
963
|
+
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
872
964
|
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
873
965
|
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
874
966
|
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
@@ -933,6 +1025,7 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
933
1025
|
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
934
1026
|
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
935
1027
|
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1028
|
+
viewTimeline?: import("csstype").Property.ViewTimeline | undefined;
|
|
936
1029
|
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
937
1030
|
MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
938
1031
|
MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
@@ -942,7 +1035,6 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
942
1035
|
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
943
1036
|
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
944
1037
|
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
945
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
946
1038
|
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
947
1039
|
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
948
1040
|
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
@@ -969,20 +1061,16 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
969
1061
|
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
970
1062
|
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
971
1063
|
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
1064
|
+
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1065
|
+
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1066
|
+
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1067
|
+
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
972
1068
|
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
973
1069
|
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
974
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
975
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
976
1070
|
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
977
1071
|
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
978
1072
|
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
979
1073
|
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
980
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
981
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
982
|
-
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
983
|
-
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
984
|
-
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
985
|
-
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
986
1074
|
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
987
1075
|
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
988
1076
|
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
@@ -1162,7 +1250,7 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
1162
1250
|
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
1163
1251
|
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1164
1252
|
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1165
|
-
|
|
1253
|
+
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1166
1254
|
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | undefined;
|
|
1167
1255
|
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | undefined;
|
|
1168
1256
|
msFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
@@ -1220,6 +1308,7 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
1220
1308
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1221
1309
|
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
1222
1310
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1311
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1223
1312
|
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
1224
1313
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1225
1314
|
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
@@ -1241,902 +1330,22 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
1241
1330
|
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
1242
1331
|
MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
1243
1332
|
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
1244
|
-
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
1245
|
-
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
1246
|
-
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
1247
|
-
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
1248
|
-
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
1249
1333
|
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
1250
1334
|
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
1335
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1336
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1251
1337
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
1252
1338
|
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
1253
1339
|
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
1254
1340
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1259
|
-
OAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
1260
|
-
OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
1261
|
-
OAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
1262
|
-
OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
1263
|
-
OAnimationName?: import("csstype").Property.AnimationName | undefined;
|
|
1264
|
-
OAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1265
|
-
OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1266
|
-
OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
1267
|
-
OBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
1268
|
-
OObjectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
1269
|
-
OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
1270
|
-
OTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
1271
|
-
OTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
1272
|
-
OTransform?: import("csstype").Property.Transform | undefined;
|
|
1273
|
-
OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1274
|
-
OTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1275
|
-
OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1276
|
-
OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1277
|
-
OTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1278
|
-
OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1279
|
-
WebkitBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
1280
|
-
WebkitBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
1281
|
-
WebkitBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
1282
|
-
WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
|
|
1283
|
-
WebkitBoxLines?: import("csstype").Property.BoxLines | undefined;
|
|
1284
|
-
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
1285
|
-
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
1286
|
-
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
1287
|
-
WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
1288
|
-
WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
1289
|
-
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
1290
|
-
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
1291
|
-
clipRule?: import("csstype").Property.ClipRule | undefined;
|
|
1292
|
-
colorInterpolation?: import("csstype").Property.ColorInterpolation | undefined;
|
|
1293
|
-
colorRendering?: import("csstype").Property.ColorRendering | undefined;
|
|
1294
|
-
dominantBaseline?: import("csstype").Property.DominantBaseline | undefined;
|
|
1295
|
-
fill?: import("csstype").Property.Fill | undefined;
|
|
1296
|
-
fillOpacity?: import("csstype").Property.FillOpacity | undefined;
|
|
1297
|
-
fillRule?: import("csstype").Property.FillRule | undefined;
|
|
1298
|
-
floodColor?: import("csstype").Property.FloodColor | undefined;
|
|
1299
|
-
floodOpacity?: import("csstype").Property.FloodOpacity | undefined;
|
|
1300
|
-
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | undefined;
|
|
1301
|
-
lightingColor?: import("csstype").Property.LightingColor | undefined;
|
|
1302
|
-
marker?: import("csstype").Property.Marker | undefined;
|
|
1303
|
-
markerEnd?: import("csstype").Property.MarkerEnd | undefined;
|
|
1304
|
-
markerMid?: import("csstype").Property.MarkerMid | undefined;
|
|
1305
|
-
markerStart?: import("csstype").Property.MarkerStart | undefined;
|
|
1306
|
-
shapeRendering?: import("csstype").Property.ShapeRendering | undefined;
|
|
1307
|
-
stopColor?: import("csstype").Property.StopColor | undefined;
|
|
1308
|
-
stopOpacity?: import("csstype").Property.StopOpacity | undefined;
|
|
1309
|
-
stroke?: import("csstype").Property.Stroke | undefined;
|
|
1310
|
-
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | undefined;
|
|
1311
|
-
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | undefined;
|
|
1312
|
-
strokeLinecap?: import("csstype").Property.StrokeLinecap | undefined;
|
|
1313
|
-
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | undefined;
|
|
1314
|
-
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | undefined;
|
|
1315
|
-
strokeOpacity?: import("csstype").Property.StrokeOpacity | undefined;
|
|
1316
|
-
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | undefined;
|
|
1317
|
-
textAnchor?: import("csstype").Property.TextAnchor | undefined;
|
|
1318
|
-
vectorEffect?: import("csstype").Property.VectorEffect | undefined;
|
|
1319
|
-
};
|
|
1320
|
-
'& .M4LAreasViewer-areasLoadingErrorDescription': {
|
|
1321
|
-
color: string;
|
|
1322
|
-
};
|
|
1323
|
-
'& .M4LAreasViewer-areasLoadingErrorDivider': {
|
|
1324
|
-
width: string;
|
|
1325
|
-
height: string;
|
|
1326
|
-
background: string;
|
|
1327
|
-
};
|
|
1328
|
-
'& .MuiTypography-paragraph': {
|
|
1329
|
-
color: string;
|
|
1330
|
-
};
|
|
1331
|
-
'& .MuiButtonBase-root': {
|
|
1332
|
-
marginTop: string;
|
|
1333
|
-
};
|
|
1334
|
-
};
|
|
1335
|
-
};
|
|
1336
|
-
};
|
|
1337
|
-
};
|
|
1338
|
-
};
|
|
1339
|
-
M4LAreasViewerModal: {
|
|
1340
|
-
styleOverrides: {
|
|
1341
|
-
'&.M4LAreasViewer-windowModalRoot .M4LAreasViewer-windowRoot': {
|
|
1342
|
-
borderRadius: string;
|
|
1343
|
-
boxShadow: string;
|
|
1344
|
-
background: string;
|
|
1345
|
-
'& .M4LAreasViewer-windowContent': {
|
|
1346
|
-
borderRadius: string;
|
|
1347
|
-
boxShadow: string;
|
|
1348
|
-
background: string;
|
|
1349
|
-
};
|
|
1350
|
-
'& .M4LAreasViewer-windowHeaderTitle': {
|
|
1351
|
-
display: string;
|
|
1352
|
-
alignItems: string;
|
|
1353
|
-
overflow: string;
|
|
1354
|
-
width: string;
|
|
1355
|
-
padding: string;
|
|
1356
|
-
height: string;
|
|
1357
|
-
'& .MuiTypography-root': {
|
|
1358
|
-
whiteSpace: string;
|
|
1359
|
-
overflow: string;
|
|
1360
|
-
textOverflow: string;
|
|
1361
|
-
width: string;
|
|
1362
|
-
};
|
|
1363
|
-
};
|
|
1364
|
-
'& .M4LAreasViewer-areasLoadingErrorRoot': {
|
|
1365
|
-
display: string;
|
|
1366
|
-
flexDirection: string;
|
|
1367
|
-
justifyContent: string;
|
|
1368
|
-
alignItems: string;
|
|
1369
|
-
position: string;
|
|
1370
|
-
inset: string;
|
|
1371
|
-
overflow: string;
|
|
1372
|
-
width: string;
|
|
1373
|
-
height: string;
|
|
1374
|
-
'& .M4LAreasViewer-areasLoadingError': {
|
|
1375
|
-
display: string;
|
|
1376
|
-
padding: string;
|
|
1377
|
-
flexDirection: string;
|
|
1378
|
-
justifyContent: string;
|
|
1379
|
-
alignItems: string;
|
|
1380
|
-
gap: string;
|
|
1381
|
-
position: string;
|
|
1382
|
-
inset: string;
|
|
1383
|
-
'& .M4LIcon-root': {
|
|
1384
|
-
display: string;
|
|
1385
|
-
padding: string;
|
|
1386
|
-
marginBottom: string;
|
|
1387
|
-
' .M4LIcon-icon': {
|
|
1388
|
-
width: string;
|
|
1389
|
-
height: string;
|
|
1390
|
-
backgroundColor: string;
|
|
1391
|
-
};
|
|
1392
|
-
};
|
|
1393
|
-
'& .M4LAreasViewer-areasLoadingErrorTitle': {
|
|
1394
|
-
[x: string]: unknown;
|
|
1395
|
-
color: string;
|
|
1396
|
-
'@font-face'?: import("@mui/material/styles/createTypography").Fontface | import("@mui/material/styles/createTypography").Fontface[] | undefined;
|
|
1397
|
-
accentColor?: import("csstype").Property.AccentColor | undefined;
|
|
1398
|
-
alignContent?: import("csstype").Property.AlignContent | undefined;
|
|
1399
|
-
alignItems?: import("csstype").Property.AlignItems | undefined;
|
|
1400
|
-
alignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
1401
|
-
alignTracks?: import("csstype").Property.AlignTracks | undefined;
|
|
1402
|
-
animationComposition?: import("csstype").Property.AnimationComposition | undefined;
|
|
1403
|
-
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1404
|
-
animationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
1405
|
-
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
1406
|
-
animationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
1407
|
-
animationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
1408
|
-
animationName?: import("csstype").Property.AnimationName | undefined;
|
|
1409
|
-
animationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1410
|
-
animationTimeline?: import("csstype").Property.AnimationTimeline | undefined;
|
|
1411
|
-
animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1412
|
-
appearance?: import("csstype").Property.Appearance | undefined;
|
|
1413
|
-
aspectRatio?: import("csstype").Property.AspectRatio | undefined;
|
|
1414
|
-
backdropFilter?: import("csstype").Property.BackdropFilter | undefined;
|
|
1415
|
-
backfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1416
|
-
backgroundAttachment?: import("csstype").Property.BackgroundAttachment | undefined;
|
|
1417
|
-
backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | undefined;
|
|
1418
|
-
backgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
1419
|
-
backgroundColor?: import("csstype").Property.BackgroundColor | undefined;
|
|
1420
|
-
backgroundImage?: import("csstype").Property.BackgroundImage | undefined;
|
|
1421
|
-
backgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
1422
|
-
backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | undefined;
|
|
1423
|
-
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | undefined;
|
|
1424
|
-
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | undefined;
|
|
1425
|
-
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
1426
|
-
blockOverflow?: import("csstype").Property.BlockOverflow | undefined;
|
|
1427
|
-
blockSize?: import("csstype").Property.BlockSize<string | number> | undefined;
|
|
1428
|
-
borderBlockColor?: import("csstype").Property.BorderBlockColor | undefined;
|
|
1429
|
-
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | undefined;
|
|
1430
|
-
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | undefined;
|
|
1431
|
-
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | undefined;
|
|
1432
|
-
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | undefined;
|
|
1433
|
-
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | undefined;
|
|
1434
|
-
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | undefined;
|
|
1435
|
-
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | undefined;
|
|
1436
|
-
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | undefined;
|
|
1437
|
-
borderBottomColor?: import("csstype").Property.BorderBottomColor | undefined;
|
|
1438
|
-
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
1439
|
-
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
1440
|
-
borderBottomStyle?: import("csstype").Property.BorderBottomStyle | undefined;
|
|
1441
|
-
borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | undefined;
|
|
1442
|
-
borderCollapse?: import("csstype").Property.BorderCollapse | undefined;
|
|
1443
|
-
borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | undefined;
|
|
1444
|
-
borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | undefined;
|
|
1445
|
-
borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | undefined;
|
|
1446
|
-
borderImageRepeat?: import("csstype").Property.BorderImageRepeat | undefined;
|
|
1447
|
-
borderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
1448
|
-
borderImageSource?: import("csstype").Property.BorderImageSource | undefined;
|
|
1449
|
-
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | undefined;
|
|
1450
|
-
borderInlineColor?: import("csstype").Property.BorderInlineColor | undefined;
|
|
1451
|
-
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
1452
|
-
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
1453
|
-
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
1454
|
-
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
1455
|
-
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
1456
|
-
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | undefined;
|
|
1457
|
-
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | undefined;
|
|
1458
|
-
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | undefined;
|
|
1459
|
-
borderLeftColor?: import("csstype").Property.BorderLeftColor | undefined;
|
|
1460
|
-
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | undefined;
|
|
1461
|
-
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | undefined;
|
|
1462
|
-
borderRightColor?: import("csstype").Property.BorderRightColor | undefined;
|
|
1463
|
-
borderRightStyle?: import("csstype").Property.BorderRightStyle | undefined;
|
|
1464
|
-
borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | undefined;
|
|
1465
|
-
borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | undefined;
|
|
1466
|
-
borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | undefined;
|
|
1467
|
-
borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | undefined;
|
|
1468
|
-
borderTopColor?: import("csstype").Property.BorderTopColor | undefined;
|
|
1469
|
-
borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
1470
|
-
borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
1471
|
-
borderTopStyle?: import("csstype").Property.BorderTopStyle | undefined;
|
|
1472
|
-
borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | undefined;
|
|
1473
|
-
bottom?: import("csstype").Property.Bottom<string | number> | undefined;
|
|
1474
|
-
boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1475
|
-
boxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
1476
|
-
boxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
1477
|
-
breakAfter?: import("csstype").Property.BreakAfter | undefined;
|
|
1478
|
-
breakBefore?: import("csstype").Property.BreakBefore | undefined;
|
|
1479
|
-
breakInside?: import("csstype").Property.BreakInside | undefined;
|
|
1480
|
-
captionSide?: import("csstype").Property.CaptionSide | undefined;
|
|
1481
|
-
caretColor?: import("csstype").Property.CaretColor | undefined;
|
|
1482
|
-
caretShape?: import("csstype").Property.CaretShape | undefined;
|
|
1483
|
-
clear?: import("csstype").Property.Clear | undefined;
|
|
1484
|
-
clipPath?: import("csstype").Property.ClipPath | undefined;
|
|
1485
|
-
colorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
1486
|
-
colorScheme?: import("csstype").Property.ColorScheme | undefined;
|
|
1487
|
-
columnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
1488
|
-
columnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
1489
|
-
columnGap?: import("csstype").Property.ColumnGap<string | number> | undefined;
|
|
1490
|
-
columnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
1491
|
-
columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
1492
|
-
columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
1493
|
-
columnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
1494
|
-
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
1495
|
-
contain?: import("csstype").Property.Contain | undefined;
|
|
1496
|
-
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined;
|
|
1497
|
-
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined;
|
|
1498
|
-
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined;
|
|
1499
|
-
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined;
|
|
1500
|
-
containerName?: import("csstype").Property.ContainerName | undefined;
|
|
1501
|
-
containerType?: import("csstype").Property.ContainerType | undefined;
|
|
1502
|
-
content?: import("csstype").Property.Content | undefined;
|
|
1503
|
-
contentVisibility?: import("csstype").Property.ContentVisibility | undefined;
|
|
1504
|
-
counterIncrement?: import("csstype").Property.CounterIncrement | undefined;
|
|
1505
|
-
counterReset?: import("csstype").Property.CounterReset | undefined;
|
|
1506
|
-
counterSet?: import("csstype").Property.CounterSet | undefined;
|
|
1507
|
-
cursor?: import("csstype").Property.Cursor | undefined;
|
|
1508
|
-
direction?: import("csstype").Property.Direction | undefined;
|
|
1509
|
-
display?: import("csstype").Property.Display | undefined;
|
|
1510
|
-
emptyCells?: import("csstype").Property.EmptyCells | undefined;
|
|
1511
|
-
filter?: import("csstype").Property.Filter | undefined;
|
|
1512
|
-
flexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
1513
|
-
flexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
1514
|
-
flexGrow?: import("csstype").Property.FlexGrow | undefined;
|
|
1515
|
-
flexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
1516
|
-
flexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
1517
|
-
float?: import("csstype").Property.Float | undefined;
|
|
1518
|
-
fontFamily?: import("csstype").Property.FontFamily | undefined;
|
|
1519
|
-
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
1520
|
-
fontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
1521
|
-
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
1522
|
-
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | undefined;
|
|
1523
|
-
fontPalette?: import("csstype").Property.FontPalette | undefined;
|
|
1524
|
-
fontSize?: import("csstype").Property.FontSize<string | number> | undefined;
|
|
1525
|
-
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | undefined;
|
|
1526
|
-
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
1527
|
-
fontStretch?: import("csstype").Property.FontStretch | undefined;
|
|
1528
|
-
fontStyle?: import("csstype").Property.FontStyle | undefined;
|
|
1529
|
-
fontSynthesis?: import("csstype").Property.FontSynthesis | undefined;
|
|
1530
|
-
fontVariant?: import("csstype").Property.FontVariant | undefined;
|
|
1531
|
-
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | undefined;
|
|
1532
|
-
fontVariantCaps?: import("csstype").Property.FontVariantCaps | undefined;
|
|
1533
|
-
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | undefined;
|
|
1534
|
-
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | undefined;
|
|
1535
|
-
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
1536
|
-
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | undefined;
|
|
1537
|
-
fontVariantPosition?: import("csstype").Property.FontVariantPosition | undefined;
|
|
1538
|
-
fontVariationSettings?: import("csstype").Property.FontVariationSettings | undefined;
|
|
1539
|
-
fontWeight?: import("csstype").Property.FontWeight | undefined;
|
|
1540
|
-
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | undefined;
|
|
1541
|
-
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | undefined;
|
|
1542
|
-
gridAutoFlow?: import("csstype").Property.GridAutoFlow | undefined;
|
|
1543
|
-
gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | undefined;
|
|
1544
|
-
gridColumnEnd?: import("csstype").Property.GridColumnEnd | undefined;
|
|
1545
|
-
gridColumnStart?: import("csstype").Property.GridColumnStart | undefined;
|
|
1546
|
-
gridRowEnd?: import("csstype").Property.GridRowEnd | undefined;
|
|
1547
|
-
gridRowStart?: import("csstype").Property.GridRowStart | undefined;
|
|
1548
|
-
gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | undefined;
|
|
1549
|
-
gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | undefined;
|
|
1550
|
-
gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | undefined;
|
|
1551
|
-
hangingPunctuation?: import("csstype").Property.HangingPunctuation | undefined;
|
|
1552
|
-
height?: import("csstype").Property.Height<string | number> | undefined;
|
|
1553
|
-
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
1554
|
-
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | undefined;
|
|
1555
|
-
hyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1556
|
-
imageOrientation?: import("csstype").Property.ImageOrientation | undefined;
|
|
1557
|
-
imageRendering?: import("csstype").Property.ImageRendering | undefined;
|
|
1558
|
-
imageResolution?: import("csstype").Property.ImageResolution | undefined;
|
|
1559
|
-
initialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
1560
|
-
inlineSize?: import("csstype").Property.InlineSize<string | number> | undefined;
|
|
1561
|
-
inputSecurity?: import("csstype").Property.InputSecurity | undefined;
|
|
1562
|
-
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
1563
|
-
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
1564
|
-
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
1565
|
-
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
1566
|
-
isolation?: import("csstype").Property.Isolation | undefined;
|
|
1567
|
-
justifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
1568
|
-
justifyItems?: import("csstype").Property.JustifyItems | undefined;
|
|
1569
|
-
justifySelf?: import("csstype").Property.JustifySelf | undefined;
|
|
1570
|
-
justifyTracks?: import("csstype").Property.JustifyTracks | undefined;
|
|
1571
|
-
left?: import("csstype").Property.Left<string | number> | undefined;
|
|
1572
|
-
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | undefined;
|
|
1573
|
-
lineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1574
|
-
lineHeight?: import("csstype").Property.LineHeight<string | number> | undefined;
|
|
1575
|
-
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | undefined;
|
|
1576
|
-
listStyleImage?: import("csstype").Property.ListStyleImage | undefined;
|
|
1577
|
-
listStylePosition?: import("csstype").Property.ListStylePosition | undefined;
|
|
1578
|
-
listStyleType?: import("csstype").Property.ListStyleType | undefined;
|
|
1579
|
-
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | undefined;
|
|
1580
|
-
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | undefined;
|
|
1581
|
-
marginBottom?: import("csstype").Property.MarginBottom<string | number> | undefined;
|
|
1582
|
-
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
1583
|
-
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1584
|
-
marginLeft?: import("csstype").Property.MarginLeft<string | number> | undefined;
|
|
1585
|
-
marginRight?: import("csstype").Property.MarginRight<string | number> | undefined;
|
|
1586
|
-
marginTop?: import("csstype").Property.MarginTop<string | number> | undefined;
|
|
1587
|
-
marginTrim?: import("csstype").Property.MarginTrim | undefined;
|
|
1588
|
-
maskBorderMode?: import("csstype").Property.MaskBorderMode | undefined;
|
|
1589
|
-
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
1590
|
-
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
1591
|
-
maskBorderSlice?: import("csstype").Property.MaskBorderSlice | undefined;
|
|
1592
|
-
maskBorderSource?: import("csstype").Property.MaskBorderSource | undefined;
|
|
1593
|
-
maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
|
|
1594
|
-
maskClip?: import("csstype").Property.MaskClip | undefined;
|
|
1595
|
-
maskComposite?: import("csstype").Property.MaskComposite | undefined;
|
|
1596
|
-
maskImage?: import("csstype").Property.MaskImage | undefined;
|
|
1597
|
-
maskMode?: import("csstype").Property.MaskMode | undefined;
|
|
1598
|
-
maskOrigin?: import("csstype").Property.MaskOrigin | undefined;
|
|
1599
|
-
maskPosition?: import("csstype").Property.MaskPosition<string | number> | undefined;
|
|
1600
|
-
maskRepeat?: import("csstype").Property.MaskRepeat | undefined;
|
|
1601
|
-
maskSize?: import("csstype").Property.MaskSize<string | number> | undefined;
|
|
1602
|
-
maskType?: import("csstype").Property.MaskType | undefined;
|
|
1603
|
-
mathDepth?: import("csstype").Property.MathDepth | undefined;
|
|
1604
|
-
mathShift?: import("csstype").Property.MathShift | undefined;
|
|
1605
|
-
mathStyle?: import("csstype").Property.MathStyle | undefined;
|
|
1606
|
-
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | undefined;
|
|
1607
|
-
maxHeight?: import("csstype").Property.MaxHeight<string | number> | undefined;
|
|
1608
|
-
maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
|
|
1609
|
-
maxLines?: import("csstype").Property.MaxLines | undefined;
|
|
1610
|
-
maxWidth?: import("csstype").Property.MaxWidth<string | number> | undefined;
|
|
1611
|
-
minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | undefined;
|
|
1612
|
-
minHeight?: import("csstype").Property.MinHeight<string | number> | undefined;
|
|
1613
|
-
minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | undefined;
|
|
1614
|
-
minWidth?: import("csstype").Property.MinWidth<string | number> | undefined;
|
|
1615
|
-
mixBlendMode?: import("csstype").Property.MixBlendMode | undefined;
|
|
1616
|
-
motionDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
1617
|
-
motionPath?: import("csstype").Property.OffsetPath | undefined;
|
|
1618
|
-
motionRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
1619
|
-
objectFit?: import("csstype").Property.ObjectFit | undefined;
|
|
1620
|
-
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | undefined;
|
|
1621
|
-
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | undefined;
|
|
1622
|
-
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | undefined;
|
|
1623
|
-
offsetPath?: import("csstype").Property.OffsetPath | undefined;
|
|
1624
|
-
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | undefined;
|
|
1625
|
-
offsetRotate?: import("csstype").Property.OffsetRotate | undefined;
|
|
1626
|
-
offsetRotation?: import("csstype").Property.OffsetRotate | undefined;
|
|
1627
|
-
opacity?: import("csstype").Property.Opacity | undefined;
|
|
1628
|
-
order?: import("csstype").Property.Order | undefined;
|
|
1629
|
-
orphans?: import("csstype").Property.Orphans | undefined;
|
|
1630
|
-
outlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
1631
|
-
outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | undefined;
|
|
1632
|
-
outlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
1633
|
-
outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
1634
|
-
overflowAnchor?: import("csstype").Property.OverflowAnchor | undefined;
|
|
1635
|
-
overflowBlock?: import("csstype").Property.OverflowBlock | undefined;
|
|
1636
|
-
overflowClipBox?: import("csstype").Property.OverflowClipBox | undefined;
|
|
1637
|
-
overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | undefined;
|
|
1638
|
-
overflowInline?: import("csstype").Property.OverflowInline | undefined;
|
|
1639
|
-
overflowWrap?: import("csstype").Property.OverflowWrap | undefined;
|
|
1640
|
-
overflowX?: import("csstype").Property.OverflowX | undefined;
|
|
1641
|
-
overflowY?: import("csstype").Property.OverflowY | undefined;
|
|
1642
|
-
overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | undefined;
|
|
1643
|
-
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | undefined;
|
|
1644
|
-
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | undefined;
|
|
1645
|
-
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | undefined;
|
|
1646
|
-
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | undefined;
|
|
1647
|
-
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | undefined;
|
|
1648
|
-
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | undefined;
|
|
1649
|
-
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
1650
|
-
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
1651
|
-
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | undefined;
|
|
1652
|
-
paddingRight?: import("csstype").Property.PaddingRight<string | number> | undefined;
|
|
1653
|
-
paddingTop?: import("csstype").Property.PaddingTop<string | number> | undefined;
|
|
1654
|
-
page?: import("csstype").Property.Page | undefined;
|
|
1655
|
-
pageBreakAfter?: import("csstype").Property.PageBreakAfter | undefined;
|
|
1656
|
-
pageBreakBefore?: import("csstype").Property.PageBreakBefore | undefined;
|
|
1657
|
-
pageBreakInside?: import("csstype").Property.PageBreakInside | undefined;
|
|
1658
|
-
paintOrder?: import("csstype").Property.PaintOrder | undefined;
|
|
1659
|
-
perspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1660
|
-
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1661
|
-
pointerEvents?: import("csstype").Property.PointerEvents | undefined;
|
|
1662
|
-
position?: import("csstype").Property.Position | undefined;
|
|
1663
|
-
printColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
1664
|
-
quotes?: import("csstype").Property.Quotes | undefined;
|
|
1665
|
-
resize?: import("csstype").Property.Resize | undefined;
|
|
1666
|
-
right?: import("csstype").Property.Right<string | number> | undefined;
|
|
1667
|
-
rotate?: import("csstype").Property.Rotate | undefined;
|
|
1668
|
-
rowGap?: import("csstype").Property.RowGap<string | number> | undefined;
|
|
1669
|
-
rubyAlign?: import("csstype").Property.RubyAlign | undefined;
|
|
1670
|
-
rubyMerge?: import("csstype").Property.RubyMerge | undefined;
|
|
1671
|
-
rubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
1672
|
-
scale?: import("csstype").Property.Scale | undefined;
|
|
1673
|
-
scrollBehavior?: import("csstype").Property.ScrollBehavior | undefined;
|
|
1674
|
-
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined;
|
|
1675
|
-
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined;
|
|
1676
|
-
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
1677
|
-
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined;
|
|
1678
|
-
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined;
|
|
1679
|
-
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
1680
|
-
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
1681
|
-
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
1682
|
-
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined;
|
|
1683
|
-
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined;
|
|
1684
|
-
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | undefined;
|
|
1685
|
-
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined;
|
|
1686
|
-
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined;
|
|
1687
|
-
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | undefined;
|
|
1688
|
-
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | undefined;
|
|
1689
|
-
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | undefined;
|
|
1690
|
-
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | undefined;
|
|
1691
|
-
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | undefined;
|
|
1692
|
-
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | undefined;
|
|
1693
|
-
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | undefined;
|
|
1694
|
-
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | undefined;
|
|
1695
|
-
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | undefined;
|
|
1696
|
-
scrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
1697
|
-
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | undefined;
|
|
1698
|
-
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | undefined;
|
|
1699
|
-
scrollbarColor?: import("csstype").Property.ScrollbarColor | undefined;
|
|
1700
|
-
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | undefined;
|
|
1701
|
-
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | undefined;
|
|
1702
|
-
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | undefined;
|
|
1703
|
-
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
1704
|
-
shapeOutside?: import("csstype").Property.ShapeOutside | undefined;
|
|
1705
|
-
tabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
1706
|
-
tableLayout?: import("csstype").Property.TableLayout | undefined;
|
|
1707
|
-
textAlign?: import("csstype").Property.TextAlign | undefined;
|
|
1708
|
-
textAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
1709
|
-
textCombineUpright?: import("csstype").Property.TextCombineUpright | undefined;
|
|
1710
|
-
textDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
1711
|
-
textDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
1712
|
-
textDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
|
|
1713
|
-
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | undefined;
|
|
1714
|
-
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1715
|
-
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | undefined;
|
|
1716
|
-
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
1717
|
-
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
1718
|
-
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
1719
|
-
textIndent?: import("csstype").Property.TextIndent<string | number> | undefined;
|
|
1720
|
-
textJustify?: import("csstype").Property.TextJustify | undefined;
|
|
1721
|
-
textOrientation?: import("csstype").Property.TextOrientation | undefined;
|
|
1722
|
-
textOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
1723
|
-
textRendering?: import("csstype").Property.TextRendering | undefined;
|
|
1724
|
-
textShadow?: import("csstype").Property.TextShadow | undefined;
|
|
1725
|
-
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
1726
|
-
textTransform?: import("csstype").Property.TextTransform | undefined;
|
|
1727
|
-
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | undefined;
|
|
1728
|
-
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
1729
|
-
top?: import("csstype").Property.Top<string | number> | undefined;
|
|
1730
|
-
touchAction?: import("csstype").Property.TouchAction | undefined;
|
|
1731
|
-
transform?: import("csstype").Property.Transform | undefined;
|
|
1732
|
-
transformBox?: import("csstype").Property.TransformBox | undefined;
|
|
1733
|
-
transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1734
|
-
transformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
1735
|
-
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1736
|
-
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1737
|
-
transitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1738
|
-
transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1739
|
-
translate?: import("csstype").Property.Translate<string | number> | undefined;
|
|
1740
|
-
unicodeBidi?: import("csstype").Property.UnicodeBidi | undefined;
|
|
1741
|
-
userSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1742
|
-
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | undefined;
|
|
1743
|
-
viewTransitionName?: import("csstype").Property.ViewTransitionName | undefined;
|
|
1744
|
-
visibility?: import("csstype").Property.Visibility | undefined;
|
|
1745
|
-
whiteSpace?: import("csstype").Property.WhiteSpace | undefined;
|
|
1746
|
-
widows?: import("csstype").Property.Widows | undefined;
|
|
1747
|
-
width?: import("csstype").Property.Width<string | number> | undefined;
|
|
1748
|
-
willChange?: import("csstype").Property.WillChange | undefined;
|
|
1749
|
-
wordBreak?: import("csstype").Property.WordBreak | undefined;
|
|
1750
|
-
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | undefined;
|
|
1751
|
-
wordWrap?: import("csstype").Property.WordWrap | undefined;
|
|
1752
|
-
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
1753
|
-
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
1754
|
-
zoom?: import("csstype").Property.Zoom | undefined;
|
|
1755
|
-
all?: import("csstype").Globals | undefined;
|
|
1756
|
-
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
1757
|
-
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
1758
|
-
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | undefined;
|
|
1759
|
-
border?: import("csstype").Property.Border<string | number> | undefined;
|
|
1760
|
-
borderBlock?: import("csstype").Property.BorderBlock<string | number> | undefined;
|
|
1761
|
-
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | undefined;
|
|
1762
|
-
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | undefined;
|
|
1763
|
-
borderBottom?: import("csstype").Property.BorderBottom<string | number> | undefined;
|
|
1764
|
-
borderColor?: import("csstype").Property.BorderColor | undefined;
|
|
1765
|
-
borderImage?: import("csstype").Property.BorderImage | undefined;
|
|
1766
|
-
borderInline?: import("csstype").Property.BorderInline<string | number> | undefined;
|
|
1767
|
-
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | undefined;
|
|
1768
|
-
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | undefined;
|
|
1769
|
-
borderLeft?: import("csstype").Property.BorderLeft<string | number> | undefined;
|
|
1770
|
-
borderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
1771
|
-
borderRight?: import("csstype").Property.BorderRight<string | number> | undefined;
|
|
1772
|
-
borderStyle?: import("csstype").Property.BorderStyle | undefined;
|
|
1773
|
-
borderTop?: import("csstype").Property.BorderTop<string | number> | undefined;
|
|
1774
|
-
borderWidth?: import("csstype").Property.BorderWidth<string | number> | undefined;
|
|
1775
|
-
caret?: import("csstype").Property.Caret | undefined;
|
|
1776
|
-
columnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
1777
|
-
columns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1778
|
-
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | undefined;
|
|
1779
|
-
container?: import("csstype").Property.Container | undefined;
|
|
1780
|
-
flex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
1781
|
-
flexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
1782
|
-
font?: import("csstype").Property.Font | undefined;
|
|
1783
|
-
gap?: import("csstype").Property.Gap<string | number> | undefined;
|
|
1784
|
-
grid?: import("csstype").Property.Grid | undefined;
|
|
1785
|
-
gridArea?: import("csstype").Property.GridArea | undefined;
|
|
1786
|
-
gridColumn?: import("csstype").Property.GridColumn | undefined;
|
|
1787
|
-
gridRow?: import("csstype").Property.GridRow | undefined;
|
|
1788
|
-
gridTemplate?: import("csstype").Property.GridTemplate | undefined;
|
|
1789
|
-
inset?: import("csstype").Property.Inset<string | number> | undefined;
|
|
1790
|
-
insetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
1791
|
-
insetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
1792
|
-
lineClamp?: import("csstype").Property.LineClamp | undefined;
|
|
1793
|
-
listStyle?: import("csstype").Property.ListStyle | undefined;
|
|
1794
|
-
margin?: import("csstype").Property.Margin<string | number> | undefined;
|
|
1795
|
-
marginBlock?: import("csstype").Property.MarginBlock<string | number> | undefined;
|
|
1796
|
-
marginInline?: import("csstype").Property.MarginInline<string | number> | undefined;
|
|
1797
|
-
mask?: import("csstype").Property.Mask<string | number> | undefined;
|
|
1798
|
-
maskBorder?: import("csstype").Property.MaskBorder | undefined;
|
|
1799
|
-
motion?: import("csstype").Property.Offset<string | number> | undefined;
|
|
1800
|
-
offset?: import("csstype").Property.Offset<string | number> | undefined;
|
|
1801
|
-
outline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
1802
|
-
overflow?: import("csstype").Property.Overflow | undefined;
|
|
1803
|
-
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | undefined;
|
|
1804
|
-
padding?: import("csstype").Property.Padding<string | number> | undefined;
|
|
1805
|
-
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | undefined;
|
|
1806
|
-
paddingInline?: import("csstype").Property.PaddingInline<string | number> | undefined;
|
|
1807
|
-
placeContent?: import("csstype").Property.PlaceContent | undefined;
|
|
1808
|
-
placeItems?: import("csstype").Property.PlaceItems | undefined;
|
|
1809
|
-
placeSelf?: import("csstype").Property.PlaceSelf | undefined;
|
|
1810
|
-
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1811
|
-
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | undefined;
|
|
1812
|
-
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | undefined;
|
|
1813
|
-
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | undefined;
|
|
1814
|
-
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | undefined;
|
|
1815
|
-
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | undefined;
|
|
1816
|
-
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | undefined;
|
|
1817
|
-
scrollTimeline?: import("csstype").Property.ScrollTimeline | undefined;
|
|
1818
|
-
textDecoration?: import("csstype").Property.TextDecoration<string | number> | undefined;
|
|
1819
|
-
textEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
1820
|
-
transition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
1821
|
-
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1822
|
-
MozAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
1823
|
-
MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
1824
|
-
MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
1825
|
-
MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
1826
|
-
MozAnimationName?: import("csstype").Property.AnimationName | undefined;
|
|
1827
|
-
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1828
|
-
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1829
|
-
MozAppearance?: import("csstype").Property.MozAppearance | undefined;
|
|
1830
|
-
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1831
|
-
MozBinding?: import("csstype").Property.MozBinding | undefined;
|
|
1832
|
-
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | undefined;
|
|
1833
|
-
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | undefined;
|
|
1834
|
-
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | undefined;
|
|
1835
|
-
MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | undefined;
|
|
1836
|
-
MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | undefined;
|
|
1837
|
-
MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | undefined;
|
|
1838
|
-
MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | undefined;
|
|
1839
|
-
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | undefined;
|
|
1840
|
-
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | undefined;
|
|
1841
|
-
MozBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
1842
|
-
MozColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
1843
|
-
MozColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
1844
|
-
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
1845
|
-
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
1846
|
-
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
1847
|
-
MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
1848
|
-
MozContextProperties?: import("csstype").Property.MozContextProperties | undefined;
|
|
1849
|
-
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
1850
|
-
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | undefined;
|
|
1851
|
-
MozHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1852
|
-
MozImageRegion?: import("csstype").Property.MozImageRegion | undefined;
|
|
1853
|
-
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
1854
|
-
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1855
|
-
MozOrient?: import("csstype").Property.MozOrient | undefined;
|
|
1856
|
-
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
1857
|
-
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
1858
|
-
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
1859
|
-
MozPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
1860
|
-
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
1861
|
-
MozStackSizing?: import("csstype").Property.MozStackSizing | undefined;
|
|
1862
|
-
MozTabSize?: import("csstype").Property.TabSize<string | number> | undefined;
|
|
1863
|
-
MozTextBlink?: import("csstype").Property.MozTextBlink | undefined;
|
|
1864
|
-
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
1865
|
-
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1866
|
-
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
1867
|
-
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1868
|
-
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1869
|
-
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1870
|
-
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1871
|
-
MozUserFocus?: import("csstype").Property.MozUserFocus | undefined;
|
|
1872
|
-
MozUserModify?: import("csstype").Property.MozUserModify | undefined;
|
|
1873
|
-
MozUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
1874
|
-
MozWindowDragging?: import("csstype").Property.MozWindowDragging | undefined;
|
|
1875
|
-
MozWindowShadow?: import("csstype").Property.MozWindowShadow | undefined;
|
|
1876
|
-
msAccelerator?: import("csstype").Property.MsAccelerator | undefined;
|
|
1877
|
-
msBlockProgression?: import("csstype").Property.MsBlockProgression | undefined;
|
|
1878
|
-
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | undefined;
|
|
1879
|
-
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | undefined;
|
|
1880
|
-
msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | undefined;
|
|
1881
|
-
msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | undefined;
|
|
1882
|
-
msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | undefined;
|
|
1883
|
-
msContentZooming?: import("csstype").Property.MsContentZooming | undefined;
|
|
1884
|
-
msFilter?: import("csstype").Property.MsFilter | undefined;
|
|
1885
|
-
msFlexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
1886
|
-
msFlexPositive?: import("csstype").Property.FlexGrow | undefined;
|
|
1887
|
-
msFlowFrom?: import("csstype").Property.MsFlowFrom | undefined;
|
|
1888
|
-
msFlowInto?: import("csstype").Property.MsFlowInto | undefined;
|
|
1889
|
-
msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | undefined;
|
|
1890
|
-
msGridRows?: import("csstype").Property.MsGridRows<string | number> | undefined;
|
|
1891
|
-
msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | undefined;
|
|
1892
|
-
msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | undefined;
|
|
1893
|
-
msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | undefined;
|
|
1894
|
-
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined;
|
|
1895
|
-
msHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1896
|
-
msImeAlign?: import("csstype").Property.MsImeAlign | undefined;
|
|
1897
|
-
msLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1898
|
-
msOrder?: import("csstype").Property.Order | undefined;
|
|
1899
|
-
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | undefined;
|
|
1900
|
-
msOverflowX?: import("csstype").Property.OverflowX | undefined;
|
|
1901
|
-
msOverflowY?: import("csstype").Property.OverflowY | undefined;
|
|
1902
|
-
msScrollChaining?: import("csstype").Property.MsScrollChaining | undefined;
|
|
1903
|
-
msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | undefined;
|
|
1904
|
-
msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | undefined;
|
|
1905
|
-
msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | undefined;
|
|
1906
|
-
msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | undefined;
|
|
1907
|
-
msScrollRails?: import("csstype").Property.MsScrollRails | undefined;
|
|
1908
|
-
msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | undefined;
|
|
1909
|
-
msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | undefined;
|
|
1910
|
-
msScrollSnapType?: import("csstype").Property.MsScrollSnapType | undefined;
|
|
1911
|
-
msScrollTranslation?: import("csstype").Property.MsScrollTranslation | undefined;
|
|
1912
|
-
msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | undefined;
|
|
1913
|
-
msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | undefined;
|
|
1914
|
-
msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | undefined;
|
|
1915
|
-
msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | undefined;
|
|
1916
|
-
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | undefined;
|
|
1917
|
-
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | undefined;
|
|
1918
|
-
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | undefined;
|
|
1919
|
-
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | undefined;
|
|
1920
|
-
msTextAutospace?: import("csstype").Property.MsTextAutospace | undefined;
|
|
1921
|
-
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | undefined;
|
|
1922
|
-
msTextOverflow?: import("csstype").Property.TextOverflow | undefined;
|
|
1923
|
-
msTouchAction?: import("csstype").Property.TouchAction | undefined;
|
|
1924
|
-
msTouchSelect?: import("csstype").Property.MsTouchSelect | undefined;
|
|
1925
|
-
msTransform?: import("csstype").Property.Transform | undefined;
|
|
1926
|
-
msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1927
|
-
msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1928
|
-
msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1929
|
-
msTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1930
|
-
msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
1931
|
-
msUserSelect?: import("csstype").Property.MsUserSelect | undefined;
|
|
1932
|
-
msWordBreak?: import("csstype").Property.WordBreak | undefined;
|
|
1933
|
-
msWrapFlow?: import("csstype").Property.MsWrapFlow | undefined;
|
|
1934
|
-
msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | undefined;
|
|
1935
|
-
msWrapThrough?: import("csstype").Property.MsWrapThrough | undefined;
|
|
1936
|
-
msWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
1937
|
-
WebkitAlignContent?: import("csstype").Property.AlignContent | undefined;
|
|
1938
|
-
WebkitAlignItems?: import("csstype").Property.AlignItems | undefined;
|
|
1939
|
-
WebkitAlignSelf?: import("csstype").Property.AlignSelf | undefined;
|
|
1940
|
-
WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | undefined;
|
|
1941
|
-
WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | undefined;
|
|
1942
|
-
WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | undefined;
|
|
1943
|
-
WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | undefined;
|
|
1944
|
-
WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | undefined;
|
|
1945
|
-
WebkitAnimationName?: import("csstype").Property.AnimationName | undefined;
|
|
1946
|
-
WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | undefined;
|
|
1947
|
-
WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | undefined;
|
|
1948
|
-
WebkitAppearance?: import("csstype").Property.WebkitAppearance | undefined;
|
|
1949
|
-
WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | undefined;
|
|
1950
|
-
WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | undefined;
|
|
1951
|
-
WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
1952
|
-
WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
1953
|
-
WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
1954
|
-
WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | undefined;
|
|
1955
|
-
WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | undefined;
|
|
1956
|
-
WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined;
|
|
1957
|
-
WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
1958
|
-
WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
1959
|
-
WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | undefined;
|
|
1960
|
-
WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
1961
|
-
WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
1962
|
-
WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
1963
|
-
WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | undefined;
|
|
1964
|
-
WebkitBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
1965
|
-
WebkitBoxSizing?: import("csstype").Property.BoxSizing | undefined;
|
|
1966
|
-
WebkitClipPath?: import("csstype").Property.ClipPath | undefined;
|
|
1967
|
-
WebkitColumnCount?: import("csstype").Property.ColumnCount | undefined;
|
|
1968
|
-
WebkitColumnFill?: import("csstype").Property.ColumnFill | undefined;
|
|
1969
|
-
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | undefined;
|
|
1970
|
-
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | undefined;
|
|
1971
|
-
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | undefined;
|
|
1972
|
-
WebkitColumnSpan?: import("csstype").Property.ColumnSpan | undefined;
|
|
1973
|
-
WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | undefined;
|
|
1974
|
-
WebkitFilter?: import("csstype").Property.Filter | undefined;
|
|
1975
|
-
WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | undefined;
|
|
1976
|
-
WebkitFlexDirection?: import("csstype").Property.FlexDirection | undefined;
|
|
1977
|
-
WebkitFlexGrow?: import("csstype").Property.FlexGrow | undefined;
|
|
1978
|
-
WebkitFlexShrink?: import("csstype").Property.FlexShrink | undefined;
|
|
1979
|
-
WebkitFlexWrap?: import("csstype").Property.FlexWrap | undefined;
|
|
1980
|
-
WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | undefined;
|
|
1981
|
-
WebkitFontKerning?: import("csstype").Property.FontKerning | undefined;
|
|
1982
|
-
WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | undefined;
|
|
1983
|
-
WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | undefined;
|
|
1984
|
-
WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | undefined;
|
|
1985
|
-
WebkitHyphens?: import("csstype").Property.Hyphens | undefined;
|
|
1986
|
-
WebkitInitialLetter?: import("csstype").Property.InitialLetter | undefined;
|
|
1987
|
-
WebkitJustifyContent?: import("csstype").Property.JustifyContent | undefined;
|
|
1988
|
-
WebkitLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
1989
|
-
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | undefined;
|
|
1990
|
-
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | undefined;
|
|
1991
|
-
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | undefined;
|
|
1992
|
-
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | undefined;
|
|
1993
|
-
WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | undefined;
|
|
1994
|
-
WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | undefined;
|
|
1995
|
-
WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | undefined;
|
|
1996
|
-
WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | undefined;
|
|
1997
|
-
WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | undefined;
|
|
1998
|
-
WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | undefined;
|
|
1999
|
-
WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | undefined;
|
|
2000
|
-
WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | undefined;
|
|
2001
|
-
WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | undefined;
|
|
2002
|
-
WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | undefined;
|
|
2003
|
-
WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | undefined;
|
|
2004
|
-
WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | undefined;
|
|
2005
|
-
WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | undefined;
|
|
2006
|
-
WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | undefined;
|
|
2007
|
-
WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | undefined;
|
|
2008
|
-
WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | undefined;
|
|
2009
|
-
WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | undefined;
|
|
2010
|
-
WebkitOrder?: import("csstype").Property.Order | undefined;
|
|
2011
|
-
WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | undefined;
|
|
2012
|
-
WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | undefined;
|
|
2013
|
-
WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | undefined;
|
|
2014
|
-
WebkitPerspective?: import("csstype").Property.Perspective<string | number> | undefined;
|
|
2015
|
-
WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | undefined;
|
|
2016
|
-
WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | undefined;
|
|
2017
|
-
WebkitRubyPosition?: import("csstype").Property.RubyPosition | undefined;
|
|
2018
|
-
WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | undefined;
|
|
2019
|
-
WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | undefined;
|
|
2020
|
-
WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | undefined;
|
|
2021
|
-
WebkitTextCombine?: import("csstype").Property.TextCombineUpright | undefined;
|
|
2022
|
-
WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
2023
|
-
WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
2024
|
-
WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | undefined;
|
|
2025
|
-
WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
2026
|
-
WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | undefined;
|
|
2027
|
-
WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | undefined;
|
|
2028
|
-
WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | undefined;
|
|
2029
|
-
WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | undefined;
|
|
2030
|
-
WebkitTextOrientation?: import("csstype").Property.TextOrientation | undefined;
|
|
2031
|
-
WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | undefined;
|
|
2032
|
-
WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | undefined;
|
|
2033
|
-
WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined;
|
|
2034
|
-
WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | undefined;
|
|
2035
|
-
WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | undefined;
|
|
2036
|
-
WebkitTransform?: import("csstype").Property.Transform | undefined;
|
|
2037
|
-
WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
2038
|
-
WebkitTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
2039
|
-
WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
2040
|
-
WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
2041
|
-
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
2042
|
-
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
2043
|
-
WebkitUserModify?: import("csstype").Property.WebkitUserModify | undefined;
|
|
2044
|
-
WebkitUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
2045
|
-
WebkitWritingMode?: import("csstype").Property.WritingMode | undefined;
|
|
2046
|
-
MozAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
2047
|
-
MozBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
2048
|
-
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
2049
|
-
MozColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
1341
|
+
MozTransform?: import("csstype").Property.Transform | undefined;
|
|
1342
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | undefined;
|
|
1343
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle | undefined;
|
|
2050
1344
|
MozTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
msScrollSnapX?: import("csstype").Property.MsScrollSnapX | undefined;
|
|
2056
|
-
msScrollSnapY?: import("csstype").Property.MsScrollSnapY | undefined;
|
|
2057
|
-
msTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
2058
|
-
WebkitAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
2059
|
-
WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | undefined;
|
|
2060
|
-
WebkitBorderImage?: import("csstype").Property.BorderImage | undefined;
|
|
2061
|
-
WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
2062
|
-
WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | undefined;
|
|
2063
|
-
WebkitColumns?: import("csstype").Property.Columns<string | number> | undefined;
|
|
2064
|
-
WebkitFlex?: import("csstype").Property.Flex<string | number> | undefined;
|
|
2065
|
-
WebkitFlexFlow?: import("csstype").Property.FlexFlow | undefined;
|
|
2066
|
-
WebkitMask?: import("csstype").Property.WebkitMask<string | number> | undefined;
|
|
2067
|
-
WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | undefined;
|
|
2068
|
-
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | undefined;
|
|
2069
|
-
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | undefined;
|
|
2070
|
-
WebkitTransition?: import("csstype").Property.Transition<string & {}> | undefined;
|
|
2071
|
-
azimuth?: import("csstype").Property.Azimuth | undefined;
|
|
2072
|
-
boxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
2073
|
-
boxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
2074
|
-
boxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
2075
|
-
boxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
|
|
2076
|
-
boxLines?: import("csstype").Property.BoxLines | undefined;
|
|
2077
|
-
boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
2078
|
-
boxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
2079
|
-
boxPack?: import("csstype").Property.BoxPack | undefined;
|
|
2080
|
-
clip?: import("csstype").Property.Clip | undefined;
|
|
2081
|
-
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | undefined;
|
|
2082
|
-
gridGap?: import("csstype").Property.GridGap<string | number> | undefined;
|
|
2083
|
-
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | undefined;
|
|
2084
|
-
imeMode?: import("csstype").Property.ImeMode | undefined;
|
|
2085
|
-
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | undefined;
|
|
2086
|
-
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | undefined;
|
|
2087
|
-
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | undefined;
|
|
2088
|
-
offsetInline?: import("csstype").Property.InsetInline<string | number> | undefined;
|
|
2089
|
-
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | undefined;
|
|
2090
|
-
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | undefined;
|
|
2091
|
-
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined;
|
|
2092
|
-
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | undefined;
|
|
2093
|
-
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
2094
|
-
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
2095
|
-
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | undefined;
|
|
2096
|
-
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | undefined;
|
|
2097
|
-
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
2098
|
-
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
2099
|
-
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
2100
|
-
KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | undefined;
|
|
2101
|
-
KhtmlBoxLines?: import("csstype").Property.BoxLines | undefined;
|
|
2102
|
-
KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
2103
|
-
KhtmlBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
2104
|
-
KhtmlBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
2105
|
-
KhtmlLineBreak?: import("csstype").Property.LineBreak | undefined;
|
|
2106
|
-
KhtmlOpacity?: import("csstype").Property.Opacity | undefined;
|
|
2107
|
-
KhtmlUserSelect?: import("csstype").Property.UserSelect | undefined;
|
|
2108
|
-
MozBackgroundClip?: import("csstype").Property.BackgroundClip | undefined;
|
|
2109
|
-
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | undefined;
|
|
2110
|
-
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | undefined;
|
|
2111
|
-
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | undefined;
|
|
2112
|
-
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | undefined;
|
|
2113
|
-
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined;
|
|
2114
|
-
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | undefined;
|
|
2115
|
-
MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | undefined;
|
|
2116
|
-
MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | undefined;
|
|
2117
|
-
MozBoxAlign?: import("csstype").Property.BoxAlign | undefined;
|
|
2118
|
-
MozBoxDirection?: import("csstype").Property.BoxDirection | undefined;
|
|
2119
|
-
MozBoxFlex?: import("csstype").Property.BoxFlex | undefined;
|
|
2120
|
-
MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
2121
|
-
MozBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
2122
|
-
MozBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
2123
|
-
MozBoxShadow?: import("csstype").Property.BoxShadow | undefined;
|
|
2124
|
-
MozFloatEdge?: import("csstype").Property.MozFloatEdge | undefined;
|
|
2125
|
-
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | undefined;
|
|
2126
|
-
MozOpacity?: import("csstype").Property.Opacity | undefined;
|
|
2127
|
-
MozOutline?: import("csstype").Property.Outline<string | number> | undefined;
|
|
2128
|
-
MozOutlineColor?: import("csstype").Property.OutlineColor | undefined;
|
|
2129
|
-
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | undefined;
|
|
2130
|
-
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined;
|
|
2131
|
-
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined;
|
|
2132
|
-
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined;
|
|
2133
|
-
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined;
|
|
2134
|
-
MozOutlineStyle?: import("csstype").Property.OutlineStyle | undefined;
|
|
2135
|
-
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | undefined;
|
|
2136
|
-
MozTextAlignLast?: import("csstype").Property.TextAlignLast | undefined;
|
|
2137
|
-
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | undefined;
|
|
2138
|
-
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | undefined;
|
|
2139
|
-
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | undefined;
|
|
1345
|
+
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | undefined;
|
|
1346
|
+
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | undefined;
|
|
1347
|
+
MozTransitionProperty?: import("csstype").Property.TransitionProperty | undefined;
|
|
1348
|
+
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | undefined;
|
|
2140
1349
|
MozUserInput?: import("csstype").Property.MozUserInput | undefined;
|
|
2141
1350
|
msImeMode?: import("csstype").Property.ImeMode | undefined;
|
|
2142
1351
|
OAnimation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
@@ -2169,8 +1378,6 @@ export declare const M4LAreasViewer: (theme: Theme) => {
|
|
|
2169
1378
|
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | undefined;
|
|
2170
1379
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | undefined;
|
|
2171
1380
|
WebkitBoxPack?: import("csstype").Property.BoxPack | undefined;
|
|
2172
|
-
WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | undefined;
|
|
2173
|
-
WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | undefined;
|
|
2174
1381
|
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | undefined;
|
|
2175
1382
|
baselineShift?: import("csstype").Property.BaselineShift<string | number> | undefined;
|
|
2176
1383
|
clipRule?: import("csstype").Property.ClipRule | undefined;
|