Skip to content

Commit

Permalink
fix(FormControl): update Caption to no longer use styled system props (
Browse files Browse the repository at this point in the history
…#4972)

* fix(FormControl): update Caption to no longer use styled system props

* chore: add changeset

* test(vrt): update snapshots

---------

Co-authored-by: Josh Black <[email protected]>
  • Loading branch information
joshblack and joshblack authored Sep 16, 2024
1 parent ad0461c commit 082b4e7
Show file tree
Hide file tree
Showing 66 changed files with 113 additions and 157 deletions.
5 changes: 5 additions & 0 deletions .changeset/silly-weeks-clap.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@primer/react': patch
---

Update issue where FormControl.Caption was rendering incorrectly when CSS Modules flags were enabled
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
252 changes: 96 additions & 156 deletions e2e/components/Checkbox.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,176 +2,116 @@ import {test, expect} from '@playwright/test'
import {visit} from '../test-helpers/storybook'
import {themes} from '../test-helpers/themes'

test.describe('Checkbox', () => {
test.describe('Default', () => {
for (const theme of themes) {
test.describe(theme, () => {
test('default @vrt', async ({page}) => {
await visit(page, {
id: 'components-checkbox--default',
globals: {
colorScheme: theme,
},
})

// Default state
expect(await page.screenshot({animations: 'disabled'})).toMatchSnapshot(`Checkbox.Default.${theme}.png`)
})
const stories = [
{
title: 'Default',
id: 'components-checkbox--default',
},
{
title: 'Disabled',
id: 'components-checkbox-features--disabled',
},
{
title: 'With Caption',
id: 'components-checkbox-features--with-caption',
},
{
title: 'With Leading Visual',
id: 'components-checkbox-features--with-leading-visual',
},
{
title: 'Indeterminate',
id: 'components-checkbox-features--indeterminate',
},
{
title: 'Visually Hidden',
id: 'components-checkbox--playground',
args: {
visuallyHidden: true,
},
},
] as const

test('axe @aat', async ({page}) => {
await visit(page, {
id: 'components-checkbox--default',
globals: {
colorScheme: theme,
},
})
await expect(page).toHaveNoViolations({
rules: {
'color-contrast': {
enabled: false,
test.describe('Checkbox', () => {
for (const story of stories) {
test.describe(story.title, () => {
for (const theme of themes) {
test.describe(theme, () => {
test('default @vrt', async ({page}) => {
await visit(page, {
id: story.id,
globals: {
colorScheme: theme,
featureFlags: {
primer_react_css_modules_team: true,
},
},
},
})
})
})
}
})
args: 'args' in story ? story.args : {},
})

test.describe('Disabled', () => {
for (const theme of themes) {
test.describe(theme, () => {
test('default @vrt', async ({page}) => {
await visit(page, {
id: 'components-checkbox-features--disabled',
globals: {
colorScheme: theme,
},
})

// Default state
expect(await page.screenshot({animations: 'disabled'})).toMatchSnapshot(`Checkbox.Disabled.${theme}.png`)
})

test('axe @aat', async ({page}) => {
await visit(page, {
id: 'components-checkbox-features--disabled',
globals: {
colorScheme: theme,
},
})
await expect(page).toHaveNoViolations({
rules: {
'color-contrast': {
enabled: false,
},
},
})
})
})
}
})
// Default state
expect(await page.screenshot({animations: 'disabled'})).toMatchSnapshot(
`Checkbox.${story.title}.${theme}.png`,
)

test.describe('With Caption', () => {
for (const theme of themes) {
test.describe(theme, () => {
test('default @vrt', async ({page}) => {
await visit(page, {
id: 'components-checkbox-features--with-caption',
globals: {
colorScheme: theme,
},
// Focus state
await page.keyboard.press('Tab')
expect(await page.screenshot({animations: 'disabled'})).toMatchSnapshot(
`Checkbox.${story.title}.focus.${theme}.png`,
)
})

// Default state
expect(await page.screenshot({animations: 'disabled'})).toMatchSnapshot(`Checkbox.With Caption.${theme}.png`)
})

test('axe @aat', async ({page}) => {
await visit(page, {
id: 'components-checkbox-features--with-caption',
globals: {
colorScheme: theme,
},
})
await expect(page).toHaveNoViolations({
rules: {
'color-contrast': {
enabled: false,
test('default (styled-components) @vrt', async ({page}) => {
await visit(page, {
id: story.id,
globals: {
colorScheme: theme,
featureFlags: {
primer_react_css_modules_team: false,
},
},
},
})
})
})
}
})

test.describe('With Leading Visual', () => {
for (const theme of themes) {
test.describe(theme, () => {
test('default @vrt', async ({page}) => {
await visit(page, {
id: 'components-checkbox-features--with-leading-visual',
globals: {
colorScheme: theme,
},
})
args: 'args' in story ? story.args : {},
})

// Default state
expect(await page.screenshot({animations: 'disabled'})).toMatchSnapshot(
`Checkbox.With Leading Visual.${theme}.png`,
)
})
// Default state
expect(await page.screenshot({animations: 'disabled'})).toMatchSnapshot(
`Checkbox.${story.title}.${theme}.png`,
)

test('axe @aat', async ({page}) => {
await visit(page, {
id: 'components-checkbox-features--with-leading-visual',
globals: {
colorScheme: theme,
},
// Focus state
await page.keyboard.press('Tab')
expect(await page.screenshot({animations: 'disabled'})).toMatchSnapshot(
`Checkbox.${story.title}.focus.${theme}.png`,
)
})
await expect(page).toHaveNoViolations({
rules: {
'color-contrast': {
enabled: false,
},
},
})
})
})
}
})

test.describe('Indeterminate', () => {
for (const theme of themes) {
test.describe(theme, () => {
test('default @vrt', async ({page}) => {
await visit(page, {
id: 'components-checkbox-features--indeterminate',
globals: {
colorScheme: theme,
},
test('axe @aat', async ({page}) => {
await visit(page, {
id: story.id,
globals: {
colorScheme: theme,
featureFlags: {
primer_react_css_modules_team: true,
},
},
args: 'args' in story ? story.args : {},
})
await expect(page).toHaveNoViolations()
})

// Default state
expect(await page.screenshot({animations: 'disabled'})).toMatchSnapshot(`Checkbox.Indeterminate.${theme}.png`)
})

test('axe @aat', async ({page}) => {
await visit(page, {
id: 'components-checkbox-features--indeterminate',
globals: {
colorScheme: theme,
},
})
await expect(page).toHaveNoViolations({
rules: {
'color-contrast': {
enabled: false,
test('axe (styled-components) @aat', async ({page}) => {
await visit(page, {
id: story.id,
globals: {
colorScheme: theme,
primer_react_css_modules_team: false,
},
},
args: 'args' in story ? story.args : {},
})
await expect(page).toHaveNoViolations()
})
})
})
}
})
}
})
}
})
13 changes: 12 additions & 1 deletion packages/react/src/internal/components/InputCaption.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,18 @@ type Props = {
} & SxProp

const InputCaption: React.FC<React.PropsWithChildren<Props>> = ({children, disabled, id, sx}) => (
<Text color={disabled ? 'fg.subtle' : 'fg.muted'} display="block" fontSize={0} id={id} sx={sx}>
<Text
color={disabled ? 'fg.subtle' : 'fg.muted'}
display="block"
fontSize={0}
id={id}
sx={{
color: disabled ? 'fg.subtle' : 'fg.muted',
display: 'block',
fontSize: 0,
...sx,
}}
>
{children}
</Text>
)
Expand Down

0 comments on commit 082b4e7

Please sign in to comment.