Skip to content

Commit fa4603c

Browse files
committed
v0.0.5
- Fix Segment bug: Add color attribute. - Fix Image bug: Use <img> instead of <div> - Add Elements Docs.
2 parents 7dd3014 + b0fb4e2 commit fa4603c

File tree

8 files changed

+400
-37
lines changed

8 files changed

+400
-37
lines changed

README.md

Lines changed: 37 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
React-Semantify
22
=============
3+
[![Dependency Status][david-dm-image]][david-dm-url]
34
Integrate Semantic-ui with react components. It depends on Semantic-UI and helps you use with react component.
45

56
The components' Docs will coming soon.
@@ -8,7 +9,7 @@ The components' Docs will coming soon.
89

910
### In Browser
1011

11-
[Download js file](https://github.com/jessy1092/react-semantify/releases)
12+
[Download js file][react-semantify-url]
1213

1314
And then include in your html.
1415

@@ -28,7 +29,7 @@ Ex. Write a simple button in browser.
2829
<script src="/vendors/react-semantify.js"></script>
2930
```
3031

31-
```
32+
```js
3233
<div id="content"></div>
3334
<script type="text/jsx">
3435
var Button = Semantify.Button;
@@ -89,7 +90,7 @@ React.render(
8990

9091
And then you should include `jQuery` and `semantic-ui` in your browser.
9192

92-
Use [cdnjs](https://cdnjs.com/libraries/semantic-ui) or [bower](http://bower.io/)
93+
Use [cdnjs][cdnjs-url] or [bower][bower-url]
9394

9495
Use cdnjs
9596
```html
@@ -106,21 +107,21 @@ bower install semantic-ui
106107
107108
## Component
108109
109-
- Elements
110-
+ Button
111-
+ Divider
112-
+ Flag
113-
+ Header
114-
+ Icon
115-
+ Image
116-
+ Input
117-
+ Label
118-
+ List
119-
+ Loader
120-
+ Rail
121-
+ Reveal
122-
+ Segment
123-
+ Step
110+
- [Elements](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md)
111+
+ [Button](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md#Button)
112+
+ [Divider](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md#Divider)
113+
+ [Flag](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md#Flag)
114+
+ [Header](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md#Header)
115+
+ [Icon](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md#Icon)
116+
+ [Image](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md#Image)
117+
+ [Input](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md#Input)
118+
+ [Label](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md#Label)
119+
+ [List](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md#List)
120+
+ [Loader](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md#Loader)
121+
+ [Rail](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md#Rail) - Pre-release
122+
+ [Reveal](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md#Reveal) - Pre-release
123+
+ [Segment](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md#Reveal)
124+
+ [Steps/Step](https://github.com/jessy1092/react-semantify/blob/master/docs/Elements.md#Steps/Step) - Pre-release
124125
125126
- Collections
126127
+ Breadcrumb
@@ -157,6 +158,15 @@ bower install semantic-ui
157158
158159
[Release Notes](https://github.com/jessy1092/react-semantify/blob/master/RELEASE-NOTES.md)
159160
161+
## Contribute
162+
[![devDependency Status][david-dm-dev-image]][david-dm-dev-url]
163+
164+
1. Fork it.
165+
2. Create your feature-branch `git checkout -b your-new-feature-branch`
166+
3. Commit your change `git commit -am 'Add new feature'`
167+
4. Push to the branch `git push origin your-new-feature-branch`
168+
5. Create new Pull Request with develop branch
169+
160170
## License
161171
162172
The MIT License (MIT)
@@ -179,3 +189,12 @@ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
179189
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
180190
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
181191
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
192+
193+
[bower-url]: http://bower.io/
194+
[cdnjs-url]: https://cdnjs.com/libraries/semantic-ui
195+
[react-semantify-url]: https://github.com/jessy1092/react-semantify/releases
196+
197+
[david-dm-image]: https://david-dm.org/jessy1092/react-semantify.svg?style=flat-square
198+
[david-dm-url]: https://david-dm.org/jessy1092/react-semantify
199+
[david-dm-dev-image]: https://david-dm.org/jessy1092/react-semantify/dev-status.svg?style=flat-square
200+
[david-dm-dev-url]: https://david-dm.org/jessy1092/react-semantify#info=devDependencies

RELEASE-NOTES.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
Release Notes
22
=============
33

4+
## Version 0.0.4 - 2014/12/12
5+
6+
- Support react-semantify.min.js. You can [download js file](https://github.com/jessy1092/react-semantify/releases/)
7+
- More clearly example on browser in README.
8+
49
## Version 0.0.3 - 2014/12/12
510

611
- Can use with npm install. `npm install react-semantify`

0 commit comments

Comments
 (0)