Skip to content

Commit

Permalink
Fix #6145: AutoComplete change event typedef
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware committed Mar 13, 2024
1 parent 2d66a30 commit d31aad9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/lib/autocomplete/autocomplete.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ export interface AutoCompleteContext {
* Defines valid properties in AutoComplete component. In addition to these, all properties of HTMLSpanElement can be used in this component.
* @group Properties
*/
export interface AutoCompleteProps extends Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, 'onChange' | 'onSelect' | 'ref'> {
export interface AutoCompleteProps extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, 'onChange' | 'onSelect' | 'ref'> {
/**
* Unique identifier of the element.
*/
Expand Down

0 comments on commit d31aad9

Please sign in to comment.