dtkt.protoui.v1beta1protoui.proto

DescriptionList

Message

Render as a description list (key-value pairs). Maps to DescriptionList in @dtkt/ui/description-list Use CEL expressions to generate a list of [term, description] tuples. The message or field is available as this in the expression context. Example: [["Name", this.name], ["Email", this.email], ["Status", this.is_active ? "Active" : "Inactive"]]

FieldTypeNumberDescription
itemsstring1

CEL expression that evaluates to a list of 2-element lists (tuples) where:

  • First element is the term/label (string)
  • Second element is the description/value (string) Context: this is the message or field being rendered. If not specified, uses the field value directly (expects map or message).