Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[TextField] Add callback signatures to docs #5804

Merged
merged 5 commits into from
Dec 18, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/TextField/TextField.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,9 @@ class TextField extends Component {
onBlur: PropTypes.func,
/**
* Callback function that is fired when the textfield's value changes.
*
* @param {object} event Change event targeting the text field.
* @param {string} newValue The new value of the text field.
*/
onChange: PropTypes.func,
/** @ignore */
Expand Down
2 changes: 2 additions & 0 deletions src/TextField/TextFieldLabel.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,8 @@ TextFieldLabel.propTypes = {
muiTheme: PropTypes.object.isRequired,
/**
* Callback function for when the label is selected via a touch tap.
*
* @param {object} event TouchTap event targeting the text field label.
*/
onTouchTap: PropTypes.func,
/**
Expand Down