Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #495 from klip/patch-4
Browse files Browse the repository at this point in the history
  • Loading branch information
jonthomp authored Feb 22, 2021
2 parents 9a12ace + c9b1540 commit 2b38a7d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/components/Form/FormInput.react.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ type FormStyle = {|
+defaultValue?: string | number,
+min?: string | number,
+max?: string | number,
+step?: string | number,
+minLength?: string | number,
+maxLength?: string | number,
+disabled?: boolean,
Expand Down Expand Up @@ -77,10 +78,12 @@ function FormInput(props: Props): React.Node {
defaultValue,
min,
max,
step,
minLength,
maxLength,
checked,
onChange,
onClick,
onMouseEnter,
onMouseLeave,
onPointerEnter,
Expand Down Expand Up @@ -125,13 +128,15 @@ function FormInput(props: Props): React.Node {
defaultValue,
min,
max,
step,
minLength,
maxLength,
disabled,
readOnly,
autoFocus,
required,
onChange,
onClick,
onMouseEnter,
onMouseLeave,
onPointerEnter,
Expand Down

0 comments on commit 2b38a7d

Please sign in to comment.