This repository was archived by the owner on Jan 30, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import type {
10
10
import type { CSSVariableValue } from './css-variables' ;
11
11
12
12
type CSSArithmeticOperations = '+' | '-' | '*' | '/' ;
13
- export type CSSCalcExpressionFunctioin = `calc(${string } ${CSSArithmeticOperations } ${string } )`;
13
+ export type CSSCalcExpressionFunction = `calc(${string } ${CSSArithmeticOperations } ${string } )`;
14
14
export type CSSColumnsValue = `${CSSNumericValue | number } ` | 'auto' | `${CSSNumericValue | number } auto` | `auto ${CSSNumericValue | number } ` | 'auto auto' ;
15
15
export type CSSLengthSubValue = 'none' | 'max-content' | 'min-content' | 'fit-content' | `fit-content(${number } ${CSSNumericValue } )`;
16
16
export type CSSFontSizeSubValue = 'xx-small' | 'x-small' | 'small' | 'medium' | 'large' | 'x-large' | 'xx-large' | 'math' ;
@@ -23,7 +23,7 @@ type CSSUnitsAndGlobalValue =
23
23
| CSSViewportUnitValue
24
24
| CSSRespectUnitValue
25
25
| CSSPercentageUnitValue
26
- | CSSCalcExpressionFunctioin
26
+ | CSSCalcExpressionFunction
27
27
| CSSVariableValue
28
28
| CSSGlobalValue ;
29
29
Original file line number Diff line number Diff line change 1
1
import type {
2
- CSSCalcExpressionFunctioin ,
2
+ CSSCalcExpressionFunction ,
3
3
CSSColumnsValue ,
4
4
CSSLengthSubValue ,
5
5
CSSFontSizeSubValue ,
@@ -48,7 +48,7 @@ interface CustomExtendProperties extends BaseCSSProperties {
48
48
minWidth ?: CSSNumericValue | CSSLengthSubValue | 'auto' ;
49
49
minHeight ?: CSSNumericValue | CSSLengthSubValue | 'auto' ;
50
50
flexBasis ?: CSSNumericValue | 'auto' ;
51
- gap ?: CSSNumericValue | CSSCalcExpressionFunctioin ;
51
+ gap ?: CSSNumericValue | CSSCalcExpressionFunction ;
52
52
rowGap ?: CSSNumericValue ;
53
53
columnGap ?: CSSNumericValue | 'normal' ;
54
54
columns ?: CSSColumnsValue ;
You can’t perform that action at this time.
0 commit comments