Joe Pea
Joe Pea
We need an API to observe computed style changes. One example use case is to update canvas rendering based on changes in computed styles of an element (f.e. `transform` values...
I cannot use `spiderable-middleware`, I don't have a server. For example, using [`Docsify`](https://docsifyjs.org) I can host a static website, and the site will load and render static markdown files. It...
See [`classy-solid` docs](https://github.com/lume/classy-solid#readme) for info. Small example: ```js @element class MyEl extends Element { @signal a = 1 @signal b = 2 @memo get sum() { return this.a + this.b...
I'd like to make DOM-based alternatives to some Solid.js components like Show/For/etc. For example: ```js return html` foo bar ` ``` this version will operate on standards: - the content...
The Arch Linux installer [in the AUR](https://aur.archlinux.org/packages/buzztrax) fails, presumable due to updates in dependencies. I think we could mitigate this sort of breakage by offering a way for people to...
```js import source mod from './foo.dope' if (mod instanceof WebAssembly.Module) console.log('a') else if (mod instanceof ModuleSource) console.log('b') ``` Does this log "a" or "b"? It seems like import attributes are...
Does the `ts-lit-plugin` work only with Lit-based custom elements? Or will it work with any custom element definitions used in any `html` template tag (assuming it has the same syntax...
Can we please get some more documentation besides a schema and the super basic example in the README? For example maybe - further examples in the examples folder would help,...
Right now I am doing ```js componentWillUnmount() { document.querySelector(`style[scope=${this.styleScopeName}]`).remove() } ``` inside my class when it unmounts (a React component). Is this enough? Or will ShadyCSS still contain a reference...