Skip to content

Commit

Permalink
Release 0.6.20
Browse files Browse the repository at this point in the history
  • Loading branch information
soyjavi committed Jun 20, 2015
1 parent c176289 commit 2c33719
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 37 deletions.
1 change: 0 additions & 1 deletion components/style/__constants.styl
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

// -- Colors
COLOR = #222222
BACKGROUND = #f5f5f5
Expand Down
6 changes: 4 additions & 2 deletions example/src/app.cjsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
"use strict"

Toolbox = require 'react-toolbox'
Button = Toolbox.Button
# Toolbox = require 'react-toolbox'
# Button = Toolbox.Button
Button = require 'react-toolbox/components/button'
Form = require 'react-toolbox/components/form'

App = React.createClass
Expand All @@ -21,6 +22,7 @@ App = React.createClass
<h1>Hello React-Toolbox</h1>
<Form attributes={@state.fields} />
<Button caption="Hello world!" type="square" style="primary"/>
<Button icon="adb" type="circle" style="secondary" />
</app>

React.render <App/>, document.body
66 changes: 32 additions & 34 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,38 @@
{
"name": "react-toolbox",
"version": "0.6.19",
"description": "A set of complementary tools to ReactJS.",
"homepage": "http://zetapath.com",
"author": "Javi Jiménez Villar - @soyjavi",
"main": "./components",
"scripts": {
"start": "npm run build & npm run server",
"server": "webpack-dev-server --hot",
"build": "webpack",
"watch": "webpack --watch",
"deploy": "NODE_ENV=production webpack -p"
"name" : "react-toolbox",
"version" : "0.6.20",
"description" : "A set of complementary tools to ReactJS.",
"homepage" : "http://zetapath.com",
"author" : "Javi Jimenez Villar <hi@soyjavi.com> (http://soyjavi.com/)",
"main" : "./components",
"directories" : {
"react-toolbox" : "./react-toolbox/components"
},
"bugs": {
"url": "https://github.com/callemall/material-ui/issues"
"scripts" : {
"start" : "npm run build & npm run server",
"server" : "webpack-dev-server --hot",
"build" : "webpack",
"watch" : "webpack --watch",
"deploy" : "NODE_ENV=production webpack -p"
},
"keywords": [
"react",
"react-component",
"material design",
"toolkit",
"components",
"tools"
],
"license": "MIT",
"dependencies": {
"coffee-script": "*",
"react": "^0.13.2"
"bugs" : {
"url" : "https://github.com/soyjavi/react-toolbox/issues",
"email" : "issues@react-toolbox.com"
},
"keywords" : [ "react", "react-component", "material design", "toolkit", "components"],
"license" : "MIT",
"dependencies" : {
"coffee-script" : "*",
"react" : "^0.13.2"
},
"devDependencies": {
"coffee-jsx-loader": "^0.1.2",
"css-loader": "^0.14.5",
"extract-text-webpack-plugin": "^0.8.1",
"node-libs-browser": "^0.5.2",
"style-loader": "^0.12.3",
"stylus-loader": "^1.2.0",
"webpack": "^1.9.10"
}
"coffee-jsx-loader" : "^0.1.2",
"css-loader" : "^0.14.5",
"extract-text-webpack-plugin" : "^0.8.1",
"node-libs-browser" : "^0.5.2",
"style-loader" : "^0.12.3",
"stylus-loader" : "^1.2.0",
"webpack" : "^1.9.10"
},
"repository" : "github:soyjavi/react-toolbox"
}

0 comments on commit 2c33719

Please sign in to comment.