Joe Pea

Results 1860 comments of Joe Pea

IntersectionObserver does not solve this problem (I've tried and tried, and if it is solvable, it is far too complicated for anyone's good).

Here's a related issue describing a problem that would need to be solved for `BoundingClientRectObserver` (and any other observers) if it (they) ever become reality (f.e. [`ComputedStyleObserver`](https://github.com/w3c/csswg-drafts/issues/8982)): - https://github.com/w3c/csswg-drafts/issues/9717 The...

Currently we just make a new auto layout view with the new constraints like so: https://github.com/lume/lume/blob/deb0d9a90db442dd4793e6e0920a252c31c5cce6/src/layouts/Autolayout.ts#L149-L152

For now that's the only official way, as the `View` only has `addConstraint()` and no reciprocal `removeConstraint()`: - https://github.com/lume/autolayout/blob/6d4f77a0cca9be8526a185ebeb85816e09e201fa/src/View.ts#L233 The underlying `kiwi.Solver` does have both add and remove methods though:...

Yeah, that would be robust. Add or remove things and it updates as we'd expect. I don't have the time at the moment to get to this, but would be...

Yeah, totally open to PRs. Would be great to add that.

Reproduction: https://github.com/lume/showcase/tree/solid-start-issue-1614 ```sh git clone [email protected]:lume/showcase.git cd showcase git checkout solid-start-issue-1614 npm ci npm run dev # see error in terminal after loading the app in browser ```

### Workaround: A workaround is to do a native `import()` inside `eval()` (to avoid the compiler handling it): ```ts // If using typescript, type-only `import` will be fine import type...

This seems somehow related to the issue of effects not running. https://discord.com/channels/722131463138705510/1275456175462420614 In the above case, I was able to cause effects not to run due to the presence of...

Looks like `server.esbuild.options.target` is in fact passed to Nitro. So Nitro needs an update so that it will handle `node_modules`?