Skip to content

Commit

Permalink
Update docs (#190)
Browse files Browse the repository at this point in the history
* Changelog casing fix

* decorate events and remove original decorations (#182)

* Fix warnings in tests and add SankeyNodeTerminal tests (#184)

* Update event handler test on XYPlot

* Fix Bar warnings in tests

* Fix XLine warnings in tests

* Fix AreaBarChart warnings

* Update SankeyDiagram tests

* Bump mixin-deep from 1.3.1 to 1.3.2 (#186)

Bumps [mixin-deep](https://github.com/jonschlinkert/mixin-deep) from 1.3.1 to 1.3.2.
- [Release notes](https://github.com/jonschlinkert/mixin-deep/releases)
- [Commits](jonschlinkert/mixin-deep@1.3.1...1.3.2)

Signed-off-by: dependabot[bot] <support@github.com>

* Bump eslint-utils from 1.4.0 to 1.4.3 (#185)

Bumps [eslint-utils](https://github.com/mysticatea/eslint-utils) from 1.4.0 to 1.4.3.
- [Release notes](https://github.com/mysticatea/eslint-utils/releases)
- [Commits](mysticatea/eslint-utils@v1.4.0...v1.4.3)

Signed-off-by: dependabot[bot] <support@github.com>

* 2.0.2 release (#188)

* 2.0.2 release

* Update package-lock

* 2.0.2

* Update docs
  • Loading branch information
acmei authored and krissalvador27 committed Nov 5, 2019
1 parent 5868241 commit 4a9ff49
Show file tree
Hide file tree
Showing 15 changed files with 345 additions and 246 deletions.
6 changes: 4 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@
"extends": [
"@spotify/eslint-config-react",
"@spotify/eslint-config-base",
"prettier"
"prettier",
"plugin:chai-friendly/recommended"
],
"plugins": ["jest"],
"env": { "jest": true },
"plugins": ["jest", "chai-friendly"],
"rules": {
"consistent-return": "off",
"no-nested-ternary": "off",
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
## 2.0.2 (2019-11-04)

- [#182](https://github.com/spotify/reactochart/pull/182) Decorate XYPlot onMouseEnter and onMouseLeave events - thanks @tanayv!
- [#184](https://github.com/spotify/reactochart/pull/184) Fix warnings in tests and add SankeyNodeTerminal tests

## 2.0.1 (2019-09-03)

- [#179](https://github.com/spotify/reactochart/pull/179) Fix children proptype for YAXisTitle
- [#179](https://github.com/spotify/reactochart/pull/179) Fix children proptype for YAxisTitle

## 2.0.0 (2019-08-30)

Expand Down
83 changes: 83 additions & 0 deletions docs/build/bundle.eab136a1e6c19964cece.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/build/bundle.eab136a1e6c19964cece.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/build/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
</div>

<div class="container-fluid" id="container">Loading...</div>
<script type="text/javascript" src="bundle.d9fae17d8a3d429e65f0.js"></script></body>
<script type="text/javascript" src="bundle.eab136a1e6c19964cece.js"></script></body>
</html>
24 changes: 0 additions & 24 deletions docs/src/docs/XYPlot/propDocs.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,30 +16,6 @@
}
],
"returns": null
},
{
"name": "onMouseEnter",
"docblock": null,
"modifiers": [],
"params": [
{
"name": "event",
"type": null
}
],
"returns": null
},
{
"name": "onMouseLeave",
"docblock": null,
"modifiers": [],
"params": [
{
"name": "event",
"type": null
}
],
"returns": null
}
],
"props": {
Expand Down
Loading

0 comments on commit 4a9ff49

Please sign in to comment.