We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello there,
I'm using the add-on to test pseudo states on Chromatic and it work like a charm. However i've noticed an issue with a compoment based on Ant Design.
Chromatic
Ant Design
Config
addons :[ ... 'storybook-addon-pseudo-states' ]
Selector rewritten by the add-on
&:not(.ant-collapse-item-active):not([data-item-selected='true']):not(:last-of-type):not(.pseudo-hover) { border-bottom: none; }
Default selector
&:not(.ant-collapse-item-active):not([data-item-selected='true']):not(:last-of-type):not(:hover) { border-bottom: none; }
The issue here is that :hover has been replaced by .pseudo-hover in the storybook build causing a wrong render of my component
:hover
.pseudo-hover
The text was updated successfully, but these errors were encountered:
Anyone ?
Sorry, something went wrong.
I just ran into this myself. I have a skip link with :not(:focus) styles which breaks with this addon:
:not(:focus)
.skipLink { position: absolute; left: 0; &:not(:focus) { @include mixins.visually-hidden; } }
// Generates to .skipLink:not(:focus), .skipLink:not(.pseudo-focus) { ... }
The .skipLink:not(.pseudo-focus) part is always truthy which makes the link invisible even when it receives focus.
.skipLink:not(.pseudo-focus)
Is there any way to disable .pseudo-focus per-story? Or disable the whole addon per-story? I tried adding following without success:
.pseudo-focus
import type {Meta} from '@storybook/react'; export default { parameters: { pseudo: { focus: false, // Or even ['.non-matching-selector'] }, }, } satisfies Meta;
Edit: Forcing the .pseudo-focus on the conflicting element seems to work:
import type {Meta} from '@storybook/react'; export default { parameters: { pseudo: { focus: ['[class*="skipLink"]'], }, }, } satisfies Meta;
No branches or pull requests
Hello there,
I'm using the add-on to test pseudo states on
Chromatic
and it work like a charm. However i've noticed an issue with a compoment based onAnt Design
.Config
Selector rewritten by the add-on
Default selector
The issue here is that
:hover
has been replaced by.pseudo-hover
in the storybook build causing a wrong render of my componentThe text was updated successfully, but these errors were encountered: