interface IPropertyItemOptionsDataPicker {
    allowedEntries?: string[];
    enable?: boolean;
    onChange?: OnChangeCallback<PropertyBag, string>;
    title?: string;
    visible?: boolean;
}

Hierarchy (View Summary)

Properties

allowedEntries?: string[]

Used to hold the entries allowed in the block/entity picker

enable?: boolean

If the item is enabled in the UI.

onChange?: OnChangeCallback<PropertyBag, string>

Callback to execute when the value is updated.

title?: string

Localized title of the property item

visible?: boolean

If the item should be visible in the UI.