Fields

Our form builder provides various field types to create dynamic and interactive forms. Each field type comes with common configurations and specific options.

Common Options

All field types share these basic configurations:

OptionTypeDescription
labelstringDisplay text above the field
namestringUnique identifier for the field
requiredbooleanMakes the field mandatory
placeholderstringHint text shown inside the field

Available Fields

Email

The Email field provides a specialized input for collecting email addresses with built-in email format validation. Perfect for gathering user contact information.

available options:

  • fieldType: text
    • name: string
    • placeholder: string
    • required: boolean
    • addToContact: boolean (default: false)

phoneNumber

The phoneNumber field is designed for collecting phone numbers. It includes a built-in phone number format validator to ensure the input is a valid phone number.

available options:

  • fieldType: phoneNumber
    • name: string
    • placeholder: string
    • required: boolean
    • addToContact: boolean (default: false)

Text

The Text field is a basic single-line text input field. It allows users to enter text with a single line of input.

available options:

  • fieldType: text
    • name: string
    • placeholder: string
    • required: boolean

TextArea

The TextArea field is a multi-line text input field. It allows users to enter text with multiple lines of input.

available options:

  • fieldType: textArea
    • name: string
    • placeholder: string
    • required: boolean

Select

The Select field is a dropdown menu that allows users to select an option from a list of predefined choices.

available options:

  • fieldType: select
    • name: string
    • placeholder: string
    • required: boolean
    • options: array of strings (example: [“option1”, “option2”, “option3”])

File

The File field is a file input field that allows users to upload files.

available options:

  • fieldType: file
    • name: string
    • required: boolean

Number

The Number field is a numeric input field that allows users to enter numbers.

available options:

  • fieldType: number
    • name: string
    • placeholder: string
    • required: boolean
    • min: number
    • max: number