Skip to content

Commit 059f5fe

Browse files
committed
added form input component
1 parent e580a56 commit 059f5fe

File tree

13 files changed

+326
-243
lines changed

13 files changed

+326
-243
lines changed

.storybook/stories/Forms.js

Lines changed: 0 additions & 83 deletions
This file was deleted.

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
[![npm](https://img.shields.io/npm/v/styled-bootstrap.svg)](https://www.npmjs.com/package/styled-bootstrap)
1010
[![David](https://img.shields.io/david/xDae/styled-bootstrap.svg)](https://david-dm.org/xDae/styled-bootstrap)
1111
[![Travis](https://img.shields.io/travis/xDae/styled-bootstrap.svg)](https://travis-ci.org/xDae/styled-bootstrap)
12+
[![gitter](https://badges.gitter.im/rollup/rollup.svg)](https://gitter.im/styled-bootstrap)
1213
[![license](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/xDae/styled-bootstrap/blob/master/LICENSE)
1314

1415

@@ -22,7 +23,7 @@ npm install styled-bootstrap --save
2223

2324
⚠️ Work in progress.
2425

25-
### 📦 Components
26+
## 📦 Components
2627
- [x] Alert
2728
- [x] Barge
2829
- [x] Breadcrumbs
@@ -54,11 +55,6 @@ Please [open an issue](https://github.com/xDae/styled-bootstrap/issues/new) for
5455

5556
Please contribute using [Github Flow](https://guides.github.com/introduction/flow/). Create a branch, add commits, and [open a pull request](https://github.com/xDae/styled-bootstrap/compare).
5657

57-
## Contributors
58-
59-
This project exists thanks to all the people who contribute. [[Contribute]](CONTRIBUTING.md).
60-
<a href="https://github.com/xDae/styled-bootstrap/graphs/contributors"><img src="https://opencollective.com/styled-bootstrap/contributors.svg?width=890" title="contributors" alt="contributors" /></a>
61-
6258
## Backers
6359

6460
Thank you to all our backers! 🙏 [[Become a backer](https://opencollective.com/parcel#backer)]

components/Forms/Input.js

Lines changed: 0 additions & 131 deletions
This file was deleted.

components/Forms/index.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

package.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
},
2323
"scripts": {
2424
"build": "npm run clean && npm run build-bundle && npm run build-packages",
25-
"clean": "rimraf lib && rimraf dist",
2625
"build-bundle": "rollup -c",
2726
"build-packages": "babel src/ --out-dir lib/ --copy-files",
2827
"build-storybook": "rimraf docs && build-storybook -o docs",
29-
"prepublish": "npm run build",
28+
"clean": "rimraf lib && rimraf dist",
3029
"lint:css": "stylelint './src/components/**/*.js'",
30+
"prepublish": "npm run build",
3131
"start": "npm run storybook",
3232
"storybook": "start-storybook -p 9009",
3333
"test": "jest --env=jsdom",
@@ -37,8 +37,8 @@
3737
"dependencies": {
3838
"lodash.get": "^4.4.2",
3939
"lodash.omit": "^4.5.0",
40-
"lodash.pick": "^4.4.0",
41-
"prop-types": "^15.6.0"
40+
"prop-types": "^15.6.0",
41+
"react-transition-group": "^2.2.1"
4242
},
4343
"devDependencies": {
4444
"@storybook/addon-actions": "^3.3.12",
@@ -79,7 +79,6 @@
7979
"react-dev-utils": "^5.0.0",
8080
"react-dom": "^16.2.0",
8181
"react-test-renderer": "^16.2.0",
82-
"react-transition-group": "^2.2.1",
8382
"recompose": "^0.26.0",
8483
"rimraf": "^2.6.2",
8584
"rollup": "^0.56.1",

0 commit comments

Comments
 (0)