-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #35 from vadimkorr/feature/#33_Change-pages-progra…
…mmatically Feature/#33 Change pages programmatically
- Loading branch information
Showing
14 changed files
with
483 additions
and
37 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,4 +8,6 @@ storybook-static | |
# dist | ||
scripts | ||
|
||
.test.js | ||
src/**/*.test.js | ||
|
||
DEPLOYMENT.md |
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 |
---|---|---|
@@ -1,3 +1,4 @@ | ||
import './styles.css' | ||
|
||
export const parameters = { | ||
actions: { argTypesRegex: "^on[A-Z].*" }, | ||
|
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,47 @@ | ||
.sb-container { | ||
padding: 10px; | ||
border-radius: 5px; | ||
background-color: #d2d2d2; | ||
} | ||
|
||
span.sb-title { | ||
color: #3e3e3e; | ||
display: block; | ||
margin: 5px; | ||
font-size: 16px; | ||
font-family: Arial, Helvetica, sans-serif; | ||
} | ||
|
||
.sb-divider { | ||
max-width: 100%; | ||
border-bottom: solid 3px #ffffff; | ||
margin: 5px; | ||
box-sizing: border-box; | ||
} | ||
|
||
.sb-button { | ||
width: 150px; | ||
height: 35px; | ||
margin: 5px; | ||
padding: 0px 10px; | ||
border-radius: 5px; | ||
background-color: #009800; | ||
border: none; | ||
color: white; | ||
text-decoration: none; | ||
font-size: 14px; | ||
cursor: pointer; | ||
} | ||
|
||
.sb-input[type=text], | ||
.sb-input[type=number] { | ||
width: 150px; | ||
height: 35px; | ||
margin: 5px; | ||
padding: 0px 10px; | ||
border-radius: 5px; | ||
display: inline-block; | ||
border: 1px solid #9f9f9f; | ||
outline: none; | ||
box-sizing: border-box; | ||
} |
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,14 @@ | ||
# How to publish new feature: | ||
|
||
1. Update unit tests | ||
2. Update storybook | ||
|
||
3. Update version in `package.json` | ||
|
||
4. Update docs in `README.md` | ||
5. Update docs in `src/docs` | ||
6. `yarn build:docs` | ||
|
||
7. `npm publish` | ||
8. Merge feature branch | ||
9. Create release in GitHub |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.