modular-forms
modular-forms copied to clipboard
The modular and type-safe form library for SolidJS, Qwik and Preact
# Context This is not a bug issue or anything, it’s just a recommendation to clearly point out that you need Qwik City if you want to use this library...
Hello, I am trying to setup a Form where an object field is optional: ```ts import { Output, object, optional, string, minLength, array } from 'valibot' const TodoForm = object({...
On https://modularforms.dev/qwik/guides/create-your-form loader is suggested to be routeLoader, but technically any store (using signals) should work, correct? Great library btw. I first started doing things manually but soon realised it...
I am facing a weird issue realted to `FieldArray` and `reset` functionality. In our app, we have a few of complex forms, which should allow partial updated. Therefore we **continuosly...
A custom validator - that is to be re-usable - needs some context? what path is it operating on at minimum? the definition of the field (the field props)? the...
**qwikjs** I have a modal component to select the product count and associated modifiers to it. Please refer the image.  The number of modifiers can be different for different...
I have the following code ``` {(fieldArray) => ( {fieldArray.items.map((item: any, index: any) => { return ( {(field: { error: any; value: any }, props) => ( )} {(field: {...
Tried the example listed [here](https://modularforms.dev/solid/guides/kobalte). The TextField example works but the Select example doesn't. I put a log on the `createEffect` portion but it only logs once. ```tsx createEffect(() =>...
It would be awsome if it runs and validates on the server side too...