npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

css-chaos-addon

v0.0.5

Published

An addon that applies inheritable css properties around a component to better test random use cases

Downloads

12

Readme

Storybook CSS Chaos Addon

An addon that applies inheritable css properties around a component to better test in-context scenarios that alter the look and feel of a component. By testing in this way, you can limit style bleeding when the component is added in an application.

Before

After

Usage scripts

Run npm install css-chaos-addon

In your main.js file, add to the addons array:

addons: ["css-chaos-addon"]

Supported CSS Properties

The inheritied properties that are set by this addon include:

  • border-collapse
  • border-spacing
  • caption-side
  • color
  • cursor
  • direction
  • empty-cells
  • font-family
  • font-size
  • font-style
  • font-variant
  • font-weight
  • letter-spacing
  • line-height
  • list-style-position
  • list-style-type
  • text-align
  • text-indent
  • text-transform
  • white-space
  • word-spacing

For more information about these properties, see the properties file here.

Some of the properties have arbitrary values that might be set by a consuming application (ex. color). If you would like to override these values with a set of your own, see the section on customizing the CSS properties.

Customizing CSS Properties

To customize, you will need to leverage Storybook's parameters feature that can be set globally or at the story level. The parameter used for the CSS Chaos Addon is called cssPropertyData.

The CSS Property keys include:

  • name: The name of the css property that will be set above addon dropdown and will be used to set the css propery value in the global css.
  • description: The description of the css property that will be shown in the addon panel underneath the name and above the dorpdown option.
  • default: The default value for the dropdown. This value will be applied automatically in the global css when the addon panel is active.
  • values: The list of options that the user has to choose from to manipualte the view. The randomize functionality will also use this list to pick a random value.

If you want to add a css property:

parameters: {
    cssChaos: {
      propertyData:
        [
            {
                "name": "hello world",
                "description": "Lorem ipsum",
                "default": "world",
                "values": [
                    "hello",
                    "world"
                ]
            }
        ]
    }
};

If you want to alter a css property, update one or all keys in the object (name, description, default, values):

parameters: {
    cssChaos: {
      propertyData:
        [
            {
                "name": "updated-name",
                "description": "An updated description goes here",
                "default": "new default",
                "values": [
                    "this",
                    "includes",
                    "updated",
                    "values",
                    "new default"
                ]
            }
        ]
    }
};

To remove an existing css property dropdown from the addon panel, remove all of the values from the object:

parameters: {
    cssChaos: {
      propertyData:
        [
            {
                "name": "color",
                "values": []
            }
        ]
    }
};

Setting Max Variance

If you would like to limit the amount of variance when the "Randomize!" button is clicked, you can set a value called maxVariance. If you set the max variance, it will only randomize the number of properties you set. If you do not set a max variance, it will default to randomizing all of the properties.

parameters: {
    cssChaos: {
        maxVariance: 5
    }
};
  • Setting the max variance does not mean that there will be that number of non-default values. Each property is set to a random value which may equal the default.

Turning off History

If you would to hide the history dropdown, set the history property under the cssChaos object to false. By default, this property will be set to true.

parameters: {
    cssChaos: {
        history: false
    }
};

Development scripts

  • npm start runs babel in watch mode and starts Storybook
  • npm run build build and package your addon code