Merge branch 'feature/ONEAPP-2008' into 'develop'

Made model class as open & properties

### Summary
Made model class as open & property as class so that subclasses can override.

### JIRA Ticket
https://onejira.verizon.com/browse/ONEAPP-2008

Co-authored-by: Krishna Kishore Bandaru <krishna.kishore.bandaru@verizon.com>

See merge request https://gitlab.verizon.com/BPHV_MIPS/mvm_core_ui/-/merge_requests/937
This commit is contained in:
Pfeil, Scott Robert 2023-03-07 21:15:45 +00:00
commit 3e5f01d42a

View File

@ -15,8 +15,8 @@ public enum CheckboxPosition: String, Codable {
case bottom
}
@objcMembers public class CheckboxLabelModel: MoleculeModelProtocol {
public static var identifier: String = "checkboxLabel"
@objcMembers open class CheckboxLabelModel: MoleculeModelProtocol {
open class var identifier: String { "checkboxLabel" }
public var moleculeName: String = CheckboxLabelModel.identifier
public var backgroundColor: Color?
public var checkboxAlignment: CheckboxPosition?