superfine icon indicating copy to clipboard operation
superfine copied to clipboard

Absolutely minimal view layer for building web interfaces

Results 6 superfine issues
Sort by recently updated
recently updated
newest added

This addresses my issue #188. This PR would allow you to write views that create `shadow-roots`. For example when using JSX: ```js function view () { return Heading 1 The...

I just want to preface this issue by saying this is just an idea I had. I'm not sure that this belongs in Superfine but I do think it's interesting....

Wouldn't it be a nice and useful feature if `superfine` supported `ref` pseudo properties like [React](https://reactjs.org/docs/refs-and-the-dom.html), Preact, Dyo, uhtml etc. do? ```js const elemRef = { current: null } //...

enhancement

@jorgebucaran Could you please review?

@andrewiggins I figured I'd create a separate issue for this one, since your work is already enough to get projects up and going without it. It would be great if...

types

React has [unmountComponentAtNode](https://reactjs.org/docs/react-dom.html#unmountcomponentatnode), preact has `render(null, element)`, etc. How would that work in Superfine? ```js patch(null, null, container) // ? // or unmount(container) //? ``` What is it expected from...

discussion
enhancement