Skip to content

Commit

Permalink
chore(release): publish v2.3.0-alpha.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mlaursen committed Sep 1, 2020
1 parent bc390fd commit 5433ffb
Show file tree
Hide file tree
Showing 72 changed files with 701 additions and 258 deletions.
49 changes: 49 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,55 @@
All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.3.0-alpha.0](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.3.0-alpha.0) (2020-09-01)

### Bug Fixes

- **form:** added missing scss variables
([ec8d675](https://github.com/mlaursen/react-md/commit/ec8d675c5436e92245ea0a8d07b35345ad30794c))
- **states:** fixed usedPressStates to pass onClick like other state hooks
([82cd676](https://github.com/mlaursen/react-md/commit/82cd67695c2ecd6e9a710d5fbfce97ae4dfeda80))

### Features

- **a11y:** improved `LabelRequiredForA11y` type definition
([b7aa4fa](https://github.com/mlaursen/react-md/commit/b7aa4fadb7b4f1a23fba4008e42d2f4a4bd47c07))
- **alert:** created and exported the default timeout and classnames
([32bacc9](https://github.com/mlaursen/react-md/commit/32bacc9000ea7c9633e437ce6eabb27606c7d7f0))
- **button:** added built-in support for rendering `CircularProgress`
([c6c616b](https://github.com/mlaursen/react-md/commit/c6c616b72866cc1533b7f83c4d9f031354319dfc))
- **button:** added support for disabled theme without disabling button
([6a647e2](https://github.com/mlaursen/react-md/commit/6a647e23831c7b3c97eb12baa47dfd5dd074271a))
- **form:** updated TextArea to use the new useResizeObserver API
([2c2dd27](https://github.com/mlaursen/react-md/commit/2c2dd27576aeeecb2baba12ef616af45197037db))
- **grid:** added hook to access grid list size
([a448816](https://github.com/mlaursen/react-md/commit/a44881602de57447e9cb5ba720f5f2c031936863))
- **grid:** added new `cloneStyles` prop so grid styles can be applied to any
child
([ca913e7](https://github.com/mlaursen/react-md/commit/ca913e75926a6d665c6aeed56faa292d201a5287))
- **overlay:** created and exported the default timeout and classnames
([48cd9d5](https://github.com/mlaursen/react-md/commit/48cd9d584342d2050ce154755ca7927cd9f90a72))
- **progress:** added a `small` state to the `CircularProgress`
([6884a3a](https://github.com/mlaursen/react-md/commit/6884a3ab762216313330dfb01f386c87a5cd5b88))
- **tabs:** updated tabs to use the new resize observer API
([052b3f2](https://github.com/mlaursen/react-md/commit/052b3f25db47077c53091bd1fb63f3e0b56a7fee))
- **tree:** updated defaultTreeItemRenderer for class names
([3c61f3c](https://github.com/mlaursen/react-md/commit/3c61f3cd77764e32de6e093bc61813a6b9e45c6f)),
closes [#920](https://github.com/mlaursen/react-md/issues/920)
- **utils:** added `Dir` component to help determine current writing direction
([a929e04](https://github.com/mlaursen/react-md/commit/a929e04b20bf41c3bff109714d9cf850bac99eb3))
- **utils:** added `useGridList` hook
([56ecc19](https://github.com/mlaursen/react-md/commit/56ecc19d748e3c63b6d27180ceedb385364fba43))
- **utils:** added useIsomorphicLayoutEffect from react-redux
([deacf1c](https://github.com/mlaursen/react-md/commit/deacf1c01f62adebbfbfbb3f0d5709cdab0cc537))
- **utils:** created a new useResizeObserver implementation
([dc3f4df](https://github.com/mlaursen/react-md/commit/dc3f4df744e4357c21e527986f4b762351345dfe))

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/mlaursen/react-md/compare/v2.1.2...v2.2.0) (2020-08-11)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@
],
"useWorkspaces": true,
"npmClient": "yarn",
"version": "2.2.0"
"version": "2.3.0-alpha.0"
}
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.3.0-alpha.0](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.3.0-alpha.0) (2020-09-01)

### Features

- **alert:** created and exported the default timeout and classnames
([32bacc9](https://github.com/mlaursen/react-md/commit/32bacc9000ea7c9633e437ce6eabb27606c7d7f0))

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/mlaursen/react-md/compare/v2.1.2...v2.2.0) (2020-08-11)

**Note:** Version bump only for package [@react-md/alert](../alert)
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.2.0",
"version": "2.3.0-alpha.0",
"description": "Create accessible alerts through snackbars and banners.",
"scripts": {
"build": "dev-utils build",
Expand Down Expand Up @@ -42,13 +42,13 @@
],
"license": "MIT",
"dependencies": {
"@react-md/button": "^2.2.0",
"@react-md/elevation": "^2.1.2",
"@react-md/button": "^2.3.0-alpha.0",
"@react-md/elevation": "^2.3.0-alpha.0",
"@react-md/portal": "^2.0.2",
"@react-md/theme": "^2.1.2",
"@react-md/transition": "^2.1.2",
"@react-md/typography": "^2.1.2",
"@react-md/utils": "^2.1.0",
"@react-md/theme": "^2.3.0-alpha.0",
"@react-md/transition": "^2.3.0-alpha.0",
"@react-md/typography": "^2.3.0-alpha.0",
"@react-md/utils": "^2.3.0-alpha.0",
"classnames": "^2.2.6",
"react-transition-group": "^4.4.1"
},
Expand Down
9 changes: 9 additions & 0 deletions packages/app-bar/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.0-alpha.0](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.3.0-alpha.0) (2020-09-01)

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

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/mlaursen/react-md/compare/v2.1.2...v2.2.0) (2020-08-11)

**Note:** Version bump only for package [@react-md/app-bar](../app-bar)
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.2.0",
"version": "2.3.0-alpha.0",
"description": "This small package implments the AppBar spec in material design.",
"scripts": {
"build": "dev-utils build",
Expand Down Expand Up @@ -40,12 +40,12 @@
],
"license": "MIT",
"dependencies": {
"@react-md/button": "^2.2.0",
"@react-md/elevation": "^2.1.2",
"@react-md/icon": "^2.1.2",
"@react-md/theme": "^2.1.2",
"@react-md/typography": "^2.1.2",
"@react-md/utils": "^2.1.0",
"@react-md/button": "^2.3.0-alpha.0",
"@react-md/elevation": "^2.3.0-alpha.0",
"@react-md/icon": "^2.3.0-alpha.0",
"@react-md/theme": "^2.3.0-alpha.0",
"@react-md/typography": "^2.3.0-alpha.0",
"@react-md/utils": "^2.3.0-alpha.0",
"classnames": "^2.2.6"
},
"devDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions packages/autocomplete/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.0-alpha.0](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.3.0-alpha.0) (2020-09-01)

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

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/mlaursen/react-md/compare/v2.1.2...v2.2.0) (2020-08-11)

**Note:** Version bump only for package
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.2.0",
"version": "2.3.0-alpha.0",
"description": "",
"scripts": {
"build": "dev-utils build",
Expand Down Expand Up @@ -42,14 +42,14 @@
],
"license": "MIT",
"dependencies": {
"@react-md/form": "^2.2.0",
"@react-md/list": "^2.2.0",
"@react-md/form": "^2.3.0-alpha.0",
"@react-md/list": "^2.3.0-alpha.0",
"@react-md/portal": "^2.0.2",
"@react-md/states": "^2.1.2",
"@react-md/theme": "^2.1.2",
"@react-md/transition": "^2.1.2",
"@react-md/typography": "^2.1.2",
"@react-md/utils": "^2.1.0",
"@react-md/states": "^2.3.0-alpha.0",
"@react-md/theme": "^2.3.0-alpha.0",
"@react-md/transition": "^2.3.0-alpha.0",
"@react-md/typography": "^2.3.0-alpha.0",
"@react-md/utils": "^2.3.0-alpha.0",
"classnames": "^2.2.6"
},
"devDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions packages/avatar/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.0-alpha.0](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.3.0-alpha.0) (2020-09-01)

**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.2.0](https://github.com/mlaursen/react-md/compare/v2.1.2...v2.2.0) (2020-08-11)

### Features
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.2.0",
"version": "2.3.0-alpha.0",
"description": "This package is used to avatars which are used to symbolize people or objects.",
"scripts": {
"build": "dev-utils build",
Expand Down Expand Up @@ -40,9 +40,9 @@
],
"license": "MIT",
"dependencies": {
"@react-md/icon": "^2.1.2",
"@react-md/theme": "^2.1.2",
"@react-md/utils": "^2.1.0",
"@react-md/icon": "^2.3.0-alpha.0",
"@react-md/theme": "^2.3.0-alpha.0",
"@react-md/utils": "^2.3.0-alpha.0",
"classnames": "^2.2.6"
},
"devDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions packages/badge/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.0-alpha.0](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.3.0-alpha.0) (2020-09-01)

**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.2.0](https://github.com/mlaursen/react-md/compare/v2.1.2...v2.2.0) (2020-08-11)

**Note:** Version bump only for package [@react-md/badge](../badge)
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.2.0",
"version": "2.3.0-alpha.0",
"description": "Create a badge that is fixed to another element. This is generally used for notification counts.",
"scripts": {
"build": "dev-utils build",
Expand Down Expand Up @@ -41,11 +41,11 @@
],
"license": "MIT",
"dependencies": {
"@react-md/button": "^2.2.0",
"@react-md/icon": "^2.1.2",
"@react-md/theme": "^2.1.2",
"@react-md/typography": "^2.1.2",
"@react-md/utils": "^2.1.0",
"@react-md/button": "^2.3.0-alpha.0",
"@react-md/icon": "^2.3.0-alpha.0",
"@react-md/theme": "^2.3.0-alpha.0",
"@react-md/typography": "^2.3.0-alpha.0",
"@react-md/utils": "^2.3.0-alpha.0",
"classnames": "^2.2.6"
},
"devDependencies": {
Expand Down
19 changes: 19 additions & 0 deletions packages/button/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.0-alpha.0](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.3.0-alpha.0) (2020-09-01)

### Bug Fixes

- **states:** fixed usedPressStates to pass onClick like other state hooks
([82cd676](https://github.com/mlaursen/react-md/commit/82cd67695c2ecd6e9a710d5fbfce97ae4dfeda80))

### Features

- **button:** added built-in support for rendering `CircularProgress`
([c6c616b](https://github.com/mlaursen/react-md/commit/c6c616b72866cc1533b7f83c4d9f031354319dfc))
- **button:** added support for disabled theme without disabling button
([6a647e2](https://github.com/mlaursen/react-md/commit/6a647e23831c7b3c97eb12baa47dfd5dd074271a))

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.2.0](https://github.com/mlaursen/react-md/compare/v2.1.2...v2.2.0) (2020-08-11)

**Note:** Version bump only for package [@react-md/button](../button)
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.2.0",
"version": "2.3.0-alpha.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",
Expand Down Expand Up @@ -41,13 +41,13 @@
],
"license": "MIT",
"dependencies": {
"@react-md/elevation": "^2.1.2",
"@react-md/icon": "^2.1.2",
"@react-md/states": "^2.1.2",
"@react-md/theme": "^2.1.2",
"@react-md/transition": "^2.1.2",
"@react-md/typography": "^2.1.2",
"@react-md/utils": "^2.1.0",
"@react-md/elevation": "^2.3.0-alpha.0",
"@react-md/icon": "^2.3.0-alpha.0",
"@react-md/states": "^2.3.0-alpha.0",
"@react-md/theme": "^2.3.0-alpha.0",
"@react-md/transition": "^2.3.0-alpha.0",
"@react-md/typography": "^2.3.0-alpha.0",
"@react-md/utils": "^2.3.0-alpha.0",
"classnames": "^2.2.6"
},
"devDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions packages/card/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.0-alpha.0](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.3.0-alpha.0) (2020-09-01)

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

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.1.2](https://github.com/mlaursen/react-md/compare/v2.1.1...v2.1.2) (2020-08-01)

**Note:** Version bump only for package [@react-md/card](../card)
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.1.2",
"version": "2.3.0-alpha.0",
"description": "Create interactable cards from the material design specifications.",
"scripts": {
"build": "dev-utils build",
Expand Down Expand Up @@ -41,13 +41,13 @@
],
"license": "MIT",
"dependencies": {
"@react-md/divider": "^2.1.2",
"@react-md/elevation": "^2.1.2",
"@react-md/icon": "^2.1.2",
"@react-md/states": "^2.1.2",
"@react-md/theme": "^2.1.2",
"@react-md/typography": "^2.1.2",
"@react-md/utils": "^2.1.0",
"@react-md/divider": "^2.3.0-alpha.0",
"@react-md/elevation": "^2.3.0-alpha.0",
"@react-md/icon": "^2.3.0-alpha.0",
"@react-md/states": "^2.3.0-alpha.0",
"@react-md/theme": "^2.3.0-alpha.0",
"@react-md/typography": "^2.3.0-alpha.0",
"@react-md/utils": "^2.3.0-alpha.0",
"classnames": "^2.2.6"
},
"devDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions packages/chip/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.3.0-alpha.0](https://github.com/mlaursen/react-md/compare/v2.2.0...v2.3.0-alpha.0) (2020-09-01)

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

# Change Log

All notable changes to this project will be documented in this file. See
[Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [2.1.2](https://github.com/mlaursen/react-md/compare/v2.1.1...v2.1.2) (2020-08-01)

**Note:** Version bump only for package [@react-md/chip](../chip)
Expand Down
Loading

0 comments on commit 5433ffb

Please sign in to comment.