Added background addon support

This commit is contained in:
Gavin King 2018-06-17 06:44:55 +02:00
parent 306b580080
commit 5f64ea371b
3 changed files with 17 additions and 1 deletions

View File

@ -4,7 +4,7 @@
| ----------- |:-------:|:-------:|:-------:|:-------:|:-------:|:-------:|:-------:|:-------:|:-------:|
|[a11y](addons/a11y) |+| |+|+|+|+|+|+| |
|[actions](addons/actions) |+|+|+|+|+|+|+|+| |
|[backgrounds](addons/backgrounds) |+| |+|+|+|+|+|+| |
|[backgrounds](addons/backgrounds) |+| |+|+|+|+|+|+|+|
|[centered](addons/centered) |+| |+|+| |+|+| |+|
|[events](addons/events) |+| |+|+|+|+|+|+| |
|[graphql](addons/graphql) |+| | | | | | | | |

View File

@ -0,0 +1 @@
module.exports = require('./dist/deprecated');

View File

@ -0,0 +1,15 @@
import { storiesOf } from '@storybook/svelte';
import { withBackgrounds } from '@storybook/addon-backgrounds';
import ButtonView from './views/ButtonView.svelte';
storiesOf('Addon|Backgrounds', module)
.addDecorator(
withBackgrounds([
{ name: 'twitter', value: '#00aced' },
{ name: 'facebook', value: '#3b5998', default: true },
])
)
.add('story 1', () => ({
Component: ButtonView,
}));