Skip to content

Commit

Permalink
Release 0.6.28 - New component <Dropdown/> and enhaced in general con…
Browse files Browse the repository at this point in the history
…text.
  • Loading branch information
soyjavi committed Jun 28, 2015
1 parent 24861e5 commit 2584259
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions components/index.coffee
Expand Up @@ -5,6 +5,7 @@ module.exports =
Autocomplete : require "./autocomplete"
Button : require "./button"
Dialog : require "./dialog"
Dropdown : require "./dropdown"
FontIcon : require "./font_icon"
Form : require "./form"
Input : require "./input"
Expand Down
4 changes: 2 additions & 2 deletions example/package.json
@@ -1,6 +1,6 @@
{
"name": "react-toolbox-example",
"version": "0.6.19",
"version": "0.6.28",
"description": "Sample project that uses react-toolbox",
"repository": {
"type": "git",
Expand All @@ -15,7 +15,7 @@
},
"dependencies": {
"coffee-script": "*",
"react-toolbox": "^0.6.19",
"react-toolbox": "^0.6.28",
"react": ">=0.13"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion example/src/app.cjsx
Expand Up @@ -22,7 +22,7 @@ App = React.createClass
]

render: ->
<app>
<app data-toolbox={true}>
<h1>Hello React-Toolbox</h1>
<Form attributes={@state.fields} />
<Button caption="Hello world!" type="square" style="primary"/>
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name" : "react-toolbox",
"version" : "0.6.20",
"version" : "0.6.28",
"description" : "A set of complementary tools to ReactJS.",
"homepage" : "http://zetapath.com",
"author" : "Javi Jimenez Villar <hi@soyjavi.com> (http://soyjavi.com/)",
Expand Down
4 changes: 2 additions & 2 deletions spec/index.cjsx
Expand Up @@ -21,7 +21,7 @@ Test = React.createClass

# -- Render
render: ->
<test>
<app data-toolbox={true}>
<h1>React-Kit <small>New way for create</small></h1>

<Form />
Expand All @@ -30,6 +30,6 @@ Test = React.createClass
<Button />
<Dialog />
<Dropdown />
</test>
</app>

React.render <Test/>, document.body

0 comments on commit 2584259

Please sign in to comment.