diff --git a/material-ui/index.d.ts b/material-ui/index.d.ts index 2268215ae1..05512e2e9d 100644 --- a/material-ui/index.d.ts +++ b/material-ui/index.d.ts @@ -1767,6 +1767,7 @@ declare namespace __MaterialUI { errorText?: React.ReactNode; floatingLabelFixed?: boolean; floatingLabelFocusStyle?: React.CSSProperties; + floatingLabelShrinkStyle?: React.CSSProperties; floatingLabelStyle?: React.CSSProperties; floatingLabelText?: React.ReactNode; fullWidth?: boolean; @@ -1778,9 +1779,10 @@ declare namespace __MaterialUI { name?: string; onBlur?: React.FocusEventHandler<{}>; onChange?: (e: React.FormEvent<{}>, newValue: string) => void; - onEnterKeyDown?: React.KeyboardEventHandler<{}>; onFocus?: React.FocusEventHandler<{}>; onKeyDown?: React.KeyboardEventHandler<{}>; + onKeyUp?: React.KeyboardEventHandler<{}>; + onKeyPress?: React.KeyboardEventHandler<{}>; rows?: number, rowsMax?: number, style?: React.CSSProperties; @@ -1791,6 +1793,7 @@ declare namespace __MaterialUI { underlineShow?: boolean; underlineStyle?: React.CSSProperties; value?: string | number; + autoFocus?: boolean; } export class TextField extends React.Component { blur(): void;