opening few properties
This commit is contained in:
parent
f2f9d5d0d7
commit
c999f6f777
@ -14,10 +14,10 @@ open class ItemDropdownEntryField: BaseDropdownEntryField {
|
||||
// MARK: - Properties
|
||||
//--------------------------------------------------
|
||||
|
||||
public var pickerData: [String] = []
|
||||
public var pickerView: UIPickerView?
|
||||
open var pickerData: [String] = []
|
||||
open var pickerView: UIPickerView?
|
||||
|
||||
public var componentsCount = 1
|
||||
open var componentsCount = 1
|
||||
|
||||
/// When selecting for first responder, allow initial selected value to appear in empty text field.
|
||||
public var setInitialValueInTextField = true
|
||||
|
||||
@ -24,7 +24,7 @@ import UIKit
|
||||
// MARK: - Outlets
|
||||
//--------------------------------------------------
|
||||
|
||||
public private(set) var textField: TextField = {
|
||||
open private(set) var textField: TextField = {
|
||||
let textField = TextField(frame: .zero)
|
||||
textField.isAccessibilityElement = true
|
||||
textField.setContentCompressionResistancePriority(.required, for: .vertical)
|
||||
@ -71,7 +71,7 @@ import UIKit
|
||||
}
|
||||
|
||||
/// The text of this TextField.
|
||||
public override var text: String? {
|
||||
open override var text: String? {
|
||||
get { return textField.text }
|
||||
set {
|
||||
textField.text = newValue
|
||||
|
||||
Loading…
Reference in New Issue
Block a user