1.0.4 • Published 4 years ago

storybook-addon-grommet v1.0.4

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

storybook-addon-grommet

A storybook addon to add a grommet theme selector in the toolbar

Theme selector

Live demo

grommet-controls

Installation

npm i -D storybook-addon-grommet

Configuration

in the addons.js file in your storybook config, register storybook-addon-grommet:

import 'storybook-addon-grommet/register'

Usage

In your config.js, define your theme configuration and pass it in to the addDecorator function

import { addDecorator } from '@storybook/react'; // <- or your storybook framework
import { withGrommet } from 'storybook-addon-grommet';
import { grommet, dark } from 'grommet';
import { black, light, materialdark, materiallight, metro } from 'grommet-controls';

addDecorator(withGrommet({
    theme: 'grommet',
    themes: {
      grommet,
      dark,
      black,
      light,
      materialdark,
      materiallight,
      metro,
    },
    boxProps: {
      align: 'start',
    },
    grommetProps: {
        full: true,
    }
  }
));

Preview

storybook-addon-grommet wraps the preview stories with a <Grommet /> and a <Box/> components which properties are configurable

<Grommet theme={themes[state]} {...grommetProps}>
  <Box {...boxProps}>
    {children}
  </Box>  
</Grommet>

Options

theme: initially selected theme themes: object with keys being the name of the theme and the values being the theme object boxProps: <Box /> properties grommetProps: <Grommet /> properties

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.9.8

4 years ago

0.9.7

4 years ago

0.9.6

4 years ago

0.9.4

5 years ago

0.9.3

5 years ago

0.9.2

5 years ago

0.9.1

5 years ago

0.9.0

5 years ago