Skip to content

Commit 01a5028

Browse files
authored
Merge branch '240-winter-23' into merge-summer-22-winter-23
2 parents 13182f7 + 7b4a5b7 commit 01a5028

File tree

7 files changed

+37
-1
lines changed

7 files changed

+37
-1
lines changed

RELEASENOTES.md

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

4+
## Release 2.19.0 - April 12, 2022
5+
6+
## Components
7+
8+
### [Dynamic Icons](https://www.lightningdesignsystem.com/components/dynamic-icons)
9+
#### Changed
10+
- Updated Global Action Help icon's `role` attribute from `presentation` to `img` for better accessibility compliance
11+
12+
### [Global Navigation](https://www.lightningdesignsystem.com/components/global-navigation)
13+
#### Added
14+
- Added `role="img"` to unread indicator dot to comply with accessibility usage rules for `aria-label`
15+
16+
### [Tabs](https://www.lightningdesignsystem.com/components/tabs)
17+
#### Added
18+
- Added `role="img"` to unread indicator dot to comply with accessibility usage rules for `aria-label`
19+
420
## Release 2.18.0 - Upcoming
521

622
- Removed `&_` shorthand from numerous selectors in SCSS files

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.19.0
10+
11+
### Changed
12+
- Updated Global Action Help icon's `role` attribute from `presentation` to `img` for better accessibility compliance
13+
914
## 2.17.0
1015

1116
### Changed

ui/components/dynamic-icons/global-action-help/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ let GlobalActionHelp = () => (
77
xmlns="http://www.w3.org/2000/svg"
88
viewBox="0 -12 78.5 110"
99
aria-labelledby="title"
10-
role="presentation"
10+
role="img"
1111
>
1212
<defs>
1313
<mask id="questionMark" x="0" y="0" width="78.5" height="110">

ui/components/global-navigation/RELEASENOTES.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@
44

55
<!-- ## [Unreleased] -->
66

7+
## 2.19.0
8+
9+
### Added
10+
11+
- Added `role="img"` to unread indicator dot to comply with accessibility usage rules for `aria-label`
12+
13+
714
## 2.13.0
815

916
### Changed

ui/components/global-navigation/index.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export const IndicatorUnread = props => (
2727
aria-label="New Activity"
2828
className="slds-indicator_unread"
2929
title="New Activity"
30+
role="img"
3031
/>
3132
);
3233

ui/components/tabs/RELEASENOTES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@
44

55
<!-- ## [Unreleased] -->
66

7+
## 2.19.0
8+
9+
### Added
10+
11+
- Added `role="img"` to unread indicator dot to comply with accessibility usage rules for `aria-label`
12+
713
## 2.17.0
814

915
### Added

ui/components/tabs/docs.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,7 @@ Unread tabs receive a red dot on the tab.
245245
aria-label="New Activity"
246246
className="slds-indicator_unread"
247247
title="New Activity"
248+
role="img"
248249
/>
249250
</CodeBlock>
250251

0 commit comments

Comments
 (0)