Fabian Hiller
Fabian Hiller
Don't mark it as stale. I will work on it soon.
What version of Qwik and Modular Forms are you using?
I am very sorry for my late reply but I have almost no time for Modular Forms right now. I will probably very soon start to rewrite the entire library...
Hey 👋 thank you for reaching out! Why do you think `oneOf` is better than `anyOf` in this case? I think Valibot also uses `anyOf` for the internal validation. Otherwise...
I will probably change it to `oneOf` but I have to check a few details before doing it. I plan to release it with v1.4 of our JSON Schema package.
In Zod `z.stringbool()` does multiple things. It validates the input data and transforms in to a boolean if possible. In Valibot we separate these things between schemas and actions and...
Thanks for reaching out! And thanks @muningis for your help! We could try to improve our internal `InferObjectInput` and `InferObjectOutput` types to solve this problem. Also, does it work to...
I think ArkType solved it with their `declare` API. We should look into it. See [issue #3](https://github.com/fabian-hiller/valibot/issues/3#issuecomment-2727992136) for more context.
In general, I welcome such ideas. However, the main problem for Valibot will be that following a protocol will unnecessarily increase the bundle size for all users not using that...
It makes a difference because `parse` needs to import `ValiError` and if people only use `safeParse` this code will never be used. It is true that the real world impact...