gitextract_zrdxiemy/ ├── .dumirc.ts ├── .editorconfig ├── .eslintrc.js ├── .fatherrc.ts ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ └── main.yml ├── .gitignore ├── .prettierrc ├── HISTORY.md ├── LICENSE.md ├── README.md ├── assets/ │ ├── custom-icon.less │ ├── iconfont.less │ ├── index.less │ ├── inline.less │ ├── label-placement.less │ ├── nav.less │ ├── progress-dot.less │ ├── small.less │ ├── variables.less │ └── vertical.less ├── bunfig.toml ├── docs/ │ ├── demo/ │ │ ├── alternativeLabel.md │ │ ├── composable.md │ │ ├── custom-svg-icon.md │ │ ├── customIcon.md │ │ ├── dynamic.md │ │ ├── errorStep.md │ │ ├── inline.md │ │ ├── nav-base.md │ │ ├── nextStep.md │ │ ├── progressDot.md │ │ ├── simple.md │ │ ├── smallSize.md │ │ ├── stepIcon.md │ │ ├── vertical.md │ │ └── verticalSmall.md │ ├── examples/ │ │ ├── alternativeLabel.jsx │ │ ├── composable.jsx │ │ ├── custom-svg-icon.jsx │ │ ├── customIcon.jsx │ │ ├── dynamic.jsx │ │ ├── errorStep.jsx │ │ ├── inline.jsx │ │ ├── nav-base.jsx │ │ ├── nextStep.css │ │ ├── nextStep.jsx │ │ ├── progressDot.jsx │ │ ├── simple.jsx │ │ ├── smallSize.jsx │ │ ├── stepIcon.jsx │ │ ├── vertical.jsx │ │ └── verticalSmall.jsx │ └── index.md ├── index.js ├── jest.config.js ├── package.json ├── script/ │ └── update-content.js ├── src/ │ ├── Context.ts │ ├── Rail.tsx │ ├── Step.tsx │ ├── StepIcon.tsx │ ├── Steps.tsx │ ├── UnstableContext.ts │ ├── index.ts │ └── interface.ts ├── tests/ │ ├── __snapshots__/ │ │ └── index.test.tsx.snap │ ├── index.test.tsx │ ├── semantic.test.tsx │ └── setup.js └── tsconfig.json