Skip to content

Commit

Permalink
Documentation improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
newoga committed Dec 14, 2015
1 parent df668bf commit d6d8118
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/TextField/TextFieldUnderline.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,42 +4,42 @@ import Styles from '../utils/styles';

const propTypes = {
/**
* True if the parent TextField is disabled
* True if the parent `TextField` is disabled.
*/
disabled: React.PropTypes.bool,

/**
* Override the inline-styles of the underline when parent TextField is disabled
* Override the inline-styles of the underline when parent `TextField` is disabled.
*/
disabledStyle: React.PropTypes.object,

/**
* True if the parent TextField has an error
* True if the parent `TextField` has an error.
*/
error: React.PropTypes.bool,

/**
* Override the inline-styles of the underline when parent TextField has an error
* Override the inline-styles of the underline when parent `TextField` has an error.
*/
errorStyle: React.PropTypes.object,

/**
* True if the parent TextField is focused
* True if the parent `TextField` is focused.
*/
focus: React.PropTypes.bool,

/**
* Override the inline-styles of the underline when parent TextField is focused
* Override the inline-styles of the underline when parent `TextField` is focused.
*/
focusStyle: React.PropTypes.object,

/**
* The material-ui theme applied to this component
* The material-ui theme applied to this component.
*/
muiTheme: React.PropTypes.object.isRequired,

/**
* Override the inline-styles of the underline
* Override the inline-styles of the underline.
*/
style: React.PropTypes.object,
};
Expand Down

0 comments on commit d6d8118

Please sign in to comment.