Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5904f47d55 | ||
|
|
25b416b71d | ||
|
|
abb7828921 | ||
|
|
ad5fd2d1ce |
15
package.json
15
package.json
@@ -1,12 +1,14 @@
|
||||
{
|
||||
"name": "ag-grid-react-example",
|
||||
"version": "7.2.0",
|
||||
"version": "8.0.0",
|
||||
"description": "Example Reach applicaiton using ag-Grid.",
|
||||
"main": "dist/ag-grid-react-example.js",
|
||||
"scripts": {
|
||||
"standard": "webpack-dev-server --config webpack.config.standard.js --progress --colors --hot --inline",
|
||||
"grouped": "webpack-dev-server --config webpack.config.grouped.js --progress --colors --hot --inline",
|
||||
"large": "webpack-dev-server --config webpack.config.large.js --progress --colors --hot --inline"
|
||||
"large": "webpack-dev-server --config webpack.config.large.js --progress --colors --hot --inline",
|
||||
"clean": "rimraf dist",
|
||||
"build-standard": "npm run clean && webpack --config webpack.config.standard.js --progress --profile --bail"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
@@ -35,10 +37,13 @@
|
||||
"webpack-dev-server": "^1.14.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"rimraf": "2.5.x",
|
||||
"react": "0.14.6",
|
||||
"react-dom": "0.14.6",
|
||||
"ag-grid": "7.2.x",
|
||||
"ag-grid-enterprise": "7.2.x",
|
||||
"ag-grid-react": "7.2.x"
|
||||
"ag-grid": "8.0.x",
|
||||
"ag-grid-enterprise": "8.0.x",
|
||||
"ag-grid-react": "8.0.x"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -30,7 +30,7 @@ export default class MyReactHeaderComponent extends React.Component {
|
||||
|
||||
|
||||
let menuButton = null;
|
||||
if (this.props.enableSorting){
|
||||
if (this.props.enableMenu){
|
||||
menuButton = <div ref="menuButton" className="customHeaderMenuButton" onClick={this.onMenuClick.bind(this)}><i className={"fa " + this.props.menuIcon}/></div>
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user