Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit beaf82b

Browse files
authored
Merge pull request #2 from plotly/master
merge upstream
2 parents 9555141 + bdb2232 commit beaf82b

File tree

7 files changed

+81
-6
lines changed

7 files changed

+81
-6
lines changed

.eslintignore

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
build/
2+
dist/
3+
lib/
4+
lib/bundle.js*
5+
coverage/
6+
node_modules/
7+
.npm
8+
vv/
9+
venv/
10+
*.pyc
11+
*.egg-info
12+
*.log
13+
.idea/
14+
.DS_Store
15+
dash_core_components/
16+
config/

.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ dist/
33
lib/
44
lib/bundle.js*
55
coverage/
6-
dash_core_components/bundle.js*
76
node_modules/
87
.npm
98
vv/
@@ -13,5 +12,3 @@ venv/
1312
*.log
1413
.idea/
1514
.DS_Store
16-
17-
bundle.js

dash_core_components/bundle.js

+61
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_core_components/bundle.js.map

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_core_components/metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@
12531253
"required": false,
12541254
"description": "Function that updates the state tree."
12551255
},
1256-
"dashFireEvent": {
1256+
"fireEvent": {
12571257
"type": {
12581258
"name": "func"
12591259
},

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"publish-all": "npm publish && python setup.py sdist upload",
1717
"publish-pypi": "npm run prepublish && python setup.py sdist && twine upload --sign --skip-existing",
1818
"start": "./node_modules/.bin/builder run build-dev",
19-
"test": "./node_modules/.bin/eslint --fix --ignore-path .gitignore --ext *.js src",
19+
"test": "./node_modules/.bin/eslint --fix .",
2020
"test-watch": "./node_modules/.bin/builder run test-frontend-watch",
2121
"test-debug": "./node_modules/.bin/builder run test-frontend-debug",
2222
"uninstall-local": "pip uninstall dash-core-components -y"

src/components/Graph.react.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ PlotlyGraph.propTypes = {
473473
/**
474474
* Function that fires events
475475
*/
476-
dashFireEvent: PropTypes.func
476+
fireEvent: PropTypes.func
477477
}
478478

479479
PlotlyGraph.defaultProps = {

0 commit comments

Comments
 (0)