Alexandre Galays
Alexandre Galays
Worked first try for my first simple use case 👍 ```ts let uniqueSelectId = 0 type ITEM = $$Generic export let selectedItem: ITEM | undefined export let items: ITEM[] export...
Still have that same issue. This project lacks tests hehe.
This project is imo, more stable and better all around: https://github.com/devote/HTML5-History-API
You provided some workarounds but what would be your favorite solution for someone starting this from scratch? Avoid Tabs completely and just sync content with the usual `` -> URL...
it is for a test? it's easy enough to get back at the string from a Date.
I revisited this issue while trying to upgrade to vite 4.5, which makes this perf problem even more visible. It's still an issue for us, on both M1 and M2....
Any news at all? Any pointer to help someone fix this in a PR? A bit more info: Out of those 14,000 classNames, the majority comes from sprinkles. Indeed we...
Is this still a thing? `useAutoScroll` now defaults to the nearest scrolling parent, if the ref itself is not it.
Yes, the fact that the README doesn't mention custom hooks is worrying. Most of the hooks I use are actually custom.
One I wrote recently: ```ts export default function useIsFirstRender() { const isFirstRender = useRef(true) useEffect(() => { isFirstRender.current = false }) return isFirstRender.current } ``` or all the hooks on...