Merge pull request #14606 from Li0liQ/patch-1

[material-ui] Added TextFieldProps as a parent interface for AutoCompleteProps.
This commit is contained in:
Mine Starks
2017-03-06 16:51:22 -08:00
committed by GitHub

View File

@@ -533,7 +533,7 @@ declare namespace __MaterialUI {
type cornersAndCenter = 'bottom-center' | 'bottom-left' | 'bottom-right' | 'top-center' | 'top-left' | 'top-right';
}
interface AutoCompleteProps<DataItem> {
interface AutoCompleteProps<DataItem> extends TextFieldProps {
anchorOrigin?: propTypes.origin;
animated?: boolean;
animation?: React.ComponentClass<Popover.PopoverAnimationProps>;