Skip to content

Commit 5cb98fc

Browse files
committed
fix(Input): add value for Input (#26)
1 parent e3ce148 commit 5cb98fc

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/Components/Chakra__Input.res

+4-3
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ external make: (
1515
~isReadOnly: bool=?,
1616
~isRequired: bool=?,
1717
~size: Size.Select.t=?,
18+
~value: string=?,
1819
~variant: Identity.t=?,
1920
/**
2021
Margin and Padding
@@ -239,7 +240,7 @@ external make: (
239240
@as("_selection") ~_selection: Pseudo.t=?,
240241
/**
241242
TODO
242-
Other Props
243+
Other Props
243244
partial implemented
244245
@see <https://chakra-ui.com/docs/features/style-props#other-props>
245246
~animation=?,
@@ -294,7 +295,7 @@ external make: (
294295
~onFocus: ReactEvent.Focus.t => unit=?,
295296
~onBlur: ReactEvent.Focus.t => unit=?,
296297
/**
297-
ReactEvent Form
298+
ReactEvent Form
298299
@see <https://reactjs.org/docs/events.html#form-events>
299300
**/
300301
~onChange: ReactEvent.Form.t => unit=?,
@@ -403,7 +404,7 @@ external make: (
403404
~onToggle
404405
**/
405406
/**
406-
ReactEvent Animation
407+
ReactEvent Animation
407408
@see <https://reactjs.org/docs/events.html#animation-events>
408409
**/
409410
~onAnimationStart: ReactEvent.Animation.t => unit=?,

0 commit comments

Comments
 (0)