Skip to content

Commit

Permalink
style(Header): update docs to the latest standards (#725)
Browse files Browse the repository at this point in the history
  • Loading branch information
dpkwhan authored and levithomason committed Oct 22, 2016
1 parent 271b8e0 commit 4a98369
Show file tree
Hide file tree
Showing 24 changed files with 80 additions and 80 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react'
import { Header } from 'semantic-ui-react'

const HeaderIconExample = () => (
const HeaderExampleIconProp = () => (
<Header as='h2' icon='plug' content='Uptime Guarantee' />
)

export default HeaderIconExample
export default HeaderExampleIconProp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react'
import { Header, Image } from 'semantic-ui-react'

const HeaderImageExample = () => (
const HeaderExampleImage = () => (
<Header as='h2'>
<Image shape='circular' src='http://semantic-ui.com/images/avatar2/large/patrick.png' />
{' '}Patrick
</Header>
)

export default HeaderImageExample
export default HeaderExampleImage
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import React from 'react'
import { Header } from 'semantic-ui-react'

const HeaderImageExample = () => (
const HeaderExampleImageProp = () => (
<Header
as='h2'
image='http://semantic-ui.com/images/icons/school.png'
content='Learn More'
/>
)

export default HeaderImageExample
export default HeaderExampleImageProp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Header, Icon } from 'semantic-ui-react'

const HeaderIconExample = () => (
const HeaderExamplePlugIcon = () => (
<Header as='h2'>
<Icon name='plug' />
<Header.Content>
Expand All @@ -10,4 +10,4 @@ const HeaderIconExample = () => (
</Header>
)

export default HeaderIconExample
export default HeaderExamplePlugIcon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Header, Icon } from 'semantic-ui-react'

const HeaderIconExample = () => (
const HeaderExampleSettingsIcon = () => (
<Header as='h2'>
<Icon name='settings' />
<Header.Content>
Expand All @@ -13,4 +13,4 @@ const HeaderIconExample = () => (
</Header>
)

export default HeaderIconExample
export default HeaderExampleSettingsIcon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Header } from 'semantic-ui-react'

const HeaderSubheaderExample = () => (
const HeaderExampleSubheader = () => (
<Header as='h2'>
Account Settings
<Header.Subheader>
Expand All @@ -10,4 +10,4 @@ const HeaderSubheaderExample = () => (
</Header>
)

export default HeaderSubheaderExample
export default HeaderExampleSubheader
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react'
import { Header } from 'semantic-ui-react'

const HeaderSubheaderPropExample = () => (
const HeaderExampleSubheaderProp = () => (
<Header as='h2' content='Account Settings' subheader='Manage your account settings and set email preferences' />
)

export default HeaderSubheaderPropExample
export default HeaderExampleSubheaderProp
26 changes: 13 additions & 13 deletions docs/app/Examples/elements/Header/Content/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,33 +6,33 @@ const HeaderContentExamples = () => (
<ExampleSection title='Content'>
<ComponentExample
title='Image'
description='A header may contain an image'
examplePath='elements/Header/Content/HeaderImageExample'
description='A header may contain an image.'
examplePath='elements/Header/Content/HeaderExampleImage'
/>
<ComponentExample
description='You can also define an image with props'
examplePath='elements/Header/Content/HeaderImagePropExample'
description='You can also define an image with props.'
examplePath='elements/Header/Content/HeaderExampleImageProp'
/>
<ComponentExample
title='Icon'
description='A header may contain an icon'
examplePath='elements/Header/Content/HeaderPlugIconExample'
description='A header may contain an icon.'
examplePath='elements/Header/Content/HeaderExamplePlugIcon'
/>
<ComponentExample
examplePath='elements/Header/Content/HeaderSettingsIconExample'
examplePath='elements/Header/Content/HeaderExampleSettingsIcon'
/>
<ComponentExample
description='You can also define an icon with props'
examplePath='elements/Header/Content/HeaderIconPropExample'
description='You can also define an icon with props.'
examplePath='elements/Header/Content/HeaderExampleIconProp'
/>
<ComponentExample
title='Subheader'
description='Headers may contain subheaders'
examplePath='elements/Header/Content/HeaderSubheaderExample'
description='Headers may contain subheaders.'
examplePath='elements/Header/Content/HeaderExampleSubheader'
/>
<ComponentExample
description='You can pass an Subheader content to the Header subheader prop'
examplePath='elements/Header/Content/HeaderSubheaderPropExample'
description='You can pass an Subheader content to the Header subheader prop.'
examplePath='elements/Header/Content/HeaderExampleSubheaderProp'
/>
</ExampleSection>
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react'
import { Header } from 'semantic-ui-react'

const HeaderDisabledExample = () => (
const HeaderExampleDisabled = () => (
<Header as='h2' disabled>
Disabled Header
</Header>
)

export default HeaderDisabledExample
export default HeaderExampleDisabled
4 changes: 2 additions & 2 deletions docs/app/Examples/elements/Header/States/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const HeaderStatesExamples = () => (
<ExampleSection title='States'>
<ComponentExample
title='Disabled'
description='A header can show that it is inactive'
examplePath='elements/Header/States/HeaderDisabledExample'
description='A header can show that it is inactive.'
examplePath='elements/Header/States/HeaderExampleDisabled'
/>
</ExampleSection>
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Header } from 'semantic-ui-react'

const HeaderContentHeadersExample = () => (
const HeaderExampleContent = () => (
<div>
<Header size='huge'>Huge Header</Header>
<Header size='large'>Large Header</Header>
Expand All @@ -11,4 +11,4 @@ const HeaderContentHeadersExample = () => (
</div>
)

export default HeaderContentHeadersExample
export default HeaderExampleContent
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Header } from 'semantic-ui-react'

const HeaderPageHeadersExamples = () => (
const HeaderExamplePage = () => (
<div>
<Header as='h1'>First Header</Header>
<Header as='h2'>Second Header</Header>
Expand All @@ -12,4 +12,4 @@ const HeaderPageHeadersExamples = () => (
</div>
)

export default HeaderPageHeadersExamples
export default HeaderExamplePage
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Header, Icon } from 'semantic-ui-react'

const HeaderIconHeadersExample = () => (
const HeaderExampleSettingsIcon = () => (
<Header as='h2' icon>
<Icon name='settings' />
Account Settings
Expand All @@ -11,4 +11,4 @@ const HeaderIconHeadersExample = () => (
</Header>
)

export default HeaderIconHeadersExample
export default HeaderExampleSettingsIcon
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import React from 'react'
import { Header } from 'semantic-ui-react'

const HeaderSubHeadersExample = () => (
const HeaderExampleSubheaders = () => (
<div>
<Header sub>Price</Header>
<span>$10.99</span>
</div>
)

export default HeaderSubHeadersExample
export default HeaderExampleSubheaders
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Header, Icon, Image } from 'semantic-ui-react'

const HeaderIconHeadersExample = () => (
const HeaderExampleUsersIcon = () => (
<div>
<Header as='h2' icon textAlign='center'>
<Icon name='users' circular />
Expand All @@ -13,4 +13,4 @@ const HeaderIconHeadersExample = () => (
</div>
)

export default HeaderIconHeadersExample
export default HeaderExampleUsersIcon
20 changes: 10 additions & 10 deletions docs/app/Examples/elements/Header/Types/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,34 +7,34 @@ const HeaderTypesExamples = () => (
<ExampleSection title='Types'>
<ComponentExample
title='Page Headers'
description='Headers may be oriented to give the hierarchy of a section in the context of the page'
examplePath='elements/Header/Types/HeaderPageHeadersExample'
description='Headers may be oriented to give the hierarchy of a section in the context of the page.'
examplePath='elements/Header/Types/HeaderExamplePage'
>
<Message info>
Page headings are sized using <code>rem</code> and are not affected by surrounding content size.
</Message>
</ComponentExample>
<ComponentExample
title='Content Headers'
description='Headers may be oriented to give the importance of a section'
examplePath='elements/Header/Types/HeaderContentHeadersExample'
description='Headers may be oriented to give the importance of a section.'
examplePath='elements/Header/Types/HeaderExampleContent'
>
<Message info>
Content headings are sized with <code>em</code> and are based on the font-size of their container.
</Message>
</ComponentExample>
<ComponentExample
title='Icon Headers'
description='A header can be formatted to emphasize an icon'
examplePath='elements/Header/Types/HeaderSettingsIconHeaderExample'
description='A header can be formatted to emphasize an icon.'
examplePath='elements/Header/Types/HeaderExampleSettingsIcon'
/>
<ComponentExample
examplePath='elements/Header/Types/HeaderUsersIconHeaderExample'
examplePath='elements/Header/Types/HeaderExampleUsersIcon'
/>
<ComponentExample
title='Sub Headers'
description='Headers may be formatted to label smaller or de-emphasized content'
examplePath='elements/Header/Types/HeaderSubHeadersExample'
title='Subheaders'
description='Headers may be formatted to label smaller or de-emphasized content.'
examplePath='elements/Header/Types/HeaderExampleSubheaders'
/>
</ExampleSection>
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Header, Segment } from 'semantic-ui-react'

const HeaderAttachedExample = () => (
const HeaderExampleAttached = () => (
<div>
<Header as='h2' attached='top'>
Attached Header
Expand All @@ -14,4 +14,4 @@ const HeaderAttachedExample = () => (
</div>
)

export default HeaderAttachedExample
export default HeaderExampleAttached
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react'
import { Header } from 'semantic-ui-react'

const HeaderBlockExample = () => (
const HeaderExampleBlock = () => (
<Header as='h3' block>
Block Header
</Header>
)

export default HeaderBlockExample
export default HeaderExampleBlock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Header } from 'semantic-ui-react'

const HeaderColoredExample = () => (
const HeaderExampleColored = () => (
<div>
<Header as='h4' color='red'>Red</Header>
<Header as='h4' color='orange'>Orange</Header>
Expand All @@ -18,4 +18,4 @@ const HeaderColoredExample = () => (
</div>
)

export default HeaderColoredExample
export default HeaderExampleColored
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react'
import { Header } from 'semantic-ui-react'

const HeaderDividingExample = () => (
const HeaderExampleDividing = () => (
<Header as='h3' dividing>
Dividing Header
</Header>
)

export default HeaderDividingExample
export default HeaderExampleDividing
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Header, Segment } from 'semantic-ui-react'

const HeaderFloatingExample = () => (
const HeaderExampleFloating = () => (
<Segment clearing>
<Header as='h2' floated='right'>
Float Right
Expand All @@ -12,4 +12,4 @@ const HeaderFloatingExample = () => (
</Segment>
)

export default HeaderFloatingExample
export default HeaderExampleFloating
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Header, Segment } from 'semantic-ui-react'

const HeaderInvertedExample = () => (
const HeaderExampleInverted = () => (
<Segment inverted>
<Header as='h4' inverted color='red'>Red</Header>
<Header as='h4' inverted color='orange'>Orange</Header>
Expand All @@ -18,4 +18,4 @@ const HeaderInvertedExample = () => (
</Segment>
)

export default HeaderInvertedExample
export default HeaderExampleInverted
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react'
import { Header, Segment } from 'semantic-ui-react'

const HeaderTextAlignmentExample = () => (
const HeaderExampleTextAlignment = () => (
<Segment>
<Header as='h3' textAlign='right'>
Float Right
Expand All @@ -18,4 +18,4 @@ const HeaderTextAlignmentExample = () => (
</Segment>
)

export default HeaderTextAlignmentExample
export default HeaderExampleTextAlignment
Loading

0 comments on commit 4a98369

Please sign in to comment.