@@ -32,9 +32,9 @@ interface CustomExtendProperties extends BaseCSSProperties {
3232 paddingRight ?: CSSNumericValue ;
3333 paddingTop ?: CSSNumericValue ;
3434 fontSize ?: CSSNumericValue | CSSFontSizeSubValue ;
35- scale ?: CSSNumericValue | `${ number } ` | 'none' ;
36- opacity ?: CSSNumericValue | `${ number } ` ;
37- lineHeight ?: CSSNumericValue | `${ number } ` | 'normal' ;
35+ scale ?: CSSNumericValue | number | 'none' ;
36+ opacity ?: CSSNumericValue | number ;
37+ lineHeight ?: CSSNumericValue | number | 'normal' ;
3838 letterSpacing ?: CSSNumericValue | 'normal' ;
3939 wordSpacing ?: CSSNumericValue | 'normal' ;
4040 borderWidth ?: CSSNumericValue | 'thin' | 'medium' | 'thick' ;
@@ -52,10 +52,7 @@ interface CustomExtendProperties extends BaseCSSProperties {
5252 rowGap ?: CSSNumericValue ;
5353 columnGap ?: CSSNumericValue | 'normal' ;
5454 columns ?: CSSColumnsValue ;
55- gridColumn ?: string ;
56- gridRow ?: string ;
5755 color ?: CSSColorValue | CSSGlobalValue ;
58- background ?: CSSColorValue | CSSGlobalValue | 'none' ;
5956 backgroundColor ?: CSSColorValue | CSSGlobalValue ;
6057}
6158
@@ -101,7 +98,6 @@ type PseudoElementsAndClassType = {
10198} ;
10299
103100export type CustomCSSProperties = CustomExtendProperties | AndStringsType | ArgsPseudos | CSSVariableProperties | MediaQueryType | PseudoElementsAndClassType ;
104-
105101export type ExtendedCSSProperties =
106102 | CustomCSSProperties
107103 | {
0 commit comments