Merge branch 'bugfix/updateResetToOpen' into 'develop'

changing public to open

See merge request BPHV_MIPS/vds_ios!42
This commit is contained in:
Bruce, Matt R 2023-02-21 18:43:19 +00:00
commit 434d97a6a7
13 changed files with 13 additions and 13 deletions

View File

@ -44,7 +44,7 @@ public class SelectorGroupHandlerBase<HandlerType: Control>: Control {
} }
} }
public override func reset() { open override func reset() {
super.reset() super.reset()
selectorViews.forEach{ $0.reset() } selectorViews.forEach{ $0.reset() }
} }

View File

@ -78,7 +78,7 @@ public class Badge: View, Accessable {
} }
public override func reset() { open override func reset() {
super.reset() super.reset()
label.reset() label.reset()
label.lineBreakMode = .byTruncatingTail label.lineBreakMode = .byTruncatingTail

View File

@ -51,7 +51,7 @@ public class Icon: View {
backgroundColor = .clear backgroundColor = .clear
} }
public override func reset() { open override func reset() {
super.reset() super.reset()
color = .black color = .black
imageView.image = nil imageView.image = nil

View File

@ -220,7 +220,7 @@ open class RadioBoxBase: Control, Accessable, DataTrackable{
} }
} }
public override func reset() { open override func reset() {
super.reset() super.reset()
textLabel.reset() textLabel.reset()
subTextLabel.reset() subTextLabel.reset()

View File

@ -263,7 +263,7 @@ open class RadioButtonBase: Control, Accessable, DataTrackable, Errorable {
} }
public override func reset() { open override func reset() {
super.reset() super.reset()
label.reset() label.reset()
childLabel.reset() childLabel.reset()

View File

@ -120,7 +120,7 @@ open class RadioSwatchBase: Control, Accessable, DataTrackable {
} }
public override func reset() { open override func reset() {
super.reset() super.reset()
fillImage = nil fillImage = nil

View File

@ -275,7 +275,7 @@ open class EntryField: Control, Accessable {
print("toolTip clicked: showToolTipView() called") print("toolTip clicked: showToolTipView() called")
} }
public override func reset() { open override func reset() {
super.reset() super.reset()
titleLabel.reset() titleLabel.reset()
errorLabel.reset() errorLabel.reset()

View File

@ -140,7 +140,7 @@ public class InputField: EntryField, UITextFieldDelegate {
} }
public override func reset() { open override func reset() {
super.reset() super.reset()
textField.text = "" textField.text = ""
textField.delegate = self textField.delegate = self

View File

@ -79,7 +79,7 @@ public class TextArea: EntryField {
textView.delegate = self textView.delegate = self
} }
public override func reset() { open override func reset() {
super.reset() super.reset()
textView.text = "" textView.text = ""
} }

View File

@ -189,7 +189,7 @@ open class TileContainer: Control {
} }
public override func reset() { open override func reset() {
super.reset() super.reset()
} }

View File

@ -244,7 +244,7 @@ open class Tilelet: TileContainer {
} }
public override func reset() { open override func reset() {
super.reset() super.reset()
aspectRatio = .none aspectRatio = .none
surface = .light surface = .light

View File

@ -216,7 +216,7 @@ open class TitleLockup: View {
stackView.pinToSuperView() stackView.pinToSuperView()
} }
public override func reset() { open override func reset() {
super.reset() super.reset()
titleLabel.reset() titleLabel.reset()
eyebrowLabel.reset() eyebrowLabel.reset()

View File

@ -288,7 +288,7 @@ open class ToggleBase: Control, Accessable, DataTrackable {
stackView.pinToSuperView() stackView.pinToSuperView()
} }
public override func reset() { open override func reset() {
super.reset() super.reset()
label.reset() label.reset()
isOn = false isOn = false