Socket
Socket
Sign inDemoInstall

@storybook/addon-notes

Package Overview
Dependencies
187
Maintainers
18
Versions
487
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @storybook/addon-notes

Write notes for your Storybook stories.


Version published
Weekly downloads
49K
decreased by-7.2%
Maintainers
18
Install size
27.1 MB
Created
Weekly downloads
 

Readme

Source

Storybook Addon Notes

Storybook Addon Notes allows you to write notes (text or HTML) for your stories in Storybook.

Framework Support

Storybook Addon Notes Demo

Getting Started

NOTE: Documentation on next branch is for alpha version, stable release is on master

yarn add -D @storybook/addon-notes

within .storybook/main.js:

module.exports = {
  addons: ['@storybook/addon-notes/register']
}

Alternatively register the notes addon into a panel. Choose only one, not both.

module.exports = {
  addons: ['@storybook/addon-notes/register-panel']
}

Now, you can use the notes parameter to add a note to each story.

import Component from './Component';

export default {
  title: 'Component',
  parameters: {
    notes: 'some documentation here',
  },
};

Upgrading to CSF Format

Add notes to the parameters object:

export default {
  parameters: {
    notes: 'My notes',
  }
}

Using Markdown

Using Markdown in your notes is supported, Storybook will load Markdown as raw by default.

import Component from './Component';
import markdown from './someMarkdownText.md';

export default {
  title: 'Component',
};

export const withMarkdown = () => <Component />;
withmarkdown.story = {
  parameters: {
    notes: { markdown },
  }
};

Giphy

When using Markdown, you can also embed gifs from Giphy into your Markdown. Currently, the value cheese of the query prop is used to search and return the first result returned by Giphy.

# Title

<Giphy query='cheese' />

Multiple Notes Sections

If you need to display different notes for different consumers of your storybook (e.g design, developers), you can configure multiple notes pages. The following will render a tab with unique notes for both Introduction and Design.

import { storiesOf } from '@storybook/react';
import Component from './Component';

import intro from './intro.md';
import design from './design.md';

export default {
  title: 'Component',
  parameters: {
    notes: { Introduction: intro, 'Design Notes': design },
  },
};

Keywords

FAQs

Last updated on 28 Aug 2020

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc