Skip to content

Commit 565294a

Browse files
committed
chore(release): release
- @spectrum-css/[email protected] - @spectrum-css/[email protected] - @spectrum-css/[email protected] - @spectrum-css/[email protected] - @spectrum-tools/[email protected] - @spectrum-css/[email protected] - @spectrum-css/[email protected] - @spectrum-css/[email protected] - @spectrum-css/[email protected]
1 parent b20ebb6 commit 565294a

File tree

18 files changed

+126
-15
lines changed

18 files changed

+126
-15
lines changed

.storybook/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
<a name="8.0.2"></a>
7+
##8.0.2
8+
🗓
9+
2024-02-20 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-css/[email protected]...@spectrum-css/[email protected])
10+
11+
**Note:** Version bump only for package @spectrum-css/preview
12+
613
<a name="8.0.1"></a>
714
##8.0.1
815
🗓

.storybook/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spectrum-css/preview",
3-
"version": "8.0.1",
3+
"version": "8.0.2",
44
"description": "A Spectrum CSS preview",
55
"license": "Apache-2.0",
66
"author": "Adobe",
@@ -13,16 +13,16 @@
1313
"@adobe/spectrum-css-workflow-icons": "^1.5.4",
1414
"@spectrum-css/expressvars": "^3.0.9",
1515
"@spectrum-css/site": "^4.2.2",
16-
"@spectrum-css/tokens": "^13.1.2",
16+
"@spectrum-css/tokens": "^13.2.0",
1717
"@spectrum-css/ui-icons": "^1.1.2",
1818
"@spectrum-css/vars": "^9.0.8"
1919
},
2020
"devDependencies": {
2121
"@babel/core": "^7.22.1",
2222
"@chromaui/addon-visual-tests": "^0.0.124",
2323
"@etchteam/storybook-addon-status": "^4.2.4",
24-
"@spectrum-css/component-builder": "^7.0.0",
25-
"@spectrum-css/component-builder-simple": "^5.0.2",
24+
"@spectrum-css/component-builder": "^7.0.1",
25+
"@spectrum-css/component-builder-simple": "^5.0.3",
2626
"@storybook/addon-a11y": "^7.6.16",
2727
"@storybook/addon-actions": "^7.6.16",
2828
"@storybook/addon-console": "^3.0.0",

components/button/CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,54 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
<a name="12.0.0"></a>
7+
#12.0.0
8+
🗓
9+
2024-02-20 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-css/[email protected]...@spectrum-css/[email protected])
10+
11+
### 🐛 Bug fixes
12+
13+
- **button:**support for wrapping text ([#2248](https://github.com/adobe/spectrum-css/issues/2248))([3f14a86](https://github.com/adobe/spectrum-css/commit/3f14a86))
14+
15+
###
16+
🛑 BREAKING CHANGES
17+
18+
*
19+
**button:** changes vertical flex alignment to start.
20+
21+
Previously when the button had an icon and the text was wrapping, the
22+
icon was vertically aligned center and the text was aligned center.
23+
24+
This fixes this to match with the design spec: for the version of the
25+
button that uses a workflow icon, the icon should stay aligned to the
26+
top, and the text should be aligned left (start). This uses the defined
27+
token for the space between the top of the component and the workflow
28+
icon (--spectrum-component-top-to-workflow-icon-\*).
29+
30+
- docs(button): rename storybook control to layout
31+
32+
Rename Storybook control for stacking buttons to "layout" with specified
33+
options, which is a more appropriate name. The control has also been
34+
made visible.
35+
36+
- fix(button): support any existing use of ui icons
37+
38+
Support any existing use of ui icons with the updated wrapping behavior.
39+
And add Chromatic only testing of them to the Wrapping story.
40+
41+
Workflow icons are intended, with the use of the
42+
spectrum-component-top-to-workflow-icon tokens, but UI icons have not
43+
yet been specifically excluded in guidelines and are currently in use
44+
within SplitButton in this library. This keeps UI icons that are
45+
smaller than the intended workflow icon, better vertically centered
46+
with the text within the button.
47+
48+
- feat(button): mod property for icon margin top
49+
50+
Add a mod property to make it easy to modify the margin-block-start of
51+
the icon, in case of alignment issues with icons that are not the
52+
intended workflow sizes.
53+
654
<a name="11.3.1"></a>
755
##11.3.1
856
🗓

components/button/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spectrum-css/button",
3-
"version": "11.3.1",
3+
"version": "12.0.0",
44
"description": "The Spectrum CSS button component",
55
"license": "Apache-2.0",
66
"author": "Adobe",

components/textfield/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
<a name="6.1.4"></a>
7+
##6.1.4
8+
🗓
9+
2024-02-20 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-css/[email protected]...@spectrum-css/[email protected])
10+
11+
### 🐛 Bug fixes
12+
13+
- **textfield:**icon positioning with field label ([#2380](https://github.com/adobe/spectrum-css/issues/2380))([468b426](https://github.com/adobe/spectrum-css/commit/468b426))\*
14+
**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))
15+
616
<a name="6.1.3"></a>
717
##6.1.3
818
🗓

components/textfield/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spectrum-css/textfield",
3-
"version": "6.1.3",
3+
"version": "6.1.4",
44
"description": "The Spectrum CSS textfield component",
55
"license": "Apache-2.0",
66
"author": "Adobe",

components/tray/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
<a name="2.2.5"></a>
7+
##2.2.5
8+
🗓
9+
2024-02-20 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-css/[email protected]...@spectrum-css/[email protected])
10+
11+
### 🐛 Bug fixes
12+
13+
- **tray:**full width at portrait orientation ([#2547](https://github.com/adobe/spectrum-css/issues/2547))([c9a79f2](https://github.com/adobe/spectrum-css/commit/c9a79f2))
14+
615
<a name="2.2.4"></a>
716
##2.2.4
817
🗓

components/tray/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spectrum-css/tray",
3-
"version": "2.2.4",
3+
"version": "2.2.5",
44
"description": "The Spectrum CSS tray component",
55
"license": "Apache-2.0",
66
"author": "Adobe",

plugins/stylelint-no-unknown-custom-properties/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,13 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
<a name="1.3.2"></a>
7+
##1.3.2
8+
🗓
9+
2024-02-20 • 📝 [Commits](https://github.com/adobe/spectrum-css/compare/@spectrum-tools/[email protected]...@spectrum-tools/[email protected])
10+
11+
**Note:** Version bump only for package @spectrum-tools/stylelint-no-unknown-custom-properties
12+
613
<a name="1.3.1"></a>
714
##1.3.1
815
🗓

plugins/stylelint-no-unknown-custom-properties/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spectrum-tools/stylelint-no-unknown-custom-properties",
3-
"version": "1.3.1",
3+
"version": "1.3.2",
44
"description": "Report on any unknown custom property definitions",
55
"license": "Apache-2.0",
66
"author": "Adobe",

0 commit comments

Comments
 (0)