@@ -10,19 +10,32 @@ const dropdownItems = [
1010 {
1111 text : 'enabled category' ,
1212 items : [
13- { id : 'c1long1' , text : 'VeryLongOptionTextValueHereToTestTheCaseWithThisDropdown' } ,
14- { id : 'c1_disabled_item' , text : 'disabled item' , disabled : true } ,
13+ {
14+ id : 'c1long1' ,
15+ text : 'VeryLongOptionTextValueHereToTestTheCaseWithThisDropdown' ,
16+ secondaryText : 'Very long option' ,
17+ } ,
18+ { id : 'c1_disabled_item' , text : 'disabled item' , disabled : true , secondaryText : 'Disabled option' } ,
1519 { id : 'c1_enabled_item' , text : 'option2' } ,
16- { id : 'c1long2' , text : 'VeryLongOptionTextValueHereToTestTheCaseWithThisDropdown' , disabled : true } ,
17- { id : 'c1i3' , text : 'option3' } ,
18- { id : 'c1i4' , text : 'option4' } ,
20+ {
21+ id : 'c1long2' ,
22+ text : 'VeryLongOptionTextValueHereToTestTheCaseWithThisDropdown' ,
23+ disabled : true ,
24+ secondaryText : 'Very long option' ,
25+ } ,
26+ { id : 'c1i3' , text : 'option3' , secondaryText : 'option 3' } ,
27+ { id : 'c1i4' , text : 'option4' , secondaryText : 'option 4' } ,
1928 ] ,
2029 } ,
2130 {
2231 text : 'disabled category' ,
2332 disabled : true ,
2433 items : [
25- { id : 'dci1' , text : 'VeryLongOptionTextValueHereToTestTheCaseWithThisDropdown' } ,
34+ {
35+ id : 'dci1' ,
36+ text : 'VeryLongOptionTextValueHereToTestTheCaseWithThisDropdown' ,
37+ secondaryText : 'Very long option' ,
38+ } ,
2639 { id : 'item_in_disabled_category' , text : 'option4' } ,
2740 { id : 'dci5' , text : 'option5' } ,
2841 ] ,
@@ -35,11 +48,13 @@ const dropdownItems = [
3548 id : 'individual_disabled_item' ,
3649 text : 'VeryLongOptionTextValueHereToTestTheCaseWithThisDropdown' ,
3750 disabled : true ,
51+ labelTag : 'Disabled' ,
3852 } ,
3953 {
4054 id : 'plain_href' ,
4155 text : 'option6' ,
4256 href : '#' ,
57+ labelTag : 'Link' ,
4358 } ,
4459 {
4560 id : 'plain_href_prevented' ,
0 commit comments