Ryan Killeen

Results 37 comments of Ryan Killeen

Just wanted to note that this'd be a very welcome feature, especially as some newer frameworks like Remix put FormData front and center.

There are a few spots in the editor component where `validateContentType` is called with an if statement, perhaps consolidating those and calling `onValidChange` in an `else` is a useful approach?...

It was definitely a side chat in that larger discussion haha! Our validation function is significant and is working on significant-sized JSON. Calling it manually in `onChange` when it's already...

Ah I think it's a typing issue, I didn't realize that `ContentErrors` included both parsing and validating errors! Didn't think to check either. I'll give that a shot and that...

That does the trick, thanks so much.

I guess I just like keeping all the numbers in the configs in sync 😄 In my mind I guess it could be misleading to see different numbers in different...

Also interested in this, is there any guidance around implementing an agent? It's something I could potentially take on.

I haven't seen mention of it so thought I'd throw it out here: The biggest feature I'm looking for in a library like this is something like `getPressedKeycodes()`. I'd love...

This is a pretty painful setup, and likely pretty common for anyone trying to integrate with `react-hook-form` `useController`. I'd love to not have to mangle types while abstracting a `MaskedInput`...

Here was my approach without hooks, though I very much like your approach: ```tsx import { ComponentProps, forwardRef } from 'react' import { FieldValues, UseControllerProps } from 'react-hook-form' import {...