You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -129,29 +135,20 @@ Also works pretty well with [`svelte-infinite-loading`](https://github.com/Skayo
129
135
| stickyIndices |`number[]`|| An array of indexes (eg. `[0, 10, 25, 30]`) to make certain items in the list sticky (`position: sticky`) |
130
136
| overscanCount |`number`|| Number of extra buffer items to render above/below the visible items. Tweaking this can help reduce scroll flickering on certain browsers/devices. |
131
137
| estimatedItemSize |`number`|| Used to estimate the total size of the list before all of its items have actually been measured. The estimated total height is progressively adjusted as items are rendered. |
132
-
| getKey |`(index: number) => any`|| Function that returns the key of an item in the list, which is used to uniquely identify an item. This is useful for dynamic data coming from a database or similar. By default, it's using the item's index. |
138
+
| getKey | `(index: number) => any` | | Function that returns the key of an item in the list, which is used to uniquely identify an item. This is useful for dynamic data coming from a database or similar. By default, it's using the item's index.
139
+
| onAfterScroll | `({ event: ScrollEvent, offset: number }) => any` | | Function that fires after handling the scroll event. Props: `event: ScrollEvent` - The original scroll event, `offset: number` - Either the value of `wrapper.scrollTop` or `wrapper.scrollLeft`
140
+
| onListItemsUpdate |`({ start: number, end: number }) => any`|| Function that fires when the visible items are updated. Props: `start: number` - Index of the first visible item, `end: number` - Index of the last visible item. |
133
141
134
142
_\*`height` must be a number when `scrollDirection` is `'vertical'`. Similarly, `width` must be a number if `scrollDirection` is `'horizontal'`_
135
143
136
-
### Slots
144
+
### Snippets
137
145
138
-
-`item` - Slot for each item
139
-
-Props:
146
+
-`children` - Snippet for each item
147
+
-Prop: `{ index, style }`
140
148
-`index: number` - Item index
141
-
-`style: string` - Item style, must be applied to the slot (look above for example)
142
-
-`header` - Slot for the elements that should appear at the top of the list
143
-
-`footer` - Slot for the elements that should appear at the bottom of the list (e.g. `InfiniteLoading` component from `svelte-infinite-loading`)
144
-
145
-
### Events
146
-
147
-
-`afterScroll` - Fired after handling the scroll event
148
-
-`detail` Props:
149
-
-`event: ScrollEvent` - The original scroll event
150
-
-`offset: number` - Either the value of `wrapper.scrollTop` or `wrapper.scrollLeft`
151
-
-`itemsUpdated` - Fired when the visible items are updated
152
-
-`detail` Props:
153
-
-`start: number` - Index of the first visible item
154
-
-`end: number` - Index of the last visible item
149
+
-`style: string` - Item style, must be applied to the snippet (look above for example)
150
+
-`header` - Snippet for the elements that should appear at the top of the list
151
+
-`footer` - Snippet for the elements that should appear at the bottom of the list (e.g. `InfiniteLoading` component from `svelte-infinite-loading`)
155
152
156
153
### Methods
157
154
@@ -185,9 +182,11 @@ However, if you're passing a function to `itemSize`, that type of comparison is
185
182
itemCount={data.length}
186
183
itemSize={50}
187
184
>
188
-
<div slot="item" let:index let:style {style}>
189
-
Letter: {data[index]}, Row: #{index}
190
-
</div>
185
+
{#snippet children({ style, index })}
186
+
<div {style}>
187
+
Letter: {data[index]}, Row: #{index}
188
+
</div>
189
+
{/snippet}
191
190
</VirtualList>
192
191
```
193
192
@@ -204,9 +203,11 @@ You can style the elements of the virtual list like this:
0 commit comments