Skip to content

Commit

Permalink
Gh pages v3.2.1 (#272)
Browse files Browse the repository at this point in the history
* add CODEOWNERS file (#262)

* Bump elliptic from 6.5.2 to 6.5.3 (#266)

Bumps [elliptic](https://github.com/indutny/elliptic) from 6.5.2 to 6.5.3.
- [Release notes](https://github.com/indutny/elliptic/releases)
- [Commits](indutny/elliptic@v6.5.2...v6.5.3)

Signed-off-by: dependabot[bot] <[email protected]>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* bar chart gradient example in docs (#268)

Co-authored-by: Isaac Ezer <[email protected]>

* Sankey sorting (#269)

* remove deprecated refs definition

This old usage of defining refs via a string is deprecated and seems to break when debugging reactochart using `npm link` locally.

* add Sankey Sorting Function hooks

Co-authored-by: Isaac Ezer <[email protected]>

* 3.2.0

* v3.2.0 release

* Fix YAxisLabels formatting example (#271)

The current example did not demonstrate label color/weight change, since the final label (`label.text`) never was `20.00`.

* 3.2.1

* 3.2.1 release

Co-authored-by: Anita <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Isaac Ezer <[email protected]>
Co-authored-by: Marko Bonaći <[email protected]>
  • Loading branch information
5 people authored Dec 4, 2020
1 parent b9d1408 commit ed54025
Show file tree
Hide file tree
Showing 9 changed files with 113 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.2.1 (2020-12-04)

- [#271](https://github.com/spotify/reactochart/pull/271) Fix YAxisLabels formatting example. (Thanks @mbonaci)

## 3.2.0 (2020-10-30)

- [#269](https://github.com/spotify/reactochart/pull/269) add nodeSort and linkSort hooks to SankeyDiagram. Remove deprecated refs definition using strings
Expand Down
10 changes: 9 additions & 1 deletion docs/build/bundle.4f42f8f628f6bbc949ac.js

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion docs/build/bundle.4f42f8f628f6bbc949ac.js.map

Large diffs are not rendered by default.

90 changes: 90 additions & 0 deletions docs/build/bundle.d280ec63e4e115eb8d08.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/build/bundle.d280ec63e4e115eb8d08.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.4f42f8f628f6bbc949ac.js"></script></body>
<script type="text/javascript" src="bundle.d280ec63e4e115eb8d08.js"></script></body>
</html>
2 changes: 1 addition & 1 deletion docs/src/docs/YAxisLabels/examples/YAxisLabels.js.example
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const YAxisLabelsExample = (props) => {
position="right"
tickCount={5}
labelStyle={(label) => {
const is20 = label.text === "20.00"
const is20 = Math.abs(label.value) === 20;
return {
fill: is20 ? "green" : "black",
fontWeight: is20 ? 900 : 400
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"Erica Hyman <[email protected]>",
"Isaac Ezer <[email protected]>"
],
"version": "3.2.0",
"version": "3.2.1",
"main": "index.js",
"files": [
"*.js",
Expand Down

0 comments on commit ed54025

Please sign in to comment.