Skip to content

Commit

Permalink
chore(release): publish v3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Sep 10, 2021
1 parent 6ed3f54 commit 5891a32
Show file tree
Hide file tree
Showing 80 changed files with 1,000 additions and 251 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,47 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.1.0](https://github.com/mlaursen/react-md/compare/v3.0.1...v3.1.0) (2021-09-10)


### Bug Fixes

* **@react-md/dialog:** `DialogFooter` align prop applies correct classes ([644971d](https://github.com/mlaursen/react-md/commit/644971da4f84994028a59f7a1d2518c469a3b71b))
* **@react-md/form:** `TooManyFilesError` is only used if all the other validation has passed ([6ed3f54](https://github.com/mlaursen/react-md/commit/6ed3f545fd292ff9d8dfe0c8d554c1dfe3450a01))
* **@react-md/form:** ensure file names end with a period for `useFileUpload` extensions ([9238140](https://github.com/mlaursen/react-md/commit/9238140311c0f27048cd634971bc98fddd531df2))
* **@react-md/form:** prevent infinite rerenders when calling useFileUpload's reset in useEffect ([b2875b1](https://github.com/mlaursen/react-md/commit/b2875b17634651ec26365268658445260cd675ca))
* **@react-md/utils:** `useDropzone` fix around onDragLeave behavior ([fdff9f2](https://github.com/mlaursen/react-md/commit/fdff9f25f259d02fe8a039cc5f2ae94ed86e82f9))
* **typescript:** updated all array types to be readonly ([8f71bcb](https://github.com/mlaursen/react-md/commit/8f71bcbde12928434975c6836079c3dda7c6ab1f))


### Features

* **@react-md/form:** add `isValidFileName` option to `useFileUpload` ([dbd0375](https://github.com/mlaursen/react-md/commit/dbd03756b1b21c528fc0fdee250672e3f52a5997))
* **@react-md/typography:** override default typography without globals ([ce89374](https://github.com/mlaursen/react-md/commit/ce893741e3ca950d38c6808f31b1e3549a3f3410)), closes [#1239](https://github.com/mlaursen/react-md/issues/1239)


### Documentation

* **react-md.dev:** updated `sassdoc` for new module system ([4746d26](https://github.com/mlaursen/react-md/commit/4746d265adcc2dcaffb260a565462b9d9c28805e))
* **react-md.dev:** updated SortableColumns example to import SortOrder type ([b629e3e](https://github.com/mlaursen/react-md/commit/b629e3e3873ecc34ac334ff560269c4177616afa))


### Other Internal Changes

* ran `yarn format` to include new files ([48d3d7f](https://github.com/mlaursen/react-md/commit/48d3d7fddb0435edf7dec9d0ba38cf3f0f251709))
* Simplifying format and covering json and yml files ([#1227](https://github.com/mlaursen/react-md/issues/1227)) ([045ba5e](https://github.com/mlaursen/react-md/commit/045ba5e2ade2b6926af32c5a530c1fc81d739d97))
* **@react-md/dev-utils:** fixed spelling of gzipped ([baad174](https://github.com/mlaursen/react-md/commit/baad1747480e2b11129f7992571e6b72641436e3))
* **examples:** updated nextjs examples to latest version of `next` ([b50d745](https://github.com/mlaursen/react-md/commit/b50d7456094ac3aad7b42be5c50a7b04490bed62))
* **react-md.dev:** added `sassdoc` hot-reloading ([9d58e09](https://github.com/mlaursen/react-md/commit/9d58e09265216c76352c0d9c4d66aad494b34220))
* **react-md.dev:** updated `sassdoc` examples to be linkable ([9ed096e](https://github.com/mlaursen/react-md/commit/9ed096ed3d4912dc6075472a5bb27038d6bf16a5))
* **react-md.dev:** Updated fonts for latest nextjs build optimizations ([ca9ecbd](https://github.com/mlaursen/react-md/commit/ca9ecbdd03813722fda1fc097676d051329c8539))
* **typescript:** support [email protected] ([5a9dd72](https://github.com/mlaursen/react-md/commit/5a9dd729e1f34df326aee20eca9a7436bb152cd4))






## [3.0.1](https://github.com/mlaursen/react-md/compare/v3.0.0...v3.0.1) (2021-08-15)


Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -186,10 +186,10 @@ estimated size for this library, check out the results below:
```sh
yarn dev-utils libsize

The gizipped UMD bundle sizes are:
- dist/umd/react-md.production.min.js 86.41 KB
- dist/umd/react-md-with-font-icons.production.min.js 110.68 KB
- dist/umd/react-md-with-svg-icons.production.min.js 176.46 KB
The gzipped UMD bundle sizes are:
- dist/umd/react-md.production.min.js 86.75 KB
- dist/umd/react-md-with-font-icons.production.min.js 111.03 KB
- dist/umd/react-md-with-svg-icons.production.min.js 176.83 KB

The min and max gzipped CSS bundle sizes are:
- themes/react-md.grey-red-700-light.min.css 17.63 KB
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
},
"useWorkspaces": true,
"npmClient": "yarn",
"version": "3.0.1"
"version": "3.1.0"
}
17 changes: 17 additions & 0 deletions packages/alert/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.1.0](https://github.com/mlaursen/react-md/compare/v3.0.1...v3.1.0) (2021-09-10)


### Bug Fixes

* **typescript:** updated all array types to be readonly ([8f71bcb](https://github.com/mlaursen/react-md/commit/8f71bcbde12928434975c6836079c3dda7c6ab1f))


### Other Internal Changes

* ran `yarn format` to include new files ([48d3d7f](https://github.com/mlaursen/react-md/commit/48d3d7fddb0435edf7dec9d0ba38cf3f0f251709))






## [3.0.1](https://github.com/mlaursen/react-md/compare/v3.0.0...v3.0.1) (2021-08-15)


Expand Down
16 changes: 8 additions & 8 deletions packages/alert/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-md/alert",
"version": "3.0.1",
"version": "3.1.0",
"description": "Create accessible alerts through snackbars and banners.",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand Down Expand Up @@ -31,13 +31,13 @@
],
"license": "MIT",
"dependencies": {
"@react-md/button": "^3.0.1",
"@react-md/elevation": "^3.0.1",
"@react-md/portal": "^3.0.0",
"@react-md/theme": "^3.0.0",
"@react-md/transition": "^3.0.1",
"@react-md/typography": "^3.0.0",
"@react-md/utils": "^3.0.0",
"@react-md/button": "^3.1.0",
"@react-md/elevation": "^3.1.0",
"@react-md/portal": "^3.1.0",
"@react-md/theme": "^3.1.0",
"@react-md/transition": "^3.1.0",
"@react-md/typography": "^3.1.0",
"@react-md/utils": "^3.1.0",
"classnames": "^2.3.1",
"react-transition-group": "^4.4.2"
},
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.

# [3.1.0](https://github.com/mlaursen/react-md/compare/v3.0.1...v3.1.0) (2021-09-10)


### Other Internal Changes

* ran `yarn format` to include new files ([48d3d7f](https://github.com/mlaursen/react-md/commit/48d3d7fddb0435edf7dec9d0ba38cf3f0f251709))






## [3.0.1](https://github.com/mlaursen/react-md/compare/v3.0.0...v3.0.1) (2021-08-15)


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": "3.0.1",
"version": "3.1.0",
"description": "This small package implments the AppBar spec in material design.",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand Down Expand Up @@ -29,12 +29,12 @@
],
"license": "MIT",
"dependencies": {
"@react-md/button": "^3.0.1",
"@react-md/elevation": "^3.0.1",
"@react-md/icon": "^3.0.0",
"@react-md/theme": "^3.0.0",
"@react-md/typography": "^3.0.0",
"@react-md/utils": "^3.0.0",
"@react-md/button": "^3.1.0",
"@react-md/elevation": "^3.1.0",
"@react-md/icon": "^3.1.0",
"@react-md/theme": "^3.1.0",
"@react-md/typography": "^3.1.0",
"@react-md/utils": "^3.1.0",
"classnames": "^2.3.1"
},
"devDependencies": {
Expand Down
17 changes: 17 additions & 0 deletions packages/autocomplete/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [3.1.0](https://github.com/mlaursen/react-md/compare/v3.0.1...v3.1.0) (2021-09-10)


### Bug Fixes

* **typescript:** updated all array types to be readonly ([8f71bcb](https://github.com/mlaursen/react-md/commit/8f71bcbde12928434975c6836079c3dda7c6ab1f))


### Other Internal Changes

* ran `yarn format` to include new files ([48d3d7f](https://github.com/mlaursen/react-md/commit/48d3d7fddb0435edf7dec9d0ba38cf3f0f251709))






## [3.0.1](https://github.com/mlaursen/react-md/compare/v3.0.0...v3.0.1) (2021-08-15)


Expand Down
18 changes: 9 additions & 9 deletions packages/autocomplete/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@react-md/autocomplete",
"version": "3.0.1",
"version": "3.1.0",
"description": "",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand Down Expand Up @@ -31,14 +31,14 @@
],
"license": "MIT",
"dependencies": {
"@react-md/form": "^3.0.1",
"@react-md/list": "^3.0.1",
"@react-md/portal": "^3.0.0",
"@react-md/states": "^3.0.1",
"@react-md/theme": "^3.0.0",
"@react-md/transition": "^3.0.1",
"@react-md/typography": "^3.0.0",
"@react-md/utils": "^3.0.0",
"@react-md/form": "^3.1.0",
"@react-md/list": "^3.1.0",
"@react-md/portal": "^3.1.0",
"@react-md/states": "^3.1.0",
"@react-md/theme": "^3.1.0",
"@react-md/transition": "^3.1.0",
"@react-md/typography": "^3.1.0",
"@react-md/utils": "^3.1.0",
"classnames": "^2.3.1"
},
"devDependencies": {
Expand Down
12 changes: 12 additions & 0 deletions packages/avatar/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.

# [3.1.0](https://github.com/mlaursen/react-md/compare/v3.0.1...v3.1.0) (2021-09-10)


### Other Internal Changes

* ran `yarn format` to include new files ([48d3d7f](https://github.com/mlaursen/react-md/commit/48d3d7fddb0435edf7dec9d0ba38cf3f0f251709))






# [3.0.0](https://github.com/mlaursen/react-md/compare/v2.9.1...v3.0.0) (2021-08-13)

**Note:** Version bump only for package @react-md/avatar
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": "3.0.0",
"version": "3.1.0",
"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 @@ -29,9 +29,9 @@
],
"license": "MIT",
"dependencies": {
"@react-md/icon": "^3.0.0",
"@react-md/theme": "^3.0.0",
"@react-md/utils": "^3.0.0",
"@react-md/icon": "^3.1.0",
"@react-md/theme": "^3.1.0",
"@react-md/utils": "^3.1.0",
"classnames": "^2.3.1"
},
"devDependencies": {
Expand Down
12 changes: 12 additions & 0 deletions packages/badge/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.

# [3.1.0](https://github.com/mlaursen/react-md/compare/v3.0.1...v3.1.0) (2021-09-10)


### Other Internal Changes

* ran `yarn format` to include new files ([48d3d7f](https://github.com/mlaursen/react-md/commit/48d3d7fddb0435edf7dec9d0ba38cf3f0f251709))






## [3.0.1](https://github.com/mlaursen/react-md/compare/v3.0.0...v3.0.1) (2021-08-15)


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": "3.0.1",
"version": "3.1.0",
"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 @@ -30,11 +30,11 @@
],
"license": "MIT",
"dependencies": {
"@react-md/button": "^3.0.1",
"@react-md/icon": "^3.0.0",
"@react-md/theme": "^3.0.0",
"@react-md/typography": "^3.0.0",
"@react-md/utils": "^3.0.0",
"@react-md/button": "^3.1.0",
"@react-md/icon": "^3.1.0",
"@react-md/theme": "^3.1.0",
"@react-md/typography": "^3.1.0",
"@react-md/utils": "^3.1.0",
"classnames": "^2.3.1"
},
"devDependencies": {
Expand Down
12 changes: 12 additions & 0 deletions packages/button/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.

# [3.1.0](https://github.com/mlaursen/react-md/compare/v3.0.1...v3.1.0) (2021-09-10)


### Other Internal Changes

* ran `yarn format` to include new files ([48d3d7f](https://github.com/mlaursen/react-md/commit/48d3d7fddb0435edf7dec9d0ba38cf3f0f251709))






## [3.0.1](https://github.com/mlaursen/react-md/compare/v3.0.0...v3.0.1) (2021-08-15)


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": "3.0.1",
"version": "3.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.",
"main": "./lib/index.js",
"module": "./es/index.js",
Expand Down Expand Up @@ -30,13 +30,13 @@
],
"license": "MIT",
"dependencies": {
"@react-md/elevation": "^3.0.1",
"@react-md/icon": "^3.0.0",
"@react-md/states": "^3.0.1",
"@react-md/theme": "^3.0.0",
"@react-md/transition": "^3.0.1",
"@react-md/typography": "^3.0.0",
"@react-md/utils": "^3.0.0",
"@react-md/elevation": "^3.1.0",
"@react-md/icon": "^3.1.0",
"@react-md/states": "^3.1.0",
"@react-md/theme": "^3.1.0",
"@react-md/transition": "^3.1.0",
"@react-md/typography": "^3.1.0",
"@react-md/utils": "^3.1.0",
"classnames": "^2.3.1"
},
"devDependencies": {
Expand Down
12 changes: 12 additions & 0 deletions packages/card/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.

# [3.1.0](https://github.com/mlaursen/react-md/compare/v3.0.1...v3.1.0) (2021-09-10)


### Other Internal Changes

* ran `yarn format` to include new files ([48d3d7f](https://github.com/mlaursen/react-md/commit/48d3d7fddb0435edf7dec9d0ba38cf3f0f251709))






## [3.0.1](https://github.com/mlaursen/react-md/compare/v3.0.0...v3.0.1) (2021-08-15)


Expand Down
Loading

1 comment on commit 5891a32

@vercel
Copy link

@vercel vercel bot commented on 5891a32 Sep 10, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.