Skip to content

Commit

Permalink
fix(select): omit getRawInputElement (#31566)
Browse files Browse the repository at this point in the history
  • Loading branch information
aoilti authored Aug 2, 2021
1 parent 38e9d30 commit 416482b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion components/select/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,10 @@ export interface InternalSelectProps<VT> extends Omit<RcSelectProps<VT>, 'mode'>
}

export interface SelectProps<VT>
extends Omit<InternalSelectProps<VT>, 'inputIcon' | 'mode' | 'getInputElement' | 'backfill'> {
extends Omit<
InternalSelectProps<VT>,
'inputIcon' | 'mode' | 'getInputElement' | 'getRawInputElement' | 'backfill'
> {
mode?: 'multiple' | 'tags';
}

Expand Down

0 comments on commit 416482b

Please sign in to comment.