File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 55## Overview
66
77React Step Builder allows you to combine states of multiple components in one place
8- and navigate between components without losing the state from other step components.
8+ and navigate between step components without losing the state from other step components.
99
1010It only provides wrapper components and methods to be able to render your step components
1111without being forced to use certain UI features in your step structure.
Original file line number Diff line number Diff line change 22 "name" : " react-step-builder" ,
33 "description" : " Unopinionated multi step interface builder." ,
44 "author" : " Samet Mutevelli <mutevellisamet@gmail.com> (https://sametmutevelli.com)" ,
5- "version" : " 1.1.5 " ,
5+ "version" : " 1.1.6 " ,
66 "private" : false ,
77 "devDependencies" : {
88 "react" : " ^16.12.0" ,
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ const Step1 = (props) => {
2727 { props . step . hasPrev ( ) && < button onClick = { props . prev } > Previous</ button > }
2828 { props . step . hasNext ( ) && < button onClick = { props . next } > Next</ button > }
2929 < button onClick = { ( ) => props . jump ( 3 ) } > Jump to 3. Step</ button >
30+ < button onClick = { ( ) => props . jump ( 5 ) } > Jump to 5. Step</ button >
3031 </ div >
3132 ) ;
3233} ;
You can’t perform that action at this time.
0 commit comments