Skip to content

Commit c43f97e

Browse files
committed
Merge branch '244-summer-23' into merge-summer-23-winter-24
2 parents 51f303b + 8dc2f86 commit c43f97e

File tree

6 files changed

+18
-3
lines changed

6 files changed

+18
-3
lines changed

.github/workflows/vrt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
NODE_OPTIONS: --openssl-legacy-provider # per https://candid.technology/error-error-0308010c-digital-envelope-routines-unsupported/
6969

7070
vrt-legacy:
71-
if: contains(fromJSON('["vrt:full-ready"]'), github.event.label.name)
71+
if: contains(fromJSON('["vrt:legacy-ready"]'), github.event.label.name)
7272
needs: vrt-init
7373
runs-on: ubuntu-latest
7474

RELEASENOTES.general.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@
6666
- Updated `delegated_account`
6767
- Updated `entitlement_policy`
6868

69+
## 2.21.5 - July 19, 2023
70+
6971
## 2.21.4 - July 17, 2023
7072

7173
- Updated icons to `v10.6.1`

RELEASENOTES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,13 @@
129129
- Replaced aria-hidden with hidden attribute for components that show/hide content
130130
<!-- ## [VERSION] -->
131131

132+
## Release 2.21.5 - July 19, 2023
133+
134+
## Components
135+
### [Checkbox Toggle](https://www.lightningdesignsystem.com/components/checkbox-toggle)
136+
#### Changed
137+
- Updated disabled checkbox toggle button color.
138+
132139
## Release 2.21.4 - July 17, 2023
133140

134141
- Updated icons to `v10.6.1`

ui/_config.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
///
1010
/// @type String
1111
/// @access private
12-
$app-version: "2.21.3";
12+
$app-version: "2.21.5";
1313

1414
/// Debug mode (uncomment to activate)
1515
/// Turn on to output deprecation warnings during development

ui/components/checkbox-toggle/RELEASENOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,14 @@
44

55
<!-- ## [Unreleased] -->
66
## 2.22.0
7+
78
### Fixed
89
- Fixed `NVDA` checkbox toggle is announced twice removed aria-live="assertive"
10+
## 2.21.5
11+
12+
### Changed
13+
- Updated disabled checkbox toggle button color.
14+
915
## 2.17.0
1016

1117
### Added

ui/components/checkbox-toggle/base/_index.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@
229229

230230
&:after {
231231
// @todo consider shared hooks for inputs
232-
background-color: var(--slds-g-color-neutral-base-80, #{$color-background-input-checkbox-disabled});
232+
background-color: var(--slds-g-color-neutral-base-90, #{$color-background-input-checkbox-disabled});
233233
}
234234

235235
&:hover,

0 commit comments

Comments
 (0)