Gaëtan Maisse 7e522c65b9 fix: add missing typesVersions for TS<3.5 compatibilty
(cherry picked from commit 363c3d9bd764edfe68fd60de4a21daae1b3f77f3)
2020-02-18 20:40:06 +01:00
..

Storybook Essentials

Storybook Essentials is a curated collection of addons to bring out the best of Storybook.

Each addon is documented and maintained by the core team and will be upgraded alongside Storybook as the platform evolves. We will also do our best to maintain framework support for all of the officially supported frameworks.

Contents

Storybook essentials includes the following addons. Addons can be disabled and re-configured as described below:

Installation

You can add Essentials to your project with:

npm install --save-dev @storybook/addon-essentials

And then add the following line to your .storybook/main.js:

module.exports = {
  addons: ['@storybook/addon-essentials'],
};

Configuration

Essentials is "zero config." That means that comes with a recommended configuration out of the box.

If you want to reconfigure an addon, simply install that addon per that addon's installation instructions and configure it as normal. Essentials scans your project's package.json on startup and if detects one of its addons is already installed, it will skip that addon's configuration entirely.

Disabling addons

Yuu can disable any of Essential's addons using the following configuration scheme in .storybook/main.js:

module.exports = {
  addons: [{
    name: '@storybook/addon-essentials',
    options: {
      <addon-key>: false,
    }
  }]
};

Valid addon keys include: backgrounds, viewport