reactstrap
Advanced tools
Comparing version 0.5.6 to 0.5.7
@@ -0,1 +1,12 @@ | ||
<a name="0.5.7"></a> | ||
## [0.5.7](https://github.com/reactstrap/reactstrap/compare/0.5.6...v0.5.7) (2016-03-25) | ||
### Bug Fixes | ||
* **ButtonGroup:** remove btn-group when vertical ([9b70e37](https://github.com/reactstrap/reactstrap/commit/9b70e37)) | ||
* **docs:** add and use reactstrap alias ([fcfe88d](https://github.com/reactstrap/reactstrap/commit/fcfe88d)) | ||
<a name="0.5.6"></a> | ||
@@ -2,0 +13,0 @@ ## [0.5.6](https://github.com/reactstrap/reactstrap/compare/0.5.5...v0.5.6) (2016-03-24) |
@@ -32,5 +32,4 @@ import React, { PropTypes } from 'react'; | ||
className, | ||
'btn-group', | ||
size ? 'btn-' + size : false, | ||
vertical ? 'btn-group-vertical' : false | ||
size ? 'btn-group-' + size : false, | ||
vertical ? 'btn-group-vertical' : 'btn-group' | ||
); | ||
@@ -37,0 +36,0 @@ |
@@ -11,3 +11,5 @@ import React, { PropTypes } from 'react'; | ||
onClick: PropTypes.func, | ||
toggle: PropTypes.func | ||
toggle: PropTypes.func, | ||
'data-toggle': PropTypes.string, | ||
'aria-haspopup': PropTypes.bool | ||
}; | ||
@@ -14,0 +16,0 @@ |
{ | ||
"name": "reactstrap", | ||
"version": "0.5.6", | ||
"version": "0.5.7", | ||
"description": "React Bootstrap 4 components compatible with React 0.14.x and 15.x", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
@@ -20,3 +20,3 @@ [![reactstrap](https://cloud.githubusercontent.com/assets/399776/13906899/1de62f0c-ee9f-11e5-95c0-c515fee8e918.png)](https://reactstrap.github.io) | ||
```js | ||
import { Button } from 'lib/index'; | ||
import { Button, Popover, Tooltip } from 'reactstrap'; | ||
``` | ||
@@ -29,10 +29,8 @@ | ||
Checkout the examples section for additional usage: https://github.com/reactstrap/reactstrap/tree/master/example/js | ||
This library contains the following components: | ||
- Button | ||
- ButtonDropdown | ||
- ButtonGroup | ||
- ButtonToolbar | ||
- [Button](https://reactstrap.github.io/components/buttons) | ||
- [ButtonDropdown](https://reactstrap.github.io/components/button-dropdown) | ||
- [ButtonGroup](https://reactstrap.github.io/components/button-group) | ||
- [ButtonToolbar](https://reactstrap.github.io/components/button-group) | ||
- Dropdown | ||
@@ -42,6 +40,6 @@ - DropdownItem | ||
- DropdownToggle | ||
- Label | ||
- Popover | ||
- PopoverContent | ||
- PopoverTitle | ||
- [Label](https://reactstrap.github.io/components/labels) | ||
- [Popover](https://reactstrap.github.io/components/popovers) | ||
- [PopoverContent](https://reactstrap.github.io/components/popovers) | ||
- [PopoverTitle](https://reactstrap.github.io/components/popovers) | ||
- Modal | ||
@@ -51,3 +49,3 @@ - ModalHeader | ||
- ModalFooter | ||
- Tooltip | ||
- [Tooltip](https://reactstrap.github.io/components/tooltips) | ||
@@ -54,0 +52,0 @@ ## Development |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1236764
12380
73