Skip to content

Commit

Permalink
fix(atoms): add missed types for input
Browse files Browse the repository at this point in the history
  • Loading branch information
zouxuoz authored and ej9x committed May 21, 2018
1 parent d46b525 commit 1c55fe8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/atoms/dataEntry/Input/Input.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ type InputProps = {
/** input value */
value?: string,
/** possible input types */
type?: 'text' | 'number',
type?: 'text' | 'number' | 'password' | 'email' | 'url',
/** then true when show error styles */
hasError?: boolean,
/** text of the error */
Expand Down

0 comments on commit 1c55fe8

Please sign in to comment.