From e8f0e7828a7b05d2b041109dc6cdf420fcaf2a20 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Mon, 5 Jun 2023 11:57:35 -0500 Subject: [PATCH] added property for isanmiated Signed-off-by: Matt Bruce --- VDS/Components/Checkbox/CheckboxItem.swift | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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 //--------------------------------------------------