Storybook Controls

Storybook Controls gives you UI to interact with a component's inputs dynamically, without needing to code. It creates an addon panel next to your component examples ("stories"), so you can edit them live. It does not require any modification to your components, and stories for controls are: - **Convenient.** Auto-generate controls based on [React/Vue/Angular/etc.](#framework-support) components. - **Portable.** Reuse your interactive stories in documentation, tests, and even in designs. - **Rich.** Customize the controls and interactive data to suit your exact needs. Controls are built on top of [Storybook Args](https://github.com/storybookjs/storybook/blob/next/docs/src/pages/formats/component-story-format/index.md#args-story-inputs), which is an open, standards-based format that enable stories to be reused in a variety of contexts. - **Documentation.** 100% compatible with [Storybook Docs](https://github.com/storybookjs/storybook/tree/next/addons/docs). - **Testing.** Import stories directly into your [Jest](https://jestjs.io/) tests. - **Ecosystem.** Reuse stories in design/development tools that support it. Controls replaces [Storybook Knobs](https://github.com/storybookjs/storybook/tree/master/addons/knobs). It incorporates lessons from years of supporting Knobs on tens of thousands of projects and dozens of different frameworks. We couldn't incrementally fix knobs, so we built a better version.

Contents

- [Installation](#installation) - [Writing stories](#writing-stories) - [Getting started](#getting-started) - [Auto-generated args](#auto-generated-args) - [Custom controls args](#custom-controls-args) - [Fully custom args](#fully-custom-args) - [Angular](#angular) - [Template stories](#template-stories) - [Configuration](#configuration) - [Control annotations](#control-annotations) - [Parameters](#parameters) - [Expanded: show property documentation](#expanded-show-property-documentation) - [Hide NoControls warning](#hide-nocontrols-warning) - [Framework support](#framework-support) - [FAQs](#faqs) - [How will this replace addon-knobs?](#how-will-this-replace-addon-knobs) - [How do I migrate from addon-knobs?](#how-do-i-migrate-from-addon-knobs) - [My controls aren't being auto-generated. What should I do?](#my-controls-arent-being-auto-generated-what-should-i-do) ## Installation Controls requires [Storybook Docs](https://github.com/storybookjs/storybook/tree/next/addons/docs). If you're not using it already, please install that first. Next, install the package: ```sh npm install @storybook/addon-controls -D # or yarn ``` And add it to your `.storybook/main.js` config: ```js module.exports = { addons: [ '@storybook/addon-docs' '@storybook/addon-controls' ], }; ``` ## Writing stories Let's see how to write stories that automatically generate controls based on your component properties. Controls is built on [Storybook Args](https://github.com/storybookjs/storybook/blob/next/docs/src/pages/formats/component-story-format/index.md#args-story-inputs), which is a small, backwards-compatible change to Storybook's [Component Story Format](https://medium.com/storybookjs/component-story-format-66f4c32366df). This section is a step-by-step walkthrough for how to upgrade your stories. It takes you from a starting point of the traditional "no args" stories, to auto-generated args, to auto-generated args with custom controls, to fully custom args if you need them. ### Getting started Let's start with the following component/story combination, which should look familiar if you're coming from an older version of Storybook. ```tsx import React from 'react'; interface ButtonProps { /** The main label of the button */ label?: string; } export const Button = ({ label = 'FIXME' }: ButtonProps) => ; ``` And here's a story that shows that Button component: ```jsx import React from 'react'; import { Button } from './Button'; export default { title: 'Button', component: Button }; export const Basic = () => ); ``` And the slightly expanded story: ```jsx export const Basic = (args) => `, }); Reflow.args = { count: 3, label: 'reflow' }; ``` ### Template stories Suppose you've created the `Basic` story from above, but now we want to create a second story with a different state, such as how the button renders with the label is really long. The simplest thing would be to create a second story: ```jsx export const VeryLongLabel = (args) =>