Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 | import * as React from "react"; import { Label } from "@/components/ui/label"; import { Separator } from "@/components/ui/separator"; import { ui } from "@/config/theme"; import { cn } from "@/lib/utils"; function FieldSet({ className, ...props }: React.ComponentProps<"fieldset">) { return ( <fieldset data-slot="field-set" className={cn("flex flex-col gap-6", "has-[>[data-slot=checkbox-group]]:gap-3 has-[>[data-slot=radio-group]]:gap-3", className)} {...props} /> ); } function FieldLegend({ className, variant = "legend", ...props }: React.ComponentProps<"legend"> & { variant?: "legend" | "label" }) { return ( <legend data-slot="field-legend" data-variant={variant} className={cn("mb-3 font-medium", variant === "legend" ? "text-base" : "text-sm", className)} {...props} /> ); } function FieldGroup({ className, ...props }: React.ComponentProps<"div">) { return ( <div data-slot="field-group" className={cn("flex w-full flex-col gap-7 [&>[data-slot=field-group]]:gap-4", className)} {...props} /> ); } function Field({ className, orientation = "vertical", ...props }: React.ComponentProps<"div"> & { orientation?: "vertical" | "horizontal" | "responsive"; }) { return ( <div role="group" data-slot="field" data-orientation={orientation} className={cn( "group/field flex w-full gap-3 data-[invalid=true]:text-destructive", orientation === "vertical" && "flex-col [&>*]:w-full", orientation === "horizontal" && "flex-row items-center [&>[data-slot=field-label]]:min-w-32", orientation === "responsive" && "flex-col md:flex-row md:items-center [&>*]:w-full md:[&>*]:w-auto", className, )} {...props} /> ); } function FieldContent({ className, ...props }: React.ComponentProps<"div">) { return ( <div data-slot="field-content" className={cn("group/field-content flex flex-1 flex-col gap-1.5", className)} {...props} /> ); } function FieldLabel({ className, ...props }: React.ComponentProps<typeof Label>) { return ( <Label data-slot="field-label" className={cn( "group/field-label peer/field-label flex w-fit gap-2 leading-snug group-data-[disabled=true]/field:opacity-50", className, )} {...props} /> ); } function FieldTitle({ className, ...props }: React.ComponentProps<"div">) { return ( <div data-slot="field-label" className={cn( "flex w-fit items-center gap-2 text-sm font-medium leading-snug group-data-[disabled=true]/field:opacity-50", className, )} {...props} /> ); } function FieldDescription({ className, ...props }: React.ComponentProps<"p">) { return ( <p data-slot="field-description" className={cn( ui("fieldDescription"), "[&>a]:underline [&>a]:underline-offset-4 [&>a:hover]:text-primary", className, )} {...props} /> ); } function FieldSeparator({ children, className, ...props }: React.ComponentProps<"div"> & { children?: React.ReactNode; }) { return ( <div data-slot="field-separator" data-content={!!children} className={cn("relative -my-2 h-5 text-sm", className)} {...props} > <Separator className="absolute inset-0 top-1/2" /> {children && ( <span className={cn("relative mx-auto block w-fit bg-background px-2", ui("typographyMuted"))} data-slot="field-separator-content" > {children} </span> )} </div> ); } function FieldError({ className, children, errors, ...props }: React.ComponentProps<"div"> & { errors?: Array<{ message?: string } | undefined>; }) { const content = React.useMemo(() => { if (children) { return children; } if (!errors?.length) { return null; } if (errors.length === 1 && errors[0]?.message) { return errors[0].message; } return ( <ul className="ml-4 flex list-disc flex-col gap-1"> {errors.map((error, index) => (error?.message ? <li key={index}>{error.message}</li> : null))} </ul> ); }, [children, errors]); if (!content) { return null; } return ( <div role="alert" data-slot="field-error" className={cn("text-sm font-normal text-destructive", className)} {...props} > {content} </div> ); } export { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, }; |