Jonas Geiler
Jonas Geiler
I'd really like to have this feature! Instead of an input option, how about just including the files matched in the `"files"` entry in `package.json`? #### Example: ``` { "name":...
If you're working on yarn support, maybe also implement a [pnpm](https://pnpm.js.org/) support? It uses pretty much the same commands as npm I think, except you have to prepend a 'p'...
I'm guessing you mean something like this: ```svelte {#each list as item, index (item)} {item} {/each} ``` And it _might_ be possible, there's an #each-directive inside the component after all,...
In all honesty, I'm not actually sure what this property does. I've looked at both, my source code and the originaly `react-tiny-virtual-list` source code, and it's only used for calculation...
Any updates on this? I'd like to close this issue. Let me know if you need any help!
Alright. This answer is a bit late, but I finally got the motivation to revisit my older projects. The thing is... If you'd ask me how this library works, I...
Hey there! Sorry for the late reply.... The best solution I've found is something like this: https://svelte.dev/repl/9a97af105471434882a1beafac372e46?version=3.48.0 It's not the most beautiful solution (we basically use padding and an inner...
Hello there! Hope this answer isn't too late... I think this might be an issue with timing 🤔 When the component first renders, it sets `thisElement` to the container element...
I'd re-fire it in your fetchData method, as you've said, but only after the `tick()` promise resolves. This way there won't be any timing issues. [More on `tick()`](https://svelte.dev/docs#tick) Let me...
Indeed, that would be an interesting feature. Especially because my `svelte-tiny-virtual-list` library also works for horizontal lists. Thank you for the suggestion! Might look into this in the future...