Merge branch 'release/20_1_0' of https://gitlab.verizon.com/BPHV_MIPS/mvm_core_ui into release/20_1_0

This commit is contained in:
Matt Bruce 2024-08-09 09:17:13 -05:00
commit 8c1577bb7f
2 changed files with 5 additions and 6 deletions

View File

@ -144,11 +144,6 @@ import VDS
//-------------------------------------------------- //--------------------------------------------------
// MARK: - MoleculeViewProtocol // MARK: - MoleculeViewProtocol
//-------------------------------------------------- //--------------------------------------------------
open func needsToBeConstrained() -> Bool { true }
public func horizontalAlignment() -> UIStackView.Alignment { .leading }
public func updateView(_ size: CGFloat) {} public func updateView(_ size: CGFloat) {}
} }

View File

@ -345,7 +345,11 @@ open class SubNavManagerController: ViewController, MVMCoreViewManagerProtocol,
} }
@objc public func getAccessibilityElements() -> [Any]? { @objc public func getAccessibilityElements() -> [Any]? {
[tabs] //forcing lazy view load to have accessibility elements available in time for the accessibility manager
guard let navigationControllerView = subNavigationController.view else {
return [tabs]
}
return [tabs, navigationControllerView]
} }
open override func observeForResponseJSONUpdates() { open override func observeForResponseJSONUpdates() {