@@ -85,14 +85,30 @@ export interface StandardLonghandProperties {
8585 borderTopStyle ?: Property . BorderTopStyle | undefined
8686 borderTopWidth ?: Property . BorderTopWidth | undefined
8787 bottom ?: Property . Bottom | undefined
88+ WebkitBoxAlign ?: Property . WebkitBoxAlign | undefined
89+ MozBoxAlign ?: Property . MozBoxAlign | undefined
8890 boxAlign ?: Property . BoxAlign | undefined
8991 boxDecorationBreak ?: Property . BoxDecorationBreak | undefined
92+ WebkitBoxDirection ?: Property . WebkitBoxDirection | undefined
93+ MozBoxDirection ?: Property . MozBoxDirection | undefined
9094 boxDirection ?: Property . BoxDirection | undefined
95+ WebkitBoxFlex ?: Property . WebkitBoxFlex | undefined
96+ MozBoxFlex ?: Property . MozBoxFlex | undefined
9197 boxFlex ?: Property . BoxFlex | undefined
98+ WebkitBoxFlexGroup ?: Property . WebkitBoxFlexGroup | undefined
99+ MozBoxFlexGroup ?: Property . MozBoxFlexGroup | undefined
92100 boxFlexGroup ?: Property . BoxFlexGroup | undefined
101+ WebkitBoxLines ?: Property . WebkitBoxLines | undefined
102+ MozBoxLines ?: Property . MozBoxLines | undefined
93103 boxLines ?: Property . BoxLines | undefined
104+ WebkitBoxOrdinalGroup ?: Property . WebkitBoxOrdinalGroup | undefined
105+ MozBoxOrdinalGroup ?: Property . MozBoxOrdinalGroup | undefined
94106 boxOrdinalGroup ?: Property . BoxOrdinalGroup | undefined
107+ WebkitBoxOrient ?: Property . WebkitBoxOrient | undefined
108+ MozBoxOrient ?: Property . MozBoxOrient | undefined
95109 boxOrient ?: Property . BoxOrient | undefined
110+ WebkitBoxPack ?: Property . WebkitBoxPack | undefined
111+ MozBoxPack ?: Property . MozBoxPack | undefined
96112 boxPack ?: Property . BoxPack | undefined
97113 boxShadow ?: Property . BoxShadow | undefined
98114 boxSizing ?: Property . BoxSizing | undefined
@@ -281,6 +297,7 @@ export interface StandardLonghandProperties {
281297 outlineWidth ?: Property . OutlineWidth | undefined
282298 overflowAnchor ?: Property . OverflowAnchor | undefined
283299 overflowBlock ?: Property . OverflowBlock | undefined
300+ MozOverflowClipBox ?: Property . MozOverflowClipBox | undefined
284301 overflowClipBox ?: Property . OverflowClipBox | undefined
285302 overflowClipMargin ?: Property . OverflowClipMargin | undefined
286303 overflowInline ?: Property . OverflowInline | undefined
@@ -1085,6 +1102,22 @@ export namespace Property {
10851102 export type BorderTopStyle = TLineStyle | Globals | ( string & { } )
10861103 export type BorderTopWidth = TLineWidth | Globals | ( string & { } )
10871104 export type Bottom = 'auto' | TLengthPercentage | Globals | ( string & { } )
1105+ export type WebkitBoxAlign =
1106+ | 'start'
1107+ | 'center'
1108+ | 'end'
1109+ | 'baseline'
1110+ | 'stretch'
1111+ | Globals
1112+ | ( string & { } )
1113+ export type MozBoxAlign =
1114+ | 'start'
1115+ | 'center'
1116+ | 'end'
1117+ | 'baseline'
1118+ | 'stretch'
1119+ | Globals
1120+ | ( string & { } )
10881121 export type BoxAlign =
10891122 | 'start'
10901123 | 'center'
@@ -1094,16 +1127,52 @@ export namespace Property {
10941127 | Globals
10951128 | ( string & { } )
10961129 export type BoxDecorationBreak = 'slice' | 'clone' | Globals | ( string & { } )
1130+ export type WebkitBoxDirection =
1131+ | 'normal'
1132+ | 'reverse'
1133+ | 'inherit'
1134+ | Globals
1135+ | ( string & { } )
1136+ export type MozBoxDirection =
1137+ | 'normal'
1138+ | 'reverse'
1139+ | 'inherit'
1140+ | Globals
1141+ | ( string & { } )
10971142 export type BoxDirection =
10981143 | 'normal'
10991144 | 'reverse'
11001145 | 'inherit'
11011146 | Globals
11021147 | ( string & { } )
1148+ export type WebkitBoxFlex = number | Globals | ( string & { } )
1149+ export type MozBoxFlex = number | Globals | ( string & { } )
11031150 export type BoxFlex = number | Globals | ( string & { } )
1151+ export type WebkitBoxFlexGroup = number | Globals | ( string & { } )
1152+ export type MozBoxFlexGroup = number | Globals | ( string & { } )
11041153 export type BoxFlexGroup = number | Globals | ( string & { } )
1154+ export type WebkitBoxLines = 'single' | 'multiple' | Globals | ( string & { } )
1155+ export type MozBoxLines = 'single' | 'multiple' | Globals | ( string & { } )
11051156 export type BoxLines = 'single' | 'multiple' | Globals | ( string & { } )
1157+ export type WebkitBoxOrdinalGroup = number | Globals | ( string & { } )
1158+ export type MozBoxOrdinalGroup = number | Globals | ( string & { } )
11061159 export type BoxOrdinalGroup = number | Globals | ( string & { } )
1160+ export type WebkitBoxOrient =
1161+ | 'horizontal'
1162+ | 'vertical'
1163+ | 'inline-axis'
1164+ | 'block-axis'
1165+ | 'inherit'
1166+ | Globals
1167+ | ( string & { } )
1168+ export type MozBoxOrient =
1169+ | 'horizontal'
1170+ | 'vertical'
1171+ | 'inline-axis'
1172+ | 'block-axis'
1173+ | 'inherit'
1174+ | Globals
1175+ | ( string & { } )
11071176 export type BoxOrient =
11081177 | 'horizontal'
11091178 | 'vertical'
@@ -1112,6 +1181,20 @@ export namespace Property {
11121181 | 'inherit'
11131182 | Globals
11141183 | ( string & { } )
1184+ export type WebkitBoxPack =
1185+ | 'start'
1186+ | 'center'
1187+ | 'end'
1188+ | 'justify'
1189+ | Globals
1190+ | ( string & { } )
1191+ export type MozBoxPack =
1192+ | 'start'
1193+ | 'center'
1194+ | 'end'
1195+ | 'justify'
1196+ | Globals
1197+ | ( string & { } )
11151198 export type BoxPack =
11161199 | 'start'
11171200 | 'center'
@@ -1834,6 +1917,11 @@ export namespace Property {
18341917 | 'auto'
18351918 | Globals
18361919 | ( string & { } )
1920+ export type MozOverflowClipBox =
1921+ | 'padding-box'
1922+ | 'content-box'
1923+ | Globals
1924+ | ( string & { } )
18371925 export type OverflowClipBox =
18381926 | 'padding-box'
18391927 | 'content-box'
0 commit comments