We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 817ba0e commit 2bac1cdCopy full SHA for 2bac1cd
CHANGELOG.md
@@ -4,8 +4,14 @@
4
5
### Breaking Changes
6
7
+#### Styling
8
+
9
* The `iconsClass` property now defaults to `"fa5"` for Font Awesome 5/6 instead of Font Awesome 4
10
11
+#### Accessibility
12
13
* Hide the pseudo-checkbox from the accessibility tree
14
+* Change the clickable label from `role="link"` to `role="button"`
15
16
## [v1.8.0](https://github.com/jakezatecky/react-checkbox-tree/compare/v1.7.3...v1.8.0) (2022-09-06)
17
src/js/TreeNode.js
@@ -257,7 +257,7 @@ class TreeNode extends React.PureComponent {
257
<span
258
key={1}
259
className="rct-node-clickable"
260
- role="link"
+ role="button"
261
tabIndex={0}
262
onClick={this.onClick}
263
onKeyPress={this.onClick}
0 commit comments