@stylexjs/stylex 0.2.0-beta.19 → 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.
- package/lib/StyleXCSSTypes.d.ts +396 -9
- package/lib/StyleXCSSTypes.js.flow +397 -391
- package/lib/StyleXTypes.d.ts +156 -100
- package/lib/StyleXTypes.js.flow +125 -88
- package/lib/native/CSSCustomPropertyValue.d.ts +14 -2
- package/lib/native/CSSCustomPropertyValue.js +12 -10
- package/lib/native/CSSCustomPropertyValue.js.flow +14 -2
- package/lib/native/CSSLengthUnitValue.d.ts +3 -7
- package/lib/native/CSSLengthUnitValue.js +8 -2
- package/lib/native/CSSLengthUnitValue.js.flow +4 -7
- package/lib/native/SpreadOptions.d.ts +18 -0
- package/lib/native/SpreadOptions.js +1 -0
- package/lib/native/SpreadOptions.js.flow +18 -0
- package/lib/native/__tests__/__snapshots__/stylex-css-var-test.js.snap +48 -0
- package/lib/native/__tests__/__snapshots__/stylex-test.js.snap +570 -51
- package/lib/native/__tests__/stylex-css-var-test.js +148 -0
- package/lib/native/__tests__/stylex-test.js +325 -32
- package/lib/native/fixContentBox.d.ts +11 -0
- package/lib/native/fixContentBox.js +59 -0
- package/lib/native/fixContentBox.js.flow +11 -0
- package/lib/native/stylex.d.ts +3 -13
- package/lib/native/stylex.js +173 -73
- package/lib/native/stylex.js.flow +3 -10
- package/lib/stylex.d.ts +54 -1
- package/lib/stylex.js +48 -4
- package/lib/stylex.js.flow +52 -2
- package/package.json +3 -3
|
@@ -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
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
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
|
}>;
|