@companion-surface/base
    Preparing search index...

    Interface CompanionInputFieldStaticText

    A static un-editable line of text

    {
    id: 'important-line',
    type: 'static-text',
    label: 'Important info',
    value: 'Some message here'
    }
    interface CompanionInputFieldStaticText {
        description?: string;
        id: string;
        isVisibleExpression?: string;
        label: string;
        tooltip?: string;
        type: "static-text";
        value: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    description?: string

    A longer description/summary/notes for this field

    id: string

    The unique id of this input field within the input group

    isVisibleExpression?: string

    A companion expression to check whether this input should be visible, based on the current options selections within the input group

    This is the same syntax as other expressions written inside of Comapnion. You can access a value of the current options using $(options:some_field_id). This does not support the isVisibleData property, let us know if you need this.

    label: string

    The label of the field

    tooltip?: string

    A hover tooltip for this field

    type: "static-text"

    The type of this input field

    value: string

    The text to show