Skip to content

Commit

Permalink
chore(release): publish v2.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Mar 23, 2021
1 parent 89e2acf commit 4fb8828
Show file tree
Hide file tree
Showing 77 changed files with 703 additions and 269 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,35 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.7.1](https://github.com/mlaursen/react-md/compare/v2.7.0...v2.7.1) (2021-03-23)


### Bug Fixes

* **@react-md/form:** `Select` correctly respects the `readOnly` prop ([d9a0262](https://github.com/mlaursen/react-md/commit/d9a0262d24eaac49127092f2b6df3eb71bdf8843)), closes [#1089](https://github.com/mlaursen/react-md/issues/1089)
* **@react-md/form:** `Select` correctly updates for the `dense` spec ([2930595](https://github.com/mlaursen/react-md/commit/29305959f0a128376895b6106700226856c7b78b)), closes [#1089](https://github.com/mlaursen/react-md/issues/1089)
* **@react-md/utils:** useTabFocusWrap when only one element ([25178d7](https://github.com/mlaursen/react-md/commit/25178d7c691e3e6fbb2ccaf93cf3c96a0e7c5380))
* **umd:** now correctly use production string for UMD bundles ([a9b78ad](https://github.com/mlaursen/react-md/commit/a9b78ad29807c0264b6ab0d99737eb8899501b33))


### Documentation

* **react-md.dev:** fixed build error after upgrading `next` ([1861731](https://github.com/mlaursen/react-md/commit/18617317d79f400865fbd249af23d4ba17e00b49))


### Other Internal Changes

* **@react-md/dev-utils:** GitHub release surrounds libsize in code block ([d3d122a](https://github.com/mlaursen/react-md/commit/d3d122a8c2ab7d4ebb14a09118f071b07601f5c4))
* **@react-md/utils:** Added a simple `useOnUnmount` hook ([96f3cc0](https://github.com/mlaursen/react-md/commit/96f3cc04beacacd3a5ffb64ce50c42646f7e9e7d))
* **react-md.dev:** fixed Demo name replacement ([70e60e1](https://github.com/mlaursen/react-md/commit/70e60e1b64325782abd10e8fbc044dcd2fda3a9b))
* **ts:** stopped using FC type ([c5daa47](https://github.com/mlaursen/react-md/commit/c5daa47d73516e075c036fd745e7228d7f155a62))
* **workflow:** added develop branch to workflow triggers ([c379ce3](https://github.com/mlaursen/react-md/commit/c379ce3ee13d1108f191e7da1c7760b55cc7d6d6))






# [2.7.0](https://github.com/mlaursen/react-md/compare/v2.6.0...v2.7.0) (2021-02-28)


Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,9 +189,9 @@ estimated size for this library, check out the results below:
yarn dev-utils libsize

The gizipped UMD bundle sizes are:
- dist/umd/react-md.production.min.js 99.21 KB
- dist/umd/react-md-with-font-icons.production.min.js 122.31 KB
- dist/umd/react-md-with-svg-icons.production.min.js 188.89 KB
- dist/umd/react-md.production.min.js 82.35 KB
- dist/umd/react-md-with-font-icons.production.min.js 106.47 KB
- dist/umd/react-md-with-svg-icons.production.min.js 172.53 KB

The min and max gzipped CSS bundle sizes are:
- themes/react-md.grey-red-700-light.min.css 17.25 KB
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
},
"useWorkspaces": true,
"npmClient": "yarn",
"version": "2.7.0"
"version": "2.7.1"
}
12 changes: 12 additions & 0 deletions packages/alert/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.1](https://github.com/mlaursen/react-md/compare/v2.7.0...v2.7.1) (2021-03-23)


### Other Internal Changes

* **ts:** stopped using FC type ([c5daa47](https://github.com/mlaursen/react-md/commit/c5daa47d73516e075c036fd745e7228d7f155a62))






# [2.7.0](https://github.com/mlaursen/react-md/compare/v2.6.0...v2.7.0) (2021-02-28)


Expand Down
14 changes: 7 additions & 7 deletions packages/alert/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-md/alert",
"version": "2.7.0",
"version": "2.7.1",
"description": "Create accessible alerts through snackbars and banners.",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand Down Expand Up @@ -38,13 +38,13 @@
],
"license": "MIT",
"dependencies": {
"@react-md/button": "^2.7.0",
"@react-md/elevation": "^2.7.0",
"@react-md/button": "^2.7.1",
"@react-md/elevation": "^2.7.1",
"@react-md/portal": "^2.7.0",
"@react-md/theme": "^2.7.0",
"@react-md/transition": "^2.7.0",
"@react-md/typography": "^2.7.0",
"@react-md/utils": "^2.7.0",
"@react-md/theme": "^2.7.1",
"@react-md/transition": "^2.7.1",
"@react-md/typography": "^2.7.1",
"@react-md/utils": "^2.7.1",
"classnames": "^2.2.6",
"react-transition-group": "^4.4.1"
},
Expand Down
12 changes: 12 additions & 0 deletions packages/app-bar/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.1](https://github.com/mlaursen/react-md/compare/v2.7.0...v2.7.1) (2021-03-23)


### Other Internal Changes

* **ts:** stopped using FC type ([c5daa47](https://github.com/mlaursen/react-md/commit/c5daa47d73516e075c036fd745e7228d7f155a62))






# [2.7.0](https://github.com/mlaursen/react-md/compare/v2.6.0...v2.7.0) (2021-02-28)


Expand Down
14 changes: 7 additions & 7 deletions packages/app-bar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-md/app-bar",
"version": "2.7.0",
"version": "2.7.1",
"description": "This small package implments the AppBar spec in material design.",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand Down Expand Up @@ -36,12 +36,12 @@
],
"license": "MIT",
"dependencies": {
"@react-md/button": "^2.7.0",
"@react-md/elevation": "^2.7.0",
"@react-md/icon": "^2.7.0",
"@react-md/theme": "^2.7.0",
"@react-md/typography": "^2.7.0",
"@react-md/utils": "^2.7.0",
"@react-md/button": "^2.7.1",
"@react-md/elevation": "^2.7.1",
"@react-md/icon": "^2.7.1",
"@react-md/theme": "^2.7.1",
"@react-md/typography": "^2.7.1",
"@react-md/utils": "^2.7.1",
"classnames": "^2.2.6"
},
"devDependencies": {
Expand Down
12 changes: 12 additions & 0 deletions packages/autocomplete/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.1](https://github.com/mlaursen/react-md/compare/v2.7.0...v2.7.1) (2021-03-23)


### Other Internal Changes

* **ts:** stopped using FC type ([c5daa47](https://github.com/mlaursen/react-md/commit/c5daa47d73516e075c036fd745e7228d7f155a62))






# [2.7.0](https://github.com/mlaursen/react-md/compare/v2.6.0...v2.7.0) (2021-02-28)


Expand Down
16 changes: 8 additions & 8 deletions packages/autocomplete/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-md/autocomplete",
"version": "2.7.0",
"version": "2.7.1",
"description": "",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand Down Expand Up @@ -38,14 +38,14 @@
],
"license": "MIT",
"dependencies": {
"@react-md/form": "^2.7.0",
"@react-md/list": "^2.7.0",
"@react-md/form": "^2.7.1",
"@react-md/list": "^2.7.1",
"@react-md/portal": "^2.7.0",
"@react-md/states": "^2.7.0",
"@react-md/theme": "^2.7.0",
"@react-md/transition": "^2.7.0",
"@react-md/typography": "^2.7.0",
"@react-md/utils": "^2.7.0",
"@react-md/states": "^2.7.1",
"@react-md/theme": "^2.7.1",
"@react-md/transition": "^2.7.1",
"@react-md/typography": "^2.7.1",
"@react-md/utils": "^2.7.1",
"classnames": "^2.2.6"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/avatar/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.7.1](https://github.com/mlaursen/react-md/compare/v2.7.0...v2.7.1) (2021-03-23)

**Note:** Version bump only for package @react-md/avatar





# [2.7.0](https://github.com/mlaursen/react-md/compare/v2.6.0...v2.7.0) (2021-02-28)


Expand Down
8 changes: 4 additions & 4 deletions packages/avatar/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-md/avatar",
"version": "2.7.0",
"version": "2.7.1",
"description": "This package is used to avatars which are used to symbolize people or objects.",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand Down Expand Up @@ -36,9 +36,9 @@
],
"license": "MIT",
"dependencies": {
"@react-md/icon": "^2.7.0",
"@react-md/theme": "^2.7.0",
"@react-md/utils": "^2.7.0",
"@react-md/icon": "^2.7.1",
"@react-md/theme": "^2.7.1",
"@react-md/utils": "^2.7.1",
"classnames": "^2.2.6"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/badge/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.7.1](https://github.com/mlaursen/react-md/compare/v2.7.0...v2.7.1) (2021-03-23)

**Note:** Version bump only for package @react-md/badge





# [2.7.0](https://github.com/mlaursen/react-md/compare/v2.6.0...v2.7.0) (2021-02-28)


Expand Down
12 changes: 6 additions & 6 deletions packages/badge/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-md/badge",
"version": "2.7.0",
"version": "2.7.1",
"description": "Create a badge that is fixed to another element. This is generally used for notification counts.",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand Down Expand Up @@ -37,11 +37,11 @@
],
"license": "MIT",
"dependencies": {
"@react-md/button": "^2.7.0",
"@react-md/icon": "^2.7.0",
"@react-md/theme": "^2.7.0",
"@react-md/typography": "^2.7.0",
"@react-md/utils": "^2.7.0",
"@react-md/button": "^2.7.1",
"@react-md/icon": "^2.7.1",
"@react-md/theme": "^2.7.1",
"@react-md/typography": "^2.7.1",
"@react-md/utils": "^2.7.1",
"classnames": "^2.2.6"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/button/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.7.1](https://github.com/mlaursen/react-md/compare/v2.7.0...v2.7.1) (2021-03-23)

**Note:** Version bump only for package @react-md/button





# [2.7.0](https://github.com/mlaursen/react-md/compare/v2.6.0...v2.7.0) (2021-02-28)


Expand Down
16 changes: 8 additions & 8 deletions packages/button/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-md/button",
"version": "2.7.0",
"version": "2.7.1",
"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.",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand Down Expand Up @@ -37,13 +37,13 @@
],
"license": "MIT",
"dependencies": {
"@react-md/elevation": "^2.7.0",
"@react-md/icon": "^2.7.0",
"@react-md/states": "^2.7.0",
"@react-md/theme": "^2.7.0",
"@react-md/transition": "^2.7.0",
"@react-md/typography": "^2.7.0",
"@react-md/utils": "^2.7.0",
"@react-md/elevation": "^2.7.1",
"@react-md/icon": "^2.7.1",
"@react-md/states": "^2.7.1",
"@react-md/theme": "^2.7.1",
"@react-md/transition": "^2.7.1",
"@react-md/typography": "^2.7.1",
"@react-md/utils": "^2.7.1",
"classnames": "^2.2.6"
},
"devDependencies": {
Expand Down
8 changes: 8 additions & 0 deletions packages/card/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.7.1](https://github.com/mlaursen/react-md/compare/v2.7.0...v2.7.1) (2021-03-23)

**Note:** Version bump only for package @react-md/card





# [2.7.0](https://github.com/mlaursen/react-md/compare/v2.6.0...v2.7.0) (2021-02-28)


Expand Down
16 changes: 8 additions & 8 deletions packages/card/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-md/card",
"version": "2.7.0",
"version": "2.7.1",
"description": "Create interactable cards from the material design specifications.",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand Down Expand Up @@ -37,13 +37,13 @@
],
"license": "MIT",
"dependencies": {
"@react-md/divider": "^2.7.0",
"@react-md/elevation": "^2.7.0",
"@react-md/icon": "^2.7.0",
"@react-md/states": "^2.7.0",
"@react-md/theme": "^2.7.0",
"@react-md/typography": "^2.7.0",
"@react-md/utils": "^2.7.0",
"@react-md/divider": "^2.7.1",
"@react-md/elevation": "^2.7.1",
"@react-md/icon": "^2.7.1",
"@react-md/states": "^2.7.1",
"@react-md/theme": "^2.7.1",
"@react-md/typography": "^2.7.1",
"@react-md/utils": "^2.7.1",
"classnames": "^2.2.6"
},
"devDependencies": {
Expand Down
12 changes: 12 additions & 0 deletions packages/chip/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.1](https://github.com/mlaursen/react-md/compare/v2.7.0...v2.7.1) (2021-03-23)


### Other Internal Changes

* **ts:** stopped using FC type ([c5daa47](https://github.com/mlaursen/react-md/commit/c5daa47d73516e075c036fd745e7228d7f155a62))






# [2.7.0](https://github.com/mlaursen/react-md/compare/v2.6.0...v2.7.0) (2021-02-28)


Expand Down
Loading

0 comments on commit 4fb8828

Please sign in to comment.