This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
forked from stief510/react-native-step-indicator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.d.ts
303 lines (268 loc) · 5.79 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
// Type definitions for react-native-step-indicator
// Project: https://github.com/24ark/react-native-step-indicator
// Definitions by: Kyle Roach <https://github.com/iRoachie>
// TypeScript Version: 2.3.3
import React from 'react'
import {ViewStyle} from 'react-native';
interface StepIndicatorStyles {
/**
* Size of step indicator circle
*
* @default 30
* @type {number}
* @memberof StepIndicatorStyles
*/
stepIndicatorSize?: number
/**
* Size of the current step indicator circle
*
* @default 40
* @type {number}
* @memberof StepIndicatorStyles
*/
currentStepIndicatorSize?: number
/**
* Stroke thickness of the separator between steps
*
* @default 2
* @type {number}
* @memberof StepIndicatorStyles
*/
separatorStrokeWidth?: number
/**
* Thickness of the stroke around each step
*
* @default 3
* @type {number}
* @memberof StepIndicatorStyles
*/
stepStrokeWidth?: number
/**
* Thickness of the stroke around the current step
*
* @default 3
* @type {number}
* @memberof StepIndicatorStyles
*/
currentStepStrokeWidth?: number
/**
* Stroke color for the current step
*
* @default '#fe7013'
* @type {string}
* @memberof StepIndicatorStyles
*/
stepStrokeCurrentColor?: string
/**
* Stroke color for finished steps
*
* @default '#fe7013'
* @type {string}
* @memberof StepIndicatorStyles
*/
stepStrokeFinishedColor?: string
/**
* Stroke color for unfinished steps
*
* @default '#aaaaaa'
* @type {string}
* @memberof StepIndicatorStyles
*/
stepStrokeUnFinishedColor?: string
/**
* Color of separator for finished items
*
* @default '#fe7013'
* @type {string}
* @memberof StepIndicatorStyles
*/
separatorFinishedColor?: string
/**
* Color of separator for unfinished items
*
* @default '#aaaaaa'
* @type {string}
* @memberof StepIndicatorStyles
*/
separatorUnFinishedColor?: string
/**
* Color of the circle for finished steps
*
* @default '#fe7013'
* @type {string}
* @memberof StepIndicatorStyles
*/
stepIndicatorFinishedColor?: string
/**
* Color of the circle for unfinished steps
*
* @default '#ffffff'
* @type {string}
* @memberof StepIndicatorStyles
*/
stepIndicatorUnFinishedColor?: string
/**
* Color of the circle for the current step
*
* @default '#ffffff'
* @type {string}
* @memberof StepIndicatorStyles
*/
stepIndicatorCurrentColor?: string
/**
* Font size of the number inside the circle for each step
*
* @default 15
* @type {number}
* @memberof StepIndicatorStyles
*/
stepIndicatorLabelFontSize?: number
/**
* Font size of the number inside the circle for the current step
*
* @default 15
* @type {number}
* @memberof StepIndicatorStyles
*/
currentStepIndicatorLabelFontSize?: number
/**
* Color of label for the current step
*
* @default '#ffffff'
* @type {string}
* @memberof StepIndicatorStyles
*/
stepIndicatorLabelCurrentColor?: string
/**
* Color of labels that their steps are finished
*
* @default '#ffffff'
* @type {string}
* @memberof StepIndicatorStyles
*/
stepIndicatorLabelFinishedColor?: string
/**
* Color of labels that their steps are unfinished
*
* @default 'rgba(255,255,255,0.5)'
* @type {string}
* @memberof StepIndicatorStyles
*/
stepIndicatorLabelUnFinishedColor?: string
/**
* Color of the label text
*
* @default '#000000'
* @type {string}
* @memberof StepIndicatorStyles
*/
unfinishedLabelColor?: string
/**
* Color of the label text
*
* @default '#000000'
* @type {string}
* @memberof StepIndicatorStyles
*/
finishedLabelColor?: string
/**
* Color of the current step label
*
* @default '#4aae4f'
* @type {string}
* @memberof StepIndicatorStyles
*/
currentStepLabelColor?: string
/**
* Font size for the labels
*
* @default 13
* @type {number}
* @memberof StepIndicatorStyles
*/
labelSize?: number
}
interface StepIndicatorProps {
/**
* Current step
*
* @default 0
* @type {number}
* @memberof StepIndicatorProps
*/
currentPosition?: number
/**
* Number of steps
*
* @default 5
* @type {number}
* @memberof StepIndicatorProps
*/
stepCount?: number
/**
* Orientation of the Steps
*
* @default 'horizontal'
* @type {('horizontal' | 'vertical')}
* @memberof StepIndicatorProps
*/
direction?: 'horizontal' | 'vertical'
/**
* Styles for the component
*
* @type {StepIndicatorStyles}
* @memberof StepIndicatorProps
*/
customStyles?: StepIndicatorStyles
/**
* Styles for step labels container
*
* @type {ViewStyle}
* @memberof StepIndicatorProps
*/
stepLabelsContainerCustomStyles?: ViewStyle
/**
* Styles for step labels view
*
* @type {ViewStyle}
* @memberof StepIndicatorProps
*/
stepLabelItemCustomStyles?: ViewStyle
/**
* Styles for container
*
* @type {ViewStyle}
* @memberof StepIndicatorProps
*/
customContainerStyles?: ViewStyle
/**
* Labels for each step
*
* @type {string[]}
* @memberof StepIndicatorProps
*/
labels?: string[]
/**
* Custom indicator function
*
* @type {(position) => JSX.Element}
* @memberof StepIndicatorProps
*/
renderCustomIndicator: (position: number) => JSX.Element
/**
* Sublabel
*
* @type {(position) => JSX.Element}
* @memberof StepIndicatorProps
*/
renderSubLabel: (position: number) => JSX.Element
/**
* Callback fired when tapping on a step
*
* @param {number} step
*
* @memberof StepIndicatorProps
*/
onPress?(step: number): void
}
export default class StepIndicator extends React.Component<StepIndicatorProps, null> { }