File tree 3 files changed +11
-11
lines changed
react/components/AutocompleteInput
3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ const UsersAutocomplete = () => {
39
39
? user .toLowerCase ().includes (term .toLowerCase ())
40
40
: user .label .toLowerCase ().includes (term .toLowerCase ())
41
41
),
42
- display : ' small' ,
42
+ size : ' small' ,
43
43
}
44
44
45
45
const input = {
@@ -107,7 +107,7 @@ const UsersAutocomplete = () => {
107
107
onChange : option =>
108
108
option && setLastSearched (uniq ([... lastSearched, option])),
109
109
},
110
- display : ' regular' ,
110
+ size : ' regular' ,
111
111
}
112
112
113
113
const input = {
@@ -226,7 +226,7 @@ const UsersAutocomplete = () => {
226
226
},
227
227
// --- This is what makes the custom option work!
228
228
renderOption : props => < CustomOption {... props} / > ,
229
- display : ' large' ,
229
+ size : ' large' ,
230
230
}
231
231
232
232
const input = {
Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ const propTypes = {
25
25
/** Determine if the input and the button should be disabled */
26
26
disabled : PropTypes . bool ,
27
27
/** Determine the search bar size */
28
- display : PropTypes . string ,
28
+ barSize : PropTypes . string ,
29
29
}
30
30
31
31
const defaultProps = {
32
32
roundedBottom : true ,
33
- display : 'regular' ,
33
+ barSize : 'regular' ,
34
34
}
35
35
36
36
const SearchInput : React . FC < PropTypes . InferProps < typeof propTypes > &
@@ -44,7 +44,7 @@ const SearchInput: React.FC<PropTypes.InferProps<typeof propTypes> &
44
44
onFocus,
45
45
onBlur,
46
46
disabled,
47
- display ,
47
+ barSize ,
48
48
...inputProps
49
49
} = props
50
50
@@ -78,7 +78,7 @@ const SearchInput: React.FC<PropTypes.InferProps<typeof propTypes> &
78
78
79
79
const buttonClasses = classNames (
80
80
activeClass ,
81
- `bg-base br2 br--right w3 bw1 ba pa0 bl-0' h-${ display } ` ,
81
+ `bg-base br2 br--right w3 bw1 ba pa0 bl-0' h-${ barSize } ` ,
82
82
{
83
83
'c-link pointer' : ! disabled ,
84
84
'c-disabled' : disabled ,
@@ -89,7 +89,7 @@ const SearchInput: React.FC<PropTypes.InferProps<typeof propTypes> &
89
89
< div className = "flex flex-row" >
90
90
< div className = "relative w-100" >
91
91
< input
92
- className = { `${ activeClass } w-100 ma0 border-box bw1 br2 ba outline-0 c-on-base t-body ph5 pr8 br--left h-${ display } ` }
92
+ className = { `${ activeClass } w-100 ma0 border-box bw1 br2 ba outline-0 c-on-base t-body ph5 pr8 br--left h-${ barSize } ` }
93
93
value = { value }
94
94
onFocus = { handleFocus }
95
95
onBlur = { handleBlur }
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ const propTypes = {
75
75
* Selects a size of the input bar, could be set to `small`, `regular` or `large`.
76
76
* `regular` is the default value.
77
77
*/
78
- display : PropTypes . string ,
78
+ size : PropTypes . string ,
79
79
} ) . isRequired ,
80
80
}
81
81
@@ -92,7 +92,7 @@ const AutocompleteInput: React.FunctionComponent<PropTypes.InferProps<
92
92
loading,
93
93
lastSearched = { } ,
94
94
icon,
95
- display ,
95
+ size ,
96
96
} ,
97
97
} ) => {
98
98
const [ term , setTerm ] = useState ( value || '' )
@@ -216,7 +216,7 @@ const AutocompleteInput: React.FunctionComponent<PropTypes.InferProps<
216
216
onSearch = { ( ) => onSearch ( term ) }
217
217
onClear = { handleClear }
218
218
onChange = { handleTermChange }
219
- display = { display }
219
+ barSize = { size }
220
220
/>
221
221
{ popoverOpened ? (
222
222
< div className = "relative" >
You can’t perform that action at this time.
0 commit comments