File tree 2 files changed +24
-2
lines changed
2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ class SplitButton extends React.Component {
14
14
onClick,
15
15
target,
16
16
href,
17
+ toggleLabel,
17
18
bsSize,
18
19
bsStyle,
19
20
...props } = this . props ;
@@ -37,7 +38,7 @@ class SplitButton extends React.Component {
37
38
{ title }
38
39
</ Button >
39
40
< SplitToggle
40
- aria-label = { title }
41
+ aria-label = { toggleLabel || title }
41
42
bsStyle = { bsStyle }
42
43
bsSize = { bsSize }
43
44
disabled = { disabled }
@@ -63,7 +64,11 @@ SplitButton.propTypes = {
63
64
/**
64
65
* The content of the split button.
65
66
*/
66
- title : React . PropTypes . node . isRequired
67
+ title : React . PropTypes . node . isRequired ,
68
+ /**
69
+ * Accessible label for the toggle; the value of `title` if not specified.
70
+ */
71
+ toggleLabel : React . PropTypes . string
67
72
} ;
68
73
69
74
SplitButton . defaultProps = {
Original file line number Diff line number Diff line change @@ -101,4 +101,21 @@ describe('SplitButton', () => {
101
101
assert . equal ( linkElement . target , '_blank' ) ;
102
102
} ) ;
103
103
104
+ it ( 'should set aria-label on toggle from title' , ( ) => {
105
+ const instance = ReactTestUtils . renderIntoDocument ( simple ) ;
106
+
107
+ const toggleNode = ReactTestUtils . findRenderedDOMComponentWithClass ( instance , 'dropdown-toggle' ) ;
108
+ expect ( toggleNode . getAttribute ( 'aria-label' ) ) . to . equal ( 'Title' ) ;
109
+ } ) ;
110
+
111
+ it ( 'should set aria-label on toggle from toggleLabel' , ( ) => {
112
+ const instance = ReactTestUtils . renderIntoDocument (
113
+ < SplitButton title = 'Title' id = 'test-id' toggleLabel = 'Label' >
114
+ < MenuItem > Item 1</ MenuItem >
115
+ </ SplitButton >
116
+ ) ;
117
+
118
+ const toggleNode = ReactTestUtils . findRenderedDOMComponentWithClass ( instance , 'dropdown-toggle' ) ;
119
+ expect ( toggleNode . getAttribute ( 'aria-label' ) ) . to . equal ( 'Label' ) ;
120
+ } ) ;
104
121
} ) ;
You can’t perform that action at this time.
0 commit comments