diff --git a/ArrowPopover/story.jsx b/ArrowPopover/story.jsx index 7ade4a00..4414a5b0 100644 --- a/ArrowPopover/story.jsx +++ b/ArrowPopover/story.jsx @@ -4,7 +4,7 @@ import { checkA11y } from 'storybook-addon-a11y'; import ArrowPopover from './index'; import Text from '../Text'; -storiesOf('ArrowPopover') +storiesOf('ArrowPopover', module) .addDecorator(checkA11y) .add('default tooltip', () => (
diff --git a/Button/story.jsx b/Button/story.jsx index fbb2e626..ba24e938 100644 --- a/Button/story.jsx +++ b/Button/story.jsx @@ -6,7 +6,7 @@ import Button from './index'; import CloseIcon from '../Icon/Icons/CloseIcon'; import Text from '../Text'; -storiesOf('Button') +storiesOf('Button', module) .addDecorator(checkA11y) .add('default', () => ( diff --git a/ButtonStateless/story.jsx b/ButtonStateless/story.jsx index 9625669e..7bc9ab6a 100644 --- a/ButtonStateless/story.jsx +++ b/ButtonStateless/story.jsx @@ -5,7 +5,7 @@ import { checkA11y } from 'storybook-addon-a11y'; import Button from './index'; import Text from '../Text'; -storiesOf('ButtonStateless') +storiesOf('ButtonStateless', module) .addDecorator(checkA11y) .add('Default', () => ( diff --git a/Card/story.jsx b/Card/story.jsx index 63449423..3c69345e 100644 --- a/Card/story.jsx +++ b/Card/story.jsx @@ -5,7 +5,7 @@ import { checkA11y } from 'storybook-addon-a11y'; import Card from './index'; import Link from '../Link'; -storiesOf('Card') +storiesOf('Card', module) .addDecorator(checkA11y) .add('default', () => ( What is a Product Designer? An awesome story by @jgadapee over on Medium! http://buff.ly/1LTbUqv diff --git a/Divider/story.jsx b/Divider/story.jsx index 1e0479cf..394b6cd5 100644 --- a/Divider/story.jsx +++ b/Divider/story.jsx @@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/react'; import { checkA11y } from 'storybook-addon-a11y'; import Divider from './index'; -storiesOf('Divider') +storiesOf('Divider', module) .addDecorator(checkA11y) .add('default', () => ( diff --git a/HoverableText/story.jsx b/HoverableText/story.jsx index 5af64dcc..eb2f283c 100644 --- a/HoverableText/story.jsx +++ b/HoverableText/story.jsx @@ -6,7 +6,7 @@ import { import { checkA11y } from 'storybook-addon-a11y'; import HoverableText from './index'; -storiesOf('HoverableText') +storiesOf('HoverableText', module) .addDecorator(checkA11y) .add('default', () => ( ( diff --git a/IconArrowPopover/story.jsx b/IconArrowPopover/story.jsx index 60350fd6..6338894b 100644 --- a/IconArrowPopover/story.jsx +++ b/IconArrowPopover/story.jsx @@ -4,7 +4,7 @@ import { checkA11y } from 'storybook-addon-a11y'; import IconArrowPopover from './index'; import { QuestionIcon } from '../Icon/Icons'; -storiesOf('IconArrowPopover') +storiesOf('IconArrowPopover', module) .addDecorator(checkA11y) .add('default', () => ( } shadow position="below" oneLine={false} width="320px" label="Posting Schedule"> diff --git a/IdTag/story.jsx b/IdTag/story.jsx index e63c6150..41dd0760 100644 --- a/IdTag/story.jsx +++ b/IdTag/story.jsx @@ -5,7 +5,7 @@ import IdTag from './index'; const children = 'GIF'; -storiesOf('IdTag') +storiesOf('IdTag', module) .addDecorator(checkA11y) .add('Default', () => ( {children} diff --git a/Image/story.jsx b/Image/story.jsx index 30500bdb..d877bd66 100644 --- a/Image/story.jsx +++ b/Image/story.jsx @@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/react'; import { checkA11y } from 'storybook-addon-a11y'; import Image from './index'; -storiesOf('Image') +storiesOf('Image', module) .addDecorator(checkA11y) .add('Default', () => ( diff --git a/Input/story.jsx b/Input/story.jsx index 9e76bdf5..2e655984 100644 --- a/Input/story.jsx +++ b/Input/story.jsx @@ -9,7 +9,7 @@ const input = { onChange: action('on-change'), }; -storiesOf('Input') +storiesOf('Input', module) .addDecorator(checkA11y) .add('default', () => ( diff --git a/InputAutocomplete/story.jsx b/InputAutocomplete/story.jsx index 72f359aa..fd2cc1e0 100644 --- a/InputAutocomplete/story.jsx +++ b/InputAutocomplete/story.jsx @@ -5,7 +5,7 @@ import { action } from '@storybook/addon-actions'; import InputAutocomplete from './index'; import { sortItems, getTimezones } from './utils'; -storiesOf('InputAutocomplete') +storiesOf('InputAutocomplete', module) .addDecorator(checkA11y) .add('default', () => ( ( ( diff --git a/InputPassword/story.jsx b/InputPassword/story.jsx index c95eb27d..a4e4b337 100644 --- a/InputPassword/story.jsx +++ b/InputPassword/story.jsx @@ -9,7 +9,7 @@ const input = { onChange: action('on-change'), }; -storiesOf('InputPassword') +storiesOf('InputPassword', module) .addDecorator(checkA11y) .add('default', () => ( diff --git a/InputTime/story.jsx b/InputTime/story.jsx index 1ec25725..f7c42e98 100644 --- a/InputTime/story.jsx +++ b/InputTime/story.jsx @@ -5,7 +5,7 @@ import { checkA11y } from 'storybook-addon-a11y'; import InputTime from './index'; -storiesOf('InputTime') +storiesOf('InputTime', module) .addDecorator(checkA11y) .add('default', () => ( ( ( Twitter diff --git a/LinkStateless/story.jsx b/LinkStateless/story.jsx index fc4f11f0..4b611508 100644 --- a/LinkStateless/story.jsx +++ b/LinkStateless/story.jsx @@ -4,7 +4,7 @@ import { action } from '@storybook/addon-actions'; import { checkA11y } from 'storybook-addon-a11y'; import LinkStateless from './index'; -storiesOf('LinkStateless') +storiesOf('LinkStateless', module) .addDecorator(checkA11y) .add('default', () => (
diff --git a/LinkifiedText/story.jsx b/LinkifiedText/story.jsx index 2b7ec3c8..0f91961e 100644 --- a/LinkifiedText/story.jsx +++ b/LinkifiedText/story.jsx @@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/react'; import { checkA11y } from 'storybook-addon-a11y'; import LinkifiedText from './index'; -storiesOf('LinkifiedText') +storiesOf('LinkifiedText', module) .addDecorator(checkA11y) .add('default', () => ( ( diff --git a/ListItem/story.jsx b/ListItem/story.jsx index 7c3c2c3b..5c906cab 100644 --- a/ListItem/story.jsx +++ b/ListItem/story.jsx @@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/react'; import { checkA11y } from 'storybook-addon-a11y'; import ListItem from './index'; -storiesOf('ListItem') +storiesOf('ListItem', module) .addDecorator(checkA11y) .add('default', () => ( Bananas diff --git a/Loader/story.jsx b/Loader/story.jsx index d9cabec3..cde2694c 100644 --- a/Loader/story.jsx +++ b/Loader/story.jsx @@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/react'; import { checkA11y } from 'storybook-addon-a11y'; import Loader from './index'; -storiesOf('Loader') +storiesOf('Loader', module) .addDecorator(checkA11y) .add('default', () => ( diff --git a/MultipleImages/story.jsx b/MultipleImages/story.jsx index 61011144..671f9f4f 100644 --- a/MultipleImages/story.jsx +++ b/MultipleImages/story.jsx @@ -2,7 +2,7 @@ import React from 'react'; import { storiesOf } from '@storybook/react'; import MultipleImages from './index'; -storiesOf('MultipleImages') +storiesOf('MultipleImages', module) .add('fourImages', () => ( ( diff --git a/Notification/story.jsx b/Notification/story.jsx index ff5bef11..6c47893c 100644 --- a/Notification/story.jsx +++ b/Notification/story.jsx @@ -4,7 +4,7 @@ import { action } from '@storybook/addon-actions'; import { checkA11y } from 'storybook-addon-a11y'; import Notification from './index'; -storiesOf('Notification') +storiesOf('Notification', module) .addDecorator(checkA11y) .add('default', () => ( (
diff --git a/Popover/story.jsx b/Popover/story.jsx index 1b4b352d..f6c61980 100644 --- a/Popover/story.jsx +++ b/Popover/story.jsx @@ -5,7 +5,7 @@ import { checkA11y } from 'storybook-addon-a11y'; import Popover from './index'; import Card from '../Card'; -storiesOf('Popover') +storiesOf('Popover', module) .addDecorator(checkA11y) .add('default', () => ( diff --git a/SectionHeader/story.jsx b/SectionHeader/story.jsx index df460630..d213cea3 100644 --- a/SectionHeader/story.jsx +++ b/SectionHeader/story.jsx @@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/react'; import { checkA11y } from 'storybook-addon-a11y'; import SectionHeader from './index'; -storiesOf('SectionHeader') +storiesOf('SectionHeader', module) .addDecorator(checkA11y) .add('default', () => ( diff --git a/Select/story.jsx b/Select/story.jsx index 680c0eb7..2caca33b 100644 --- a/Select/story.jsx +++ b/Select/story.jsx @@ -12,7 +12,7 @@ const options = [ { name: 'Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch', value: 'Llanfairpwllgwyngyllgogerychwyrndrobwllllantysiliogogogoch' }, // http://www.fun-with-words.com/longest_place_names.html ]; -storiesOf('Select') +storiesOf('Select', module) .addDecorator(checkA11y) .add('default', () => (