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