rolaback
This commit is contained in:
parent
6ca54fce6a
commit
dcf168b53e
@ -215,9 +215,6 @@ import UIKit
|
|||||||
feedbackLabelTrailing = layoutMarginsGuide.trailingAnchor.constraint(equalTo: feedbackLabel.trailingAnchor)
|
feedbackLabelTrailing = layoutMarginsGuide.trailingAnchor.constraint(equalTo: feedbackLabel.trailingAnchor)
|
||||||
feedbackLabelTrailing?.isActive = true
|
feedbackLabelTrailing?.isActive = true
|
||||||
layoutMarginsGuide.bottomAnchor.constraint(equalTo: feedbackLabel.bottomAnchor).isActive = true
|
layoutMarginsGuide.bottomAnchor.constraint(equalTo: feedbackLabel.bottomAnchor).isActive = true
|
||||||
|
|
||||||
container.trailingAnchor.constraint(equalTo: dropDownCaretView.trailingAnchor, constant: 16).isActive = true
|
|
||||||
dropDownCaretView.centerYAnchor.constraint(equalTo: container.centerYAnchor).isActive = true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@objc open override func layoutSubviews() {
|
@objc open override func layoutSubviews() {
|
||||||
|
|||||||
@ -79,9 +79,7 @@ import UIKit
|
|||||||
|
|
||||||
if error {
|
if error {
|
||||||
textField.accessibilityValue = String(format: MVMCoreUIUtility.hardcodedString(withKey: "textfield_error_message") ?? "", textField.text ?? "", errorMessage ?? "")
|
textField.accessibilityValue = String(format: MVMCoreUIUtility.hardcodedString(withKey: "textfield_error_message") ?? "", textField.text ?? "", errorMessage ?? "")
|
||||||
errorIconWidthContraint?.constant = 20
|
|
||||||
} else {
|
} else {
|
||||||
errorIconWidthContraint?.constant = 0
|
|
||||||
textField.accessibilityValue = nil
|
textField.accessibilityValue = nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -143,7 +141,6 @@ import UIKit
|
|||||||
//--------------------------------------------------
|
//--------------------------------------------------
|
||||||
|
|
||||||
public var textFieldTrailingConstraint: NSLayoutConstraint?
|
public var textFieldTrailingConstraint: NSLayoutConstraint?
|
||||||
public var errorIconWidthContraint: NSLayoutConstraint?
|
|
||||||
|
|
||||||
//--------------------------------------------------
|
//--------------------------------------------------
|
||||||
// MARK: - Initializers
|
// MARK: - Initializers
|
||||||
|
|||||||
@ -17,7 +17,7 @@ open class DoughnutChart: View {
|
|||||||
public var doughnutLayer = CALayer()
|
public var doughnutLayer = CALayer()
|
||||||
public var titleLabel = Label.createLabelBoldTitleLarge(true)
|
public var titleLabel = Label.createLabelBoldTitleLarge(true)
|
||||||
public var subTitleLabel = Label.createLabelRegularMicro(true)
|
public var subTitleLabel = Label.createLabelRegularMicro(true)
|
||||||
public var labelContainer = View()
|
public var labelContainer = MVMCoreUICommonViewsUtility.commonView()
|
||||||
public static let heightConstant: CGFloat = 136
|
public static let heightConstant: CGFloat = 136
|
||||||
private var sizeObject = MFStyler.sizeObjectGeneric(forCurrentDevice: heightConstant)!
|
private var sizeObject = MFStyler.sizeObjectGeneric(forCurrentDevice: heightConstant)!
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user