Having to set up a simple object (dictionary, name-value array) as an entity property is a common use case.
The PacemNameValueListElement
is tailored to this kind of scenario.
Here's an exemplification of a typical dictionary editing, where names should be unique.
Flag dictionary
is set to true;
If the dictionary
flag is false (default), then the value is interpreted as an array of name / value items (type: { name: string, value: any }
).
Toggling the
dictionary
flag betweentrue
andfalse
makes the component guess the best translation between object and typed array.