diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 4d158f1..d130896 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1 +1 @@ -{"packages/utils":"1.0.0","packages/ui":"1.1.0"} +{"packages/utils":"1.0.1","packages/ui":"1.2.0"} diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index e322763..17fd7f7 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [1.2.0](https://github.com/receter/sys42/compare/ui-v1.1.0...ui-v1.2.0) (2024-10-07) + + +### Features + +* improved css variables for button ([9ee341f](https://github.com/receter/sys42/commit/9ee341f438ae2afad9ba3697a6b7f53db99e2f9d)) +* set content elements margin to 0 and add a content class for formating content nicely ([e8dc94a](https://github.com/receter/sys42/commit/e8dc94a9f2a9224ce9336698b38f3b9a16565501)) +* Switch to border width and color vars instead of border shorthand ([1c2f411](https://github.com/receter/sys42/commit/1c2f411c87fc0242e0d70ca826e78521a3ff7cd5)) + + +### Bug Fixes + +* better CSS custom property name for focus styles ([9045ec3](https://github.com/receter/sys42/commit/9045ec35262fd6c73281ea576710d570b11f7079)) +* box-sizing border-box for textInput ([6449858](https://github.com/receter/sys42/commit/6449858f19b840a9b98dc80fd60c64f07e0e8ed3)) +* buttonGroupReverse align baseline ([32d9efd](https://github.com/receter/sys42/commit/32d9efde611a0d5853025d2f8009aa4bce435803)) +* do not always add role button ([2a24e63](https://github.com/receter/sys42/commit/2a24e63f608a2d5b133958ff381d4cb6f128f5bd)) +* remove isFullWidth from button ([a7287af](https://github.com/receter/sys42/commit/a7287af3679a63f95550b396bab3cd24151c152a)) +* remove unused isDisabled prop from Button interface ([3c42114](https://github.com/receter/sys42/commit/3c42114cbd3589e9d0d140bb0dc5617f0672d1f2)) + ## [1.1.0](https://github.com/receter/sys42/compare/ui-v1.0.1...ui-v1.1.0) (2024-09-22) diff --git a/packages/ui/package.json b/packages/ui/package.json index aca2969..c0df5bb 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,7 +1,7 @@ { "name": "@sys42/ui", "private": false, - "version": "1.1.0", + "version": "1.2.0", "type": "module", "exports": { ".": { diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index e459847..b38ead2 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.0.1](https://github.com/receter/sys42/compare/utils-v1.0.0...utils-v1.0.1) (2024-10-07) + + +### Bug Fixes + +* accessibleOnClick event type ([485dab2](https://github.com/receter/sys42/commit/485dab273808f332a3e3a2a690ae041d3bdf700b)) +* tabindex should not be required ([fd9e7d7](https://github.com/receter/sys42/commit/fd9e7d7e0bda7fb5f64d273377f041389ac5a159)) + ## 1.0.0 (2024-09-09) diff --git a/packages/utils/package.json b/packages/utils/package.json index da66397..5b01486 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -2,7 +2,7 @@ "name": "@sys42/utils", "author": "Andreas Riedmüller", "license": "MIT", - "version": "1.0.0", + "version": "1.0.1", "type": "module", "main": "dist/utils.js", "types": "dist/main.d.ts",