@@ -40,8 +40,8 @@ const Circle: React.FC<ProgressProps> = (props) => {
40
40
const perimeter = Math . PI * 2 * radius ;
41
41
const rotateDeg = gapDegree > 0 ? 90 + gapDegree / 2 : - 90 ;
42
42
const perimeterWithoutGap = perimeter * ( ( 360 - gapDegree ) / 360 ) ;
43
- const { count : stepCount , space : stepSpace } =
44
- typeof steps === 'object' ? steps : { count : steps , space : 2 } ;
43
+ const { count : stepCount , gap : stepGap } =
44
+ typeof steps === 'object' ? steps : { count : steps , gap : 2 } ;
45
45
46
46
const percentList = toArray ( percent ) ;
47
47
const strokeColorList = toArray ( strokeColor ) ;
@@ -70,7 +70,7 @@ const Circle: React.FC<ProgressProps> = (props) => {
70
70
const getStokeList = ( ) => {
71
71
let stackPtg = 0 ;
72
72
return percentList
73
- . map ( ( ptg , index ) => {
73
+ . map < React . ReactNode > ( ( ptg , index ) => {
74
74
const color = strokeColorList [ index ] || strokeColorList [ strokeColorList . length - 1 ] ;
75
75
const circleStyleForStack = getCircleStyle (
76
76
perimeter ,
@@ -119,7 +119,7 @@ const Circle: React.FC<ProgressProps> = (props) => {
119
119
const stepPtg = 100 / stepCount ;
120
120
121
121
let stackPtg = 0 ;
122
- return new Array ( stepCount ) . fill ( null ) . map ( ( _ , index ) => {
122
+ return new Array ( stepCount ) . fill ( null ) . map < React . ReactNode > ( ( _ , index ) => {
123
123
const color = index <= current - 1 ? strokeColorList [ 0 ] : trailColor ;
124
124
const stroke = color && typeof color === 'object' ? `url(#${ gradientId } )` : undefined ;
125
125
const circleStyleForStack = getCircleStyle (
@@ -133,10 +133,10 @@ const Circle: React.FC<ProgressProps> = (props) => {
133
133
color ,
134
134
'butt' ,
135
135
strokeWidth ,
136
- stepSpace ,
136
+ stepGap ,
137
137
) ;
138
138
stackPtg +=
139
- ( ( perimeterWithoutGap - circleStyleForStack . strokeDashoffset + stepSpace ) * 100 ) /
139
+ ( ( perimeterWithoutGap - ( circleStyleForStack . strokeDashoffset as number ) + stepGap ) * 100 ) /
140
140
perimeterWithoutGap ;
141
141
142
142
return (
0 commit comments