Jason Miller
Jason Miller
Can you list the version of webpack and whatever other bundler youre using?
This is related to #3059 + #3061. What version of `preact-render-to-string` do you have?
Is this type of client/server variance actually valid? React is likely destroying and recreating the tree here, which doesn't seem like a good point of reference for correctness. We could...
Which event types would be useful for this though? I use passive event listeners, but only at the document level - `scroll` mainly. A compositional component like this is where...
I like making it an option/suffix like that, but I worry about how hard it might be to implement addition/removal.
@adonig yes - passive events cannot use preventDefault(), which is extremely common.
I'm no longer convinced this change fixes the linked reproduction. Here's a change that should fix it: ```js hookState._reducer = reducer; if (!hookState._component) { let actions = []; let dispatch...
This is because preact doesn't currently know about its own render roots, so the outer component tree continues diffing the inner one. We'll need to add a property at the...
@davidrhoderick does the error happen when you modify hook state after a component is suspended? Or is something else triggering rendering? A few of the comments in the linked issue...
I believe this was intentionally removed in order to prevent misleading `this` usage in event handlers that was also incompatible with React. Personally I would like to amend the TypeScript...