Skip to content

Commit 9f89211

Browse files
authoredJul 3, 2024··
docs: add documentation links to Lit Virtual (#747)
1 parent 36faca8 commit 9f89211

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed
 

‎docs/config.json

+13
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,19 @@
173173
"label": "Scroll Padding"
174174
}
175175
]
176+
},
177+
{
178+
"label": "lit",
179+
"children": [
180+
{
181+
"to": "framework/lit/examples/fixed",
182+
"label": "Fixed"
183+
},
184+
{
185+
"to": "framework/lit/examples/dynamic",
186+
"label": "Dynamic"
187+
}
188+
]
176189
}
177190
]
178191
}

‎docs/installation.md

+6
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,12 @@ $ npm install @tanstack/svelte-virtual
3030
$ npm install @tanstack/vue-virtual
3131
```
3232

33+
## Lit Virtual
34+
35+
```bash
36+
$ npm install @tanstack/lit-virtual
37+
```
38+
3339
## Virtual Core (no framework)
3440

3541
```bash

‎docs/introduction.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Introduction
33
---
44

5-
TanStack Virtual is a headless UI utility for virtualizing long lists of elements in JS/TS, React, Vue, Svelte and Solid. It is not a component therefore does not ship with or render any markup or styles for you. While this requires a bit of markup and styles from you, you will retain 100% control over your styles, design and implementation.
5+
TanStack Virtual is a headless UI utility for virtualizing long lists of elements in JS/TS, React, Vue, Svelte, Solid and Lit. It is not a component therefore does not ship with or render any markup or styles for you. While this requires a bit of markup and styles from you, you will retain 100% control over your styles, design and implementation.
66

77
## The Virtualizer
88

0 commit comments

Comments
 (0)
Please sign in to comment.