@stylexjs/stylex 0.2.0-beta.20 → 0.2.0-beta.21

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.
@@ -861,400 +861,406 @@ type top = number | string;
861
861
  type OptionalArray<T> = Array<T> | T;
862
862
 
863
863
  export type SupportedVendorSpecificCSSProperties = $ReadOnly<{
864
- MozOsxFontSmoothing?: 'grayscale',
865
- WebkitAppearance?: appearance,
866
- WebkitFontSmoothing?: 'antialiased',
867
- WebkitTapHighlightColor?: color,
864
+ MozOsxFontSmoothing?: null | 'grayscale',
865
+ WebkitAppearance?: null | appearance,
866
+ WebkitFontSmoothing?: null | 'antialiased',
867
+ WebkitTapHighlightColor?: null | color,
868
868
  }>;
869
869
 
870
870
  export type CSSProperties = $ReadOnly<{
871
871
  // NOTE: adding a non-CSS property here for support themes in Stylex.
872
- theme?: string,
872
+ theme?: null | string,
873
873
 
874
- ...$Exact<SupportedVendorSpecificCSSProperties>,
875
- alignContent?: alignContent,
876
- alignItems?: alignItems,
877
- alignSelf?: alignSelf,
878
- alignmentBaseline?: alignmentBaseline,
879
- all?: all,
880
- animationDelay?: OptionalArray<animationDelay>,
881
- animationDirection?: OptionalArray<animationDirection>,
882
- animationDuration?: OptionalArray<animationDuration>,
883
- animationFillMode?: OptionalArray<animationFillMode>,
884
- animationIterationCount?: OptionalArray<animationIterationCount>,
885
- animationName?: OptionalArray<animationName>,
886
- animationPlayState?: OptionalArray<animationPlayState>,
887
- animationTimingFunction?: OptionalArray<animationTimingFunction>,
888
- appearance?: appearance,
889
- backdropFilter?: backdropFilter,
890
- backfaceVisibility?: backfaceVisibility,
891
- backgroundAttachment?: OptionalArray<backgroundAttachment>,
892
- backgroundBlendMode?: OptionalArray<backgroundBlendMode>,
893
- backgroundClip?: OptionalArray<backgroundClip>,
894
- backgroundColor?: backgroundColor,
895
- backgroundImage?: OptionalArray<backgroundImage>,
896
- backgroundOrigin?: OptionalArray<backgroundOrigin>,
897
- backgroundPosition?: OptionalArray<backgroundPosition>,
898
- backgroundPositionX?: OptionalArray<backgroundPositionX>,
899
- backgroundPositionY?: OptionalArray<backgroundPositionY>,
900
- backgroundRepeat?: OptionalArray<backgroundRepeat>,
901
- backgroundSize?: OptionalArray<backgroundSize>,
902
- baselineShift?: baselineShift,
903
- behavior?: behavior,
904
- blockSize?: blockSize,
905
- border?: border,
906
- borderBlockEnd?: borderBlockEnd,
907
- borderBlockEndColor?: borderBlockEndColor,
908
- borderBlockEndStyle?: borderBlockEndStyle,
909
- borderBlockEndWidth?: borderBlockEndWidth,
910
- borderBlockStart?: borderBlockStart,
911
- borderBlockStartColor?: borderBlockStartColor,
912
- borderBlockStartStyle?: borderBlockStartStyle,
913
- borderBlockStartWidth?: borderBlockStartWidth,
914
- borderBottom?: border,
915
- borderBottomColor?: color,
916
- borderBottomEndRadius?: borderBottomRightRadius,
917
- borderBottomLeftRadius?: borderBottomLeftRadius,
918
- borderBottomRightRadius?: borderBottomRightRadius,
919
- borderBottomStartRadius?: borderBottomLeftRadius,
920
- borderBottomStyle?: borderBottomStyle,
921
- borderBottomWidth?: borderBottomWidth,
922
- borderCollapse?: borderCollapse,
923
- borderColor?: borderColor,
924
- borderEnd?: border,
925
- borderEndColor?: borderRightColor,
926
- borderEndStyle?: borderRightStyle,
927
- borderEndWidth?: borderRightWidth,
928
- borderImage?: borderImage,
929
- borderImageOutset?: borderImageOutset,
930
- borderImageRepeat?: borderImageRepeat,
931
- borderImageSlice?: borderImageSlice,
932
- borderImageSource?: borderImageSource,
933
- borderImageWidth?: borderImageWidth,
934
- borderInlineEnd?: borderInlineEnd,
935
- borderInlineEndColor?: borderInlineEndColor,
936
- borderInlineEndStyle?: borderInlineEndStyle,
937
- borderInlineEndWidth?: borderInlineEndWidth,
938
- borderInlineStart?: borderInlineStart,
939
- borderInlineStartColor?: borderInlineStartColor,
940
- borderInlineStartStyle?: borderInlineStartStyle,
941
- borderInlineStartWidth?: borderInlineStartWidth,
942
- borderLeft?: border,
943
- borderLeftColor?: borderLeftColor,
944
- borderLeftStyle?: borderLeftStyle,
945
- borderLeftWidth?: borderLeftWidth,
946
- borderRadius?: borderRadius,
947
- borderRight?: border,
948
- borderRightColor?: borderRightColor,
949
- borderRightStyle?: borderRightStyle,
950
- borderRightWidth?: borderRightWidth,
951
- borderSpacing?: borderSpacing,
952
- borderStart?: border,
953
- borderStartColor?: borderLeftColor,
954
- borderStartStyle?: borderLeftStyle,
955
- borderStartWidth?: borderLeftWidth,
956
- borderStyle?: borderStyle,
957
- borderTop?: border,
958
- borderTopColor?: color,
959
- borderTopEndRadius?: borderTopRightRadius,
960
- borderTopLeftRadius?: borderTopLeftRadius,
961
- borderTopRightRadius?: borderTopRightRadius,
962
- borderTopStartRadius?: borderTopLeftRadius,
963
- borderTopStyle?: borderTopStyle,
964
- borderTopWidth?: borderTopWidth,
965
- borderWidth?: borderWidth,
966
- bottom?: number | string,
967
- boxAlign?: boxAlign,
968
- boxDecorationBreak?: boxDecorationBreak,
969
- boxDirection?: boxDirection,
970
- boxFlex?: boxFlex,
971
- boxFlexGroup?: boxFlexGroup,
972
- boxLines?: boxLines,
973
- boxOrdinalGroup?: boxOrdinalGroup,
974
- boxOrient?: boxOrient,
975
- boxShadow?: OptionalArray<boxShadow>,
976
- boxSizing?: boxSizing,
977
- boxSuppress?: boxSuppress,
978
- breakAfter?: breakAfter,
979
- breakBefore?: breakBefore,
980
- breakInside?: breakInside,
981
- captionSide?: captionSide,
982
- clear?: clear,
983
- clip?: clip,
984
- clipPath?: clipPath,
985
- clipRule?: clipRule,
986
- color?: color,
987
- columnCount?: columnCount,
988
- columnFill?: columnFill,
989
- columnGap?: columnGap,
990
- columnRule?: columnRule,
991
- columnRuleColor?: columnRuleColor,
992
- columnRuleStyle?: columnRuleStyle,
993
- columnRuleWidth?: columnRuleWidth,
994
- columnSpan?: columnSpan,
995
- columnWidth?: columnWidth,
996
- columns?: columns,
997
- contain?: contain,
998
- content?: content,
999
- counterIncrement?: counterIncrement,
1000
- counterReset?: counterReset,
1001
- cue?: cue,
1002
- cueAfter?: cueAfter,
1003
- cueBefore?: cueBefore,
1004
- cursor?: OptionalArray<cursor>,
1005
- direction?: direction,
1006
- display?: display,
1007
- displayInside?: displayInside,
1008
- displayList?: displayList,
1009
- displayOutside?: displayOutside,
1010
- dominantBaseline?: dominantBaseline,
1011
- emptyCells?: emptyCells,
1012
- end?: number | string,
1013
- fill?: fill,
1014
- fillOpacity?: fillOpacity,
1015
- fillRule?: fillRule,
1016
- filter?: filter,
1017
- flex?: flex,
1018
- flexBasis?: flexBasis,
1019
- flexDirection?: flexDirection,
1020
- flexFlow?: flexFlow,
1021
- flexGrow?: flexGrow,
1022
- flexShrink?: flexShrink,
1023
- flexWrap?: flexWrap,
1024
- float?: float,
1025
- fontFamily?: fontFamily,
1026
- fontFeatureSettings?: fontFeatureSettings,
1027
- fontKerning?: fontKerning,
1028
- fontLanguageOverride?: fontLanguageOverride,
1029
- fontSize?: fontSize,
1030
- fontSizeAdjust?: fontSizeAdjust,
1031
- fontStretch?: fontStretch,
1032
- fontStyle?: fontStyle,
1033
- fontSynthesis?: fontSynthesis,
1034
- fontVariant?: fontVariant,
1035
- fontVariantAlternates?: fontVariantAlternates,
1036
- fontVariantCaps?: fontVariantCaps,
1037
- fontVariantEastAsian?: fontVariantEastAsian,
1038
- fontVariantLigatures?: fontVariantLigatures,
1039
- fontVariantNumeric?: fontVariantNumeric,
1040
- fontVariantPosition?: fontVariantPosition,
1041
- fontWeight?: fontWeight,
1042
- gap?: gap,
1043
- glyphOrientationHorizontal?: glyphOrientationHorizontal,
1044
- glyphOrientationVertical?: glyphOrientationVertical,
1045
- grid?: grid,
1046
- gridArea?: gridArea,
1047
- gridAutoColumns?: gridAutoColumns,
1048
- gridAutoFlow?: gridAutoFlow,
1049
- gridAutoRows?: gridAutoRows,
1050
- gridColumn?: gridColumn,
1051
- gridColumnEnd?: gridColumnEnd,
1052
- gridColumnGap?: gridColumnGap,
1053
- gridColumnStart?: gridColumnStart,
1054
- gridGap?: gridGap,
1055
- gridRow?: gridRow,
1056
- gridRowEnd?: gridRowEnd,
1057
- gridRowGap?: gridRowGap,
1058
- gridRowStart?: gridRowStart,
1059
- gridTemplate?: gridTemplate,
1060
- gridTemplateAreas?: gridTemplateAreas,
1061
- gridTemplateColumns?: gridTemplateColumns,
1062
- gridTemplateRows?: gridTemplateRows,
1063
- height?: number | string,
1064
- hyphens?: hyphens,
1065
- imageOrientation?: imageOrientation,
1066
- imageRendering?: imageRendering,
1067
- imageResolution?: imageResolution,
1068
- imeMode?: imeMode,
1069
- initialLetter?: initialLetter,
1070
- initialLetterAlign?: initialLetterAlign,
1071
- inlineSize?: inlineSize,
1072
- isolation?: isolation,
1073
- justifyContent?: justifyContent,
1074
- justifyItems?: justifyItems,
1075
- justifySelf?: justifySelf,
1076
- kerning?: kerning,
1077
- left?: number | string,
1078
- letterSpacing?: letterSpacing,
1079
- lineBreak?: lineBreak,
1080
- lineHeight?: lineHeight,
1081
- listStyle?: listStyle,
1082
- listStyleImage?: listStyleImage,
1083
- listStylePosition?: listStylePosition,
1084
- listStyleType?: listStyleType,
1085
- margin?: margin,
1086
- marginBlockEnd?: marginBlockEnd,
1087
- marginBlockStart?: marginBlockStart,
1088
- marginBottom?: marginBottom,
1089
- marginEnd?: marginRight,
1090
- marginHorizontal?: marginLeft,
1091
- marginInlineEnd?: marginInlineEnd,
1092
- marginInlineStart?: marginInlineStart,
1093
- marginLeft?: marginLeft,
1094
- marginRight?: marginRight,
1095
- marginStart?: marginLeft,
1096
- marginTop?: marginTop,
1097
- marginVertical?: marginTop,
1098
- marker?: marker,
1099
- markerEnd?: markerEnd,
1100
- markerMid?: markerMid,
1101
- markerOffset?: markerOffset,
1102
- markerStart?: markerStart,
1103
- mask?: mask,
1104
- maskClip?: maskClip,
1105
- maskComposite?: maskComposite,
1106
- maskImage?: maskImage,
1107
- maskMode?: maskMode,
1108
- maskOrigin?: maskOrigin,
1109
- maskPosition?: maskPosition,
1110
- maskRepeat?: maskRepeat,
1111
- maskSize?: maskSize,
1112
- maskType?: maskType,
1113
- maxBlockSize?: maxBlockSize,
1114
- maxHeight?: maxHeight,
1115
- maxInlineSize?: maxInlineSize,
1116
- maxWidth?: maxWidth,
1117
- minBlockSize?: minBlockSize,
1118
- minHeight?: minHeight,
1119
- minInlineSize?: minInlineSize,
1120
- minWidth?: minWidth,
1121
- mixBlendMode?: mixBlendMode,
1122
- motion?: motion,
1123
- motionOffset?: motionOffset,
1124
- motionPath?: motionPath,
1125
- motionRotation?: motionRotation,
1126
- MsOverflowStyle?: MsOverflowStyle,
1127
- objectFit?: objectFit,
1128
- objectPosition?: objectPosition,
1129
- offsetBlockEnd?: offsetBlockEnd,
1130
- offsetBlockStart?: offsetBlockStart,
1131
- offsetInlineEnd?: offsetInlineEnd,
1132
- offsetInlineStart?: offsetInlineStart,
1133
- opacity?: opacity,
1134
- order?: order,
1135
- orphans?: orphans,
1136
- outline?: outline,
1137
- outlineColor?: outlineColor,
1138
- outlineOffset?: outlineOffset,
1139
- outlineStyle?: outlineStyle,
1140
- outlineWidth?: outlineWidth,
1141
- overflow?: overflow,
1142
- overflowAnchor?: overflowAnchor,
1143
- overflowClipBox?: overflowClipBox,
1144
- overflowWrap?: overflowWrap,
1145
- overflowX?: overflowX,
1146
- overflowY?: overflowY,
1147
- overscrollBehavior?: overscrollBehavior,
1148
- overscrollBehaviorX?: overscrollBehaviorX,
1149
- overscrollBehaviorY?: overscrollBehaviorY,
1150
- padding?: padding,
1151
- paddingBlockEnd?: paddingBlockEnd,
1152
- paddingBlockStart?: paddingBlockStart,
1153
- paddingBottom?: paddingBottom,
1154
- paddingEnd?: paddingBottom,
1155
- paddingHorizontal?: paddingLeft,
1156
- paddingLeft?: paddingLeft,
1157
- paddingRight?: paddingRight,
1158
- paddingStart?: paddingLeft,
1159
- paddingTop?: paddingTop,
1160
- paddingVertical?: paddingTop,
1161
- pageBreakAfter?: pageBreakAfter,
1162
- pageBreakBefore?: pageBreakBefore,
1163
- pageBreakInside?: pageBreakInside,
1164
- pause?: pause,
1165
- pauseAfter?: pauseAfter,
1166
- pauseBefore?: pauseBefore,
1167
- perspective?: perspective,
1168
- perspectiveOrigin?: perspectiveOrigin,
1169
- pointerEvents?: pointerEvents,
1170
- position?: position,
1171
- quotes?: quotes,
1172
- resize?: resize,
1173
- rest?: rest,
1174
- restAfter?: restAfter,
1175
- restBefore?: restBefore,
1176
- right?: number | string,
1177
- rowGap?: rowGap,
1178
- rubyAlign?: rubyAlign,
1179
- rubyMerge?: rubyMerge,
1180
- rubyPosition?: rubyPosition,
1181
- scrollbarWidth?: string | number,
1182
- scrollBehavior?: scrollBehavior,
1183
- scrollPadding?: number,
1184
- scrollPaddingTop?: number,
1185
- scrollPaddingBottom?: number,
1186
- scrollSnapAlign?: scrollSnapAlign,
1187
- scrollSnapType?: scrollSnapType,
1188
- shapeImageThreshold?: shapeImageThreshold,
1189
- shapeMargin?: shapeMargin,
1190
- shapeOutside?: shapeOutside,
1191
- shapeRendering?: shapeRendering,
1192
- speak?: speak,
1193
- speakAs?: speakAs,
1194
- src?: src,
1195
- start?: number | string,
1196
- stroke?: stroke,
1197
- strokeDasharray?: strokeDasharray,
1198
- strokeDashoffset?: strokeDashoffset,
1199
- strokeLinecap?: strokeLinecap,
1200
- strokeLinejoin?: strokeLinejoin,
1201
- strokeMiterlimit?: strokeMiterlimit,
1202
- strokeOpacity?: strokeOpacity,
1203
- strokeWidth?: strokeWidth,
1204
- tabSize?: tabSize,
1205
- tableLayout?: tableLayout,
1206
- textAlign?: textAlign,
1207
- textAlignLast?: textAlignLast,
1208
- textAnchor?: textAnchor,
1209
- textCombineUpright?: textCombineUpright,
1210
- textDecoration?: textDecoration,
1211
- textDecorationColor?: textDecorationColor,
1212
- textDecorationLine?: textDecorationLine,
1213
- textDecorationSkip?: textDecorationSkip,
1214
- textDecorationStyle?: textDecorationStyle,
1215
- textEmphasis?: textEmphasis,
1216
- textEmphasisColor?: textEmphasisColor,
1217
- textEmphasisPosition?: textEmphasisPosition,
1218
- textEmphasisStyle?: textEmphasisStyle,
1219
- textIndent?: textIndent,
1220
- textOrientation?: textOrientation,
1221
- textOverflow?: textOverflow,
1222
- textRendering?: textRendering,
1223
- textShadow?: OptionalArray<textShadow>,
1224
- textSizeAdjust?: textSizeAdjust,
1225
- textTransform?: textTransform,
1226
- textUnderlinePosition?: textUnderlinePosition,
1227
- top?: top,
1228
- touchAction?: touchAction,
1229
- transform?: transform,
1230
- transformBox?: transformBox,
1231
- transformOrigin?: transformOrigin,
1232
- transformStyle?: transformStyle,
1233
- transition?: OptionalArray<transition>,
1234
- transitionDelay?: OptionalArray<transitionDelay>,
1235
- transitionDuration?: OptionalArray<transitionDuration>,
1236
- transitionProperty?: OptionalArray<transitionProperty>,
1237
- transitionTimingFunction?: OptionalArray<transitionTimingFunction>,
1238
- unicodeBidi?: unicodeBidi,
1239
- unicodeRange?: unicodeRange,
1240
- userSelect?: userSelect,
1241
- verticalAlign?: verticalAlign,
1242
- visibility?: visibility,
1243
- voiceBalance?: voiceBalance,
1244
- voiceDuration?: voiceDuration,
1245
- voiceFamily?: voiceFamily,
1246
- voicePitch?: voicePitch,
1247
- voiceRange?: voiceRange,
1248
- voiceRate?: voiceRate,
1249
- voiceStress?: voiceStress,
1250
- voiceVolume?: voiceVolume,
1251
- whiteSpace?: whiteSpace,
1252
- widows?: widows,
1253
- width?: width,
1254
- willChange?: willChange,
1255
- wordBreak?: wordBreak,
1256
- wordSpacing?: wordSpacing,
1257
- wordWrap?: wordWrap,
1258
- writingMode?: writingMode,
1259
- zIndex?: zIndex,
874
+ // ...$Exact<SupportedVendorSpecificCSSProperties>, for Typescript compatibility
875
+ MozOsxFontSmoothing?: null | 'grayscale',
876
+ WebkitAppearance?: null | appearance,
877
+ WebkitFontSmoothing?: null | 'antialiased',
878
+ WebkitTapHighlightColor?: null | color,
879
+ // ENDOF ...$Exact<SupportedVendorSpecificCSSProperties>,
880
+
881
+ alignContent?: null | alignContent,
882
+ alignItems?: null | alignItems,
883
+ alignSelf?: null | alignSelf,
884
+ alignmentBaseline?: null | alignmentBaseline,
885
+ all?: null | all,
886
+ animationDelay?: null | OptionalArray<animationDelay>,
887
+ animationDirection?: null | OptionalArray<animationDirection>,
888
+ animationDuration?: null | OptionalArray<animationDuration>,
889
+ animationFillMode?: null | OptionalArray<animationFillMode>,
890
+ animationIterationCount?: null | OptionalArray<animationIterationCount>,
891
+ animationName?: null | OptionalArray<animationName>,
892
+ animationPlayState?: null | OptionalArray<animationPlayState>,
893
+ animationTimingFunction?: null | OptionalArray<animationTimingFunction>,
894
+ appearance?: null | appearance,
895
+ backdropFilter?: null | backdropFilter,
896
+ backfaceVisibility?: null | backfaceVisibility,
897
+ backgroundAttachment?: null | OptionalArray<backgroundAttachment>,
898
+ backgroundBlendMode?: null | OptionalArray<backgroundBlendMode>,
899
+ backgroundClip?: null | OptionalArray<backgroundClip>,
900
+ backgroundColor?: null | backgroundColor,
901
+ backgroundImage?: null | OptionalArray<backgroundImage>,
902
+ backgroundOrigin?: null | OptionalArray<backgroundOrigin>,
903
+ backgroundPosition?: null | OptionalArray<backgroundPosition>,
904
+ backgroundPositionX?: null | OptionalArray<backgroundPositionX>,
905
+ backgroundPositionY?: null | OptionalArray<backgroundPositionY>,
906
+ backgroundRepeat?: null | OptionalArray<backgroundRepeat>,
907
+ backgroundSize?: null | OptionalArray<backgroundSize>,
908
+ baselineShift?: null | baselineShift,
909
+ behavior?: null | behavior,
910
+ blockSize?: null | blockSize,
911
+ border?: null | border,
912
+ borderBlockEnd?: null | borderBlockEnd,
913
+ borderBlockEndColor?: null | borderBlockEndColor,
914
+ borderBlockEndStyle?: null | borderBlockEndStyle,
915
+ borderBlockEndWidth?: null | borderBlockEndWidth,
916
+ borderBlockStart?: null | borderBlockStart,
917
+ borderBlockStartColor?: null | borderBlockStartColor,
918
+ borderBlockStartStyle?: null | borderBlockStartStyle,
919
+ borderBlockStartWidth?: null | borderBlockStartWidth,
920
+ borderBottom?: null | border,
921
+ borderBottomColor?: null | color,
922
+ borderBottomEndRadius?: null | borderBottomRightRadius,
923
+ borderBottomLeftRadius?: null | borderBottomLeftRadius,
924
+ borderBottomRightRadius?: null | borderBottomRightRadius,
925
+ borderBottomStartRadius?: null | borderBottomLeftRadius,
926
+ borderBottomStyle?: null | borderBottomStyle,
927
+ borderBottomWidth?: null | borderBottomWidth,
928
+ borderCollapse?: null | borderCollapse,
929
+ borderColor?: null | borderColor,
930
+ borderEnd?: null | border,
931
+ borderEndColor?: null | borderRightColor,
932
+ borderEndStyle?: null | borderRightStyle,
933
+ borderEndWidth?: null | borderRightWidth,
934
+ borderImage?: null | borderImage,
935
+ borderImageOutset?: null | borderImageOutset,
936
+ borderImageRepeat?: null | borderImageRepeat,
937
+ borderImageSlice?: null | borderImageSlice,
938
+ borderImageSource?: null | borderImageSource,
939
+ borderImageWidth?: null | borderImageWidth,
940
+ borderInlineEnd?: null | borderInlineEnd,
941
+ borderInlineEndColor?: null | borderInlineEndColor,
942
+ borderInlineEndStyle?: null | borderInlineEndStyle,
943
+ borderInlineEndWidth?: null | borderInlineEndWidth,
944
+ borderInlineStart?: null | borderInlineStart,
945
+ borderInlineStartColor?: null | borderInlineStartColor,
946
+ borderInlineStartStyle?: null | borderInlineStartStyle,
947
+ borderInlineStartWidth?: null | borderInlineStartWidth,
948
+ borderLeft?: null | border,
949
+ borderLeftColor?: null | borderLeftColor,
950
+ borderLeftStyle?: null | borderLeftStyle,
951
+ borderLeftWidth?: null | borderLeftWidth,
952
+ borderRadius?: null | borderRadius,
953
+ borderRight?: null | border,
954
+ borderRightColor?: null | borderRightColor,
955
+ borderRightStyle?: null | borderRightStyle,
956
+ borderRightWidth?: null | borderRightWidth,
957
+ borderSpacing?: null | borderSpacing,
958
+ borderStart?: null | border,
959
+ borderStartColor?: null | borderLeftColor,
960
+ borderStartStyle?: null | borderLeftStyle,
961
+ borderStartWidth?: null | borderLeftWidth,
962
+ borderStyle?: null | borderStyle,
963
+ borderTop?: null | border,
964
+ borderTopColor?: null | color,
965
+ borderTopEndRadius?: null | borderTopRightRadius,
966
+ borderTopLeftRadius?: null | borderTopLeftRadius,
967
+ borderTopRightRadius?: null | borderTopRightRadius,
968
+ borderTopStartRadius?: null | borderTopLeftRadius,
969
+ borderTopStyle?: null | borderTopStyle,
970
+ borderTopWidth?: null | borderTopWidth,
971
+ borderWidth?: null | borderWidth,
972
+ bottom?: null | number | string,
973
+ boxAlign?: null | boxAlign,
974
+ boxDecorationBreak?: null | boxDecorationBreak,
975
+ boxDirection?: null | boxDirection,
976
+ boxFlex?: null | boxFlex,
977
+ boxFlexGroup?: null | boxFlexGroup,
978
+ boxLines?: null | boxLines,
979
+ boxOrdinalGroup?: null | boxOrdinalGroup,
980
+ boxOrient?: null | boxOrient,
981
+ boxShadow?: null | OptionalArray<boxShadow>,
982
+ boxSizing?: null | boxSizing,
983
+ boxSuppress?: null | boxSuppress,
984
+ breakAfter?: null | breakAfter,
985
+ breakBefore?: null | breakBefore,
986
+ breakInside?: null | breakInside,
987
+ captionSide?: null | captionSide,
988
+ clear?: null | clear,
989
+ clip?: null | clip,
990
+ clipPath?: null | clipPath,
991
+ clipRule?: null | clipRule,
992
+ color?: null | color,
993
+ columnCount?: null | columnCount,
994
+ columnFill?: null | columnFill,
995
+ columnGap?: null | columnGap,
996
+ columnRule?: null | columnRule,
997
+ columnRuleColor?: null | columnRuleColor,
998
+ columnRuleStyle?: null | columnRuleStyle,
999
+ columnRuleWidth?: null | columnRuleWidth,
1000
+ columnSpan?: null | columnSpan,
1001
+ columnWidth?: null | columnWidth,
1002
+ columns?: null | columns,
1003
+ contain?: null | contain,
1004
+ content?: null | content,
1005
+ counterIncrement?: null | counterIncrement,
1006
+ counterReset?: null | counterReset,
1007
+ cue?: null | cue,
1008
+ cueAfter?: null | cueAfter,
1009
+ cueBefore?: null | cueBefore,
1010
+ cursor?: null | OptionalArray<cursor>,
1011
+ direction?: null | direction,
1012
+ display?: null | display,
1013
+ displayInside?: null | displayInside,
1014
+ displayList?: null | displayList,
1015
+ displayOutside?: null | displayOutside,
1016
+ dominantBaseline?: null | dominantBaseline,
1017
+ emptyCells?: null | emptyCells,
1018
+ end?: null | number | string,
1019
+ fill?: null | fill,
1020
+ fillOpacity?: null | fillOpacity,
1021
+ fillRule?: null | fillRule,
1022
+ filter?: null | filter,
1023
+ flex?: null | flex,
1024
+ flexBasis?: null | flexBasis,
1025
+ flexDirection?: null | flexDirection,
1026
+ flexFlow?: null | flexFlow,
1027
+ flexGrow?: null | flexGrow,
1028
+ flexShrink?: null | flexShrink,
1029
+ flexWrap?: null | flexWrap,
1030
+ float?: null | float,
1031
+ fontFamily?: null | fontFamily,
1032
+ fontFeatureSettings?: null | fontFeatureSettings,
1033
+ fontKerning?: null | fontKerning,
1034
+ fontLanguageOverride?: null | fontLanguageOverride,
1035
+ fontSize?: null | fontSize,
1036
+ fontSizeAdjust?: null | fontSizeAdjust,
1037
+ fontStretch?: null | fontStretch,
1038
+ fontStyle?: null | fontStyle,
1039
+ fontSynthesis?: null | fontSynthesis,
1040
+ fontVariant?: null | fontVariant,
1041
+ fontVariantAlternates?: null | fontVariantAlternates,
1042
+ fontVariantCaps?: null | fontVariantCaps,
1043
+ fontVariantEastAsian?: null | fontVariantEastAsian,
1044
+ fontVariantLigatures?: null | fontVariantLigatures,
1045
+ fontVariantNumeric?: null | fontVariantNumeric,
1046
+ fontVariantPosition?: null | fontVariantPosition,
1047
+ fontWeight?: null | fontWeight,
1048
+ gap?: null | gap,
1049
+ glyphOrientationHorizontal?: null | glyphOrientationHorizontal,
1050
+ glyphOrientationVertical?: null | glyphOrientationVertical,
1051
+ grid?: null | grid,
1052
+ gridArea?: null | gridArea,
1053
+ gridAutoColumns?: null | gridAutoColumns,
1054
+ gridAutoFlow?: null | gridAutoFlow,
1055
+ gridAutoRows?: null | gridAutoRows,
1056
+ gridColumn?: null | gridColumn,
1057
+ gridColumnEnd?: null | gridColumnEnd,
1058
+ gridColumnGap?: null | gridColumnGap,
1059
+ gridColumnStart?: null | gridColumnStart,
1060
+ gridGap?: null | gridGap,
1061
+ gridRow?: null | gridRow,
1062
+ gridRowEnd?: null | gridRowEnd,
1063
+ gridRowGap?: null | gridRowGap,
1064
+ gridRowStart?: null | gridRowStart,
1065
+ gridTemplate?: null | gridTemplate,
1066
+ gridTemplateAreas?: null | gridTemplateAreas,
1067
+ gridTemplateColumns?: null | gridTemplateColumns,
1068
+ gridTemplateRows?: null | gridTemplateRows,
1069
+ height?: null | number | string,
1070
+ hyphens?: null | hyphens,
1071
+ imageOrientation?: null | imageOrientation,
1072
+ imageRendering?: null | imageRendering,
1073
+ imageResolution?: null | imageResolution,
1074
+ imeMode?: null | imeMode,
1075
+ initialLetter?: null | initialLetter,
1076
+ initialLetterAlign?: null | initialLetterAlign,
1077
+ inlineSize?: null | inlineSize,
1078
+ isolation?: null | isolation,
1079
+ justifyContent?: null | justifyContent,
1080
+ justifyItems?: null | justifyItems,
1081
+ justifySelf?: null | justifySelf,
1082
+ kerning?: null | kerning,
1083
+ left?: null | number | string,
1084
+ letterSpacing?: null | letterSpacing,
1085
+ lineBreak?: null | lineBreak,
1086
+ lineHeight?: null | lineHeight,
1087
+ listStyle?: null | listStyle,
1088
+ listStyleImage?: null | listStyleImage,
1089
+ listStylePosition?: null | listStylePosition,
1090
+ listStyleType?: null | listStyleType,
1091
+ margin?: null | margin,
1092
+ marginBlockEnd?: null | marginBlockEnd,
1093
+ marginBlockStart?: null | marginBlockStart,
1094
+ marginBottom?: null | marginBottom,
1095
+ marginEnd?: null | marginRight,
1096
+ marginHorizontal?: null | marginLeft,
1097
+ marginInlineEnd?: null | marginInlineEnd,
1098
+ marginInlineStart?: null | marginInlineStart,
1099
+ marginLeft?: null | marginLeft,
1100
+ marginRight?: null | marginRight,
1101
+ marginStart?: null | marginLeft,
1102
+ marginTop?: null | marginTop,
1103
+ marginVertical?: null | marginTop,
1104
+ marker?: null | marker,
1105
+ markerEnd?: null | markerEnd,
1106
+ markerMid?: null | markerMid,
1107
+ markerOffset?: null | markerOffset,
1108
+ markerStart?: null | markerStart,
1109
+ mask?: null | mask,
1110
+ maskClip?: null | maskClip,
1111
+ maskComposite?: null | maskComposite,
1112
+ maskImage?: null | maskImage,
1113
+ maskMode?: null | maskMode,
1114
+ maskOrigin?: null | maskOrigin,
1115
+ maskPosition?: null | maskPosition,
1116
+ maskRepeat?: null | maskRepeat,
1117
+ maskSize?: null | maskSize,
1118
+ maskType?: null | maskType,
1119
+ maxBlockSize?: null | maxBlockSize,
1120
+ maxHeight?: null | maxHeight,
1121
+ maxInlineSize?: null | maxInlineSize,
1122
+ maxWidth?: null | maxWidth,
1123
+ minBlockSize?: null | minBlockSize,
1124
+ minHeight?: null | minHeight,
1125
+ minInlineSize?: null | minInlineSize,
1126
+ minWidth?: null | minWidth,
1127
+ mixBlendMode?: null | mixBlendMode,
1128
+ motion?: null | motion,
1129
+ motionOffset?: null | motionOffset,
1130
+ motionPath?: null | motionPath,
1131
+ motionRotation?: null | motionRotation,
1132
+ MsOverflowStyle?: null | MsOverflowStyle,
1133
+ objectFit?: null | objectFit,
1134
+ objectPosition?: null | objectPosition,
1135
+ offsetBlockEnd?: null | offsetBlockEnd,
1136
+ offsetBlockStart?: null | offsetBlockStart,
1137
+ offsetInlineEnd?: null | offsetInlineEnd,
1138
+ offsetInlineStart?: null | offsetInlineStart,
1139
+ opacity?: null | opacity,
1140
+ order?: null | order,
1141
+ orphans?: null | orphans,
1142
+ outline?: null | outline,
1143
+ outlineColor?: null | outlineColor,
1144
+ outlineOffset?: null | outlineOffset,
1145
+ outlineStyle?: null | outlineStyle,
1146
+ outlineWidth?: null | outlineWidth,
1147
+ overflow?: null | overflow,
1148
+ overflowAnchor?: null | overflowAnchor,
1149
+ overflowClipBox?: null | overflowClipBox,
1150
+ overflowWrap?: null | overflowWrap,
1151
+ overflowX?: null | overflowX,
1152
+ overflowY?: null | overflowY,
1153
+ overscrollBehavior?: null | overscrollBehavior,
1154
+ overscrollBehaviorX?: null | overscrollBehaviorX,
1155
+ overscrollBehaviorY?: null | overscrollBehaviorY,
1156
+ padding?: null | padding,
1157
+ paddingBlockEnd?: null | paddingBlockEnd,
1158
+ paddingBlockStart?: null | paddingBlockStart,
1159
+ paddingBottom?: null | paddingBottom,
1160
+ paddingEnd?: null | paddingBottom,
1161
+ paddingHorizontal?: null | paddingLeft,
1162
+ paddingLeft?: null | paddingLeft,
1163
+ paddingRight?: null | paddingRight,
1164
+ paddingStart?: null | paddingLeft,
1165
+ paddingTop?: null | paddingTop,
1166
+ paddingVertical?: null | paddingTop,
1167
+ pageBreakAfter?: null | pageBreakAfter,
1168
+ pageBreakBefore?: null | pageBreakBefore,
1169
+ pageBreakInside?: null | pageBreakInside,
1170
+ pause?: null | pause,
1171
+ pauseAfter?: null | pauseAfter,
1172
+ pauseBefore?: null | pauseBefore,
1173
+ perspective?: null | perspective,
1174
+ perspectiveOrigin?: null | perspectiveOrigin,
1175
+ pointerEvents?: null | pointerEvents,
1176
+ position?: null | position,
1177
+ quotes?: null | quotes,
1178
+ resize?: null | resize,
1179
+ rest?: null | rest,
1180
+ restAfter?: null | restAfter,
1181
+ restBefore?: null | restBefore,
1182
+ right?: null | number | string,
1183
+ rowGap?: null | rowGap,
1184
+ rubyAlign?: null | rubyAlign,
1185
+ rubyMerge?: null | rubyMerge,
1186
+ rubyPosition?: null | rubyPosition,
1187
+ scrollbarWidth?: null | string | number,
1188
+ scrollBehavior?: null | scrollBehavior,
1189
+ scrollPadding?: null | number,
1190
+ scrollPaddingTop?: null | number,
1191
+ scrollPaddingBottom?: null | number,
1192
+ scrollSnapAlign?: null | scrollSnapAlign,
1193
+ scrollSnapType?: null | scrollSnapType,
1194
+ shapeImageThreshold?: null | shapeImageThreshold,
1195
+ shapeMargin?: null | shapeMargin,
1196
+ shapeOutside?: null | shapeOutside,
1197
+ shapeRendering?: null | shapeRendering,
1198
+ speak?: null | speak,
1199
+ speakAs?: null | speakAs,
1200
+ src?: null | src,
1201
+ start?: null | number | string,
1202
+ stroke?: null | stroke,
1203
+ strokeDasharray?: null | strokeDasharray,
1204
+ strokeDashoffset?: null | strokeDashoffset,
1205
+ strokeLinecap?: null | strokeLinecap,
1206
+ strokeLinejoin?: null | strokeLinejoin,
1207
+ strokeMiterlimit?: null | strokeMiterlimit,
1208
+ strokeOpacity?: null | strokeOpacity,
1209
+ strokeWidth?: null | strokeWidth,
1210
+ tabSize?: null | tabSize,
1211
+ tableLayout?: null | tableLayout,
1212
+ textAlign?: null | textAlign,
1213
+ textAlignLast?: null | textAlignLast,
1214
+ textAnchor?: null | textAnchor,
1215
+ textCombineUpright?: null | textCombineUpright,
1216
+ textDecoration?: null | textDecoration,
1217
+ textDecorationColor?: null | textDecorationColor,
1218
+ textDecorationLine?: null | textDecorationLine,
1219
+ textDecorationSkip?: null | textDecorationSkip,
1220
+ textDecorationStyle?: null | textDecorationStyle,
1221
+ textEmphasis?: null | textEmphasis,
1222
+ textEmphasisColor?: null | textEmphasisColor,
1223
+ textEmphasisPosition?: null | textEmphasisPosition,
1224
+ textEmphasisStyle?: null | textEmphasisStyle,
1225
+ textIndent?: null | textIndent,
1226
+ textOrientation?: null | textOrientation,
1227
+ textOverflow?: null | textOverflow,
1228
+ textRendering?: null | textRendering,
1229
+ textShadow?: null | OptionalArray<textShadow>,
1230
+ textSizeAdjust?: null | textSizeAdjust,
1231
+ textTransform?: null | textTransform,
1232
+ textUnderlinePosition?: null | textUnderlinePosition,
1233
+ top?: null | top,
1234
+ touchAction?: null | touchAction,
1235
+ transform?: null | transform,
1236
+ transformBox?: null | transformBox,
1237
+ transformOrigin?: null | transformOrigin,
1238
+ transformStyle?: null | transformStyle,
1239
+ transition?: null | OptionalArray<transition>,
1240
+ transitionDelay?: null | OptionalArray<transitionDelay>,
1241
+ transitionDuration?: null | OptionalArray<transitionDuration>,
1242
+ transitionProperty?: null | OptionalArray<transitionProperty>,
1243
+ transitionTimingFunction?: null | OptionalArray<transitionTimingFunction>,
1244
+ unicodeBidi?: null | unicodeBidi,
1245
+ unicodeRange?: null | unicodeRange,
1246
+ userSelect?: null | userSelect,
1247
+ verticalAlign?: null | verticalAlign,
1248
+ visibility?: null | visibility,
1249
+ voiceBalance?: null | voiceBalance,
1250
+ voiceDuration?: null | voiceDuration,
1251
+ voiceFamily?: null | voiceFamily,
1252
+ voicePitch?: null | voicePitch,
1253
+ voiceRange?: null | voiceRange,
1254
+ voiceRate?: null | voiceRate,
1255
+ voiceStress?: null | voiceStress,
1256
+ voiceVolume?: null | voiceVolume,
1257
+ whiteSpace?: null | whiteSpace,
1258
+ widows?: null | widows,
1259
+ width?: null | width,
1260
+ willChange?: null | willChange,
1261
+ wordBreak?: null | wordBreak,
1262
+ wordSpacing?: null | wordSpacing,
1263
+ wordWrap?: null | wordWrap,
1264
+ writingMode?: null | writingMode,
1265
+ zIndex?: null | zIndex,
1260
1266
  }>;