form
form copied to clipboard
🤖 Headless, performant, and type-safe form state management for TS/JS, React, Vue, Angular, Solid, and Lit.
### Describe the bug It's very likely this is due to some fundamental misunderstanding of mine, if that's the case I apologize. In a nuxt app I tried wrapping form.Field...
Currently, there is no good, standardized way to properly handle client-side validation along with NextJS server-actions. The TanStack form supports server-actions, but the current implementation has one huge drawback: the...
### Describe the bug Using Solid's `classList` inside a `form.Field` when `name` attribute and `onBlur` handler are present causes the field to be rerendered multiple times when blurred (10 times...
### Describe the bug After submitting the form and the action returns, the first input on the form is ignored. ### Your minimal, reproducible example https://github.com/aaronfulkerson/tanstack-form-validation ### Steps to reproduce...
### Describe the bug > Note: I created this as a bug because I tried some api(s) to achieve what's mentioned below (like `field.update()`) but couldn't make it work and...
### Describe the bug https://github.com/TanStack/form/blob/a1568ff667ef6afe8aff576bdc1079327701a6de/packages/react-form/src/nextjs/createServerValidate.ts#L69 Since `decode()` has two definitions (simplified): ```ts declare function decode(formData: FormData, info: FormDataInfo, transform?: FormDataTransform): TOutput; declare function decode(formData: FormData, transform?: FormDataTransform): TOutput; ``` Specifying...
### Describe the bug **[UPDATE]** this also happen when the server-side validation failed, submit with value "9"(valid in client but not server), same issue happen. I'm not sure if this...
### Describe the bug A field's meta object is never assigned the field validation errors returned by the `onMount` validator. Through some local line-by-line debugging this is how I interpret...
### Describe the bug The library actually works fine but Next.js shows an error in the bottom left corner and It's annoying, functionality is not affected AFAICT. This only happens...
Issue: It won't trigger re-render when the data is loaded. The doc: https://github.com/TanStack/form/blob/main/docs/framework/solid/guides/async-initial-values.md Here's the minimal reproduction: https://stackblitz.com/edit/solidjs-templates-cicpay3v?file=src%2FApp.tsx There are two problems of this example: - Returned object value from...