Merge branch 'develop' of https://gitlab.verizon.com/BPHV_MIPS/mvm_core_ui into feature/atomic_vds_line

This commit is contained in:
Scott Pfeil 2023-09-28 18:08:43 -04:00
commit 3f6e1b1baa
2 changed files with 5 additions and 1 deletions

View File

@ -21,7 +21,7 @@ import VDSColorTokens
else { return }
// Set line to the same color as the text
if let color = titleLabel?.textColor?.cgColor {
if let color = titleColor(for: state)?.cgColor {
context.setStrokeColor(color)
}

View File

@ -12,6 +12,7 @@ import MVMCore
public extension UINavigationController {
/// Convenience function for setting the navigation item.
@MainActor
func setNavigationItem(with model: NavigationItemModelProtocol, for viewController: UIViewController, coordinatingWith pageBehaviorController: PageBehaviorHandlerProtocol? = nil) {
let behaviorHandler = pageBehaviorController ?? viewController as? PageBehaviorHandlerProtocol;
@ -33,6 +34,7 @@ public extension UINavigationController {
}
/// Convenience function for setting the navigation buttons.
@MainActor
func setNavigationButtons(with model: NavigationItemModelProtocol, for viewController: UIViewController) {
let delegate = (viewController as? MVMCoreViewControllerProtocol)?.delegateObject?() as? MVMCoreUIDelegateObject
var leftItems: [UIBarButtonItem] = []
@ -60,6 +62,7 @@ public extension UINavigationController {
}
/// Convenience function for setting the navigation titleView.
@MainActor
func setNavigationTitleView(with model: NavigationItemModelProtocol, for viewController: UIViewController, coordinatingWith pageBehaviorController: PageBehaviorHandlerProtocol? = nil) {
guard let titleViewModel = model.titleView else { return }
@ -87,6 +90,7 @@ public extension UINavigationController {
}
/// Convenience function for setting the navigation bar ui
@MainActor
func setNavigationBarUI(with model: NavigationItemModelProtocol) {
let navigationBar = navigationBar
let font = Styler.Font.BoldTitleSmall.getFont(false)