Kirill Korolyov
Kirill Korolyov
See also #24649. I've actually discovered it because of `Maximum update depth exceeded` warning, although I decided not to replicate it in my example. But the root cause is likely...
I guess performance @buschtoens was referring to is the performance of DOM (adding/removing styles for each element). Using classes used to be faster than inline styles, but it has likely...
Then it sounds like a good idea. I'm not sure though if this extension is the best playground for its implementation, as most of existing logic (loading CSS files, namespacing...
@filoscoder that's exactly the point - it would be nice to make it required. It's easy to forget to add this on a few field, inadvertently exposing it, which would...
It seems there's a misalignment between `index.d.ts`, `index.js` and `index.mjs`: - [index.d.ts](https://github.com/remarkablemark/html-react-parser/blob/master/index.d.ts), besides types, lists `attributesToProps`, `domToReact`, `htmlToDOM`, `Comment`, `Element`, `Node`, `ProcessingInstruction` and `Text` as non-default exports - [index.js](https://github.com/remarkablemark/html-react-parser/blob/master/index.js) exports...
They are classes, not types, see [Text](https://github.com/fb55/domhandler/blob/master/src/node.ts#L155-L161) for example. `instanceof` wouldn't work with a type.
I see, I guess this will be documented once docs are out. I'm curious, what is the reason for this assumption? Are there any downsides to using non-native checkbox outside...
You can't use vanilla-extract with plain create-react-app, however, you can use it with [Craco](https://github.com/gsoft-inc/craco). It allows you to override webpack config, and vanilla-extract webpack plugin seems to run without issues...
It's also incorrect. See the following code: ```typescript type Key = 'foo' | 'bar'; const keys: Key[] = ['foo']; const b = Object.fromEntries( keys.map((key) => { return [key, 1]; }),...
The version that currently runs on Vercel is `7.1.7`, which is still quite out of date (I need `pnpm patch` support which was only added in 7.4.0). It would be...