Skip to content

Commit

Permalink
Merge tag 'v2.22.2' into release/opensource
Browse files Browse the repository at this point in the history
  • Loading branch information
Dottenpixel committed Nov 9, 2023
2 parents 97073c2 + b751404 commit 7888ee5
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 10 deletions.
6 changes: 5 additions & 1 deletion RELEASENOTES.general.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<!-- Release notes authoring guidelines: http://keepachangelog.com/ -->
<!-- On release, add general notes here. In time the legacy release notes will be add to this -->

## 2.22.1 - August 16, 2023
## 2.22.2 - November 9, 2023

## 2.22.1 - November 2, 2023

## 2.22.0 - August 16, 2023
- Fixed the app launcher button is invisible When windows high contrast is enabled.
- Fixed the checkbox to high contrast when the focus is placed on it.
- Updated icons to `v10.7.0`
Expand Down
35 changes: 34 additions & 1 deletion RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
<!-- Release notes authoring guidelines: http://keepachangelog.com/ -->
<!-- !!! THIS FILE IS AUTO-GENERATED !!! DO NOT EDIT THIS FILE MANUALLY !!! -->

## Release 2.22.0 - August 16, 2023
## Release 2.22.2 - November 9, 2023

## Components
### [Setup Assistant](https://www.lightningdesignsystem.com/components/setup-assistant)
#### Changed
- Moved unscoped .slds-media__figure to setup-assistant rtl styles

## Release 2.22.1 - November 2, 2023

## 2.22.0 - August 16, 2023
- Fixed the app launcher button is invisible When windows high contrast is enabled.
- Fixed the checkbox to high contrast when the focus is placed on it.
- Updated icons to `v10.7.0`
- Standard Set:
- Added `attribute_based_pricing`
Expand Down Expand Up @@ -63,6 +73,29 @@
- Updated `delegated_account`
- Updated `entitlement_policy`

## Components
### [Checkbox](https://www.lightningdesignsystem.com/components/checkbox)
#### Fixed
- Fixed the checkbox to high contrast when the focus is placed on it.

### [Dynamic Icons](https://www.lightningdesignsystem.com/components/dynamic-icons)
#### Fixed
- Fixed the app launcher button is invisible When windows high contrast is enabled.

### [Progress Indicator](https://www.lightningdesignsystem.com/components/progress-indicator)
#### Fixed
- Matching styles for [dir=rtl] added.

### [Setup Assistant](https://www.lightningdesignsystem.com/components/setup-assistant)
#### Added
- Matching styles for [dir=rtl] added.

### [Summary Detail](https://www.lightningdesignsystem.com/components/summary-detail)
#### Fixed
- Matching styles for [dir=rtl] added.

## Release 2.22.0 - November 9, 2023

## Components
### [Activity Timeline](https://www.lightningdesignsystem.com/components/activity-timeline)
#### Changed
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"CSS"
],
"homepage": "https://lightningdesignsystem.com",
"version": "2.22.1",
"version": "2.22.2",
"author": "Salesforce",
"bugs": {
"url": "https://github.com/salesforce-ux/design-system/issues"
Expand Down
2 changes: 1 addition & 1 deletion ui/_config.scss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
///
/// @type String
/// @access private
$app-version: "2.22.1";
$app-version: "2.22.2";

/// Debug mode (uncomment to activate)
/// Turn on to output deprecation warnings during development
Expand Down
6 changes: 6 additions & 0 deletions ui/components/setup-assistant/RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
# Setup Assistant Release Notes

<!-- ## [Unreleased] -->
## 2.22.2

### Changed

- Moved unscoped .slds-media__figure to setup-assistant rtl styles

## 2.22.1

### Added
Expand Down
18 changes: 14 additions & 4 deletions ui/components/setup-assistant/base/_index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,12 @@
.slds-progress-ring_large {
top: 1px;
}

.slds-media__figure {
@include rtl() {
margin-left: $spacing-small;
}
}
}


Expand All @@ -64,7 +70,7 @@
.slds-setup-assistant__step-summary-content {
margin-right: $spacing-xx-large;
@include rtl() {
margin-right:$spacing-none;
margin-right: $spacing-none;
}
}

Expand All @@ -91,12 +97,16 @@
padding-right: $spacing-large;
padding-left: $spacing-medium;
}

.slds-media_center{
@include rtl() {
margin-right: $spacing-medium;
}
}
}
.slds-media__figure{
margin-left: $spacing-small;

.slds-media__figure {
@include rtl() {
margin-left: $spacing-small;
}
}
}

0 comments on commit 7888ee5

Please sign in to comment.