cardEntryField needs some specfier changes.

This commit is contained in:
Tondapu, Alekhya 2021-04-12 22:27:26 +05:30
parent 8da5c9d32b
commit ebdf25e24b
2 changed files with 2 additions and 2 deletions

View File

@ -130,7 +130,7 @@ import UIKit
}
/// If you're using a ViewController, you must set this to it
public weak var uiTextFieldDelegate: UITextFieldDelegate? {
open weak var uiTextFieldDelegate: UITextFieldDelegate? {
get { textField.delegate }
set { textField.delegate = newValue }
}

View File

@ -26,7 +26,7 @@
// MARK: - Properties
//--------------------------------------------------
public override class var identifier: String { "textField" }
open override class var identifier: String { "textField" }
public var placeholder: String?
public var enabledTextColor: Color = Color(uiColor: .mvmBlack)