Skip to content

Commit 689bd54

Browse files
committed
feat: start UI overhaul
1 parent 07e389c commit 689bd54

File tree

64 files changed

+673
-166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+673
-166
lines changed
File renamed without changes.

frameworks/react-cra/add-ons/convex/assets/src/routes/demo.convex.tsx renamed to frameworks/react-cra/add-ons/convex/assets/src/routes/demo/convex.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import { createFileRoute } from '@tanstack/react-router'
33
import { useQuery, useMutation } from 'convex/react'
44
import { Trash2, Plus, Check, Circle } from 'lucide-react'
55

6-
import { api } from '../../convex/_generated/api'
7-
import { Id } from '../../convex/_generated/dataModel'
6+
import { api } from '../../../convex/_generated/api'
7+
import { Id } from '../../../convex/_generated/dataModel'
88

99
export const Route = createFileRoute('/demo/convex')({
1010
ssr: false,
File renamed without changes.
File renamed without changes.

frameworks/react-cra/add-ons/db/info.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"dependsOn": ["tanstack-query", "start"],
99
"routes": [
1010
{
11+
"icon": "Database",
1112
"url": "/demo/db-chat",
1213
"name": "DB Chat",
1314
"path": "src/routes/demo.db-chat.tsx",

frameworks/react-cra/add-ons/form/assets/src/components/demo.FormComponents.tsx.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { useStore } from '@tanstack/react-form'
22

3-
import { useFieldContext, useFormContext } from '../hooks/demo.form-context'
3+
import { useFieldContext, useFormContext } from '@/hooks/demo.form-context'
44
<% if (addOnEnabled.shadcn) { %>
55
import { Button } from '@/components/ui/button'
66
import { Input } from '@/components/ui/input'

frameworks/react-cra/add-ons/form/assets/src/routes/demo.form.address.tsx.ejs renamed to frameworks/react-cra/add-ons/form/assets/src/routes/demo/form.address.tsx.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { <% if (fileRouter) { %>createFileRoute<% } else { %>createRoute<% } %> } from '@tanstack/react-router'
22

3-
import { useAppForm } from '../hooks/demo.form'
3+
import { useAppForm } from '@/hooks/demo.form'
44

55
<% if (codeRouter) { %>
66
import type { RootRoute } from '@tanstack/react-router'

frameworks/react-cra/add-ons/form/assets/src/routes/demo.form.simple.tsx.ejs renamed to frameworks/react-cra/add-ons/form/assets/src/routes/demo/form.simple.tsx.ejs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { <% if (fileRouter) { %>createFileRoute<% } else { %>createRoute<% } %> } from '@tanstack/react-router'
22
import { z } from 'zod'
33

4-
import { useAppForm } from '../hooks/demo.form'
4+
import { useAppForm } from '@/hooks/demo.form'
55

66
<% if (codeRouter) { %>
77
import type { RootRoute } from '@tanstack/react-router'

frameworks/react-cra/add-ons/form/info.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,14 @@
77
"link": "https://tanstack.com/form/latest",
88
"routes": [
99
{
10+
"icon": "ClipboardType",
1011
"url": "/demo/form/simple",
1112
"name": "Simple Form",
1213
"path": "src/routes/demo.form.simple.tsx",
1314
"jsName": "FormSimpleDemo"
1415
},
1516
{
17+
"icon": "ClipboardType",
1618
"url": "/demo/form/address",
1719
"name": "Address Form",
1820
"path": "src/routes/demo.form.address.tsx",
File renamed without changes.

0 commit comments

Comments
 (0)