String field within a form.

Type Parameters

Hierarchy

Properties

helperText?: string

Helper text.

key: string

The property key that this field value will appear in the returned form object.

label?: string

Input label.

type: "string"

Field data type.

validation?: Partial<{
    length: ValidationEntry<number>;
    match: ValidationEntry<string>;
    max: ValidationEntry<number>;
    min: ValidationEntry<number>;
    required: ValidationEntry<any>;
}>

Validation rules used to validate user input.

value?: string

Default value for field, and where it will be written to

widget: W

What input widget is used.

Default

StringWidgets StringWidgets

Generated using TypeDoc