checkbox-form-single.json — ui Source File
Architecture documentation for checkbox-form-single.json, a json file in the ui codebase.
Entity Profile
Source Code
{
"$schema": "https://ui.shadcn.com/schema/registry-item.json",
"name": "checkbox-form-single",
"registryDependencies": [
"checkbox",
"form"
],
"files": [
{
"path": "registry/new-york-v4/examples/checkbox-form-single.tsx",
"content": "\"use client\"\n\nimport Link from \"next/link\"\nimport { zodResolver } from \"@hookform/resolvers/zod\"\nimport { useForm } from \"react-hook-form\"\nimport { toast } from \"sonner\"\nimport { z } from \"zod\"\n\nimport { Button } from \"@/registry/new-york-v4/ui/button\"\nimport { Checkbox } from \"@/registry/new-york-v4/ui/checkbox\"\nimport {\n Form,\n FormControl,\n FormDescription,\n FormField,\n FormItem,\n FormLabel,\n} from \"@/registry/new-york-v4/ui/form\"\n\nconst FormSchema = z.object({\n mobile: z.boolean().default(false).optional(),\n})\n\nexport default function CheckboxReactHookFormSingle() {\n const form = useForm<z.infer<typeof FormSchema>>({\n resolver: zodResolver(FormSchema),\n defaultValues: {\n mobile: true,\n },\n })\n\n function onSubmit(data: z.infer<typeof FormSchema>) {\n toast(\"You submitted the following values\", {\n description: (\n <pre className=\"mt-2 w-[320px] rounded-md bg-neutral-950 p-4\">\n <code className=\"text-white\">{JSON.stringify(data, null, 2)}</code>\n </pre>\n ),\n })\n }\n\n return (\n <Form {...form}>\n <form\n onSubmit={form.handleSubmit(onSubmit)}\n className=\"flex flex-col items-start gap-4\"\n >\n <FormField\n control={form.control}\n name=\"mobile\"\n render={({ field }) => (\n <FormItem className=\"flex flex-row items-start gap-2 rounded-md border p-4 shadow-sm\">\n <FormControl>\n <Checkbox\n checked={field.value}\n onCheckedChange={field.onChange}\n />\n </FormControl>\n <div className=\"space-y-1 leading-none\">\n <FormLabel>\n Use different settings for my mobile devices\n </FormLabel>\n <FormDescription>\n You can manage your mobile notifications in the{\" \"}\n <Link href=\"/examples/forms\">mobile settings</Link> page.\n </FormDescription>\n </div>\n </FormItem>\n )}\n />\n <Button type=\"submit\">Submit</Button>\n </form>\n </Form>\n )\n}\n",
"type": "registry:example"
}
],
"type": "registry:example"
}
Source
Frequently Asked Questions
What does checkbox-form-single.json do?
checkbox-form-single.json is a source file in the ui codebase, written in json.
Where is checkbox-form-single.json in the architecture?
checkbox-form-single.json is located at apps/v4/public/r/styles/new-york-v4/checkbox-form-single.json (directory: apps/v4/public/r/styles/new-york-v4).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free