felte
felte copied to clipboard
An extensible form library for Svelte, Solid and React
Hello, and again, thank you for this library. I noticed that the transform function signature makes working with it a bit hard, because the input value is typed as unknown...
**Is your feature request related to a problem? Please describe.** hi - i'm trying to set the form back to its original HTML values? i've tried setting a variable to...
### Describe the bug With a new empty project when creating a form with the Zod validator, TypeScript will throw "Type instantiation is excessively deep and possibly infinite". This is...
### Describe the bug If post 'multipart/form-data' form by fetch, it should not contain content-type header, the boundary will be missing. Related issues https://stackoverflow.com/questions/39280438/fetch-missing-boundary-in-multipart-form-data-post ### Which package/s are you using?...
### Describe the bug `validateSchema(schema)` and `validator(schema)` will report a type error with the schema being an `ZodObject`: ``` Argument type ZodObject is not assignable to parameter type ZodSchema ```...
### Describe the bug Hello. Thanks for a library that is able to work with so many view libraries, it's a life saver. I was trying to create a reusable...
### Describe the bug When an array does not contain `.required()` the type signature of the `$errors` store becomes incorrect. ```ts const schema = yup.object({ calculations: yup.array(yup.object({ label: yup.string().required(), })),...
**Is your feature request related to a problem? Please describe.** When installing yup 1.0.0-beta.4 alongside @felte/validator-yup, npm complains about peer dependency versions, and I have to use `npm install --force`....
### Describe the bug I've got a element which lets the user create a `blob` or `File` object. I then want to use that blob/file object as a field in...
Working with svelte-kit, and was wondering how do I refer to values within the object? ``` const { form } = createForm({ initialValues: { a: 1, b: 2, c: a...