form-tanstack-complex.tsx — ui Source File
Architecture documentation for form-tanstack-complex.tsx, a tsx file in the ui codebase. 11 imports, 0 dependents.
Entity Profile
Dependency Diagram
graph LR e531e21d_390d_6e29_d379_d6d7e2e6e5ec["form-tanstack-complex.tsx"] 1d141819_425e_b5fd_4c8e_32f7c6a42cf2["react"] e531e21d_390d_6e29_d379_d6d7e2e6e5ec --> 1d141819_425e_b5fd_4c8e_32f7c6a42cf2 32ce9c09_437f_bced_67c5_ff04d8757a76["react-form"] e531e21d_390d_6e29_d379_d6d7e2e6e5ec --> 32ce9c09_437f_bced_67c5_ff04d8757a76 e750d152_1191_1793_7244_99c7f9c595f4["sonner"] e531e21d_390d_6e29_d379_d6d7e2e6e5ec --> e750d152_1191_1793_7244_99c7f9c595f4 6802ce19_522d_e5fb_e458_8826d9f6952e["zod"] e531e21d_390d_6e29_d379_d6d7e2e6e5ec --> 6802ce19_522d_e5fb_e458_8826d9f6952e 57e86e45_ac6e_7278_be08_9092724e8401["button"] e531e21d_390d_6e29_d379_d6d7e2e6e5ec --> 57e86e45_ac6e_7278_be08_9092724e8401 c6d6139d_ea69_3d79_5004_68419bae2ac0["card"] e531e21d_390d_6e29_d379_d6d7e2e6e5ec --> c6d6139d_ea69_3d79_5004_68419bae2ac0 4f6bcac7_12b3_b724_9762_64ace071aa20["checkbox"] e531e21d_390d_6e29_d379_d6d7e2e6e5ec --> 4f6bcac7_12b3_b724_9762_64ace071aa20 169af77a_46c3_8fec_4801_f34a0f1a3471["field"] e531e21d_390d_6e29_d379_d6d7e2e6e5ec --> 169af77a_46c3_8fec_4801_f34a0f1a3471 a3246e53_c55c_1cf0_424d_b2142e1739ab["radio-group"] e531e21d_390d_6e29_d379_d6d7e2e6e5ec --> a3246e53_c55c_1cf0_424d_b2142e1739ab c2fa7225_1ddd_1cbc_8810_ee5e42af14d6["select"] e531e21d_390d_6e29_d379_d6d7e2e6e5ec --> c2fa7225_1ddd_1cbc_8810_ee5e42af14d6 38ebb3c2_9638_6c9d_8ced_a16ec1ff06c9["switch"] e531e21d_390d_6e29_d379_d6d7e2e6e5ec --> 38ebb3c2_9638_6c9d_8ced_a16ec1ff06c9 style e531e21d_390d_6e29_d379_d6d7e2e6e5ec fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
/* eslint-disable react/no-children-prop */
"use client"
import * as React from "react"
import { useForm } from "@tanstack/react-form"
import { toast } from "sonner"
import * as z from "zod"
import { Button } from "@/registry/new-york-v4/ui/button"
import { Card, CardContent, CardFooter } from "@/registry/new-york-v4/ui/card"
import { Checkbox } from "@/registry/new-york-v4/ui/checkbox"
import {
Field,
FieldContent,
FieldDescription,
FieldError,
FieldGroup,
FieldLabel,
FieldLegend,
FieldSeparator,
FieldSet,
FieldTitle,
} from "@/registry/new-york-v4/ui/field"
import {
RadioGroup,
RadioGroupItem,
} from "@/registry/new-york-v4/ui/radio-group"
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/registry/new-york-v4/ui/select"
import { Switch } from "@/registry/new-york-v4/ui/switch"
const addons = [
{
id: "analytics",
title: "Analytics",
description: "Advanced analytics and reporting",
},
{
id: "backup",
title: "Backup",
description: "Automated daily backups",
},
{
id: "support",
title: "Priority Support",
description: "24/7 premium customer support",
},
] as const
const formSchema = z.object({
plan: z
.string({
required_error: "Please select a subscription plan",
})
.min(1, "Please select a subscription plan")
// ... (254 more lines)
Domain
Subdomains
Functions
Dependencies
- button
- card
- checkbox
- field
- radio-group
- react
- react-form
- select
- sonner
- switch
- zod
Source
Frequently Asked Questions
What does form-tanstack-complex.tsx do?
form-tanstack-complex.tsx is a source file in the ui codebase, written in tsx. It belongs to the ComponentRegistry domain, ChartRegistry subdomain.
What functions are defined in form-tanstack-complex.tsx?
form-tanstack-complex.tsx defines 1 function(s): FormTanstackComplex.
What does form-tanstack-complex.tsx depend on?
form-tanstack-complex.tsx imports 11 module(s): button, card, checkbox, field, radio-group, react, react-form, select, and 3 more.
Where is form-tanstack-complex.tsx in the architecture?
form-tanstack-complex.tsx is located at apps/v4/registry/new-york-v4/examples/form-tanstack-complex.tsx (domain: ComponentRegistry, subdomain: ChartRegistry, directory: apps/v4/registry/new-york-v4/examples).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free