-
**Description**
I am using a Superform inside a navbar that the user has access to. This navbar is located in the Layout. I noticed that if I have a normal run of the mill Svelte progressively enhanc…
-
**Description**
Thank you so much for this excellent package!
I am very pleased w/ it, and had a working project set up w/ SuperForms 0.6.18, and several forms.
Am just now going thru to upda…
-
As per HTML spec, values of disabled inputs should not be submitted. but I observed they are getting submitted to backend.
is this a bug?
Server logs
## reproduce
https://github.com…
-
### Current Behavior
If I return a superForm error from action eg.
```
export const actions: Actions = {
save: async (event) => {
const formData = await event.request.formData();
const fo…
-
Current behaviour:
```js
setError(form, '', 'This is an error!');
```
Desired behaviour:
```js
setError(form, 'This is an error!');
```
I believe this can be achieved by checking if the seco…
-
**Description**
When using client side validators the error store shows some inconsistent behavior before and after form submits.
Looking at these two examples:
---
### The error store after …
-
Is there an escape hatch, or recommended workaround for using zod schemas with unsupported features, like `.pipe()` or `.refine()`?
I understand there may be more boiler plate I have to take care o…
-
Conditional should check the length of the array.
https://superforms.vercel.app/concepts/error-handling#listing-errors
https://github.com/ciscoheat/superforms-web/blob/5f465da7584a819ecfc02f1ee7…
-
### Discussed in https://github.com/ciscoheat/sveltekit-superforms/discussions/198
Originally posted by **AntonPavlenkov** June 21, 2023
> I encountered an issue where the window does not have…
-
I have a `Boolean` form field (e.g., `shared`).
On server-side, I need to do some custom business logic if its value is changing from `false` to `true`.
I have to add an extra form field (e.g., `…