{"id":23105901,"url":"https://github.com/jamilur-r/jr-stepper-form","last_synced_at":"2026-05-02T19:33:20.027Z","repository":{"id":57282719,"uuid":"316035831","full_name":"jamilur-r/jr-stepper-form","owner":"jamilur-r","description":"jr-stepper-form is a stepper form builder component for react. The component is designed keeping ease of use in mind. The library is very easy to use with only 1 imports.","archived":false,"fork":false,"pushed_at":"2020-11-25T19:41:54.000Z","size":206,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-18T05:21:27.083Z","etag":null,"topics":["react","react-component-library","react-stepper-form","react-ui-components","stepper-form"],"latest_commit_sha":null,"homepage":"https://jamilurrahman.com","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jamilur-r.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-11-25T19:31:30.000Z","updated_at":"2020-11-25T19:43:22.000Z","dependencies_parsed_at":"2022-09-04T19:11:09.081Z","dependency_job_id":null,"html_url":"https://github.com/jamilur-r/jr-stepper-form","commit_stats":null,"previous_names":["jamilur-rahman-470/jr-stepper-form"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/jamilur-r/jr-stepper-form","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamilur-r%2Fjr-stepper-form","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamilur-r%2Fjr-stepper-form/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamilur-r%2Fjr-stepper-form/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamilur-r%2Fjr-stepper-form/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jamilur-r","download_url":"https://codeload.github.com/jamilur-r/jr-stepper-form/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jamilur-r%2Fjr-stepper-form/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32547647,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-02T19:18:06.202Z","status":"ssl_error","status_checked_at":"2026-05-02T19:16:21.335Z","response_time":132,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["react","react-component-library","react-stepper-form","react-ui-components","stepper-form"],"created_at":"2024-12-17T00:55:19.381Z","updated_at":"2026-05-02T19:33:20.007Z","avatar_url":"https://github.com/jamilur-r.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jr Stepper Form\n\njr-stepper-form is a stepper form builder component for react. The component is design keeping ease of use in mind. The library is very easy to use with only 1 imports.\n\nThe library dosen't have any styles included so it dosen't conflict with your own styles.\n\n# Visit my site @\n\n[My Portfolio](https://jamilurrahman.com/)\n\u003e\n\n[![NPM](https://img.shields.io/npm/v/jr-stepper-form.svg)](https://www.npmjs.com/package/jr-stepper-form) [![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)\n\n## Install\n\n```bash\nnpm install --save jr-stepper-form\n\n```\n![image](https://user-images.githubusercontent.com/33858136/100274375-83e7db00-2f88-11eb-8d61-ece21ebe3df1.png)\n\n## Usage\n\n```jsx\nimport React from 'react'\n\nimport { StepperForm } from 'jr-stepper-form'\n\nconst App = () =\u003e {\n  const sb = (e) =\u003e {\n    e.preventDefault();\n    console.log('hello');\n  }\n  return (\n    \u003cStepperForm maxStep={5} currentStep={0} onSubmit={e =\u003e sb(e)}\u003e\n      \u003ch1\u003e1\u003c/h1\u003e\n      \u003ch1\u003e2\u003c/h1\u003e\n      \u003ch1\u003e3\u003c/h1\u003e\n      \u003ch1\u003e4\u003c/h1\u003e\n      \u003cdiv\u003e\n        \u003ch1\u003e5\u003c/h1\u003e\n        \u003cinput type='submit' value=\"submit\"\u003e\n      \u003c/div\u003e\n    \u003c/StepperForm\u003e\n  )\n}\n\nexport default App\n\n\n```\n\n## or\n\n```javascript\nimport React from 'react'\n\nimport { StepperForm } from 'jr-stepper-form'\n\nconst App = () =\u003e {\n  const sb = (e) =\u003e {\n    e.preventDefault()\n    console.log('hello')\n  }\n  const Step1 = () =\u003e \u003ch1\u003eSTEP 1\u003c/h1\u003e\n  const Step2 = () =\u003e \u003ch1\u003eSTEP 2\u003c/h1\u003e\n  const Step3 = () =\u003e \u003ch1\u003eSTEP 3\u003c/h1\u003e\n  const Step4 = () =\u003e \u003ch1\u003eSTEP 4\u003c/h1\u003e\n  const Step5 = () =\u003e \u003ch1\u003eSTEP 5\u003c/h1\u003e\n\n  return (\n    \u003cStepperForm maxStep={5} currentStep={0} submit={(e) =\u003e sb(e)}\u003e\n      \u003cStep1 /\u003e\n      \u003cStep2 /\u003e\n      \u003cStep3 /\u003e\n      \u003cStep4 /\u003e\n      \u003cStep5 /\u003e\n    \u003c/StepperForm\u003e\n  )\n}\n\nexport default App\n```\n\n## Props\n\n| name         | type           | isRequired ? | description                                           | start value |\n| ------------ | -------------- | ------------ | ----------------------------------------------------- | ----------- |\n| currentStep  | number         | true         | current step number or starting step                  | 0           |\n| submit       | callback       | true         | on submit method                                      | null        |\n| stepperClass | string         | false        | class name for stepper for to customize stepper form  | ' '         |\n| maxStep      | number         | true         | max number of steps                                   | null        |\n| previousText | any            | false        | button text for previous button or your own component | 'prevoius'  |\n| nextText     | any            | false        | button text for next button or your own component     | 'next'      |\n| btnClass     | string         | false        | css class for previous and next button                | ' '         |\n| children     | react children | true         | might give error if now children passed               | null        |\n\n## HELP\n\n### Styling previous and next button\n\n\u003eprevious and next buttons are enclosed in \u003cdiv\u003e with class name 'btns' as such\n\n```html\n      \u003cdiv className='btns'\u003e\n        \u003cbutton\n          className={btnClass ? btnClass : ''}\n          onClick={(e) =\u003e handlePrev(e)}\n        \u003e\n          {previousText ? previousText : 'Previous'}\n        \u003c/button\u003e\n        \u003cbutton\n          className={btnClass ? btnClass : ''}\n          onClick={(e) =\u003e handleNext(e)}\n        \u003e\n          {nextText ? nextText : 'Next'}\n        \u003c/button\u003e\n      \u003c/div\u003e\n```\n### Styling stepper form\n\n\u003epass stepperClass='style-class' as props to style stepper form\n\n\n## License\n\nMIT © [Jamilur-rahman-470](https://github.com/Jamilur-rahman-470)\n\nPORTFOLIO @ [Portfolio](https://jamilurrahman.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamilur-r%2Fjr-stepper-form","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjamilur-r%2Fjr-stepper-form","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjamilur-r%2Fjr-stepper-form/lists"}