From d5d7d5a7848d89c25652c21a420013a1305a364a Mon Sep 17 00:00:00 2001 From: Mikkel Laursen Date: Mon, 3 Jun 2024 17:44:51 -0400 Subject: [PATCH] build(version): version packages --- .changeset/pre.json | 1 + .changeset/strange-carpets-add.md | 26 ++++++++++++++++++++++++++ apps/docs/CHANGELOG.md | 10 ++++++++++ apps/docs/package.json | 2 +- packages/code/CHANGELOG.md | 8 ++++++++ packages/code/package.json | 2 +- packages/core/CHANGELOG.md | 27 +++++++++++++++++++++++++++ packages/core/package.json | 2 +- packages/docs-generator/CHANGELOG.md | 8 ++++++++ packages/docs-generator/package.json | 2 +- packages/material-icons/CHANGELOG.md | 7 +++++++ packages/material-icons/package.json | 2 +- packages/react-md/CHANGELOG.md | 7 +++++++ packages/react-md/package.json | 2 +- 14 files changed, 100 insertions(+), 6 deletions(-) create mode 100644 .changeset/strange-carpets-add.md diff --git a/.changeset/pre.json b/.changeset/pre.json index 603658c66e..cf094fd025 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -22,6 +22,7 @@ "sharp-months-draw", "short-lies-decide", "silent-chefs-invent", + "strange-carpets-add", "tasty-trainers-beg", "ten-poems-film", "thin-tables-carry", diff --git a/.changeset/strange-carpets-add.md b/.changeset/strange-carpets-add.md new file mode 100644 index 0000000000..e8b28c4184 --- /dev/null +++ b/.changeset/strange-carpets-add.md @@ -0,0 +1,26 @@ +--- +"@react-md/core": patch +--- + +Added the first implementation for the new `Autocomplete` component and API which made me +realize I need to modify it a bit more. The next release should include better behavior +to mimic react-select and material ui where it supports working as a select element, +mutliselect options, and creating chips with values. + +Breaking Changes + +- The `useAsyncAction` was renamed to `useAsyncFunction` to mimic the other `use*Function` hooks. +- Removed the `children` prop from the `TextField` component + +Features + +- Added the `clear` icon to support the `Autocomplete` clear button behavior +- Updated the text field padding to be easier to style with CSS custom properties +- Added the `useTextFieldContainerAddons` hook to dynamically update the padding based on addon size with the `TextFieldContainer` +- Added the `useMutationObserver` hook + +Bug Fixes + +- Fixed adding some `@use` statements for the Sass standard library +- Fixed the `useDraggable` range behavior +- Fixed the cross fade transition behavior diff --git a/apps/docs/CHANGELOG.md b/apps/docs/CHANGELOG.md index 3440924de3..a2ef22048c 100644 --- a/apps/docs/CHANGELOG.md +++ b/apps/docs/CHANGELOG.md @@ -1,5 +1,15 @@ # docs +## 0.0.2-next.1 + +### Patch Changes + +- Updated dependencies + - @react-md/core@1.0.0-next.14 + - @react-md/code@0.0.1-next.2 + - docs-generator@0.0.1-next.2 + - @react-md/material-icons@6.0.0-next.15 + ## 0.0.2-next.0 ### Patch Changes diff --git a/apps/docs/package.json b/apps/docs/package.json index a3dfb514d9..91bae3a4f3 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -2,7 +2,7 @@ "name": "docs", "type": "module", "private": true, - "version": "0.0.2-next.0", + "version": "0.0.2-next.1", "description": "The documentation site for react-md", "scripts": { "run-script": "tsx --tsconfig scripts/tsconfig.json", diff --git a/packages/code/CHANGELOG.md b/packages/code/CHANGELOG.md index 1fec8f5af7..0bc51ca5be 100644 --- a/packages/code/CHANGELOG.md +++ b/packages/code/CHANGELOG.md @@ -1,5 +1,13 @@ # @react-md/code +## 0.0.1-next.2 + +### Patch Changes + +- Updated dependencies + - @react-md/core@1.0.0-next.14 + - @react-md/material-icons@6.0.0-next.15 + ## 0.0.1-next.1 ### Patch Changes diff --git a/packages/code/package.json b/packages/code/package.json index d37a891b1a..468b2ddca3 100644 --- a/packages/code/package.json +++ b/packages/code/package.json @@ -1,7 +1,7 @@ { "name": "@react-md/code", "private": true, - "version": "0.0.1-next.1", + "version": "0.0.1-next.2", "description": "The core components and functionality for react-md.", "type": "module", "sass": "./dist/_code.scss", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 9a12d9448d..86e7716592 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,32 @@ # @react-md/core +## 1.0.0-next.14 + +### Patch Changes + +- Added the first implementation for the new `Autocomplete` component and API which made me + realize I need to modify it a bit more. The next release should include better behavior + to mimic react-select and material ui where it supports working as a select element, + mutliselect options, and creating chips with values. + + Breaking Changes + + - The `useAsyncAction` was renamed to `useAsyncFunction` to mimic the other `use*Function` hooks. + - Removed the `children` prop from the `TextField` component + + Features + + - Added the `clear` icon to support the `Autocomplete` clear button behavior + - Updated the text field padding to be easier to style with CSS custom properties + - Added the `useTextFieldContainerAddons` hook to dynamically update the padding based on addon size with the `TextFieldContainer` + - Added the `useMutationObserver` hook + + Bug Fixes + + - Fixed adding some `@use` statements for the Sass standard library + - Fixed the `useDraggable` range behavior + - Fixed the cross fade transition behavior + ## 1.0.0-next.13 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index d9d969811b..55c3e41833 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/core", - "version": "1.0.0-next.13", + "version": "1.0.0-next.14", "description": "The core components and functionality for react-md.", "type": "module", "sass": "./dist/_core.scss", diff --git a/packages/docs-generator/CHANGELOG.md b/packages/docs-generator/CHANGELOG.md index 7b8a564f51..c68bfe9d02 100644 --- a/packages/docs-generator/CHANGELOG.md +++ b/packages/docs-generator/CHANGELOG.md @@ -1,5 +1,13 @@ # docs-generator +## 0.0.1-next.2 + +### Patch Changes + +- Updated dependencies + - @react-md/core@1.0.0-next.14 + - @react-md/code@0.0.1-next.2 + ## 0.0.1-next.1 ### Patch Changes diff --git a/packages/docs-generator/package.json b/packages/docs-generator/package.json index 8ff848498f..e264187373 100644 --- a/packages/docs-generator/package.json +++ b/packages/docs-generator/package.json @@ -1,7 +1,7 @@ { "name": "docs-generator", "private": true, - "version": "0.0.1-next.1", + "version": "0.0.1-next.2", "description": "MDX Plugins for the documentation site", "type": "module", "exports": { diff --git a/packages/material-icons/CHANGELOG.md b/packages/material-icons/CHANGELOG.md index 5c41eb727b..83a60007ef 100644 --- a/packages/material-icons/CHANGELOG.md +++ b/packages/material-icons/CHANGELOG.md @@ -1,5 +1,12 @@ # @react-md/material-icons +## 6.0.0-next.15 + +### Patch Changes + +- Updated dependencies + - @react-md/core@1.0.0-next.14 + ## 6.0.0-next.14 ### Patch Changes diff --git a/packages/material-icons/package.json b/packages/material-icons/package.json index 7852261709..5687984618 100644 --- a/packages/material-icons/package.json +++ b/packages/material-icons/package.json @@ -1,6 +1,6 @@ { "name": "@react-md/material-icons", - "version": "6.0.0-next.14", + "version": "6.0.0-next.15", "description": "Material Design Icon components for react-md", "type": "module", "exports": { diff --git a/packages/react-md/CHANGELOG.md b/packages/react-md/CHANGELOG.md index 21d1a9fc71..49556fdfc4 100644 --- a/packages/react-md/CHANGELOG.md +++ b/packages/react-md/CHANGELOG.md @@ -1,5 +1,12 @@ # react-md +## 6.0.0-next.2 + +### Patch Changes + +- Updated dependencies + - @react-md/core@1.0.0-next.14 + ## 6.0.0-next.1 ### Patch Changes diff --git a/packages/react-md/package.json b/packages/react-md/package.json index 6a6a826109..1162c4c47b 100644 --- a/packages/react-md/package.json +++ b/packages/react-md/package.json @@ -1,6 +1,6 @@ { "name": "react-md", - "version": "6.0.0-next.1", + "version": "6.0.0-next.2", "description": "This is the full react-md library bundled together for convenience.", "type": "module", "sass": "./dist/_react-md.scss",