@thecb/components 9.0.3-beta.6 → 9.0.3-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -48,7 +48,9 @@ const RadioSection = ({
|
|
|
48
48
|
openHeight = "auto",
|
|
49
49
|
containerStyles = "",
|
|
50
50
|
ariaDescribedBy,
|
|
51
|
-
rightContentRole = null
|
|
51
|
+
rightContentRole = null,
|
|
52
|
+
ariaLabel = null,
|
|
53
|
+
rightIconsLabel = null
|
|
52
54
|
}) => {
|
|
53
55
|
const handleKeyDown = (id, e) => {
|
|
54
56
|
if (e?.keyCode === 13 || e?.keyCode === 32) {
|
|
@@ -197,7 +199,7 @@ const RadioSection = ({
|
|
|
197
199
|
</Box>
|
|
198
200
|
</Cluster>
|
|
199
201
|
{section.rightIcons && (
|
|
200
|
-
<Cluster childGap="0.5rem">
|
|
202
|
+
<Cluster childGap="0.5rem" aria-label={rightIconsLabel}>
|
|
201
203
|
{section.rightIcons.map(icon => (
|
|
202
204
|
<RightIcon
|
|
203
205
|
src={icon.img}
|