Skip to content

Commit 2e78de7

Browse files
author
domyen
committed
Change heading of "design system" to make it nicer when imported
1 parent 51664c2 commit 2e78de7

12 files changed

Lines changed: 10 additions & 45 deletions

src/components/basics/Avatar.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/react';
33

44
import { Avatar } from './Avatar';
55

6-
storiesOf('basics/Avatar', module)
6+
storiesOf('Design System|Avatar', module)
77
.addParameters({ component: Avatar })
88
.add('large', () => (
99
<div>

src/components/basics/Badge.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import React from 'react';
22
import { storiesOf } from '@storybook/react';
33
import { Badge } from './Badge';
44

5-
storiesOf('basics/Badge', module)
5+
storiesOf('Design System|Badge', module)
66
.add('all badges', () => (
77
<div>
88
<Badge status="positive">Positive</Badge>

src/components/basics/Button.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/react';
33
import { Button } from './Button';
44
import { Icon } from './Icon';
55

6-
storiesOf('basics/Button', module).add('all buttons', () => (
6+
storiesOf('Design System|Button', module).add('all buttons', () => (
77
<div>
88
<Button primary>Primary</Button>
99
<Button secondary>Secondary</Button>

src/components/basics/Checkbox.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { action } from '@storybook/addon-actions';
55
import { Checkbox } from './Checkbox';
66

77
const onChange = action('change');
8-
storiesOf('basics/Checkbox', module)
8+
storiesOf('Design System|Checkbox', module)
99
.add('all checkboxes', () => (
1010
<form>
1111
<Checkbox onChange={onChange} />

src/components/basics/Icon.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ const List = styled.div`
4848
flex-flow: row wrap;
4949
`;
5050

51-
storiesOf('basics/Icon', module)
51+
storiesOf('Design System|Icon', module)
5252
.add('labels', () => (
5353
<List>
5454
{Object.keys(icons).map(key => (

src/components/basics/Input.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { action } from '@storybook/addon-actions';
55
import { Input } from './Input';
66

77
const onChange = action('change');
8-
storiesOf('basics/Input', module)
8+
storiesOf('Design System|Input', module)
99
.add('all inputs', () => (
1010
<form style={{ background: '#EEEEEE', padding: '3em' }}>
1111
<Input value="Default" icon="email" onChange={onChange} />

src/components/basics/ListItem.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { storiesOf } from '@storybook/react';
44
import { ListItem } from './ListItem';
55
import { Icon } from './Icon';
66

7-
storiesOf('basics/ListItem', module)
7+
storiesOf('Design System|ListItem', module)
88
.add('all', () => (
99
<div>
1010
<ListItem loading />

src/components/basics/ProgressDots.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { storiesOf } from '@storybook/react';
33

44
import { ProgressDots } from './ProgressDots';
55

6-
storiesOf('basics/ProgressDots', module)
6+
storiesOf('Design System|ProgressDots', module)
77
.add('loading', () => <ProgressDots loading />)
88
.add('starting', () => <ProgressDots steps={4} progress={1} />)
99
.add('halfway', () => <ProgressDots steps={4} progress={2} />)

src/components/basics/SocialGraph.js

Lines changed: 0 additions & 31 deletions
This file was deleted.

src/components/basics/color.stories.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const monochromeColors = [
6565
color.lightest,
6666
];
6767

68-
storiesOf('basics/color', module).add('all', () => (
68+
storiesOf('Design System|color', module).add('all', () => (
6969
<Page>
7070
<ColorWrapper>
7171
<Swatches>

0 commit comments

Comments
 (0)