Skip to content

Commit

Permalink
- Pre-release Modules.
Browse files Browse the repository at this point in the history
  - accordion, checkbox, dimmer, dropbown, modal, popup, progress, rating, search, shape, sidebar, sticky, tab.
  • Loading branch information
jessy1092 committed Dec 19, 2014
2 parents 1d89b95 + 0d05914 commit 297e8fa
Show file tree
Hide file tree
Showing 22 changed files with 917 additions and 41 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# node
node_modules/
_public/
*.log
54 changes: 27 additions & 27 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ React-Semantify

Integrate Semantic-ui with react components. It depends on Semantic-UI and helps you use with react component.

The components' Docs will coming soon.
[The components' Docs][https://github.com/jessy1092/react-semantify/blob/master/docs]

## Usage

Expand Down Expand Up @@ -130,36 +130,36 @@ bower install semantic-ui
+ [Grid](https://github.com/jessy1092/react-semantify/blob/master/docs/Collections.md#grid) - Pre-release
+ [Menu](https://github.com/jessy1092/react-semantify/blob/master/docs/Collections.md#menu) - Pre-release
+ [Message](https://github.com/jessy1092/react-semantify/blob/master/docs/Collections.md#message) - Pre-release
+ [Table]((https://github.com/jessy1092/react-semantify/blob/master/docs/Collections.md#table) - Pre-release)
- Views
+ Advertisement
+ Card
+ Comment
+ Feed
+ Item
+ Statistic
- Modules
+ Dimmer
+ Dropdown
+ [Table](https://github.com/jessy1092/react-semantify/blob/master/docs/Collections.md#table) - Pre-release
- [Views](https://github.com/jessy1092/react-semantify/blob/master/docs/Views.md)
+ [Advertisement](https://github.com/jessy1092/react-semantify/blob/master/docs/Views.md#advertisement) - Pre-release
+ [Card](https://github.com/jessy1092/react-semantify/blob/master/docs/Views.md#card) - Pre-release
+ [Comments/Comment](https://github.com/jessy1092/react-semantify/blob/master/docs/Views.md#commentscomment) - Pre-release
+ [Feed](https://github.com/jessy1092/react-semantify/blob/master/docs/Views.md#feed) - Pre-release
+ [Items/Item](https://github.com/jessy1092/react-semantify/blob/master/docs/Views.md#itemsitem) - Pre-release
+ [Statistic](https://github.com/jessy1092/react-semantify/blob/master/docs/Views.md#statistic) - Pre-release
- [Modules](https://github.com/jessy1092/react-semantify/blob/master/docs/Modules.md)
+ Accordion - Pre-release
+ Checkbox - Pre-release
+ Dimmer - Pre-release
+ Dropdown - Pre-release
+ Modal - Pre-release
+ Popup - Pre-release
+ Progress - Pre-release
+ Rating - Pre-release
+ Search - Pre-release
+ Shape - Pre-release
+ Sidebar - Pre-release
+ Sticky - Pre-release
+ Tab - Pre-release
### Comming Soon
Wait Semantic-UI Release.
- Modules
+ Accordin
+ Checkbox
+ Modal
+ Nag
+ Popup
+ Progress
+ Rating
+ Search
+ Shape
+ Sidebar
+ Sticky
+ Tab
+ Transition
+ Video
## Release Notes
Expand All @@ -173,7 +173,7 @@ bower install semantic-ui
2. Create your feature-branch `git checkout -b your-new-feature-branch`
3. Commit your change `git commit -am 'Add new feature'`
4. Push to the branch `git push origin your-new-feature-branch`
5. Create new Pull Request with develop branch
5. Create new Pull Request with `develop` branch
## License
Expand Down
5 changes: 5 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Release Notes
=============

## Version 0.0.7 - 2014/12/20

- Pre-release Modules.
- accordion, checkbox, dimmer, dropbown, modal, popup, progress, rating, search, shape, sidebar, sticky, tab.

## Version 0.0.6 - 2014/12/19

- Fix Table bug: use `<table>` tag.
Expand Down
4 changes: 2 additions & 2 deletions docs/Collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ is equal to


# Message
A standard Menu.
A standard Message.

### Example

Expand Down Expand Up @@ -181,7 +181,7 @@ is equal to


# Table
A standard Menu.
A standard Table.

### Example

Expand Down
16 changes: 16 additions & 0 deletions docs/Modules.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
Modules
=============
The modules which interagte Semantic-Ui in react components.

It's pre-release version. You can use module components simply.

ex. Use accordion component.
```html
<Accordion className="example"></Accordion>
```

is equal to

```js
<div class="ui accordion example"></div>
```
198 changes: 198 additions & 0 deletions docs/Views.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,198 @@
Views
=============
The views which interagte Semantic-Ui in react components.

# Advertisement
A standard Advertisement.

### Example

```html
<Ad className="medium rectangle">
<!-- Ad Code Here !-->
</Ad>
```

is equal to

```html
<div class="ui ad medium rectangle">
<!-- Ad Code Here !-->
</div>
```

### Properties

- *className*: The className would be part of the `class` attribute.


# Card
A standard Card.

### Example

```html
<Card className="examplecard">
<Content>
<Header>Hello World</Header>
<div className="meta">
<span className="time">1 days ago</span>
<span className="category">Test</span>
</div>
</Content>
</Card>
```

is equal to

```html
<div class="ui card examplecard">
<div class="content">
<div class="header">Hello World</div>
<div class="meta">
<span class="time">1 days ago</span>
<span class="category">Test</span>
</div>
</div>
</div>
```

### Properties

- *className*: The className would be part of the `class` attribute.


## Comments/Comment
A standard Comments.

### Example

```html
<Comments className="examplecomments">
<Comment>
<a className="avatar">
<Image src="./example/example.jpg" />
</a>
<Content>
<a className="author">Lee</a>
</Content>
</Comment>
</Comments>
```

is equal to

```html
<div class="ui Comments examplecomments">
<div class="Comment">
<a class="avatar">
<img class="ui image" src="./example/example.jpg"></img>
</a>
<div class="content">
<a class="author">Lee</a>
</div>
</div>
</div>
```

### Properties

- *className*: The className would be part of the `class` attribute.


## Feed
A standard Feed.

### Example

```html
<Feed className="examplefeed">
<div className="event">
<Label>
<Image src="./example/example.jpg" />
</Label>
<Content>
I said hello.
</Content>
</div>
</Feed>
```

is equal to

```html
<div class="ui feed examplefeed">
<div class="event">
<div class="ui label">
<img class="ui image" src="./example/example.jpg"></img>
</div>
<div class="content">
I said hello.
</div>
</div>
</div>
```

### Properties

- *className*: The className would be part of the `class` attribute.


## Items/Item
A standard Items.

### Example

```html
<Items className="exampleitems">
<Item>
<Content>
<Header>The Best Thing</Header>
<div className="description">Nothing</div>
</Content>
</Item>
</Items>
```

is equal to

```html
<div class="ui items exampleitems">
<div class="item">
<div class="content">
<div class="header">The Best Thing</div>
<div class="description">Nothing</div>
</div>
</div>
</div>
```

### Properties

- *className*: The className would be part of the `class` attribute.


## Statistic
A standard Statistic.

### Example

```html
<Statistic className="examplestatistic">
<div className="value">22</div>
<Lable>Breeds of Dog</Lable>
</Statistic>
```

is equal to

```html
<div class="ui statistic examplestatistic">
<div class="value">22</div>
<div class="ui label">Breeds of Dog</div>
</div>
```

### Properties

- *className*: The className would be part of the `class` attribute.
Loading

0 comments on commit 297e8fa

Please sign in to comment.