├── .gitignore ├── .npmignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── assets ├── cover.png └── demo.gif ├── docs ├── .gitignore ├── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── Routing.tsx │ ├── assets │ │ ├── copy.svg │ │ └── typescript.svg │ ├── components │ │ ├── CodeSnippet │ │ │ ├── CodeSnippet.module.css │ │ │ ├── CodeSnippet.tsx │ │ │ └── index.ts │ │ ├── Container │ │ │ ├── Container.less │ │ │ ├── Container.tsx │ │ │ └── index.tsx │ │ ├── Demo │ │ │ ├── Demo.module.css │ │ │ ├── Demo.tsx │ │ │ └── index.ts │ │ ├── Footer │ │ │ ├── Footer.module.css │ │ │ ├── Footer.tsx │ │ │ └── index.ts │ │ ├── Home │ │ │ ├── Api │ │ │ │ ├── Api.module.css │ │ │ │ ├── Api.tsx │ │ │ │ └── index.ts │ │ │ ├── Home.tsx │ │ │ ├── Installation │ │ │ │ ├── Installation.module.css │ │ │ │ ├── Installation.tsx │ │ │ │ └── index.ts │ │ │ ├── Introduction │ │ │ │ ├── Introduction.module.css │ │ │ │ ├── Introduction.tsx │ │ │ │ └── index.ts │ │ │ ├── Overview │ │ │ │ ├── Overview.module.css │ │ │ │ ├── Overview.tsx │ │ │ │ └── index.ts │ │ │ ├── Preview │ │ │ │ ├── Preview.module.css │ │ │ │ ├── Preview.tsx │ │ │ │ └── index.ts │ │ │ ├── QuickStart │ │ │ │ ├── QuickStart.module.css │ │ │ │ ├── QuickStart.tsx │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── Navbar │ │ │ ├── Navbar.module.css │ │ │ ├── Navbar.tsx │ │ │ └── index.ts │ │ └── Section │ │ │ ├── Section.module.css │ │ │ ├── Section.tsx │ │ │ └── index.ts │ ├── index.css │ ├── index.tsx │ ├── react-app-env.d.ts │ ├── reportWebVitals.ts │ ├── setupTests.ts │ └── utils │ │ └── apiData.ts └── tsconfig.json ├── package.json ├── src ├── components │ └── Stepper.tsx ├── index.ts ├── styles │ └── stepper.css └── types │ └── Stepper.types.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/.npmignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/README.md -------------------------------------------------------------------------------- /assets/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/assets/cover.png -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/assets/demo.gif -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/.gitignore -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/public/favicon.ico -------------------------------------------------------------------------------- /docs/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/public/index.html -------------------------------------------------------------------------------- /docs/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/public/logo192.png -------------------------------------------------------------------------------- /docs/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/public/logo512.png -------------------------------------------------------------------------------- /docs/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/public/manifest.json -------------------------------------------------------------------------------- /docs/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/public/robots.txt -------------------------------------------------------------------------------- /docs/src/Routing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/Routing.tsx -------------------------------------------------------------------------------- /docs/src/assets/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/assets/copy.svg -------------------------------------------------------------------------------- /docs/src/assets/typescript.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/assets/typescript.svg -------------------------------------------------------------------------------- /docs/src/components/CodeSnippet/CodeSnippet.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/CodeSnippet/CodeSnippet.module.css -------------------------------------------------------------------------------- /docs/src/components/CodeSnippet/CodeSnippet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/CodeSnippet/CodeSnippet.tsx -------------------------------------------------------------------------------- /docs/src/components/CodeSnippet/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./CodeSnippet"; 2 | -------------------------------------------------------------------------------- /docs/src/components/Container/Container.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/src/components/Container/Container.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Container/Container.tsx -------------------------------------------------------------------------------- /docs/src/components/Container/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./Container"; 2 | -------------------------------------------------------------------------------- /docs/src/components/Demo/Demo.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Demo/Demo.module.css -------------------------------------------------------------------------------- /docs/src/components/Demo/Demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Demo/Demo.tsx -------------------------------------------------------------------------------- /docs/src/components/Demo/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Demo"; 2 | -------------------------------------------------------------------------------- /docs/src/components/Footer/Footer.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Footer/Footer.module.css -------------------------------------------------------------------------------- /docs/src/components/Footer/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Footer/Footer.tsx -------------------------------------------------------------------------------- /docs/src/components/Footer/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Footer"; 2 | -------------------------------------------------------------------------------- /docs/src/components/Home/Api/Api.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Home/Api/Api.module.css -------------------------------------------------------------------------------- /docs/src/components/Home/Api/Api.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Home/Api/Api.tsx -------------------------------------------------------------------------------- /docs/src/components/Home/Api/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Api"; 2 | -------------------------------------------------------------------------------- /docs/src/components/Home/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Home/Home.tsx -------------------------------------------------------------------------------- /docs/src/components/Home/Installation/Installation.module.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/src/components/Home/Installation/Installation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Home/Installation/Installation.tsx -------------------------------------------------------------------------------- /docs/src/components/Home/Installation/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Installation"; 2 | -------------------------------------------------------------------------------- /docs/src/components/Home/Introduction/Introduction.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Home/Introduction/Introduction.module.css -------------------------------------------------------------------------------- /docs/src/components/Home/Introduction/Introduction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Home/Introduction/Introduction.tsx -------------------------------------------------------------------------------- /docs/src/components/Home/Introduction/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Introduction"; 2 | -------------------------------------------------------------------------------- /docs/src/components/Home/Overview/Overview.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Home/Overview/Overview.module.css -------------------------------------------------------------------------------- /docs/src/components/Home/Overview/Overview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Home/Overview/Overview.tsx -------------------------------------------------------------------------------- /docs/src/components/Home/Overview/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Overview"; 2 | -------------------------------------------------------------------------------- /docs/src/components/Home/Preview/Preview.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Home/Preview/Preview.module.css -------------------------------------------------------------------------------- /docs/src/components/Home/Preview/Preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Home/Preview/Preview.tsx -------------------------------------------------------------------------------- /docs/src/components/Home/Preview/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Preview"; 2 | -------------------------------------------------------------------------------- /docs/src/components/Home/QuickStart/QuickStart.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Home/QuickStart/QuickStart.module.css -------------------------------------------------------------------------------- /docs/src/components/Home/QuickStart/QuickStart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Home/QuickStart/QuickStart.tsx -------------------------------------------------------------------------------- /docs/src/components/Home/QuickStart/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./QuickStart"; 2 | -------------------------------------------------------------------------------- /docs/src/components/Home/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Home"; 2 | -------------------------------------------------------------------------------- /docs/src/components/Navbar/Navbar.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Navbar/Navbar.module.css -------------------------------------------------------------------------------- /docs/src/components/Navbar/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Navbar/Navbar.tsx -------------------------------------------------------------------------------- /docs/src/components/Navbar/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Navbar"; 2 | -------------------------------------------------------------------------------- /docs/src/components/Section/Section.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Section/Section.module.css -------------------------------------------------------------------------------- /docs/src/components/Section/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/components/Section/Section.tsx -------------------------------------------------------------------------------- /docs/src/components/Section/index.ts: -------------------------------------------------------------------------------- 1 | export { default } from "./Section"; 2 | -------------------------------------------------------------------------------- /docs/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/index.css -------------------------------------------------------------------------------- /docs/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/index.tsx -------------------------------------------------------------------------------- /docs/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /docs/src/reportWebVitals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/reportWebVitals.ts -------------------------------------------------------------------------------- /docs/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/setupTests.ts -------------------------------------------------------------------------------- /docs/src/utils/apiData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/src/utils/apiData.ts -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Stepper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/src/components/Stepper.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/styles/stepper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/src/styles/stepper.css -------------------------------------------------------------------------------- /src/types/Stepper.types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/src/types/Stepper.types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AmeyaJain-25/awesome-react-stepper/HEAD/tsconfig.json --------------------------------------------------------------------------------