Skip to content

Commit

Permalink
v6.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
siezerp committed Jan 18, 2022
1 parent 583375f commit de58bb5
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 108 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 6.1.0 (2022-01-18)

- [#294](https://github.com/spotify/reactochart/pull/294) Accessible Interface for Line/Area Charts

## 6.0.0 (2021-09-10)

- [#307](https://github.com/spotify/reactochart/pull/307) Enable support for d3 7, and still support 6
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

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

This file was deleted.

1 change: 0 additions & 1 deletion docs/build/bundle.d017589e49b4f7214f9e.js.map

This file was deleted.

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.a04c31d0b84a015b2fc5.js"></script></body>
<script type="text/javascript" src="bundle.45bf33ea983f8c1721bc.js"></script></body>
</html>
4 changes: 2 additions & 2 deletions docs/src/docs/AriaLabelContainer/propDocs.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@
"name": "func"
},
"required": true,
"description": "A function that takes the xValue at the start of the frame,\nand returns a string to render as an aria label\nfor the specific frame in the Interface.\n\n(xValue) => string"
"description": "A function that takes the xValue at the start of the frame, an array of datapoints at that xValue, and the index of the frame,\nand returns a string to render as an aria label\nfor the specific frame in the Interface.\n\n(xValue, [datapoints], frameIndex) => string"
},
"onKeyDown": {
"type": {
"name": "func"
},
"required": false,
"description": "an optional `onKeyDown` event handler to provide for each frame\nwhen selected.\nBest practices are to describe how the user will interact with the chart in\nthe ariaLabelGenerator\n\n(event, xValue) => void"
"description": "an optional `onKeyDown` event handler to provide for each frame\nwhen selected.\nBest practices are to describe how the user will interact with the chart in\nthe ariaLabelGenerator\n\n(event, xValue, [datapoints]) => void"
},
"height": {
"type": {
Expand Down

0 comments on commit de58bb5

Please sign in to comment.