Optional properties for Bool property item
export interface IBlockListPropertyItemOptions extends IPropertyItemOptionsBase { onChange?: (newValue: ReadonlyArray<string>, oldValue: ReadonlyArray<string>) => void;} Copy
export interface IBlockListPropertyItemOptions extends IPropertyItemOptionsBase { onChange?: (newValue: ReadonlyArray<string>, oldValue: ReadonlyArray<string>) => void;}
Optional
Initial enabled state of property item. If undefined, it will default to true.
This callback is called when UI control value is changed.
Optional styling overrides for the item.
Initial visibility state of property item. If undefined, it will default to true.
Optional properties for Bool property item
Source