Jason Miller

Results 1189 comments of Jason Miller

Hi @bestguy - I believe you might be able to do that using the `._component` property: ``` js var example = $('x-example')[0]._component; example.report(); ```

I think we'd just iterate over the methods on the component's prototype and hoist them (skipping the builtins like `render()` and `constructor()`. Actually shouldn't be too hard at all.

@sventschui I've added `{{ secrets.PREACT_NPM_TOKEN }}` with the appropriate permissions.

This one is intriguing since it's the first RTL language we're doing :D

Yikes! I think that's something to do with the parsing of YAML frontmatter in documentation files. I don't see anything in your branch that would cause such issues though...

Hmm - it seems like in order to support backpressure, we'd need to render directly into the stream rather than rendering to a String and converting after. Thoughts?

This is great and the backpressure support is on point. One question: does the async support here work with the Suspense API? It seems like it's handling the throwing of...

Hi @Saegrov! Sorry for the delay - happy to have the unit tests in their own file. I think this should be good to merge, just need to check the...

Good catch! Open to a PR, or I can do it whenever I get a chance. I'd like to add an `ATTR_MAP` mapping like: ```js const ATTR_MAP = { 'srcSet':...

nah, SVG attributes are case-sensitive (`viewBox`). Though maybe it's easier to special-case that instead.