1.0.4 • Published 5 years ago

react-stepper-component v1.0.4

Weekly downloads
9
License
MIT
Repository
github
Last release
5 years ago

react-stepper-component

stepper component for react.js

png

Installation

npm install react-stepper-component --save

Usage

import Stepper from 'react-stepper-component';

// ...
handlerStepperClick(id){
    //id from Stepper.Content props 'id;
    console.log(id)

}

render() {
  return (
    <Stepper onClick={this.handlerStepperClick}>
        <Stepper.Content id="1" >
            <Stepper.Title>
                1
            </Stepper.Title>
            <Stepper.Detail>
                <Stepper.TitleHeadline >
                   Step One
                </Stepper.TitleHeadline>
                <Stepper.Description>
                    Description of step one
                </Stepper.Description>
            </Stepper.Detail>
        </Stepper.Content>
        <Stepper.Content id="2" active >
            <Stepper.Title>
                2
            </Stepper.Title>
            <Stepper.Detail>
                <Stepper.TitleHeadline>
                    Step Two
                </Stepper.TitleHeadline>
                <Stepper.Description>
                    Description of step Two
                </Stepper.Description>
            </Stepper.Detail>
        </Stepper.Content>

        <Stepper.Content  disabled>
            <Stepper.Title>
                3
            </Stepper.Title>
            <Stepper.Detail>
                <Stepper.TitleHeadline>
                     Step Three
                </Stepper.TitleHeadline>
                <Stepper.Description>
                     Description of step three
                </Stepper.Description>
            </Stepper.Detail>

        </Stepper.Content>
    </Stepper>
  );
}

Props

PropertyTypeisRequired?DefaultDescription
OnClickfuncrequired-Callback when content onClick
idstringoptionalundefinedindicator from container
disabledbooloptionalfalsedisabled item stepper
activebooloptionalfalseindicator active of item stepper

License

MIT

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago