From 7566d9365936973fcc0d0fc863bebb589322f135 Mon Sep 17 00:00:00 2001 From: Sumanth Nadigadda Date: Wed, 30 Jun 2021 18:51:41 +0530 Subject: [PATCH 1/2] Registering PlayAudio, SelectAllBoxes behaviors --- MVMCoreUI/OtherHandlers/CoreUIModelMapping.swift | 2 ++ 1 file changed, 2 insertions(+) diff --git a/MVMCoreUI/OtherHandlers/CoreUIModelMapping.swift b/MVMCoreUI/OtherHandlers/CoreUIModelMapping.swift index 5cf71a75..be621811 100644 --- a/MVMCoreUI/OtherHandlers/CoreUIModelMapping.swift +++ b/MVMCoreUI/OtherHandlers/CoreUIModelMapping.swift @@ -222,6 +222,8 @@ open class CoreUIModelMapping: ModelMapping { open class func registerBehaviors() { ModelRegistry.register(handler: ScreenBrightnessModifierBehavior.self, for: ScreenBrightnessModifierBehaviorModel.self) ModelRegistry.register(handler: PageGetContactBehavior.self, for: PageGetContactBehaviorModel.self) + ModelRegistry.register(handler: PagePlayAudioBehavior.self, for: PagePlayAudioBehaviorModel.self) + ModelRegistry.register(handler: SelectAllBoxesBehavior.self, for: SelectAllBoxesBehaviorModel.self) } open override class func registerActions() { From 495eb1d4bd2838f06ade6f4500c7600249986187 Mon Sep 17 00:00:00 2001 From: Sumanth Nadigadda Date: Thu, 1 Jul 2021 11:56:12 +0530 Subject: [PATCH 2/2] Making ListLeftVariableIconWithRightCaretBodyTextModel class open to subclass --- .../ListLeftVariableIconWithRightCaretBodyTextModel.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/LeftVariable/ListLeftVariableIconWithRightCaretBodyTextModel.swift b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/LeftVariable/ListLeftVariableIconWithRightCaretBodyTextModel.swift index 5076eb9e..9e93b01d 100644 --- a/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/LeftVariable/ListLeftVariableIconWithRightCaretBodyTextModel.swift +++ b/MVMCoreUI/Atomic/Molecules/DesignedComponents/List/LeftVariable/ListLeftVariableIconWithRightCaretBodyTextModel.swift @@ -7,12 +7,12 @@ // -public class ListLeftVariableIconWithRightCaretBodyTextModel: ListItemModel, MoleculeModelProtocol { +open class ListLeftVariableIconWithRightCaretBodyTextModel: ListItemModel, MoleculeModelProtocol { //----------------------------------------------------- // MARK: - Properties //----------------------------------------------------- - public static var identifier: String = "listLVImgBdy" + open class var identifier: String { return "listLVImgBdy" } public var image: ImageViewModel public var headlineBody: HeadlineBodyModel public var rightLabel: LabelModel