Merge pull request #24741 from guilhermehubner/AddDisabledOptionReactPlacesAutocomplete

[react-places-autocomplete] Adding disabled option to
This commit is contained in:
Paul van Brenk
2018-04-05 13:05:06 -07:00
committed by GitHub

View File

@@ -21,6 +21,7 @@ export interface PropTypes {
name?: string;
placeholder?: string;
onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
disabled?: boolean;
};
onError?: (status: string, clearSuggestion: () => void) => void;
onSelect?: (address: string, placeID: string) => void;