Skip to content

Commit

Permalink
v0.0.7
Browse files Browse the repository at this point in the history
- Update package.json, RELEASE-NOTES.md, README.md.

Signed-off-by: Lee <jessy1092@gmail.com>
  • Loading branch information
jessy1092 committed Dec 19, 2014
1 parent c5a8017 commit 0d05914
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ bower install semantic-ui
+ [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)
+ Accordin - Pre-release
+ Accordion - Pre-release
+ Checkbox - Pre-release
+ Dimmer - Pre-release
+ Dropdown - Pre-release
Expand Down Expand Up @@ -173,7 +173,7 @@ Wait Semantic-UI Release.
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
13 changes: 13 additions & 0 deletions docs/Modules.md
Original file line number Diff line number Diff line change
@@ -1,3 +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>
```
4 changes: 2 additions & 2 deletions dst/react-semantify.js
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,7 @@ module.exports = function (React) {

var defaultClassName = 'ui accordion';

var Accordin = React.createClass({displayName: 'Accordin',
var Accordion = React.createClass({displayName: 'Accordion',

mixins: [ClassGenerator],

Expand All @@ -1049,7 +1049,7 @@ module.exports = function (React) {
}
});

return Accordin;
return Accordion;
}

},{"../mixins/classGenerator.js":31}],35:[function(require,module,exports){
Expand Down
2 changes: 1 addition & 1 deletion dst/react-semantify.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name" : "react-semantify",
"description": "Integrate Semantic-ui with react components.",
"version" : "0.0.6",
"version" : "0.0.7",
"keywords": [
"react",
"semantic-ui",
Expand Down
4 changes: 2 additions & 2 deletions src/modules/accordion.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = function (React) {

var defaultClassName = 'ui accordion';

var Accordin = React.createClass({
var Accordion = React.createClass({

mixins: [ClassGenerator],

Expand All @@ -21,5 +21,5 @@ module.exports = function (React) {
}
});

return Accordin;
return Accordion;
}

0 comments on commit 0d05914

Please sign in to comment.