Skip to content

Commit 7888ee5

Browse files
committed
Merge tag 'v2.22.2' into release/opensource
2 parents 97073c2 + b751404 commit 7888ee5

File tree

7 files changed

+63
-10
lines changed

7 files changed

+63
-10
lines changed

RELEASENOTES.general.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
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.1 - August 16, 2023
4+
## 2.22.2 - November 9, 2023
5+
6+
## 2.22.1 - November 2, 2023
7+
8+
## 2.22.0 - August 16, 2023
59
- Fixed the app launcher button is invisible When windows high contrast is enabled.
610
- Fixed the checkbox to high contrast when the focus is placed on it.
711
- Updated icons to `v10.7.0`

RELEASENOTES.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,18 @@
11
<!-- Release notes authoring guidelines: http://keepachangelog.com/ -->
22
<!-- !!! THIS FILE IS AUTO-GENERATED !!! DO NOT EDIT THIS FILE MANUALLY !!! -->
33

4-
## Release 2.22.0 - August 16, 2023
4+
## Release 2.22.2 - November 9, 2023
55

6+
## Components
7+
### [Setup Assistant](https://www.lightningdesignsystem.com/components/setup-assistant)
8+
#### Changed
9+
- Moved unscoped .slds-media__figure to setup-assistant rtl styles
10+
11+
## Release 2.22.1 - November 2, 2023
12+
13+
## 2.22.0 - August 16, 2023
14+
- Fixed the app launcher button is invisible When windows high contrast is enabled.
15+
- Fixed the checkbox to high contrast when the focus is placed on it.
616
- Updated icons to `v10.7.0`
717
- Standard Set:
818
- Added `attribute_based_pricing`
@@ -63,6 +73,29 @@
6373
- Updated `delegated_account`
6474
- Updated `entitlement_policy`
6575

76+
## Components
77+
### [Checkbox](https://www.lightningdesignsystem.com/components/checkbox)
78+
#### Fixed
79+
- Fixed the checkbox to high contrast when the focus is placed on it.
80+
81+
### [Dynamic Icons](https://www.lightningdesignsystem.com/components/dynamic-icons)
82+
#### Fixed
83+
- Fixed the app launcher button is invisible When windows high contrast is enabled.
84+
85+
### [Progress Indicator](https://www.lightningdesignsystem.com/components/progress-indicator)
86+
#### Fixed
87+
- Matching styles for [dir=rtl] added.
88+
89+
### [Setup Assistant](https://www.lightningdesignsystem.com/components/setup-assistant)
90+
#### Added
91+
- Matching styles for [dir=rtl] added.
92+
93+
### [Summary Detail](https://www.lightningdesignsystem.com/components/summary-detail)
94+
#### Fixed
95+
- Matching styles for [dir=rtl] added.
96+
97+
## Release 2.22.0 - November 9, 2023
98+
6699
## Components
67100
### [Activity Timeline](https://www.lightningdesignsystem.com/components/activity-timeline)
68101
#### Changed

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.1",
11+
"version": "2.22.2",
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.1";
12+
$app-version: "2.22.2";
1313

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

ui/components/setup-assistant/RELEASENOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
# Setup Assistant Release Notes
44

55
<!-- ## [Unreleased] -->
6+
## 2.22.2
7+
8+
### Changed
9+
10+
- Moved unscoped .slds-media__figure to setup-assistant rtl styles
11+
612
## 2.22.1
713

814
### Added

ui/components/setup-assistant/base/_index.scss

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,12 @@
5252
.slds-progress-ring_large {
5353
top: 1px;
5454
}
55+
56+
.slds-media__figure {
57+
@include rtl() {
58+
margin-left: $spacing-small;
59+
}
60+
}
5561
}
5662

5763

@@ -64,7 +70,7 @@
6470
.slds-setup-assistant__step-summary-content {
6571
margin-right: $spacing-xx-large;
6672
@include rtl() {
67-
margin-right:$spacing-none;
73+
margin-right: $spacing-none;
6874
}
6975
}
7076

@@ -91,12 +97,16 @@
9197
padding-right: $spacing-large;
9298
padding-left: $spacing-medium;
9399
}
100+
94101
.slds-media_center{
95102
@include rtl() {
96103
margin-right: $spacing-medium;
97104
}
98105
}
99-
}
100-
.slds-media__figure{
101-
margin-left: $spacing-small;
106+
107+
.slds-media__figure {
108+
@include rtl() {
109+
margin-left: $spacing-small;
110+
}
111+
}
102112
}

0 commit comments

Comments
 (0)