From a24bbd32a507a4e52712b579b251533b0ca97c56 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Tue, 4 Jun 2024 10:24:34 -0500 Subject: [PATCH] CXTDT-565087 - Input Field - Text - OnDark colors Signed-off-by: Matt Bruce --- VDS/Components/TextFields/EntryFieldBase.swift | 2 +- VDS/Components/TextFields/InputField/InputField.swift | 2 +- VDS/SupportingFiles/ReleaseNotes.txt | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/VDS/Components/TextFields/EntryFieldBase.swift b/VDS/Components/TextFields/EntryFieldBase.swift index 30df7699..ea023736 100644 --- a/VDS/Components/TextFields/EntryFieldBase.swift +++ b/VDS/Components/TextFields/EntryFieldBase.swift @@ -376,7 +376,7 @@ open class EntryFieldBase: Control, Changeable, FormFieldInternalValidatable { if isEnabled { let optionColorAttr = ColorLabelAttribute(location: oldText.count + 1, length: 8, - color: VDSColor.elementsSecondaryOnlight) + color: secondaryColorConfiguration.getColor(self)) attributes.append(optionColorAttr) } diff --git a/VDS/Components/TextFields/InputField/InputField.swift b/VDS/Components/TextFields/InputField/InputField.swift index 76cdaa2a..b9b4ab99 100644 --- a/VDS/Components/TextFields/InputField/InputField.swift +++ b/VDS/Components/TextFields/InputField/InputField.swift @@ -247,7 +247,7 @@ open class InputField: EntryFieldBase { successLabel.isHidden = false errorLabel.isHidden = true statusIcon.name = .checkmarkAlt - statusIcon.color = VDSColor.paletteBlack + statusIcon.color = iconColorConfiguration.getColor(self) statusIcon.surface = surface statusIcon.isHidden = !isEnabled } else { diff --git a/VDS/SupportingFiles/ReleaseNotes.txt b/VDS/SupportingFiles/ReleaseNotes.txt index 165ab44b..d0c88cd1 100644 --- a/VDS/SupportingFiles/ReleaseNotes.txt +++ b/VDS/SupportingFiles/ReleaseNotes.txt @@ -1,3 +1,7 @@ +1.0.66 +---------------- +- CXTDT-565087 - Input Field - Text - OnDark colors + 1.0.65 ---------------- - CXTDT-556996 - RadioboxGroup – Accessibility - Voice over does not render the group position