Skip to content

Commit 3ad2659

Browse files
authored
Merge pull request #74 from plotly/dep-updates-20230307
Dep updates 20230307
2 parents 58ed54d + fa9cef0 commit 3ad2659

File tree

6 files changed

+619
-781
lines changed

6 files changed

+619
-781
lines changed

.circleci/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ jobs:
2626
. venv/bin/activate
2727
npm ci
2828
npm run build
29+
- run:
30+
name: Lint
31+
command: |
32+
npm run private::lint.eslint
2933
- run:
3034
name: Run tests
3135
command: |

.eslintrc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"extends": ["eslint:recommended", "prettier"],
3+
"settings": {
4+
"react": {
5+
"version": "detect"
6+
}
7+
},
38
"parser": "@babel/eslint-parser",
49
"parserOptions": {
510
"ecmaVersion": 6,

package-lock.json

Lines changed: 602 additions & 773 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
"dependencies": {
3131
"@material-ui/core": "^4.11.4",
3232
"@material-ui/icons": "^4.11.3",
33-
"ag-grid-community": ">=29.0.0",
34-
"ag-grid-enterprise": ">=29.0.0",
35-
"ag-grid-react": ">=29.0.0",
33+
"ag-grid-community": "^29.1.0",
34+
"ag-grid-enterprise": "^29.1.0",
35+
"ag-grid-react": "^29.1.0",
3636
"d3-format": "^3.1.0",
3737
"d3-array": "^3.2.2",
3838
"d3-time": "^3.1.0",
@@ -45,7 +45,7 @@
4545
"static-eval": "^2.1.0"
4646
},
4747
"devDependencies": {
48-
"@babel/core": "^7.20.12",
48+
"@babel/core": "^7.21.0",
4949
"@babel/eslint-parser": "^7.19.1",
5050
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
5151
"@babel/preset-env": "^7.20.2",
@@ -54,8 +54,8 @@
5454
"babel-loader": "^9.1.2",
5555
"css-loader": "^6.7.3",
5656
"es-check": "^7.1.0",
57-
"eslint": "^8.34.0",
58-
"eslint-config-prettier": "^8.6.0",
57+
"eslint": "^8.35.0",
58+
"eslint-config-prettier": "^8.7.0",
5959
"eslint-plugin-import": "^2.27.5",
6060
"eslint-plugin-react": "^7.32.2",
6161
"npm-run-all": "^4.1.5",

src/lib/fragments/AgGrid.react.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export default class DashAgGrid extends Component {
3737

3838
const customComponents = window.dashAgGridComponentFunctions || {};
3939
const _this = this;
40-
let newComponents = {}
40+
const newComponents = {}
4141
Object.keys(customComponents).forEach(function(key) {
4242
newComponents[key] = _this.generateRenderer(customComponents[key])
4343
})

src/lib/renderers/rowMenuRenderer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ export default function RowMenuRenderer(props) {
5656
}
5757

5858
RowMenuRenderer.propTypes = {
59-
setProps: PropTypes.func,
59+
setData: PropTypes.func,
6060
data: PropTypes.any,
6161
value: PropTypes.any
6262
};

0 commit comments

Comments
 (0)