@sheerid/jslib
    Preparing search index...

    Interface CustomFormFieldConfig

    interface CustomFormFieldConfig {
        disabled?: boolean;
        fieldId: string;
        fieldType: "text" | "checkbox" | "date" | "radio" | "select" | "dateYm";
        hidden?: boolean;
        options?: string[];
        required?: boolean;
        requireIfOptional?: boolean;
        showPlaceholderAndHideLabel?: boolean;
        validate: (value: string | boolean) => string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    disabled?: boolean
    fieldId: string
    fieldType: "text" | "checkbox" | "date" | "radio" | "select" | "dateYm"
    hidden?: boolean
    options?: string[]
    required?: boolean
    requireIfOptional?: boolean
    showPlaceholderAndHideLabel?: boolean
    validate: (value: string | boolean) => string