From fe90a09f93eaf8385b3819854336d2c8f2f52757 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Tue, 29 Aug 2023 08:50:38 -0500 Subject: [PATCH] updated base classname Signed-off-by: Matt Bruce --- VDS/Components/TextFields/InputField/InputField.swift | 2 +- VDS/Components/TextFields/TextArea/TextArea.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VDS/Components/TextFields/InputField/InputField.swift b/VDS/Components/TextFields/InputField/InputField.swift index a0d26046..d5d96ad6 100644 --- a/VDS/Components/TextFields/InputField/InputField.swift +++ b/VDS/Components/TextFields/InputField/InputField.swift @@ -12,7 +12,7 @@ import VDSFormControlsTokens import Combine @objc(VDSInputField) -open class InputField: EntryField, UITextFieldDelegate { +open class InputField: EntryFieldBase, UITextFieldDelegate { //-------------------------------------------------- // MARK: - Initializers diff --git a/VDS/Components/TextFields/TextArea/TextArea.swift b/VDS/Components/TextFields/TextArea/TextArea.swift index 83b8a479..db86f357 100644 --- a/VDS/Components/TextFields/TextArea/TextArea.swift +++ b/VDS/Components/TextFields/TextArea/TextArea.swift @@ -13,7 +13,7 @@ import VDSFormControlsTokens import Combine @objc(VDSTextArea) -open class TextArea: EntryField { +open class TextArea: EntryFieldBase { //-------------------------------------------------- // MARK: - Initializers //--------------------------------------------------