Optional properties for Bool property item
export interface IBoolPropertyItemOptions extends IPropertyItemOptionsBase { checkboxIcon?: string; hiddenLabel?: boolean; onChange?: (newValue: boolean, oldValue: boolean) => void; title?: LocalizedString; tooltip?: BasicTooltipContent; variant?: BoolPropertyItemVariant;} Copy
export interface IBoolPropertyItemOptions extends IPropertyItemOptionsBase { checkboxIcon?: string; hiddenLabel?: boolean; onChange?: (newValue: boolean, oldValue: boolean) => void; title?: LocalizedString; tooltip?: BasicTooltipContent; variant?: BoolPropertyItemVariant;}
Optional
Changes checkbox variant to use a custom icon
Initial enabled state of property item. If undefined, it will default to true.
If true label text will be hidden. It will be visible by default.
This callback is called when UI control value is changed.
Optional styling overrides for the item.
Localized title of the text item.
Tooltip description of the property item
Determines how we display bool as a UI element. If undefined, it will default to Checkbox.
Initial visibility state of property item. If undefined, it will default to true.
Optional properties for Bool property item
Source