Added hintStyle to SelectedField

This commit is contained in:
raultsc
2016-02-20 17:43:28 +02:00
parent 8f13596446
commit dd6a08e30a
2 changed files with 5 additions and 0 deletions

View File

@@ -451,6 +451,10 @@ class MaterialUiTests extends React.Component<{}, MaterialUiTestsState> implemen
element = <TextField
hintText = "Hint Text"
floatingLabelText = "Floating Label Text" />;
element = <TextField
hintText = "Hint Text"
hintStyle = {{fontSize: 10}}
floatingLabelText = "Floating Label Text" />;
element = <TextField
hintText="Hint Text"
defaultValue="Default Value"

View File

@@ -780,6 +780,7 @@ declare namespace __MaterialUI {
floatingLabelStyle?: React.CSSProperties;
fullWidth?: boolean;
hintText?: string | React.ReactElement<any>;
hintStyle?: React.CSSProperties;
// passed to DropDownMenu
displayMember?: string;