modular-forms icon indicating copy to clipboard operation
modular-forms copied to clipboard

The modular and type-safe form library for SolidJS, Qwik and Preact

Results 98 modular-forms issues
Sort by recently updated
recently updated
newest added

# 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...

documentation
enhancement

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({...

documentation
question

How would you use input masks with your package in Qwik?

question

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...

enhancement
question

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...

bug
documentation

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...

question

**qwikjs** I have a modal component to select the product count and associated modifiers to it. Please refer the image. ![image](https://github.com/fabian-hiller/modular-forms/assets/20259431/6cefc547-9d1b-4841-b046-e44c4f8577fe) The number of modifiers can be different for different...

question

I have the following code ``` {(fieldArray) => ( {fieldArray.items.map((item: any, index: any) => { return ( {(field: { error: any; value: any }, props) => ( )} {(field: {...

question

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(() =>...

documentation
enhancement

It would be awsome if it runs and validates on the server side too...

enhancement