File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
packages/pluggableWidgets/combobox-web Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 339
339
</property >
340
340
</propertyGroup >
341
341
<propertyGroup caption =" Aria labels" >
342
+ <property key =" ariaLabel" type =" textTemplate" required =" false" >
343
+ <caption >Aria label</caption >
344
+ <description >Used to describe the combo box.</description >
345
+ <translations >
346
+ <translation lang =" en_US" >Combo box</translation >
347
+ <translation lang =" nl_NL" >Keuzelijst</translation >
348
+ </translations >
349
+ </property >
342
350
<property key =" clearButtonAriaLabel" type =" textTemplate" required =" false" >
343
351
<caption >Clear selection button</caption >
344
352
<description >Used to clear all selected values.</description >
Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ export interface ComboboxContainerProps {
90
90
onEnterEvent ?: ActionValue ;
91
91
onLeaveEvent ?: ActionValue ;
92
92
ariaRequired : DynamicValue < boolean > ;
93
+ ariaLabel ?: DynamicValue < string > ;
93
94
clearButtonAriaLabel ?: DynamicValue < string > ;
94
95
removeValueAriaLabel ?: DynamicValue < string > ;
95
96
a11ySelectedValue ?: DynamicValue < string > ;
@@ -145,6 +146,7 @@ export interface ComboboxPreviewProps {
145
146
onEnterEvent : { } | null ;
146
147
onLeaveEvent : { } | null ;
147
148
ariaRequired : string ;
149
+ ariaLabel : string ;
148
150
clearButtonAriaLabel : string ;
149
151
removeValueAriaLabel : string ;
150
152
a11ySelectedValue : string ;
You can’t perform that action at this time.
0 commit comments