Fabian Hiller
Fabian Hiller
Yes, but supporting this format will probably add additional code besides `safeParse`, which will increase the size of the bundle even more. I support your idea, and we should discuss...
Thank you! The `[parseSymbol](dataset, config = getConfig()) ...` change looks much better for Valibot. One thing to note is that `dataset` contains more info then the raw input. So I...
I think I can close this issue. Further discussion should take place in the Standard Schema repo: https://github.com/standard-schema/standard-schema
You can also transform it to a number before comparing it: `v.pipe(v.string(), v.decimal(), v.transform(Number), v.minValue(5))` or allowing a number as an input to fix the TS issue: ```ts import *...
Sorry for my late reply! What schemas and actions should result in these OpenAPI formats? Until this is supported you can use our `overrideSchema` and `overrideAction` config to support it.
Thanks for creating this PR. In simple words, you want to be able to label path items to generate a stack-trace like output with a better overview through these labels?
Thanks for your API ideas Jamie. The main problem will be accessing the `input` in a type-safe way. If this is not possible we would be forced to skip the...
I am closing this issue due to inactivity. I welcome feedback if there is still interest in this feature.
Thanks for the catch! Why would you prefer to use `maxBytes` instead of `maxLength`?
> You can actually make this even faster by avoiding calculating the specific number of bytes when possible: Can you provide more details? When does this work? In general, how...