updated as per review comments

This commit is contained in:
Damodaram 2020-11-02 19:47:17 +05:30
parent 3b7bcfee1d
commit 3149d0e145
2 changed files with 10 additions and 6 deletions

View File

@ -1546,8 +1546,8 @@
AA69AAF52445BF5700AF3D3B /* ListLeftVariableCheckboxBodyText.swift */,
522679C023FE886900906CBA /* ListLeftVariableCheckboxAllTextAndLinksModel.swift */,
522679BF23FE886900906CBA /* ListLeftVariableCheckboxAllTextAndLinks.swift */,
BB3BC12D2550094500297977 /* ListLeftVariableIconWithRightCaretAllTextLinks.swift */,
BB3BC12E2550094500297977 /* ListLeftVariableIconWithRightCaretAllTextLinksModel.swift */,
BB3BC12D2550094500297977 /* ListLeftVariableIconWithRightCaretAllTextLinks.swift */,
8D24041423E7FC0B009E23BE /* ListLeftVariableIconWithRightCaretModel.swift */,
8D24041023E7FB9E009E23BE /* ListLeftVariableIconWithRightCaret.swift */,
AA0A257724766C8A00862F64 /* ListLeftVariableIconWithRightCaretBodyTextModel.swift */,

View File

@ -20,11 +20,13 @@
}()
public lazy var stack: Stack<StackModel> = {
return Stack<StackModel>.createStack(with: [
(view: leftImage, model: StackItemModel(horizontalAlignment: .fill)),
(view: eyebrowHeadlineBodyLink, model: StackItemModel(horizontalAlignment: .fill)),
(view: rightLabelStackItem, model: StackItemModel(horizontalAlignment: .fill,verticalAlignment: .top))],
axis: .horizontal)
return Stack<StackModel>(with: StackModel(molecules: [StackItemModel(horizontalAlignment: .fill),
StackItemModel(horizontalAlignment: .fill),
StackItemModel(horizontalAlignment: .fill,verticalAlignment: .top)],
axis: .horizontal), stackItems: [StackItem(andContain: leftImage), StackItem(andContain: eyebrowHeadlineBodyLink), rightLabelStackItem])
}()
open override func alignAccessoryToHero() -> CGPoint? {
@ -110,6 +112,7 @@
} else {
// Only link. Manually add accessibility elements to ensure they are read in the right order.
var elements: [Any] = []
elements.append(leftImage)
if let otherElements = eyebrowHeadlineBodyLink.getAccessibilityElements() {
elements.append(otherElements)
}
@ -120,3 +123,4 @@
}
}
}