Skip to content

Commit 4198053

Browse files
chore: release (next) (#3967)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 99af419 commit 4198053

File tree

95 files changed

+332
-214
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

95 files changed

+332
-214
lines changed

.changeset/pre.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@
105105
"big-jars-pump",
106106
"breezy-impalas-push",
107107
"calm-hats-sleep",
108+
"chatty-lands-attack",
108109
"chilled-peaches-enjoy",
109110
"chilly-peaches-sniff",
110111
"clean-oranges-smell",
@@ -123,6 +124,7 @@
123124
"friendly-dolls-raise",
124125
"giant-windows-smoke",
125126
"healthy-chicken-clap",
127+
"hip-shoes-listen",
126128
"honest-animals-stop",
127129
"hot-books-fail",
128130
"itchy-kids-travel",
@@ -149,6 +151,7 @@
149151
"proud-jokes-rule",
150152
"proud-schools-reply",
151153
"puny-kids-rhyme",
154+
"real-jobs-flow",
152155
"red-kiwis-flash",
153156
"rotten-meals-share",
154157
"serious-cameras-hammer",

.storybook/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Change Log
22

3+
## 12.0.5-next.6
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`f20e1e7`](https://github.com/adobe/spectrum-css/commit/f20e1e7ff402b591706cc791d9207fdedb80cd1e)]:
8+
- @spectrum-css/tokens@16.1.0-next.4
9+
- @spectrum-css/bundle@2.0.0-next.3
10+
311
## 12.0.5-next.5
412

513
### Patch Changes

.storybook/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spectrum-css/preview",
3-
"version": "12.0.5-next.5",
3+
"version": "12.0.5-next.6",
44
"description": "A Spectrum CSS preview",
55
"license": "Apache-2.0",
66
"author": "Adobe",
@@ -40,8 +40,8 @@
4040
},
4141
"dependencies": {
4242
"@adobe/spectrum-css-workflow-icons": "^4.1.0",
43-
"@spectrum-css/bundle": "2.0.0-next.2",
44-
"@spectrum-css/tokens": "16.1.0-next.3",
43+
"@spectrum-css/bundle": "2.0.0-next.3",
44+
"@spectrum-css/tokens": "16.1.0-next.4",
4545
"@spectrum-css/ui-icons": "2.0.0-next.1"
4646
},
4747
"devDependencies": {

components/accordion/CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,52 @@
11
# Change log
22

3+
## 8.0.0-next.2
4+
5+
### Major Changes
6+
7+
📝 [#3684](https://github.com/adobe/spectrum-css/pull/3684) [`f0c6273`](https://github.com/adobe/spectrum-css/commit/f0c6273310a8a7d8f392d6113919a3982ab07b2e) Thanks [@jawinn](https://github.com/jawinn)!
8+
9+
#### Spectrum 2 migration
10+
11+
Accordion now uses Spectrum 2 tokens and specifications.
12+
13+
New sized tokens are used for corner rounding, the spacing around the disclosure icon, and
14+
the spacing around the content area.
15+
16+
##### New features
17+
18+
- Adds the optional "quiet" style, which does not show dividers between accordion items.
19+
- Adds CSS transition to animate the rotation of the disclosure indicator when expanding and
20+
collapsing the accordion item.
21+
- Adds no inline padding variant (`.spectrum-Accordion--noInlinePadding`) in which the item
22+
header does not have padding.
23+
- Per design spec, accordion items have a min-width and default width. Default width can be
24+
overridden with `--mod-accordion-item-width` but should not be smaller than
25+
`--spectrum-accordion-item-minimum-width`.
26+
27+
##### Markup changes
28+
29+
The HTML markup has changed slightly for the accordion header. The disclosure icon has been moved
30+
from outside the button (`spectrum-Accordion-itemHeader`), to within the button. The extra
31+
element with class `spectrum-Accordion-itemIconContainer`, previously wrapping the icon, has
32+
been removed. A span with class `spectrum-Accordion-itemTitle` has been added around the heading
33+
text.
34+
35+
##### Modifier changes
36+
37+
The following `--mod` custom properties have been renamed to better reflect how they are used:
38+
39+
- `--mod-accordion-item-height` has been renamed to `--mod-accordion-item-minimum-height`
40+
- `--mod-accordion-min-block-size` has been renamed to `--mod-accordion-item-min-block-size`
41+
- `--mod-accordion-component-edge-to-text` has been renamed to `--mod-accordion-content-padding-inline`
42+
43+
New modifiers:
44+
45+
- `--mod-accordion-animation-duration`
46+
- `--mod-accordion-edge-to-content-area`
47+
- `--mod-accordion-item-minimum-width`
48+
- `--mod-accordion-top-to-disclosure-indicator`
49+
350
## 8.0.0-next.1
451

552
### Patch Changes

components/accordion/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spectrum-css/accordion",
3-
"version": "8.0.0-next.1",
3+
"version": "8.0.0-next.2",
44
"description": "The Spectrum CSS accordion component",
55
"license": "Apache-2.0",
66
"author": "Adobe",
@@ -38,7 +38,7 @@
3838
},
3939
"devDependencies": {
4040
"@spectrum-css/icon": "10.0.0-next.2",
41-
"@spectrum-css/tokens": "16.1.0-next.3"
41+
"@spectrum-css/tokens": "16.1.0-next.4"
4242
},
4343
"keywords": [
4444
"design-system",

components/actionbar/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@spectrum-css/closebutton": "7.0.0-next.1",
5454
"@spectrum-css/fieldlabel": "11.0.0-next.2",
5555
"@spectrum-css/popover": "9.0.0-next.2",
56-
"@spectrum-css/tokens": "16.1.0-next.3"
56+
"@spectrum-css/tokens": "16.1.0-next.4"
5757
},
5858
"keywords": [
5959
"design-system",

components/actionbutton/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"devDependencies": {
4040
"@spectrum-css/commons": "12.0.0-next.0",
4141
"@spectrum-css/icon": "10.0.0-next.2",
42-
"@spectrum-css/tokens": "16.1.0-next.3"
42+
"@spectrum-css/tokens": "16.1.0-next.4"
4343
},
4444
"keywords": [
4545
"design-system",

components/actiongroup/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
},
3939
"devDependencies": {
4040
"@spectrum-css/actionbutton": "8.0.0-next.2",
41-
"@spectrum-css/tokens": "16.1.0-next.3"
41+
"@spectrum-css/tokens": "16.1.0-next.4"
4242
},
4343
"keywords": [
4444
"design-system",

components/actionmenu/package.json

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,29 @@
3131
"@spectrum-css/popover": ">=9.0.0-next.0",
3232
"@spectrum-css/tokens": ">=16.1.0-next.0"
3333
},
34+
"peerDependenciesMeta": {
35+
"@spectrum-css/actionbutton": {
36+
"optional": true
37+
},
38+
"@spectrum-css/icon": {
39+
"optional": true
40+
},
41+
"@spectrum-css/menu": {
42+
"optional": true
43+
},
44+
"@spectrum-css/popover": {
45+
"optional": true
46+
},
47+
"@spectrum-css/tokens": {
48+
"optional": true
49+
}
50+
},
3451
"devDependencies": {
3552
"@spectrum-css/actionbutton": "8.0.0-next.2",
3653
"@spectrum-css/icon": "10.0.0-next.2",
3754
"@spectrum-css/menu": "10.0.0-next.3",
3855
"@spectrum-css/popover": "9.0.0-next.2",
39-
"@spectrum-css/tokens": "16.1.0-next.3"
56+
"@spectrum-css/tokens": "16.1.0-next.4"
4057
},
4158
"keywords": [
4259
"design-system",
@@ -54,22 +71,5 @@
5471
{
5572
"swc": "https://opensource.adobe.com/spectrum-web-components/components/action-menu/"
5673
}
57-
],
58-
"peerDependenciesMeta": {
59-
"@spectrum-css/actionbutton": {
60-
"optional": true
61-
},
62-
"@spectrum-css/icon": {
63-
"optional": true
64-
},
65-
"@spectrum-css/menu": {
66-
"optional": true
67-
},
68-
"@spectrum-css/popover": {
69-
"optional": true
70-
},
71-
"@spectrum-css/tokens": {
72-
"optional": true
73-
}
74-
}
74+
]
7575
}

components/alertbanner/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
"@spectrum-css/closebutton": "7.0.0-next.1",
5454
"@spectrum-css/divider": "6.0.0-next.1",
5555
"@spectrum-css/icon": "10.0.0-next.2",
56-
"@spectrum-css/tokens": "16.1.0-next.3"
56+
"@spectrum-css/tokens": "16.1.0-next.4"
5757
},
5858
"keywords": [
5959
"design-system",

0 commit comments

Comments
 (0)