DateFieldProps
DateFieldProps =
BaseFieldProps&object
Defined in: packages/ui/src/types.ts:687
Props for the DateField read-only display component.
Formats dates using Intl.DateTimeFormat with support for relative time display.
Used by DataTableProps cell renderers for date/timestamp columns.
Type Declaration
Section titled “Type Declaration”format?
Section titled “format?”
optionalformat:"short"|"long"|"relative"|"datetime"
Display format. Defaults to “short”.
locale?
Section titled “locale?”
optionallocale:string
Locale for date formatting. Defaults to “en”.
value:
unknown
Date value to display. Accepts Date objects, ISO strings, timestamps, or unknown values.
BaseFieldProps for inherited label and className props.