-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat:Updated component to support props orientation: horizontal/verti…
…cal and label position: top/bottom/left/right wrt step node
- Loading branch information
1 parent
1b9edfa
commit a3c523d
Showing
35 changed files
with
1,305 additions
and
437 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
/build | ||
/dist | ||
.rpt2_cache | ||
coverage | ||
|
||
# misc | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
<!-- Thank you for contributing to @keyvaluesystems/react-stepper! --> | ||
<!-- Before submitting a pull request, please review our contributing guidelines. --> | ||
|
||
| ||
|
||
## Pull Request Checklist | ||
|
||
| ||
|
||
- [ ] **Read the contributing guidelines.** | ||
- [ ] **Linked to an issue:** Fixes # (replace with the issue number, if applicable) | ||
- [ ] **Branch is up-to-date with the base branch:** `main` | ||
- [ ] **Changes pass tests locally:** `npm test` or `yarn test` | ||
- [ ] **Documentation has been updated, if necessary** | ||
- [ ] **Code follows the style guide of the project** | ||
| ||
|
||
## Description | ||
|
||
| ||
|
||
<!-- Provide a brief description of your changes. --> | ||
|
||
| ||
|
||
## Screenshots (if applicable) | ||
|
||
| ||
|
||
<!-- Add screenshots or GIFs to help explain your changes. --> | ||
|
||
| ||
|
||
## Additional Notes | ||
|
||
| ||
|
||
<!-- Any additional information you want to provide that is not covered by the checklist or description. --> | ||
|
||
| ||
|
||
## Related Issues or PRs | ||
|
||
| ||
|
||
<!-- If your pull request is related to any issue(s) or other pull request(s), mention them here. --> | ||
|
||
| ||
|
||
## Reviewer Guidelines | ||
|
||
| ||
|
||
<!-- Suggest specific areas of the codebase that you would like the reviewer to focus on. --> | ||
|
||
| ||
|
||
## Testing Instructions | ||
|
||
| ||
|
||
<!-- Provide step-by-step instructions on how to test your changes. --> | ||
|
||
| ||
|
||
## Checklist for Reviewers | ||
|
||
| ||
|
||
- [ ] Code follows project conventions and style | ||
- [ ] Changes do not introduce new warnings or errors | ||
- [ ] Unit tests cover the changes | ||
- [ ] Documentation is updated | ||
| ||
|
||
## By submitting this pull request, I confirm that my contribution is made under the terms of the MIT License. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## SCSS Style Guidelines for @keyvaluesystems/react-stepper | ||
|
||
**Introduction** | ||
|
||
As an open-source project utilizing SCSS, @keyvaluesystems/react-stepper strives to maintain a consistent and well-structured codebase. These SCSS style guidelines serve as a reference for contributors, ensuring that their SCSS code adheres to established conventions and best practices. | ||
|
||
**SCSS Coding Conventions** | ||
|
||
- Organize SCSS files into a logical structure. | ||
- Use meaningful and descriptive names for variables, mixins, and classes. | ||
- Use SCSS nesting judiciously to organize complex styles. | ||
- Include comments to explain non-obvious logic and complex styles. | ||
- Utilize SCSS variables to define reusable values. | ||
- Employ a SCSS linting tool. | ||
- Should support devices with all resolutions | ||
- Follow CamelCase conventions for class names that concisely convey their purpose, enhancing code organization and readability | ||
- Adhere to the practice of reusing style classes to improve code organization and maintainability. | ||
|
||
**Documentation Practices** | ||
|
||
- Provide clear documentation for exported mixins and variables. | ||
- Include a README file within the SCSS directory if necessary. | ||
- Add comments to SCSS files. |
Oops, something went wrong.