Skip to content

Commit 93ac131

Browse files
author
=
committed
Change prop name
1 parent e8923a2 commit 93ac131

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

react/components/AutocompleteInput/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const UsersAutocomplete = () => {
3939
? user.toLowerCase().includes(term.toLowerCase())
4040
: user.label.toLowerCase().includes(term.toLowerCase())
4141
),
42-
display: 'small',
42+
size: 'small',
4343
}
4444

4545
const input = {
@@ -107,7 +107,7 @@ const UsersAutocomplete = () => {
107107
onChange: option =>
108108
option && setLastSearched(uniq([...lastSearched, option])),
109109
},
110-
display: 'regular',
110+
size: 'regular',
111111
}
112112

113113
const input = {
@@ -226,7 +226,7 @@ const UsersAutocomplete = () => {
226226
},
227227
// --- This is what makes the custom option work!
228228
renderOption: props => <CustomOption {...props} />,
229-
display: 'large',
229+
size: 'large',
230230
}
231231

232232
const input = {

react/components/AutocompleteInput/SearchInput/index.tsx

+5-5
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ const propTypes = {
2525
/** Determine if the input and the button should be disabled */
2626
disabled: PropTypes.bool,
2727
/** Determine the search bar size */
28-
display: PropTypes.string,
28+
barSize: PropTypes.string,
2929
}
3030

3131
const defaultProps = {
3232
roundedBottom: true,
33-
display: 'regular',
33+
barSize: 'regular',
3434
}
3535

3636
const SearchInput: React.FC<PropTypes.InferProps<typeof propTypes> &
@@ -44,7 +44,7 @@ const SearchInput: React.FC<PropTypes.InferProps<typeof propTypes> &
4444
onFocus,
4545
onBlur,
4646
disabled,
47-
display,
47+
barSize,
4848
...inputProps
4949
} = props
5050

@@ -78,7 +78,7 @@ const SearchInput: React.FC<PropTypes.InferProps<typeof propTypes> &
7878

7979
const buttonClasses = classNames(
8080
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}`,
8282
{
8383
'c-link pointer': !disabled,
8484
'c-disabled': disabled,
@@ -89,7 +89,7 @@ const SearchInput: React.FC<PropTypes.InferProps<typeof propTypes> &
8989
<div className="flex flex-row">
9090
<div className="relative w-100">
9191
<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}`}
9393
value={value}
9494
onFocus={handleFocus}
9595
onBlur={handleBlur}

react/components/AutocompleteInput/index.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ const propTypes = {
7575
* Selects a size of the input bar, could be set to `small`, `regular` or `large`.
7676
* `regular` is the default value.
7777
*/
78-
display: PropTypes.string,
78+
size: PropTypes.string,
7979
}).isRequired,
8080
}
8181

@@ -92,7 +92,7 @@ const AutocompleteInput: React.FunctionComponent<PropTypes.InferProps<
9292
loading,
9393
lastSearched = {},
9494
icon,
95-
display,
95+
size,
9696
},
9797
}) => {
9898
const [term, setTerm] = useState(value || '')
@@ -216,7 +216,7 @@ const AutocompleteInput: React.FunctionComponent<PropTypes.InferProps<
216216
onSearch={() => onSearch(term)}
217217
onClear={handleClear}
218218
onChange={handleTermChange}
219-
display={display}
219+
barSize={size}
220220
/>
221221
{popoverOpened ? (
222222
<div className="relative">

0 commit comments

Comments
 (0)