felte
felte copied to clipboard
An extensible form library for Svelte, Solid and React
### Describe the bug I don't think `use:*` directive in Solid is working. Not sure what's wrong. ### Whole code ```ts import { createForm } from "@felte/solid"; export default function...
### Describe the bug I'm not sure what's causing this, when I use zod `discriminatedUnion` `felte/solid `the `felte error` store is empty, but the `zod.safeparse.error.issue` is not empty and has...
**Is your feature request related to a problem? Please describe.** No validation strategy, If I switch via tab through inputs, you set aria-invalid, input wasn't even touched, but felte is...
### Describe the bug Hello, I tried felte as my solidjs form library, however, in the process of trying, I was frustrated. According to the example on github's official website,...
### Describe the bug ``` const form1validatorObj = z.object({ field1: z.string().min(100, {message: "form 1 error"}) }) const form2validatorObj = z.object({ field2: z.string().min(100, {message: "form 2 error"}) }) const { form:...
### Describe the bug I am creating a form component that would allow to create new user or update. For the form method, I do a ternary expression to select...
Typescript complains about the missing typings, even though it recognizes their location. This fixes that.
### Describe the bug I have a strange use case where some nested components also have their own `` with their own validation & submission, and noticed that the child...
Closes #248, #290. Fixes the Zod validator to surface nested [`invalid_union` errors](https://zod.dev/ERROR_HANDLING?id=zodissuecode). For existing users of `@felte/validator-zod`, validation behaviour is the same. The only difference is that Zod issues with...
**Is your feature request related to a problem? Please describe.** When using vest async validator must be promisify **Describe the solution you'd like** extend: validator to have type for Promise...