Lusito
Lusito
Hi @ehtishama , I wonder what your exact use-case is. People have been using POST for SSE requests for different reasons and depending on the reason you might have different...
I think it should be possible by installing `@types/webextension-polyfill` without the actual polyfill and then somewhere define the type of browser globally: ```ts // The "import type" is important, so...
@olfek can you explain this in more detail? What types exactly are you talking about? You can import types without going through the Browser namespace. ```ts // Works just fine:...
So here are my thoughts on this: As tsx-dom works in a way, that creates the children without knowing what the parents are, we never know what namespace needs to...
Sorry, this completely slipped my mind. I'll make sure that something comes up with the next major version. Probably something with option 5 a/b. Maybe even something like push/popDefaultNamespace, so...
Hmm, due to the lack of fragments, the `Svg` component is not a nice option, but the other APIs work nicely. You can see this on the next branch if...
For tsx-dom-ssr, I can actually use a simpler approach: - svg elements will have an implied namespace set to "http://www.w3.org/2000/svg" if not specified otherwise via xmlns attribute. - Any element...
Thanks for the report. I'll try to look at this at the weekend. In the meantime, you can try one of these two things: 1. switch back to the last...
Have you tried importing the types first in addition to declaring the module? ```ts import "tsx-dom-types"; declare module "tsx-dom-types" { } ``` When you declare a module and do not...
Thanks for sharing your definitions. That helps verifying my new implementation. - Are you sure, that the `` element receives a scale property? I can't seem to find it in...