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.
Type Declaration
Section titled “Type Declaration”copyable?
Section titled “copyable?”
optionalcopyable:boolean
Whether to show a copy-to-clipboard button.
maxLength?
Section titled “maxLength?”
optionalmaxLength: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.