Simon Green
Simon Green
It looks like the editor is repeatedly calling highlight when it shouldn't need to - this is running the project locally, adding some console.log statements shows it going in a...
I added an `$inspect(highlighted)` which showed the value toggling between `>` vs `>` which may be why it gets in a loop. Removing any content with those characters from the...
> Update: The _scrolling_ was completely fixed by [0aa07c3](https://github.com/BearToCode/carta/commit/0aa07c3e61fc8e45bbd3ea5607588bcbc90fbdd2) but _typing_ has quite some lag. Isn't that because it's _debouncing_ the edit / highlighting not _throttling_ updates ... i.e. it...
> I'm not sure of what you mean with leaving the input visible: changing the value would result in the input text changing immediately, but the overlay would not match,...
I'm having trouble reproducing this on the https://captaincodeman.github.io/svelte-color-select/ demo page, I'll try it on a different PC with a different mouse - but I presume you're just left-clicking then releasing...
I've not been able to reproduce this: https://github.com/user-attachments/assets/b24d6ebd-5dd7-4f01-bfd2-7ce871994cf6
That didn't help I'm afraid - I can't really see when clicks are happening. Maybe try triggering it on https://svelte.dev/playground/03c63fb006424725863435af19e67bce?version=5.5.2 and let me know what is logged?
I still haven't been able to reproduce it. My best guess is that it's some different mouse button being activated at some point, so I'll add some checks for it...
No, it doesn't, because `+server` is for REST endpoints and has no bearing on `+layout` which is for page rendering (and vice versa). `+layout.server` can access the same server-side event...
I think a couple of things are preventing this - `preventDefault` on the key handler and the anchor tags not being focused (using roving tab index). I'll probably need a...