Skip to content

Commit c359ebc

Browse files
authored
chore(merge): 2.21.1 Summer 23 ➡️ Winter 24 (#5199)
2 parents 6dad003 + ef1b144 commit c359ebc

File tree

4 files changed

+60
-9
lines changed

4 files changed

+60
-9
lines changed

RELEASENOTES.general.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
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 - Upcoming
5+
6+
## 2.21.1 - May 18, 2023
7+
8+
## Fixed
9+
10+
- Fixed grid column size classes where the `slds-col-` class now applies 'flex: 1 1 auto,' which breaks grid layouts when combined with `slds-small|medium|large-size_*` classes. This results in incomplete rows and layout issues.
411

512
## 2.21.0 - April 20, 2023
613

RELEASENOTES.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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 - May 5, 2023
4+
## Release 2.22.0 - Upcoming
55

66
## Components
77
### [Activity Timeline](https://www.lightningdesignsystem.com/components/activity-timeline)
@@ -17,10 +17,18 @@
1717
#### Fixed
1818
- Fixed `NVDA` checkbox toggle is announced twice removed aria-live="assertive"
1919

20+
### [Data Tables](https://www.lightningdesignsystem.com/components/data-tables)
21+
#### Changed
22+
- Removed `aria-label` from table header to prevent from reading twice headers.
23+
2024
### [Expandable Section](https://www.lightningdesignsystem.com/components/expandable-section)
2125
#### Changed
2226
- Replaced aria-hidden with hidden attribute for components that show/hide content
2327

28+
### [Modals](https://www.lightningdesignsystem.com/components/modals)
29+
#### Changed
30+
- Optimized full size option and refactored to use CSS grid.
31+
2432
### [Panels](https://www.lightningdesignsystem.com/components/panels)
2533
#### Changed
2634
- Replaced aria-hidden with hidden attribute for components that show/hide content
@@ -38,6 +46,11 @@
3846
- Replaced aria-hidden with hidden attribute for components that show/hide content
3947
<!-- ## [VERSION] -->
4048

49+
## Release 2.21.1 - May 18, 2023
50+
51+
## Fixed
52+
- Fixed grid column size classes where the `slds-col-` class now applies 'flex: 1 1 auto,' which breaks grid layouts when combined with `slds-small|medium|large-size_*` classes. This results in incomplete rows and layout issues.
53+
4154
## Release 2.21.0 - April 20, 2023
4255

4356
## Fixed

release.sh

Lines changed: 38 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,41 @@
22

33
build_site_only=false
44

5+
dist_path="./.dist"
6+
7+
# Specify the path to the package.json file
8+
package_json="$dist_path/package.json"
9+
10+
use_exising_dist=false
11+
12+
if [ -e "$package_json" ]; then
13+
# Use jq to extract the version property
14+
version=$(jq -r '.version' "$package_json")
15+
16+
# Prompt the user to continue
17+
read -p "The version v$version exists in the .dist folder. Do you want to continue? (y/n): " choice
18+
19+
# Check the user's choice
20+
if [[ "$choice" == "y" || "$choice" == "Y" ]]; then
21+
echo "==============================================================="
22+
echo "Continuing with the existing version $version"
23+
echo "==============================================================="
24+
use_exising_dist=true
25+
fi
26+
fi
27+
28+
if [ "$use_exising_dist" = false ]; then
29+
echo "==============================================================="
30+
echo "Continuing to build and dist anew from v$(jq -r '.version' "./package.json")"
31+
echo "==============================================================="
32+
fi
33+
534
incorrect_selection() {
635
echo "Incorrect selection! Try again."
736
}
837

938
until [ "$selection" = "0" ]; do
10-
clear
39+
# clear
1140
echo "» Where would you like to publish?"
1241
echo ""
1342
echo " 1 - Upcoming"
@@ -36,8 +65,6 @@ done
3665
#
3766
# Do some cleanup & prep
3867
#
39-
echo "» Removing '.dist' folder..."
40-
rm -rf .dist/
4168
echo "» Removing '__release' folder..."
4269
rm -rf __release/
4370
echo "» Creating fresh '__release' folder..."
@@ -48,10 +75,14 @@ mkdir -p __release/
4875
#
4976
npx browserslist@latest --update-db
5077

51-
#
52-
# Build framework
53-
#
54-
npm run build-dist
78+
if [ "$use_exising_dist" = false ]; then
79+
echo "» Removing '.dist' folder..."
80+
rm -rf $dist_path
81+
#
82+
# Build framework
83+
#
84+
npm run build-dist
85+
fi
5586

5687
# # tar -cvf design-system-dist.tar .dist/
5788
# cd .dist && zip -r dist . && mv dist.zip ../ && cd ..

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

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

0 commit comments

Comments
 (0)