svelte-tiny-virtual-list
svelte-tiny-virtual-list copied to clipboard
A tiny but mighty list virtualization library for Svelte, with zero dependencies 💪 Supports variable heights/widths, sticky items, scrolling to index, and more!
Svelte 5
Hello! Are there any plans to support Svelte 5 for the library? Searched through issues and branches and couldn't find anything.
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [beercss](https://www.beercss.com/) ([source](https://redirect.github.com/beercss/beercss)) | [`3.6.13` -> `3.11.20`](https://renovatebot.com/diffs/npm/beercss/3.6.13/3.11.20) | [](https://docs.renovatebot.com/merge-confidence/) |...
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://redirect.github.com/actions/checkout) | action | minor | `v4.1.7` -> `v4.2.2` | --- ### Release...
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [prettier-plugin-svelte](https://redirect.github.com/sveltejs/prettier-plugin-svelte) | [`3.2.8` -> `3.4.0`](https://renovatebot.com/diffs/npm/prettier-plugin-svelte/3.2.8/3.4.0) | [](https://docs.renovatebot.com/merge-confidence/) | [](https://docs.renovatebot.com/merge-confidence/)...
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@sveltejs/kit](https://svelte.dev) ([source](https://redirect.github.com/sveltejs/kit/tree/HEAD/packages/kit)) | [`2.5.28` -> `2.20.6`](https://renovatebot.com/diffs/npm/@sveltejs%2fkit/2.5.28/2.20.6) | [](https://docs.renovatebot.com/merge-confidence/) |...
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/setup-node](https://redirect.github.com/actions/setup-node) | action | minor | `v4.0.4` -> `v4.4.0` | --- ### Release...
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [typescript](https://www.typescriptlang.org/) ([source](https://redirect.github.com/microsoft/TypeScript)) | [`5.3.3` -> `5.8.3`](https://renovatebot.com/diffs/npm/typescript/5.3.3/5.8.3) | [](https://docs.renovatebot.com/merge-confidence/) |...
- [Look at this codepen](https://codepen.io/zupkode/pen/MWwgLyb) - They are doing dynamic height virtual lists without hardcoding heights for anything - Is that possible with this library?
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [vite](https://vite.dev) ([source](https://redirect.github.com/vitejs/vite/tree/HEAD/packages/vite)) | [`5.1.8` -> `5.4.12`](https://renovatebot.com/diffs/npm/vite/5.1.8/5.4.12) | [](https://docs.renovatebot.com/merge-confidence/) |...
The feature detection for event listener third argument is calling the wrong method on `window` ```js window.remove('testpassive', arg, arg); ``` It should be ```js window.removeEventListener('testpassive', arg, arg); ``` This comes...