Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 6a3146c

Browse files
committed
fix(custom-css-properties.ts): remove background gridColumn gridRow
1 parent 781fe57 commit 6a3146c

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

src/_internal/types/custom/custom-css-properties.ts

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -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

103100
export type CustomCSSProperties = CustomExtendProperties | AndStringsType | ArgsPseudos | CSSVariableProperties | MediaQueryType | PseudoElementsAndClassType;
104-
105101
export type ExtendedCSSProperties =
106102
| CustomCSSProperties
107103
| {

0 commit comments

Comments
 (0)