Skip to content

Commit 97073c2

Browse files
committed
Merge tag 'v2.22.1' into release/opensource
2 parents 401603d + e670a96 commit 97073c2

File tree

14 files changed

+75
-6
lines changed

14 files changed

+75
-6
lines changed

RELEASENOTES.general.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<!-- Release notes authoring guidelines: http://keepachangelog.com/ -->
22
<!-- On release, add general notes here. In time the legacy release notes will be add to this -->
33

4-
## 2.22.0 - August 16, 2023
5-
4+
## 2.22.1 - August 16, 2023
5+
- Fixed the app launcher button is invisible When windows high contrast is enabled.
6+
- Fixed the checkbox to high contrast when the focus is placed on it.
67
- Updated icons to `v10.7.0`
78
- Standard Set:
89
- Added `attribute_based_pricing`

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"CSS"
99
],
1010
"homepage": "https://lightningdesignsystem.com",
11-
"version": "2.22.0",
11+
"version": "2.22.1",
1212
"author": "Salesforce",
1313
"bugs": {
1414
"url": "https://github.com/salesforce-ux/design-system/issues"

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.22.0";
12+
$app-version: "2.22.1";
1313

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

ui/components/checkbox/RELEASENOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
# Checkbox Release Notes
44

55
<!-- ## [Unreleased] -->
6+
## 2.22.1
7+
8+
### Fixed
9+
- Fixed the checkbox to high contrast when the focus is placed on it.
610

711
## 2.18.0
812

ui/components/checkbox/base/_index.scss

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@
106106
+ .slds-checkbox__label .slds-checkbox--faux {
107107
// @todo consider shared hooks for inputs
108108

109+
outline: 1px solid var(--slds-g-color-brand-base-80, #{$palette-blue-80});
110+
outline-offset: 0px;
109111
/*! @css-var-fallback border-color */
110112
--slds-c-checkbox-color-border: var(--slds-c-checkbox-color-border-focus, var(--sds-c-checkbox-color-border-focus, var(--slds-g-color-brand-base-60, #{$color-border-input-active})));
111113

@@ -125,6 +127,20 @@
125127
}
126128
}
127129

130+
&:focus-visible {
131+
132+
+ .slds-checkbox_faux,
133+
+ .slds-checkbox--faux,
134+
~ .slds-checkbox_faux,
135+
~ .slds-checkbox--faux,
136+
+ .slds-checkbox__label .slds-checkbox_faux,
137+
+ .slds-checkbox__label .slds-checkbox--faux {
138+
// @todo consider shared hooks for inputs
139+
outline: 1px solid var(--slds-g-color-brand-base-80, #{$palette-blue-80});
140+
outline-offset: 0px;
141+
}
142+
}
143+
128144
&:indeterminate + .slds-checkbox_faux,
129145
&:indeterminate + .slds-checkbox--faux,
130146
&:indeterminate ~ .slds-checkbox_faux,

ui/components/dynamic-icons/RELEASENOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@
66

77
<!-- ## [VERSION] -->
88

9+
## 2.22.1
10+
11+
### Fixed
12+
- Fixed the app launcher button is invisible When windows high contrast is enabled.
13+
914
## 2.19.0
1015

1116
### Changed

ui/components/dynamic-icons/waffle/_index.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@
100100
transition: background-color 100ms;
101101
transform-origin: 50% 50%;
102102
will-change: scale, background-color;
103+
border: 2px solid transparent;
103104
}
104105

105106
// Positioning

ui/components/progress-indicator/RELEASENOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
<!-- Release notes authoring guidelines: http://keepachangelog.com/ -->
22

33
# Progress Indicator Release Notes
4+
## 2.22.1
45

6+
### Fixed
7+
8+
- Matching styles for [dir=rtl] added.
59
## 2.21.0
610

711
### Added

ui/components/progress-indicator/vertical/_index.scss

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,17 @@
3434
&:before {
3535
top: 0;
3636
bottom: 50%;
37+
@include rtl() {
38+
right: $spacing-large;
39+
}
3740
}
3841

3942
&:after {
4043
top: 50%;
4144
bottom: 0;
45+
@include rtl() {
46+
right: $spacing-large;
47+
}
4248
}
4349

4450
&:first-child:before,
@@ -83,6 +89,9 @@
8389
margin-right: $spacing-medium;
8490
min-width: $square-icon-utility-small;
8591
z-index: 5;
92+
@include rtl() {
93+
margin-left: $spacing-medium;
94+
}
8695
}
8796

8897
.slds-progress__marker_icon {

0 commit comments

Comments
 (0)