HtmlElement: FormElementBase & {
    defaultValue: string;
    type: "html";
}

An element to display information to the user. Also know as the "Information Form Element".

The HTML to display should be the value of the defaultValue property.

The element must have an id property that contains a universally unique identifier (UUID). The identifier must be a Version 4 (V4) UUID and must conform to the formatting requirements defined in this RFC 9562 specification: https://www.rfc-editor.org/rfc/rfc9562.html

Type declaration

  • defaultValue: string

    Also know as the "Information Form Element"

    This value should be valid HTML. It will be displayed to users when completing the form.

    The label property will not be displayed on the form.

    Other form element's values can be injected into the HTML using the following syntax: {ELEMENT:elementName}. The elementName part must match the name property of an element on the form.

  • type: "html"