@cobaltio/cobalt-js
    Preparing search index...

    Interface ConfigField

    interface ConfigField {
        associated_page?: string;
        field_type: string;
        help_text?: string;
        hidden?: boolean;
        id: string;
        labels?: { name?: string; value: string }[];
        multiple?: boolean;
        name: string;
        options?: { name?: string; value: string }[];
        parent?: string;
        placeholder?: string;
        required?: boolean;
        value?: any;
    }
    Index

    Properties

    associated_page?: string

    The page this field is associated with.

    field_type: string
    help_text?: string

    The help text for the field.

    hidden?: boolean
    id: string
    labels?: { name?: string; value: string }[]
    multiple?: boolean
    name: string
    options?: { name?: string; value: string }[]
    parent?: string
    placeholder?: string

    The placeholder for the field.

    required?: boolean
    value?: any