Maroš Beťko

Results 13 comments of Maroš Beťko

I'm trying to come up with a clean solution to replace the usage of `withComponent` which since v11 seems to no longer replace the types of `onXYZ` events (and many...

Oh those links point to newest commits and I have changed the implementation since then. [Here](https://github.com/Haaxor1689/MichelangeloUnity/blob/131523489acbc6b2fbd9bc816e1b67b793c5c9a1/Assets/Michelangelo/Models/MichelangeloApi/ParseTree.cs) you can see the new implementation. I've implemented the `ISerializationCallbackReceiver` myself and different to...

I don't want to use it but when I pass textarea props to my wrapping components I get errors. Shouldn't then the better solution be to omit `heigth` prop as...

If I use the `TextareaAutosizeProps` instead of `React.InputHTMLAttributes` I get error on `ref` attribute not matching. Here is full error: ``` Type '{ css: (theme: { colors: { primary: string;...

https://codesandbox.io/s/react-typescript-playground-ebgce?file=/src/index.tsx Here are all three examples of just making a wrapper component that passes it's props down to `TextareaAutosize` component.

I'm not exactly sure why `JSX.IntrinsicElements['textarea']` and `React.TextareaHTMLAttributes` use different `ref` types and quick google search did not return any answer on what is the exact difference between the two....

Can't you then just use the `React.TextareaHTMLAttributes`?

After checking out related issues such as #5 and a bit of tinkering I came to a working solution. ``` import { Quill } from 'react-quill'; const Video = Quill.import('formats/video');...

@catosaurusrex2003 and @CosAnca if you are not using Bun runtime then try canary 10 where my previous issue was fixed in. Canary 12+ should contain the security fix but I...

Yes, running in node instead of bun works, or running with webpack and bun also works.