diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 000000000..88552ce2c --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,2 @@ +tidelift: npm/reactstrap +custom: https://www.paypal.me/evansharp diff --git a/CHANGELOG.md b/CHANGELOG.md index f21471de3..abc0c069f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ + +## [8.0.1](https://github.com/reactstrap/reactstrap/compare/8.0.0...8.0.1) (2019-07-10) + + +### Bug Fixes + +* **DropdownMenu:** Allow positionFixed prop to be passed through ([#1538](https://github.com/reactstrap/reactstrap/issues/1538)) ([01466ae](https://github.com/reactstrap/reactstrap/commit/01466ae)), closes [#1473](https://github.com/reactstrap/reactstrap/issues/1473) +* **FormGroup:** allow disable when tag is fieldset ([#1547](https://github.com/reactstrap/reactstrap/issues/1547)) ([0736f80](https://github.com/reactstrap/reactstrap/commit/0736f80)), closes [#1546](https://github.com/reactstrap/reactstrap/issues/1546) +* **Modal:** handle init modal in SSR ([#1495](https://github.com/reactstrap/reactstrap/issues/1495)) ([c844ab1](https://github.com/reactstrap/reactstrap/commit/c844ab1)) +* **Modal:** update condition to call `setFocus` in case open mo… ([#1514](https://github.com/reactstrap/reactstrap/issues/1514)) ([ae6fe93](https://github.com/reactstrap/reactstrap/commit/ae6fe93)) +* **Tooltip:** clear timeouts on unmount ([#1562](https://github.com/reactstrap/reactstrap/issues/1562)) ([e85238b](https://github.com/reactstrap/reactstrap/commit/e85238b)), closes [#1255](https://github.com/reactstrap/reactstrap/issues/1255) + + + # [8.0.0](https://github.com/reactstrap/reactstrap/compare/7.1.0...8.0.0) (2019-04-03) diff --git a/docs/lib/Components/DropdownsPage.js b/docs/lib/Components/DropdownsPage.js index d93666085..302cb63e0 100644 --- a/docs/lib/Components/DropdownsPage.js +++ b/docs/lib/Components/DropdownsPage.js @@ -94,7 +94,9 @@ DropdownMenu.propTypes = { cssModule: PropTypes.object, // Custom modifiers that are passed to DropdownMenu.js, see https://popper.js.org/popper-documentation.html#modifiers modifiers: PropTypes.object, - persist: PropTypes.bool // presist the popper, even when closed. See #779 for reasoning + persist: PropTypes.bool, // presist the popper, even when closed. See #779 for reasoning + // passed to popper, see https://popper.js.org/popper-documentation.html#Popper.Defaults.positionFixed + positionFixed: PropTypes.bool }; DropdownItem.propTypes = { @@ -323,7 +325,7 @@ DropdownItem.propTypes = { styles: { ...data.styles, overflow: 'auto', - maxHeight: 100, + maxHeight: '100px', }, }; }, diff --git a/docs/lib/Home/index.js b/docs/lib/Home/index.js index 306195f08..7c8124ec4 100644 --- a/docs/lib/Home/index.js +++ b/docs/lib/Home/index.js @@ -48,14 +48,12 @@ export default () => {

Getting Started with Create React App

-

Follow the create-react-app instructions up to the Adding Bootstrap section and instead follow the reactstrap version of adding bootstrap.

+

Follow the Create React App instructions and then follow the Adding Bootstrap instructions.

tl;dr

               
-{`npm install -g create-react-app
-
-create-react-app my-app
-cd my-app/
+{`npx create-react-app my-app
+cd my-app
 npm start`}
               
             
@@ -66,7 +64,7 @@ npm start`}

Install reactstrap and Bootstrap from NPM. Reactstrap does not include Bootstrap CSS so this needs to be installed as well:

               
-  {`npm install bootstrap --save
+  {`npm install --save bootstrap
 npm install --save reactstrap react react-dom`}
               
             
diff --git a/docs/lib/UI/Content.js b/docs/lib/UI/Content.js index c7dba8dcd..270c2665c 100644 --- a/docs/lib/UI/Content.js +++ b/docs/lib/UI/Content.js @@ -17,7 +17,7 @@ function Content({ items, children, title }) {

{title}