Merge branch 'feature/audio_player_behavior' of gitlab.verizon.com:BPHV_MIPS/mvm_core_ui into feature/audio_player_behavior

This commit is contained in:
Kevin G Christiano 2021-07-06 14:19:51 -04:00
commit 8aec0c14c9
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -222,6 +222,7 @@ 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)
}