ImageFieldProps
ImageFieldProps =
BaseFieldProps&object
Defined in: packages/ui/src/types.ts:792
Props for the ImageField read-only display component.
Renders an image thumbnail, resolving signed URLs from @cfast/storage when
a storage configuration is provided. Used by DataTableProps cell
renderers for image columns.
Type Declaration
Section titled “Type Declaration”
optionalalt:string
Alt text for the image element.
height?
Section titled “height?”
optionalheight:number
Display height in pixels. Defaults to 60.
storage?
Section titled “storage?”
optionalstorage:unknown
Storage configuration for signed URL resolution.
value:
string|null|undefined
Image URL or storage key.
width?
Section titled “width?”
optionalwidth:number
Display width in pixels. Defaults to 80.
- ImagePreviewProps for the standalone image preview component.
- BaseFieldProps for inherited label and className props.