Optional properties for Bool property item

interface IBlockListPropertyItemOptions {
    enable?: boolean;
    onChange?: (
        newValue: readonly string[],
        oldValue: readonly string[],
    ) => void;
    visible?: boolean;
}

Hierarchy (View Summary)

Properties

enable?: boolean

Initial enabled state of property item. If undefined, it will default to true.

onChange?: (newValue: readonly string[], oldValue: readonly string[]) => void

This callback is called when UI control value is changed.

visible?: boolean

Initial visibility state of property item. If undefined, it will default to true.