From 565294a2619aac3267e1bbdb563f8027808b67a2 Mon Sep 17 00:00:00 2001 From: Patrick Fulton Date: Tue, 20 Feb 2024 16:19:29 -0500 Subject: [PATCH] chore(release): release - @spectrum-css/preview@8.0.2 - @spectrum-css/button@12.0.0 - @spectrum-css/textfield@6.1.4 - @spectrum-css/tray@2.2.5 - @spectrum-tools/stylelint-no-unknown-custom-properties@1.3.2 - @spectrum-css/tokens@13.2.0 - @spectrum-css/bundle-builder@7.0.1 - @spectrum-css/component-builder-simple@5.0.3 - @spectrum-css/component-builder@7.0.1 --- .storybook/CHANGELOG.md | 7 +++ .storybook/package.json | 8 ++-- components/button/CHANGELOG.md | 48 +++++++++++++++++++ components/button/package.json | 2 +- components/textfield/CHANGELOG.md | 10 ++++ components/textfield/package.json | 2 +- components/tray/CHANGELOG.md | 9 ++++ components/tray/package.json | 2 +- .../CHANGELOG.md | 7 +++ .../package.json | 2 +- tokens/CHANGELOG.md | 9 ++++ tokens/package.json | 2 +- tools/bundle-builder/CHANGELOG.md | 7 +++ tools/bundle-builder/package.json | 4 +- tools/component-builder-simple/CHANGELOG.md | 7 +++ tools/component-builder-simple/package.json | 4 +- tools/component-builder/CHANGELOG.md | 7 +++ tools/component-builder/package.json | 4 +- 18 files changed, 126 insertions(+), 15 deletions(-) diff --git a/.storybook/CHANGELOG.md b/.storybook/CHANGELOG.md index bc55477c5eb..698819146b6 100644 --- a/.storybook/CHANGELOG.md +++ b/.storybook/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +##8.0.2 +🗓 +2024-02-20 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-css/preview@8.0.1...@spectrum-css/preview@8.0.2) + +**Note:** Version bump only for package @spectrum-css/preview + ##8.0.1 🗓 diff --git a/.storybook/package.json b/.storybook/package.json index b0e001821d7..7f27456c17e 100644 --- a/.storybook/package.json +++ b/.storybook/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-css/preview", - "version": "8.0.1", + "version": "8.0.2", "description": "A Spectrum CSS preview", "license": "Apache-2.0", "author": "Adobe", @@ -13,7 +13,7 @@ "@adobe/spectrum-css-workflow-icons": "^1.5.4", "@spectrum-css/expressvars": "^3.0.9", "@spectrum-css/site": "^4.2.2", - "@spectrum-css/tokens": "^13.1.2", + "@spectrum-css/tokens": "^13.2.0", "@spectrum-css/ui-icons": "^1.1.2", "@spectrum-css/vars": "^9.0.8" }, @@ -21,8 +21,8 @@ "@babel/core": "^7.22.1", "@chromaui/addon-visual-tests": "^0.0.124", "@etchteam/storybook-addon-status": "^4.2.4", - "@spectrum-css/component-builder": "^7.0.0", - "@spectrum-css/component-builder-simple": "^5.0.2", + "@spectrum-css/component-builder": "^7.0.1", + "@spectrum-css/component-builder-simple": "^5.0.3", "@storybook/addon-a11y": "^7.6.16", "@storybook/addon-actions": "^7.6.16", "@storybook/addon-console": "^3.0.0", diff --git a/components/button/CHANGELOG.md b/components/button/CHANGELOG.md index 81d33365860..decdfb0fefb 100644 --- a/components/button/CHANGELOG.md +++ b/components/button/CHANGELOG.md @@ -3,6 +3,54 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +#12.0.0 +🗓 +2024-02-20 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-css/button@11.3.1...@spectrum-css/button@12.0.0) + +### 🐛 Bug fixes + +- **button:**support for wrapping text ([#2248](https://github.com/adobe/spectrum-css/issues/2248))([3f14a86](https://github.com/adobe/spectrum-css/commit/3f14a86)) + + ### + 🛑 BREAKING CHANGES + + * + **button:** changes vertical flex alignment to start. + +Previously when the button had an icon and the text was wrapping, the +icon was vertically aligned center and the text was aligned center. + +This fixes this to match with the design spec: for the version of the +button that uses a workflow icon, the icon should stay aligned to the +top, and the text should be aligned left (start). This uses the defined +token for the space between the top of the component and the workflow +icon (--spectrum-component-top-to-workflow-icon-\*). + +- docs(button): rename storybook control to layout + +Rename Storybook control for stacking buttons to "layout" with specified +options, which is a more appropriate name. The control has also been +made visible. + +- fix(button): support any existing use of ui icons + +Support any existing use of ui icons with the updated wrapping behavior. +And add Chromatic only testing of them to the Wrapping story. + +Workflow icons are intended, with the use of the +spectrum-component-top-to-workflow-icon tokens, but UI icons have not +yet been specifically excluded in guidelines and are currently in use +within SplitButton in this library. This keeps UI icons that are +smaller than the intended workflow icon, better vertically centered +with the text within the button. + +- feat(button): mod property for icon margin top + +Add a mod property to make it easy to modify the margin-block-start of +the icon, in case of alignment issues with icons that are not the +intended workflow sizes. + ##11.3.1 🗓 diff --git a/components/button/package.json b/components/button/package.json index 6d37912b520..d26a12e7ee2 100644 --- a/components/button/package.json +++ b/components/button/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-css/button", - "version": "11.3.1", + "version": "12.0.0", "description": "The Spectrum CSS button component", "license": "Apache-2.0", "author": "Adobe", diff --git a/components/textfield/CHANGELOG.md b/components/textfield/CHANGELOG.md index e2b5afb2cfc..ee767256836 100644 --- a/components/textfield/CHANGELOG.md +++ b/components/textfield/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +##6.1.4 +🗓 +2024-02-20 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-css/textfield@6.1.3...@spectrum-css/textfield@6.1.4) + +### 🐛 Bug fixes + +- **textfield:**icon positioning with field label ([#2380](https://github.com/adobe/spectrum-css/issues/2380))([468b426](https://github.com/adobe/spectrum-css/commit/468b426))\* + **textfield:**remove extra padding on nested label and help ([#2519](https://github.com/adobe/spectrum-css/issues/2519))([0250d0e](https://github.com/adobe/spectrum-css/commit/0250d0e)) + ##6.1.3 🗓 diff --git a/components/textfield/package.json b/components/textfield/package.json index 3cf02b67610..5a4f19ea79a 100644 --- a/components/textfield/package.json +++ b/components/textfield/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-css/textfield", - "version": "6.1.3", + "version": "6.1.4", "description": "The Spectrum CSS textfield component", "license": "Apache-2.0", "author": "Adobe", diff --git a/components/tray/CHANGELOG.md b/components/tray/CHANGELOG.md index 9bb641326ff..c5e8314b1d9 100644 --- a/components/tray/CHANGELOG.md +++ b/components/tray/CHANGELOG.md @@ -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.2.5 +🗓 +2024-02-20 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-css/tray@2.2.4...@spectrum-css/tray@2.2.5) + +### 🐛 Bug fixes + +- **tray:**full width at portrait orientation ([#2547](https://github.com/adobe/spectrum-css/issues/2547))([c9a79f2](https://github.com/adobe/spectrum-css/commit/c9a79f2)) + ##2.2.4 🗓 diff --git a/components/tray/package.json b/components/tray/package.json index f41b076a971..fea880f0fc6 100644 --- a/components/tray/package.json +++ b/components/tray/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-css/tray", - "version": "2.2.4", + "version": "2.2.5", "description": "The Spectrum CSS tray component", "license": "Apache-2.0", "author": "Adobe", diff --git a/plugins/stylelint-no-unknown-custom-properties/CHANGELOG.md b/plugins/stylelint-no-unknown-custom-properties/CHANGELOG.md index 1cc49c14f75..2ca73d614d0 100644 --- a/plugins/stylelint-no-unknown-custom-properties/CHANGELOG.md +++ b/plugins/stylelint-no-unknown-custom-properties/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +##1.3.2 +🗓 +2024-02-20 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-tools/stylelint-no-unknown-custom-properties@1.3.1...@spectrum-tools/stylelint-no-unknown-custom-properties@1.3.2) + +**Note:** Version bump only for package @spectrum-tools/stylelint-no-unknown-custom-properties + ##1.3.1 🗓 diff --git a/plugins/stylelint-no-unknown-custom-properties/package.json b/plugins/stylelint-no-unknown-custom-properties/package.json index c68094b6b83..7dff7faf797 100644 --- a/plugins/stylelint-no-unknown-custom-properties/package.json +++ b/plugins/stylelint-no-unknown-custom-properties/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-tools/stylelint-no-unknown-custom-properties", - "version": "1.3.1", + "version": "1.3.2", "description": "Report on any unknown custom property definitions", "license": "Apache-2.0", "author": "Adobe", diff --git a/tokens/CHANGELOG.md b/tokens/CHANGELOG.md index f6217e3e280..dcc9c6cf720 100644 --- a/tokens/CHANGELOG.md +++ b/tokens/CHANGELOG.md @@ -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. + +#13.2.0 +🗓 +2024-02-20 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-css/tokens@13.1.2...@spectrum-css/tokens@13.2.0) + +### ✨ Features + +- **tokens:**use spectrum-tokens@12.24.0([b20ebb6](https://github.com/adobe/spectrum-css/commit/b20ebb6)) + ##13.1.2 🗓 diff --git a/tokens/package.json b/tokens/package.json index fb5627e4e28..e4e29308229 100644 --- a/tokens/package.json +++ b/tokens/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-css/tokens", - "version": "13.1.2", + "version": "13.2.0", "description": "The Spectrum CSS tokens package", "license": "Apache-2.0", "author": "Adobe", diff --git a/tools/bundle-builder/CHANGELOG.md b/tools/bundle-builder/CHANGELOG.md index c4c0bd02536..2eab7e4c1c1 100644 --- a/tools/bundle-builder/CHANGELOG.md +++ b/tools/bundle-builder/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +##7.0.1 +🗓 +2024-02-20 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-css/bundle-builder@7.0.0...@spectrum-css/bundle-builder@7.0.1) + +**Note:** Version bump only for package @spectrum-css/bundle-builder + #7.0.0 🗓 diff --git a/tools/bundle-builder/package.json b/tools/bundle-builder/package.json index 4d200b827a2..723bc179dc0 100644 --- a/tools/bundle-builder/package.json +++ b/tools/bundle-builder/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-css/bundle-builder", - "version": "7.0.0", + "version": "7.0.1", "description": "The Spectrum CSS top-level builder", "license": "Apache-2.0", "author": "Adobe", @@ -15,7 +15,7 @@ "dependencies": { "@adobe/spectrum-css-workflow-icons": "^1.5.4", "@spectrum-css/expressvars": "^3.0.9", - "@spectrum-css/tokens": "^13.1.2", + "@spectrum-css/tokens": "^13.2.0", "@spectrum-css/ui-icons": "^1.1.2", "@spectrum-css/vars": "^9.0.8", "npm-registry-fetch": "^14.0.5" diff --git a/tools/component-builder-simple/CHANGELOG.md b/tools/component-builder-simple/CHANGELOG.md index b75ef32f9ea..911bdf49786 100644 --- a/tools/component-builder-simple/CHANGELOG.md +++ b/tools/component-builder-simple/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +##5.0.3 +🗓 +2024-02-20 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-css/component-builder-simple@5.0.2...@spectrum-css/component-builder-simple@5.0.3) + +**Note:** Version bump only for package @spectrum-css/component-builder-simple + ##5.0.2 🗓 diff --git a/tools/component-builder-simple/package.json b/tools/component-builder-simple/package.json index d38cd836682..786eca51f5f 100644 --- a/tools/component-builder-simple/package.json +++ b/tools/component-builder-simple/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-css/component-builder-simple", - "version": "5.0.2", + "version": "5.0.3", "description": "The Spectrum CSS simple component builder", "license": "Apache-2.0", "repository": { @@ -12,7 +12,7 @@ "url": "https://github.com/adobe/spectrum-css/issues" }, "dependencies": { - "@spectrum-css/tokens": "^13.1.2", + "@spectrum-css/tokens": "^13.2.0", "at-rule-packer": "^0.4.2", "autoprefixer": "^10.4.17", "colors": "^1.4.0", diff --git a/tools/component-builder/CHANGELOG.md b/tools/component-builder/CHANGELOG.md index 05ee28f96b9..365bbbdb50e 100644 --- a/tools/component-builder/CHANGELOG.md +++ b/tools/component-builder/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +##7.0.1 +🗓 +2024-02-20 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-css/component-builder@7.0.0...@spectrum-css/component-builder@7.0.1) + +**Note:** Version bump only for package @spectrum-css/component-builder + #7.0.0 🗓 diff --git a/tools/component-builder/package.json b/tools/component-builder/package.json index 4b58d1a6bf3..ab45c3cf449 100644 --- a/tools/component-builder/package.json +++ b/tools/component-builder/package.json @@ -1,6 +1,6 @@ { "name": "@spectrum-css/component-builder", - "version": "7.0.0", + "version": "7.0.1", "description": "The Spectrum CSS component builder", "license": "Apache-2.0", "repository": { @@ -12,7 +12,7 @@ "url": "https://github.com/adobe/spectrum-css/issues" }, "dependencies": { - "@spectrum-css/tokens": "^13.1.2", + "@spectrum-css/tokens": "^13.2.0", "@spectrum-css/vars": "^9.0.8", "at-rule-packer": "^0.4.2", "autoprefixer": "^10.4.17",