From 9ce6428bdac0471013f06d9cf7e32b3cf4a67602 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Tue, 16 Apr 2024 09:51:57 -0500 Subject: [PATCH] made property internal Signed-off-by: Matt Bruce --- VDS/Components/TextFields/InputField/InputField.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VDS/Components/TextFields/InputField/InputField.swift b/VDS/Components/TextFields/InputField/InputField.swift index e39d7f1e..004b33ae 100644 --- a/VDS/Components/TextFields/InputField/InputField.swift +++ b/VDS/Components/TextFields/InputField/InputField.swift @@ -79,7 +79,7 @@ open class InputField: EntryFieldBase, UITextFieldDelegate { internal var actionTextLink = TextLink().with { $0.contentEdgeInsets = .top(-2) } - public var actionTextLinkModel: TextLinkModel? { didSet { setNeedsUpdate() } } + internal var actionTextLinkModel: TextLinkModel? { didSet { setNeedsUpdate() } } /// The text of this TextField. private var _text: String?