diff --git a/docs/app/Examples/views/Item/Content/Contents.js b/docs/app/Examples/views/Item/Content/Contents.js deleted file mode 100644 index 7418089335..0000000000 --- a/docs/app/Examples/views/Item/Content/Contents.js +++ /dev/null @@ -1,25 +0,0 @@ -import React from 'react' -import { Item } from 'semantic-ui-react' - -const { Content, Group, Image } = Item - -const Contents = () => ( - - - - Content A - - - - - Content B - - - - - - - -) - -export default Contents diff --git a/docs/app/Examples/views/Item/Content/Descriptions.js b/docs/app/Examples/views/Item/Content/Descriptions.js deleted file mode 100644 index 1a966997c6..0000000000 --- a/docs/app/Examples/views/Item/Content/Descriptions.js +++ /dev/null @@ -1,42 +0,0 @@ -import React from 'react' -import { Item } from 'semantic-ui-react' - -const { Content, Description, Group, Header, Image } = Item -const description = [ - 'Cute dogs come in a variety of shapes and sizes. Some cute dogs are cute for their adorable faces, others for their', - 'tiny stature, and even others for their massive size.', -].join(' ') - -const Descriptions = () => ( - - - - - - Cute Dog - - {description} - - Many people also have their own barometers for what makes a cute dog. - - - - - - - - - - Cute Dog - - - - - - - - - -) - -export default Descriptions diff --git a/docs/app/Examples/views/Item/Content/ExtraContent.js b/docs/app/Examples/views/Item/Content/ExtraContent.js deleted file mode 100644 index 77ea3f7ce1..0000000000 --- a/docs/app/Examples/views/Item/Content/ExtraContent.js +++ /dev/null @@ -1,38 +0,0 @@ -import React from 'react' -import { Icon, Image as ImageComponent, Item } from 'semantic-ui-react' - -const { Content, Description, Extra, Group, Header, Image } = Item -const paragraph = - -const ExtraContent = () => ( - - - - - - Cute Dog - {paragraph} - - 121 Votes - - - - - - - - - Cute Dog - {paragraph} - - - - - - - - - -) - -export default ExtraContent diff --git a/docs/app/Examples/views/Item/Content/Headers.js b/docs/app/Examples/views/Item/Content/Headers.js deleted file mode 100644 index f3753e1a06..0000000000 --- a/docs/app/Examples/views/Item/Content/Headers.js +++ /dev/null @@ -1,29 +0,0 @@ -import React from 'react' -import { Item } from 'semantic-ui-react' - -const { Content, Group, Header, Image } = Item - -const Headers = () => ( - - - - - 12 Years a Slave - - - - - - - - - - - - - - - -) - -export default Headers diff --git a/docs/app/Examples/views/Item/Content/Images.js b/docs/app/Examples/views/Item/Content/Images.js deleted file mode 100644 index c731effa11..0000000000 --- a/docs/app/Examples/views/Item/Content/Images.js +++ /dev/null @@ -1,20 +0,0 @@ -import React from 'react' -import { Item } from 'semantic-ui-react' - -const { Group, Image } = Item - -const Images = () => ( - - - - - - - - - - - -) - -export default Images diff --git a/docs/app/Examples/views/Item/Content/ItemExampleContents.js b/docs/app/Examples/views/Item/Content/ItemExampleContents.js new file mode 100644 index 0000000000..f1ed4574f6 --- /dev/null +++ b/docs/app/Examples/views/Item/Content/ItemExampleContents.js @@ -0,0 +1,23 @@ +import React from 'react' +import { Item } from 'semantic-ui-react' + +const ItemExampleContents = () => ( + + + + Content A + + + + + Content B + + + + + + + +) + +export default ItemExampleContents diff --git a/docs/app/Examples/views/Item/Content/ItemExampleDescriptions.js b/docs/app/Examples/views/Item/Content/ItemExampleDescriptions.js new file mode 100644 index 0000000000..08684ebb87 --- /dev/null +++ b/docs/app/Examples/views/Item/Content/ItemExampleDescriptions.js @@ -0,0 +1,41 @@ +import React from 'react' +import { Item } from 'semantic-ui-react' + +const description = [ + 'Cute dogs come in a variety of shapes and sizes. Some cute dogs are cute for their adorable faces, others for their', + 'tiny stature, and even others for their massive size.', +].join(' ') + +const ItemExampleDescriptions = () => ( + + + + + + Cute Dog + + {description} + + Many people also have their own barometers for what makes a cute dog. + + + + + + + + + + Cute Dog + + + + + + + + + +) + +export default ItemExampleDescriptions diff --git a/docs/app/Examples/views/Item/Content/ItemExampleExtraContent.js b/docs/app/Examples/views/Item/Content/ItemExampleExtraContent.js new file mode 100644 index 0000000000..cea13527e4 --- /dev/null +++ b/docs/app/Examples/views/Item/Content/ItemExampleExtraContent.js @@ -0,0 +1,37 @@ +import React from 'react' +import { Icon, Image as ImageComponent, Item } from 'semantic-ui-react' + +const paragraph = + +const ItemExampleExtraContent = () => ( + + + + + + Cute Dog + {paragraph} + + 121 Votes + + + + + + + + + Cute Dog + {paragraph} + + + + + + + + + +) + +export default ItemExampleExtraContent diff --git a/docs/app/Examples/views/Item/Content/ItemExampleHeaders.js b/docs/app/Examples/views/Item/Content/ItemExampleHeaders.js new file mode 100644 index 0000000000..82c7ccdbc6 --- /dev/null +++ b/docs/app/Examples/views/Item/Content/ItemExampleHeaders.js @@ -0,0 +1,27 @@ +import React from 'react' +import { Item } from 'semantic-ui-react' + +const ItemExampleHeaders = () => ( + + + + + 12 Years a Slave + + + + + + + + + + + + + + + +) + +export default ItemExampleHeaders diff --git a/docs/app/Examples/views/Item/Content/ItemExampleImages.js b/docs/app/Examples/views/Item/Content/ItemExampleImages.js new file mode 100644 index 0000000000..62c631e6f4 --- /dev/null +++ b/docs/app/Examples/views/Item/Content/ItemExampleImages.js @@ -0,0 +1,18 @@ +import React from 'react' +import { Item } from 'semantic-ui-react' + +const ItemExampleImages = () => ( + + + + + + + + + + + +) + +export default ItemExampleImages diff --git a/docs/app/Examples/views/Item/Content/ItemExampleLink.js b/docs/app/Examples/views/Item/Content/ItemExampleLink.js new file mode 100644 index 0000000000..7b06920708 --- /dev/null +++ b/docs/app/Examples/views/Item/Content/ItemExampleLink.js @@ -0,0 +1,38 @@ +import React from 'react' +import { Image as ImageComponent, Item } from 'semantic-ui-react' + +const paragraph = + +const ItemExampleLink = () => ( + + + + + + Arrowhead Valley Camp + + $1200 + 1 Month + + {paragraph} + + + + + + + + Buck's Homebrew Stayaway + + {paragraph} + + + + + + + + +) + +export default ItemExampleLink diff --git a/docs/app/Examples/views/Item/Content/ItemExampleMetadata.js b/docs/app/Examples/views/Item/Content/ItemExampleMetadata.js new file mode 100644 index 0000000000..2259fdb7fe --- /dev/null +++ b/docs/app/Examples/views/Item/Content/ItemExampleMetadata.js @@ -0,0 +1,38 @@ +import React from 'react' +import { Image as ImageComponent, Item } from 'semantic-ui-react' + +const paragraph = + +const ItemExampleMetadata = () => ( + + + + + + Arrowhead Valley Camp + + $1200 + 1 Month + + {paragraph} + + + + + + + + Buck's Homebrew Stayaway + + {paragraph} + + + + + + + + +) + +export default ItemExampleMetadata diff --git a/docs/app/Examples/views/Item/Content/ItemExampleRatings.js b/docs/app/Examples/views/Item/Content/ItemExampleRatings.js new file mode 100644 index 0000000000..789894841a --- /dev/null +++ b/docs/app/Examples/views/Item/Content/ItemExampleRatings.js @@ -0,0 +1,30 @@ +import React from 'react' +import { Icon, Item } from 'semantic-ui-react' + +const ItemExampleRatings = () => ( + + + + + + + + Veronika Ossi + + + + + + + + + + + Justen Kitsune + + + + +) + +export default ItemExampleRatings diff --git a/docs/app/Examples/views/Item/Content/Link.js b/docs/app/Examples/views/Item/Content/Link.js deleted file mode 100644 index 254ba28e2b..0000000000 --- a/docs/app/Examples/views/Item/Content/Link.js +++ /dev/null @@ -1,39 +0,0 @@ -import React from 'react' -import { Image as ImageComponent, Item } from 'semantic-ui-react' - -const { Content, Description, Group, Header, Image, Meta } = Item -const paragraph = - -const Link = () => ( - - - - - - Arrowhead Valley Camp - - $1200 - 1 Month - - {paragraph} - - - - - - - - Buck's Homebrew Stayaway - - {paragraph} - - - - - - - - -) - -export default Link diff --git a/docs/app/Examples/views/Item/Content/Metadata.js b/docs/app/Examples/views/Item/Content/Metadata.js deleted file mode 100644 index e9aea0e3b9..0000000000 --- a/docs/app/Examples/views/Item/Content/Metadata.js +++ /dev/null @@ -1,39 +0,0 @@ -import React from 'react' -import { Image as ImageComponent, Item } from 'semantic-ui-react' - -const { Content, Description, Group, Header, Image, Meta } = Item -const paragraph = - -const Metadata = () => ( - - - - - - Arrowhead Valley Camp - - $1200 - 1 Month - - {paragraph} - - - - - - - - Buck's Homebrew Stayaway - - {paragraph} - - - - - - - - -) - -export default Metadata diff --git a/docs/app/Examples/views/Item/Content/Ratings.js b/docs/app/Examples/views/Item/Content/Ratings.js deleted file mode 100644 index 7cd8ec2f16..0000000000 --- a/docs/app/Examples/views/Item/Content/Ratings.js +++ /dev/null @@ -1,32 +0,0 @@ -import React from 'react' -import { Icon, Item } from 'semantic-ui-react' - -const { Content, Group, Header, Image } = Item - -const Ratings = () => ( - - - - - - - - Veronika Ossi - - - - - - - - - - - Justen Kitsune - - - - -) - -export default Ratings diff --git a/docs/app/Examples/views/Item/Content/index.js b/docs/app/Examples/views/Item/Content/index.js index 1243990e84..623e3781d3 100644 --- a/docs/app/Examples/views/Item/Content/index.js +++ b/docs/app/Examples/views/Item/Content/index.js @@ -7,50 +7,50 @@ const Content = () => ( ) diff --git a/docs/app/Examples/views/Item/Types/Items.js b/docs/app/Examples/views/Item/Types/ItemExampleItems.js similarity index 93% rename from docs/app/Examples/views/Item/Types/Items.js rename to docs/app/Examples/views/Item/Types/ItemExampleItems.js index af17872755..c6aca0c90e 100644 --- a/docs/app/Examples/views/Item/Types/Items.js +++ b/docs/app/Examples/views/Item/Types/ItemExampleItems.js @@ -1,7 +1,7 @@ import React from 'react' import { Image, Item } from 'semantic-ui-react' -const Items = () => ( +const ItemExampleItems = () => ( @@ -31,4 +31,4 @@ const Items = () => ( ) -export default Items +export default ItemExampleItems diff --git a/docs/app/Examples/views/Item/Types/Props.js b/docs/app/Examples/views/Item/Types/ItemExampleProps.js similarity index 88% rename from docs/app/Examples/views/Item/Types/Props.js rename to docs/app/Examples/views/Item/Types/ItemExampleProps.js index ea4e324283..321e3ae8a8 100644 --- a/docs/app/Examples/views/Item/Types/Props.js +++ b/docs/app/Examples/views/Item/Types/ItemExampleProps.js @@ -20,8 +20,8 @@ const items = [ }, ] -const Props = () => ( +const ItemExampleProps = () => ( ) -export default Props +export default ItemExampleProps diff --git a/docs/app/Examples/views/Item/Types/index.js b/docs/app/Examples/views/Item/Types/index.js index e56d9c409f..91099e3bf6 100644 --- a/docs/app/Examples/views/Item/Types/index.js +++ b/docs/app/Examples/views/Item/Types/index.js @@ -7,10 +7,10 @@ const Types = () => ( - + ) diff --git a/docs/app/Examples/views/Item/Variations/Alignment.js b/docs/app/Examples/views/Item/Variations/Alignment.js deleted file mode 100644 index 77f560b9a4..0000000000 --- a/docs/app/Examples/views/Item/Variations/Alignment.js +++ /dev/null @@ -1,34 +0,0 @@ -import React from 'react' -import { Item } from 'semantic-ui-react' - -const { Content, Group, Header, Image } = Item - -const Alignment = () => ( - - - - - - Top Aligned - - - - - - - - Middle Aligned - - - - - - - - Bottom Aligned - - - -) - -export default Alignment diff --git a/docs/app/Examples/views/Item/Variations/Divided.js b/docs/app/Examples/views/Item/Variations/Divided.js deleted file mode 100644 index 2fbb4c3372..0000000000 --- a/docs/app/Examples/views/Item/Variations/Divided.js +++ /dev/null @@ -1,64 +0,0 @@ -import React from 'react' -import { Button, Icon, Image as ImageComponent, Item, Label } from 'semantic-ui-react' - -const { Content, Description, Extra, Group, Header, Image, Meta } = Item -const paragraph = - -const Divided = () => ( - - - - - - 12 Years a Slave - - Union Square 14 - - {paragraph} - - IMAX - - - - - - - - - - My Neighbor Totoro - - IFC Cinema - - {paragraph} - - - Buy tickets - - - Limited - - - - - - - - - Watchmen - - IFC - - {paragraph} - - - Buy tickets - - - - - - -) - -export default Divided diff --git a/docs/app/Examples/views/Item/Variations/Floated.js b/docs/app/Examples/views/Item/Variations/Floated.js deleted file mode 100644 index 6537bacc9e..0000000000 --- a/docs/app/Examples/views/Item/Variations/Floated.js +++ /dev/null @@ -1,53 +0,0 @@ -import React from 'react' -import { Button, Image as ImageComponent, Item } from 'semantic-ui-react' - -const { Content, Description, Extra, Group, Header, Image } = Item -const paragraph = - -const Floated = () => ( - - - - - - Content A - {paragraph} - - - Action - - - - - - - - - - Content B - {paragraph} - - - Action - - - - - - - - - - Content C - {paragraph} - - - Action - - - - - -) - -export default Floated diff --git a/docs/app/Examples/views/Item/Variations/ItemExampleAlignment.js b/docs/app/Examples/views/Item/Variations/ItemExampleAlignment.js new file mode 100644 index 0000000000..3a8ecbfc7b --- /dev/null +++ b/docs/app/Examples/views/Item/Variations/ItemExampleAlignment.js @@ -0,0 +1,32 @@ +import React from 'react' +import { Item } from 'semantic-ui-react' + +const ItemExampleAlignment = () => ( + + + + + + Top Aligned + + + + + + + + Middle Aligned + + + + + + + + Bottom Aligned + + + +) + +export default ItemExampleAlignment diff --git a/docs/app/Examples/views/Item/Variations/ItemExampleDivided.js b/docs/app/Examples/views/Item/Variations/ItemExampleDivided.js new file mode 100644 index 0000000000..695c8ba96e --- /dev/null +++ b/docs/app/Examples/views/Item/Variations/ItemExampleDivided.js @@ -0,0 +1,63 @@ +import React from 'react' +import { Button, Icon, Image as ImageComponent, Item, Label } from 'semantic-ui-react' + +const paragraph = + +const ItemExampleDivided = () => ( + + + + + + 12 Years a Slave + + Union Square 14 + + {paragraph} + + IMAX + + + + + + + + + + My Neighbor Totoro + + IFC Cinema + + {paragraph} + + + Buy tickets + + + Limited + + + + + + + + + Watchmen + + IFC + + {paragraph} + + + Buy tickets + + + + + + +) + +export default ItemExampleDivided diff --git a/docs/app/Examples/views/Item/Variations/ItemExampleFloated.js b/docs/app/Examples/views/Item/Variations/ItemExampleFloated.js new file mode 100644 index 0000000000..8c3420dcbc --- /dev/null +++ b/docs/app/Examples/views/Item/Variations/ItemExampleFloated.js @@ -0,0 +1,52 @@ +import React from 'react' +import { Button, Image as ImageComponent, Item } from 'semantic-ui-react' + +const paragraph = + +const ItemExampleFloated = () => ( + + + + + + Content A + {paragraph} + + + Action + + + + + + + + + + Content B + {paragraph} + + + Action + + + + + + + + + + Content C + {paragraph} + + + Action + + + + + +) + +export default ItemExampleFloated diff --git a/docs/app/Examples/views/Item/Variations/ItemExampleLink.js b/docs/app/Examples/views/Item/Variations/ItemExampleLink.js new file mode 100644 index 0000000000..6492dfdd37 --- /dev/null +++ b/docs/app/Examples/views/Item/Variations/ItemExampleLink.js @@ -0,0 +1,37 @@ +import React from 'react' +import { Image as ImageComponent, Item } from 'semantic-ui-react' + +const paragraph = + +const ItemExampleLink = () => ( + + + + + + Stevie Feliciano + {paragraph} + + + + + + + + Veronika Ossi + {paragraph} + + + + + + + + Jenny Hess + {paragraph} + + + +) + +export default ItemExampleLink diff --git a/docs/app/Examples/views/Item/Variations/ItemExampleRelaxed.js b/docs/app/Examples/views/Item/Variations/ItemExampleRelaxed.js new file mode 100644 index 0000000000..6507c607aa --- /dev/null +++ b/docs/app/Examples/views/Item/Variations/ItemExampleRelaxed.js @@ -0,0 +1,32 @@ +import React from 'react' +import { Item } from 'semantic-ui-react' + +const ItemExampleRelaxed = () => ( + + + + + + 12 Years a Slave + + + + + + + + My Neighbor Totoro + + + + + + + + Watchmen + + + +) + +export default ItemExampleRelaxed diff --git a/docs/app/Examples/views/Item/Variations/ItemExampleVeryRelaxed.js b/docs/app/Examples/views/Item/Variations/ItemExampleVeryRelaxed.js new file mode 100644 index 0000000000..cf24126746 --- /dev/null +++ b/docs/app/Examples/views/Item/Variations/ItemExampleVeryRelaxed.js @@ -0,0 +1,32 @@ +import React from 'react' +import { Item } from 'semantic-ui-react' + +const ItemExampleVeryRelaxed = () => ( + + + + + + 12 Years a Slave + + + + + + + + My Neighbor Totoro + + + + + + + + Watchmen + + + +) + +export default ItemExampleVeryRelaxed diff --git a/docs/app/Examples/views/Item/Variations/Link.js b/docs/app/Examples/views/Item/Variations/Link.js deleted file mode 100644 index a42a94be7a..0000000000 --- a/docs/app/Examples/views/Item/Variations/Link.js +++ /dev/null @@ -1,38 +0,0 @@ -import React from 'react' -import { Image as ImageComponent, Item } from 'semantic-ui-react' - -const { Content, Description, Group, Header, Image } = Item -const paragraph = - -const Link = () => ( - - - - - - Stevie Feliciano - {paragraph} - - - - - - - - Veronika Ossi - {paragraph} - - - - - - - - Jenny Hess - {paragraph} - - - -) - -export default Link diff --git a/docs/app/Examples/views/Item/Variations/Relaxed.js b/docs/app/Examples/views/Item/Variations/Relaxed.js deleted file mode 100644 index b47320a86f..0000000000 --- a/docs/app/Examples/views/Item/Variations/Relaxed.js +++ /dev/null @@ -1,34 +0,0 @@ -import React from 'react' -import { Item } from 'semantic-ui-react' - -const { Content, Group, Header, Image } = Item - -const Relaxed = () => ( - - - - - - 12 Years a Slave - - - - - - - - My Neighbor Totoro - - - - - - - - Watchmen - - - -) - -export default Relaxed diff --git a/docs/app/Examples/views/Item/Variations/VeryRelaxed.js b/docs/app/Examples/views/Item/Variations/VeryRelaxed.js deleted file mode 100644 index a5282329bc..0000000000 --- a/docs/app/Examples/views/Item/Variations/VeryRelaxed.js +++ /dev/null @@ -1,34 +0,0 @@ -import React from 'react' -import { Item } from 'semantic-ui-react' - -const { Content, Group, Header, Image } = Item - -const VeryRelaxed = () => ( - - - - - - 12 Years a Slave - - - - - - - - My Neighbor Totoro - - - - - - - - Watchmen - - - -) - -export default VeryRelaxed diff --git a/docs/app/Examples/views/Item/Variations/index.js b/docs/app/Examples/views/Item/Variations/index.js index 9ff5098084..00cb7bb0b1 100644 --- a/docs/app/Examples/views/Item/Variations/index.js +++ b/docs/app/Examples/views/Item/Variations/index.js @@ -7,33 +7,33 @@ const Variations = () => ( - + )
{description}
- Many people also have their own barometers for what makes a cute dog. -
+ Many people also have their own barometers for what makes a cute dog. +