Andrew

Results 32 comments of Andrew

Yes, it would appear that settings `strategy` to `verticalListSortingStrategy` on the `` component fixes this glitch: ```tsx {/* ... */} ``` For those using variable height draggables, also be sure...

I see that using `keyof Values` could be useful to avoid field typos at times when entering field names manually. But what's the use of the `T` generic?

Ok, I was not able to reproduce this issue on StackBlitz because, sometimes the TypeResolver gets used, and sometimes the type is directly resolved via the TypeScript lib. I have...

Closed? Well, whatever. We have better alternatives to tsoa, like trpc. In our case, we're using a custom system with Zod-based validation that works incredibly well. We won't be using...

Hey @pabloalvim! You're correct, `contextualizedName` was completely removed as of v6.0.0. I'm not really a developer for TSOA (just here due to a separate issue), but maybe provide more details...

@heejinlee07, this might've been an issue once, but not anymore. The symbol you have is not displaying because it is not U+00B7. It is U+2219, which the font does not...

@kirillku, you're right. This is interesting: ```ts z.url().parse("http:/www.apple"); // returns "http:/www.apple" z.httpUrl().parse("http:/www.apple"); // returns "http:/www.apple" ``` Note that setting the `normalize` flag fixes this: ```ts z.url({ normalize: true }).parse("http:/www.apple"); //...

Yep! I wouldn't expect it to look pretty. Every type's bound to have a different structure, but if details are still accessible (at least for built-in types), we can introspect...

@dosu .. @dosubot (?) No, this issue is not resolved. It's still an active limitation as of Zod 4.1.12. Also, as of Zod 4.1, detection of stringbools has changed, since...