Merge branch 'release/8_7_0' into 'develop'
release/8_7_0 hotfix merge See merge request BPHV_MIPS/mvm_core_ui!686
This commit is contained in:
commit
705af36cb6
@ -366,6 +366,12 @@ import UIKit
|
||||
setupTextFieldToolbar()
|
||||
|
||||
if isSelected { startEditing() }
|
||||
|
||||
//Added to override text when view is reloaded.
|
||||
if let text = model.text, !text.isEmpty {
|
||||
regexTextFieldOutputIfAvailable()
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -12,7 +12,7 @@
|
||||
//--------------------------------------------------
|
||||
|
||||
public let leftImage = LoadImageView(pinnedEdges: .all)
|
||||
public let eyebrowHeadlineBodyLink = EyebrowHeadlineBodyLink()
|
||||
public let eyebrowHeadlineBodyLink = EyebrowHeadlineBodyLink(spacing: 2.0)
|
||||
public let rightLabel = Label(fontStyle: .RegularBodySmall)
|
||||
|
||||
public lazy var rightLabelStackItem: StackItem = {
|
||||
|
||||
@ -22,6 +22,16 @@
|
||||
get { return model as? EyebrowHeadlineBodyLinkModel }
|
||||
}
|
||||
|
||||
//--------------------------------------------------
|
||||
// MARK: - Initialization
|
||||
//--------------------------------------------------
|
||||
|
||||
public convenience init(spacing: CGFloat) {
|
||||
self.init(frame: .zero)
|
||||
stack.stackModel?.spacing = spacing
|
||||
stack.restack()
|
||||
}
|
||||
|
||||
//--------------------------------------------------
|
||||
// MARK: - MFViewProtocol
|
||||
//--------------------------------------------------
|
||||
|
||||
Loading…
Reference in New Issue
Block a user