Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
Task/reset mini font (#121)
Browse files Browse the repository at this point in the history
* remove dup size.reset mini to original 0.9rem

* update version/change log 2.1.3 for font mini set

* Revert "update version/change log 2.1.3 for font mini set"

This reverts commit 57e2e9a.

* update test snapshot for font size update

* add 'module' to stories for 'missing module' warn
  • Loading branch information
mdlockhart authored Dec 13, 2017
1 parent 1ba3569 commit 3ac1abe
Show file tree
Hide file tree
Showing 34 changed files with 64 additions and 64 deletions.
2 changes: 1 addition & 1 deletion ArrowPopover/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<div style={{ display: 'inline-block', margin: '5rem', position: 'relative', overflow: 'visible' }}>
Expand Down
2 changes: 1 addition & 1 deletion Button/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<Button onClick={action('on-click')}>Click Me</Button>
Expand Down
2 changes: 1 addition & 1 deletion ButtonStateless/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<Button>Button text</Button>
Expand Down
2 changes: 1 addition & 1 deletion Card/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<Card>What is a Product Designer? An awesome story by <Link href={'#'}>@jgadapee</Link> over on Medium! <Link href={'#'}>http://buff.ly/1LTbUqv</Link></Card>
Expand Down
2 changes: 1 addition & 1 deletion Divider/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<Divider />
Expand Down
2 changes: 1 addition & 1 deletion HoverableText/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
import { checkA11y } from 'storybook-addon-a11y';
import HoverableText from './index';

storiesOf('HoverableText')
storiesOf('HoverableText', module)
.addDecorator(checkA11y)
.add('default', () => (
<HoverableText
Expand Down
2 changes: 1 addition & 1 deletion Icon/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ import VideoIcon from './Icons/VideoIcon';
import ViewIcon from './Icons/ViewIcon';
import WarningIcon from './Icons/WarningIcon';

storiesOf('Icon')
storiesOf('Icon', module)
.addDecorator(checkA11y)
.add('large', () => (
<AddMediaIcon size={'large'} />
Expand Down
2 changes: 1 addition & 1 deletion IconArrowPopover/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<IconArrowPopover icon={<QuestionIcon />} shadow position="below" oneLine={false} width="320px" label="Posting Schedule">
Expand Down
2 changes: 1 addition & 1 deletion IdTag/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import IdTag from './index';

const children = 'GIF';

storiesOf('IdTag')
storiesOf('IdTag', module)
.addDecorator(checkA11y)
.add('Default', () => (
<IdTag>{children}</IdTag>
Expand Down
2 changes: 1 addition & 1 deletion Image/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<Image src={'http://lorempixel.com/400/400/cats/'} />
Expand Down
2 changes: 1 addition & 1 deletion Input/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const input = {
onChange: action('on-change'),
};

storiesOf('Input')
storiesOf('Input', module)
.addDecorator(checkA11y)
.add('default', () => (
<Input input={input} />
Expand Down
2 changes: 1 addition & 1 deletion InputAutocomplete/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<InputAutocomplete
Expand Down
2 changes: 1 addition & 1 deletion InputDate/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { checkA11y } from 'storybook-addon-a11y';
import InputDate from './index';


storiesOf('InputDate')
storiesOf('InputDate', module)
.addDecorator(checkA11y)
.add('default', () => (
<InputDate
Expand Down
2 changes: 1 addition & 1 deletion InputEmail/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const input = {
onChange: action('on-change'),
};

storiesOf('InputEmail')
storiesOf('InputEmail', module)
.addDecorator(checkA11y)
.add('default', () => (
<InputEmail input={input} />
Expand Down
2 changes: 1 addition & 1 deletion InputPassword/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const input = {
onChange: action('on-change'),
};

storiesOf('InputPassword')
storiesOf('InputPassword', module)
.addDecorator(checkA11y)
.add('default', () => (
<InputPassword input={input} />
Expand Down
2 changes: 1 addition & 1 deletion InputTime/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { checkA11y } from 'storybook-addon-a11y';
import InputTime from './index';


storiesOf('InputTime')
storiesOf('InputTime', module)
.addDecorator(checkA11y)
.add('default', () => (
<InputTime
Expand Down
2 changes: 1 addition & 1 deletion InputWeekday/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { checkA11y } from 'storybook-addon-a11y';
import InputWeekday from './index';


storiesOf('InputWeekday')
storiesOf('InputWeekday', module)
.addDecorator(checkA11y)
.add('default', () => (
<InputWeekday
Expand Down
2 changes: 1 addition & 1 deletion Link/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { action } from '@storybook/addon-actions';
import { checkA11y } from 'storybook-addon-a11y';
import Link from './index';

storiesOf('Link')
storiesOf('Link', module)
.addDecorator(checkA11y)
.add('default', () => (
<Link href={'https://twitter.com'}>Twitter</Link>
Expand Down
2 changes: 1 addition & 1 deletion LinkStateless/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<div>
Expand Down
2 changes: 1 addition & 1 deletion LinkifiedText/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<LinkifiedText
Expand Down
2 changes: 1 addition & 1 deletion List/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/react';
import { checkA11y } from 'storybook-addon-a11y';
import List from './index';

storiesOf('List')
storiesOf('List', module)
.addDecorator(checkA11y)
.add('default', () => (
<List items={['apples', 'bananas', 'oranges']} />
Expand Down
2 changes: 1 addition & 1 deletion ListItem/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<ListItem>Bananas</ListItem>
Expand Down
2 changes: 1 addition & 1 deletion Loader/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<Loader />
Expand Down
2 changes: 1 addition & 1 deletion MultipleImages/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React from 'react';
import { storiesOf } from '@storybook/react';
import MultipleImages from './index';

storiesOf('MultipleImages')
storiesOf('MultipleImages', module)
.add('fourImages', () => (
<MultipleImages
width={'20rem'}
Expand Down
2 changes: 1 addition & 1 deletion NavBar/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/react';
import { checkA11y } from 'storybook-addon-a11y';
import NavBar from './index';

storiesOf('NavBar')
storiesOf('NavBar', module)
.addDecorator(checkA11y)
.add('Default', () => (
<NavBar />
Expand Down
2 changes: 1 addition & 1 deletion Notification/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<Notification
Expand Down
2 changes: 1 addition & 1 deletion Overlay/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { checkA11y } from 'storybook-addon-a11y';
import Overlay from './index';
import Image from '../Image';

storiesOf('Overlay')
storiesOf('Overlay', module)
.addDecorator(checkA11y)
.add('default', () => (
<div style={{ textAlign: 'center' }}>
Expand Down
2 changes: 1 addition & 1 deletion Popover/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<Popover onOverlayClick={action('overlay-click')}>
Expand Down
2 changes: 1 addition & 1 deletion SectionHeader/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<SectionHeader />
Expand Down
2 changes: 1 addition & 1 deletion Select/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => (
<Select
Expand Down
2 changes: 1 addition & 1 deletion Tab/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {
import { checkA11y } from 'storybook-addon-a11y';
import Tab from './index';

storiesOf('Tab')
storiesOf('Tab', module)
.addDecorator(checkA11y)
.add('default', () => (
<Tab
Expand Down
2 changes: 1 addition & 1 deletion Tabs/story.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Tabs from './index';
import Tab from '../Tab';


storiesOf('Tabs')
storiesOf('Tabs', module)
.addDecorator(checkA11y)
.add('default', () => (
<Tabs
Expand Down
Loading

0 comments on commit 3ac1abe

Please sign in to comment.