diff --git a/CHANGELOG.md b/CHANGELOG.md index 18930013dd..fb684d413f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,43 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Bug Fixes + +- `AppBar` text color now defaults to + `rmd-theme-var(text-primary-on-background)` + ([2c3ea5e](https://github.com/mlaursen/react-md/commit/2c3ea5e984b033b05098d01499a41a24790b639c)) +- Booleans in dist/scssVariables + ([f6d43a3](https://github.com/mlaursen/react-md/commit/f6d43a31a13647e0b92c256975652913fb8bb34e)) +- ListItem disabled states + ([7b37292](https://github.com/mlaursen/react-md/commit/7b372926289d0c1cdab76dbea9cb298e7594dfa9)) +- Scroll active element into view while focusing + ([a9a0902](https://github.com/mlaursen/react-md/commit/a9a090268f8aecb8b7478dc3fb6c06eec346c62a)) +- Tree focused index after expanding all with asterisk + ([8547629](https://github.com/mlaursen/react-md/commit/854762991dfab43a89191ee29cd2acc7e43ec236)) +- Tree keyboard movement for child items that are expanded + ([fadddc7](https://github.com/mlaursen/react-md/commit/fadddc7798be9179a9db8a937455b9d989e38c79)) +- Tree scrolling elements into view + ([eef48dc](https://github.com/mlaursen/react-md/commit/eef48dcc547dae6146a3b2fd04c7a2ad13043036)) + +### Features + +- Added new mixin for optional css-modules + ([28ba828](https://github.com/mlaursen/react-md/commit/28ba8281489ddfa794a61749cb32817a9bd64311)) +- Exported the `useAutoComplete` hook + ([cac5cd1](https://github.com/mlaursen/react-md/commit/cac5cd16a1452130ba600833c8ad1180d7ec4918)) +- Improved Dark Mode using Raising Elevation + ([547877c](https://github.com/mlaursen/react-md/commit/547877c51217a544fdaad9c77e2469a45f30336e)), + closes [#860](https://github.com/mlaursen/react-md/issues/860) +- Render non-searchable items in AutoComplete + ([e7a82ac](https://github.com/mlaursen/react-md/commit/e7a82acf874f46b56e8427cdb389ff1f18f12927)) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.4](https://github.com/mlaursen/react-md/compare/v2.0.3...v2.0.4) (2020-07-10) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 08f970f3b9..147730c1f8 100644 --- a/lerna.json +++ b/lerna.json @@ -16,5 +16,5 @@ ], "useWorkspaces": true, "npmClient": "yarn", - "version": "2.0.4" + "version": "2.1.0" } diff --git a/packages/alert/CHANGELOG.md b/packages/alert/CHANGELOG.md index 510d1f0c91..c973930dee 100644 --- a/packages/alert/CHANGELOG.md +++ b/packages/alert/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Features + +- Improved Dark Mode using Raising Elevation + ([547877c](https://github.com/mlaursen/react-md/commit/547877c51217a544fdaad9c77e2469a45f30336e)), + closes [#860](https://github.com/mlaursen/react-md/issues/860) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/alert/package.json b/packages/alert/package.json index 9b68af29f8..bd60c3759c 100644 --- a/packages/alert/package.json +++ b/packages/alert/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/alert", - "version": "2.0.2", + "version": "2.1.0", "description": "Create accessible alerts through snackbars and banners.", "scripts": { "build": "dev-utils build", @@ -42,13 +42,13 @@ ], "license": "MIT", "dependencies": { - "@react-md/button": "^2.0.2", - "@react-md/elevation": "^2.0.2", + "@react-md/button": "^2.1.0", + "@react-md/elevation": "^2.1.0", "@react-md/portal": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6", "react-transition-group": "^4.3.0" }, diff --git a/packages/app-bar/CHANGELOG.md b/packages/app-bar/CHANGELOG.md index d29e6cda98..2a67afba5a 100644 --- a/packages/app-bar/CHANGELOG.md +++ b/packages/app-bar/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Bug Fixes + +- `AppBar` text color now defaults to + `rmd-theme-var(text-primary-on-background)` + ([2c3ea5e](https://github.com/mlaursen/react-md/commit/2c3ea5e984b033b05098d01499a41a24790b639c)) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/app-bar/package.json b/packages/app-bar/package.json index 3242e03deb..d3d0e76350 100644 --- a/packages/app-bar/package.json +++ b/packages/app-bar/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/app-bar", - "version": "2.0.2", + "version": "2.1.0", "description": "This small package implments the AppBar spec in material design.", "scripts": { "build": "dev-utils build", @@ -40,12 +40,12 @@ ], "license": "MIT", "dependencies": { - "@react-md/button": "^2.0.2", - "@react-md/elevation": "^2.0.2", - "@react-md/icon": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/button": "^2.1.0", + "@react-md/elevation": "^2.1.0", + "@react-md/icon": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/autocomplete/CHANGELOG.md b/packages/autocomplete/CHANGELOG.md index 39847d189f..957e5aaf49 100644 --- a/packages/autocomplete/CHANGELOG.md +++ b/packages/autocomplete/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Features + +- Exported the `useAutoComplete` hook + ([cac5cd1](https://github.com/mlaursen/react-md/commit/cac5cd16a1452130ba600833c8ad1180d7ec4918)) +- Render non-searchable items in AutoComplete + ([e7a82ac](https://github.com/mlaursen/react-md/commit/e7a82acf874f46b56e8427cdb389ff1f18f12927)) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.3](https://github.com/mlaursen/react-md/compare/v2.0.2...v2.0.3) (2020-07-07) **Note:** Version bump only for package @react-md/autocomplete diff --git a/packages/autocomplete/package.json b/packages/autocomplete/package.json index c47b1cd382..5ea982e896 100644 --- a/packages/autocomplete/package.json +++ b/packages/autocomplete/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/autocomplete", - "version": "2.0.3", + "version": "2.1.0", "description": "", "scripts": { "build": "dev-utils build", @@ -42,14 +42,14 @@ ], "license": "MIT", "dependencies": { - "@react-md/form": "^2.0.3", - "@react-md/list": "^2.0.2", + "@react-md/form": "^2.1.0", + "@react-md/list": "^2.1.0", "@react-md/portal": "^2.0.2", - "@react-md/states": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/states": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/avatar/CHANGELOG.md b/packages/avatar/CHANGELOG.md index 13e967d43f..f1e2f1beda 100644 --- a/packages/avatar/CHANGELOG.md +++ b/packages/avatar/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/avatar + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/avatar/package.json b/packages/avatar/package.json index 064a5ba724..fc6984aae2 100644 --- a/packages/avatar/package.json +++ b/packages/avatar/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/avatar", - "version": "2.0.2", + "version": "2.1.0", "description": "This package is used to avatars which are used to symbolize people or objects.", "scripts": { "build": "dev-utils build", @@ -40,9 +40,9 @@ ], "license": "MIT", "dependencies": { - "@react-md/icon": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/icon": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/badge/CHANGELOG.md b/packages/badge/CHANGELOG.md index 06eaeab111..7c04b6cdbe 100644 --- a/packages/badge/CHANGELOG.md +++ b/packages/badge/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/badge + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/badge/package.json b/packages/badge/package.json index 10ed988319..8048ba43e7 100644 --- a/packages/badge/package.json +++ b/packages/badge/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/badge", - "version": "2.0.2", + "version": "2.1.0", "description": "Create a badge that is fixed to another element. This is generally used for notification counts.", "scripts": { "build": "dev-utils build", @@ -41,11 +41,11 @@ ], "license": "MIT", "dependencies": { - "@react-md/button": "^2.0.2", - "@react-md/icon": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/button": "^2.1.0", + "@react-md/icon": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/button/CHANGELOG.md b/packages/button/CHANGELOG.md index d991f75fa4..c84edc9872 100644 --- a/packages/button/CHANGELOG.md +++ b/packages/button/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/button + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/button/package.json b/packages/button/package.json index ae15578ecd..aad6a33f0f 100644 --- a/packages/button/package.json +++ b/packages/button/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/button", - "version": "2.0.2", + "version": "2.1.0", "description": "This package is used to create buttons with the material design spec. There is built-in support to be able to render accessible clickable divs that look like buttons, or even apply button styles to any element.", "scripts": { "build": "dev-utils build", @@ -41,13 +41,13 @@ ], "license": "MIT", "dependencies": { - "@react-md/elevation": "^2.0.2", - "@react-md/icon": "^2.0.2", - "@react-md/states": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/elevation": "^2.1.0", + "@react-md/icon": "^2.1.0", + "@react-md/states": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/card/CHANGELOG.md b/packages/card/CHANGELOG.md index bee38bac04..9999538493 100644 --- a/packages/card/CHANGELOG.md +++ b/packages/card/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Features + +- Improved Dark Mode using Raising Elevation + ([547877c](https://github.com/mlaursen/react-md/commit/547877c51217a544fdaad9c77e2469a45f30336e)), + closes [#860](https://github.com/mlaursen/react-md/issues/860) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/card/package.json b/packages/card/package.json index e0d2c4f48c..39591c6489 100644 --- a/packages/card/package.json +++ b/packages/card/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/card", - "version": "2.0.2", + "version": "2.1.0", "description": "Create interactable cards from the material design specifications.", "scripts": { "build": "dev-utils build", @@ -41,13 +41,13 @@ ], "license": "MIT", "dependencies": { - "@react-md/divider": "^2.0.2", - "@react-md/elevation": "^2.0.2", - "@react-md/icon": "^2.0.2", - "@react-md/states": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/divider": "^2.1.0", + "@react-md/elevation": "^2.1.0", + "@react-md/icon": "^2.1.0", + "@react-md/states": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/chip/CHANGELOG.md b/packages/chip/CHANGELOG.md index 7d4dfcbbb5..bbb4911323 100644 --- a/packages/chip/CHANGELOG.md +++ b/packages/chip/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Features + +- Improved Dark Mode using Raising Elevation + ([547877c](https://github.com/mlaursen/react-md/commit/547877c51217a544fdaad9c77e2469a45f30336e)), + closes [#860](https://github.com/mlaursen/react-md/issues/860) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/chip/package.json b/packages/chip/package.json index 8ab21c0041..f48ec1dc84 100644 --- a/packages/chip/package.json +++ b/packages/chip/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/chip", - "version": "2.0.2", + "version": "2.1.0", "description": "", "scripts": { "build": "dev-utils build", @@ -41,12 +41,12 @@ ], "license": "MIT", "dependencies": { - "@react-md/elevation": "^2.0.2", - "@react-md/icon": "^2.0.2", - "@react-md/states": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/elevation": "^2.1.0", + "@react-md/icon": "^2.1.0", + "@react-md/states": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/dev-utils/CHANGELOG.md b/packages/dev-utils/CHANGELOG.md index a5f94be9d8..65ed00aa05 100644 --- a/packages/dev-utils/CHANGELOG.md +++ b/packages/dev-utils/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Bug Fixes + +- Booleans in dist/scssVariables + ([f6d43a3](https://github.com/mlaursen/react-md/commit/f6d43a31a13647e0b92c256975652913fb8bb34e)) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/dev-utils/package.json b/packages/dev-utils/package.json index 301009e69f..10c225624a 100644 --- a/packages/dev-utils/package.json +++ b/packages/dev-utils/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/dev-utils", - "version": "2.0.2", + "version": "2.1.0", "description": "Common build utilities for react-md. Contains helpers for building, watching, testing, etc", "private": true, "bin": { diff --git a/packages/dialog/CHANGELOG.md b/packages/dialog/CHANGELOG.md index a284198028..326551c7e1 100644 --- a/packages/dialog/CHANGELOG.md +++ b/packages/dialog/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Features + +- Improved Dark Mode using Raising Elevation + ([547877c](https://github.com/mlaursen/react-md/commit/547877c51217a544fdaad9c77e2469a45f30336e)), + closes [#860](https://github.com/mlaursen/react-md/issues/860) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/dialog/package.json b/packages/dialog/package.json index 3734d8347f..897466626b 100644 --- a/packages/dialog/package.json +++ b/packages/dialog/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/dialog", - "version": "2.0.2", + "version": "2.1.0", "description": "This package is used to create accessible dialogs and modals.", "scripts": { "build": "dev-utils build", @@ -42,14 +42,14 @@ ], "license": "MIT", "dependencies": { - "@react-md/app-bar": "^2.0.2", - "@react-md/elevation": "^2.0.2", - "@react-md/overlay": "^2.0.2", + "@react-md/app-bar": "^2.1.0", + "@react-md/elevation": "^2.1.0", + "@react-md/overlay": "^2.1.0", "@react-md/portal": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6", "react-transition-group": "^4.3.0" }, diff --git a/packages/divider/CHANGELOG.md b/packages/divider/CHANGELOG.md index c31cb10380..3b0fa99fc8 100644 --- a/packages/divider/CHANGELOG.md +++ b/packages/divider/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/divider + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/divider/package.json b/packages/divider/package.json index f4aba6f5f1..c23502ce49 100644 --- a/packages/divider/package.json +++ b/packages/divider/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/divider", - "version": "2.0.2", + "version": "2.1.0", "description": "This package is used to create horizontal or vertical dividers in your application.", "scripts": { "build": "dev-utils build", @@ -39,8 +39,8 @@ ], "license": "MIT", "dependencies": { - "@react-md/theme": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/theme": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/documentation/CHANGELOG.md b/packages/documentation/CHANGELOG.md index f2346de27b..6203c745b0 100644 --- a/packages/documentation/CHANGELOG.md +++ b/packages/documentation/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Bug Fixes + +- `AppBar` text color now defaults to + `rmd-theme-var(text-primary-on-background)` + ([2c3ea5e](https://github.com/mlaursen/react-md/commit/2c3ea5e984b033b05098d01499a41a24790b639c)) + +### Features + +- Improved Dark Mode using Raising Elevation + ([547877c](https://github.com/mlaursen/react-md/commit/547877c51217a544fdaad9c77e2469a45f30336e)), + closes [#860](https://github.com/mlaursen/react-md/issues/860) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.4](https://github.com/mlaursen/react-md/compare/v2.0.3...v2.0.4) (2020-07-10) **Note:** Version bump only for package documentation diff --git a/packages/documentation/package.json b/packages/documentation/package.json index a7913f0fd7..4d36f2b16b 100644 --- a/packages/documentation/package.json +++ b/packages/documentation/package.json @@ -1,6 +1,6 @@ { "name": "documentation", - "version": "2.0.4", + "version": "2.1.0", "description": "The documentation site for react-md", "private": true, "scripts": { @@ -22,39 +22,39 @@ }, "license": "MIT", "dependencies": { - "@react-md/alert": "^2.0.2", - "@react-md/app-bar": "^2.0.2", - "@react-md/autocomplete": "^2.0.3", - "@react-md/avatar": "^2.0.2", - "@react-md/badge": "^2.0.2", - "@react-md/button": "^2.0.2", - "@react-md/card": "^2.0.2", - "@react-md/chip": "^2.0.2", - "@react-md/dialog": "^2.0.2", - "@react-md/divider": "^2.0.2", - "@react-md/elevation": "^2.0.2", - "@react-md/expansion-panel": "^2.0.2", - "@react-md/form": "^2.0.3", - "@react-md/icon": "^2.0.2", - "@react-md/layout": "^2.0.4", - "@react-md/link": "^2.0.2", - "@react-md/list": "^2.0.2", - "@react-md/material-icons": "^2.0.2", - "@react-md/media": "^2.0.2", - "@react-md/menu": "^2.0.2", - "@react-md/overlay": "^2.0.2", + "@react-md/alert": "^2.1.0", + "@react-md/app-bar": "^2.1.0", + "@react-md/autocomplete": "^2.1.0", + "@react-md/avatar": "^2.1.0", + "@react-md/badge": "^2.1.0", + "@react-md/button": "^2.1.0", + "@react-md/card": "^2.1.0", + "@react-md/chip": "^2.1.0", + "@react-md/dialog": "^2.1.0", + "@react-md/divider": "^2.1.0", + "@react-md/elevation": "^2.1.0", + "@react-md/expansion-panel": "^2.1.0", + "@react-md/form": "^2.1.0", + "@react-md/icon": "^2.1.0", + "@react-md/layout": "^2.1.0", + "@react-md/link": "^2.1.0", + "@react-md/list": "^2.1.0", + "@react-md/material-icons": "^2.1.0", + "@react-md/media": "^2.1.0", + "@react-md/menu": "^2.1.0", + "@react-md/overlay": "^2.1.0", "@react-md/portal": "^2.0.2", - "@react-md/progress": "^2.0.2", - "@react-md/sheet": "^2.0.2", - "@react-md/states": "^2.0.2", - "@react-md/table": "^2.0.3", - "@react-md/tabs": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/tooltip": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/tree": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/progress": "^2.1.0", + "@react-md/sheet": "^2.1.0", + "@react-md/states": "^2.1.0", + "@react-md/table": "^2.1.0", + "@react-md/tabs": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/tooltip": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/tree": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "codesandbox": "^2.1.16", "cookie-parser": "^1.4.5", "date-fns": "^2.14.0", @@ -76,7 +76,7 @@ }, "devDependencies": { "@babel/core": "^7.10.4", - "@react-md/dev-utils": "^2.0.2", + "@react-md/dev-utils": "^2.1.0", "@types/cookie-parser": "^1.4.2", "@types/express": "^4.17.7", "@types/gtag.js": "^0.0.3", diff --git a/packages/elevation/CHANGELOG.md b/packages/elevation/CHANGELOG.md index cbdbaf9677..945d8aec24 100644 --- a/packages/elevation/CHANGELOG.md +++ b/packages/elevation/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/elevation + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/elevation/package.json b/packages/elevation/package.json index 9372a15075..4f877380b4 100644 --- a/packages/elevation/package.json +++ b/packages/elevation/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/elevation", - "version": "2.0.2", + "version": "2.1.0", "description": "This is a small package for react-md that can create the elevation styles in the material design spec.", "scripts": { "build": "dev-utils build", @@ -35,9 +35,9 @@ ], "license": "MIT", "dependencies": { - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/utils": "^2.0.2" + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/utils": "^2.1.0" }, "publishConfig": { "access": "public" diff --git a/packages/expansion-panel/CHANGELOG.md b/packages/expansion-panel/CHANGELOG.md index e567c6e28b..b8c78a1fd6 100644 --- a/packages/expansion-panel/CHANGELOG.md +++ b/packages/expansion-panel/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/expansion-panel + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/expansion-panel/package.json b/packages/expansion-panel/package.json index 191a439d4d..3867d7966e 100644 --- a/packages/expansion-panel/package.json +++ b/packages/expansion-panel/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/expansion-panel", - "version": "2.0.2", + "version": "2.1.0", "description": "Create accessible expansion components for accordions and disclosures.", "scripts": { "build": "dev-utils build", @@ -41,12 +41,12 @@ ], "license": "MIT", "dependencies": { - "@react-md/button": "^2.0.2", - "@react-md/card": "^2.0.2", - "@react-md/icon": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/button": "^2.1.0", + "@react-md/card": "^2.1.0", + "@react-md/icon": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/form/CHANGELOG.md b/packages/form/CHANGELOG.md index c649fc7665..7eededba28 100644 --- a/packages/form/CHANGELOG.md +++ b/packages/form/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Features + +- Improved Dark Mode using Raising Elevation + ([547877c](https://github.com/mlaursen/react-md/commit/547877c51217a544fdaad9c77e2469a45f30336e)), + closes [#860](https://github.com/mlaursen/react-md/issues/860) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.3](https://github.com/mlaursen/react-md/compare/v2.0.2...v2.0.3) (2020-07-07) ### Bug Fixes diff --git a/packages/form/package.json b/packages/form/package.json index 934c49a55d..2dd5fa5ff6 100644 --- a/packages/form/package.json +++ b/packages/form/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/form", - "version": "2.0.3", + "version": "2.1.0", "description": "This package is for creating all the different form input types.", "scripts": { "build": "dev-utils build", @@ -47,16 +47,16 @@ ], "license": "MIT", "dependencies": { - "@react-md/button": "^2.0.2", - "@react-md/icon": "^2.0.2", - "@react-md/list": "^2.0.2", + "@react-md/button": "^2.1.0", + "@react-md/icon": "^2.1.0", + "@react-md/list": "^2.1.0", "@react-md/portal": "^2.0.2", - "@react-md/progress": "^2.0.2", - "@react-md/states": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/progress": "^2.1.0", + "@react-md/states": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/icon/CHANGELOG.md b/packages/icon/CHANGELOG.md index ecdcd18274..e0db573510 100644 --- a/packages/icon/CHANGELOG.md +++ b/packages/icon/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Bug Fixes + +- Booleans in dist/scssVariables + ([f6d43a3](https://github.com/mlaursen/react-md/commit/f6d43a31a13647e0b92c256975652913fb8bb34e)) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/icon/package.json b/packages/icon/package.json index 247c36c95a..34cb1eecff 100644 --- a/packages/icon/package.json +++ b/packages/icon/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/icon", - "version": "2.0.2", + "version": "2.1.0", "description": "This package is for including icons within react-md. There is included support for both font icons and SVG icons. There is also a helper component for applying spacing between icons and text.", "scripts": { "build": "dev-utils build", @@ -41,9 +41,9 @@ ], "license": "MIT", "dependencies": { - "@react-md/theme": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/theme": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/layout/CHANGELOG.md b/packages/layout/CHANGELOG.md index 2ec841e7f8..6e79f86313 100644 --- a/packages/layout/CHANGELOG.md +++ b/packages/layout/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/layout + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.4](https://github.com/mlaursen/react-md/compare/v2.0.3...v2.0.4) (2020-07-10) ### Bug Fixes diff --git a/packages/layout/package.json b/packages/layout/package.json index ff4d0d770d..eaaefc79a0 100644 --- a/packages/layout/package.json +++ b/packages/layout/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/layout", - "version": "2.0.4", + "version": "2.1.0", "description": "This package is used to configure most of react-md as well as create some pre-defined layouts", "scripts": { "build": "dev-utils build", @@ -44,21 +44,21 @@ ], "license": "MIT", "dependencies": { - "@react-md/app-bar": "^2.0.2", - "@react-md/dialog": "^2.0.2", - "@react-md/divider": "^2.0.2", - "@react-md/form": "^2.0.3", - "@react-md/icon": "^2.0.2", - "@react-md/link": "^2.0.2", - "@react-md/list": "^2.0.2", - "@react-md/sheet": "^2.0.2", - "@react-md/states": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/tooltip": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/tree": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/app-bar": "^2.1.0", + "@react-md/dialog": "^2.1.0", + "@react-md/divider": "^2.1.0", + "@react-md/form": "^2.1.0", + "@react-md/icon": "^2.1.0", + "@react-md/link": "^2.1.0", + "@react-md/list": "^2.1.0", + "@react-md/sheet": "^2.1.0", + "@react-md/states": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/tooltip": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/tree": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/link/CHANGELOG.md b/packages/link/CHANGELOG.md index 8837dad045..cf47edac38 100644 --- a/packages/link/CHANGELOG.md +++ b/packages/link/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/link + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/link/package.json b/packages/link/package.json index 5bcd315e2e..5c84530070 100644 --- a/packages/link/package.json +++ b/packages/link/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/link", - "version": "2.0.2", + "version": "2.1.0", "description": "The base package for including a theme for react-md. This is required by most other packages.", "scripts": { "build": "dev-utils build", @@ -41,10 +41,10 @@ ], "license": "MIT", "dependencies": { - "@react-md/states": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/typography": "^2.0.2", + "@react-md/states": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/typography": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/list/CHANGELOG.md b/packages/list/CHANGELOG.md index e9254f05cc..f41b68d4c4 100644 --- a/packages/list/CHANGELOG.md +++ b/packages/list/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Bug Fixes + +- ListItem disabled states + ([7b37292](https://github.com/mlaursen/react-md/commit/7b372926289d0c1cdab76dbea9cb298e7594dfa9)) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/list/package.json b/packages/list/package.json index d51740ad8d..196024b6a9 100644 --- a/packages/list/package.json +++ b/packages/list/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/list", - "version": "2.0.2", + "version": "2.1.0", "description": "This package is used to create lists with the material design specs.", "scripts": { "build": "dev-utils build", @@ -42,13 +42,13 @@ ], "license": "MIT", "dependencies": { - "@react-md/avatar": "^2.0.2", - "@react-md/divider": "^2.0.2", - "@react-md/icon": "^2.0.2", - "@react-md/states": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/avatar": "^2.1.0", + "@react-md/divider": "^2.1.0", + "@react-md/icon": "^2.1.0", + "@react-md/states": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/material-icons/CHANGELOG.md b/packages/material-icons/CHANGELOG.md index 6e05de618b..885ce6c39c 100644 --- a/packages/material-icons/CHANGELOG.md +++ b/packages/material-icons/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/material-icons + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/material-icons/package.json b/packages/material-icons/package.json index 04302a4fdc..af640fa4dc 100644 --- a/packages/material-icons/package.json +++ b/packages/material-icons/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/material-icons", - "version": "2.0.2", + "version": "2.1.0", "description": "This package is just a simple wrapper for using material icons within react-md as either font icons or svg icons.", "scripts": { "clean": "dev-utils clean bin", @@ -47,7 +47,7 @@ ], "license": "MIT", "dependencies": { - "@react-md/icon": "^2.0.2" + "@react-md/icon": "^2.1.0" }, "devDependencies": { "@types/download": "^6.2.4", diff --git a/packages/media/CHANGELOG.md b/packages/media/CHANGELOG.md index c550841fc3..c5f5b5614d 100644 --- a/packages/media/CHANGELOG.md +++ b/packages/media/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/media + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/media/package.json b/packages/media/package.json index a6fea28788..8e6466d155 100644 --- a/packages/media/package.json +++ b/packages/media/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/media", - "version": "2.0.2", + "version": "2.1.0", "description": "This package is used for including responsive media (images, videos, etc) within your app.", "scripts": { "build": "dev-utils build", @@ -42,8 +42,8 @@ ], "license": "MIT", "dependencies": { - "@react-md/theme": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/theme": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/menu/CHANGELOG.md b/packages/menu/CHANGELOG.md index 45f8c0ecf6..367205ce83 100644 --- a/packages/menu/CHANGELOG.md +++ b/packages/menu/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Features + +- Improved Dark Mode using Raising Elevation + ([547877c](https://github.com/mlaursen/react-md/commit/547877c51217a544fdaad9c77e2469a45f30336e)), + closes [#860](https://github.com/mlaursen/react-md/issues/860) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/menu/package.json b/packages/menu/package.json index 80b7bd6401..ac1e2d320a 100644 --- a/packages/menu/package.json +++ b/packages/menu/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/menu", - "version": "2.0.2", + "version": "2.1.0", "description": "Create menus that auto-position themselves within the viewport and adhere to the accessibility guidelines", "scripts": { "build": "dev-utils build", @@ -42,16 +42,16 @@ ], "license": "MIT", "dependencies": { - "@react-md/app-bar": "^2.0.2", - "@react-md/button": "^2.0.2", - "@react-md/divider": "^2.0.2", - "@react-md/elevation": "^2.0.2", - "@react-md/icon": "^2.0.2", - "@react-md/list": "^2.0.2", - "@react-md/states": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/app-bar": "^2.1.0", + "@react-md/button": "^2.1.0", + "@react-md/divider": "^2.1.0", + "@react-md/elevation": "^2.1.0", + "@react-md/icon": "^2.1.0", + "@react-md/list": "^2.1.0", + "@react-md/states": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/overlay/CHANGELOG.md b/packages/overlay/CHANGELOG.md index 1b72987db3..a8e5ee1283 100644 --- a/packages/overlay/CHANGELOG.md +++ b/packages/overlay/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/overlay + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/overlay/package.json b/packages/overlay/package.json index 5fcdb0d3ed..24476504b5 100644 --- a/packages/overlay/package.json +++ b/packages/overlay/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/overlay", - "version": "2.0.2", + "version": "2.1.0", "description": "A very simple package for dynamically creating overlays.", "scripts": { "build": "dev-utils build", @@ -40,9 +40,9 @@ "license": "MIT", "dependencies": { "@react-md/portal": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6", "react-transition-group": "^4.3.0" }, diff --git a/packages/progress/CHANGELOG.md b/packages/progress/CHANGELOG.md index 5b34593ac7..79eb37a3cb 100644 --- a/packages/progress/CHANGELOG.md +++ b/packages/progress/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/progress + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/progress/package.json b/packages/progress/package.json index a3af5b7725..5b815bfd43 100644 --- a/packages/progress/package.json +++ b/packages/progress/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/progress", - "version": "2.0.2", + "version": "2.1.0", "description": "Create horizontal, vertical, and circular progress indicators", "scripts": { "build": "dev-utils build", @@ -39,9 +39,9 @@ ], "license": "MIT", "dependencies": { - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/react-md/CHANGELOG.md b/packages/react-md/CHANGELOG.md index 6ac10148c8..ccf0934825 100644 --- a/packages/react-md/CHANGELOG.md +++ b/packages/react-md/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package react-md + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.4](https://github.com/mlaursen/react-md/compare/v2.0.3...v2.0.4) (2020-07-10) **Note:** Version bump only for package react-md diff --git a/packages/react-md/package.json b/packages/react-md/package.json index 08aeae6cd8..98e7a5947e 100644 --- a/packages/react-md/package.json +++ b/packages/react-md/package.json @@ -1,6 +1,6 @@ { "name": "react-md", - "version": "2.0.4", + "version": "2.1.0", "description": "This is the full react-md library bundled together for convenience.", "scripts": { "umd": "rollup -c", @@ -40,39 +40,39 @@ ], "license": "MIT", "dependencies": { - "@react-md/alert": "^2.0.2", - "@react-md/app-bar": "^2.0.2", - "@react-md/autocomplete": "^2.0.3", - "@react-md/avatar": "^2.0.2", - "@react-md/badge": "^2.0.2", - "@react-md/button": "^2.0.2", - "@react-md/card": "^2.0.2", - "@react-md/chip": "^2.0.2", - "@react-md/dialog": "^2.0.2", - "@react-md/divider": "^2.0.2", - "@react-md/elevation": "^2.0.2", - "@react-md/expansion-panel": "^2.0.2", - "@react-md/form": "^2.0.3", - "@react-md/icon": "^2.0.2", - "@react-md/layout": "^2.0.4", - "@react-md/link": "^2.0.2", - "@react-md/list": "^2.0.2", - "@react-md/material-icons": "^2.0.2", - "@react-md/media": "^2.0.2", - "@react-md/menu": "^2.0.2", - "@react-md/overlay": "^2.0.2", + "@react-md/alert": "^2.1.0", + "@react-md/app-bar": "^2.1.0", + "@react-md/autocomplete": "^2.1.0", + "@react-md/avatar": "^2.1.0", + "@react-md/badge": "^2.1.0", + "@react-md/button": "^2.1.0", + "@react-md/card": "^2.1.0", + "@react-md/chip": "^2.1.0", + "@react-md/dialog": "^2.1.0", + "@react-md/divider": "^2.1.0", + "@react-md/elevation": "^2.1.0", + "@react-md/expansion-panel": "^2.1.0", + "@react-md/form": "^2.1.0", + "@react-md/icon": "^2.1.0", + "@react-md/layout": "^2.1.0", + "@react-md/link": "^2.1.0", + "@react-md/list": "^2.1.0", + "@react-md/material-icons": "^2.1.0", + "@react-md/media": "^2.1.0", + "@react-md/menu": "^2.1.0", + "@react-md/overlay": "^2.1.0", "@react-md/portal": "^2.0.2", - "@react-md/progress": "^2.0.2", - "@react-md/sheet": "^2.0.2", - "@react-md/states": "^2.0.2", - "@react-md/table": "^2.0.3", - "@react-md/tabs": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/tooltip": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/tree": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2" + "@react-md/progress": "^2.1.0", + "@react-md/sheet": "^2.1.0", + "@react-md/states": "^2.1.0", + "@react-md/table": "^2.1.0", + "@react-md/tabs": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/tooltip": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/tree": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^13.0.0", diff --git a/packages/sheet/CHANGELOG.md b/packages/sheet/CHANGELOG.md index f41306a25f..4b1f9b6f14 100644 --- a/packages/sheet/CHANGELOG.md +++ b/packages/sheet/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Features + +- Improved Dark Mode using Raising Elevation + ([547877c](https://github.com/mlaursen/react-md/commit/547877c51217a544fdaad9c77e2469a45f30336e)), + closes [#860](https://github.com/mlaursen/react-md/issues/860) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/sheet/package.json b/packages/sheet/package.json index 7abde18ec0..62e8754008 100644 --- a/packages/sheet/package.json +++ b/packages/sheet/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/sheet", - "version": "2.0.2", + "version": "2.1.0", "description": "A package for making temporary sheets of material (normally for navigation or details).", "scripts": { "build": "dev-utils build", @@ -41,12 +41,12 @@ ], "license": "MIT", "dependencies": { - "@react-md/dialog": "^2.0.2", - "@react-md/elevation": "^2.0.2", - "@react-md/overlay": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/dialog": "^2.1.0", + "@react-md/elevation": "^2.1.0", + "@react-md/overlay": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/states/CHANGELOG.md b/packages/states/CHANGELOG.md index 834fa4c49f..073c05f3ea 100644 --- a/packages/states/CHANGELOG.md +++ b/packages/states/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/states + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/states/package.json b/packages/states/package.json index 6720adda88..d84b222940 100644 --- a/packages/states/package.json +++ b/packages/states/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/states", - "version": "2.0.2", + "version": "2.1.0", "description": "A package for adding the different focus, hover, selected, active, etc states to elements", "scripts": { "build": "dev-utils build", @@ -39,9 +39,9 @@ ], "license": "MIT", "dependencies": { - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/utils": "^2.1.0", "react-transition-group": "^4.3.0" }, "devDependencies": { diff --git a/packages/table/CHANGELOG.md b/packages/table/CHANGELOG.md index 1e35733643..92ea4011f0 100644 --- a/packages/table/CHANGELOG.md +++ b/packages/table/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/table + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.3](https://github.com/mlaursen/react-md/compare/v2.0.2...v2.0.3) (2020-07-07) **Note:** Version bump only for package @react-md/table diff --git a/packages/table/package.json b/packages/table/package.json index b6f0106ca0..a827fcc3cf 100644 --- a/packages/table/package.json +++ b/packages/table/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/table", - "version": "2.0.3", + "version": "2.1.0", "description": "Create responsive data tables and accessible fixed tables", "scripts": { "build": "dev-utils build", @@ -41,12 +41,12 @@ ], "license": "MIT", "dependencies": { - "@react-md/divider": "^2.0.2", - "@react-md/form": "^2.0.3", - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/divider": "^2.1.0", + "@react-md/form": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/tabs/CHANGELOG.md b/packages/tabs/CHANGELOG.md index e90b43e263..a2a318a5c8 100644 --- a/packages/tabs/CHANGELOG.md +++ b/packages/tabs/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/tabs + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/tabs/package.json b/packages/tabs/package.json index d52b149b8d..92e3b132d0 100644 --- a/packages/tabs/package.json +++ b/packages/tabs/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/tabs", - "version": "2.0.2", + "version": "2.1.0", "description": "Create accessible tabs to organize data across multiple screens or interactions.", "scripts": { "build": "dev-utils build", @@ -42,12 +42,12 @@ ], "license": "MIT", "dependencies": { - "@react-md/icon": "^2.0.2", - "@react-md/states": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/icon": "^2.1.0", + "@react-md/states": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6", "react-transition-group": "^4.3.0" }, diff --git a/packages/theme/CHANGELOG.md b/packages/theme/CHANGELOG.md index 249f7609d1..772c5014cc 100644 --- a/packages/theme/CHANGELOG.md +++ b/packages/theme/CHANGELOG.md @@ -3,6 +3,24 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Bug Fixes + +- Booleans in dist/scssVariables + ([f6d43a3](https://github.com/mlaursen/react-md/commit/f6d43a31a13647e0b92c256975652913fb8bb34e)) + +### Features + +- Improved Dark Mode using Raising Elevation + ([547877c](https://github.com/mlaursen/react-md/commit/547877c51217a544fdaad9c77e2469a45f30336e)), + closes [#860](https://github.com/mlaursen/react-md/issues/860) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/theme/package.json b/packages/theme/package.json index 60564d4ec9..f514d011ca 100644 --- a/packages/theme/package.json +++ b/packages/theme/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/theme", - "version": "2.0.2", + "version": "2.1.0", "description": "The base package for including a theme for react-md. This is required by most other packages.", "scripts": { "build": "dev-utils build", @@ -36,7 +36,7 @@ ], "license": "MIT", "dependencies": { - "@react-md/utils": "^2.0.2" + "@react-md/utils": "^2.1.0" }, "devDependencies": { "react": "^16.13.1", diff --git a/packages/tooltip/CHANGELOG.md b/packages/tooltip/CHANGELOG.md index dabd2ac2b4..81185b0c35 100644 --- a/packages/tooltip/CHANGELOG.md +++ b/packages/tooltip/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/tooltip + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/tooltip/package.json b/packages/tooltip/package.json index b491fa2cfd..2dd86250a2 100644 --- a/packages/tooltip/package.json +++ b/packages/tooltip/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/tooltip", - "version": "2.0.2", + "version": "2.1.0", "description": "Create accessible tooltips within react-md based on the material design specifications.", "scripts": { "build": "dev-utils build", @@ -43,10 +43,10 @@ "license": "MIT", "dependencies": { "@react-md/portal": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/typography": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/typography": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6", "react-transition-group": "^4.3.0" }, diff --git a/packages/transition/CHANGELOG.md b/packages/transition/CHANGELOG.md index ab0dff5e7d..83d2112a55 100644 --- a/packages/transition/CHANGELOG.md +++ b/packages/transition/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/transition + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/transition/package.json b/packages/transition/package.json index 6f09a8fb9a..487204b6e1 100644 --- a/packages/transition/package.json +++ b/packages/transition/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/transition", - "version": "2.0.2", + "version": "2.1.0", "description": "A package for working with react-md to use some simple transitions.", "scripts": { "build": "dev-utils build", @@ -41,8 +41,8 @@ "license": "MIT", "dependencies": { "@react-md/portal": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/theme": "^2.1.0", + "@react-md/utils": "^2.1.0", "@types/react-transition-group": "^4.2.4", "classnames": "^2.2.6", "react-transition-group": "^4.3.0" diff --git a/packages/tree/CHANGELOG.md b/packages/tree/CHANGELOG.md index a2ce55338c..361cddf93b 100644 --- a/packages/tree/CHANGELOG.md +++ b/packages/tree/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Bug Fixes + +- Tree focused index after expanding all with asterisk + ([8547629](https://github.com/mlaursen/react-md/commit/854762991dfab43a89191ee29cd2acc7e43ec236)) +- Tree keyboard movement for child items that are expanded + ([fadddc7](https://github.com/mlaursen/react-md/commit/fadddc7798be9179a9db8a937455b9d989e38c79)) +- Tree scrolling elements into view + ([eef48dc](https://github.com/mlaursen/react-md/commit/eef48dcc547dae6146a3b2fd04c7a2ad13043036)) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/tree/package.json b/packages/tree/package.json index 3b6a6426b8..18a78824c2 100644 --- a/packages/tree/package.json +++ b/packages/tree/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/tree", - "version": "2.0.2", + "version": "2.1.0", "description": "A package for creating an accessible tree component following the tree role.", "scripts": { "build": "dev-utils build", @@ -40,11 +40,11 @@ ], "license": "MIT", "dependencies": { - "@react-md/icon": "^2.0.2", - "@react-md/list": "^2.0.2", - "@react-md/theme": "^2.0.2", - "@react-md/transition": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/icon": "^2.1.0", + "@react-md/list": "^2.1.0", + "@react-md/theme": "^2.1.0", + "@react-md/transition": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/typography/CHANGELOG.md b/packages/typography/CHANGELOG.md index 0aeb62b381..480a362f45 100644 --- a/packages/typography/CHANGELOG.md +++ b/packages/typography/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +**Note:** Version bump only for package @react-md/typography + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/typography/package.json b/packages/typography/package.json index 289bda593e..039d1b8a98 100644 --- a/packages/typography/package.json +++ b/packages/typography/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/typography", - "version": "2.0.2", + "version": "2.1.0", "description": "The base package for including typography for react-md.", "scripts": { "build": "dev-utils build", @@ -39,8 +39,8 @@ ], "license": "MIT", "dependencies": { - "@react-md/theme": "^2.0.2", - "@react-md/utils": "^2.0.2", + "@react-md/theme": "^2.1.0", + "@react-md/utils": "^2.1.0", "classnames": "^2.2.6" }, "devDependencies": { diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index f9649239d2..3fb9ff9826 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -3,6 +3,25 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.1.0](https://github.com/mlaursen/react-md/compare/v2.0.4...v2.1.0) (2020-07-12) + +### Bug Fixes + +- Booleans in dist/scssVariables + ([f6d43a3](https://github.com/mlaursen/react-md/commit/f6d43a31a13647e0b92c256975652913fb8bb34e)) +- Scroll active element into view while focusing + ([a9a0902](https://github.com/mlaursen/react-md/commit/a9a090268f8aecb8b7478dc3fb6c06eec346c62a)) + +### Features + +- Added new mixin for optional css-modules + ([28ba828](https://github.com/mlaursen/react-md/commit/28ba8281489ddfa794a61749cb32817a9bd64311)) + +# Change Log + +All notable changes to this project will be documented in this file. See +[Conventional Commits](https://conventionalcommits.org) for commit guidelines. + ## [2.0.2](https://github.com/mlaursen/react-md/compare/v2.0.1...v2.0.2) (2020-06-30) ### Bug Fixes diff --git a/packages/utils/package.json b/packages/utils/package.json index 6fa8bd2f8b..2580589bb3 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/utils", - "version": "2.0.2", + "version": "2.1.0", "description": "General utils for react-md.", "scripts": { "build": "dev-utils build",