Skip to content

Releases: wai-lin/forma-js

New useBaseConfig API

01 Feb 03:08
Compare
Choose a tag to compare

New useBaseConfig [default: true] API to opt-out from the ConfigProvider.

Form Component

<Form
  useBaseConfig={false}
  method="post"
  action="http://localhost:4000/api/users"
>
...
</Form>

Hook Form

const myForm = useForm({
  useBaseConfig: false,
  method: 'post'
  action: 'http://localhost:4000/api/users'
})

prerelease

31 Jan 15:11
Compare
Choose a tag to compare
v1.0.1-0

chore(release): 1.0.1-0