Skip to content

Commit

Permalink
feat(virtual): add Angular as a supported framework (#265)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettld authored Aug 29, 2024
1 parent b7e54b4 commit 2793c2a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/libraries/virtual.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export const virtualProject: Library = {
cardStyles: `shadow-xl shadow-purple-700/20 dark:shadow-lg dark:shadow-purple-500/30 text-purple-500 border-2 border-transparent hover:border-current`,
to: '/virtual',
tagline: `Headless UI for Virtualizing Large Element Lists`,
description: `Virtualize only the visible content for massive scrollable DOM nodes at 60FPS in TS/JS, React, Vue, Solid, Svelte & Lit while retaining 100% control over markup and styles.`,
description: `Virtualize only the visible content for massive scrollable DOM nodes at 60FPS in TS/JS, React, Vue, Solid, Svelte, Lit & Angular while retaining 100% control over markup and styles.`,
ogImage: 'https://github.com/tanstack/query/raw/main/media/header.png',
bgStyle: 'bg-purple-500',
textStyle: 'text-purple-500',
Expand All @@ -17,7 +17,7 @@ export const virtualProject: Library = {
colorFrom: 'from-purple-500',
colorTo: 'to-violet-600',
textColor: 'text-purple-600',
frameworks: ['react', 'solid', 'vue', 'svelte', 'lit'],
frameworks: ['react', 'solid', 'vue', 'svelte', 'lit', 'angular'],
defaultDocs: 'framework/react/overview',
scarfId: '32372eb1-91e0-48e7-8df1-4808a7be6b94',
}
5 changes: 3 additions & 2 deletions app/routes/_libraries.virtual.$version.index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ export default function RouteComp() {
lg:text-xl lg:max-w-2xl"
>
Virtualize only the visible DOM nodes within massive scrollable
elements at 60FPS in TS/JS, React, Vue, Solid, Svelte & Lit while
retaining 100% control over markup and styles.
elements at 60FPS in TS/JS, React, Vue, Solid, Svelte, Lit & Angular
while retaining 100% control over markup and styles.
</p>
<Link
to="./docs/introduction"
Expand Down Expand Up @@ -401,6 +401,7 @@ export default function RouteComp() {
{ label: 'Lit', value: 'lit' },
{ label: 'Svelte', value: 'svelte' },
{ label: 'Vue', value: 'vue' },
{ label: 'Angular', value: 'angular' },
] as const
).map((item) => (
<button
Expand Down

0 comments on commit 2793c2a

Please sign in to comment.