FieldHear() — ui Function Reference
Architecture documentation for the FieldHear() function in field-hear.tsx from the ui codebase.
Entity Profile
Dependency Diagram
graph TD 0ace653e_a246_43bf_8b3d_6376de2e2bbd["FieldHear()"] 9e077c76_f79e_4486_5f42_a2e8dd873771["field-hear.tsx"] 0ace653e_a246_43bf_8b3d_6376de2e2bbd -->|defined in| 9e077c76_f79e_4486_5f42_a2e8dd873771 style 0ace653e_a246_43bf_8b3d_6376de2e2bbd fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
apps/v4/app/(app)/(root)/components/field-hear.tsx lines 33–72
export function FieldHear() {
return (
<Card className="py-4 shadow-none">
<CardContent className="px-4">
<form>
<FieldGroup>
<FieldSet className="gap-4">
<FieldLegend>How did you hear about us?</FieldLegend>
<FieldDescription className="line-clamp-1">
Select the option that best describes how you heard about us.
</FieldDescription>
<FieldGroup className="flex flex-row flex-wrap gap-2 [--radius:9999rem]">
{options.map((option) => (
<FieldLabel
htmlFor={option.value}
key={option.value}
className="!w-fit"
>
<Field
orientation="horizontal"
className="gap-1.5 overflow-hidden px-3! py-1.5! transition-all duration-100 ease-linear group-has-data-[state=checked]/field-label:px-2!"
>
<Checkbox
value={option.value}
id={option.value}
defaultChecked={option.value === "social-media"}
className="-ml-6 -translate-x-1 rounded-full transition-all duration-100 ease-linear data-[state=checked]:ml-0 data-[state=checked]:translate-x-0"
/>
<FieldTitle>{option.label}</FieldTitle>
</Field>
</FieldLabel>
))}
</FieldGroup>
</FieldSet>
</FieldGroup>
</form>
</CardContent>
</Card>
)
}
Domain
Subdomains
Source
Frequently Asked Questions
What does FieldHear() do?
FieldHear() is a function in the ui codebase, defined in apps/v4/app/(app)/(root)/components/field-hear.tsx.
Where is FieldHear() defined?
FieldHear() is defined in apps/v4/app/(app)/(root)/components/field-hear.tsx at line 33.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free