form icon indicating copy to clipboard operation
form copied to clipboard

🤖 Headless, performant, and type-safe form state management for TS/JS, React, Vue, Angular, Solid, and Lit.

Results 344 form issues
Sort by recently updated
recently updated
newest added

This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@eslint-react/eslint-plugin](https://redirect.github.com/Rel1cx/eslint-react) ([source](https://redirect.github.com/Rel1cx/eslint-react/tree/HEAD/packages/plugins/eslint-plugin)) | [`^1.17.3` -> `^1.29.0`](https://renovatebot.com/diffs/npm/@eslint-react%2feslint-plugin/1.23.2/1.29.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@eslint-react%2feslint-plugin/1.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |...

dependencies

### Describe the bug When removing an object from a nested array only the "id" field is removed from the element. This happens both if you use arrayField.removeValue and form.setFieldValue....

bug

### Describe the bug My goal is to show / hide form fields dynamically based on the selected value of a select input. Unfortunately the form errors on submission after...

bug

### Describe the bug If you have a field that is displayed conditionally in the form, and use form.setFieldValue without dontUpdateMeta: true before it's initialization, it will create meta for...

question

### Describe the bug While trying out the [Simple](https://tanstack.com/form/latest/docs/framework/react/examples/simple) example on the website in the docs, as well as locally, I stumbled upon the following behavior, which I am finding...

bug

Continuation from the discussion #709. [Listeners](https://github.com/TanStack/form/pull/1032) are implemented, however the meta field is yet to be started. The proposal is to have the meta data available to the field component:...

enhancement

**Description** Currently, `onSubmitInvalid` is designed to be called only once, due to [this line of code](https://github.com/TanStack/form/blob/3e889183acd6d7d2b9acbb1e67a844ae33a2e19c/packages/form-core/src/FormApi.ts#L1026). This behavior limits flexibility for handling invalid form submissions, as it prevents custom logic...

enhancement

### Describe the bug I want to disable the submit button after the submission. I compare `options.defaultValues` and `values` from the store to determine whether they are equal. However, the...

bug

I have a Zod schema like this: ``` z.array( z .object({ value: z.string(), primary: z.boolean() }) .refine( ({ primary, value }) => { return !(!primary && value === ''); },...

enhancement

I have added the `validateFields()` method to the `FormApi` so you can validate multiple fields at once.