File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
packages/grid/src/styled/pane Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 124
124
"stylelint-order" : " 6.0.3" ,
125
125
"stylelint-processor-styled-components" : " 1.10.0" ,
126
126
"temp" : " 0.9.4" ,
127
- "typescript" : " 4.9.5 " ,
127
+ "typescript" : " 5.0.4 " ,
128
128
"webpack" : " 5.86.0"
129
129
}
130
130
}
Original file line number Diff line number Diff line change @@ -69,14 +69,15 @@ const colorStyles = ({ theme }: IStyledSplitterButtonProps & ThemeProps<DefaultT
69
69
const sizeStyles = ( props : IStyledSplitterButtonProps & ThemeProps < DefaultTheme > ) => {
70
70
const size = `${ props . theme . space . base * 6 } px` ;
71
71
const display =
72
- props . splitterSize <= stripUnit ( math ( `${ props . theme . shadowWidths . md } * 2 + ${ size } ` ) ) && 'none' ;
72
+ props . splitterSize <=
73
+ ( stripUnit ( math ( `${ props . theme . shadowWidths . md } * 2 + ${ size } ` ) ) as number ) && 'none' ;
73
74
const isVertical = props . orientation === 'start' || props . orientation === 'end' ;
74
75
let top ;
75
76
let left ;
76
77
let right ;
77
78
let bottom ;
78
79
79
- if ( props . splitterSize >= stripUnit ( math ( `${ size } * 3` ) ) ) {
80
+ if ( props . splitterSize >= ( stripUnit ( math ( `${ size } * 3` ) ) as number ) ) {
80
81
if ( props . placement === 'start' ) {
81
82
if ( isVertical ) {
82
83
top = size ;
Original file line number Diff line number Diff line change @@ -19879,6 +19879,11 @@
[email protected] , "typescript@^3 || ^4", typescript@^4.5.4, typescript@^4.9.5:
19879
19879
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.9.5.tgz#095979f9bcc0d09da324d58d03ce8f8374cbe65a"
19880
19880
integrity sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==
19881
19881
19882
+
19883
+ version "5.0.4"
19884
+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4.tgz#b217fd20119bd61a94d4011274e0ab369058da3b"
19885
+ integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==
19886
+
19882
19887
typescript@^3.9.7:
19883
19888
version "3.9.10"
19884
19889
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.10.tgz#70f3910ac7a51ed6bef79da7800690b19bf778b8"
You can’t perform that action at this time.
0 commit comments