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
storybook-design-token: 2.6.0
storybook-design-token
2.6.0
Create basic storybook with next design-tokens. Example:
design-tokens
:root { /** * @tokens Animations * @presenter Animation */ --animation-rotate: rotate 1.2s infinite cubic-bezier(0.55, 0, 0.1, 1); /** * @tokens Colors * @presenter Color */ --b100: hsl(240, 100%, 90%); /* Token Description Example @presenter Color */ --b200: hsl(240, 100%, 80%); --b300: hsl(240, 100%, 70%); /** * @tokens Others */ --border-normal: 3px dashed red; /* Token Description Example @presenter BorderRadius */ }
Animations and Colors sections displayed as expected, but not Others.
Animations
Colors
Others
Others section should be displayed with appropriate @presenter BorderRadius preview.
@presenter BorderRadius
The text was updated successfully, but these errors were encountered:
Hey, I'll look into it. Passing an empty presenter should help as a workaround.
Sorry, something went wrong.
@Sqrrl I am also running into same issue and passing an empty presenter doesn't work for me. Do you have an example?
Could you check v2.8.2? I've fixed an issue that might have been related.
@Sqrrl it does work as expected on v2.8.2. Thank you for your quick respons 🙌
No branches or pull requests
Version
storybook-design-token
:2.6.0
Steps to Reproduce
Create basic storybook with next
design-tokens
. Example:Current Behavior
Animations
andColors
sections displayed as expected, but notOthers
.Expected Behavior
Others
section should be displayed with appropriate@presenter BorderRadius
preview.The text was updated successfully, but these errors were encountered: