Skip to content
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.

Commit

Permalink
updates dependencies and fixes build
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommy Leunen committed Jan 13, 2016
1 parent d6a75a0 commit 8fbe8b6
Show file tree
Hide file tree
Showing 16 changed files with 43 additions and 43 deletions.
50 changes: 25 additions & 25 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,43 +42,43 @@
"license": "MIT",
"dependencies": {
"clamp": "^1.0.1",
"classnames": "^2.2.1"
"classnames": "^2.2.3"
},
"devDependencies": {
"babel-cli": "^6.2.4",
"babel-core": "^6.2.4",
"babel-eslint": "^4.1.5",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.2.4",
"babel-preset-react": "^6.2.4",
"babel-preset-stage-0": "^6.2.4",
"coveralls": "^2.11.4",
"eslint": "^1.10.2",
"eslint-config-airbnb": "^3.0.0",
"eslint-plugin-react": "^3.11.2",
"expect": "^1.13.0",
"history": "~1.17.0",
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-loader": "^6.2.1",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"coveralls": "^2.11.6",
"eslint": "^1.10.3",
"eslint-config-airbnb": "^3.1.0",
"eslint-plugin-react": "^3.15.0",
"expect": "^1.13.4",
"history": "^1.17.0",
"html-loader": "^0.3.0",
"isparta": "^4.0.0",
"isparta-instrumenter-loader": "^1.0.0",
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.1",
"karma-cli": "^0.1.1",
"karma-chrome-launcher": "^0.2.2",
"karma-cli": "^0.1.2",
"karma-coverage": "^0.5.3",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.3",
"karma-mocha-reporter": "^1.1.5",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"marked": "^0.3.5",
"marked-renderer-mdl": "^0.0.3",
"mocha": "^2.3.3",
"marked-renderer-mdl": "0.0.3",
"mocha": "^2.3.4",
"prismjs": "^1.3.0",
"react": "^0.14.0",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.0",
"react-router": "~1.0.3",
"webpack": "^1.12.2",
"webpack-dev-server": "^1.12.0"
"react": "^0.14.6",
"react-addons-test-utils": "^0.14.6",
"react-dom": "^0.14.6",
"react-router": "^1.0.3",
"webpack": "^1.12.11",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"react": "0.14.x",
Expand Down
2 changes: 1 addition & 1 deletion src/Button.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Button extends React.Component {
primary: PropTypes.bool,
raised: PropTypes.bool,
ripple: PropTypes.bool
}
};

render() {
const { accent, className, colored,
Expand Down
2 changes: 1 addition & 1 deletion src/Card/CardTitle.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class CardTitle extends React.Component {
static propTypes = {
className: PropTypes.string,
expand: PropTypes.bool
}
};

render() {
const { className, children, expand, ...otherProps } = this.props;
Expand Down
2 changes: 1 addition & 1 deletion src/Checkbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Checkbox extends React.Component {
label: PropTypes.string,
onChange: PropTypes.func,
ripple: PropTypes.bool
}
};

componentDidUpdate(prevProps) {
if(this.props.disabled !== prevProps.disabled) {
Expand Down
2 changes: 1 addition & 1 deletion src/DataTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class DataTable extends React.Component {
PropTypes.object
).isRequired,
selectable: PropTypes.bool
}
};

_getCellClass(column) {
return !column.numeric ? 'mdl-data-table__cell--non-numeric' : '';
Expand Down
2 changes: 1 addition & 1 deletion src/IconToggle.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class IconToggle extends React.Component {
name: PropTypes.string.isRequired,
onChange: PropTypes.func,
ripple: PropTypes.bool
}
};

componentDidUpdate(prevProps) {
if(this.props.disabled !== prevProps.disabled) {
Expand Down
2 changes: 1 addition & 1 deletion src/Layout/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ class Layout extends React.Component {
fixedDrawer: PropTypes.bool,
fixedHeader: PropTypes.bool,
fixedTabs: PropTypes.bool
}
};

render() {
const { className, fixedDrawer, fixedHeader, fixedTabs, ...otherProps } = this.props;
Expand Down
4 changes: 2 additions & 2 deletions src/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ class Menu extends React.Component {
ripple: PropTypes.bool,
target: PropTypes.string.isRequired,
valign: PropTypes.oneOf(['bottom', 'top'])
}
};

static defaultProps = {
align: 'left',
valign: 'bottom'
}
};

render() {
const { align, children, className, ripple,
Expand Down
2 changes: 1 addition & 1 deletion src/ProgressBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class ProgressBar extends React.Component {
className: PropTypes.string,
indeterminate: PropTypes.bool,
progress: PropTypes.number
}
};

componentDidMount() {
this._setProgress(this.props.progress);
Expand Down
2 changes: 1 addition & 1 deletion src/Slider.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Slider extends React.Component {
min: PropTypes.number,
onChange: PropTypes.func,
value: PropTypes.number
}
};

render() {
const { className, ...otherProps } = this.props;
Expand Down
2 changes: 1 addition & 1 deletion src/Spinner.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Spinner extends React.Component {
static propTypes = {
className: PropTypes.string,
singleColor: PropTypes.bool
}
};

render() {
const { className, singleColor, ...otherProps } = this.props;
Expand Down
2 changes: 1 addition & 1 deletion src/Switch.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class Switch extends React.Component {
disabled: PropTypes.bool,
onChange: PropTypes.func,
ripple: PropTypes.bool
}
};

componentDidUpdate(prevProps) {
if(this.props.disabled !== prevProps.disabled) {
Expand Down
4 changes: 2 additions & 2 deletions src/Tabs/Tab.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ class Tab extends React.Component {
onTabClick: PropTypes.func,
style: PropTypes.object,
tabId: PropTypes.number
}
};

static defaultProps = {
style: {}
}
};

constructor(props) {
super(props);
Expand Down
4 changes: 2 additions & 2 deletions src/Tabs/TabBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ class TabBar extends React.Component {
className: PropTypes.string,
cssPrefix: PropTypes.string.isRequired,
onChange: PropTypes.func,
}
};

static defaultProps = {
activeTab: 0
}
};

constructor(props) {
super(props);
Expand Down
2 changes: 1 addition & 1 deletion src/Tabs/Tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Tabs extends React.Component {
onChange: PropTypes.func,
ripple: PropTypes.bool,
tabBarProps: PropTypes.object,
}
};

render() {
const { activeTab, className, onChange, ripple,
Expand Down
2 changes: 1 addition & 1 deletion src/Textfield.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class Textfield extends React.Component {
PropTypes.string,
PropTypes.number
])
}
};

componentDidUpdate(prevProps) {
if(
Expand Down

0 comments on commit 8fbe8b6

Please sign in to comment.