Merge branch 'feature/inputField' of https://gitlab.verizon.com/BPHV_MIPS/vds_ios.git into feature/inputField

This commit is contained in:
Matt Bruce 2024-05-06 19:12:23 -05:00
commit e0bf6b0524

View File

@ -69,7 +69,7 @@ open class TileContainerBase<PaddingType: DefaultValuing>: Control where Padding
case secondary
case white
case black
case custom(String)
case custom(UIColor)
private var reflectedValue: String { String(reflecting: self) }
@ -475,8 +475,8 @@ extension TileContainerBase {
return whiteColorConfig.getColor(object.surface)
case .black:
return blackColorConfig.getColor(object.surface)
case .custom(let hexCode):
return UIColor(hexString: hexCode)
case .custom(let color):
return color
}
}
}