Skip to content

Commit

Permalink
fix(Input): add value for Input (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
r17x committed Oct 12, 2021
1 parent e3ce148 commit 5cb98fc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/Components/Chakra__Input.res
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ external make: (
~isReadOnly: bool=?,
~isRequired: bool=?,
~size: Size.Select.t=?,
~value: string=?,
~variant: Identity.t=?,
/**
Margin and Padding
Expand Down Expand Up @@ -239,7 +240,7 @@ external make: (
@as("_selection") ~_selection: Pseudo.t=?,
/**
TODO
Other Props
Other Props
partial implemented
@see <https://chakra-ui.com/docs/features/style-props#other-props>
~animation=?,
Expand Down Expand Up @@ -294,7 +295,7 @@ external make: (
~onFocus: ReactEvent.Focus.t => unit=?,
~onBlur: ReactEvent.Focus.t => unit=?,
/**
ReactEvent Form
ReactEvent Form
@see <https://reactjs.org/docs/events.html#form-events>
**/
~onChange: ReactEvent.Form.t => unit=?,
Expand Down Expand Up @@ -403,7 +404,7 @@ external make: (
~onToggle
**/
/**
ReactEvent Animation
ReactEvent Animation
@see <https://reactjs.org/docs/events.html#animation-events>
**/
~onAnimationStart: ReactEvent.Animation.t => unit=?,
Expand Down

0 comments on commit 5cb98fc

Please sign in to comment.