diff --git a/VDS/Components/Checkbox/CheckboxItem.swift b/VDS/Components/Checkbox/CheckboxItem.swift index d580d87a..675aa7cc 100644 --- a/VDS/Components/Checkbox/CheckboxItem.swift +++ b/VDS/Components/Checkbox/CheckboxItem.swift @@ -11,7 +11,11 @@ import UIKit /// Checkboxes are a multi-select component through which a customer indicates a choice. If a binary choice, the component is a checkbox. If the choice has multiple options, the component is a ``CheckboxGroup``. @objc(VDSCheckboxItem) open class CheckboxItem: SelectorItemBase { - + //-------------------------------------------------- + // MARK: - Properties + //-------------------------------------------------- + open var isAnimated: Bool = false { didSet { setNeedsUpdate() }} + //-------------------------------------------------- // MARK: - Initializers //--------------------------------------------------