Member Junction
    Preparing search index...

    Text input question types. Supports single-line text, multi-line textarea, and email validation.

    interface TextQuestionType {
        markdown?: boolean;
        maxLength?: number;
        placeholder?: string;
        type: "text" | "textarea" | "email";
    }
    Index

    Properties

    markdown?: boolean

    Textarea only: when true, the UI renders the current value as formatted Markdown (headings, lists, bold, tables, code) with an Edit toggle that swaps to the raw textarea. Used for rich agent-authored content the human reviews more than types — e.g. the Plan Mode approval form.

    maxLength?: number

    Maximum number of characters allowed

    placeholder?: string

    Optional placeholder text shown in empty input

    type: "text" | "textarea" | "email"

    Type of text input:

    • 'text': Single-line text input
    • 'textarea': Multi-line text input
    • 'email': Email validation applied