Skip to content

Commit

Permalink
Merge 9e10577 into 107b43d
Browse files Browse the repository at this point in the history
  • Loading branch information
Zoobiscuit committed May 28, 2018
2 parents 107b43d + 9e10577 commit 55b8310
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ class TextField extends React.Component {
onDrop,
onFocus,
onIconClick,
onKeyUp,
outlined,
required,
type,
Expand Down Expand Up @@ -186,6 +187,7 @@ class TextField extends React.Component {
onDragStart={onDragStart}
onDrop={onDrop}
onFocus={onFocus}
onKeyUp={onKeyUp}
placeholder={fullWidth ? label : undefined}
required={required}
type={type}
Expand All @@ -206,6 +208,7 @@ class TextField extends React.Component {
onDragStart={onDragStart}
onDrop={onDrop}
onFocus={onFocus}
onKeyUp={onKeyUp}
required={required}
rows={8}
columns={40}
Expand Down Expand Up @@ -259,6 +262,7 @@ TextField.propTypes = {
onDrop: PropTypes.func,
onFocus: PropTypes.func,
onIconClick: PropTypes.func,
onKeyUp: PropTypes.func,
outlined: PropTypes.bool,
required: PropTypes.bool,
type: PropTypes.string,
Expand All @@ -285,6 +289,7 @@ TextField.defaultProps = {
onDragStart: undefined,
onDrop: undefined,
onFocus: undefined,
onKeyUp: undefined,
onIconClick: undefined,
outlined: false,
required: false,
Expand Down

0 comments on commit 55b8310

Please sign in to comment.