From e3f807b476abee18876131770f9b9713b1057352 Mon Sep 17 00:00:00 2001 From: "Murugan, Vimal" Date: Wed, 10 Jun 2020 18:21:44 +0530 Subject: [PATCH 1/3] update method to open --- MVMCoreUI/Containers/Views/ContainerModel.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCoreUI/Containers/Views/ContainerModel.swift b/MVMCoreUI/Containers/Views/ContainerModel.swift index ea7d8012..9e1b3fa8 100644 --- a/MVMCoreUI/Containers/Views/ContainerModel.swift +++ b/MVMCoreUI/Containers/Views/ContainerModel.swift @@ -44,7 +44,7 @@ open class ContainerModel: ContainerModelProtocol, Codable { //-------------------------------------------------- /// Sets the default values. Should be called on init. - public func setDefaults() {} + open func setDefaults() {} //-------------------------------------------------- // MARK: - Initializers From c1dcec452dc58b61883c26ef78a4147629c59529 Mon Sep 17 00:00:00 2001 From: "Pfeil, Scott Robert" Date: Wed, 10 Jun 2020 09:01:33 -0400 Subject: [PATCH 2/3] wrong key fix --- MVMCoreUI/Atomic/Templates/MoleculeStackTemplate.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCoreUI/Atomic/Templates/MoleculeStackTemplate.swift b/MVMCoreUI/Atomic/Templates/MoleculeStackTemplate.swift index 2bb5ec31..3d47ae3f 100644 --- a/MVMCoreUI/Atomic/Templates/MoleculeStackTemplate.swift +++ b/MVMCoreUI/Atomic/Templates/MoleculeStackTemplate.swift @@ -57,7 +57,7 @@ open class MoleculeStackTemplate: ThreeLayerViewController, TemplateProtocol { moleculeStackModel.useStackSpacingBeforeFirstItem = true for stackItem in moleculeStackModel.molecules { guard let stackItem = stackItem as? MoleculeStackItemModel, - stackItem.horizontalAlignment == nil else { continue } + stackItem.useHorizontalMargins == nil else { continue } stackItem.useHorizontalMargins = true } stack.set(with: moleculeStackModel, delegateObject() as? MVMCoreUIDelegateObject, nil) From b73774a7c88f17c62a2612f85329daa727547aba Mon Sep 17 00:00:00 2001 From: Kevin G Christiano Date: Wed, 10 Jun 2020 09:22:04 -0400 Subject: [PATCH 3/3] correction for bold --- MVMCoreUI/Styles/Styler.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/MVMCoreUI/Styles/Styler.swift b/MVMCoreUI/Styles/Styler.swift index 43e4d319..1229a146 100644 --- a/MVMCoreUI/Styles/Styler.swift +++ b/MVMCoreUI/Styles/Styler.swift @@ -95,9 +95,7 @@ open class Styler { public func isBold() -> Bool { switch self { - case .Title2XLarge, - .TitleXLarge, - .RegularTitleLarge, + case .RegularTitleLarge, .RegularTitleMedium, .RegularBodyLarge, .RegularBodySmall, @@ -107,7 +105,9 @@ open class Styler { .B20: return false - case .BoldTitleLarge, + case .Title2XLarge, + .TitleXLarge, + .BoldTitleLarge, .BoldTitleMedium, .BoldBodyLarge, .BoldBodySmall,