feat: valibot form adapter (#499)

* feat: mount method on FormApi

* fix solid-form test case

* fix: added form.mount() to tests

* feat: valibot-form-adapter

* chore: add missing config items

* docs: add Valibot React example

* docs: add Solid Valibot example

* docs: add valibot Vue example

* fix: valibot async adapter now works

* docs: add docs for valibot adapter

---------

Co-authored-by: Corbin Crutchley <git@crutchcorn.dev>
This commit is contained in:
Aadit Olkar
2023-11-05 19:57:45 +05:30
committed by GitHub
parent 1a37fabcf4
commit 31f6261208
57 changed files with 2162 additions and 1507 deletions

View File

@@ -5,6 +5,6 @@ import createVuePlugin from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [createVuePlugin()],
optimizeDeps: {
exclude: ['@tanstack/vue-query', 'vue-demi'],
exclude: ['@tanstack/vue-form', 'vue-demi'],
},
})