Skip to content

Commit cb630b2

Browse files
github-actions[bot]castastrophe
authored andcommitted
chore: release (next) (#2801)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent ca182b6 commit cb630b2

File tree

12 files changed

+58
-50
lines changed

12 files changed

+58
-50
lines changed

.changeset/pre.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@
103103
"changesets": [
104104
"big-chairs-care",
105105
"eleven-cooks-destroy",
106+
"fresh-seahorses-join",
106107
"nine-kings-repair",
107108
"perfect-dogs-smash",
108109
"pretty-parents-drum",

components/alertbanner/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
}
3838
},
3939
"devDependencies": {
40-
"@spectrum-css/button": "14.0.0-next.6",
40+
"@spectrum-css/button": "14.0.0-next.7",
4141
"@spectrum-css/closebutton": "5.0.0-next.2",
4242
"@spectrum-css/divider": "5.0.1",
4343
"@spectrum-css/icon": "9.0.1",

components/button/CHANGELOG.md

Lines changed: 39 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,44 @@
11
# Change Log
22

3+
## 14.0.0-next.7
4+
5+
### Patch Changes
6+
7+
- [#2725](https://github.com/adobe/spectrum-css/pull/2725) [`81edcde`](https://github.com/adobe/spectrum-css/commit/81edcde7fc606acd86b2bdb4379e0d2f96a5e211) Thanks [@jawinn](https://github.com/jawinn)! - #### refactor: remove spectrum-ButtonWithFocusRing placeholder class extend
8+
9+
Removes the need for the extend from this placeholder class, as the styles it provides have diverged slightly from what is in button and it was causing some unnecessary CSS to override.
10+
This should not result in any changed visuals or behavior, as the same CSS has been integrated.
11+
12+
## 14.0.0-next.6
13+
14+
### Major Changes
15+
16+
- [#2600](https://github.com/adobe/spectrum-css/pull/2600) [`3559678`](https://github.com/adobe/spectrum-css/commit/35596780a1309dd145fa565461d330ddfaf50e68) Thanks [@jawinn](https://github.com/jawinn)!
17+
18+
#### Spectrum 2 migration
19+
20+
Button now uses Spectrum 2 tokens and specifications, which includes many color changes to all variants. A few other notable changes:
21+
22+
- Outline buttons are no longer available in accent and negative options — use the filled variant instead.
23+
- Medium size is now the default. The class `.spectrum-Button--sizeM` is now unnecessary for this size, and has been removed.
24+
- The `.spectrum-Button--fill` class is no longer needed and has been removed.
25+
26+
The following `--mod` custom properties have been renamed:
27+
28+
- `--mod-line-height-100` has been renamed to `--mod-button-line-height`
29+
- `--mod-sans-font-family-stack` has been renamed to `--mod-button-font-family`
30+
- `--mod-animation-duration-100` has been renamed to `--mod-button-animation-duration`
31+
- `--mod-bold-font-weight` has been renamed to `--mod-button-font-weight`
32+
33+
## 14.0.0-next.5
34+
35+
### Patch Changes
36+
37+
- Updated peerDependencies [[`7f45ea9`](https://github.com/adobe/spectrum-css/commit/7f45ea95d3d31addf29b0720de8623b0f3f0431d)]:
38+
- @spectrum-css/icon@>=7
39+
- @spectrum-css/progresscircle@>=3
40+
- @spectrum-css/tokens@>=14
41+
342
## 14.0.1
443

544
### Patch Changes
@@ -147,38 +186,6 @@
147186
- @spectrum-css/progresscircle@3.1.1
148187
- @spectrum-css/icon@7.1.1
149188

150-
## 14.0.0-next.6
151-
152-
### Major Changes
153-
154-
- [#2600](https://github.com/adobe/spectrum-css/pull/2600) [`3559678`](https://github.com/adobe/spectrum-css/commit/35596780a1309dd145fa565461d330ddfaf50e68) Thanks [@jawinn](https://github.com/jawinn)!
155-
156-
#### Spectrum 2 migration
157-
Button now uses Spectrum 2 tokens and specifications, which includes many color changes to all variants. A few other notable changes:
158-
159-
- Outline buttons are no longer available in accent and negative options — use the filled variant instead.
160-
- Medium size is now the default. The class `.spectrum-Button--sizeM` is now unnecessary for this size, and has been removed.
161-
- The `.spectrum-Button--fill` class is no longer needed and has been removed.
162-
163-
The following `--mod` custom properties have been renamed:
164-
165-
- `--mod-line-height-100` has been renamed to `--mod-button-line-height`
166-
- `--mod-sans-font-family-stack` has been renamed to `--mod-button-font-family`
167-
- `--mod-animation-duration-100` has been renamed to `--mod-button-animation-duration`
168-
- `--mod-bold-font-weight` has been renamed to `--mod-button-font-weight`
169-
170-
## 14.0.0-next.5
171-
172-
### Patch Changes
173-
174-
- Updated peerDependencies [[`7f45ea9`](https://github.com/adobe/spectrum-css/commit/7f45ea95d3d31addf29b0720de8623b0f3f0431d)]:
175-
- @spectrum-css/icon@>=7
176-
- @spectrum-css/progresscircle@>=3
177-
- @spectrum-css/tokens@>=14
178-
179-
All notable changes to this project will be documented in this file.
180-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
181-
182189
## 13.1.0
183190

184191
### Minor Changes

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": "14.0.0-next.6",
3+
"version": "14.0.0-next.7",
44
"description": "The Spectrum CSS button component",
55
"license": "Apache-2.0",
66
"author": "Adobe",

components/buttongroup/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@spectrum-css/tokens": ">=14.0.0-next.0"
3030
},
3131
"devDependencies": {
32-
"@spectrum-css/button": "14.0.0-next.6",
32+
"@spectrum-css/button": "14.0.0-next.7",
3333
"@spectrum-css/tokens": "14.0.0-next.8"
3434
},
3535
"keywords": [

components/coachmark/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"devDependencies": {
4242
"@spectrum-css/actionbutton": "7.0.1",
4343
"@spectrum-css/actionmenu": "7.0.0",
44-
"@spectrum-css/button": "14.0.0-next.6",
44+
"@spectrum-css/button": "14.0.0-next.7",
4545
"@spectrum-css/buttongroup": "7.0.0-next.3",
4646
"@spectrum-css/menu": "9.0.1",
4747
"@spectrum-css/popover": "8.0.1",

components/inlinealert/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
}
3636
},
3737
"devDependencies": {
38-
"@spectrum-css/button": "14.0.0-next.6",
38+
"@spectrum-css/button": "14.0.0-next.7",
3939
"@spectrum-css/icon": "9.0.1",
4040
"@spectrum-css/tokens": "14.0.0-next.8"
4141
},

components/pagination/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
},
3434
"devDependencies": {
3535
"@spectrum-css/actionbutton": "7.0.1",
36-
"@spectrum-css/button": "14.0.0-next.6",
36+
"@spectrum-css/button": "14.0.0-next.7",
3737
"@spectrum-css/icon": "9.0.1",
3838
"@spectrum-css/textfield": "8.0.1",
3939
"@spectrum-css/tokens": "14.0.0-next.8"

components/table/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
}
4444
},
4545
"devDependencies": {
46-
"@spectrum-css/button": "14.0.0-next.6",
46+
"@spectrum-css/button": "14.0.0-next.7",
4747
"@spectrum-css/checkbox": "10.0.1",
4848
"@spectrum-css/icon": "9.0.1",
4949
"@spectrum-css/thumbnail": "8.0.1",

components/toast/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"@spectrum-css/tokens": ">=14.0.0-next.0"
3232
},
3333
"devDependencies": {
34-
"@spectrum-css/button": "14.0.0-next.6",
34+
"@spectrum-css/button": "14.0.0-next.7",
3535
"@spectrum-css/closebutton": "5.0.0-next.2",
3636
"@spectrum-css/icon": "9.0.1",
3737
"@spectrum-css/tokens": "14.0.0-next.8"

0 commit comments

Comments
 (0)