File tree Expand file tree Collapse file tree 5 files changed +14
-2
lines changed Expand file tree Collapse file tree 5 files changed +14
-2
lines changed Original file line number Diff line number Diff line change 1
1
coverage /
2
2
dist /
3
3
node_modules /
4
+ storybook-static /
4
5
package-lock.json
5
6
yarn.lock
6
7
* .log
Original file line number Diff line number Diff line change @@ -57,6 +57,8 @@ const AppWithRange = ({ onDateChange }) => (
57
57
);
58
58
```
59
59
60
+ More examples [ here] ( https://react-semantic-ui-datepickers.now.sh ) .
61
+
60
62
## Supported Props
61
63
62
64
### Own Props
Original file line number Diff line number Diff line change
1
+ {
2
+ "alias" : " react-semantic-ui-datepickers" ,
3
+ "name" : " react-semantic-ui-datepickers"
4
+ }
Original file line number Diff line number Diff line change 6
6
"scripts" : {
7
7
"add-contributor" : " kcd-scripts contributors add" ,
8
8
"build" : " kcd-scripts build --bundle cjs.minify" ,
9
+ "deploy" : " now --public ./storybook-static -A ../now.json && now alias" ,
9
10
"lint" : " kcd-scripts lint" ,
10
11
"precommit" : " kcd-scripts precommit" ,
12
+ "predeploy" : " npm run storybook:build" ,
11
13
"semantic-release" : " semantic-release" ,
12
- "storybook" : " start-storybook -p 9001 -c .storybook" ,
14
+ "storybook" : " start-storybook -p 9001 -c stories" ,
15
+ "storybook:build" : " build-storybook -c stories" ,
16
+ "storybook:serve" : " serve ./storybook-static -p 6006" ,
13
17
"test" : " kcd-scripts test" ,
14
18
"travis-deploy-once" : " travis-deploy-once" ,
15
19
"validate" : " kcd-scripts validate"
44
48
"semantic-release" : " ^15.8.1" ,
45
49
"semantic-ui-css" : " ^2.3.1" ,
46
50
"semantic-ui-react" : " ^0.79.1" ,
51
+ "serve" : " ^9.4.0" ,
47
52
"travis-deploy-once" : " ^5.0.1"
48
53
},
49
54
"peerDependencies" : {
Original file line number Diff line number Diff line change 1
1
import { configure } from '@storybook/react' ;
2
2
3
3
function loadStories ( ) {
4
- require ( '../stories /index.js' ) ;
4
+ require ( './index.js' ) ;
5
5
// You can require as many stories as you need.
6
6
}
7
7
You can’t perform that action at this time.
0 commit comments