Skip to content

TextFieldProps

TextFieldProps = BaseFieldProps & object

Defined in: packages/ui/src/types.ts:746

Props for the TextField read-only display component.

Displays plain text with optional truncation (tooltip on overflow) and copy-to-clipboard functionality. Used by DataTableProps cell renderers for text/varchar columns.

optional copyable: boolean

Whether to show a copy-to-clipboard button.

optional maxLength: number

Maximum display length; longer values are truncated with a tooltip.

value: unknown

Text value to display. Accepts strings or unknown values.

BaseFieldProps for inherited label and className props.