File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed
packages/ui/src/fields/Select Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ export type SelectInputProps = {
30
30
readonly localized ?: boolean
31
31
readonly name : string
32
32
readonly onChange ?: ReactSelectAdapterProps [ 'onChange' ]
33
+ readonly onInputChange ?: ReactSelectAdapterProps [ 'onInputChange' ]
33
34
readonly options ?: OptionObject [ ]
34
35
readonly path : string
35
36
readonly readOnly ?: boolean
@@ -54,6 +55,7 @@ export const SelectInput: React.FC<SelectInputProps> = (props) => {
54
55
Label,
55
56
localized,
56
57
onChange,
58
+ onInputChange,
57
59
options,
58
60
path,
59
61
readOnly,
@@ -115,6 +117,7 @@ export const SelectInput: React.FC<SelectInputProps> = (props) => {
115
117
isMulti = { hasMany }
116
118
isSortable = { isSortable }
117
119
onChange = { onChange }
120
+ onInputChange = { onInputChange }
118
121
options = { options . map ( ( option ) => ( {
119
122
...option ,
120
123
label : getTranslation ( option . label , i18n ) ,
You can’t perform that action at this time.
0 commit comments