Skip to content

Commit

Permalink
feat: tanstack lit table links
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed May 16, 2024
1 parent 31959c6 commit 1be72bb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion app/components/DocsLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -407,8 +407,10 @@ export function DocsLayout({
? 'text-fuchsia-500'
: child.badge === 'qwik'
? 'text-indigo-500'
: child.badge === 'lit'
? 'text-emerald-500'
: child.badge === 'vanilla'
? 'text-gray-300'
? 'text-yellow-500'
: 'text-gray-500'
}`}
>
Expand Down
4 changes: 2 additions & 2 deletions app/libraries/table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const tableProject: Library = {
cardStyles: `shadow-xl shadow-blue-700/20 dark:shadow-lg dark:shadow-blue-500/30 text-blue-500 border-2 border-transparent hover:border-current`,
to: '/table',
tagline: `Headless UI for building powerful tables & datagrids`,
description: `Supercharge your tables or build a datagrid from scratch for TS/JS, React, Vue, Solid, Svelte, Qwik, and Angular while retaining 100% control over markup and styles.`,
description: `Supercharge your tables or build a datagrid from scratch for TS/JS, React, Vue, Solid, Svelte, Qwik, Angular, and Lit while retaining 100% control over markup and styles.`,
ogImage: 'https://github.com/tanstack/table/raw/main/media/repo-header.png',
bgStyle: 'bg-blue-500',
textStyle: 'text-blue-500',
Expand All @@ -18,7 +18,7 @@ export const tableProject: Library = {
colorFrom: 'from-teal-500',
colorTo: 'to-blue-600',
textColor: 'text-blue-600',
frameworks: ['angular', 'qwik', 'react', 'solid', 'svelte', 'vue', 'vanilla'],
frameworks: ['angular', 'lit', 'qwik', 'react', 'solid', 'svelte', 'vue', 'vanilla'],
scarfId: 'dc8b39e1-3fe9-4f3a-8e56-d4e2cf420a9e',
defaultDocs: 'framework/react/overview',
handleRedirects: (href) => {
Expand Down
1 change: 1 addition & 0 deletions app/routes/_libraries.table.$version.index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,7 @@ export default function TableVersionIndex() {
{(
[
{ label: 'Angular', value: 'angular' },
{ label: 'Lit', value: 'lit' },
{ label: 'Qwik', value: 'qwik' },
{ label: 'React', value: 'react' },
{ label: 'Solid', value: 'solid' },
Expand Down

0 comments on commit 1be72bb

Please sign in to comment.