Skip to content

Commit 86a6211

Browse files
authoredMar 14, 2025··
fix(Radio): update ordering of selectors for checked options (#5765)
Co-authored-by: joshblack <joshblack@users.noreply.github.com>
1 parent 9e18567 commit 86a6211

12 files changed

+46
-53
lines changed
 

‎.changeset/serious-jars-sing.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@primer/react": patch
3+
---
4+
5+
Update ordering of selectors to improve rendering of checked Radio options
Loading
Loading
Loading

‎e2e/components/Radio.test.ts

+40-52
Original file line numberDiff line numberDiff line change
@@ -2,74 +2,62 @@ import {test, expect} from '@playwright/test'
22
import {visit} from '../test-helpers/storybook'
33
import {themes} from '../test-helpers/themes'
44

5-
test.describe('Radio', () => {
6-
test.describe('Default', () => {
7-
for (const theme of themes) {
8-
test.describe(theme, () => {
9-
test('default @vrt', async ({page}) => {
10-
await visit(page, {
11-
id: 'components-radio--default',
12-
globals: {
13-
colorScheme: theme,
14-
},
15-
})
5+
const stories = [
6+
{
7+
title: 'Default',
8+
id: 'components-radio--default',
9+
},
10+
{
11+
title: 'Disabled',
12+
id: 'components-radio-features--disabled',
13+
},
14+
{
15+
title: 'With Caption',
16+
id: 'components-radio-features--with-caption',
17+
},
18+
{
19+
title: 'With Leading Visual',
20+
id: 'components-radio-features--with-leading-visual',
21+
},
22+
] as const
1623

17-
// Default state
18-
expect(await page.screenshot()).toMatchSnapshot(`Radio.Default.${theme}.png`)
19-
})
20-
})
21-
}
22-
})
24+
test.describe('Radio', () => {
25+
for (const story of stories) {
26+
test.describe(story.title, () => {
27+
for (const theme of themes) {
28+
test.describe(theme, () => {
29+
test('default @vrt', async ({page}) => {
30+
await visit(page, {
31+
id: story.id,
32+
globals: {
33+
colorScheme: theme,
34+
},
35+
})
2336

24-
test.describe('Disabled', () => {
25-
for (const theme of themes) {
26-
test.describe(theme, () => {
27-
test('default @vrt', async ({page}) => {
28-
await visit(page, {
29-
id: 'components-radio-features--disabled',
30-
globals: {
31-
colorScheme: theme,
32-
},
37+
// Default state
38+
expect(await page.screenshot()).toMatchSnapshot(`Radio.${story.title}.${theme}.png`)
3339
})
34-
35-
// Default state
36-
expect(await page.screenshot()).toMatchSnapshot(`Radio.Disabled.${theme}.png`)
3740
})
38-
})
39-
}
40-
})
41+
}
42+
})
43+
}
4144

42-
test.describe('With Caption', () => {
45+
test.describe('Checked', () => {
4346
for (const theme of themes) {
4447
test.describe(theme, () => {
4548
test('default @vrt', async ({page}) => {
4649
await visit(page, {
47-
id: 'components-radio-features--with-caption',
50+
id: 'components-radio--playground',
4851
globals: {
4952
colorScheme: theme,
5053
},
51-
})
52-
53-
// Default state
54-
expect(await page.screenshot()).toMatchSnapshot(`Radio.With Caption.${theme}.png`)
55-
})
56-
})
57-
}
58-
})
59-
60-
test.describe('With Leading Visual', () => {
61-
for (const theme of themes) {
62-
test.describe(theme, () => {
63-
test('default @vrt', async ({page}) => {
64-
await visit(page, {
65-
id: 'components-radio-features--with-leading-visual',
66-
globals: {
67-
colorScheme: theme,
54+
args: {
55+
checked: true,
6856
},
6957
})
7058

7159
// Default state
72-
expect(await page.screenshot()).toMatchSnapshot(`Radio.With Leading Visual.${theme}.png`)
60+
expect(await page.screenshot()).toMatchSnapshot(`Radio.Checked.${theme}.png`)
7361
})
7462
})
7563
}

‎packages/react/src/Radio/Radio.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import React, {useContext} from 'react'
33
import type {SxProp} from '../sx'
44
import {RadioGroupContext} from '../RadioGroup/RadioGroup'
55
import {clsx} from 'clsx'
6-
import classes from './Radio.module.css'
76
import sharedClasses from '../Checkbox/shared.module.css'
7+
import classes from './Radio.module.css'
88
import {defaultSxProp} from '../utils/defaultSxProp'
99
import Box from '../Box'
1010

0 commit comments

Comments
 (0)
Please sign in to comment.