Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
design-token-editor
Advanced tools
Provide insight into design tokens and edit their values.
This package provides React components to work with design tokens emitted by Style Dictionary builds.
Warning - this package is under active development and public API may still change significantly.
In short - anyone benefiting from using design tokens!
Design systems that make use of design tokens typically do so to allow users to create
their own themes. Using the TokensTable
component can help you automatically
document the available tokens for a given component.
More complex integration could even make it possible for people to interactively alter the values of design tokens and see how the component reacts/looks like in your storybook documentation, for example!
Theme designers often have the hard task of figuring out which components are available, where and how they are used and the figure out how they can change the look and feel.
When all that's done, they have to write JSON to actually implement their theme, get it built with style-dictionary and finally check the results.
By exposing an editor around the tokens table, theme designers can interactively enter the values to play around with components and see the resulting JSON code which only needs to be copy-pasted into their own build pipeline.
Combine this with interactive documentation, and as a theme designer you may get to experiment and settle on your desired colors in a minimum of time!
White-label products/software benefit massively from using components styled through design tokens, making it even possible for run-time theme editing.
Exposing the design-token-editor in a user-friendly interface helps them configure their themes without having to bother your support staff ;)
See the Storybook documentation for the available components and public API.
The package ships with stylesheets to include for proper styling:
design-token-editor/lib/css/dte.css
with the stylesdesign-token-editor/lib/css/index.css
(or root.css
) with the default theme valuesNote that the index.css
has the theme values scoped under the .dte-default-theme
selector, while the root.css
uses the root:
selector. Using the former is
recommended, but it requires you to apply the dte-default-theme
class name to your
container element.
You are of course free to create your own theme, in which case you should specify the appropriate selector to use.
For example in storybook MDX format:
import {TokensTable} from 'design-token-editor';
import myTokens from 'my-design-tokens/dist/tokens';
<div className="dte-default-theme">
<TokensTable container={myTokens} autoExpand />;
</div>;
Warning - the editor is WIP
import {TokenEditor} from 'design-token-editor';
import myTokens from 'my-design-tokens/dist/tokens';
<div className="dte-default-theme">
<TokenEditor tokens={myTokens} initialValues={{'my.tokens.foo': 'bar'}} />;
</div>;
FAQs
A react component to view/edit design token values
The npm package design-token-editor receives a total of 827 weekly downloads. As such, design-token-editor popularity was classified as not popular.
We found that design-token-editor demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.