Skip to content

Commit

Permalink
Merge pull request #1051 from cozy/input-on-blur
Browse files Browse the repository at this point in the history
feat: Add onBlur to Input
  • Loading branch information
ptbrowne authored Jun 18, 2019
2 parents ee75849 + d088e97 commit 9ff16d4
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions react/Field/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ const Field = props => {
error,
onChange,
onKeyUp,
onBlur,
readOnly,
secondaryLabels,
side,
Expand Down Expand Up @@ -119,6 +120,7 @@ const Field = props => {
error={error}
onChange={onChange}
onKeyUp={onKeyUp}
onBlur={onBlur}
readOnly={readOnly}
/>
)
Expand All @@ -137,6 +139,7 @@ const Field = props => {
error={error}
onChange={onChange}
onKeyUp={onKeyUp}
onBlur={onBlur}
readOnly={readOnly}
size={size}
{...fieldProps}
Expand All @@ -161,6 +164,7 @@ const Field = props => {
error={error}
onChange={onChange}
onKeyUp={onKeyUp}
onBlur={onBlur}
readOnly={readOnly}
size={size}
/>
Expand Down

0 comments on commit 9ff16d4

Please sign in to comment.