Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions examples/svelte/dynamic/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
<main>
<p>
These components are using <strong>dynamic</strong> sizes. This means that each
element's exact dimensions are unknown when rendered. An estimated dimension
is used as the initial measurement, then this measurement is readjusted on the
fly as each element is rendered.
element's exact dimensions are unknown when rendered. An estimated dimension is
used as the initial measurement, then this measurement is readjusted on the fly
as each element is rendered.
</p>
<nav>
<ul>
Expand Down
3 changes: 1 addition & 2 deletions packages/lit-virtual/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ import type { PartialKeys, VirtualizerOptions } from '@tanstack/virtual-core'
class VirtualizerControllerBase<
TScrollElement extends Element | Window,
TItemElement extends Element,
> implements ReactiveController
{
> implements ReactiveController {
host: ReactiveControllerHost

private readonly virtualizer: Virtualizer<TScrollElement, TItemElement>
Expand Down
Loading
Loading