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

    Interface InputField

    An Input field to take input from the user.

    interface InputField {
        help_text?: string;
        label: string;
        multiple?: boolean;
        name: string;
        options?: { name?: string; value: string }[];
        placeholder: string;
        required: boolean;
        type: string;
    }
    Index

    Properties

    help_text?: string

    The help text for the field.

    label: string

    The label of the field.

    multiple?: boolean

    Whether the field accepts multiple values.

    name: string

    Key name of the field.

    options?: { name?: string; value: string }[]

    The options for the field.

    placeholder: string

    The placeholder of the field.

    required: boolean

    Whether the field is required.

    type: string

    Input type of the field.