Skip to content

Commit 5c10d48

Browse files
chore: release (#3623)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 851be13 commit 5c10d48

11 files changed

+41
-38
lines changed

.changeset/breezy-crews-guess.md

-9
This file was deleted.

.changeset/rude-jokes-judge.md

-9
This file was deleted.

.changeset/sharp-spiders-complain.md

-6
This file was deleted.

components/combobox/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change log
22

3+
## 4.1.2
4+
5+
### Patch Changes
6+
7+
- [#3609](https://github.com/adobe/spectrum-css/pull/3609) [`851be13`](https://github.com/adobe/spectrum-css/commit/851be13295f9d42d548894fee6626009f053de61) Thanks [@marissahuysentruyt](https://github.com/marissahuysentruyt)! - Fast follow fixes for combobox
8+
9+
- corrects container query for the `--system` reference to "legacy" in the combobox/themes/spectrum.css file
10+
- corrects the border colors for several combobox states including focus, keyboardFocus, focus+hover, disabled, read-only for all themes
11+
- adds `--spectrum-combobox-readonly-input-border-color: var(--spectrum-gray-400);` to express.css theme so that the default border and read-only border colors are the same
12+
313
## 4.1.1
414

515
### Patch Changes

components/combobox/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spectrum-css/combobox",
3-
"version": "4.1.1",
3+
"version": "4.1.2",
44
"description": "The Spectrum CSS combobox component",
55
"license": "Apache-2.0",
66
"author": "Adobe",

components/slider/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Change log
22

3+
## 6.2.0
4+
5+
### Minor Changes
6+
7+
- [#3611](https://github.com/adobe/spectrum-css/pull/3611) [`8cb98c6`](https://github.com/adobe/spectrum-css/commit/8cb98c6127a91f902f305faeb800e3c787e97e66) Thanks [@aramos-adobe](https://github.com/aramos-adobe)! - # Slider: offset variant track fix
8+
9+
The border radius styles were not being applied to the second instance of the `spectrum-Slider-track` when the offset variant is activated. The reason for this bug is because when the `offset` is selected, the template structure changes as `spectrum-Slider-fill` gets added to the slider.
10+
11+
Adding a sibling combinator `&~.spectrum-Slider-track` to `spectrum-Slider-track` when offset is activated resolved the issue.
12+
313
## 6.1.0
414

515
### Minor Changes

components/slider/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spectrum-css/slider",
3-
"version": "6.1.0",
3+
"version": "6.2.0",
44
"description": "The Spectrum CSS slider component",
55
"license": "Apache-2.0",
66
"author": "Adobe",
@@ -37,7 +37,7 @@
3737
}
3838
},
3939
"devDependencies": {
40-
"@spectrum-css/stepper": "7.1.2",
40+
"@spectrum-css/stepper": "7.1.3",
4141
"@spectrum-css/tokens": "16.0.1"
4242
},
4343
"keywords": [

components/stepper/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Change log
22

3+
## 7.1.3
4+
5+
### Patch Changes
6+
7+
- [#3621](https://github.com/adobe/spectrum-css/pull/3621) [`3aec28a`](https://github.com/adobe/spectrum-css/commit/3aec28aac60bdf32a585fa8ff38559d80b57ff86) Thanks [@marissahuysentruyt](https://github.com/marissahuysentruyt)! - - Updates `--spectrum-stepper-border-color-focus-hover` from `gray-800` to `gray-900`.
8+
- Updates `--spectrum-stepper-buttons-border-color-keyboard-focus` from `gray-900` to `gray-800` to match the rest of the border color on keyboardFocus.
9+
310
## 7.1.2
411

512
### Patch Changes

components/stepper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spectrum-css/stepper",
3-
"version": "7.1.2",
3+
"version": "7.1.3",
44
"description": "The Spectrum CSS stepper component",
55
"license": "Apache-2.0",
66
"author": "Adobe",

tools/bundle/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"@spectrum-css/colorloupe": "7.1.0",
5858
"@spectrum-css/colorslider": "8.1.0",
5959
"@spectrum-css/colorwheel": "6.1.0",
60-
"@spectrum-css/combobox": "4.1.1",
60+
"@spectrum-css/combobox": "4.1.2",
6161
"@spectrum-css/commons": "11.0.0",
6262
"@spectrum-css/contextualhelp": "5.1.2",
6363
"@spectrum-css/datepicker": "4.1.1",
@@ -93,11 +93,11 @@
9393
"@spectrum-css/rating": "6.1.0",
9494
"@spectrum-css/search": "8.1.1",
9595
"@spectrum-css/sidenav": "7.1.0",
96-
"@spectrum-css/slider": "6.1.0",
96+
"@spectrum-css/slider": "6.2.0",
9797
"@spectrum-css/splitview": "7.1.0",
9898
"@spectrum-css/statuslight": "9.1.0",
9999
"@spectrum-css/steplist": "7.1.0",
100-
"@spectrum-css/stepper": "7.1.2",
100+
"@spectrum-css/stepper": "7.1.3",
101101
"@spectrum-css/swatch": "8.1.2",
102102
"@spectrum-css/swatchgroup": "5.1.0",
103103
"@spectrum-css/switch": "6.1.0",

yarn.lock

+7-7
Original file line numberDiff line numberDiff line change
@@ -4037,7 +4037,7 @@ __metadata:
40374037
"@spectrum-css/colorloupe": "npm:7.1.0"
40384038
"@spectrum-css/colorslider": "npm:8.1.0"
40394039
"@spectrum-css/colorwheel": "npm:6.1.0"
4040-
"@spectrum-css/combobox": "npm:4.1.1"
4040+
"@spectrum-css/combobox": "npm:4.1.2"
40414041
"@spectrum-css/commons": "npm:11.0.0"
40424042
"@spectrum-css/contextualhelp": "npm:5.1.2"
40434043
"@spectrum-css/datepicker": "npm:4.1.1"
@@ -4073,11 +4073,11 @@ __metadata:
40734073
"@spectrum-css/rating": "npm:6.1.0"
40744074
"@spectrum-css/search": "npm:8.1.1"
40754075
"@spectrum-css/sidenav": "npm:7.1.0"
4076-
"@spectrum-css/slider": "npm:6.1.0"
4076+
"@spectrum-css/slider": "npm:6.2.0"
40774077
"@spectrum-css/splitview": "npm:7.1.0"
40784078
"@spectrum-css/statuslight": "npm:9.1.0"
40794079
"@spectrum-css/steplist": "npm:7.1.0"
4080-
"@spectrum-css/stepper": "npm:7.1.2"
4080+
"@spectrum-css/stepper": "npm:7.1.3"
40814081
"@spectrum-css/swatch": "npm:8.1.2"
40824082
"@spectrum-css/swatchgroup": "npm:5.1.0"
40834083
"@spectrum-css/switch": "npm:6.1.0"
@@ -4392,7 +4392,7 @@ __metadata:
43924392
languageName: unknown
43934393
linkType: soft
43944394

4395-
"@spectrum-css/combobox@npm:4.1.1, @spectrum-css/combobox@workspace:components/combobox":
4395+
"@spectrum-css/combobox@npm:4.1.2, @spectrum-css/combobox@workspace:components/combobox":
43964396
version: 0.0.0-use.local
43974397
resolution: "@spectrum-css/combobox@workspace:components/combobox"
43984398
dependencies:
@@ -5161,11 +5161,11 @@ __metadata:
51615161
languageName: unknown
51625162
linkType: soft
51635163

5164-
"@spectrum-css/slider@npm:6.1.0, @spectrum-css/slider@workspace:components/slider":
5164+
"@spectrum-css/slider@npm:6.2.0, @spectrum-css/slider@workspace:components/slider":
51655165
version: 0.0.0-use.local
51665166
resolution: "@spectrum-css/slider@workspace:components/slider"
51675167
dependencies:
5168-
"@spectrum-css/stepper": "npm:7.1.2"
5168+
"@spectrum-css/stepper": "npm:7.1.3"
51695169
"@spectrum-css/tokens": "npm:16.0.1"
51705170
peerDependencies:
51715171
"@spectrum-css/stepper": ">=7.0.0 <8.0.0"
@@ -5225,7 +5225,7 @@ __metadata:
52255225
languageName: unknown
52265226
linkType: soft
52275227

5228-
"@spectrum-css/stepper@npm:7.1.2, @spectrum-css/stepper@workspace:components/stepper":
5228+
"@spectrum-css/stepper@npm:7.1.3, @spectrum-css/stepper@workspace:components/stepper":
52295229
version: 0.0.0-use.local
52305230
resolution: "@spectrum-css/stepper@workspace:components/stepper"
52315231
dependencies:

0 commit comments

Comments
 (0)