vedanta
vedanta
Enables functionality like: ```typescript const form = useForm({ defaultValues: { firstName: '', lastName: '', }, validators: { onBlur: ({ value }) => { console.log('ON Blur:', value) }, onMount: ({ value...
This is in reference to issue #1242 Let me know if any changes are required.
Instead of the previous `serverValidate` function just returning a string, we now return an object: ```ts const serverValidate = createServerValidate({ ...formOpts, onServerValidate: ({ value }) => { if (value.age <...
### Describe the bug The {error} of type void or undefined. This is directly highlighted in one of the examples: https://tanstack.com/form/latest/docs/framework/react/examples/next-server-actions You can see right before it, the error is...
Store works out of the box with pretty much the react adapter, only a few changes were needed. Feel free to suggest fixes or co-author! Making a store preact-adapter should...
## 🎯 Changes Makes a Preact Adapter for Tanstack Query. The main motivations are bundle sizes and ensuring compatibility with the events architecture. ## ✅ Checklist - [x] I have...
## 🎯 Changes Preact adapter, almost as same as the react one, but with preact dependencies and eslint rules, etc. ## ✅ Checklist - [x] I have followed the steps...