Skip to content

Commit

Permalink
Fix primefaces#3467: Autocomplete dropdownAriaLabel
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Oct 11, 2022
1 parent 6fbadf8 commit c90c688
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion components/lib/autocomplete/AutoComplete.js
Original file line number Diff line number Diff line change
Expand Up @@ -659,14 +659,15 @@ AutoComplete.displayName = 'AutoComplete';
AutoComplete.defaultProps = {
__TYPE: 'AutoComplete',
id: null,
appendTo: null,
appendTo: 'self',
autoFocus: false,
autoHighlight: false,
className: null,
completeMethod: null,
delay: 300,
disabled: false,
dropdown: false,
dropdownAriaLabel: null,
dropdownAutoFocus: true,
dropdownIcon: 'pi pi-chevron-down',
dropdownMode: 'blank',
Expand Down
1 change: 1 addition & 0 deletions components/lib/autocomplete/autocomplete.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ export interface AutoCompleteProps extends Omit<React.DetailedHTMLProps<React.In
delay?: number;
disabled?: boolean;
dropdown?: boolean;
dropdownAriaLabel?: string;
dropdownAutoFocus?: boolean;
dropdownIcon?: IconType<AutoCompleteProps>;
dropdownMode?: string;
Expand Down

0 comments on commit c90c688

Please sign in to comment.