@buildkite/buildkite-sdk
    Preparing search index...

    Interface SelectField

    interface SelectField {
        default?: string | string[];
        hint?: string;
        key: string;
        multiple?: boolean | "true" | "false";
        options: SelectFieldOption[];
        required?: boolean | "true" | "false";
        select?: string;
    }
    Index

    Properties

    default?: string | string[]

    The value of the option(s) that will be pre-selected in the dropdown

    hint?: string

    The explanatory text that is shown after the label

    key: string

    The meta-data key that stores the field's input

    multiple?: boolean | "true" | "false"

    Whether more than one option may be selected

    required?: boolean | "true" | "false"

    Whether the field is required for form submission

    select?: string

    The text input name