You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`field`|`onChange`| <TypeText>`(value: any) => void`</TypeText> | A function which sends the input's value to the library.<br/><br/>_ It should be assigned to the `onChange` prop of the input and value should **not be `undefined`**.<br/>_ This prop update [formState](/docs/useform/formstate) and you should avoid manually invoke [setValue](/docs/useform/setvalue) or other API related to field update. |
35
+
|`field`|`onChange`| <TypeText>`(value: any) => void`</TypeText> | A function which sends the input's value to the library.<br/><br/>_It should be assigned to the `onChange` prop of the input and value should **not be `undefined`**._<br/>This prop update [formState](/docs/useform/formstate) and you should avoid manually invoke [setValue](/docs/useform/setvalue) or other API related to field update. |
36
36
|`field`|`onBlur`| <TypeText>`() => void`</TypeText> | A function which sends the input's onBlur event to the library. It should be assigned to the input's `onBlur` prop. |
37
37
|`field`|`value`| <TypeText>unknown</TypeText> | The current value of the controlled component. |
38
38
|`field`|`disabled`| <TypeText>boolean</TypeText> | The disabled state of the input. |
0 commit comments