diff --git a/RELEASENOTES.general.md b/RELEASENOTES.general.md index 15c1dc515..74c392923 100644 --- a/RELEASENOTES.general.md +++ b/RELEASENOTES.general.md @@ -1,7 +1,11 @@ -## 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` diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 5d0e08df4..4b5905b1a 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -1,8 +1,18 @@ -## 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` @@ -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 diff --git a/package-lock.json b/package-lock.json index 22a6f71f9..cff7626a7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "design-system", - "version": "2.22.1", + "version": "2.22.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "design-system", - "version": "2.22.1", + "version": "2.22.2", "license": "BSD-3-Clause", "dependencies": { "@snyk/protect": "^1.657.0" diff --git a/package.json b/package.json index 0fe4f4a23..a2ae43773 100644 --- a/package.json +++ b/package.json @@ -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" diff --git a/ui/_config.scss b/ui/_config.scss index 32e60faca..2a1ea5d72 100644 --- a/ui/_config.scss +++ b/ui/_config.scss @@ -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 diff --git a/ui/components/setup-assistant/RELEASENOTES.md b/ui/components/setup-assistant/RELEASENOTES.md index adf5826cd..378126a28 100644 --- a/ui/components/setup-assistant/RELEASENOTES.md +++ b/ui/components/setup-assistant/RELEASENOTES.md @@ -3,6 +3,12 @@ # Setup Assistant Release Notes +## 2.22.2 + +### Changed + +- Moved unscoped .slds-media__figure to setup-assistant rtl styles + ## 2.22.1 ### Added diff --git a/ui/components/setup-assistant/base/_index.scss b/ui/components/setup-assistant/base/_index.scss index 4ea48cf33..151f4753b 100644 --- a/ui/components/setup-assistant/base/_index.scss +++ b/ui/components/setup-assistant/base/_index.scss @@ -52,6 +52,12 @@ .slds-progress-ring_large { top: 1px; } + + .slds-media__figure { + @include rtl() { + margin-left: $spacing-small; + } + } } @@ -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; } } @@ -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; + } + } }